blob: b3058e46ee6ba9bb7bdfc7ef96860eedc9bb67f7 [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
Marek Lindner4389e472011-02-18 12:33:19 +000034/* protect update critical side of hardif_list - but not the content */
35static DEFINE_SPINLOCK(hardif_list_lock);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000036
Sven Eckelmannfb86d762011-01-27 13:16:08 +010037
38static int batman_skb_recv(struct sk_buff *skb,
39 struct net_device *dev,
40 struct packet_type *ptype,
41 struct net_device *orig_dev);
42
Marek Lindnered75ccb2011-02-10 14:33:51 +000043void hardif_free_rcu(struct rcu_head *rcu)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000044{
Marek Lindnere6c10f42011-02-18 12:33:20 +000045 struct hard_iface *hard_iface;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000046
Marek Lindnere6c10f42011-02-18 12:33:20 +000047 hard_iface = container_of(rcu, struct hard_iface, rcu);
48 dev_put(hard_iface->net_dev);
49 kfree(hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000050}
51
Marek Lindnere6c10f42011-02-18 12:33:20 +000052struct hard_iface *hardif_get_by_netdev(struct net_device *net_dev)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000053{
Marek Lindnere6c10f42011-02-18 12:33:20 +000054 struct hard_iface *hard_iface;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000055
56 rcu_read_lock();
Marek Lindnere6c10f42011-02-18 12:33:20 +000057 list_for_each_entry_rcu(hard_iface, &hardif_list, list) {
58 if (hard_iface->net_dev == net_dev &&
59 atomic_inc_not_zero(&hard_iface->refcount))
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000060 goto out;
61 }
62
Marek Lindnere6c10f42011-02-18 12:33:20 +000063 hard_iface = NULL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000064
65out:
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000066 rcu_read_unlock();
Marek Lindnere6c10f42011-02-18 12:33:20 +000067 return hard_iface;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000068}
69
70static int is_valid_iface(struct net_device *net_dev)
71{
72 if (net_dev->flags & IFF_LOOPBACK)
73 return 0;
74
75 if (net_dev->type != ARPHRD_ETHER)
76 return 0;
77
78 if (net_dev->addr_len != ETH_ALEN)
79 return 0;
80
81 /* no batman over batman */
Sven Eckelmanne44d8fe2011-03-04 21:36:41 +000082 if (softif_is_valid(net_dev))
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000083 return 0;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000084
85 /* Device is being bridged */
86 /* if (net_dev->priv_flags & IFF_BRIDGE_PORT)
87 return 0; */
88
89 return 1;
90}
91
Marek Lindnere6c10f42011-02-18 12:33:20 +000092static struct hard_iface *hardif_get_active(struct net_device *soft_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000093{
Marek Lindnere6c10f42011-02-18 12:33:20 +000094 struct hard_iface *hard_iface;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000095
96 rcu_read_lock();
Marek Lindnere6c10f42011-02-18 12:33:20 +000097 list_for_each_entry_rcu(hard_iface, &hardif_list, list) {
98 if (hard_iface->soft_iface != soft_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000099 continue;
100
Marek Lindnere6c10f42011-02-18 12:33:20 +0000101 if (hard_iface->if_status == IF_ACTIVE &&
102 atomic_inc_not_zero(&hard_iface->refcount))
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000103 goto out;
104 }
105
Marek Lindnere6c10f42011-02-18 12:33:20 +0000106 hard_iface = NULL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000107
108out:
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000109 rcu_read_unlock();
Marek Lindnere6c10f42011-02-18 12:33:20 +0000110 return hard_iface;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000111}
112
113static void update_primary_addr(struct bat_priv *bat_priv)
114{
115 struct vis_packet *vis_packet;
116
117 vis_packet = (struct vis_packet *)
118 bat_priv->my_vis_info->skb_packet->data;
119 memcpy(vis_packet->vis_orig,
120 bat_priv->primary_if->net_dev->dev_addr, ETH_ALEN);
121 memcpy(vis_packet->sender_orig,
122 bat_priv->primary_if->net_dev->dev_addr, ETH_ALEN);
123}
124
125static void set_primary_if(struct bat_priv *bat_priv,
Marek Lindnere6c10f42011-02-18 12:33:20 +0000126 struct hard_iface *hard_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000127{
128 struct batman_packet *batman_packet;
Marek Lindnere6c10f42011-02-18 12:33:20 +0000129 struct hard_iface *old_if;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000130
Marek Lindnere6c10f42011-02-18 12:33:20 +0000131 if (hard_iface && !atomic_inc_not_zero(&hard_iface->refcount))
132 hard_iface = NULL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000133
134 old_if = bat_priv->primary_if;
Marek Lindnere6c10f42011-02-18 12:33:20 +0000135 bat_priv->primary_if = hard_iface;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000136
137 if (old_if)
Marek Lindnered75ccb2011-02-10 14:33:51 +0000138 hardif_free_ref(old_if);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000139
140 if (!bat_priv->primary_if)
141 return;
142
Marek Lindnere6c10f42011-02-18 12:33:20 +0000143 batman_packet = (struct batman_packet *)(hard_iface->packet_buff);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000144 batman_packet->flags = PRIMARIES_FIRST_HOP;
145 batman_packet->ttl = TTL;
146
147 update_primary_addr(bat_priv);
148
149 /***
150 * hacky trick to make sure that we send the HNA information via
151 * our new primary interface
152 */
153 atomic_set(&bat_priv->hna_local_changed, 1);
154}
155
Marek Lindnere6c10f42011-02-18 12:33:20 +0000156static bool hardif_is_iface_up(struct hard_iface *hard_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000157{
Marek Lindnere6c10f42011-02-18 12:33:20 +0000158 if (hard_iface->net_dev->flags & IFF_UP)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000159 return true;
160
161 return false;
162}
163
Marek Lindnere6c10f42011-02-18 12:33:20 +0000164static void update_mac_addresses(struct hard_iface *hard_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000165{
Marek Lindnere6c10f42011-02-18 12:33:20 +0000166 memcpy(((struct batman_packet *)(hard_iface->packet_buff))->orig,
167 hard_iface->net_dev->dev_addr, ETH_ALEN);
168 memcpy(((struct batman_packet *)(hard_iface->packet_buff))->prev_sender,
169 hard_iface->net_dev->dev_addr, ETH_ALEN);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000170}
171
172static void check_known_mac_addr(struct net_device *net_dev)
173{
Marek Lindnere6c10f42011-02-18 12:33:20 +0000174 struct hard_iface *hard_iface;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000175
176 rcu_read_lock();
Marek Lindnere6c10f42011-02-18 12:33:20 +0000177 list_for_each_entry_rcu(hard_iface, &hardif_list, list) {
178 if ((hard_iface->if_status != IF_ACTIVE) &&
179 (hard_iface->if_status != IF_TO_BE_ACTIVATED))
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000180 continue;
181
Marek Lindnere6c10f42011-02-18 12:33:20 +0000182 if (hard_iface->net_dev == net_dev)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000183 continue;
184
Marek Lindnere6c10f42011-02-18 12:33:20 +0000185 if (!compare_eth(hard_iface->net_dev->dev_addr,
186 net_dev->dev_addr))
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000187 continue;
188
189 pr_warning("The newly added mac address (%pM) already exists "
190 "on: %s\n", net_dev->dev_addr,
Marek Lindnere6c10f42011-02-18 12:33:20 +0000191 hard_iface->net_dev->name);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000192 pr_warning("It is strongly recommended to keep mac addresses "
193 "unique to avoid problems!\n");
194 }
195 rcu_read_unlock();
196}
197
198int hardif_min_mtu(struct net_device *soft_iface)
199{
200 struct bat_priv *bat_priv = netdev_priv(soft_iface);
Marek Lindnere6c10f42011-02-18 12:33:20 +0000201 struct hard_iface *hard_iface;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000202 /* allow big frames if all devices are capable to do so
203 * (have MTU > 1500 + BAT_HEADER_LEN) */
204 int min_mtu = ETH_DATA_LEN;
205
206 if (atomic_read(&bat_priv->fragmentation))
207 goto out;
208
209 rcu_read_lock();
Marek Lindnere6c10f42011-02-18 12:33:20 +0000210 list_for_each_entry_rcu(hard_iface, &hardif_list, list) {
211 if ((hard_iface->if_status != IF_ACTIVE) &&
212 (hard_iface->if_status != IF_TO_BE_ACTIVATED))
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000213 continue;
214
Marek Lindnere6c10f42011-02-18 12:33:20 +0000215 if (hard_iface->soft_iface != soft_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000216 continue;
217
Marek Lindnere6c10f42011-02-18 12:33:20 +0000218 min_mtu = min_t(int, hard_iface->net_dev->mtu - BAT_HEADER_LEN,
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000219 min_mtu);
220 }
221 rcu_read_unlock();
222out:
223 return min_mtu;
224}
225
226/* adjusts the MTU if a new interface with a smaller MTU appeared. */
227void update_min_mtu(struct net_device *soft_iface)
228{
229 int min_mtu;
230
231 min_mtu = hardif_min_mtu(soft_iface);
232 if (soft_iface->mtu != min_mtu)
233 soft_iface->mtu = min_mtu;
234}
235
Marek Lindnere6c10f42011-02-18 12:33:20 +0000236static void hardif_activate_interface(struct hard_iface *hard_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000237{
238 struct bat_priv *bat_priv;
239
Marek Lindnere6c10f42011-02-18 12:33:20 +0000240 if (hard_iface->if_status != IF_INACTIVE)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000241 return;
242
Marek Lindnere6c10f42011-02-18 12:33:20 +0000243 bat_priv = netdev_priv(hard_iface->soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000244
Marek Lindnere6c10f42011-02-18 12:33:20 +0000245 update_mac_addresses(hard_iface);
246 hard_iface->if_status = IF_TO_BE_ACTIVATED;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000247
248 /**
249 * the first active interface becomes our primary interface or
250 * the next active interface after the old primay interface was removed
251 */
252 if (!bat_priv->primary_if)
Marek Lindnere6c10f42011-02-18 12:33:20 +0000253 set_primary_if(bat_priv, hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000254
Marek Lindnere6c10f42011-02-18 12:33:20 +0000255 bat_info(hard_iface->soft_iface, "Interface activated: %s\n",
256 hard_iface->net_dev->name);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000257
Marek Lindnere6c10f42011-02-18 12:33:20 +0000258 update_min_mtu(hard_iface->soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000259 return;
260}
261
Marek Lindnere6c10f42011-02-18 12:33:20 +0000262static void hardif_deactivate_interface(struct hard_iface *hard_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000263{
Marek Lindnere6c10f42011-02-18 12:33:20 +0000264 if ((hard_iface->if_status != IF_ACTIVE) &&
265 (hard_iface->if_status != IF_TO_BE_ACTIVATED))
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000266 return;
267
Marek Lindnere6c10f42011-02-18 12:33:20 +0000268 hard_iface->if_status = IF_INACTIVE;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000269
Marek Lindnere6c10f42011-02-18 12:33:20 +0000270 bat_info(hard_iface->soft_iface, "Interface deactivated: %s\n",
271 hard_iface->net_dev->name);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000272
Marek Lindnere6c10f42011-02-18 12:33:20 +0000273 update_min_mtu(hard_iface->soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000274}
275
Marek Lindnere6c10f42011-02-18 12:33:20 +0000276int hardif_enable_interface(struct hard_iface *hard_iface, char *iface_name)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000277{
278 struct bat_priv *bat_priv;
279 struct batman_packet *batman_packet;
Sven Eckelmanne44d8fe2011-03-04 21:36:41 +0000280 struct net_device *soft_iface;
281 int ret;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000282
Marek Lindnere6c10f42011-02-18 12:33:20 +0000283 if (hard_iface->if_status != IF_NOT_IN_USE)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000284 goto out;
285
Marek Lindnere6c10f42011-02-18 12:33:20 +0000286 if (!atomic_inc_not_zero(&hard_iface->refcount))
Marek Lindnered75ccb2011-02-10 14:33:51 +0000287 goto out;
288
Sven Eckelmanne44d8fe2011-03-04 21:36:41 +0000289 soft_iface = dev_get_by_name(&init_net, iface_name);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000290
Sven Eckelmanne44d8fe2011-03-04 21:36:41 +0000291 if (!soft_iface) {
292 soft_iface = softif_create(iface_name);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000293
Sven Eckelmanne44d8fe2011-03-04 21:36:41 +0000294 if (!soft_iface) {
295 ret = -ENOMEM;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000296 goto err;
Sven Eckelmanne44d8fe2011-03-04 21:36:41 +0000297 }
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000298
299 /* dev_get_by_name() increases the reference counter for us */
Sven Eckelmanne44d8fe2011-03-04 21:36:41 +0000300 dev_hold(soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000301 }
302
Sven Eckelmanne44d8fe2011-03-04 21:36:41 +0000303 if (!softif_is_valid(soft_iface)) {
304 pr_err("Can't create batman mesh interface %s: "
305 "already exists as regular interface\n",
306 soft_iface->name);
307 dev_put(soft_iface);
308 ret = -EINVAL;
309 goto err;
310 }
311
312 hard_iface->soft_iface = soft_iface;
Marek Lindnere6c10f42011-02-18 12:33:20 +0000313 bat_priv = netdev_priv(hard_iface->soft_iface);
314 hard_iface->packet_len = BAT_PACKET_LEN;
315 hard_iface->packet_buff = kmalloc(hard_iface->packet_len, GFP_ATOMIC);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000316
Marek Lindnere6c10f42011-02-18 12:33:20 +0000317 if (!hard_iface->packet_buff) {
318 bat_err(hard_iface->soft_iface, "Can't add interface packet "
319 "(%s): out of memory\n", hard_iface->net_dev->name);
Sven Eckelmanne44d8fe2011-03-04 21:36:41 +0000320 ret = -ENOMEM;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000321 goto err;
322 }
323
Marek Lindnere6c10f42011-02-18 12:33:20 +0000324 batman_packet = (struct batman_packet *)(hard_iface->packet_buff);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000325 batman_packet->packet_type = BAT_PACKET;
326 batman_packet->version = COMPAT_VERSION;
327 batman_packet->flags = 0;
328 batman_packet->ttl = 2;
329 batman_packet->tq = TQ_MAX_VALUE;
330 batman_packet->num_hna = 0;
331
Marek Lindnere6c10f42011-02-18 12:33:20 +0000332 hard_iface->if_num = bat_priv->num_ifaces;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000333 bat_priv->num_ifaces++;
Marek Lindnere6c10f42011-02-18 12:33:20 +0000334 hard_iface->if_status = IF_INACTIVE;
335 orig_hash_add_if(hard_iface, bat_priv->num_ifaces);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000336
Marek Lindnere6c10f42011-02-18 12:33:20 +0000337 hard_iface->batman_adv_ptype.type = __constant_htons(ETH_P_BATMAN);
338 hard_iface->batman_adv_ptype.func = batman_skb_recv;
339 hard_iface->batman_adv_ptype.dev = hard_iface->net_dev;
340 dev_add_pack(&hard_iface->batman_adv_ptype);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000341
Marek Lindnere6c10f42011-02-18 12:33:20 +0000342 atomic_set(&hard_iface->seqno, 1);
343 atomic_set(&hard_iface->frag_seqno, 1);
344 bat_info(hard_iface->soft_iface, "Adding interface: %s\n",
345 hard_iface->net_dev->name);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000346
Marek Lindnere6c10f42011-02-18 12:33:20 +0000347 if (atomic_read(&bat_priv->fragmentation) && hard_iface->net_dev->mtu <
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000348 ETH_DATA_LEN + BAT_HEADER_LEN)
Marek Lindnere6c10f42011-02-18 12:33:20 +0000349 bat_info(hard_iface->soft_iface,
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000350 "The MTU of interface %s is too small (%i) to handle "
351 "the transport of batman-adv packets. Packets going "
352 "over this interface will be fragmented on layer2 "
353 "which could impact the performance. Setting the MTU "
354 "to %zi would solve the problem.\n",
Marek Lindnere6c10f42011-02-18 12:33:20 +0000355 hard_iface->net_dev->name, hard_iface->net_dev->mtu,
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000356 ETH_DATA_LEN + BAT_HEADER_LEN);
357
Marek Lindnere6c10f42011-02-18 12:33:20 +0000358 if (!atomic_read(&bat_priv->fragmentation) && hard_iface->net_dev->mtu <
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000359 ETH_DATA_LEN + BAT_HEADER_LEN)
Marek Lindnere6c10f42011-02-18 12:33:20 +0000360 bat_info(hard_iface->soft_iface,
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000361 "The MTU of interface %s is too small (%i) to handle "
362 "the transport of batman-adv packets. If you experience"
363 " problems getting traffic through try increasing the "
364 "MTU to %zi.\n",
Marek Lindnere6c10f42011-02-18 12:33:20 +0000365 hard_iface->net_dev->name, hard_iface->net_dev->mtu,
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000366 ETH_DATA_LEN + BAT_HEADER_LEN);
367
Marek Lindnere6c10f42011-02-18 12:33:20 +0000368 if (hardif_is_iface_up(hard_iface))
369 hardif_activate_interface(hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000370 else
Marek Lindnere6c10f42011-02-18 12:33:20 +0000371 bat_err(hard_iface->soft_iface, "Not using interface %s "
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000372 "(retrying later): interface not active\n",
Marek Lindnere6c10f42011-02-18 12:33:20 +0000373 hard_iface->net_dev->name);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000374
375 /* begin scheduling originator messages on that interface */
Marek Lindnere6c10f42011-02-18 12:33:20 +0000376 schedule_own_packet(hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000377
378out:
379 return 0;
380
381err:
Marek Lindnere6c10f42011-02-18 12:33:20 +0000382 hardif_free_ref(hard_iface);
Sven Eckelmanne44d8fe2011-03-04 21:36:41 +0000383 return ret;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000384}
385
Marek Lindnere6c10f42011-02-18 12:33:20 +0000386void hardif_disable_interface(struct hard_iface *hard_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000387{
Marek Lindnere6c10f42011-02-18 12:33:20 +0000388 struct bat_priv *bat_priv = netdev_priv(hard_iface->soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000389
Marek Lindnere6c10f42011-02-18 12:33:20 +0000390 if (hard_iface->if_status == IF_ACTIVE)
391 hardif_deactivate_interface(hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000392
Marek Lindnere6c10f42011-02-18 12:33:20 +0000393 if (hard_iface->if_status != IF_INACTIVE)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000394 return;
395
Marek Lindnere6c10f42011-02-18 12:33:20 +0000396 bat_info(hard_iface->soft_iface, "Removing interface: %s\n",
397 hard_iface->net_dev->name);
398 dev_remove_pack(&hard_iface->batman_adv_ptype);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000399
400 bat_priv->num_ifaces--;
Marek Lindnere6c10f42011-02-18 12:33:20 +0000401 orig_hash_del_if(hard_iface, bat_priv->num_ifaces);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000402
Marek Lindnere6c10f42011-02-18 12:33:20 +0000403 if (hard_iface == bat_priv->primary_if) {
404 struct hard_iface *new_if;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000405
Marek Lindnere6c10f42011-02-18 12:33:20 +0000406 new_if = hardif_get_active(hard_iface->soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000407 set_primary_if(bat_priv, new_if);
408
409 if (new_if)
Marek Lindnered75ccb2011-02-10 14:33:51 +0000410 hardif_free_ref(new_if);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000411 }
412
Marek Lindnere6c10f42011-02-18 12:33:20 +0000413 kfree(hard_iface->packet_buff);
414 hard_iface->packet_buff = NULL;
415 hard_iface->if_status = IF_NOT_IN_USE;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000416
Marek Lindnere6c10f42011-02-18 12:33:20 +0000417 /* delete all references to this hard_iface */
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000418 purge_orig_ref(bat_priv);
Marek Lindnere6c10f42011-02-18 12:33:20 +0000419 purge_outstanding_packets(bat_priv, hard_iface);
420 dev_put(hard_iface->soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000421
422 /* nobody uses this interface anymore */
423 if (!bat_priv->num_ifaces)
Marek Lindnere6c10f42011-02-18 12:33:20 +0000424 softif_destroy(hard_iface->soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000425
Marek Lindnere6c10f42011-02-18 12:33:20 +0000426 hard_iface->soft_iface = NULL;
427 hardif_free_ref(hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000428}
429
Marek Lindnere6c10f42011-02-18 12:33:20 +0000430static struct hard_iface *hardif_add_interface(struct net_device *net_dev)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000431{
Marek Lindnere6c10f42011-02-18 12:33:20 +0000432 struct hard_iface *hard_iface;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000433 int ret;
434
435 ret = is_valid_iface(net_dev);
436 if (ret != 1)
437 goto out;
438
439 dev_hold(net_dev);
440
Marek Lindnere6c10f42011-02-18 12:33:20 +0000441 hard_iface = kmalloc(sizeof(struct hard_iface), GFP_ATOMIC);
442 if (!hard_iface) {
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000443 pr_err("Can't add interface (%s): out of memory\n",
444 net_dev->name);
445 goto release_dev;
446 }
447
Marek Lindnere6c10f42011-02-18 12:33:20 +0000448 ret = sysfs_add_hardif(&hard_iface->hardif_obj, net_dev);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000449 if (ret)
450 goto free_if;
451
Marek Lindnere6c10f42011-02-18 12:33:20 +0000452 hard_iface->if_num = -1;
453 hard_iface->net_dev = net_dev;
454 hard_iface->soft_iface = NULL;
455 hard_iface->if_status = IF_NOT_IN_USE;
456 INIT_LIST_HEAD(&hard_iface->list);
Marek Lindnered75ccb2011-02-10 14:33:51 +0000457 /* extra reference for return */
Marek Lindnere6c10f42011-02-18 12:33:20 +0000458 atomic_set(&hard_iface->refcount, 2);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000459
Marek Lindnere6c10f42011-02-18 12:33:20 +0000460 check_known_mac_addr(hard_iface->net_dev);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000461
Marek Lindner4389e472011-02-18 12:33:19 +0000462 spin_lock(&hardif_list_lock);
Marek Lindnere6c10f42011-02-18 12:33:20 +0000463 list_add_tail_rcu(&hard_iface->list, &hardif_list);
Marek Lindner4389e472011-02-18 12:33:19 +0000464 spin_unlock(&hardif_list_lock);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000465
Marek Lindnere6c10f42011-02-18 12:33:20 +0000466 return hard_iface;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000467
468free_if:
Marek Lindnere6c10f42011-02-18 12:33:20 +0000469 kfree(hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000470release_dev:
471 dev_put(net_dev);
472out:
473 return NULL;
474}
475
Marek Lindnere6c10f42011-02-18 12:33:20 +0000476static void hardif_remove_interface(struct hard_iface *hard_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000477{
478 /* first deactivate interface */
Marek Lindnere6c10f42011-02-18 12:33:20 +0000479 if (hard_iface->if_status != IF_NOT_IN_USE)
480 hardif_disable_interface(hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000481
Marek Lindnere6c10f42011-02-18 12:33:20 +0000482 if (hard_iface->if_status != IF_NOT_IN_USE)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000483 return;
484
Marek Lindnere6c10f42011-02-18 12:33:20 +0000485 hard_iface->if_status = IF_TO_BE_REMOVED;
486 sysfs_del_hardif(&hard_iface->hardif_obj);
487 hardif_free_ref(hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000488}
489
490void hardif_remove_interfaces(void)
491{
Marek Lindnere6c10f42011-02-18 12:33:20 +0000492 struct hard_iface *hard_iface, *hard_iface_tmp;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000493 struct list_head if_queue;
494
495 INIT_LIST_HEAD(&if_queue);
496
Marek Lindner4389e472011-02-18 12:33:19 +0000497 spin_lock(&hardif_list_lock);
Marek Lindnere6c10f42011-02-18 12:33:20 +0000498 list_for_each_entry_safe(hard_iface, hard_iface_tmp,
499 &hardif_list, list) {
500 list_del_rcu(&hard_iface->list);
501 list_add_tail(&hard_iface->list, &if_queue);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000502 }
Marek Lindner4389e472011-02-18 12:33:19 +0000503 spin_unlock(&hardif_list_lock);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000504
505 rtnl_lock();
Marek Lindnere6c10f42011-02-18 12:33:20 +0000506 list_for_each_entry_safe(hard_iface, hard_iface_tmp, &if_queue, list) {
507 hardif_remove_interface(hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000508 }
509 rtnl_unlock();
510}
511
512static int hard_if_event(struct notifier_block *this,
513 unsigned long event, void *ptr)
514{
515 struct net_device *net_dev = (struct net_device *)ptr;
Marek Lindnere6c10f42011-02-18 12:33:20 +0000516 struct hard_iface *hard_iface = hardif_get_by_netdev(net_dev);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000517 struct bat_priv *bat_priv;
518
Marek Lindnere6c10f42011-02-18 12:33:20 +0000519 if (!hard_iface && event == NETDEV_REGISTER)
520 hard_iface = hardif_add_interface(net_dev);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000521
Marek Lindnere6c10f42011-02-18 12:33:20 +0000522 if (!hard_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000523 goto out;
524
525 switch (event) {
526 case NETDEV_UP:
Marek Lindnere6c10f42011-02-18 12:33:20 +0000527 hardif_activate_interface(hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000528 break;
529 case NETDEV_GOING_DOWN:
530 case NETDEV_DOWN:
Marek Lindnere6c10f42011-02-18 12:33:20 +0000531 hardif_deactivate_interface(hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000532 break;
533 case NETDEV_UNREGISTER:
Marek Lindner4389e472011-02-18 12:33:19 +0000534 spin_lock(&hardif_list_lock);
Marek Lindnere6c10f42011-02-18 12:33:20 +0000535 list_del_rcu(&hard_iface->list);
Marek Lindner4389e472011-02-18 12:33:19 +0000536 spin_unlock(&hardif_list_lock);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000537
Marek Lindnere6c10f42011-02-18 12:33:20 +0000538 hardif_remove_interface(hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000539 break;
540 case NETDEV_CHANGEMTU:
Marek Lindnere6c10f42011-02-18 12:33:20 +0000541 if (hard_iface->soft_iface)
542 update_min_mtu(hard_iface->soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000543 break;
544 case NETDEV_CHANGEADDR:
Marek Lindnere6c10f42011-02-18 12:33:20 +0000545 if (hard_iface->if_status == IF_NOT_IN_USE)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000546 goto hardif_put;
547
Marek Lindnere6c10f42011-02-18 12:33:20 +0000548 check_known_mac_addr(hard_iface->net_dev);
549 update_mac_addresses(hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000550
Marek Lindnere6c10f42011-02-18 12:33:20 +0000551 bat_priv = netdev_priv(hard_iface->soft_iface);
552 if (hard_iface == bat_priv->primary_if)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000553 update_primary_addr(bat_priv);
554 break;
555 default:
556 break;
557 };
558
559hardif_put:
Marek Lindnere6c10f42011-02-18 12:33:20 +0000560 hardif_free_ref(hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000561out:
562 return NOTIFY_DONE;
563}
564
565/* receive a packet with the batman ethertype coming on a hard
566 * interface */
Sven Eckelmannfb86d762011-01-27 13:16:08 +0100567static int batman_skb_recv(struct sk_buff *skb, struct net_device *dev,
568 struct packet_type *ptype,
569 struct net_device *orig_dev)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000570{
571 struct bat_priv *bat_priv;
572 struct batman_packet *batman_packet;
Marek Lindnere6c10f42011-02-18 12:33:20 +0000573 struct hard_iface *hard_iface;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000574 int ret;
575
Marek Lindnere6c10f42011-02-18 12:33:20 +0000576 hard_iface = container_of(ptype, struct hard_iface, batman_adv_ptype);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000577 skb = skb_share_check(skb, GFP_ATOMIC);
578
579 /* skb was released by skb_share_check() */
580 if (!skb)
581 goto err_out;
582
583 /* packet should hold at least type and version */
584 if (unlikely(!pskb_may_pull(skb, 2)))
585 goto err_free;
586
587 /* expect a valid ethernet header here. */
588 if (unlikely(skb->mac_len != sizeof(struct ethhdr)
589 || !skb_mac_header(skb)))
590 goto err_free;
591
Marek Lindnere6c10f42011-02-18 12:33:20 +0000592 if (!hard_iface->soft_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000593 goto err_free;
594
Marek Lindnere6c10f42011-02-18 12:33:20 +0000595 bat_priv = netdev_priv(hard_iface->soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000596
597 if (atomic_read(&bat_priv->mesh_state) != MESH_ACTIVE)
598 goto err_free;
599
600 /* discard frames on not active interfaces */
Marek Lindnere6c10f42011-02-18 12:33:20 +0000601 if (hard_iface->if_status != IF_ACTIVE)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000602 goto err_free;
603
604 batman_packet = (struct batman_packet *)skb->data;
605
606 if (batman_packet->version != COMPAT_VERSION) {
607 bat_dbg(DBG_BATMAN, bat_priv,
608 "Drop packet: incompatible batman version (%i)\n",
609 batman_packet->version);
610 goto err_free;
611 }
612
613 /* all receive handlers return whether they received or reused
614 * the supplied skb. if not, we have to free the skb. */
615
616 switch (batman_packet->packet_type) {
617 /* batman originator packet */
618 case BAT_PACKET:
Marek Lindnere6c10f42011-02-18 12:33:20 +0000619 ret = recv_bat_packet(skb, hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000620 break;
621
622 /* batman icmp packet */
623 case BAT_ICMP:
Marek Lindnere6c10f42011-02-18 12:33:20 +0000624 ret = recv_icmp_packet(skb, hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000625 break;
626
627 /* unicast packet */
628 case BAT_UNICAST:
Marek Lindnere6c10f42011-02-18 12:33:20 +0000629 ret = recv_unicast_packet(skb, hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000630 break;
631
632 /* fragmented unicast packet */
633 case BAT_UNICAST_FRAG:
Marek Lindnere6c10f42011-02-18 12:33:20 +0000634 ret = recv_ucast_frag_packet(skb, hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000635 break;
636
637 /* broadcast packet */
638 case BAT_BCAST:
Marek Lindnere6c10f42011-02-18 12:33:20 +0000639 ret = recv_bcast_packet(skb, hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000640 break;
641
642 /* vis packet */
643 case BAT_VIS:
Marek Lindnere6c10f42011-02-18 12:33:20 +0000644 ret = recv_vis_packet(skb, hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000645 break;
646 default:
647 ret = NET_RX_DROP;
648 }
649
650 if (ret == NET_RX_DROP)
651 kfree_skb(skb);
652
653 /* return NET_RX_SUCCESS in any case as we
654 * most probably dropped the packet for
655 * routing-logical reasons. */
656
657 return NET_RX_SUCCESS;
658
659err_free:
660 kfree_skb(skb);
661err_out:
662 return NET_RX_DROP;
663}
664
665struct notifier_block hard_if_notifier = {
666 .notifier_call = hard_if_event,
667};