blob: 2ab819841231fddba2cd96aa9ad8932653783bd4 [file] [log] [blame]
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001/*
Sven Eckelmann64afe352011-01-27 10:38:15 +01002 * Copyright (C) 2010-2011 B.A.T.M.A.N. contributors:
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00003 *
4 * Andreas Langer
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of version 2 of the GNU General Public
8 * License as published by the Free Software Foundation.
9 *
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
18 * 02110-1301, USA
19 *
20 */
21
22#include "main.h"
23#include "unicast.h"
24#include "send.h"
25#include "soft-interface.h"
26#include "gateway_client.h"
27#include "originator.h"
28#include "hash.h"
29#include "translation-table.h"
30#include "routing.h"
31#include "hard-interface.h"
32
33
34static struct sk_buff *frag_merge_packet(struct list_head *head,
35 struct frag_packet_list_entry *tfp,
36 struct sk_buff *skb)
37{
38 struct unicast_frag_packet *up =
39 (struct unicast_frag_packet *)skb->data;
40 struct sk_buff *tmp_skb;
41 struct unicast_packet *unicast_packet;
Marek Lindner14062062011-02-08 12:43:54 +000042 int hdr_len = sizeof(struct unicast_packet);
43 int uni_diff = sizeof(struct unicast_frag_packet) - hdr_len;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000044
45 /* set skb to the first part and tmp_skb to the second part */
46 if (up->flags & UNI_FRAG_HEAD) {
47 tmp_skb = tfp->skb;
48 } else {
49 tmp_skb = skb;
50 skb = tfp->skb;
51 }
52
53 skb_pull(tmp_skb, sizeof(struct unicast_frag_packet));
54 if (pskb_expand_head(skb, 0, tmp_skb->len, GFP_ATOMIC) < 0) {
55 /* free buffered skb, skb will be freed later */
56 kfree_skb(tfp->skb);
57 return NULL;
58 }
59
60 /* move free entry to end */
61 tfp->skb = NULL;
62 tfp->seqno = 0;
63 list_move_tail(&tfp->list, head);
64
65 memcpy(skb_put(skb, tmp_skb->len), tmp_skb->data, tmp_skb->len);
66 kfree_skb(tmp_skb);
67
68 memmove(skb->data + uni_diff, skb->data, hdr_len);
69 unicast_packet = (struct unicast_packet *) skb_pull(skb, uni_diff);
70 unicast_packet->packet_type = BAT_UNICAST;
71
72 return skb;
73}
74
75static void frag_create_entry(struct list_head *head, struct sk_buff *skb)
76{
77 struct frag_packet_list_entry *tfp;
78 struct unicast_frag_packet *up =
79 (struct unicast_frag_packet *)skb->data;
80
81 /* free and oldest packets stand at the end */
82 tfp = list_entry((head)->prev, typeof(*tfp), list);
83 kfree_skb(tfp->skb);
84
85 tfp->seqno = ntohs(up->seqno);
86 tfp->skb = skb;
87 list_move(&tfp->list, head);
88 return;
89}
90
91static int frag_create_buffer(struct list_head *head)
92{
93 int i;
94 struct frag_packet_list_entry *tfp;
95
96 for (i = 0; i < FRAG_BUFFER_SIZE; i++) {
97 tfp = kmalloc(sizeof(struct frag_packet_list_entry),
98 GFP_ATOMIC);
99 if (!tfp) {
100 frag_list_free(head);
101 return -ENOMEM;
102 }
103 tfp->skb = NULL;
104 tfp->seqno = 0;
105 INIT_LIST_HEAD(&tfp->list);
106 list_add(&tfp->list, head);
107 }
108
109 return 0;
110}
111
112static struct frag_packet_list_entry *frag_search_packet(struct list_head *head,
113 struct unicast_frag_packet *up)
114{
115 struct frag_packet_list_entry *tfp;
116 struct unicast_frag_packet *tmp_up = NULL;
117 uint16_t search_seqno;
118
119 if (up->flags & UNI_FRAG_HEAD)
120 search_seqno = ntohs(up->seqno)+1;
121 else
122 search_seqno = ntohs(up->seqno)-1;
123
124 list_for_each_entry(tfp, head, list) {
125
126 if (!tfp->skb)
127 continue;
128
129 if (tfp->seqno == ntohs(up->seqno))
130 goto mov_tail;
131
132 tmp_up = (struct unicast_frag_packet *)tfp->skb->data;
133
134 if (tfp->seqno == search_seqno) {
135
136 if ((tmp_up->flags & UNI_FRAG_HEAD) !=
137 (up->flags & UNI_FRAG_HEAD))
138 return tfp;
139 else
140 goto mov_tail;
141 }
142 }
143 return NULL;
144
145mov_tail:
146 list_move_tail(&tfp->list, head);
147 return NULL;
148}
149
150void frag_list_free(struct list_head *head)
151{
152 struct frag_packet_list_entry *pf, *tmp_pf;
153
154 if (!list_empty(head)) {
155
156 list_for_each_entry_safe(pf, tmp_pf, head, list) {
157 kfree_skb(pf->skb);
158 list_del(&pf->list);
159 kfree(pf);
160 }
161 }
162 return;
163}
164
165/* frag_reassemble_skb():
166 * returns NET_RX_DROP if the operation failed - skb is left intact
167 * returns NET_RX_SUCCESS if the fragment was buffered (skb_new will be NULL)
168 * or the skb could be reassembled (skb_new will point to the new packet and
169 * skb was freed)
170 */
171int frag_reassemble_skb(struct sk_buff *skb, struct bat_priv *bat_priv,
172 struct sk_buff **new_skb)
173{
174 struct orig_node *orig_node;
175 struct frag_packet_list_entry *tmp_frag_entry;
176 int ret = NET_RX_DROP;
177 struct unicast_frag_packet *unicast_packet =
178 (struct unicast_frag_packet *)skb->data;
179
180 *new_skb = NULL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000181
Marek Lindner7aadf882011-02-18 12:28:09 +0000182 spin_lock_bh(&bat_priv->orig_hash_lock);
183 orig_node = orig_hash_find(bat_priv, unicast_packet->orig);
184 if (!orig_node)
185 goto unlock;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000186
187 orig_node->last_frag_packet = jiffies;
188
189 if (list_empty(&orig_node->frag_list) &&
190 frag_create_buffer(&orig_node->frag_list)) {
191 pr_debug("couldn't create frag buffer\n");
192 goto out;
193 }
194
195 tmp_frag_entry = frag_search_packet(&orig_node->frag_list,
196 unicast_packet);
197
198 if (!tmp_frag_entry) {
199 frag_create_entry(&orig_node->frag_list, skb);
200 ret = NET_RX_SUCCESS;
201 goto out;
202 }
203
204 *new_skb = frag_merge_packet(&orig_node->frag_list, tmp_frag_entry,
205 skb);
206 /* if not, merge failed */
207 if (*new_skb)
208 ret = NET_RX_SUCCESS;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000209
Marek Lindner7aadf882011-02-18 12:28:09 +0000210unlock:
211 spin_unlock_bh(&bat_priv->orig_hash_lock);
212out:
213 if (orig_node)
Marek Lindner7b36e8e2011-02-18 12:28:10 +0000214 orig_node_free_ref(orig_node);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000215 return ret;
216}
217
218int frag_send_skb(struct sk_buff *skb, struct bat_priv *bat_priv,
219 struct batman_if *batman_if, uint8_t dstaddr[])
220{
221 struct unicast_packet tmp_uc, *unicast_packet;
222 struct sk_buff *frag_skb;
223 struct unicast_frag_packet *frag1, *frag2;
224 int uc_hdr_len = sizeof(struct unicast_packet);
225 int ucf_hdr_len = sizeof(struct unicast_frag_packet);
Sven Eckelmann5c77d8b2011-01-25 21:59:26 +0000226 int data_len = skb->len - uc_hdr_len;
Sven Eckelmannae361ce2011-01-25 22:02:31 +0000227 int large_tail = 0;
Sven Eckelmannc2f7f0e2011-02-10 14:33:56 +0000228 uint16_t seqno;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000229
230 if (!bat_priv->primary_if)
231 goto dropped;
232
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000233 frag_skb = dev_alloc_skb(data_len - (data_len / 2) + ucf_hdr_len);
Jesper Juhled7809d2011-01-13 21:53:38 +0100234 if (!frag_skb)
235 goto dropped;
Sven Eckelmann5c77d8b2011-01-25 21:59:26 +0000236 skb_reserve(frag_skb, ucf_hdr_len);
Jesper Juhled7809d2011-01-13 21:53:38 +0100237
238 unicast_packet = (struct unicast_packet *) skb->data;
239 memcpy(&tmp_uc, unicast_packet, uc_hdr_len);
Sven Eckelmann5c77d8b2011-01-25 21:59:26 +0000240 skb_split(skb, frag_skb, data_len / 2 + uc_hdr_len);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000241
242 if (my_skb_head_push(skb, ucf_hdr_len - uc_hdr_len) < 0 ||
243 my_skb_head_push(frag_skb, ucf_hdr_len) < 0)
244 goto drop_frag;
245
246 frag1 = (struct unicast_frag_packet *)skb->data;
247 frag2 = (struct unicast_frag_packet *)frag_skb->data;
248
249 memcpy(frag1, &tmp_uc, sizeof(struct unicast_packet));
250
251 frag1->ttl--;
252 frag1->version = COMPAT_VERSION;
253 frag1->packet_type = BAT_UNICAST_FRAG;
254
255 memcpy(frag1->orig, bat_priv->primary_if->net_dev->dev_addr, ETH_ALEN);
256 memcpy(frag2, frag1, sizeof(struct unicast_frag_packet));
257
Sven Eckelmannae361ce2011-01-25 22:02:31 +0000258 if (data_len & 1)
259 large_tail = UNI_FRAG_LARGETAIL;
260
261 frag1->flags = UNI_FRAG_HEAD | large_tail;
262 frag2->flags = large_tail;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000263
Sven Eckelmannc2f7f0e2011-02-10 14:33:56 +0000264 seqno = atomic_add_return(2, &batman_if->frag_seqno);
265 frag1->seqno = htons(seqno - 1);
266 frag2->seqno = htons(seqno);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000267
268 send_skb_packet(skb, batman_if, dstaddr);
269 send_skb_packet(frag_skb, batman_if, dstaddr);
270 return NET_RX_SUCCESS;
271
272drop_frag:
273 kfree_skb(frag_skb);
274dropped:
275 kfree_skb(skb);
276 return NET_RX_DROP;
277}
278
279int unicast_send_skb(struct sk_buff *skb, struct bat_priv *bat_priv)
280{
281 struct ethhdr *ethhdr = (struct ethhdr *)skb->data;
282 struct unicast_packet *unicast_packet;
Marek Lindner7b36e8e2011-02-18 12:28:10 +0000283 struct orig_node *orig_node;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000284 struct batman_if *batman_if;
Marek Lindner44524fc2011-02-10 14:33:53 +0000285 struct neigh_node *neigh_node;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000286 int data_len = skb->len;
287 uint8_t dstaddr[6];
Marek Lindner44524fc2011-02-10 14:33:53 +0000288 int ret = 1;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000289
290 spin_lock_bh(&bat_priv->orig_hash_lock);
291
292 /* get routing information */
Linus Lüssing43c70ad2011-02-13 21:13:04 +0000293 if (is_multicast_ether_addr(ethhdr->h_dest)) {
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000294 orig_node = (struct orig_node *)gw_get_selected(bat_priv);
Linus Lüssing43c70ad2011-02-13 21:13:04 +0000295 if (orig_node)
Marek Lindner44524fc2011-02-10 14:33:53 +0000296 goto find_router;
297 }
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000298
Marek Lindner44524fc2011-02-10 14:33:53 +0000299 /* check for hna host - increases orig_node refcount */
300 orig_node = transtable_search(bat_priv, ethhdr->h_dest);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000301
Marek Lindner44524fc2011-02-10 14:33:53 +0000302find_router:
Simon Wunderlicha4c135c2011-01-19 20:01:43 +0000303 /* find_router() increases neigh_nodes refcount if found. */
Marek Lindner44524fc2011-02-10 14:33:53 +0000304 neigh_node = find_router(bat_priv, orig_node, NULL);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000305
Marek Lindner44524fc2011-02-10 14:33:53 +0000306 if (!neigh_node)
307 goto unlock;
308
309 if (neigh_node->if_incoming->if_status != IF_ACTIVE)
310 goto unlock;
311
312 if (my_skb_head_push(skb, sizeof(struct unicast_packet)) < 0)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000313 goto unlock;
314
315 /* don't lock while sending the packets ... we therefore
Marek Lindner44524fc2011-02-10 14:33:53 +0000316 * copy the required data before sending */
317 batman_if = neigh_node->if_incoming;
318 memcpy(dstaddr, neigh_node->addr, ETH_ALEN);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000319 spin_unlock_bh(&bat_priv->orig_hash_lock);
320
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000321 unicast_packet = (struct unicast_packet *)skb->data;
322
323 unicast_packet->version = COMPAT_VERSION;
324 /* batman packet type: unicast */
325 unicast_packet->packet_type = BAT_UNICAST;
326 /* set unicast ttl */
327 unicast_packet->ttl = TTL;
328 /* copy the destination for faster routing */
329 memcpy(unicast_packet->dest, orig_node->orig, ETH_ALEN);
330
331 if (atomic_read(&bat_priv->fragmentation) &&
332 data_len + sizeof(struct unicast_packet) >
Marek Lindner44524fc2011-02-10 14:33:53 +0000333 batman_if->net_dev->mtu) {
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000334 /* send frag skb decreases ttl */
335 unicast_packet->ttl++;
Marek Lindner44524fc2011-02-10 14:33:53 +0000336 ret = frag_send_skb(skb, bat_priv, batman_if, dstaddr);
337 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000338 }
Marek Lindner44524fc2011-02-10 14:33:53 +0000339
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000340 send_skb_packet(skb, batman_if, dstaddr);
Marek Lindner44524fc2011-02-10 14:33:53 +0000341 ret = 0;
342 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000343
344unlock:
345 spin_unlock_bh(&bat_priv->orig_hash_lock);
Marek Lindner44524fc2011-02-10 14:33:53 +0000346out:
347 if (neigh_node)
348 neigh_node_free_ref(neigh_node);
349 if (orig_node)
Marek Lindner7b36e8e2011-02-18 12:28:10 +0000350 orig_node_free_ref(orig_node);
Marek Lindner44524fc2011-02-10 14:33:53 +0000351 if (ret == 1)
352 kfree_skb(skb);
353 return ret;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000354}