]>
Commit | Line | Data |
---|---|---|
e19f9759 | 1 | /* Copyright (C) 2007-2014 B.A.T.M.A.N. contributors: |
c6c8fea2 SE |
2 | * |
3 | * Marek Lindner, Simon Wunderlich | |
4 | * | |
5 | * This program is free software; you can redistribute it and/or | |
6 | * modify it under the terms of version 2 of the GNU General Public | |
7 | * License as published by the Free Software Foundation. | |
8 | * | |
9 | * This program is distributed in the hope that it will be useful, but | |
10 | * WITHOUT ANY WARRANTY; without even the implied warranty of | |
11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
12 | * General Public License for more details. | |
13 | * | |
14 | * You should have received a copy of the GNU General Public License | |
ebf38fb7 | 15 | * along with this program; if not, see <http://www.gnu.org/licenses/>. |
c6c8fea2 SE |
16 | */ |
17 | ||
18 | #include "main.h" | |
785ea114 | 19 | #include "distributed-arp-table.h" |
c6c8fea2 SE |
20 | #include "hard-interface.h" |
21 | #include "soft-interface.h" | |
22 | #include "send.h" | |
23 | #include "translation-table.h" | |
24 | #include "routing.h" | |
b706b13b | 25 | #include "sysfs.h" |
5bc7c1eb | 26 | #include "debugfs.h" |
c6c8fea2 SE |
27 | #include "originator.h" |
28 | #include "hash.h" | |
23721387 | 29 | #include "bridge_loop_avoidance.h" |
8257f55a | 30 | #include "gateway_client.h" |
c6c8fea2 SE |
31 | |
32 | #include <linux/if_arp.h> | |
af5d4f77 | 33 | #include <linux/if_ether.h> |
c6c8fea2 | 34 | |
9563877e | 35 | void batadv_hardif_free_rcu(struct rcu_head *rcu) |
c6c8fea2 | 36 | { |
56303d34 | 37 | struct batadv_hard_iface *hard_iface; |
c6c8fea2 | 38 | |
56303d34 | 39 | hard_iface = container_of(rcu, struct batadv_hard_iface, rcu); |
e6c10f43 ML |
40 | dev_put(hard_iface->net_dev); |
41 | kfree(hard_iface); | |
c6c8fea2 SE |
42 | } |
43 | ||
56303d34 SE |
44 | struct batadv_hard_iface * |
45 | batadv_hardif_get_by_netdev(const struct net_device *net_dev) | |
c6c8fea2 | 46 | { |
56303d34 | 47 | struct batadv_hard_iface *hard_iface; |
c6c8fea2 SE |
48 | |
49 | rcu_read_lock(); | |
3193e8fd | 50 | list_for_each_entry_rcu(hard_iface, &batadv_hardif_list, list) { |
e6c10f43 ML |
51 | if (hard_iface->net_dev == net_dev && |
52 | atomic_inc_not_zero(&hard_iface->refcount)) | |
c6c8fea2 SE |
53 | goto out; |
54 | } | |
55 | ||
e6c10f43 | 56 | hard_iface = NULL; |
c6c8fea2 SE |
57 | |
58 | out: | |
c6c8fea2 | 59 | rcu_read_unlock(); |
e6c10f43 | 60 | return hard_iface; |
c6c8fea2 SE |
61 | } |
62 | ||
b7eddd0b AQ |
63 | /** |
64 | * batadv_is_on_batman_iface - check if a device is a batman iface descendant | |
65 | * @net_dev: the device to check | |
66 | * | |
67 | * If the user creates any virtual device on top of a batman-adv interface, it | |
68 | * is important to prevent this new interface to be used to create a new mesh | |
69 | * network (this behaviour would lead to a batman-over-batman configuration). | |
70 | * This function recursively checks all the fathers of the device passed as | |
71 | * argument looking for a batman-adv soft interface. | |
72 | * | |
73 | * Returns true if the device is descendant of a batman-adv mesh interface (or | |
74 | * if it is a batman-adv interface itself), false otherwise | |
75 | */ | |
76 | static bool batadv_is_on_batman_iface(const struct net_device *net_dev) | |
77 | { | |
78 | struct net_device *parent_dev; | |
79 | bool ret; | |
80 | ||
81 | /* check if this is a batman-adv mesh interface */ | |
82 | if (batadv_softif_is_valid(net_dev)) | |
83 | return true; | |
84 | ||
85 | /* no more parents..stop recursion */ | |
a54acb3a ND |
86 | if (dev_get_iflink(net_dev) == 0 || |
87 | dev_get_iflink(net_dev) == net_dev->ifindex) | |
b7eddd0b AQ |
88 | return false; |
89 | ||
90 | /* recurse over the parent device */ | |
a54acb3a | 91 | parent_dev = __dev_get_by_index(&init_net, dev_get_iflink(net_dev)); |
b7eddd0b AQ |
92 | /* if we got a NULL parent_dev there is something broken.. */ |
93 | if (WARN(!parent_dev, "Cannot find parent device")) | |
94 | return false; | |
95 | ||
96 | ret = batadv_is_on_batman_iface(parent_dev); | |
97 | ||
b7eddd0b AQ |
98 | return ret; |
99 | } | |
100 | ||
18a1cb6e | 101 | static int batadv_is_valid_iface(const struct net_device *net_dev) |
c6c8fea2 SE |
102 | { |
103 | if (net_dev->flags & IFF_LOOPBACK) | |
104 | return 0; | |
105 | ||
106 | if (net_dev->type != ARPHRD_ETHER) | |
107 | return 0; | |
108 | ||
109 | if (net_dev->addr_len != ETH_ALEN) | |
110 | return 0; | |
111 | ||
112 | /* no batman over batman */ | |
b7eddd0b | 113 | if (batadv_is_on_batman_iface(net_dev)) |
c6c8fea2 | 114 | return 0; |
c6c8fea2 | 115 | |
c6c8fea2 SE |
116 | return 1; |
117 | } | |
118 | ||
de68d100 MS |
119 | /** |
120 | * batadv_is_wifi_netdev - check if the given net_device struct is a wifi | |
121 | * interface | |
122 | * @net_device: the device to check | |
123 | * | |
124 | * Returns true if the net device is a 802.11 wireless device, false otherwise. | |
125 | */ | |
0c69aecc | 126 | bool batadv_is_wifi_netdev(struct net_device *net_device) |
de68d100 | 127 | { |
0c69aecc AQ |
128 | if (!net_device) |
129 | return false; | |
130 | ||
de68d100 MS |
131 | #ifdef CONFIG_WIRELESS_EXT |
132 | /* pre-cfg80211 drivers have to implement WEXT, so it is possible to | |
133 | * check for wireless_handlers != NULL | |
134 | */ | |
135 | if (net_device->wireless_handlers) | |
136 | return true; | |
137 | #endif | |
138 | ||
139 | /* cfg80211 drivers have to set ieee80211_ptr */ | |
140 | if (net_device->ieee80211_ptr) | |
141 | return true; | |
142 | ||
143 | return false; | |
144 | } | |
145 | ||
56303d34 | 146 | static struct batadv_hard_iface * |
18a1cb6e | 147 | batadv_hardif_get_active(const struct net_device *soft_iface) |
c6c8fea2 | 148 | { |
56303d34 | 149 | struct batadv_hard_iface *hard_iface; |
c6c8fea2 SE |
150 | |
151 | rcu_read_lock(); | |
3193e8fd | 152 | list_for_each_entry_rcu(hard_iface, &batadv_hardif_list, list) { |
e6c10f43 | 153 | if (hard_iface->soft_iface != soft_iface) |
c6c8fea2 SE |
154 | continue; |
155 | ||
e9a4f295 | 156 | if (hard_iface->if_status == BATADV_IF_ACTIVE && |
e6c10f43 | 157 | atomic_inc_not_zero(&hard_iface->refcount)) |
c6c8fea2 SE |
158 | goto out; |
159 | } | |
160 | ||
e6c10f43 | 161 | hard_iface = NULL; |
c6c8fea2 SE |
162 | |
163 | out: | |
c6c8fea2 | 164 | rcu_read_unlock(); |
e6c10f43 | 165 | return hard_iface; |
c6c8fea2 SE |
166 | } |
167 | ||
56303d34 SE |
168 | static void batadv_primary_if_update_addr(struct batadv_priv *bat_priv, |
169 | struct batadv_hard_iface *oldif) | |
c6c8fea2 | 170 | { |
56303d34 | 171 | struct batadv_hard_iface *primary_if; |
32ae9b22 | 172 | |
e5d89254 | 173 | primary_if = batadv_primary_if_get_selected(bat_priv); |
32ae9b22 ML |
174 | if (!primary_if) |
175 | goto out; | |
c6c8fea2 | 176 | |
785ea114 | 177 | batadv_dat_init_own_addr(bat_priv, primary_if); |
08adf151 | 178 | batadv_bla_update_orig_address(bat_priv, primary_if, oldif); |
32ae9b22 ML |
179 | out: |
180 | if (primary_if) | |
e5d89254 | 181 | batadv_hardif_free_ref(primary_if); |
c6c8fea2 SE |
182 | } |
183 | ||
56303d34 SE |
184 | static void batadv_primary_if_select(struct batadv_priv *bat_priv, |
185 | struct batadv_hard_iface *new_hard_iface) | |
c6c8fea2 | 186 | { |
56303d34 | 187 | struct batadv_hard_iface *curr_hard_iface; |
c6c8fea2 | 188 | |
c3caf519 | 189 | ASSERT_RTNL(); |
c6c8fea2 | 190 | |
32ae9b22 ML |
191 | if (new_hard_iface && !atomic_inc_not_zero(&new_hard_iface->refcount)) |
192 | new_hard_iface = NULL; | |
c6c8fea2 | 193 | |
728cbc6a | 194 | curr_hard_iface = rcu_dereference_protected(bat_priv->primary_if, 1); |
32ae9b22 | 195 | rcu_assign_pointer(bat_priv->primary_if, new_hard_iface); |
c6c8fea2 | 196 | |
32ae9b22 | 197 | if (!new_hard_iface) |
23721387 | 198 | goto out; |
32ae9b22 | 199 | |
cd8b78e7 | 200 | bat_priv->bat_algo_ops->bat_primary_iface_set(new_hard_iface); |
18a1cb6e | 201 | batadv_primary_if_update_addr(bat_priv, curr_hard_iface); |
23721387 SW |
202 | |
203 | out: | |
204 | if (curr_hard_iface) | |
e5d89254 | 205 | batadv_hardif_free_ref(curr_hard_iface); |
c6c8fea2 SE |
206 | } |
207 | ||
56303d34 SE |
208 | static bool |
209 | batadv_hardif_is_iface_up(const struct batadv_hard_iface *hard_iface) | |
c6c8fea2 | 210 | { |
e6c10f43 | 211 | if (hard_iface->net_dev->flags & IFF_UP) |
c6c8fea2 SE |
212 | return true; |
213 | ||
214 | return false; | |
215 | } | |
216 | ||
18a1cb6e | 217 | static void batadv_check_known_mac_addr(const struct net_device *net_dev) |
c6c8fea2 | 218 | { |
56303d34 | 219 | const struct batadv_hard_iface *hard_iface; |
c6c8fea2 SE |
220 | |
221 | rcu_read_lock(); | |
3193e8fd | 222 | list_for_each_entry_rcu(hard_iface, &batadv_hardif_list, list) { |
e9a4f295 SE |
223 | if ((hard_iface->if_status != BATADV_IF_ACTIVE) && |
224 | (hard_iface->if_status != BATADV_IF_TO_BE_ACTIVATED)) | |
c6c8fea2 SE |
225 | continue; |
226 | ||
e6c10f43 | 227 | if (hard_iface->net_dev == net_dev) |
c6c8fea2 SE |
228 | continue; |
229 | ||
1eda58bf SE |
230 | if (!batadv_compare_eth(hard_iface->net_dev->dev_addr, |
231 | net_dev->dev_addr)) | |
c6c8fea2 SE |
232 | continue; |
233 | ||
67969581 SE |
234 | pr_warn("The newly added mac address (%pM) already exists on: %s\n", |
235 | net_dev->dev_addr, hard_iface->net_dev->name); | |
236 | pr_warn("It is strongly recommended to keep mac addresses unique to avoid problems!\n"); | |
c6c8fea2 SE |
237 | } |
238 | rcu_read_unlock(); | |
239 | } | |
240 | ||
9563877e | 241 | int batadv_hardif_min_mtu(struct net_device *soft_iface) |
c6c8fea2 | 242 | { |
a19d3d85 | 243 | struct batadv_priv *bat_priv = netdev_priv(soft_iface); |
56303d34 | 244 | const struct batadv_hard_iface *hard_iface; |
930cd6e4 | 245 | int min_mtu = INT_MAX; |
c6c8fea2 SE |
246 | |
247 | rcu_read_lock(); | |
3193e8fd | 248 | list_for_each_entry_rcu(hard_iface, &batadv_hardif_list, list) { |
e9a4f295 SE |
249 | if ((hard_iface->if_status != BATADV_IF_ACTIVE) && |
250 | (hard_iface->if_status != BATADV_IF_TO_BE_ACTIVATED)) | |
c6c8fea2 SE |
251 | continue; |
252 | ||
e6c10f43 | 253 | if (hard_iface->soft_iface != soft_iface) |
c6c8fea2 SE |
254 | continue; |
255 | ||
a19d3d85 | 256 | min_mtu = min_t(int, hard_iface->net_dev->mtu, min_mtu); |
c6c8fea2 SE |
257 | } |
258 | rcu_read_unlock(); | |
a19d3d85 | 259 | |
a19d3d85 ML |
260 | if (atomic_read(&bat_priv->fragmentation) == 0) |
261 | goto out; | |
262 | ||
263 | /* with fragmentation enabled the maximum size of internally generated | |
264 | * packets such as translation table exchanges or tvlv containers, etc | |
265 | * has to be calculated | |
266 | */ | |
267 | min_mtu = min_t(int, min_mtu, BATADV_FRAG_MAX_FRAG_SIZE); | |
268 | min_mtu -= sizeof(struct batadv_frag_packet); | |
269 | min_mtu *= BATADV_FRAG_MAX_FRAGMENTS; | |
a19d3d85 | 270 | |
c6c8fea2 | 271 | out: |
930cd6e4 AQ |
272 | /* report to the other components the maximum amount of bytes that |
273 | * batman-adv can send over the wire (without considering the payload | |
274 | * overhead). For example, this value is used by TT to compute the | |
275 | * maximum local table table size | |
276 | */ | |
277 | atomic_set(&bat_priv->packet_size_max, min_mtu); | |
278 | ||
279 | /* the real soft-interface MTU is computed by removing the payload | |
280 | * overhead from the maximum amount of bytes that was just computed. | |
281 | * | |
282 | * However batman-adv does not support MTUs bigger than ETH_DATA_LEN | |
283 | */ | |
284 | return min_t(int, min_mtu - batadv_max_header_len(), ETH_DATA_LEN); | |
c6c8fea2 SE |
285 | } |
286 | ||
287 | /* adjusts the MTU if a new interface with a smaller MTU appeared. */ | |
9563877e | 288 | void batadv_update_min_mtu(struct net_device *soft_iface) |
c6c8fea2 | 289 | { |
a19d3d85 | 290 | soft_iface->mtu = batadv_hardif_min_mtu(soft_iface); |
c6c8fea2 | 291 | |
a19d3d85 ML |
292 | /* Check if the local translate table should be cleaned up to match a |
293 | * new (and smaller) MTU. | |
294 | */ | |
295 | batadv_tt_local_resize_to_mtu(soft_iface); | |
c6c8fea2 SE |
296 | } |
297 | ||
56303d34 SE |
298 | static void |
299 | batadv_hardif_activate_interface(struct batadv_hard_iface *hard_iface) | |
c6c8fea2 | 300 | { |
56303d34 SE |
301 | struct batadv_priv *bat_priv; |
302 | struct batadv_hard_iface *primary_if = NULL; | |
c6c8fea2 | 303 | |
e9a4f295 | 304 | if (hard_iface->if_status != BATADV_IF_INACTIVE) |
32ae9b22 | 305 | goto out; |
c6c8fea2 | 306 | |
e6c10f43 | 307 | bat_priv = netdev_priv(hard_iface->soft_iface); |
c6c8fea2 | 308 | |
c3229398 | 309 | bat_priv->bat_algo_ops->bat_iface_update_mac(hard_iface); |
e9a4f295 | 310 | hard_iface->if_status = BATADV_IF_TO_BE_ACTIVATED; |
c6c8fea2 | 311 | |
9cfc7bd6 | 312 | /* the first active interface becomes our primary interface or |
015758d0 | 313 | * the next active interface after the old primary interface was removed |
c6c8fea2 | 314 | */ |
e5d89254 | 315 | primary_if = batadv_primary_if_get_selected(bat_priv); |
32ae9b22 | 316 | if (!primary_if) |
18a1cb6e | 317 | batadv_primary_if_select(bat_priv, hard_iface); |
c6c8fea2 | 318 | |
3e34819e SE |
319 | batadv_info(hard_iface->soft_iface, "Interface activated: %s\n", |
320 | hard_iface->net_dev->name); | |
c6c8fea2 | 321 | |
9563877e | 322 | batadv_update_min_mtu(hard_iface->soft_iface); |
32ae9b22 ML |
323 | |
324 | out: | |
325 | if (primary_if) | |
e5d89254 | 326 | batadv_hardif_free_ref(primary_if); |
c6c8fea2 SE |
327 | } |
328 | ||
56303d34 SE |
329 | static void |
330 | batadv_hardif_deactivate_interface(struct batadv_hard_iface *hard_iface) | |
c6c8fea2 | 331 | { |
e9a4f295 SE |
332 | if ((hard_iface->if_status != BATADV_IF_ACTIVE) && |
333 | (hard_iface->if_status != BATADV_IF_TO_BE_ACTIVATED)) | |
c6c8fea2 SE |
334 | return; |
335 | ||
e9a4f295 | 336 | hard_iface->if_status = BATADV_IF_INACTIVE; |
c6c8fea2 | 337 | |
3e34819e SE |
338 | batadv_info(hard_iface->soft_iface, "Interface deactivated: %s\n", |
339 | hard_iface->net_dev->name); | |
c6c8fea2 | 340 | |
9563877e | 341 | batadv_update_min_mtu(hard_iface->soft_iface); |
c6c8fea2 SE |
342 | } |
343 | ||
cb4b0d48 AQ |
344 | /** |
345 | * batadv_master_del_slave - remove hard_iface from the current master interface | |
346 | * @slave: the interface enslaved in another master | |
347 | * @master: the master from which slave has to be removed | |
348 | * | |
349 | * Invoke ndo_del_slave on master passing slave as argument. In this way slave | |
350 | * is free'd and master can correctly change its internal state. | |
351 | * Return 0 on success, a negative value representing the error otherwise | |
352 | */ | |
353 | static int batadv_master_del_slave(struct batadv_hard_iface *slave, | |
354 | struct net_device *master) | |
355 | { | |
356 | int ret; | |
357 | ||
358 | if (!master) | |
359 | return 0; | |
360 | ||
361 | ret = -EBUSY; | |
362 | if (master->netdev_ops->ndo_del_slave) | |
363 | ret = master->netdev_ops->ndo_del_slave(master, slave->net_dev); | |
364 | ||
365 | return ret; | |
366 | } | |
367 | ||
56303d34 | 368 | int batadv_hardif_enable_interface(struct batadv_hard_iface *hard_iface, |
9563877e | 369 | const char *iface_name) |
c6c8fea2 | 370 | { |
56303d34 | 371 | struct batadv_priv *bat_priv; |
cb4b0d48 | 372 | struct net_device *soft_iface, *master; |
293e9338 | 373 | __be16 ethertype = htons(ETH_P_BATMAN); |
411d6ed9 | 374 | int max_header_len = batadv_max_header_len(); |
e44d8fe2 | 375 | int ret; |
c6c8fea2 | 376 | |
e9a4f295 | 377 | if (hard_iface->if_status != BATADV_IF_NOT_IN_USE) |
c6c8fea2 SE |
378 | goto out; |
379 | ||
e6c10f43 | 380 | if (!atomic_inc_not_zero(&hard_iface->refcount)) |
ed75ccbe ML |
381 | goto out; |
382 | ||
e44d8fe2 | 383 | soft_iface = dev_get_by_name(&init_net, iface_name); |
c6c8fea2 | 384 | |
e44d8fe2 | 385 | if (!soft_iface) { |
04b482a2 | 386 | soft_iface = batadv_softif_create(iface_name); |
c6c8fea2 | 387 | |
e44d8fe2 SE |
388 | if (!soft_iface) { |
389 | ret = -ENOMEM; | |
c6c8fea2 | 390 | goto err; |
e44d8fe2 | 391 | } |
c6c8fea2 SE |
392 | |
393 | /* dev_get_by_name() increases the reference counter for us */ | |
e44d8fe2 SE |
394 | dev_hold(soft_iface); |
395 | } | |
396 | ||
04b482a2 | 397 | if (!batadv_softif_is_valid(soft_iface)) { |
86ceb360 | 398 | pr_err("Can't create batman mesh interface %s: already exists as regular interface\n", |
e44d8fe2 | 399 | soft_iface->name); |
e44d8fe2 | 400 | ret = -EINVAL; |
77af7575 | 401 | goto err_dev; |
c6c8fea2 SE |
402 | } |
403 | ||
cb4b0d48 AQ |
404 | /* check if the interface is enslaved in another virtual one and |
405 | * in that case unlink it first | |
406 | */ | |
407 | master = netdev_master_upper_dev_get(hard_iface->net_dev); | |
408 | ret = batadv_master_del_slave(hard_iface, master); | |
409 | if (ret) | |
410 | goto err_dev; | |
411 | ||
e44d8fe2 | 412 | hard_iface->soft_iface = soft_iface; |
e6c10f43 | 413 | bat_priv = netdev_priv(hard_iface->soft_iface); |
d0b9fd89 | 414 | |
3dbd550b SE |
415 | ret = netdev_master_upper_dev_link(hard_iface->net_dev, soft_iface); |
416 | if (ret) | |
417 | goto err_dev; | |
418 | ||
77af7575 | 419 | ret = bat_priv->bat_algo_ops->bat_iface_enable(hard_iface); |
5346c35e | 420 | if (ret < 0) |
3dbd550b | 421 | goto err_upper; |
c6c8fea2 | 422 | |
e6c10f43 | 423 | hard_iface->if_num = bat_priv->num_ifaces; |
c6c8fea2 | 424 | bat_priv->num_ifaces++; |
e9a4f295 | 425 | hard_iface->if_status = BATADV_IF_INACTIVE; |
62446307 SW |
426 | ret = batadv_orig_hash_add_if(hard_iface, bat_priv->num_ifaces); |
427 | if (ret < 0) { | |
428 | bat_priv->bat_algo_ops->bat_iface_disable(hard_iface); | |
429 | bat_priv->num_ifaces--; | |
430 | hard_iface->if_status = BATADV_IF_NOT_IN_USE; | |
3dbd550b | 431 | goto err_upper; |
62446307 | 432 | } |
c6c8fea2 | 433 | |
7e071c79 | 434 | hard_iface->batman_adv_ptype.type = ethertype; |
3193e8fd | 435 | hard_iface->batman_adv_ptype.func = batadv_batman_skb_recv; |
e6c10f43 ML |
436 | hard_iface->batman_adv_ptype.dev = hard_iface->net_dev; |
437 | dev_add_pack(&hard_iface->batman_adv_ptype); | |
c6c8fea2 | 438 | |
3e34819e SE |
439 | batadv_info(hard_iface->soft_iface, "Adding interface: %s\n", |
440 | hard_iface->net_dev->name); | |
c6c8fea2 | 441 | |
0aca2369 | 442 | if (atomic_read(&bat_priv->fragmentation) && |
411d6ed9 | 443 | hard_iface->net_dev->mtu < ETH_DATA_LEN + max_header_len) |
3e34819e | 444 | batadv_info(hard_iface->soft_iface, |
411d6ed9 | 445 | "The MTU of interface %s is too small (%i) to handle the transport of batman-adv packets. Packets going over this interface will be fragmented on layer2 which could impact the performance. Setting the MTU to %i would solve the problem.\n", |
3e34819e | 446 | hard_iface->net_dev->name, hard_iface->net_dev->mtu, |
411d6ed9 | 447 | ETH_DATA_LEN + max_header_len); |
c6c8fea2 | 448 | |
0aca2369 | 449 | if (!atomic_read(&bat_priv->fragmentation) && |
411d6ed9 | 450 | hard_iface->net_dev->mtu < ETH_DATA_LEN + max_header_len) |
3e34819e | 451 | batadv_info(hard_iface->soft_iface, |
411d6ed9 | 452 | "The MTU of interface %s is too small (%i) to handle the transport of batman-adv packets. If you experience problems getting traffic through try increasing the MTU to %i.\n", |
3e34819e | 453 | hard_iface->net_dev->name, hard_iface->net_dev->mtu, |
411d6ed9 | 454 | ETH_DATA_LEN + max_header_len); |
c6c8fea2 | 455 | |
18a1cb6e SE |
456 | if (batadv_hardif_is_iface_up(hard_iface)) |
457 | batadv_hardif_activate_interface(hard_iface); | |
c6c8fea2 | 458 | else |
3e34819e SE |
459 | batadv_err(hard_iface->soft_iface, |
460 | "Not using interface %s (retrying later): interface not active\n", | |
461 | hard_iface->net_dev->name); | |
c6c8fea2 SE |
462 | |
463 | /* begin scheduling originator messages on that interface */ | |
9455e34c | 464 | batadv_schedule_bat_ogm(hard_iface); |
c6c8fea2 SE |
465 | |
466 | out: | |
467 | return 0; | |
468 | ||
3dbd550b SE |
469 | err_upper: |
470 | netdev_upper_dev_unlink(hard_iface->net_dev, soft_iface); | |
77af7575 | 471 | err_dev: |
3dbd550b | 472 | hard_iface->soft_iface = NULL; |
77af7575 | 473 | dev_put(soft_iface); |
c6c8fea2 | 474 | err: |
e5d89254 | 475 | batadv_hardif_free_ref(hard_iface); |
e44d8fe2 | 476 | return ret; |
c6c8fea2 SE |
477 | } |
478 | ||
a15fd361 SE |
479 | void batadv_hardif_disable_interface(struct batadv_hard_iface *hard_iface, |
480 | enum batadv_hard_if_cleanup autodel) | |
c6c8fea2 | 481 | { |
56303d34 SE |
482 | struct batadv_priv *bat_priv = netdev_priv(hard_iface->soft_iface); |
483 | struct batadv_hard_iface *primary_if = NULL; | |
c6c8fea2 | 484 | |
e9a4f295 | 485 | if (hard_iface->if_status == BATADV_IF_ACTIVE) |
18a1cb6e | 486 | batadv_hardif_deactivate_interface(hard_iface); |
c6c8fea2 | 487 | |
e9a4f295 | 488 | if (hard_iface->if_status != BATADV_IF_INACTIVE) |
32ae9b22 | 489 | goto out; |
c6c8fea2 | 490 | |
3e34819e SE |
491 | batadv_info(hard_iface->soft_iface, "Removing interface: %s\n", |
492 | hard_iface->net_dev->name); | |
e6c10f43 | 493 | dev_remove_pack(&hard_iface->batman_adv_ptype); |
c6c8fea2 SE |
494 | |
495 | bat_priv->num_ifaces--; | |
7d211efc | 496 | batadv_orig_hash_del_if(hard_iface, bat_priv->num_ifaces); |
c6c8fea2 | 497 | |
e5d89254 | 498 | primary_if = batadv_primary_if_get_selected(bat_priv); |
32ae9b22 | 499 | if (hard_iface == primary_if) { |
56303d34 | 500 | struct batadv_hard_iface *new_if; |
c6c8fea2 | 501 | |
18a1cb6e SE |
502 | new_if = batadv_hardif_get_active(hard_iface->soft_iface); |
503 | batadv_primary_if_select(bat_priv, new_if); | |
c6c8fea2 SE |
504 | |
505 | if (new_if) | |
e5d89254 | 506 | batadv_hardif_free_ref(new_if); |
c6c8fea2 SE |
507 | } |
508 | ||
00a50076 | 509 | bat_priv->bat_algo_ops->bat_iface_disable(hard_iface); |
e9a4f295 | 510 | hard_iface->if_status = BATADV_IF_NOT_IN_USE; |
c6c8fea2 | 511 | |
e6c10f43 | 512 | /* delete all references to this hard_iface */ |
7d211efc | 513 | batadv_purge_orig_ref(bat_priv); |
9455e34c | 514 | batadv_purge_outstanding_packets(bat_priv, hard_iface); |
e6c10f43 | 515 | dev_put(hard_iface->soft_iface); |
c6c8fea2 SE |
516 | |
517 | /* nobody uses this interface anymore */ | |
8257f55a AQ |
518 | if (!bat_priv->num_ifaces) { |
519 | batadv_gw_check_client_stop(bat_priv); | |
520 | ||
521 | if (autodel == BATADV_IF_CLEANUP_AUTO) | |
522 | batadv_softif_destroy_sysfs(hard_iface->soft_iface); | |
523 | } | |
c6c8fea2 | 524 | |
3dbd550b | 525 | netdev_upper_dev_unlink(hard_iface->net_dev, hard_iface->soft_iface); |
e6c10f43 | 526 | hard_iface->soft_iface = NULL; |
e5d89254 | 527 | batadv_hardif_free_ref(hard_iface); |
32ae9b22 ML |
528 | |
529 | out: | |
530 | if (primary_if) | |
e5d89254 | 531 | batadv_hardif_free_ref(primary_if); |
c6c8fea2 SE |
532 | } |
533 | ||
5bc44dc8 SW |
534 | /** |
535 | * batadv_hardif_remove_interface_finish - cleans up the remains of a hardif | |
536 | * @work: work queue item | |
537 | * | |
538 | * Free the parts of the hard interface which can not be removed under | |
539 | * rtnl lock (to prevent deadlock situations). | |
540 | */ | |
541 | static void batadv_hardif_remove_interface_finish(struct work_struct *work) | |
542 | { | |
543 | struct batadv_hard_iface *hard_iface; | |
544 | ||
545 | hard_iface = container_of(work, struct batadv_hard_iface, | |
546 | cleanup_work); | |
547 | ||
5bc7c1eb | 548 | batadv_debugfs_del_hardif(hard_iface); |
5bc44dc8 SW |
549 | batadv_sysfs_del_hardif(&hard_iface->hardif_obj); |
550 | batadv_hardif_free_ref(hard_iface); | |
551 | } | |
552 | ||
56303d34 | 553 | static struct batadv_hard_iface * |
18a1cb6e | 554 | batadv_hardif_add_interface(struct net_device *net_dev) |
c6c8fea2 | 555 | { |
56303d34 | 556 | struct batadv_hard_iface *hard_iface; |
c6c8fea2 SE |
557 | int ret; |
558 | ||
c3caf519 SE |
559 | ASSERT_RTNL(); |
560 | ||
18a1cb6e | 561 | ret = batadv_is_valid_iface(net_dev); |
c6c8fea2 SE |
562 | if (ret != 1) |
563 | goto out; | |
564 | ||
565 | dev_hold(net_dev); | |
566 | ||
7db3fc29 | 567 | hard_iface = kzalloc(sizeof(*hard_iface), GFP_ATOMIC); |
320f422f | 568 | if (!hard_iface) |
c6c8fea2 | 569 | goto release_dev; |
c6c8fea2 | 570 | |
5853e22c | 571 | ret = batadv_sysfs_add_hardif(&hard_iface->hardif_obj, net_dev); |
c6c8fea2 SE |
572 | if (ret) |
573 | goto free_if; | |
574 | ||
e6c10f43 ML |
575 | hard_iface->if_num = -1; |
576 | hard_iface->net_dev = net_dev; | |
577 | hard_iface->soft_iface = NULL; | |
e9a4f295 | 578 | hard_iface->if_status = BATADV_IF_NOT_IN_USE; |
5bc7c1eb SW |
579 | |
580 | ret = batadv_debugfs_add_hardif(hard_iface); | |
581 | if (ret) | |
582 | goto free_sysfs; | |
583 | ||
e6c10f43 | 584 | INIT_LIST_HEAD(&hard_iface->list); |
5bc44dc8 SW |
585 | INIT_WORK(&hard_iface->cleanup_work, |
586 | batadv_hardif_remove_interface_finish); | |
587 | ||
caf65bfc MS |
588 | hard_iface->num_bcasts = BATADV_NUM_BCASTS_DEFAULT; |
589 | if (batadv_is_wifi_netdev(net_dev)) | |
590 | hard_iface->num_bcasts = BATADV_NUM_BCASTS_WIRELESS; | |
591 | ||
ed75ccbe | 592 | /* extra reference for return */ |
e6c10f43 | 593 | atomic_set(&hard_iface->refcount, 2); |
c6c8fea2 | 594 | |
18a1cb6e | 595 | batadv_check_known_mac_addr(hard_iface->net_dev); |
3193e8fd | 596 | list_add_tail_rcu(&hard_iface->list, &batadv_hardif_list); |
c6c8fea2 | 597 | |
e6c10f43 | 598 | return hard_iface; |
c6c8fea2 | 599 | |
5bc7c1eb SW |
600 | free_sysfs: |
601 | batadv_sysfs_del_hardif(&hard_iface->hardif_obj); | |
c6c8fea2 | 602 | free_if: |
e6c10f43 | 603 | kfree(hard_iface); |
c6c8fea2 SE |
604 | release_dev: |
605 | dev_put(net_dev); | |
606 | out: | |
607 | return NULL; | |
608 | } | |
609 | ||
56303d34 | 610 | static void batadv_hardif_remove_interface(struct batadv_hard_iface *hard_iface) |
c6c8fea2 | 611 | { |
c3caf519 SE |
612 | ASSERT_RTNL(); |
613 | ||
c6c8fea2 | 614 | /* first deactivate interface */ |
e9a4f295 | 615 | if (hard_iface->if_status != BATADV_IF_NOT_IN_USE) |
a15fd361 SE |
616 | batadv_hardif_disable_interface(hard_iface, |
617 | BATADV_IF_CLEANUP_AUTO); | |
c6c8fea2 | 618 | |
e9a4f295 | 619 | if (hard_iface->if_status != BATADV_IF_NOT_IN_USE) |
c6c8fea2 SE |
620 | return; |
621 | ||
e9a4f295 | 622 | hard_iface->if_status = BATADV_IF_TO_BE_REMOVED; |
5bc44dc8 | 623 | queue_work(batadv_event_workqueue, &hard_iface->cleanup_work); |
c6c8fea2 SE |
624 | } |
625 | ||
9563877e | 626 | void batadv_hardif_remove_interfaces(void) |
c6c8fea2 | 627 | { |
56303d34 | 628 | struct batadv_hard_iface *hard_iface, *hard_iface_tmp; |
c6c8fea2 | 629 | |
c3caf519 | 630 | rtnl_lock(); |
e6c10f43 | 631 | list_for_each_entry_safe(hard_iface, hard_iface_tmp, |
3193e8fd | 632 | &batadv_hardif_list, list) { |
e6c10f43 | 633 | list_del_rcu(&hard_iface->list); |
18a1cb6e | 634 | batadv_hardif_remove_interface(hard_iface); |
c6c8fea2 SE |
635 | } |
636 | rtnl_unlock(); | |
637 | } | |
638 | ||
18a1cb6e SE |
639 | static int batadv_hard_if_event(struct notifier_block *this, |
640 | unsigned long event, void *ptr) | |
c6c8fea2 | 641 | { |
351638e7 | 642 | struct net_device *net_dev = netdev_notifier_info_to_dev(ptr); |
56303d34 SE |
643 | struct batadv_hard_iface *hard_iface; |
644 | struct batadv_hard_iface *primary_if = NULL; | |
645 | struct batadv_priv *bat_priv; | |
c6c8fea2 | 646 | |
37130293 SE |
647 | if (batadv_softif_is_valid(net_dev) && event == NETDEV_REGISTER) { |
648 | batadv_sysfs_add_meshif(net_dev); | |
5d2c05b2 AQ |
649 | bat_priv = netdev_priv(net_dev); |
650 | batadv_softif_create_vlan(bat_priv, BATADV_NO_FLAGS); | |
37130293 SE |
651 | return NOTIFY_DONE; |
652 | } | |
653 | ||
56303d34 | 654 | hard_iface = batadv_hardif_get_by_netdev(net_dev); |
e6c10f43 | 655 | if (!hard_iface && event == NETDEV_REGISTER) |
18a1cb6e | 656 | hard_iface = batadv_hardif_add_interface(net_dev); |
c6c8fea2 | 657 | |
e6c10f43 | 658 | if (!hard_iface) |
c6c8fea2 SE |
659 | goto out; |
660 | ||
661 | switch (event) { | |
662 | case NETDEV_UP: | |
18a1cb6e | 663 | batadv_hardif_activate_interface(hard_iface); |
c6c8fea2 SE |
664 | break; |
665 | case NETDEV_GOING_DOWN: | |
666 | case NETDEV_DOWN: | |
18a1cb6e | 667 | batadv_hardif_deactivate_interface(hard_iface); |
c6c8fea2 SE |
668 | break; |
669 | case NETDEV_UNREGISTER: | |
e6c10f43 | 670 | list_del_rcu(&hard_iface->list); |
c6c8fea2 | 671 | |
18a1cb6e | 672 | batadv_hardif_remove_interface(hard_iface); |
c6c8fea2 SE |
673 | break; |
674 | case NETDEV_CHANGEMTU: | |
e6c10f43 | 675 | if (hard_iface->soft_iface) |
9563877e | 676 | batadv_update_min_mtu(hard_iface->soft_iface); |
c6c8fea2 SE |
677 | break; |
678 | case NETDEV_CHANGEADDR: | |
e9a4f295 | 679 | if (hard_iface->if_status == BATADV_IF_NOT_IN_USE) |
c6c8fea2 SE |
680 | goto hardif_put; |
681 | ||
18a1cb6e | 682 | batadv_check_known_mac_addr(hard_iface->net_dev); |
c6c8fea2 | 683 | |
e6c10f43 | 684 | bat_priv = netdev_priv(hard_iface->soft_iface); |
c3229398 | 685 | bat_priv->bat_algo_ops->bat_iface_update_mac(hard_iface); |
01c4224b | 686 | |
e5d89254 | 687 | primary_if = batadv_primary_if_get_selected(bat_priv); |
32ae9b22 ML |
688 | if (!primary_if) |
689 | goto hardif_put; | |
690 | ||
691 | if (hard_iface == primary_if) | |
18a1cb6e | 692 | batadv_primary_if_update_addr(bat_priv, NULL); |
c6c8fea2 SE |
693 | break; |
694 | default: | |
695 | break; | |
f81c6224 | 696 | } |
c6c8fea2 SE |
697 | |
698 | hardif_put: | |
e5d89254 | 699 | batadv_hardif_free_ref(hard_iface); |
c6c8fea2 | 700 | out: |
32ae9b22 | 701 | if (primary_if) |
e5d89254 | 702 | batadv_hardif_free_ref(primary_if); |
c6c8fea2 SE |
703 | return NOTIFY_DONE; |
704 | } | |
705 | ||
9563877e | 706 | struct notifier_block batadv_hard_if_notifier = { |
18a1cb6e | 707 | .notifier_call = batadv_hard_if_event, |
c6c8fea2 | 708 | }; |