GNU Linux-libre 4.9.301-gnu1
[releases.git] / net / batman-adv / hard-interface.c
1 /* Copyright (C) 2007-2016  B.A.T.M.A.N. contributors:
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
15  * along with this program; if not, see <http://www.gnu.org/licenses/>.
16  */
17
18 #include "hard-interface.h"
19 #include "main.h"
20
21 #include <linux/atomic.h>
22 #include <linux/byteorder/generic.h>
23 #include <linux/errno.h>
24 #include <linux/fs.h>
25 #include <linux/if.h>
26 #include <linux/if_arp.h>
27 #include <linux/if_ether.h>
28 #include <linux/kernel.h>
29 #include <linux/kref.h>
30 #include <linux/list.h>
31 #include <linux/mutex.h>
32 #include <linux/netdevice.h>
33 #include <linux/printk.h>
34 #include <linux/rculist.h>
35 #include <linux/rtnetlink.h>
36 #include <linux/slab.h>
37 #include <linux/spinlock.h>
38 #include <net/net_namespace.h>
39 #include <net/rtnetlink.h>
40
41 #include "bat_v.h"
42 #include "bridge_loop_avoidance.h"
43 #include "debugfs.h"
44 #include "distributed-arp-table.h"
45 #include "gateway_client.h"
46 #include "log.h"
47 #include "originator.h"
48 #include "packet.h"
49 #include "send.h"
50 #include "soft-interface.h"
51 #include "sysfs.h"
52 #include "translation-table.h"
53
54 /**
55  * batadv_hardif_release - release hard interface from lists and queue for
56  *  free after rcu grace period
57  * @ref: kref pointer of the hard interface
58  */
59 void batadv_hardif_release(struct kref *ref)
60 {
61         struct batadv_hard_iface *hard_iface;
62
63         hard_iface = container_of(ref, struct batadv_hard_iface, refcount);
64         dev_put(hard_iface->net_dev);
65
66         kfree_rcu(hard_iface, rcu);
67 }
68
69 struct batadv_hard_iface *
70 batadv_hardif_get_by_netdev(const struct net_device *net_dev)
71 {
72         struct batadv_hard_iface *hard_iface;
73
74         rcu_read_lock();
75         list_for_each_entry_rcu(hard_iface, &batadv_hardif_list, list) {
76                 if (hard_iface->net_dev == net_dev &&
77                     kref_get_unless_zero(&hard_iface->refcount))
78                         goto out;
79         }
80
81         hard_iface = NULL;
82
83 out:
84         rcu_read_unlock();
85         return hard_iface;
86 }
87
88 /**
89  * batadv_getlink_net - return link net namespace (of use fallback)
90  * @netdev: net_device to check
91  * @fallback_net: return in case get_link_net is not available for @netdev
92  *
93  * Return: result of rtnl_link_ops->get_link_net or @fallback_net
94  */
95 static const struct net *batadv_getlink_net(const struct net_device *netdev,
96                                             const struct net *fallback_net)
97 {
98         if (!netdev->rtnl_link_ops)
99                 return fallback_net;
100
101         if (!netdev->rtnl_link_ops->get_link_net)
102                 return fallback_net;
103
104         return netdev->rtnl_link_ops->get_link_net(netdev);
105 }
106
107 /**
108  * batadv_mutual_parents - check if two devices are each others parent
109  * @dev1: 1st net dev
110  * @net1: 1st devices netns
111  * @dev2: 2nd net dev
112  * @net2: 2nd devices netns
113  *
114  * veth devices come in pairs and each is the parent of the other!
115  *
116  * Return: true if the devices are each others parent, otherwise false
117  */
118 static bool batadv_mutual_parents(const struct net_device *dev1,
119                                   const struct net *net1,
120                                   const struct net_device *dev2,
121                                   const struct net *net2)
122 {
123         int dev1_parent_iflink = dev_get_iflink(dev1);
124         int dev2_parent_iflink = dev_get_iflink(dev2);
125         const struct net *dev1_parent_net;
126         const struct net *dev2_parent_net;
127
128         dev1_parent_net = batadv_getlink_net(dev1, net1);
129         dev2_parent_net = batadv_getlink_net(dev2, net2);
130
131         if (!dev1_parent_iflink || !dev2_parent_iflink)
132                 return false;
133
134         return (dev1_parent_iflink == dev2->ifindex) &&
135                (dev2_parent_iflink == dev1->ifindex) &&
136                net_eq(dev1_parent_net, net2) &&
137                net_eq(dev2_parent_net, net1);
138 }
139
140 /**
141  * batadv_is_on_batman_iface - check if a device is a batman iface descendant
142  * @net_dev: the device to check
143  *
144  * If the user creates any virtual device on top of a batman-adv interface, it
145  * is important to prevent this new interface to be used to create a new mesh
146  * network (this behaviour would lead to a batman-over-batman configuration).
147  * This function recursively checks all the fathers of the device passed as
148  * argument looking for a batman-adv soft interface.
149  *
150  * Return: true if the device is descendant of a batman-adv mesh interface (or
151  * if it is a batman-adv interface itself), false otherwise
152  */
153 static bool batadv_is_on_batman_iface(const struct net_device *net_dev)
154 {
155         struct net *net = dev_net(net_dev);
156         struct net_device *parent_dev;
157         const struct net *parent_net;
158         bool ret;
159
160         /* check if this is a batman-adv mesh interface */
161         if (batadv_softif_is_valid(net_dev))
162                 return true;
163
164         /* no more parents..stop recursion */
165         if (dev_get_iflink(net_dev) == 0 ||
166             dev_get_iflink(net_dev) == net_dev->ifindex)
167                 return false;
168
169         parent_net = batadv_getlink_net(net_dev, net);
170
171         /* recurse over the parent device */
172         parent_dev = __dev_get_by_index((struct net *)parent_net,
173                                         dev_get_iflink(net_dev));
174         /* if we got a NULL parent_dev there is something broken.. */
175         if (!parent_dev) {
176                 pr_err("Cannot find parent device\n");
177                 return false;
178         }
179
180         if (batadv_mutual_parents(net_dev, net, parent_dev, parent_net))
181                 return false;
182
183         ret = batadv_is_on_batman_iface(parent_dev);
184
185         return ret;
186 }
187
188 static bool batadv_is_valid_iface(const struct net_device *net_dev)
189 {
190         if (net_dev->flags & IFF_LOOPBACK)
191                 return false;
192
193         if (net_dev->type != ARPHRD_ETHER)
194                 return false;
195
196         if (net_dev->addr_len != ETH_ALEN)
197                 return false;
198
199         /* no batman over batman */
200         if (batadv_is_on_batman_iface(net_dev))
201                 return false;
202
203         return true;
204 }
205
206 /**
207  * batadv_is_wifi_netdev - check if the given net_device struct is a wifi
208  *  interface
209  * @net_device: the device to check
210  *
211  * Return: true if the net device is a 802.11 wireless device, false otherwise.
212  */
213 bool batadv_is_wifi_netdev(struct net_device *net_device)
214 {
215         if (!net_device)
216                 return false;
217
218 #ifdef CONFIG_WIRELESS_EXT
219         /* pre-cfg80211 drivers have to implement WEXT, so it is possible to
220          * check for wireless_handlers != NULL
221          */
222         if (net_device->wireless_handlers)
223                 return true;
224 #endif
225
226         /* cfg80211 drivers have to set ieee80211_ptr */
227         if (net_device->ieee80211_ptr)
228                 return true;
229
230         return false;
231 }
232
233 static struct batadv_hard_iface *
234 batadv_hardif_get_active(const struct net_device *soft_iface)
235 {
236         struct batadv_hard_iface *hard_iface;
237
238         rcu_read_lock();
239         list_for_each_entry_rcu(hard_iface, &batadv_hardif_list, list) {
240                 if (hard_iface->soft_iface != soft_iface)
241                         continue;
242
243                 if (hard_iface->if_status == BATADV_IF_ACTIVE &&
244                     kref_get_unless_zero(&hard_iface->refcount))
245                         goto out;
246         }
247
248         hard_iface = NULL;
249
250 out:
251         rcu_read_unlock();
252         return hard_iface;
253 }
254
255 static void batadv_primary_if_update_addr(struct batadv_priv *bat_priv,
256                                           struct batadv_hard_iface *oldif)
257 {
258         struct batadv_hard_iface *primary_if;
259
260         primary_if = batadv_primary_if_get_selected(bat_priv);
261         if (!primary_if)
262                 goto out;
263
264         batadv_dat_init_own_addr(bat_priv, primary_if);
265         batadv_bla_update_orig_address(bat_priv, primary_if, oldif);
266 out:
267         if (primary_if)
268                 batadv_hardif_put(primary_if);
269 }
270
271 static void batadv_primary_if_select(struct batadv_priv *bat_priv,
272                                      struct batadv_hard_iface *new_hard_iface)
273 {
274         struct batadv_hard_iface *curr_hard_iface;
275
276         ASSERT_RTNL();
277
278         if (new_hard_iface)
279                 kref_get(&new_hard_iface->refcount);
280
281         curr_hard_iface = rcu_dereference_protected(bat_priv->primary_if, 1);
282         rcu_assign_pointer(bat_priv->primary_if, new_hard_iface);
283
284         if (!new_hard_iface)
285                 goto out;
286
287         bat_priv->algo_ops->iface.primary_set(new_hard_iface);
288         batadv_primary_if_update_addr(bat_priv, curr_hard_iface);
289
290 out:
291         if (curr_hard_iface)
292                 batadv_hardif_put(curr_hard_iface);
293 }
294
295 static bool
296 batadv_hardif_is_iface_up(const struct batadv_hard_iface *hard_iface)
297 {
298         if (hard_iface->net_dev->flags & IFF_UP)
299                 return true;
300
301         return false;
302 }
303
304 static void batadv_check_known_mac_addr(const struct net_device *net_dev)
305 {
306         const struct batadv_hard_iface *hard_iface;
307
308         rcu_read_lock();
309         list_for_each_entry_rcu(hard_iface, &batadv_hardif_list, list) {
310                 if ((hard_iface->if_status != BATADV_IF_ACTIVE) &&
311                     (hard_iface->if_status != BATADV_IF_TO_BE_ACTIVATED))
312                         continue;
313
314                 if (hard_iface->net_dev == net_dev)
315                         continue;
316
317                 if (!batadv_compare_eth(hard_iface->net_dev->dev_addr,
318                                         net_dev->dev_addr))
319                         continue;
320
321                 pr_warn("The newly added mac address (%pM) already exists on: %s\n",
322                         net_dev->dev_addr, hard_iface->net_dev->name);
323                 pr_warn("It is strongly recommended to keep mac addresses unique to avoid problems!\n");
324         }
325         rcu_read_unlock();
326 }
327
328 /**
329  * batadv_hardif_recalc_extra_skbroom() - Recalculate skbuff extra head/tailroom
330  * @soft_iface: netdev struct of the mesh interface
331  */
332 static void batadv_hardif_recalc_extra_skbroom(struct net_device *soft_iface)
333 {
334         const struct batadv_hard_iface *hard_iface;
335         unsigned short lower_header_len = ETH_HLEN;
336         unsigned short lower_headroom = 0;
337         unsigned short lower_tailroom = 0;
338         unsigned short needed_headroom;
339
340         rcu_read_lock();
341         list_for_each_entry_rcu(hard_iface, &batadv_hardif_list, list) {
342                 if (hard_iface->if_status == BATADV_IF_NOT_IN_USE)
343                         continue;
344
345                 if (hard_iface->soft_iface != soft_iface)
346                         continue;
347
348                 lower_header_len = max_t(unsigned short, lower_header_len,
349                                          hard_iface->net_dev->hard_header_len);
350
351                 lower_headroom = max_t(unsigned short, lower_headroom,
352                                        hard_iface->net_dev->needed_headroom);
353
354                 lower_tailroom = max_t(unsigned short, lower_tailroom,
355                                        hard_iface->net_dev->needed_tailroom);
356         }
357         rcu_read_unlock();
358
359         needed_headroom = lower_headroom + (lower_header_len - ETH_HLEN);
360         needed_headroom += batadv_max_header_len();
361
362         /* fragmentation headers don't strip the unicast/... header */
363         needed_headroom += sizeof(struct batadv_frag_packet);
364
365         soft_iface->needed_headroom = needed_headroom;
366         soft_iface->needed_tailroom = lower_tailroom;
367 }
368
369 int batadv_hardif_min_mtu(struct net_device *soft_iface)
370 {
371         struct batadv_priv *bat_priv = netdev_priv(soft_iface);
372         const struct batadv_hard_iface *hard_iface;
373         int min_mtu = INT_MAX;
374
375         rcu_read_lock();
376         list_for_each_entry_rcu(hard_iface, &batadv_hardif_list, list) {
377                 if ((hard_iface->if_status != BATADV_IF_ACTIVE) &&
378                     (hard_iface->if_status != BATADV_IF_TO_BE_ACTIVATED))
379                         continue;
380
381                 if (hard_iface->soft_iface != soft_iface)
382                         continue;
383
384                 min_mtu = min_t(int, hard_iface->net_dev->mtu, min_mtu);
385         }
386         rcu_read_unlock();
387
388         if (atomic_read(&bat_priv->fragmentation) == 0)
389                 goto out;
390
391         /* with fragmentation enabled the maximum size of internally generated
392          * packets such as translation table exchanges or tvlv containers, etc
393          * has to be calculated
394          */
395         min_mtu = min_t(int, min_mtu, BATADV_FRAG_MAX_FRAG_SIZE);
396         min_mtu -= sizeof(struct batadv_frag_packet);
397         min_mtu *= BATADV_FRAG_MAX_FRAGMENTS;
398
399 out:
400         /* report to the other components the maximum amount of bytes that
401          * batman-adv can send over the wire (without considering the payload
402          * overhead). For example, this value is used by TT to compute the
403          * maximum local table table size
404          */
405         atomic_set(&bat_priv->packet_size_max, min_mtu);
406
407         /* the real soft-interface MTU is computed by removing the payload
408          * overhead from the maximum amount of bytes that was just computed.
409          *
410          * However batman-adv does not support MTUs bigger than ETH_DATA_LEN
411          */
412         return min_t(int, min_mtu - batadv_max_header_len(), ETH_DATA_LEN);
413 }
414
415 /* adjusts the MTU if a new interface with a smaller MTU appeared. */
416 void batadv_update_min_mtu(struct net_device *soft_iface)
417 {
418         soft_iface->mtu = batadv_hardif_min_mtu(soft_iface);
419
420         /* Check if the local translate table should be cleaned up to match a
421          * new (and smaller) MTU.
422          */
423         batadv_tt_local_resize_to_mtu(soft_iface);
424 }
425
426 static void
427 batadv_hardif_activate_interface(struct batadv_hard_iface *hard_iface)
428 {
429         struct batadv_priv *bat_priv;
430         struct batadv_hard_iface *primary_if = NULL;
431
432         if (hard_iface->if_status != BATADV_IF_INACTIVE)
433                 goto out;
434
435         bat_priv = netdev_priv(hard_iface->soft_iface);
436
437         bat_priv->algo_ops->iface.update_mac(hard_iface);
438         hard_iface->if_status = BATADV_IF_TO_BE_ACTIVATED;
439
440         /* the first active interface becomes our primary interface or
441          * the next active interface after the old primary interface was removed
442          */
443         primary_if = batadv_primary_if_get_selected(bat_priv);
444         if (!primary_if)
445                 batadv_primary_if_select(bat_priv, hard_iface);
446
447         batadv_info(hard_iface->soft_iface, "Interface activated: %s\n",
448                     hard_iface->net_dev->name);
449
450         batadv_update_min_mtu(hard_iface->soft_iface);
451
452         if (bat_priv->algo_ops->iface.activate)
453                 bat_priv->algo_ops->iface.activate(hard_iface);
454
455 out:
456         if (primary_if)
457                 batadv_hardif_put(primary_if);
458 }
459
460 static void
461 batadv_hardif_deactivate_interface(struct batadv_hard_iface *hard_iface)
462 {
463         if ((hard_iface->if_status != BATADV_IF_ACTIVE) &&
464             (hard_iface->if_status != BATADV_IF_TO_BE_ACTIVATED))
465                 return;
466
467         hard_iface->if_status = BATADV_IF_INACTIVE;
468
469         batadv_info(hard_iface->soft_iface, "Interface deactivated: %s\n",
470                     hard_iface->net_dev->name);
471
472         batadv_update_min_mtu(hard_iface->soft_iface);
473 }
474
475 /**
476  * batadv_master_del_slave - remove hard_iface from the current master interface
477  * @slave: the interface enslaved in another master
478  * @master: the master from which slave has to be removed
479  *
480  * Invoke ndo_del_slave on master passing slave as argument. In this way slave
481  * is free'd and master can correctly change its internal state.
482  *
483  * Return: 0 on success, a negative value representing the error otherwise
484  */
485 static int batadv_master_del_slave(struct batadv_hard_iface *slave,
486                                    struct net_device *master)
487 {
488         int ret;
489
490         if (!master)
491                 return 0;
492
493         ret = -EBUSY;
494         if (master->netdev_ops->ndo_del_slave)
495                 ret = master->netdev_ops->ndo_del_slave(master, slave->net_dev);
496
497         return ret;
498 }
499
500 int batadv_hardif_enable_interface(struct batadv_hard_iface *hard_iface,
501                                    struct net *net, const char *iface_name)
502 {
503         struct batadv_priv *bat_priv;
504         struct net_device *soft_iface, *master;
505         __be16 ethertype = htons(ETH_P_BATMAN);
506         int max_header_len = batadv_max_header_len();
507         int ret;
508
509         if (hard_iface->if_status != BATADV_IF_NOT_IN_USE)
510                 goto out;
511
512         kref_get(&hard_iface->refcount);
513
514         soft_iface = dev_get_by_name(net, iface_name);
515
516         if (!soft_iface) {
517                 soft_iface = batadv_softif_create(net, iface_name);
518
519                 if (!soft_iface) {
520                         ret = -ENOMEM;
521                         goto err;
522                 }
523
524                 /* dev_get_by_name() increases the reference counter for us */
525                 dev_hold(soft_iface);
526         }
527
528         if (!batadv_softif_is_valid(soft_iface)) {
529                 pr_err("Can't create batman mesh interface %s: already exists as regular interface\n",
530                        soft_iface->name);
531                 ret = -EINVAL;
532                 goto err_dev;
533         }
534
535         /* check if the interface is enslaved in another virtual one and
536          * in that case unlink it first
537          */
538         master = netdev_master_upper_dev_get(hard_iface->net_dev);
539         ret = batadv_master_del_slave(hard_iface, master);
540         if (ret)
541                 goto err_dev;
542
543         hard_iface->soft_iface = soft_iface;
544         bat_priv = netdev_priv(hard_iface->soft_iface);
545
546         if (bat_priv->num_ifaces >= UINT_MAX) {
547                 ret = -ENOSPC;
548                 goto err_dev;
549         }
550
551         ret = netdev_master_upper_dev_link(hard_iface->net_dev,
552                                            soft_iface, NULL, NULL);
553         if (ret)
554                 goto err_dev;
555
556         ret = bat_priv->algo_ops->iface.enable(hard_iface);
557         if (ret < 0)
558                 goto err_upper;
559
560         hard_iface->if_num = bat_priv->num_ifaces;
561         bat_priv->num_ifaces++;
562         hard_iface->if_status = BATADV_IF_INACTIVE;
563         ret = batadv_orig_hash_add_if(hard_iface, bat_priv->num_ifaces);
564         if (ret < 0) {
565                 bat_priv->algo_ops->iface.disable(hard_iface);
566                 bat_priv->num_ifaces--;
567                 hard_iface->if_status = BATADV_IF_NOT_IN_USE;
568                 goto err_upper;
569         }
570
571         kref_get(&hard_iface->refcount);
572         hard_iface->batman_adv_ptype.type = ethertype;
573         hard_iface->batman_adv_ptype.func = batadv_batman_skb_recv;
574         hard_iface->batman_adv_ptype.dev = hard_iface->net_dev;
575         dev_add_pack(&hard_iface->batman_adv_ptype);
576
577         batadv_info(hard_iface->soft_iface, "Adding interface: %s\n",
578                     hard_iface->net_dev->name);
579
580         if (atomic_read(&bat_priv->fragmentation) &&
581             hard_iface->net_dev->mtu < ETH_DATA_LEN + max_header_len)
582                 batadv_info(hard_iface->soft_iface,
583                             "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",
584                             hard_iface->net_dev->name, hard_iface->net_dev->mtu,
585                             ETH_DATA_LEN + max_header_len);
586
587         if (!atomic_read(&bat_priv->fragmentation) &&
588             hard_iface->net_dev->mtu < ETH_DATA_LEN + max_header_len)
589                 batadv_info(hard_iface->soft_iface,
590                             "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",
591                             hard_iface->net_dev->name, hard_iface->net_dev->mtu,
592                             ETH_DATA_LEN + max_header_len);
593
594         if (batadv_hardif_is_iface_up(hard_iface))
595                 batadv_hardif_activate_interface(hard_iface);
596         else
597                 batadv_err(hard_iface->soft_iface,
598                            "Not using interface %s (retrying later): interface not active\n",
599                            hard_iface->net_dev->name);
600
601         batadv_hardif_recalc_extra_skbroom(soft_iface);
602
603         if (bat_priv->algo_ops->iface.enabled)
604                 bat_priv->algo_ops->iface.enabled(hard_iface);
605
606 out:
607         return 0;
608
609 err_upper:
610         netdev_upper_dev_unlink(hard_iface->net_dev, soft_iface);
611 err_dev:
612         hard_iface->soft_iface = NULL;
613         dev_put(soft_iface);
614 err:
615         batadv_hardif_put(hard_iface);
616         return ret;
617 }
618
619 void batadv_hardif_disable_interface(struct batadv_hard_iface *hard_iface,
620                                      enum batadv_hard_if_cleanup autodel)
621 {
622         struct batadv_priv *bat_priv = netdev_priv(hard_iface->soft_iface);
623         struct batadv_hard_iface *primary_if = NULL;
624
625         batadv_hardif_deactivate_interface(hard_iface);
626
627         if (hard_iface->if_status != BATADV_IF_INACTIVE)
628                 goto out;
629
630         batadv_info(hard_iface->soft_iface, "Removing interface: %s\n",
631                     hard_iface->net_dev->name);
632         dev_remove_pack(&hard_iface->batman_adv_ptype);
633         batadv_hardif_put(hard_iface);
634
635         bat_priv->num_ifaces--;
636         batadv_orig_hash_del_if(hard_iface, bat_priv->num_ifaces);
637
638         primary_if = batadv_primary_if_get_selected(bat_priv);
639         if (hard_iface == primary_if) {
640                 struct batadv_hard_iface *new_if;
641
642                 new_if = batadv_hardif_get_active(hard_iface->soft_iface);
643                 batadv_primary_if_select(bat_priv, new_if);
644
645                 if (new_if)
646                         batadv_hardif_put(new_if);
647         }
648
649         bat_priv->algo_ops->iface.disable(hard_iface);
650         hard_iface->if_status = BATADV_IF_NOT_IN_USE;
651
652         /* delete all references to this hard_iface */
653         batadv_purge_orig_ref(bat_priv);
654         batadv_purge_outstanding_packets(bat_priv, hard_iface);
655         dev_put(hard_iface->soft_iface);
656
657         netdev_upper_dev_unlink(hard_iface->net_dev, hard_iface->soft_iface);
658         batadv_hardif_recalc_extra_skbroom(hard_iface->soft_iface);
659
660         /* nobody uses this interface anymore */
661         if (bat_priv->num_ifaces == 0) {
662                 batadv_gw_check_client_stop(bat_priv);
663
664                 if (autodel == BATADV_IF_CLEANUP_AUTO)
665                         batadv_softif_destroy_sysfs(hard_iface->soft_iface);
666         }
667
668         hard_iface->soft_iface = NULL;
669         batadv_hardif_put(hard_iface);
670
671 out:
672         if (primary_if)
673                 batadv_hardif_put(primary_if);
674 }
675
676 static struct batadv_hard_iface *
677 batadv_hardif_add_interface(struct net_device *net_dev)
678 {
679         struct batadv_hard_iface *hard_iface;
680         int ret;
681
682         ASSERT_RTNL();
683
684         if (!batadv_is_valid_iface(net_dev))
685                 goto out;
686
687         dev_hold(net_dev);
688
689         hard_iface = kzalloc(sizeof(*hard_iface), GFP_ATOMIC);
690         if (!hard_iface)
691                 goto release_dev;
692
693         ret = batadv_sysfs_add_hardif(&hard_iface->hardif_obj, net_dev);
694         if (ret)
695                 goto free_if;
696
697         hard_iface->if_num = 0;
698         hard_iface->net_dev = net_dev;
699         hard_iface->soft_iface = NULL;
700         hard_iface->if_status = BATADV_IF_NOT_IN_USE;
701
702         ret = batadv_debugfs_add_hardif(hard_iface);
703         if (ret)
704                 goto free_sysfs;
705
706         INIT_LIST_HEAD(&hard_iface->list);
707         INIT_HLIST_HEAD(&hard_iface->neigh_list);
708
709         mutex_init(&hard_iface->bat_iv.ogm_buff_mutex);
710         spin_lock_init(&hard_iface->neigh_list_lock);
711         kref_init(&hard_iface->refcount);
712
713         hard_iface->num_bcasts = BATADV_NUM_BCASTS_DEFAULT;
714         if (batadv_is_wifi_netdev(net_dev))
715                 hard_iface->num_bcasts = BATADV_NUM_BCASTS_WIRELESS;
716
717         batadv_v_hardif_init(hard_iface);
718
719         batadv_check_known_mac_addr(hard_iface->net_dev);
720         kref_get(&hard_iface->refcount);
721         list_add_tail_rcu(&hard_iface->list, &batadv_hardif_list);
722
723         return hard_iface;
724
725 free_sysfs:
726         batadv_sysfs_del_hardif(&hard_iface->hardif_obj);
727 free_if:
728         kfree(hard_iface);
729 release_dev:
730         dev_put(net_dev);
731 out:
732         return NULL;
733 }
734
735 static void batadv_hardif_remove_interface(struct batadv_hard_iface *hard_iface)
736 {
737         ASSERT_RTNL();
738
739         /* first deactivate interface */
740         if (hard_iface->if_status != BATADV_IF_NOT_IN_USE)
741                 batadv_hardif_disable_interface(hard_iface,
742                                                 BATADV_IF_CLEANUP_KEEP);
743
744         if (hard_iface->if_status != BATADV_IF_NOT_IN_USE)
745                 return;
746
747         hard_iface->if_status = BATADV_IF_TO_BE_REMOVED;
748         batadv_debugfs_del_hardif(hard_iface);
749         batadv_sysfs_del_hardif(&hard_iface->hardif_obj);
750         batadv_hardif_put(hard_iface);
751 }
752
753 void batadv_hardif_remove_interfaces(void)
754 {
755         struct batadv_hard_iface *hard_iface, *hard_iface_tmp;
756
757         rtnl_lock();
758         list_for_each_entry_safe(hard_iface, hard_iface_tmp,
759                                  &batadv_hardif_list, list) {
760                 list_del_rcu(&hard_iface->list);
761                 batadv_hardif_remove_interface(hard_iface);
762         }
763         rtnl_unlock();
764 }
765
766 /**
767  * batadv_hard_if_event_softif() - Handle events for soft interfaces
768  * @event: NETDEV_* event to handle
769  * @net_dev: net_device which generated an event
770  *
771  * Return: NOTIFY_* result
772  */
773 static int batadv_hard_if_event_softif(unsigned long event,
774                                        struct net_device *net_dev)
775 {
776         struct batadv_priv *bat_priv;
777
778         switch (event) {
779         case NETDEV_REGISTER:
780                 batadv_sysfs_add_meshif(net_dev);
781                 bat_priv = netdev_priv(net_dev);
782                 batadv_softif_create_vlan(bat_priv, BATADV_NO_FLAGS);
783                 break;
784         case NETDEV_CHANGENAME:
785                 batadv_debugfs_rename_meshif(net_dev);
786                 break;
787         }
788
789         return NOTIFY_DONE;
790 }
791
792 static int batadv_hard_if_event(struct notifier_block *this,
793                                 unsigned long event, void *ptr)
794 {
795         struct net_device *net_dev = netdev_notifier_info_to_dev(ptr);
796         struct batadv_hard_iface *hard_iface;
797         struct batadv_hard_iface *primary_if = NULL;
798         struct batadv_priv *bat_priv;
799
800         if (batadv_softif_is_valid(net_dev))
801                 return batadv_hard_if_event_softif(event, net_dev);
802
803         hard_iface = batadv_hardif_get_by_netdev(net_dev);
804         if (!hard_iface && (event == NETDEV_REGISTER ||
805                             event == NETDEV_POST_TYPE_CHANGE))
806                 hard_iface = batadv_hardif_add_interface(net_dev);
807
808         if (!hard_iface)
809                 goto out;
810
811         switch (event) {
812         case NETDEV_UP:
813                 batadv_hardif_activate_interface(hard_iface);
814                 break;
815         case NETDEV_GOING_DOWN:
816         case NETDEV_DOWN:
817                 batadv_hardif_deactivate_interface(hard_iface);
818                 break;
819         case NETDEV_UNREGISTER:
820         case NETDEV_PRE_TYPE_CHANGE:
821                 list_del_rcu(&hard_iface->list);
822
823                 batadv_hardif_remove_interface(hard_iface);
824                 break;
825         case NETDEV_CHANGEMTU:
826                 if (hard_iface->soft_iface)
827                         batadv_update_min_mtu(hard_iface->soft_iface);
828                 break;
829         case NETDEV_CHANGEADDR:
830                 if (hard_iface->if_status == BATADV_IF_NOT_IN_USE)
831                         goto hardif_put;
832
833                 batadv_check_known_mac_addr(hard_iface->net_dev);
834
835                 bat_priv = netdev_priv(hard_iface->soft_iface);
836                 bat_priv->algo_ops->iface.update_mac(hard_iface);
837
838                 primary_if = batadv_primary_if_get_selected(bat_priv);
839                 if (!primary_if)
840                         goto hardif_put;
841
842                 if (hard_iface == primary_if)
843                         batadv_primary_if_update_addr(bat_priv, NULL);
844                 break;
845         case NETDEV_CHANGENAME:
846                 batadv_debugfs_rename_hardif(hard_iface);
847                 break;
848         default:
849                 break;
850         }
851
852 hardif_put:
853         batadv_hardif_put(hard_iface);
854 out:
855         if (primary_if)
856                 batadv_hardif_put(primary_if);
857         return NOTIFY_DONE;
858 }
859
860 struct notifier_block batadv_hard_if_notifier = {
861         .notifier_call = batadv_hard_if_event,
862 };