Merge master.kernel.org:/pub/scm/linux/kernel/git/lethal/genesis-2.6
[pandora-kernel.git] / drivers / staging / batman-adv / hard-interface.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 "hard-interface.h"
24 #include "soft-interface.h"
25 #include "send.h"
26 #include "translation-table.h"
27 #include "routing.h"
28 #include "bat_sysfs.h"
29 #include "originator.h"
30 #include "hash.h"
31
32 #include <linux/if_arp.h>
33 #include <linux/netfilter_bridge.h>
34
35 #define MIN(x, y) ((x) < (y) ? (x) : (y))
36
37 struct batman_if *get_batman_if_by_netdev(struct net_device *net_dev)
38 {
39         struct batman_if *batman_if;
40
41         rcu_read_lock();
42         list_for_each_entry_rcu(batman_if, &if_list, list) {
43                 if (batman_if->net_dev == net_dev)
44                         goto out;
45         }
46
47         batman_if = NULL;
48
49 out:
50         rcu_read_unlock();
51         return batman_if;
52 }
53
54 static int is_valid_iface(struct net_device *net_dev)
55 {
56         if (net_dev->flags & IFF_LOOPBACK)
57                 return 0;
58
59         if (net_dev->type != ARPHRD_ETHER)
60                 return 0;
61
62         if (net_dev->addr_len != ETH_ALEN)
63                 return 0;
64
65         /* no batman over batman */
66 #ifdef HAVE_NET_DEVICE_OPS
67         if (net_dev->netdev_ops->ndo_start_xmit == interface_tx)
68                 return 0;
69 #else
70         if (net_dev->hard_start_xmit == interface_tx)
71                 return 0;
72 #endif
73
74         /* Device is being bridged */
75         /* if (net_dev->priv_flags & IFF_BRIDGE_PORT)
76                 return 0; */
77
78         return 1;
79 }
80
81 static struct batman_if *get_active_batman_if(void)
82 {
83         struct batman_if *batman_if;
84
85         /* TODO: should check interfaces belonging to bat_priv */
86         rcu_read_lock();
87         list_for_each_entry_rcu(batman_if, &if_list, list) {
88                 if (batman_if->if_status == IF_ACTIVE)
89                         goto out;
90         }
91
92         batman_if = NULL;
93
94 out:
95         rcu_read_unlock();
96         return batman_if;
97 }
98
99 static void set_primary_if(struct bat_priv *bat_priv,
100                            struct batman_if *batman_if)
101 {
102         struct batman_packet *batman_packet;
103
104         bat_priv->primary_if = batman_if;
105
106         if (!bat_priv->primary_if)
107                 return;
108
109         set_main_if_addr(batman_if->net_dev->dev_addr);
110
111         batman_packet = (struct batman_packet *)(batman_if->packet_buff);
112         batman_packet->flags = PRIMARIES_FIRST_HOP;
113         batman_packet->ttl = TTL;
114
115         /***
116          * hacky trick to make sure that we send the HNA information via
117          * our new primary interface
118          */
119         atomic_set(&hna_local_changed, 1);
120 }
121
122 static bool hardif_is_iface_up(struct batman_if *batman_if)
123 {
124         if (batman_if->net_dev->flags & IFF_UP)
125                 return true;
126
127         return false;
128 }
129
130 static void update_mac_addresses(struct batman_if *batman_if)
131 {
132         if (!batman_if || !batman_if->packet_buff)
133                 return;
134
135         addr_to_string(batman_if->addr_str, batman_if->net_dev->dev_addr);
136
137         memcpy(((struct batman_packet *)(batman_if->packet_buff))->orig,
138                batman_if->net_dev->dev_addr, ETH_ALEN);
139         memcpy(((struct batman_packet *)(batman_if->packet_buff))->prev_sender,
140                batman_if->net_dev->dev_addr, ETH_ALEN);
141 }
142
143 static void check_known_mac_addr(uint8_t *addr)
144 {
145         struct batman_if *batman_if;
146
147         rcu_read_lock();
148         list_for_each_entry_rcu(batman_if, &if_list, list) {
149                 if ((batman_if->if_status != IF_ACTIVE) &&
150                     (batman_if->if_status != IF_TO_BE_ACTIVATED))
151                         continue;
152
153                 if (!compare_orig(batman_if->net_dev->dev_addr, addr))
154                         continue;
155
156                 pr_warning("The newly added mac address (%pM) already exists "
157                            "on: %s\n", addr, batman_if->dev);
158                 pr_warning("It is strongly recommended to keep mac addresses "
159                            "unique to avoid problems!\n");
160         }
161         rcu_read_unlock();
162 }
163
164 int hardif_min_mtu(void)
165 {
166         struct batman_if *batman_if;
167         /* allow big frames if all devices are capable to do so
168          * (have MTU > 1500 + BAT_HEADER_LEN) */
169         int min_mtu = ETH_DATA_LEN;
170
171         rcu_read_lock();
172         list_for_each_entry_rcu(batman_if, &if_list, list) {
173                 if ((batman_if->if_status == IF_ACTIVE) ||
174                     (batman_if->if_status == IF_TO_BE_ACTIVATED))
175                         min_mtu = MIN(batman_if->net_dev->mtu - BAT_HEADER_LEN,
176                                       min_mtu);
177         }
178         rcu_read_unlock();
179
180         return min_mtu;
181 }
182
183 /* adjusts the MTU if a new interface with a smaller MTU appeared. */
184 void update_min_mtu(void)
185 {
186         int min_mtu;
187
188         min_mtu = hardif_min_mtu();
189         if (soft_device->mtu != min_mtu)
190                 soft_device->mtu = min_mtu;
191 }
192
193 static void hardif_activate_interface(struct net_device *net_dev,
194                                       struct bat_priv *bat_priv,
195                                       struct batman_if *batman_if)
196 {
197         if (batman_if->if_status != IF_INACTIVE)
198                 return;
199
200         update_mac_addresses(batman_if);
201         batman_if->if_status = IF_TO_BE_ACTIVATED;
202
203         /**
204          * the first active interface becomes our primary interface or
205          * the next active interface after the old primay interface was removed
206          */
207         if (!bat_priv->primary_if)
208                 set_primary_if(bat_priv, batman_if);
209
210         bat_info(net_dev, "Interface activated: %s\n", batman_if->dev);
211
212         if (atomic_read(&module_state) == MODULE_INACTIVE)
213                 activate_module();
214
215         update_min_mtu();
216         return;
217 }
218
219 static void hardif_deactivate_interface(struct net_device *net_dev,
220                                         struct batman_if *batman_if)
221 {
222         if ((batman_if->if_status != IF_ACTIVE) &&
223            (batman_if->if_status != IF_TO_BE_ACTIVATED))
224                 return;
225
226         batman_if->if_status = IF_INACTIVE;
227
228         bat_info(net_dev, "Interface deactivated: %s\n", batman_if->dev);
229
230         update_min_mtu();
231 }
232
233 int hardif_enable_interface(struct batman_if *batman_if)
234 {
235         /* FIXME: each batman_if will be attached to a softif */
236         struct bat_priv *bat_priv = netdev_priv(soft_device);
237         struct batman_packet *batman_packet;
238
239         if (batman_if->if_status != IF_NOT_IN_USE)
240                 goto out;
241
242         batman_if->packet_len = BAT_PACKET_LEN;
243         batman_if->packet_buff = kmalloc(batman_if->packet_len, GFP_ATOMIC);
244
245         if (!batman_if->packet_buff) {
246                 bat_err(soft_device, "Can't add interface packet (%s): "
247                         "out of memory\n", batman_if->dev);
248                 goto err;
249         }
250
251         batman_packet = (struct batman_packet *)(batman_if->packet_buff);
252         batman_packet->packet_type = BAT_PACKET;
253         batman_packet->version = COMPAT_VERSION;
254         batman_packet->flags = 0;
255         batman_packet->ttl = 2;
256         batman_packet->tq = TQ_MAX_VALUE;
257         batman_packet->num_hna = 0;
258
259         batman_if->if_num = bat_priv->num_ifaces;
260         bat_priv->num_ifaces++;
261         batman_if->if_status = IF_INACTIVE;
262         orig_hash_add_if(batman_if, bat_priv->num_ifaces);
263
264         atomic_set(&batman_if->seqno, 1);
265         bat_info(soft_device, "Adding interface: %s\n", batman_if->dev);
266
267         if (hardif_is_iface_up(batman_if))
268                 hardif_activate_interface(soft_device, bat_priv, batman_if);
269         else
270                 bat_err(soft_device, "Not using interface %s "
271                         "(retrying later): interface not active\n",
272                         batman_if->dev);
273
274         /* begin scheduling originator messages on that interface */
275         schedule_own_packet(batman_if);
276
277 out:
278         return 0;
279
280 err:
281         return -ENOMEM;
282 }
283
284 void hardif_disable_interface(struct batman_if *batman_if)
285 {
286         /* FIXME: each batman_if will be attached to a softif */
287         struct bat_priv *bat_priv = netdev_priv(soft_device);
288
289         if (batman_if->if_status == IF_ACTIVE)
290                 hardif_deactivate_interface(soft_device, batman_if);
291
292         if (batman_if->if_status != IF_INACTIVE)
293                 return;
294
295         bat_info(soft_device, "Removing interface: %s\n", batman_if->dev);
296         bat_priv->num_ifaces--;
297         orig_hash_del_if(batman_if, bat_priv->num_ifaces);
298
299         if (batman_if == bat_priv->primary_if)
300                 set_primary_if(bat_priv, get_active_batman_if());
301
302         kfree(batman_if->packet_buff);
303         batman_if->packet_buff = NULL;
304         batman_if->if_status = IF_NOT_IN_USE;
305
306         if ((atomic_read(&module_state) == MODULE_ACTIVE) &&
307             (bat_priv->num_ifaces == 0))
308                 deactivate_module();
309 }
310
311 static struct batman_if *hardif_add_interface(struct net_device *net_dev)
312 {
313         struct batman_if *batman_if;
314         int ret;
315
316         ret = is_valid_iface(net_dev);
317         if (ret != 1)
318                 goto out;
319
320         dev_hold(net_dev);
321
322         batman_if = kmalloc(sizeof(struct batman_if), GFP_ATOMIC);
323         if (!batman_if) {
324                 pr_err("Can't add interface (%s): out of memory\n",
325                        net_dev->name);
326                 goto release_dev;
327         }
328
329         batman_if->dev = kstrdup(net_dev->name, GFP_ATOMIC);
330         if (!batman_if->dev)
331                 goto free_if;
332
333         ret = sysfs_add_hardif(&batman_if->hardif_obj, net_dev);
334         if (ret)
335                 goto free_dev;
336
337         batman_if->if_num = -1;
338         batman_if->net_dev = net_dev;
339         batman_if->if_status = IF_NOT_IN_USE;
340         batman_if->packet_buff = NULL;
341         INIT_LIST_HEAD(&batman_if->list);
342
343         check_known_mac_addr(batman_if->net_dev->dev_addr);
344         list_add_tail_rcu(&batman_if->list, &if_list);
345         return batman_if;
346
347 free_dev:
348         kfree(batman_if->dev);
349 free_if:
350         kfree(batman_if);
351 release_dev:
352         dev_put(net_dev);
353 out:
354         return NULL;
355 }
356
357 static void hardif_free_interface(struct rcu_head *rcu)
358 {
359         struct batman_if *batman_if = container_of(rcu, struct batman_if, rcu);
360
361         /* delete all references to this batman_if */
362         purge_orig(NULL);
363         purge_outstanding_packets(batman_if);
364
365         kfree(batman_if->dev);
366         kfree(batman_if);
367 }
368
369 static void hardif_remove_interface(struct batman_if *batman_if)
370 {
371         /* first deactivate interface */
372         if (batman_if->if_status != IF_NOT_IN_USE)
373                 hardif_disable_interface(batman_if);
374
375         if (batman_if->if_status != IF_NOT_IN_USE)
376                 return;
377
378         batman_if->if_status = IF_TO_BE_REMOVED;
379         list_del_rcu(&batman_if->list);
380         sysfs_del_hardif(&batman_if->hardif_obj);
381         dev_put(batman_if->net_dev);
382         call_rcu(&batman_if->rcu, hardif_free_interface);
383 }
384
385 void hardif_remove_interfaces(void)
386 {
387         struct batman_if *batman_if, *batman_if_tmp;
388
389         list_for_each_entry_safe(batman_if, batman_if_tmp, &if_list, list)
390                 hardif_remove_interface(batman_if);
391 }
392
393 static int hard_if_event(struct notifier_block *this,
394                          unsigned long event, void *ptr)
395 {
396         struct net_device *net_dev = (struct net_device *)ptr;
397         struct batman_if *batman_if = get_batman_if_by_netdev(net_dev);
398         /* FIXME: each batman_if will be attached to a softif */
399         struct bat_priv *bat_priv = netdev_priv(soft_device);
400
401         if (!batman_if && event == NETDEV_REGISTER)
402                         batman_if = hardif_add_interface(net_dev);
403
404         if (!batman_if)
405                 goto out;
406
407         switch (event) {
408         case NETDEV_UP:
409                 hardif_activate_interface(soft_device, bat_priv, batman_if);
410                 break;
411         case NETDEV_GOING_DOWN:
412         case NETDEV_DOWN:
413                 hardif_deactivate_interface(soft_device, batman_if);
414                 break;
415         case NETDEV_UNREGISTER:
416                 hardif_remove_interface(batman_if);
417                 break;
418         case NETDEV_CHANGENAME:
419                 break;
420         case NETDEV_CHANGEADDR:
421                 check_known_mac_addr(batman_if->net_dev->dev_addr);
422                 update_mac_addresses(batman_if);
423                 if (batman_if == bat_priv->primary_if)
424                         set_primary_if(bat_priv, batman_if);
425                 break;
426         default:
427                 break;
428         };
429
430 out:
431         return NOTIFY_DONE;
432 }
433
434 static int batman_skb_recv_finish(struct sk_buff *skb)
435 {
436         return NF_ACCEPT;
437 }
438
439 /* receive a packet with the batman ethertype coming on a hard
440  * interface */
441 int batman_skb_recv(struct sk_buff *skb, struct net_device *dev,
442         struct packet_type *ptype, struct net_device *orig_dev)
443 {
444         /* FIXME: each orig_node->batman_if will be attached to a softif */
445         struct bat_priv *bat_priv = netdev_priv(soft_device);
446         struct batman_packet *batman_packet;
447         struct batman_if *batman_if;
448         int ret;
449
450         skb = skb_share_check(skb, GFP_ATOMIC);
451
452         /* skb was released by skb_share_check() */
453         if (!skb)
454                 goto err_out;
455
456         if (atomic_read(&module_state) != MODULE_ACTIVE)
457                 goto err_free;
458
459         /* if netfilter/ebtables wants to block incoming batman
460          * packets then give them a chance to do so here */
461         ret = NF_HOOK(PF_BRIDGE, NF_BR_LOCAL_IN, skb, dev, NULL,
462                       batman_skb_recv_finish);
463         if (ret != 1)
464                 goto err_out;
465
466         /* packet should hold at least type and version */
467         if (unlikely(skb_headlen(skb) < 2))
468                 goto err_free;
469
470         /* expect a valid ethernet header here. */
471         if (unlikely(skb->mac_len != sizeof(struct ethhdr)
472                                 || !skb_mac_header(skb)))
473                 goto err_free;
474
475         batman_if = get_batman_if_by_netdev(skb->dev);
476         if (!batman_if)
477                 goto err_free;
478
479         /* discard frames on not active interfaces */
480         if (batman_if->if_status != IF_ACTIVE)
481                 goto err_free;
482
483         batman_packet = (struct batman_packet *)skb->data;
484
485         if (batman_packet->version != COMPAT_VERSION) {
486                 bat_dbg(DBG_BATMAN, bat_priv,
487                         "Drop packet: incompatible batman version (%i)\n",
488                         batman_packet->version);
489                 goto err_free;
490         }
491
492         /* all receive handlers return whether they received or reused
493          * the supplied skb. if not, we have to free the skb. */
494
495         switch (batman_packet->packet_type) {
496                 /* batman originator packet */
497         case BAT_PACKET:
498                 ret = recv_bat_packet(skb, batman_if);
499                 break;
500
501                 /* batman icmp packet */
502         case BAT_ICMP:
503                 ret = recv_icmp_packet(skb);
504                 break;
505
506                 /* unicast packet */
507         case BAT_UNICAST:
508                 ret = recv_unicast_packet(skb, batman_if);
509                 break;
510
511                 /* broadcast packet */
512         case BAT_BCAST:
513                 ret = recv_bcast_packet(skb);
514                 break;
515
516                 /* vis packet */
517         case BAT_VIS:
518                 ret = recv_vis_packet(skb);
519                 break;
520         default:
521                 ret = NET_RX_DROP;
522         }
523
524         if (ret == NET_RX_DROP)
525                 kfree_skb(skb);
526
527         /* return NET_RX_SUCCESS in any case as we
528          * most probably dropped the packet for
529          * routing-logical reasons. */
530
531         return NET_RX_SUCCESS;
532
533 err_free:
534         kfree_skb(skb);
535 err_out:
536         return NET_RX_DROP;
537 }
538
539 struct notifier_block hard_if_notifier = {
540         .notifier_call = hard_if_event,
541 };