88ecb5c76c2214dbc5b0b0bad7d07cd1165c49d9
[pandora-kernel.git] / drivers / staging / batman-adv / send.c
1 /*
2  * Copyright (C) 2007-2010 B.A.T.M.A.N. contributors:
3  *
4  * Marek Lindner, Simon Wunderlich
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 "send.h"
24 #include "routing.h"
25 #include "translation-table.h"
26 #include "soft-interface.h"
27 #include "hard-interface.h"
28 #include "types.h"
29 #include "vis.h"
30 #include "aggregation.h"
31
32 /* apply hop penalty for a normal link */
33 static uint8_t hop_penalty(const uint8_t tq)
34 {
35         return (tq * (TQ_MAX_VALUE - TQ_HOP_PENALTY)) / (TQ_MAX_VALUE);
36 }
37
38 /* when do we schedule our own packet to be sent */
39 static unsigned long own_send_time(void)
40 {
41         return jiffies +
42                 (((atomic_read(&originator_interval) - JITTER +
43                    (random32() % 2*JITTER)) * HZ) / 1000);
44 }
45
46 /* when do we schedule a forwarded packet to be sent */
47 static unsigned long forward_send_time(void)
48 {
49         return jiffies + (((random32() % (JITTER/2)) * HZ) / 1000);
50 }
51
52 /* send out an already prepared packet to the given address via the
53  * specified batman interface */
54 int send_skb_packet(struct sk_buff *skb,
55                                 struct batman_if *batman_if,
56                                 uint8_t *dst_addr)
57 {
58         struct ethhdr *ethhdr;
59
60         if (batman_if->if_active != IF_ACTIVE)
61                 goto send_skb_err;
62
63         if (unlikely(!batman_if->net_dev))
64                 goto send_skb_err;
65
66         if (!(batman_if->net_dev->flags & IFF_UP)) {
67                 printk(KERN_WARNING
68                        "batman-adv:Interface %s is not up - can't send packet via that interface!\n",
69                        batman_if->dev);
70                 goto send_skb_err;
71         }
72
73         /* push to the ethernet header. */
74         if (my_skb_push(skb, sizeof(struct ethhdr)) < 0)
75                 goto send_skb_err;
76
77         skb_reset_mac_header(skb);
78
79         ethhdr = (struct ethhdr *) skb_mac_header(skb);
80         memcpy(ethhdr->h_source, batman_if->net_dev->dev_addr, ETH_ALEN);
81         memcpy(ethhdr->h_dest, dst_addr, ETH_ALEN);
82         ethhdr->h_proto = __constant_htons(ETH_P_BATMAN);
83
84         skb_set_network_header(skb, ETH_HLEN);
85         skb->priority = TC_PRIO_CONTROL;
86         skb->protocol = __constant_htons(ETH_P_BATMAN);
87
88         skb->dev = batman_if->net_dev;
89
90         /* dev_queue_xmit() returns a negative result on error.  However on
91          * congestion and traffic shaping, it drops and returns NET_XMIT_DROP
92          * (which is > 0). This will not be treated as an error. */
93
94         return dev_queue_xmit(skb);
95 send_skb_err:
96         kfree_skb(skb);
97         return NET_XMIT_DROP;
98 }
99
100 /* sends a raw packet. */
101 void send_raw_packet(unsigned char *pack_buff, int pack_buff_len,
102                      struct batman_if *batman_if, uint8_t *dst_addr)
103 {
104         struct sk_buff *skb;
105         char *data;
106
107         skb = dev_alloc_skb(pack_buff_len + sizeof(struct ethhdr));
108         if (!skb)
109                 return;
110         data = skb_put(skb, pack_buff_len + sizeof(struct ethhdr));
111         memcpy(data + sizeof(struct ethhdr), pack_buff, pack_buff_len);
112         /* pull back to the batman "network header" */
113         skb_pull(skb, sizeof(struct ethhdr));
114         send_skb_packet(skb, batman_if, dst_addr);
115 }
116
117 /* Send a packet to a given interface */
118 static void send_packet_to_if(struct forw_packet *forw_packet,
119                               struct batman_if *batman_if)
120 {
121         char *fwd_str;
122         uint8_t packet_num;
123         int16_t buff_pos;
124         struct batman_packet *batman_packet;
125
126         if (batman_if->if_active != IF_ACTIVE)
127                 return;
128
129         packet_num = 0;
130         buff_pos = 0;
131         batman_packet = (struct batman_packet *)
132                 (forw_packet->packet_buff);
133
134         /* adjust all flags and log packets */
135         while (aggregated_packet(buff_pos,
136                                  forw_packet->packet_len,
137                                  batman_packet->num_hna)) {
138
139                 /* we might have aggregated direct link packets with an
140                  * ordinary base packet */
141                 if ((forw_packet->direct_link_flags & (1 << packet_num)) &&
142                     (forw_packet->if_incoming == batman_if))
143                         batman_packet->flags |= DIRECTLINK;
144                 else
145                         batman_packet->flags &= ~DIRECTLINK;
146
147                 fwd_str = (packet_num > 0 ? "Forwarding" : (forw_packet->own ?
148                                                             "Sending own" :
149                                                             "Forwarding"));
150                 bat_dbg(DBG_BATMAN,
151                         "%s %spacket (originator %pM, seqno %d, TQ %d, TTL %d, IDF %s) on interface %s [%s]\n",
152                         fwd_str,
153                         (packet_num > 0 ? "aggregated " : ""),
154                         batman_packet->orig, ntohs(batman_packet->seqno),
155                         batman_packet->tq, batman_packet->ttl,
156                         (batman_packet->flags & DIRECTLINK ?
157                          "on" : "off"),
158                         batman_if->dev, batman_if->addr_str);
159
160                 buff_pos += sizeof(struct batman_packet) +
161                         (batman_packet->num_hna * ETH_ALEN);
162                 packet_num++;
163                 batman_packet = (struct batman_packet *)
164                         (forw_packet->packet_buff + buff_pos);
165         }
166
167         send_raw_packet(forw_packet->packet_buff,
168                         forw_packet->packet_len,
169                         batman_if, broadcastAddr);
170 }
171
172 /* send a batman packet */
173 static void send_packet(struct forw_packet *forw_packet)
174 {
175         struct batman_if *batman_if;
176         struct batman_packet *batman_packet =
177                 (struct batman_packet *)(forw_packet->packet_buff);
178         unsigned char directlink = (batman_packet->flags & DIRECTLINK ? 1 : 0);
179
180         if (!forw_packet->if_incoming) {
181                 printk(KERN_ERR "batman-adv: Error - can't forward packet: incoming iface not specified\n");
182                 return;
183         }
184
185         if (forw_packet->if_incoming->if_active != IF_ACTIVE)
186                 return;
187
188         /* multihomed peer assumed */
189         /* non-primary OGMs are only broadcasted on their interface */
190         if ((directlink && (batman_packet->ttl == 1)) ||
191             (forw_packet->own && (forw_packet->if_incoming->if_num > 0))) {
192
193                 /* FIXME: what about aggregated packets ? */
194                 bat_dbg(DBG_BATMAN,
195                         "%s packet (originator %pM, seqno %d, TTL %d) on interface %s [%s]\n",
196                         (forw_packet->own ? "Sending own" : "Forwarding"),
197                         batman_packet->orig, ntohs(batman_packet->seqno),
198                         batman_packet->ttl, forw_packet->if_incoming->dev,
199                         forw_packet->if_incoming->addr_str);
200
201                 send_raw_packet(forw_packet->packet_buff,
202                                 forw_packet->packet_len,
203                                 forw_packet->if_incoming,
204                                 broadcastAddr);
205                 return;
206         }
207
208         /* broadcast on every interface */
209         rcu_read_lock();
210         list_for_each_entry_rcu(batman_if, &if_list, list)
211                 send_packet_to_if(forw_packet, batman_if);
212         rcu_read_unlock();
213 }
214
215 static void rebuild_batman_packet(struct batman_if *batman_if)
216 {
217         int new_len;
218         unsigned char *new_buff;
219         struct batman_packet *batman_packet;
220
221         new_len = sizeof(struct batman_packet) + (num_hna * ETH_ALEN);
222         new_buff = kmalloc(new_len, GFP_ATOMIC);
223
224         /* keep old buffer if kmalloc should fail */
225         if (new_buff) {
226                 memcpy(new_buff, batman_if->packet_buff,
227                        sizeof(struct batman_packet));
228                 batman_packet = (struct batman_packet *)new_buff;
229
230                 batman_packet->num_hna = hna_local_fill_buffer(
231                         new_buff + sizeof(struct batman_packet),
232                         new_len - sizeof(struct batman_packet));
233
234                 kfree(batman_if->packet_buff);
235                 batman_if->packet_buff = new_buff;
236                 batman_if->packet_len = new_len;
237         }
238 }
239
240 void schedule_own_packet(struct batman_if *batman_if)
241 {
242         unsigned long send_time;
243         struct batman_packet *batman_packet;
244         int vis_server = atomic_read(&vis_mode);
245
246         /**
247          * the interface gets activated here to avoid race conditions between
248          * the moment of activating the interface in
249          * hardif_activate_interface() where the originator mac is set and
250          * outdated packets (especially uninitialized mac addresses) in the
251          * packet queue
252          */
253         if (batman_if->if_active == IF_TO_BE_ACTIVATED)
254                 batman_if->if_active = IF_ACTIVE;
255
256         /* if local hna has changed and interface is a primary interface */
257         if ((atomic_read(&hna_local_changed)) && (batman_if->if_num == 0))
258                 rebuild_batman_packet(batman_if);
259
260         /**
261          * NOTE: packet_buff might just have been re-allocated in
262          * rebuild_batman_packet()
263          */
264         batman_packet = (struct batman_packet *)batman_if->packet_buff;
265
266         /* change sequence number to network order */
267         batman_packet->seqno = htons((uint16_t)atomic_read(&batman_if->seqno));
268
269         if (vis_server == VIS_TYPE_SERVER_SYNC)
270                 batman_packet->flags = VIS_SERVER;
271         else
272                 batman_packet->flags = 0;
273
274         /* could be read by receive_bat_packet() */
275         atomic_inc(&batman_if->seqno);
276
277         slide_own_bcast_window(batman_if);
278         send_time = own_send_time();
279         add_bat_packet_to_list(batman_if->packet_buff,
280                                batman_if->packet_len, batman_if, 1, send_time);
281 }
282
283 void schedule_forward_packet(struct orig_node *orig_node,
284                              struct ethhdr *ethhdr,
285                              struct batman_packet *batman_packet,
286                              uint8_t directlink, int hna_buff_len,
287                              struct batman_if *if_incoming)
288 {
289         unsigned char in_tq, in_ttl, tq_avg = 0;
290         unsigned long send_time;
291
292         if (batman_packet->ttl <= 1) {
293                 bat_dbg(DBG_BATMAN, "ttl exceeded \n");
294                 return;
295         }
296
297         in_tq = batman_packet->tq;
298         in_ttl = batman_packet->ttl;
299
300         batman_packet->ttl--;
301         memcpy(batman_packet->prev_sender, ethhdr->h_source, ETH_ALEN);
302
303         /* rebroadcast tq of our best ranking neighbor to ensure the rebroadcast
304          * of our best tq value */
305         if ((orig_node->router) && (orig_node->router->tq_avg != 0)) {
306
307                 /* rebroadcast ogm of best ranking neighbor as is */
308                 if (!compare_orig(orig_node->router->addr, ethhdr->h_source)) {
309                         batman_packet->tq = orig_node->router->tq_avg;
310
311                         if (orig_node->router->last_ttl)
312                                 batman_packet->ttl = orig_node->router->last_ttl - 1;
313                 }
314
315                 tq_avg = orig_node->router->tq_avg;
316         }
317
318         /* apply hop penalty */
319         batman_packet->tq = hop_penalty(batman_packet->tq);
320
321         bat_dbg(DBG_BATMAN, "Forwarding packet: tq_orig: %i, tq_avg: %i, tq_forw: %i, ttl_orig: %i, ttl_forw: %i \n",
322                 in_tq, tq_avg, batman_packet->tq, in_ttl - 1,
323                 batman_packet->ttl);
324
325         batman_packet->seqno = htons(batman_packet->seqno);
326
327         if (directlink)
328                 batman_packet->flags |= DIRECTLINK;
329         else
330                 batman_packet->flags &= ~DIRECTLINK;
331
332         send_time = forward_send_time();
333         add_bat_packet_to_list((unsigned char *)batman_packet,
334                                sizeof(struct batman_packet) + hna_buff_len,
335                                if_incoming, 0, send_time);
336 }
337
338 static void forw_packet_free(struct forw_packet *forw_packet)
339 {
340         if (forw_packet->skb)
341                 kfree_skb(forw_packet->skb);
342         kfree(forw_packet->packet_buff);
343         kfree(forw_packet);
344 }
345
346 static void _add_bcast_packet_to_list(struct forw_packet *forw_packet,
347                                       unsigned long send_time)
348 {
349         unsigned long flags;
350         INIT_HLIST_NODE(&forw_packet->list);
351
352         /* add new packet to packet list */
353         spin_lock_irqsave(&forw_bcast_list_lock, flags);
354         hlist_add_head(&forw_packet->list, &forw_bcast_list);
355         spin_unlock_irqrestore(&forw_bcast_list_lock, flags);
356
357         /* start timer for this packet */
358         INIT_DELAYED_WORK(&forw_packet->delayed_work,
359                           send_outstanding_bcast_packet);
360         queue_delayed_work(bat_event_workqueue, &forw_packet->delayed_work,
361                            send_time);
362 }
363
364 void add_bcast_packet_to_list(struct sk_buff *skb)
365 {
366         struct forw_packet *forw_packet;
367
368         forw_packet = kmalloc(sizeof(struct forw_packet), GFP_ATOMIC);
369         if (!forw_packet)
370                 return;
371
372         skb = skb_copy(skb, GFP_ATOMIC);
373         if (!skb) {
374                 kfree(forw_packet);
375                 return;
376         }
377
378         skb_reset_mac_header(skb);
379
380         forw_packet->skb = skb;
381         forw_packet->packet_buff = NULL;
382
383         /* how often did we send the bcast packet ? */
384         forw_packet->num_packets = 0;
385
386         _add_bcast_packet_to_list(forw_packet, 1);
387 }
388
389 void send_outstanding_bcast_packet(struct work_struct *work)
390 {
391         struct batman_if *batman_if;
392         struct delayed_work *delayed_work =
393                 container_of(work, struct delayed_work, work);
394         struct forw_packet *forw_packet =
395                 container_of(delayed_work, struct forw_packet, delayed_work);
396         unsigned long flags;
397         struct sk_buff *skb1;
398
399         spin_lock_irqsave(&forw_bcast_list_lock, flags);
400         hlist_del(&forw_packet->list);
401         spin_unlock_irqrestore(&forw_bcast_list_lock, flags);
402
403         /* rebroadcast packet */
404         rcu_read_lock();
405         list_for_each_entry_rcu(batman_if, &if_list, list) {
406                 /* send a copy of the saved skb */
407                 skb1 = skb_copy(forw_packet->skb, GFP_ATOMIC);
408                 if (skb1)
409                         send_skb_packet(skb1,
410                                 batman_if, broadcastAddr);
411         }
412         rcu_read_unlock();
413
414         forw_packet->num_packets++;
415
416         /* if we still have some more bcasts to send and we are not shutting
417          * down */
418         if ((forw_packet->num_packets < 3) &&
419             (atomic_read(&module_state) != MODULE_DEACTIVATING))
420                 _add_bcast_packet_to_list(forw_packet, ((5 * HZ) / 1000));
421         else
422                 forw_packet_free(forw_packet);
423 }
424
425 void send_outstanding_bat_packet(struct work_struct *work)
426 {
427         struct delayed_work *delayed_work =
428                 container_of(work, struct delayed_work, work);
429         struct forw_packet *forw_packet =
430                 container_of(delayed_work, struct forw_packet, delayed_work);
431         unsigned long flags;
432
433         spin_lock_irqsave(&forw_bat_list_lock, flags);
434         hlist_del(&forw_packet->list);
435         spin_unlock_irqrestore(&forw_bat_list_lock, flags);
436
437         send_packet(forw_packet);
438
439         /**
440          * we have to have at least one packet in the queue
441          * to determine the queues wake up time unless we are
442          * shutting down
443          */
444         if ((forw_packet->own) &&
445             (atomic_read(&module_state) != MODULE_DEACTIVATING))
446                 schedule_own_packet(forw_packet->if_incoming);
447
448         forw_packet_free(forw_packet);
449 }
450
451 void purge_outstanding_packets(void)
452 {
453         struct forw_packet *forw_packet;
454         struct hlist_node *tmp_node, *safe_tmp_node;
455         unsigned long flags;
456
457         bat_dbg(DBG_BATMAN, "purge_outstanding_packets()\n");
458
459         /* free bcast list */
460         spin_lock_irqsave(&forw_bcast_list_lock, flags);
461         hlist_for_each_entry_safe(forw_packet, tmp_node, safe_tmp_node,
462                                   &forw_bcast_list, list) {
463
464                 spin_unlock_irqrestore(&forw_bcast_list_lock, flags);
465
466                 /**
467                  * send_outstanding_bcast_packet() will lock the list to
468                  * delete the item from the list
469                  */
470                 cancel_delayed_work_sync(&forw_packet->delayed_work);
471                 spin_lock_irqsave(&forw_bcast_list_lock, flags);
472         }
473         spin_unlock_irqrestore(&forw_bcast_list_lock, flags);
474
475         /* free batman packet list */
476         spin_lock_irqsave(&forw_bat_list_lock, flags);
477         hlist_for_each_entry_safe(forw_packet, tmp_node, safe_tmp_node,
478                                   &forw_bat_list, list) {
479
480                 spin_unlock_irqrestore(&forw_bat_list_lock, flags);
481
482                 /**
483                  * send_outstanding_bat_packet() will lock the list to
484                  * delete the item from the list
485                  */
486                 cancel_delayed_work_sync(&forw_packet->delayed_work);
487                 spin_lock_irqsave(&forw_bat_list_lock, flags);
488         }
489         spin_unlock_irqrestore(&forw_bat_list_lock, flags);
490 }