blob: cfee0178ec62bed842e27e2d9ad3462aaa58ae55 [file] [log] [blame]
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001/*
Sven Eckelmann64afe352011-01-27 10:38:15 +01002 * Copyright (C) 2007-2011 B.A.T.M.A.N. contributors:
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00003 *
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
Sven Eckelmannfb86d762011-01-27 13:16:08 +010034
35static int batman_skb_recv(struct sk_buff *skb,
36 struct net_device *dev,
37 struct packet_type *ptype,
38 struct net_device *orig_dev);
39
Marek Lindnered75ccb2011-02-10 14:33:51 +000040void hardif_free_rcu(struct rcu_head *rcu)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000041{
Marek Lindnere6c10f42011-02-18 12:33:20 +000042 struct hard_iface *hard_iface;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000043
Marek Lindnere6c10f42011-02-18 12:33:20 +000044 hard_iface = container_of(rcu, struct hard_iface, rcu);
45 dev_put(hard_iface->net_dev);
46 kfree(hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000047}
48
Sven Eckelmann747e4222011-05-14 23:14:50 +020049struct hard_iface *hardif_get_by_netdev(const struct net_device *net_dev)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000050{
Marek Lindnere6c10f42011-02-18 12:33:20 +000051 struct hard_iface *hard_iface;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000052
53 rcu_read_lock();
Marek Lindnere6c10f42011-02-18 12:33:20 +000054 list_for_each_entry_rcu(hard_iface, &hardif_list, list) {
55 if (hard_iface->net_dev == net_dev &&
56 atomic_inc_not_zero(&hard_iface->refcount))
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000057 goto out;
58 }
59
Marek Lindnere6c10f42011-02-18 12:33:20 +000060 hard_iface = NULL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000061
62out:
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000063 rcu_read_unlock();
Marek Lindnere6c10f42011-02-18 12:33:20 +000064 return hard_iface;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000065}
66
Sven Eckelmann747e4222011-05-14 23:14:50 +020067static int is_valid_iface(const struct net_device *net_dev)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000068{
69 if (net_dev->flags & IFF_LOOPBACK)
70 return 0;
71
72 if (net_dev->type != ARPHRD_ETHER)
73 return 0;
74
75 if (net_dev->addr_len != ETH_ALEN)
76 return 0;
77
78 /* no batman over batman */
Sven Eckelmanne44d8fe2011-03-04 21:36:41 +000079 if (softif_is_valid(net_dev))
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000080 return 0;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000081
82 /* Device is being bridged */
83 /* if (net_dev->priv_flags & IFF_BRIDGE_PORT)
84 return 0; */
85
86 return 1;
87}
88
Sven Eckelmann747e4222011-05-14 23:14:50 +020089static struct hard_iface *hardif_get_active(const struct net_device *soft_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000090{
Marek Lindnere6c10f42011-02-18 12:33:20 +000091 struct hard_iface *hard_iface;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000092
93 rcu_read_lock();
Marek Lindnere6c10f42011-02-18 12:33:20 +000094 list_for_each_entry_rcu(hard_iface, &hardif_list, list) {
95 if (hard_iface->soft_iface != soft_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000096 continue;
97
Marek Lindnere6c10f42011-02-18 12:33:20 +000098 if (hard_iface->if_status == IF_ACTIVE &&
99 atomic_inc_not_zero(&hard_iface->refcount))
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000100 goto out;
101 }
102
Marek Lindnere6c10f42011-02-18 12:33:20 +0000103 hard_iface = NULL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000104
105out:
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000106 rcu_read_unlock();
Marek Lindnere6c10f42011-02-18 12:33:20 +0000107 return hard_iface;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000108}
109
Marek Lindner32ae9b22011-04-20 15:40:58 +0200110static void primary_if_update_addr(struct bat_priv *bat_priv)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000111{
112 struct vis_packet *vis_packet;
Marek Lindner32ae9b22011-04-20 15:40:58 +0200113 struct hard_iface *primary_if;
114
115 primary_if = primary_if_get_selected(bat_priv);
116 if (!primary_if)
117 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000118
119 vis_packet = (struct vis_packet *)
120 bat_priv->my_vis_info->skb_packet->data;
Marek Lindner32ae9b22011-04-20 15:40:58 +0200121 memcpy(vis_packet->vis_orig, primary_if->net_dev->dev_addr, ETH_ALEN);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000122 memcpy(vis_packet->sender_orig,
Marek Lindner32ae9b22011-04-20 15:40:58 +0200123 primary_if->net_dev->dev_addr, ETH_ALEN);
124
125out:
126 if (primary_if)
127 hardif_free_ref(primary_if);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000128}
129
Marek Lindner32ae9b22011-04-20 15:40:58 +0200130static void primary_if_select(struct bat_priv *bat_priv,
131 struct hard_iface *new_hard_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000132{
Marek Lindner32ae9b22011-04-20 15:40:58 +0200133 struct hard_iface *curr_hard_iface;
Marek Lindnerb6da4bf2011-07-29 17:31:50 +0200134 struct batman_ogm_packet *batman_ogm_packet;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000135
Sven Eckelmannc3caf512011-05-03 11:51:38 +0200136 ASSERT_RTNL();
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000137
Marek Lindner32ae9b22011-04-20 15:40:58 +0200138 if (new_hard_iface && !atomic_inc_not_zero(&new_hard_iface->refcount))
139 new_hard_iface = NULL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000140
Sven Eckelmann728cbc62011-05-15 00:50:21 +0200141 curr_hard_iface = rcu_dereference_protected(bat_priv->primary_if, 1);
Marek Lindner32ae9b22011-04-20 15:40:58 +0200142 rcu_assign_pointer(bat_priv->primary_if, new_hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000143
Marek Lindner32ae9b22011-04-20 15:40:58 +0200144 if (curr_hard_iface)
145 hardif_free_ref(curr_hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000146
Marek Lindner32ae9b22011-04-20 15:40:58 +0200147 if (!new_hard_iface)
Sven Eckelmannc3caf512011-05-03 11:51:38 +0200148 return;
Marek Lindner32ae9b22011-04-20 15:40:58 +0200149
Marek Lindnerb6da4bf2011-07-29 17:31:50 +0200150 batman_ogm_packet = (struct batman_ogm_packet *)
151 (new_hard_iface->packet_buff);
152 batman_ogm_packet->flags = PRIMARIES_FIRST_HOP;
153 batman_ogm_packet->ttl = TTL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000154
Marek Lindner32ae9b22011-04-20 15:40:58 +0200155 primary_if_update_addr(bat_priv);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000156}
157
Sven Eckelmann747e4222011-05-14 23:14:50 +0200158static bool hardif_is_iface_up(const struct hard_iface *hard_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000159{
Marek Lindnere6c10f42011-02-18 12:33:20 +0000160 if (hard_iface->net_dev->flags & IFF_UP)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000161 return true;
162
163 return false;
164}
165
Marek Lindnere6c10f42011-02-18 12:33:20 +0000166static void update_mac_addresses(struct hard_iface *hard_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000167{
Marek Lindnerb6da4bf2011-07-29 17:31:50 +0200168 struct batman_ogm_packet *batman_ogm_packet;
169
170 batman_ogm_packet = (struct batman_ogm_packet *)hard_iface->packet_buff;
171 memcpy(batman_ogm_packet->orig,
Marek Lindnere6c10f42011-02-18 12:33:20 +0000172 hard_iface->net_dev->dev_addr, ETH_ALEN);
Marek Lindnerb6da4bf2011-07-29 17:31:50 +0200173 memcpy(batman_ogm_packet->prev_sender,
Marek Lindnere6c10f42011-02-18 12:33:20 +0000174 hard_iface->net_dev->dev_addr, ETH_ALEN);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000175}
176
Sven Eckelmann747e4222011-05-14 23:14:50 +0200177static void check_known_mac_addr(const struct net_device *net_dev)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000178{
Sven Eckelmann747e4222011-05-14 23:14:50 +0200179 const struct hard_iface *hard_iface;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000180
181 rcu_read_lock();
Marek Lindnere6c10f42011-02-18 12:33:20 +0000182 list_for_each_entry_rcu(hard_iface, &hardif_list, list) {
183 if ((hard_iface->if_status != IF_ACTIVE) &&
184 (hard_iface->if_status != IF_TO_BE_ACTIVATED))
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000185 continue;
186
Marek Lindnere6c10f42011-02-18 12:33:20 +0000187 if (hard_iface->net_dev == net_dev)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000188 continue;
189
Marek Lindnere6c10f42011-02-18 12:33:20 +0000190 if (!compare_eth(hard_iface->net_dev->dev_addr,
191 net_dev->dev_addr))
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000192 continue;
193
194 pr_warning("The newly added mac address (%pM) already exists "
195 "on: %s\n", net_dev->dev_addr,
Marek Lindnere6c10f42011-02-18 12:33:20 +0000196 hard_iface->net_dev->name);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000197 pr_warning("It is strongly recommended to keep mac addresses "
198 "unique to avoid problems!\n");
199 }
200 rcu_read_unlock();
201}
202
203int hardif_min_mtu(struct net_device *soft_iface)
204{
Sven Eckelmann747e4222011-05-14 23:14:50 +0200205 const struct bat_priv *bat_priv = netdev_priv(soft_iface);
206 const struct hard_iface *hard_iface;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000207 /* allow big frames if all devices are capable to do so
208 * (have MTU > 1500 + BAT_HEADER_LEN) */
209 int min_mtu = ETH_DATA_LEN;
210
211 if (atomic_read(&bat_priv->fragmentation))
212 goto out;
213
214 rcu_read_lock();
Marek Lindnere6c10f42011-02-18 12:33:20 +0000215 list_for_each_entry_rcu(hard_iface, &hardif_list, list) {
216 if ((hard_iface->if_status != IF_ACTIVE) &&
217 (hard_iface->if_status != IF_TO_BE_ACTIVATED))
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000218 continue;
219
Marek Lindnere6c10f42011-02-18 12:33:20 +0000220 if (hard_iface->soft_iface != soft_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000221 continue;
222
Marek Lindnere6c10f42011-02-18 12:33:20 +0000223 min_mtu = min_t(int, hard_iface->net_dev->mtu - BAT_HEADER_LEN,
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000224 min_mtu);
225 }
226 rcu_read_unlock();
227out:
228 return min_mtu;
229}
230
231/* adjusts the MTU if a new interface with a smaller MTU appeared. */
232void update_min_mtu(struct net_device *soft_iface)
233{
234 int min_mtu;
235
236 min_mtu = hardif_min_mtu(soft_iface);
237 if (soft_iface->mtu != min_mtu)
238 soft_iface->mtu = min_mtu;
239}
240
Marek Lindnere6c10f42011-02-18 12:33:20 +0000241static void hardif_activate_interface(struct hard_iface *hard_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000242{
243 struct bat_priv *bat_priv;
Marek Lindner32ae9b22011-04-20 15:40:58 +0200244 struct hard_iface *primary_if = NULL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000245
Marek Lindnere6c10f42011-02-18 12:33:20 +0000246 if (hard_iface->if_status != IF_INACTIVE)
Marek Lindner32ae9b22011-04-20 15:40:58 +0200247 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000248
Marek Lindnere6c10f42011-02-18 12:33:20 +0000249 bat_priv = netdev_priv(hard_iface->soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000250
Marek Lindnere6c10f42011-02-18 12:33:20 +0000251 update_mac_addresses(hard_iface);
252 hard_iface->if_status = IF_TO_BE_ACTIVATED;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000253
254 /**
255 * the first active interface becomes our primary interface or
Antonio Quartulli015758d2011-07-09 17:52:13 +0200256 * the next active interface after the old primary interface was removed
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000257 */
Marek Lindner32ae9b22011-04-20 15:40:58 +0200258 primary_if = primary_if_get_selected(bat_priv);
259 if (!primary_if)
260 primary_if_select(bat_priv, hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000261
Marek Lindnere6c10f42011-02-18 12:33:20 +0000262 bat_info(hard_iface->soft_iface, "Interface activated: %s\n",
263 hard_iface->net_dev->name);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000264
Marek Lindnere6c10f42011-02-18 12:33:20 +0000265 update_min_mtu(hard_iface->soft_iface);
Marek Lindner32ae9b22011-04-20 15:40:58 +0200266
267out:
268 if (primary_if)
269 hardif_free_ref(primary_if);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000270}
271
Marek Lindnere6c10f42011-02-18 12:33:20 +0000272static void hardif_deactivate_interface(struct hard_iface *hard_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000273{
Marek Lindnere6c10f42011-02-18 12:33:20 +0000274 if ((hard_iface->if_status != IF_ACTIVE) &&
275 (hard_iface->if_status != IF_TO_BE_ACTIVATED))
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000276 return;
277
Marek Lindnere6c10f42011-02-18 12:33:20 +0000278 hard_iface->if_status = IF_INACTIVE;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000279
Marek Lindnere6c10f42011-02-18 12:33:20 +0000280 bat_info(hard_iface->soft_iface, "Interface deactivated: %s\n",
281 hard_iface->net_dev->name);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000282
Marek Lindnere6c10f42011-02-18 12:33:20 +0000283 update_min_mtu(hard_iface->soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000284}
285
Sven Eckelmann747e4222011-05-14 23:14:50 +0200286int hardif_enable_interface(struct hard_iface *hard_iface,
287 const char *iface_name)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000288{
289 struct bat_priv *bat_priv;
Marek Lindnerb6da4bf2011-07-29 17:31:50 +0200290 struct batman_ogm_packet *batman_ogm_packet;
Sven Eckelmanne44d8fe2011-03-04 21:36:41 +0000291 struct net_device *soft_iface;
292 int ret;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000293
Marek Lindnere6c10f42011-02-18 12:33:20 +0000294 if (hard_iface->if_status != IF_NOT_IN_USE)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000295 goto out;
296
Marek Lindnere6c10f42011-02-18 12:33:20 +0000297 if (!atomic_inc_not_zero(&hard_iface->refcount))
Marek Lindnered75ccb2011-02-10 14:33:51 +0000298 goto out;
299
Sven Eckelmanne44d8fe2011-03-04 21:36:41 +0000300 soft_iface = dev_get_by_name(&init_net, iface_name);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000301
Sven Eckelmanne44d8fe2011-03-04 21:36:41 +0000302 if (!soft_iface) {
303 soft_iface = softif_create(iface_name);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000304
Sven Eckelmanne44d8fe2011-03-04 21:36:41 +0000305 if (!soft_iface) {
306 ret = -ENOMEM;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000307 goto err;
Sven Eckelmanne44d8fe2011-03-04 21:36:41 +0000308 }
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000309
310 /* dev_get_by_name() increases the reference counter for us */
Sven Eckelmanne44d8fe2011-03-04 21:36:41 +0000311 dev_hold(soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000312 }
313
Sven Eckelmanne44d8fe2011-03-04 21:36:41 +0000314 if (!softif_is_valid(soft_iface)) {
315 pr_err("Can't create batman mesh interface %s: "
316 "already exists as regular interface\n",
317 soft_iface->name);
318 dev_put(soft_iface);
319 ret = -EINVAL;
320 goto err;
321 }
322
323 hard_iface->soft_iface = soft_iface;
Marek Lindnere6c10f42011-02-18 12:33:20 +0000324 bat_priv = netdev_priv(hard_iface->soft_iface);
Marek Lindnerb6da4bf2011-07-29 17:31:50 +0200325 hard_iface->packet_len = BATMAN_OGM_LEN;
Marek Lindnere6c10f42011-02-18 12:33:20 +0000326 hard_iface->packet_buff = kmalloc(hard_iface->packet_len, GFP_ATOMIC);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000327
Marek Lindnere6c10f42011-02-18 12:33:20 +0000328 if (!hard_iface->packet_buff) {
329 bat_err(hard_iface->soft_iface, "Can't add interface packet "
330 "(%s): out of memory\n", hard_iface->net_dev->name);
Sven Eckelmanne44d8fe2011-03-04 21:36:41 +0000331 ret = -ENOMEM;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000332 goto err;
333 }
334
Marek Lindnerb6da4bf2011-07-29 17:31:50 +0200335 batman_ogm_packet = (struct batman_ogm_packet *)
336 (hard_iface->packet_buff);
337 batman_ogm_packet->packet_type = BAT_OGM;
338 batman_ogm_packet->version = COMPAT_VERSION;
339 batman_ogm_packet->flags = NO_FLAGS;
340 batman_ogm_packet->ttl = 2;
341 batman_ogm_packet->tq = TQ_MAX_VALUE;
342 batman_ogm_packet->tt_num_changes = 0;
343 batman_ogm_packet->ttvn = 0;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000344
Marek Lindnere6c10f42011-02-18 12:33:20 +0000345 hard_iface->if_num = bat_priv->num_ifaces;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000346 bat_priv->num_ifaces++;
Marek Lindnere6c10f42011-02-18 12:33:20 +0000347 hard_iface->if_status = IF_INACTIVE;
348 orig_hash_add_if(hard_iface, bat_priv->num_ifaces);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000349
Marek Lindnere6c10f42011-02-18 12:33:20 +0000350 hard_iface->batman_adv_ptype.type = __constant_htons(ETH_P_BATMAN);
351 hard_iface->batman_adv_ptype.func = batman_skb_recv;
352 hard_iface->batman_adv_ptype.dev = hard_iface->net_dev;
353 dev_add_pack(&hard_iface->batman_adv_ptype);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000354
Marek Lindnere6c10f42011-02-18 12:33:20 +0000355 atomic_set(&hard_iface->seqno, 1);
356 atomic_set(&hard_iface->frag_seqno, 1);
357 bat_info(hard_iface->soft_iface, "Adding interface: %s\n",
358 hard_iface->net_dev->name);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000359
Marek Lindnere6c10f42011-02-18 12:33:20 +0000360 if (atomic_read(&bat_priv->fragmentation) && hard_iface->net_dev->mtu <
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000361 ETH_DATA_LEN + BAT_HEADER_LEN)
Marek Lindnere6c10f42011-02-18 12:33:20 +0000362 bat_info(hard_iface->soft_iface,
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000363 "The MTU of interface %s is too small (%i) to handle "
364 "the transport of batman-adv packets. Packets going "
365 "over this interface will be fragmented on layer2 "
366 "which could impact the performance. Setting the MTU "
367 "to %zi would solve the problem.\n",
Marek Lindnere6c10f42011-02-18 12:33:20 +0000368 hard_iface->net_dev->name, hard_iface->net_dev->mtu,
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000369 ETH_DATA_LEN + BAT_HEADER_LEN);
370
Marek Lindnere6c10f42011-02-18 12:33:20 +0000371 if (!atomic_read(&bat_priv->fragmentation) && hard_iface->net_dev->mtu <
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000372 ETH_DATA_LEN + BAT_HEADER_LEN)
Marek Lindnere6c10f42011-02-18 12:33:20 +0000373 bat_info(hard_iface->soft_iface,
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000374 "The MTU of interface %s is too small (%i) to handle "
375 "the transport of batman-adv packets. If you experience"
376 " problems getting traffic through try increasing the "
377 "MTU to %zi.\n",
Marek Lindnere6c10f42011-02-18 12:33:20 +0000378 hard_iface->net_dev->name, hard_iface->net_dev->mtu,
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000379 ETH_DATA_LEN + BAT_HEADER_LEN);
380
Marek Lindnere6c10f42011-02-18 12:33:20 +0000381 if (hardif_is_iface_up(hard_iface))
382 hardif_activate_interface(hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000383 else
Marek Lindnere6c10f42011-02-18 12:33:20 +0000384 bat_err(hard_iface->soft_iface, "Not using interface %s "
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000385 "(retrying later): interface not active\n",
Marek Lindnere6c10f42011-02-18 12:33:20 +0000386 hard_iface->net_dev->name);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000387
388 /* begin scheduling originator messages on that interface */
Marek Lindnere6c10f42011-02-18 12:33:20 +0000389 schedule_own_packet(hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000390
391out:
392 return 0;
393
394err:
Marek Lindnere6c10f42011-02-18 12:33:20 +0000395 hardif_free_ref(hard_iface);
Sven Eckelmanne44d8fe2011-03-04 21:36:41 +0000396 return ret;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000397}
398
Marek Lindnere6c10f42011-02-18 12:33:20 +0000399void hardif_disable_interface(struct hard_iface *hard_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000400{
Marek Lindnere6c10f42011-02-18 12:33:20 +0000401 struct bat_priv *bat_priv = netdev_priv(hard_iface->soft_iface);
Marek Lindner32ae9b22011-04-20 15:40:58 +0200402 struct hard_iface *primary_if = NULL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000403
Marek Lindnere6c10f42011-02-18 12:33:20 +0000404 if (hard_iface->if_status == IF_ACTIVE)
405 hardif_deactivate_interface(hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000406
Marek Lindnere6c10f42011-02-18 12:33:20 +0000407 if (hard_iface->if_status != IF_INACTIVE)
Marek Lindner32ae9b22011-04-20 15:40:58 +0200408 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000409
Marek Lindnere6c10f42011-02-18 12:33:20 +0000410 bat_info(hard_iface->soft_iface, "Removing interface: %s\n",
411 hard_iface->net_dev->name);
412 dev_remove_pack(&hard_iface->batman_adv_ptype);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000413
414 bat_priv->num_ifaces--;
Marek Lindnere6c10f42011-02-18 12:33:20 +0000415 orig_hash_del_if(hard_iface, bat_priv->num_ifaces);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000416
Marek Lindner32ae9b22011-04-20 15:40:58 +0200417 primary_if = primary_if_get_selected(bat_priv);
418 if (hard_iface == primary_if) {
Marek Lindnere6c10f42011-02-18 12:33:20 +0000419 struct hard_iface *new_if;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000420
Marek Lindnere6c10f42011-02-18 12:33:20 +0000421 new_if = hardif_get_active(hard_iface->soft_iface);
Marek Lindner32ae9b22011-04-20 15:40:58 +0200422 primary_if_select(bat_priv, new_if);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000423
424 if (new_if)
Marek Lindnered75ccb2011-02-10 14:33:51 +0000425 hardif_free_ref(new_if);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000426 }
427
Marek Lindnere6c10f42011-02-18 12:33:20 +0000428 kfree(hard_iface->packet_buff);
429 hard_iface->packet_buff = NULL;
430 hard_iface->if_status = IF_NOT_IN_USE;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000431
Marek Lindnere6c10f42011-02-18 12:33:20 +0000432 /* delete all references to this hard_iface */
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000433 purge_orig_ref(bat_priv);
Marek Lindnere6c10f42011-02-18 12:33:20 +0000434 purge_outstanding_packets(bat_priv, hard_iface);
435 dev_put(hard_iface->soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000436
437 /* nobody uses this interface anymore */
438 if (!bat_priv->num_ifaces)
Marek Lindnere6c10f42011-02-18 12:33:20 +0000439 softif_destroy(hard_iface->soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000440
Marek Lindnere6c10f42011-02-18 12:33:20 +0000441 hard_iface->soft_iface = NULL;
442 hardif_free_ref(hard_iface);
Marek Lindner32ae9b22011-04-20 15:40:58 +0200443
444out:
445 if (primary_if)
446 hardif_free_ref(primary_if);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000447}
448
Marek Lindnere6c10f42011-02-18 12:33:20 +0000449static struct hard_iface *hardif_add_interface(struct net_device *net_dev)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000450{
Marek Lindnere6c10f42011-02-18 12:33:20 +0000451 struct hard_iface *hard_iface;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000452 int ret;
453
Sven Eckelmannc3caf512011-05-03 11:51:38 +0200454 ASSERT_RTNL();
455
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000456 ret = is_valid_iface(net_dev);
457 if (ret != 1)
458 goto out;
459
460 dev_hold(net_dev);
461
Sven Eckelmann704509b2011-05-14 23:14:54 +0200462 hard_iface = kmalloc(sizeof(*hard_iface), GFP_ATOMIC);
Marek Lindnere6c10f42011-02-18 12:33:20 +0000463 if (!hard_iface) {
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000464 pr_err("Can't add interface (%s): out of memory\n",
465 net_dev->name);
466 goto release_dev;
467 }
468
Marek Lindnere6c10f42011-02-18 12:33:20 +0000469 ret = sysfs_add_hardif(&hard_iface->hardif_obj, net_dev);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000470 if (ret)
471 goto free_if;
472
Marek Lindnere6c10f42011-02-18 12:33:20 +0000473 hard_iface->if_num = -1;
474 hard_iface->net_dev = net_dev;
475 hard_iface->soft_iface = NULL;
476 hard_iface->if_status = IF_NOT_IN_USE;
477 INIT_LIST_HEAD(&hard_iface->list);
Marek Lindnered75ccb2011-02-10 14:33:51 +0000478 /* extra reference for return */
Marek Lindnere6c10f42011-02-18 12:33:20 +0000479 atomic_set(&hard_iface->refcount, 2);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000480
Marek Lindnere6c10f42011-02-18 12:33:20 +0000481 check_known_mac_addr(hard_iface->net_dev);
Marek Lindnere6c10f42011-02-18 12:33:20 +0000482 list_add_tail_rcu(&hard_iface->list, &hardif_list);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000483
Marek Lindnere6c10f42011-02-18 12:33:20 +0000484 return hard_iface;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000485
486free_if:
Marek Lindnere6c10f42011-02-18 12:33:20 +0000487 kfree(hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000488release_dev:
489 dev_put(net_dev);
490out:
491 return NULL;
492}
493
Marek Lindnere6c10f42011-02-18 12:33:20 +0000494static void hardif_remove_interface(struct hard_iface *hard_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000495{
Sven Eckelmannc3caf512011-05-03 11:51:38 +0200496 ASSERT_RTNL();
497
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000498 /* first deactivate interface */
Marek Lindnere6c10f42011-02-18 12:33:20 +0000499 if (hard_iface->if_status != IF_NOT_IN_USE)
500 hardif_disable_interface(hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000501
Marek Lindnere6c10f42011-02-18 12:33:20 +0000502 if (hard_iface->if_status != IF_NOT_IN_USE)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000503 return;
504
Marek Lindnere6c10f42011-02-18 12:33:20 +0000505 hard_iface->if_status = IF_TO_BE_REMOVED;
506 sysfs_del_hardif(&hard_iface->hardif_obj);
507 hardif_free_ref(hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000508}
509
510void hardif_remove_interfaces(void)
511{
Marek Lindnere6c10f42011-02-18 12:33:20 +0000512 struct hard_iface *hard_iface, *hard_iface_tmp;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000513
Sven Eckelmannc3caf512011-05-03 11:51:38 +0200514 rtnl_lock();
Marek Lindnere6c10f42011-02-18 12:33:20 +0000515 list_for_each_entry_safe(hard_iface, hard_iface_tmp,
516 &hardif_list, list) {
517 list_del_rcu(&hard_iface->list);
Marek Lindnere6c10f42011-02-18 12:33:20 +0000518 hardif_remove_interface(hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000519 }
520 rtnl_unlock();
521}
522
523static int hard_if_event(struct notifier_block *this,
524 unsigned long event, void *ptr)
525{
Sven Eckelmann5f718c22011-05-14 23:14:52 +0200526 struct net_device *net_dev = ptr;
Marek Lindnere6c10f42011-02-18 12:33:20 +0000527 struct hard_iface *hard_iface = hardif_get_by_netdev(net_dev);
Marek Lindner32ae9b22011-04-20 15:40:58 +0200528 struct hard_iface *primary_if = NULL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000529 struct bat_priv *bat_priv;
530
Marek Lindnere6c10f42011-02-18 12:33:20 +0000531 if (!hard_iface && event == NETDEV_REGISTER)
532 hard_iface = hardif_add_interface(net_dev);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000533
Marek Lindnere6c10f42011-02-18 12:33:20 +0000534 if (!hard_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000535 goto out;
536
537 switch (event) {
538 case NETDEV_UP:
Marek Lindnere6c10f42011-02-18 12:33:20 +0000539 hardif_activate_interface(hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000540 break;
541 case NETDEV_GOING_DOWN:
542 case NETDEV_DOWN:
Marek Lindnere6c10f42011-02-18 12:33:20 +0000543 hardif_deactivate_interface(hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000544 break;
545 case NETDEV_UNREGISTER:
Marek Lindnere6c10f42011-02-18 12:33:20 +0000546 list_del_rcu(&hard_iface->list);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000547
Marek Lindnere6c10f42011-02-18 12:33:20 +0000548 hardif_remove_interface(hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000549 break;
550 case NETDEV_CHANGEMTU:
Marek Lindnere6c10f42011-02-18 12:33:20 +0000551 if (hard_iface->soft_iface)
552 update_min_mtu(hard_iface->soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000553 break;
554 case NETDEV_CHANGEADDR:
Marek Lindnere6c10f42011-02-18 12:33:20 +0000555 if (hard_iface->if_status == IF_NOT_IN_USE)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000556 goto hardif_put;
557
Marek Lindnere6c10f42011-02-18 12:33:20 +0000558 check_known_mac_addr(hard_iface->net_dev);
559 update_mac_addresses(hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000560
Marek Lindnere6c10f42011-02-18 12:33:20 +0000561 bat_priv = netdev_priv(hard_iface->soft_iface);
Marek Lindner32ae9b22011-04-20 15:40:58 +0200562 primary_if = primary_if_get_selected(bat_priv);
563 if (!primary_if)
564 goto hardif_put;
565
566 if (hard_iface == primary_if)
567 primary_if_update_addr(bat_priv);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000568 break;
569 default:
570 break;
Joe Perchesf81c6222011-06-03 11:51:19 +0000571 }
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000572
573hardif_put:
Marek Lindnere6c10f42011-02-18 12:33:20 +0000574 hardif_free_ref(hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000575out:
Marek Lindner32ae9b22011-04-20 15:40:58 +0200576 if (primary_if)
577 hardif_free_ref(primary_if);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000578 return NOTIFY_DONE;
579}
580
Antonio Quartulli015758d2011-07-09 17:52:13 +0200581/* incoming packets with the batman ethertype received on any active hard
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000582 * interface */
Sven Eckelmannfb86d762011-01-27 13:16:08 +0100583static int batman_skb_recv(struct sk_buff *skb, struct net_device *dev,
584 struct packet_type *ptype,
585 struct net_device *orig_dev)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000586{
587 struct bat_priv *bat_priv;
Marek Lindnerb6da4bf2011-07-29 17:31:50 +0200588 struct batman_ogm_packet *batman_ogm_packet;
Marek Lindnere6c10f42011-02-18 12:33:20 +0000589 struct hard_iface *hard_iface;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000590 int ret;
591
Marek Lindnere6c10f42011-02-18 12:33:20 +0000592 hard_iface = container_of(ptype, struct hard_iface, batman_adv_ptype);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000593 skb = skb_share_check(skb, GFP_ATOMIC);
594
595 /* skb was released by skb_share_check() */
596 if (!skb)
597 goto err_out;
598
599 /* packet should hold at least type and version */
600 if (unlikely(!pskb_may_pull(skb, 2)))
601 goto err_free;
602
603 /* expect a valid ethernet header here. */
604 if (unlikely(skb->mac_len != sizeof(struct ethhdr)
605 || !skb_mac_header(skb)))
606 goto err_free;
607
Marek Lindnere6c10f42011-02-18 12:33:20 +0000608 if (!hard_iface->soft_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000609 goto err_free;
610
Marek Lindnere6c10f42011-02-18 12:33:20 +0000611 bat_priv = netdev_priv(hard_iface->soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000612
613 if (atomic_read(&bat_priv->mesh_state) != MESH_ACTIVE)
614 goto err_free;
615
616 /* discard frames on not active interfaces */
Marek Lindnere6c10f42011-02-18 12:33:20 +0000617 if (hard_iface->if_status != IF_ACTIVE)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000618 goto err_free;
619
Marek Lindnerb6da4bf2011-07-29 17:31:50 +0200620 batman_ogm_packet = (struct batman_ogm_packet *)skb->data;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000621
Marek Lindnerb6da4bf2011-07-29 17:31:50 +0200622 if (batman_ogm_packet->version != COMPAT_VERSION) {
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000623 bat_dbg(DBG_BATMAN, bat_priv,
624 "Drop packet: incompatible batman version (%i)\n",
Marek Lindnerb6da4bf2011-07-29 17:31:50 +0200625 batman_ogm_packet->version);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000626 goto err_free;
627 }
628
629 /* all receive handlers return whether they received or reused
630 * the supplied skb. if not, we have to free the skb. */
631
Marek Lindnerb6da4bf2011-07-29 17:31:50 +0200632 switch (batman_ogm_packet->packet_type) {
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000633 /* batman originator packet */
Marek Lindnerb6da4bf2011-07-29 17:31:50 +0200634 case BAT_OGM:
Marek Lindnerfc957272011-07-30 12:04:12 +0200635 ret = recv_bat_ogm_packet(skb, hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000636 break;
637
638 /* batman icmp packet */
639 case BAT_ICMP:
Marek Lindnere6c10f42011-02-18 12:33:20 +0000640 ret = recv_icmp_packet(skb, hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000641 break;
642
643 /* unicast packet */
644 case BAT_UNICAST:
Marek Lindnere6c10f42011-02-18 12:33:20 +0000645 ret = recv_unicast_packet(skb, hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000646 break;
647
648 /* fragmented unicast packet */
649 case BAT_UNICAST_FRAG:
Marek Lindnere6c10f42011-02-18 12:33:20 +0000650 ret = recv_ucast_frag_packet(skb, hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000651 break;
652
653 /* broadcast packet */
654 case BAT_BCAST:
Marek Lindnere6c10f42011-02-18 12:33:20 +0000655 ret = recv_bcast_packet(skb, hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000656 break;
657
658 /* vis packet */
659 case BAT_VIS:
Marek Lindnere6c10f42011-02-18 12:33:20 +0000660 ret = recv_vis_packet(skb, hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000661 break;
Antonio Quartullia73105b2011-04-27 14:27:44 +0200662 /* Translation table query (request or response) */
663 case BAT_TT_QUERY:
664 ret = recv_tt_query(skb, hard_iface);
665 break;
Antonio Quartullicc47f662011-04-27 14:27:57 +0200666 /* Roaming advertisement */
667 case BAT_ROAM_ADV:
668 ret = recv_roam_adv(skb, hard_iface);
669 break;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000670 default:
671 ret = NET_RX_DROP;
672 }
673
674 if (ret == NET_RX_DROP)
675 kfree_skb(skb);
676
677 /* return NET_RX_SUCCESS in any case as we
678 * most probably dropped the packet for
679 * routing-logical reasons. */
680
681 return NET_RX_SUCCESS;
682
683err_free:
684 kfree_skb(skb);
685err_out:
686 return NET_RX_DROP;
687}
688
Antonio Quartullibc279082011-07-07 15:35:35 +0200689/* This function returns true if the interface represented by ifindex is a
690 * 802.11 wireless device */
691bool is_wifi_iface(int ifindex)
692{
693 struct net_device *net_device = NULL;
694 bool ret = false;
695
696 if (ifindex == NULL_IFINDEX)
697 goto out;
698
699 net_device = dev_get_by_index(&init_net, ifindex);
700 if (!net_device)
701 goto out;
702
703#ifdef CONFIG_WIRELESS_EXT
704 /* pre-cfg80211 drivers have to implement WEXT, so it is possible to
705 * check for wireless_handlers != NULL */
706 if (net_device->wireless_handlers)
707 ret = true;
708 else
709#endif
710 /* cfg80211 drivers have to set ieee80211_ptr */
711 if (net_device->ieee80211_ptr)
712 ret = true;
713out:
714 if (net_device)
715 dev_put(net_device);
716 return ret;
717}
718
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000719struct notifier_block hard_if_notifier = {
720 .notifier_call = hard_if_event,
721};