Sven Eckelmann | 7db7d9f | 2017-11-19 15:05:11 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Sven Eckelmann | 7a79d71 | 2018-12-31 23:59:59 +0100 | [diff] [blame] | 2 | /* Copyright (C) 2007-2019 B.A.T.M.A.N. contributors: |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 3 | * |
| 4 | * Marek Lindner, Simon Wunderlich |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 5 | */ |
| 6 | |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 7 | #include "hard-interface.h" |
Sven Eckelmann | 1e2c2a4 | 2015-04-17 19:40:28 +0200 | [diff] [blame] | 8 | #include "main.h" |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 9 | |
Sven Eckelmann | 7a659d5 | 2016-01-16 10:29:54 +0100 | [diff] [blame] | 10 | #include <linux/atomic.h> |
Sven Eckelmann | 1e2c2a4 | 2015-04-17 19:40:28 +0200 | [diff] [blame] | 11 | #include <linux/byteorder/generic.h> |
| 12 | #include <linux/errno.h> |
Sven Eckelmann | b92b94a | 2017-11-19 17:12:02 +0100 | [diff] [blame] | 13 | #include <linux/gfp.h> |
Sven Eckelmann | fcafa5e | 2016-05-15 11:07:42 +0200 | [diff] [blame] | 14 | #include <linux/if.h> |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 15 | #include <linux/if_arp.h> |
Antonio Quartulli | af5d4f7 | 2012-11-26 00:38:50 +0100 | [diff] [blame] | 16 | #include <linux/if_ether.h> |
Sven Eckelmann | 1e2c2a4 | 2015-04-17 19:40:28 +0200 | [diff] [blame] | 17 | #include <linux/kernel.h> |
Sven Eckelmann | 7a659d5 | 2016-01-16 10:29:54 +0100 | [diff] [blame] | 18 | #include <linux/kref.h> |
Sven Eckelmann | 1e2c2a4 | 2015-04-17 19:40:28 +0200 | [diff] [blame] | 19 | #include <linux/list.h> |
| 20 | #include <linux/netdevice.h> |
| 21 | #include <linux/printk.h> |
| 22 | #include <linux/rculist.h> |
| 23 | #include <linux/rtnetlink.h> |
| 24 | #include <linux/slab.h> |
Marek Lindner | cef6341 | 2015-08-04 21:09:55 +0800 | [diff] [blame] | 25 | #include <linux/spinlock.h> |
Andrew Lunn | 275019d | 2016-07-03 13:31:33 +0200 | [diff] [blame] | 26 | #include <net/net_namespace.h> |
| 27 | #include <net/rtnetlink.h> |
Sven Eckelmann | fec149f | 2017-12-21 10:17:41 +0100 | [diff] [blame] | 28 | #include <uapi/linux/batadv_packet.h> |
Sven Eckelmann | 1e2c2a4 | 2015-04-17 19:40:28 +0200 | [diff] [blame] | 29 | |
Sven Eckelmann | a2d0816 | 2016-05-15 11:07:46 +0200 | [diff] [blame] | 30 | #include "bat_v.h" |
Sven Eckelmann | 1e2c2a4 | 2015-04-17 19:40:28 +0200 | [diff] [blame] | 31 | #include "bridge_loop_avoidance.h" |
| 32 | #include "debugfs.h" |
| 33 | #include "distributed-arp-table.h" |
| 34 | #include "gateway_client.h" |
Sven Eckelmann | ba41208 | 2016-05-15 23:48:31 +0200 | [diff] [blame] | 35 | #include "log.h" |
Sven Eckelmann | 1e2c2a4 | 2015-04-17 19:40:28 +0200 | [diff] [blame] | 36 | #include "originator.h" |
Sven Eckelmann | 1e2c2a4 | 2015-04-17 19:40:28 +0200 | [diff] [blame] | 37 | #include "send.h" |
| 38 | #include "soft-interface.h" |
| 39 | #include "sysfs.h" |
| 40 | #include "translation-table.h" |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 41 | |
Sven Eckelmann | 140ed8e | 2016-01-05 12:06:26 +0100 | [diff] [blame] | 42 | /** |
Sven Eckelmann | 7e9a8c2 | 2017-12-02 19:51:47 +0100 | [diff] [blame] | 43 | * batadv_hardif_release() - release hard interface from lists and queue for |
Sven Eckelmann | 140ed8e | 2016-01-05 12:06:26 +0100 | [diff] [blame] | 44 | * free after rcu grace period |
Sven Eckelmann | 7a659d5 | 2016-01-16 10:29:54 +0100 | [diff] [blame] | 45 | * @ref: kref pointer of the hard interface |
Sven Eckelmann | 140ed8e | 2016-01-05 12:06:26 +0100 | [diff] [blame] | 46 | */ |
Sven Eckelmann | 7a659d5 | 2016-01-16 10:29:54 +0100 | [diff] [blame] | 47 | void batadv_hardif_release(struct kref *ref) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 48 | { |
Sven Eckelmann | 7a659d5 | 2016-01-16 10:29:54 +0100 | [diff] [blame] | 49 | struct batadv_hard_iface *hard_iface; |
| 50 | |
| 51 | hard_iface = container_of(ref, struct batadv_hard_iface, refcount); |
Marek Lindner | e6c10f4 | 2011-02-18 12:33:20 +0000 | [diff] [blame] | 52 | dev_put(hard_iface->net_dev); |
Sven Eckelmann | 140ed8e | 2016-01-05 12:06:26 +0100 | [diff] [blame] | 53 | |
| 54 | kfree_rcu(hard_iface, rcu); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 55 | } |
| 56 | |
Sven Eckelmann | ff15c27 | 2017-12-02 19:51:53 +0100 | [diff] [blame] | 57 | /** |
| 58 | * batadv_hardif_get_by_netdev() - Get hard interface object of a net_device |
| 59 | * @net_dev: net_device to search for |
| 60 | * |
| 61 | * Return: batadv_hard_iface of net_dev (with increased refcnt), NULL on errors |
| 62 | */ |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 63 | struct batadv_hard_iface * |
| 64 | batadv_hardif_get_by_netdev(const struct net_device *net_dev) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 65 | { |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 66 | struct batadv_hard_iface *hard_iface; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 67 | |
| 68 | rcu_read_lock(); |
Sven Eckelmann | 3193e8f | 2012-05-12 02:09:42 +0200 | [diff] [blame] | 69 | list_for_each_entry_rcu(hard_iface, &batadv_hardif_list, list) { |
Marek Lindner | e6c10f4 | 2011-02-18 12:33:20 +0000 | [diff] [blame] | 70 | if (hard_iface->net_dev == net_dev && |
Sven Eckelmann | 7a659d5 | 2016-01-16 10:29:54 +0100 | [diff] [blame] | 71 | kref_get_unless_zero(&hard_iface->refcount)) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 72 | goto out; |
| 73 | } |
| 74 | |
Marek Lindner | e6c10f4 | 2011-02-18 12:33:20 +0000 | [diff] [blame] | 75 | hard_iface = NULL; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 76 | |
| 77 | out: |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 78 | rcu_read_unlock(); |
Marek Lindner | e6c10f4 | 2011-02-18 12:33:20 +0000 | [diff] [blame] | 79 | return hard_iface; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 80 | } |
| 81 | |
Antonio Quartulli | b7eddd0 | 2012-09-09 10:46:46 +0200 | [diff] [blame] | 82 | /** |
Sven Eckelmann | 7e9a8c2 | 2017-12-02 19:51:47 +0100 | [diff] [blame] | 83 | * batadv_getlink_net() - return link net namespace (of use fallback) |
Andrew Lunn | 275019d | 2016-07-03 13:31:33 +0200 | [diff] [blame] | 84 | * @netdev: net_device to check |
| 85 | * @fallback_net: return in case get_link_net is not available for @netdev |
| 86 | * |
| 87 | * Return: result of rtnl_link_ops->get_link_net or @fallback_net |
| 88 | */ |
Sven Eckelmann | 88ffc7d | 2016-09-30 15:21:00 +0200 | [diff] [blame] | 89 | static struct net *batadv_getlink_net(const struct net_device *netdev, |
| 90 | struct net *fallback_net) |
Andrew Lunn | 275019d | 2016-07-03 13:31:33 +0200 | [diff] [blame] | 91 | { |
| 92 | if (!netdev->rtnl_link_ops) |
| 93 | return fallback_net; |
| 94 | |
| 95 | if (!netdev->rtnl_link_ops->get_link_net) |
| 96 | return fallback_net; |
| 97 | |
| 98 | return netdev->rtnl_link_ops->get_link_net(netdev); |
| 99 | } |
| 100 | |
| 101 | /** |
Sven Eckelmann | 7e9a8c2 | 2017-12-02 19:51:47 +0100 | [diff] [blame] | 102 | * batadv_mutual_parents() - check if two devices are each others parent |
Andrew Lunn | 275019d | 2016-07-03 13:31:33 +0200 | [diff] [blame] | 103 | * @dev1: 1st net dev |
| 104 | * @net1: 1st devices netns |
| 105 | * @dev2: 2nd net dev |
| 106 | * @net2: 2nd devices netns |
Andrew Lunn | 1bc4e2b | 2016-02-11 22:15:57 +0100 | [diff] [blame] | 107 | * |
| 108 | * veth devices come in pairs and each is the parent of the other! |
| 109 | * |
| 110 | * Return: true if the devices are each others parent, otherwise false |
| 111 | */ |
| 112 | static bool batadv_mutual_parents(const struct net_device *dev1, |
Sven Eckelmann | 88ffc7d | 2016-09-30 15:21:00 +0200 | [diff] [blame] | 113 | struct net *net1, |
Andrew Lunn | 275019d | 2016-07-03 13:31:33 +0200 | [diff] [blame] | 114 | const struct net_device *dev2, |
Sven Eckelmann | 88ffc7d | 2016-09-30 15:21:00 +0200 | [diff] [blame] | 115 | struct net *net2) |
Andrew Lunn | 1bc4e2b | 2016-02-11 22:15:57 +0100 | [diff] [blame] | 116 | { |
| 117 | int dev1_parent_iflink = dev_get_iflink(dev1); |
| 118 | int dev2_parent_iflink = dev_get_iflink(dev2); |
Andrew Lunn | 275019d | 2016-07-03 13:31:33 +0200 | [diff] [blame] | 119 | const struct net *dev1_parent_net; |
| 120 | const struct net *dev2_parent_net; |
| 121 | |
| 122 | dev1_parent_net = batadv_getlink_net(dev1, net1); |
| 123 | dev2_parent_net = batadv_getlink_net(dev2, net2); |
Andrew Lunn | 1bc4e2b | 2016-02-11 22:15:57 +0100 | [diff] [blame] | 124 | |
| 125 | if (!dev1_parent_iflink || !dev2_parent_iflink) |
| 126 | return false; |
| 127 | |
| 128 | return (dev1_parent_iflink == dev2->ifindex) && |
Andrew Lunn | 275019d | 2016-07-03 13:31:33 +0200 | [diff] [blame] | 129 | (dev2_parent_iflink == dev1->ifindex) && |
| 130 | net_eq(dev1_parent_net, net2) && |
| 131 | net_eq(dev2_parent_net, net1); |
Andrew Lunn | 1bc4e2b | 2016-02-11 22:15:57 +0100 | [diff] [blame] | 132 | } |
| 133 | |
| 134 | /** |
Sven Eckelmann | 7e9a8c2 | 2017-12-02 19:51:47 +0100 | [diff] [blame] | 135 | * batadv_is_on_batman_iface() - check if a device is a batman iface descendant |
Antonio Quartulli | b7eddd0 | 2012-09-09 10:46:46 +0200 | [diff] [blame] | 136 | * @net_dev: the device to check |
| 137 | * |
| 138 | * If the user creates any virtual device on top of a batman-adv interface, it |
| 139 | * is important to prevent this new interface to be used to create a new mesh |
| 140 | * network (this behaviour would lead to a batman-over-batman configuration). |
| 141 | * This function recursively checks all the fathers of the device passed as |
| 142 | * argument looking for a batman-adv soft interface. |
| 143 | * |
Sven Eckelmann | 62fe710 | 2015-09-15 19:00:48 +0200 | [diff] [blame] | 144 | * Return: true if the device is descendant of a batman-adv mesh interface (or |
Antonio Quartulli | b7eddd0 | 2012-09-09 10:46:46 +0200 | [diff] [blame] | 145 | * if it is a batman-adv interface itself), false otherwise |
| 146 | */ |
| 147 | static bool batadv_is_on_batman_iface(const struct net_device *net_dev) |
| 148 | { |
Andrew Lunn | 2cd45a0 | 2016-04-21 12:57:27 +0200 | [diff] [blame] | 149 | struct net *net = dev_net(net_dev); |
Andrew Lunn | 275019d | 2016-07-03 13:31:33 +0200 | [diff] [blame] | 150 | struct net_device *parent_dev; |
Sven Eckelmann | 88ffc7d | 2016-09-30 15:21:00 +0200 | [diff] [blame] | 151 | struct net *parent_net; |
Antonio Quartulli | b7eddd0 | 2012-09-09 10:46:46 +0200 | [diff] [blame] | 152 | bool ret; |
| 153 | |
| 154 | /* check if this is a batman-adv mesh interface */ |
| 155 | if (batadv_softif_is_valid(net_dev)) |
| 156 | return true; |
| 157 | |
| 158 | /* no more parents..stop recursion */ |
Nicolas Dichtel | a54acb3 | 2015-04-02 17:07:00 +0200 | [diff] [blame] | 159 | if (dev_get_iflink(net_dev) == 0 || |
| 160 | dev_get_iflink(net_dev) == net_dev->ifindex) |
Antonio Quartulli | b7eddd0 | 2012-09-09 10:46:46 +0200 | [diff] [blame] | 161 | return false; |
| 162 | |
Andrew Lunn | 275019d | 2016-07-03 13:31:33 +0200 | [diff] [blame] | 163 | parent_net = batadv_getlink_net(net_dev, net); |
| 164 | |
Antonio Quartulli | b7eddd0 | 2012-09-09 10:46:46 +0200 | [diff] [blame] | 165 | /* recurse over the parent device */ |
Andrew Lunn | 275019d | 2016-07-03 13:31:33 +0200 | [diff] [blame] | 166 | parent_dev = __dev_get_by_index((struct net *)parent_net, |
| 167 | dev_get_iflink(net_dev)); |
Antonio Quartulli | b7eddd0 | 2012-09-09 10:46:46 +0200 | [diff] [blame] | 168 | /* if we got a NULL parent_dev there is something broken.. */ |
Sven Eckelmann | 955d341 | 2018-12-30 12:46:01 +0100 | [diff] [blame] | 169 | if (!parent_dev) { |
| 170 | pr_err("Cannot find parent device\n"); |
Antonio Quartulli | b7eddd0 | 2012-09-09 10:46:46 +0200 | [diff] [blame] | 171 | return false; |
Sven Eckelmann | 955d341 | 2018-12-30 12:46:01 +0100 | [diff] [blame] | 172 | } |
Antonio Quartulli | b7eddd0 | 2012-09-09 10:46:46 +0200 | [diff] [blame] | 173 | |
Andrew Lunn | 275019d | 2016-07-03 13:31:33 +0200 | [diff] [blame] | 174 | if (batadv_mutual_parents(net_dev, net, parent_dev, parent_net)) |
Andrew Lunn | 1bc4e2b | 2016-02-11 22:15:57 +0100 | [diff] [blame] | 175 | return false; |
| 176 | |
Antonio Quartulli | b7eddd0 | 2012-09-09 10:46:46 +0200 | [diff] [blame] | 177 | ret = batadv_is_on_batman_iface(parent_dev); |
| 178 | |
Antonio Quartulli | b7eddd0 | 2012-09-09 10:46:46 +0200 | [diff] [blame] | 179 | return ret; |
| 180 | } |
| 181 | |
Sven Eckelmann | 4b426b1 | 2016-02-22 21:02:39 +0100 | [diff] [blame] | 182 | static bool batadv_is_valid_iface(const struct net_device *net_dev) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 183 | { |
| 184 | if (net_dev->flags & IFF_LOOPBACK) |
Sven Eckelmann | 4b426b1 | 2016-02-22 21:02:39 +0100 | [diff] [blame] | 185 | return false; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 186 | |
| 187 | if (net_dev->type != ARPHRD_ETHER) |
Sven Eckelmann | 4b426b1 | 2016-02-22 21:02:39 +0100 | [diff] [blame] | 188 | return false; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 189 | |
| 190 | if (net_dev->addr_len != ETH_ALEN) |
Sven Eckelmann | 4b426b1 | 2016-02-22 21:02:39 +0100 | [diff] [blame] | 191 | return false; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 192 | |
| 193 | /* no batman over batman */ |
Antonio Quartulli | b7eddd0 | 2012-09-09 10:46:46 +0200 | [diff] [blame] | 194 | if (batadv_is_on_batman_iface(net_dev)) |
Sven Eckelmann | 4b426b1 | 2016-02-22 21:02:39 +0100 | [diff] [blame] | 195 | return false; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 196 | |
Sven Eckelmann | 4b426b1 | 2016-02-22 21:02:39 +0100 | [diff] [blame] | 197 | return true; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 198 | } |
| 199 | |
Matthias Schiffer | de68d10 | 2013-03-09 23:14:22 +0100 | [diff] [blame] | 200 | /** |
Sven Eckelmann | 7e9a8c2 | 2017-12-02 19:51:47 +0100 | [diff] [blame] | 201 | * batadv_get_real_netdevice() - check if the given netdev struct is a virtual |
Marek Lindner | 5ed4a46 | 2016-09-30 15:21:04 +0200 | [diff] [blame] | 202 | * interface on top of another 'real' interface |
| 203 | * @netdev: the device to check |
| 204 | * |
Marek Lindner | 1942de1 | 2016-09-30 15:21:05 +0200 | [diff] [blame] | 205 | * Callers must hold the rtnl semaphore. You may want batadv_get_real_netdev() |
| 206 | * instead of this. |
| 207 | * |
Marek Lindner | 5ed4a46 | 2016-09-30 15:21:04 +0200 | [diff] [blame] | 208 | * Return: the 'real' net device or the original net device and NULL in case |
| 209 | * of an error. |
| 210 | */ |
| 211 | static struct net_device *batadv_get_real_netdevice(struct net_device *netdev) |
| 212 | { |
| 213 | struct batadv_hard_iface *hard_iface = NULL; |
| 214 | struct net_device *real_netdev = NULL; |
| 215 | struct net *real_net; |
| 216 | struct net *net; |
| 217 | int ifindex; |
| 218 | |
| 219 | ASSERT_RTNL(); |
| 220 | |
| 221 | if (!netdev) |
| 222 | return NULL; |
| 223 | |
| 224 | if (netdev->ifindex == dev_get_iflink(netdev)) { |
| 225 | dev_hold(netdev); |
| 226 | return netdev; |
| 227 | } |
| 228 | |
| 229 | hard_iface = batadv_hardif_get_by_netdev(netdev); |
| 230 | if (!hard_iface || !hard_iface->soft_iface) |
| 231 | goto out; |
| 232 | |
| 233 | net = dev_net(hard_iface->soft_iface); |
| 234 | ifindex = dev_get_iflink(netdev); |
| 235 | real_net = batadv_getlink_net(netdev, net); |
| 236 | real_netdev = dev_get_by_index(real_net, ifindex); |
| 237 | |
| 238 | out: |
| 239 | if (hard_iface) |
| 240 | batadv_hardif_put(hard_iface); |
| 241 | return real_netdev; |
| 242 | } |
| 243 | |
| 244 | /** |
Sven Eckelmann | 7e9a8c2 | 2017-12-02 19:51:47 +0100 | [diff] [blame] | 245 | * batadv_get_real_netdev() - check if the given net_device struct is a virtual |
Marek Lindner | 1942de1 | 2016-09-30 15:21:05 +0200 | [diff] [blame] | 246 | * interface on top of another 'real' interface |
Matthias Schiffer | de68d10 | 2013-03-09 23:14:22 +0100 | [diff] [blame] | 247 | * @net_device: the device to check |
| 248 | * |
Marek Lindner | 1942de1 | 2016-09-30 15:21:05 +0200 | [diff] [blame] | 249 | * Return: the 'real' net device or the original net device and NULL in case |
| 250 | * of an error. |
Matthias Schiffer | de68d10 | 2013-03-09 23:14:22 +0100 | [diff] [blame] | 251 | */ |
Marek Lindner | 1942de1 | 2016-09-30 15:21:05 +0200 | [diff] [blame] | 252 | struct net_device *batadv_get_real_netdev(struct net_device *net_device) |
| 253 | { |
| 254 | struct net_device *real_netdev; |
| 255 | |
| 256 | rtnl_lock(); |
| 257 | real_netdev = batadv_get_real_netdevice(net_device); |
| 258 | rtnl_unlock(); |
| 259 | |
| 260 | return real_netdev; |
| 261 | } |
| 262 | |
| 263 | /** |
Sven Eckelmann | 7e9a8c2 | 2017-12-02 19:51:47 +0100 | [diff] [blame] | 264 | * batadv_is_wext_netdev() - check if the given net_device struct is a |
Sven Eckelmann | 10b1bbb | 2016-09-30 15:21:03 +0200 | [diff] [blame] | 265 | * wext wifi interface |
Marek Lindner | f44a3ae | 2016-09-30 15:21:02 +0200 | [diff] [blame] | 266 | * @net_device: the device to check |
| 267 | * |
Sven Eckelmann | 10b1bbb | 2016-09-30 15:21:03 +0200 | [diff] [blame] | 268 | * Return: true if the net device is a wext wireless device, false |
Marek Lindner | f44a3ae | 2016-09-30 15:21:02 +0200 | [diff] [blame] | 269 | * otherwise. |
| 270 | */ |
Sven Eckelmann | 10b1bbb | 2016-09-30 15:21:03 +0200 | [diff] [blame] | 271 | static bool batadv_is_wext_netdev(struct net_device *net_device) |
Matthias Schiffer | de68d10 | 2013-03-09 23:14:22 +0100 | [diff] [blame] | 272 | { |
Antonio Quartulli | 0c69aec | 2013-10-13 02:50:18 +0200 | [diff] [blame] | 273 | if (!net_device) |
| 274 | return false; |
| 275 | |
Matthias Schiffer | de68d10 | 2013-03-09 23:14:22 +0100 | [diff] [blame] | 276 | #ifdef CONFIG_WIRELESS_EXT |
| 277 | /* pre-cfg80211 drivers have to implement WEXT, so it is possible to |
| 278 | * check for wireless_handlers != NULL |
| 279 | */ |
| 280 | if (net_device->wireless_handlers) |
| 281 | return true; |
| 282 | #endif |
| 283 | |
Sven Eckelmann | 10b1bbb | 2016-09-30 15:21:03 +0200 | [diff] [blame] | 284 | return false; |
| 285 | } |
| 286 | |
| 287 | /** |
Sven Eckelmann | 7e9a8c2 | 2017-12-02 19:51:47 +0100 | [diff] [blame] | 288 | * batadv_is_cfg80211_netdev() - check if the given net_device struct is a |
Sven Eckelmann | 10b1bbb | 2016-09-30 15:21:03 +0200 | [diff] [blame] | 289 | * cfg80211 wifi interface |
| 290 | * @net_device: the device to check |
| 291 | * |
| 292 | * Return: true if the net device is a cfg80211 wireless device, false |
| 293 | * otherwise. |
| 294 | */ |
| 295 | static bool batadv_is_cfg80211_netdev(struct net_device *net_device) |
| 296 | { |
| 297 | if (!net_device) |
| 298 | return false; |
| 299 | |
Matthias Schiffer | de68d10 | 2013-03-09 23:14:22 +0100 | [diff] [blame] | 300 | /* cfg80211 drivers have to set ieee80211_ptr */ |
| 301 | if (net_device->ieee80211_ptr) |
| 302 | return true; |
| 303 | |
| 304 | return false; |
| 305 | } |
| 306 | |
Linus Lüssing | 3111bee | 2016-08-07 12:34:19 +0200 | [diff] [blame] | 307 | /** |
Sven Eckelmann | 7e9a8c2 | 2017-12-02 19:51:47 +0100 | [diff] [blame] | 308 | * batadv_wifi_flags_evaluate() - calculate wifi flags for net_device |
Sven Eckelmann | 10b1bbb | 2016-09-30 15:21:03 +0200 | [diff] [blame] | 309 | * @net_device: the device to check |
| 310 | * |
| 311 | * Return: batadv_hard_iface_wifi_flags flags of the device |
| 312 | */ |
| 313 | static u32 batadv_wifi_flags_evaluate(struct net_device *net_device) |
| 314 | { |
| 315 | u32 wifi_flags = 0; |
Marek Lindner | 5ed4a46 | 2016-09-30 15:21:04 +0200 | [diff] [blame] | 316 | struct net_device *real_netdev; |
Sven Eckelmann | 10b1bbb | 2016-09-30 15:21:03 +0200 | [diff] [blame] | 317 | |
| 318 | if (batadv_is_wext_netdev(net_device)) |
| 319 | wifi_flags |= BATADV_HARDIF_WIFI_WEXT_DIRECT; |
| 320 | |
| 321 | if (batadv_is_cfg80211_netdev(net_device)) |
| 322 | wifi_flags |= BATADV_HARDIF_WIFI_CFG80211_DIRECT; |
| 323 | |
Marek Lindner | 5ed4a46 | 2016-09-30 15:21:04 +0200 | [diff] [blame] | 324 | real_netdev = batadv_get_real_netdevice(net_device); |
| 325 | if (!real_netdev) |
| 326 | return wifi_flags; |
| 327 | |
| 328 | if (real_netdev == net_device) |
| 329 | goto out; |
| 330 | |
| 331 | if (batadv_is_wext_netdev(real_netdev)) |
| 332 | wifi_flags |= BATADV_HARDIF_WIFI_WEXT_INDIRECT; |
| 333 | |
| 334 | if (batadv_is_cfg80211_netdev(real_netdev)) |
| 335 | wifi_flags |= BATADV_HARDIF_WIFI_CFG80211_INDIRECT; |
| 336 | |
| 337 | out: |
| 338 | dev_put(real_netdev); |
Sven Eckelmann | 10b1bbb | 2016-09-30 15:21:03 +0200 | [diff] [blame] | 339 | return wifi_flags; |
| 340 | } |
| 341 | |
| 342 | /** |
Sven Eckelmann | 7e9a8c2 | 2017-12-02 19:51:47 +0100 | [diff] [blame] | 343 | * batadv_is_cfg80211_hardif() - check if the given hardif is a cfg80211 wifi |
Sven Eckelmann | 10b1bbb | 2016-09-30 15:21:03 +0200 | [diff] [blame] | 344 | * interface |
| 345 | * @hard_iface: the device to check |
| 346 | * |
| 347 | * Return: true if the net device is a cfg80211 wireless device, false |
| 348 | * otherwise. |
| 349 | */ |
| 350 | bool batadv_is_cfg80211_hardif(struct batadv_hard_iface *hard_iface) |
| 351 | { |
| 352 | u32 allowed_flags = 0; |
| 353 | |
| 354 | allowed_flags |= BATADV_HARDIF_WIFI_CFG80211_DIRECT; |
Marek Lindner | 5ed4a46 | 2016-09-30 15:21:04 +0200 | [diff] [blame] | 355 | allowed_flags |= BATADV_HARDIF_WIFI_CFG80211_INDIRECT; |
Sven Eckelmann | 10b1bbb | 2016-09-30 15:21:03 +0200 | [diff] [blame] | 356 | |
| 357 | return !!(hard_iface->wifi_flags & allowed_flags); |
| 358 | } |
| 359 | |
| 360 | /** |
Sven Eckelmann | 7e9a8c2 | 2017-12-02 19:51:47 +0100 | [diff] [blame] | 361 | * batadv_is_wifi_hardif() - check if the given hardif is a wifi interface |
Sven Eckelmann | 10b1bbb | 2016-09-30 15:21:03 +0200 | [diff] [blame] | 362 | * @hard_iface: the device to check |
| 363 | * |
| 364 | * Return: true if the net device is a 802.11 wireless device, false otherwise. |
| 365 | */ |
| 366 | bool batadv_is_wifi_hardif(struct batadv_hard_iface *hard_iface) |
| 367 | { |
| 368 | if (!hard_iface) |
| 369 | return false; |
| 370 | |
| 371 | return hard_iface->wifi_flags != 0; |
Matthias Schiffer | de68d10 | 2013-03-09 23:14:22 +0100 | [diff] [blame] | 372 | } |
| 373 | |
Linus Lüssing | 3111bee | 2016-08-07 12:34:19 +0200 | [diff] [blame] | 374 | /** |
Sven Eckelmann | 7e9a8c2 | 2017-12-02 19:51:47 +0100 | [diff] [blame] | 375 | * batadv_hardif_no_broadcast() - check whether (re)broadcast is necessary |
Linus Lüssing | 3111bee | 2016-08-07 12:34:19 +0200 | [diff] [blame] | 376 | * @if_outgoing: the outgoing interface checked and considered for (re)broadcast |
| 377 | * @orig_addr: the originator of this packet |
| 378 | * @orig_neigh: originator address of the forwarder we just got the packet from |
| 379 | * (NULL if we originated) |
| 380 | * |
| 381 | * Checks whether a packet needs to be (re)broadcasted on the given interface. |
| 382 | * |
| 383 | * Return: |
| 384 | * BATADV_HARDIF_BCAST_NORECIPIENT: No neighbor on interface |
| 385 | * BATADV_HARDIF_BCAST_DUPFWD: Just one neighbor, but it is the forwarder |
| 386 | * BATADV_HARDIF_BCAST_DUPORIG: Just one neighbor, but it is the originator |
| 387 | * BATADV_HARDIF_BCAST_OK: Several neighbors, must broadcast |
| 388 | */ |
| 389 | int batadv_hardif_no_broadcast(struct batadv_hard_iface *if_outgoing, |
| 390 | u8 *orig_addr, u8 *orig_neigh) |
| 391 | { |
| 392 | struct batadv_hardif_neigh_node *hardif_neigh; |
| 393 | struct hlist_node *first; |
| 394 | int ret = BATADV_HARDIF_BCAST_OK; |
| 395 | |
| 396 | rcu_read_lock(); |
| 397 | |
| 398 | /* 0 neighbors -> no (re)broadcast */ |
| 399 | first = rcu_dereference(hlist_first_rcu(&if_outgoing->neigh_list)); |
| 400 | if (!first) { |
| 401 | ret = BATADV_HARDIF_BCAST_NORECIPIENT; |
| 402 | goto out; |
| 403 | } |
| 404 | |
| 405 | /* >1 neighbors -> (re)brodcast */ |
| 406 | if (rcu_dereference(hlist_next_rcu(first))) |
| 407 | goto out; |
| 408 | |
| 409 | hardif_neigh = hlist_entry(first, struct batadv_hardif_neigh_node, |
| 410 | list); |
| 411 | |
| 412 | /* 1 neighbor, is the originator -> no rebroadcast */ |
| 413 | if (orig_addr && batadv_compare_eth(hardif_neigh->orig, orig_addr)) { |
| 414 | ret = BATADV_HARDIF_BCAST_DUPORIG; |
| 415 | /* 1 neighbor, is the one we received from -> no rebroadcast */ |
| 416 | } else if (orig_neigh && |
| 417 | batadv_compare_eth(hardif_neigh->orig, orig_neigh)) { |
| 418 | ret = BATADV_HARDIF_BCAST_DUPFWD; |
| 419 | } |
| 420 | |
| 421 | out: |
| 422 | rcu_read_unlock(); |
| 423 | return ret; |
| 424 | } |
| 425 | |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 426 | static struct batadv_hard_iface * |
Sven Eckelmann | 18a1cb6 | 2012-05-12 18:33:57 +0200 | [diff] [blame] | 427 | batadv_hardif_get_active(const struct net_device *soft_iface) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 428 | { |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 429 | struct batadv_hard_iface *hard_iface; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 430 | |
| 431 | rcu_read_lock(); |
Sven Eckelmann | 3193e8f | 2012-05-12 02:09:42 +0200 | [diff] [blame] | 432 | list_for_each_entry_rcu(hard_iface, &batadv_hardif_list, list) { |
Marek Lindner | e6c10f4 | 2011-02-18 12:33:20 +0000 | [diff] [blame] | 433 | if (hard_iface->soft_iface != soft_iface) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 434 | continue; |
| 435 | |
Sven Eckelmann | e9a4f29 | 2012-06-03 22:19:19 +0200 | [diff] [blame] | 436 | if (hard_iface->if_status == BATADV_IF_ACTIVE && |
Sven Eckelmann | 7a659d5 | 2016-01-16 10:29:54 +0100 | [diff] [blame] | 437 | kref_get_unless_zero(&hard_iface->refcount)) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 438 | goto out; |
| 439 | } |
| 440 | |
Marek Lindner | e6c10f4 | 2011-02-18 12:33:20 +0000 | [diff] [blame] | 441 | hard_iface = NULL; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 442 | |
| 443 | out: |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 444 | rcu_read_unlock(); |
Marek Lindner | e6c10f4 | 2011-02-18 12:33:20 +0000 | [diff] [blame] | 445 | return hard_iface; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 446 | } |
| 447 | |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 448 | static void batadv_primary_if_update_addr(struct batadv_priv *bat_priv, |
| 449 | struct batadv_hard_iface *oldif) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 450 | { |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 451 | struct batadv_hard_iface *primary_if; |
Marek Lindner | 32ae9b2 | 2011-04-20 15:40:58 +0200 | [diff] [blame] | 452 | |
Sven Eckelmann | e5d8925 | 2012-05-12 13:48:54 +0200 | [diff] [blame] | 453 | primary_if = batadv_primary_if_get_selected(bat_priv); |
Marek Lindner | 32ae9b2 | 2011-04-20 15:40:58 +0200 | [diff] [blame] | 454 | if (!primary_if) |
| 455 | goto out; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 456 | |
Antonio Quartulli | 785ea11 | 2011-11-23 11:35:44 +0100 | [diff] [blame] | 457 | batadv_dat_init_own_addr(bat_priv, primary_if); |
Sven Eckelmann | 08adf15 | 2012-05-12 13:38:47 +0200 | [diff] [blame] | 458 | batadv_bla_update_orig_address(bat_priv, primary_if, oldif); |
Marek Lindner | 32ae9b2 | 2011-04-20 15:40:58 +0200 | [diff] [blame] | 459 | out: |
| 460 | if (primary_if) |
Sven Eckelmann | 82047ad | 2016-01-17 11:01:10 +0100 | [diff] [blame] | 461 | batadv_hardif_put(primary_if); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 462 | } |
| 463 | |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 464 | static void batadv_primary_if_select(struct batadv_priv *bat_priv, |
| 465 | struct batadv_hard_iface *new_hard_iface) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 466 | { |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 467 | struct batadv_hard_iface *curr_hard_iface; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 468 | |
Sven Eckelmann | c3caf51 | 2011-05-03 11:51:38 +0200 | [diff] [blame] | 469 | ASSERT_RTNL(); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 470 | |
Sven Eckelmann | 17a8691 | 2016-04-11 13:06:40 +0200 | [diff] [blame] | 471 | if (new_hard_iface) |
| 472 | kref_get(&new_hard_iface->refcount); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 473 | |
Sven Eckelmann | 728cbc6 | 2011-05-15 00:50:21 +0200 | [diff] [blame] | 474 | curr_hard_iface = rcu_dereference_protected(bat_priv->primary_if, 1); |
Marek Lindner | 32ae9b2 | 2011-04-20 15:40:58 +0200 | [diff] [blame] | 475 | rcu_assign_pointer(bat_priv->primary_if, new_hard_iface); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 476 | |
Marek Lindner | 32ae9b2 | 2011-04-20 15:40:58 +0200 | [diff] [blame] | 477 | if (!new_hard_iface) |
Simon Wunderlich | 2372138 | 2012-01-22 20:00:19 +0100 | [diff] [blame] | 478 | goto out; |
Marek Lindner | 32ae9b2 | 2011-04-20 15:40:58 +0200 | [diff] [blame] | 479 | |
Antonio Quartulli | 29824a5 | 2016-05-25 23:27:31 +0800 | [diff] [blame] | 480 | bat_priv->algo_ops->iface.primary_set(new_hard_iface); |
Sven Eckelmann | 18a1cb6 | 2012-05-12 18:33:57 +0200 | [diff] [blame] | 481 | batadv_primary_if_update_addr(bat_priv, curr_hard_iface); |
Simon Wunderlich | 2372138 | 2012-01-22 20:00:19 +0100 | [diff] [blame] | 482 | |
| 483 | out: |
| 484 | if (curr_hard_iface) |
Sven Eckelmann | 82047ad | 2016-01-17 11:01:10 +0100 | [diff] [blame] | 485 | batadv_hardif_put(curr_hard_iface); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 486 | } |
| 487 | |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 488 | static bool |
| 489 | batadv_hardif_is_iface_up(const struct batadv_hard_iface *hard_iface) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 490 | { |
Marek Lindner | e6c10f4 | 2011-02-18 12:33:20 +0000 | [diff] [blame] | 491 | if (hard_iface->net_dev->flags & IFF_UP) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 492 | return true; |
| 493 | |
| 494 | return false; |
| 495 | } |
| 496 | |
Sven Eckelmann | 18a1cb6 | 2012-05-12 18:33:57 +0200 | [diff] [blame] | 497 | static void batadv_check_known_mac_addr(const struct net_device *net_dev) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 498 | { |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 499 | const struct batadv_hard_iface *hard_iface; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 500 | |
| 501 | rcu_read_lock(); |
Sven Eckelmann | 3193e8f | 2012-05-12 02:09:42 +0200 | [diff] [blame] | 502 | list_for_each_entry_rcu(hard_iface, &batadv_hardif_list, list) { |
Sven Eckelmann | 825ffe1 | 2017-08-23 21:52:13 +0200 | [diff] [blame] | 503 | if (hard_iface->if_status != BATADV_IF_ACTIVE && |
| 504 | hard_iface->if_status != BATADV_IF_TO_BE_ACTIVATED) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 505 | continue; |
| 506 | |
Marek Lindner | e6c10f4 | 2011-02-18 12:33:20 +0000 | [diff] [blame] | 507 | if (hard_iface->net_dev == net_dev) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 508 | continue; |
| 509 | |
Sven Eckelmann | 1eda58b | 2012-05-12 13:48:58 +0200 | [diff] [blame] | 510 | if (!batadv_compare_eth(hard_iface->net_dev->dev_addr, |
| 511 | net_dev->dev_addr)) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 512 | continue; |
| 513 | |
Sven Eckelmann | 6796958 | 2012-03-26 16:22:45 +0200 | [diff] [blame] | 514 | pr_warn("The newly added mac address (%pM) already exists on: %s\n", |
| 515 | net_dev->dev_addr, hard_iface->net_dev->name); |
| 516 | pr_warn("It is strongly recommended to keep mac addresses unique to avoid problems!\n"); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 517 | } |
| 518 | rcu_read_unlock(); |
| 519 | } |
| 520 | |
Sven Eckelmann | 7bca68c | 2015-08-07 19:28:42 +0200 | [diff] [blame] | 521 | /** |
| 522 | * batadv_hardif_recalc_extra_skbroom() - Recalculate skbuff extra head/tailroom |
| 523 | * @soft_iface: netdev struct of the mesh interface |
| 524 | */ |
| 525 | static void batadv_hardif_recalc_extra_skbroom(struct net_device *soft_iface) |
| 526 | { |
| 527 | const struct batadv_hard_iface *hard_iface; |
| 528 | unsigned short lower_header_len = ETH_HLEN; |
| 529 | unsigned short lower_headroom = 0; |
| 530 | unsigned short lower_tailroom = 0; |
| 531 | unsigned short needed_headroom; |
| 532 | |
| 533 | rcu_read_lock(); |
| 534 | list_for_each_entry_rcu(hard_iface, &batadv_hardif_list, list) { |
| 535 | if (hard_iface->if_status == BATADV_IF_NOT_IN_USE) |
| 536 | continue; |
| 537 | |
| 538 | if (hard_iface->soft_iface != soft_iface) |
| 539 | continue; |
| 540 | |
| 541 | lower_header_len = max_t(unsigned short, lower_header_len, |
| 542 | hard_iface->net_dev->hard_header_len); |
| 543 | |
| 544 | lower_headroom = max_t(unsigned short, lower_headroom, |
| 545 | hard_iface->net_dev->needed_headroom); |
| 546 | |
| 547 | lower_tailroom = max_t(unsigned short, lower_tailroom, |
| 548 | hard_iface->net_dev->needed_tailroom); |
| 549 | } |
| 550 | rcu_read_unlock(); |
| 551 | |
| 552 | needed_headroom = lower_headroom + (lower_header_len - ETH_HLEN); |
| 553 | needed_headroom += batadv_max_header_len(); |
| 554 | |
| 555 | soft_iface->needed_headroom = needed_headroom; |
| 556 | soft_iface->needed_tailroom = lower_tailroom; |
| 557 | } |
| 558 | |
Sven Eckelmann | ff15c27 | 2017-12-02 19:51:53 +0100 | [diff] [blame] | 559 | /** |
| 560 | * batadv_hardif_min_mtu() - Calculate maximum MTU for soft interface |
| 561 | * @soft_iface: netdev struct of the soft interface |
| 562 | * |
| 563 | * Return: MTU for the soft-interface (limited by the minimal MTU of all active |
| 564 | * slave interfaces) |
| 565 | */ |
Sven Eckelmann | 9563877 | 2012-05-12 02:09:31 +0200 | [diff] [blame] | 566 | int batadv_hardif_min_mtu(struct net_device *soft_iface) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 567 | { |
Marek Lindner | a19d3d8 | 2013-05-27 15:33:25 +0800 | [diff] [blame] | 568 | struct batadv_priv *bat_priv = netdev_priv(soft_iface); |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 569 | const struct batadv_hard_iface *hard_iface; |
Antonio Quartulli | 930cd6e | 2014-01-21 11:22:05 +0100 | [diff] [blame] | 570 | int min_mtu = INT_MAX; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 571 | |
| 572 | rcu_read_lock(); |
Sven Eckelmann | 3193e8f | 2012-05-12 02:09:42 +0200 | [diff] [blame] | 573 | list_for_each_entry_rcu(hard_iface, &batadv_hardif_list, list) { |
Sven Eckelmann | 825ffe1 | 2017-08-23 21:52:13 +0200 | [diff] [blame] | 574 | if (hard_iface->if_status != BATADV_IF_ACTIVE && |
| 575 | hard_iface->if_status != BATADV_IF_TO_BE_ACTIVATED) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 576 | continue; |
| 577 | |
Marek Lindner | e6c10f4 | 2011-02-18 12:33:20 +0000 | [diff] [blame] | 578 | if (hard_iface->soft_iface != soft_iface) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 579 | continue; |
| 580 | |
Marek Lindner | a19d3d8 | 2013-05-27 15:33:25 +0800 | [diff] [blame] | 581 | min_mtu = min_t(int, hard_iface->net_dev->mtu, min_mtu); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 582 | } |
| 583 | rcu_read_unlock(); |
Marek Lindner | a19d3d8 | 2013-05-27 15:33:25 +0800 | [diff] [blame] | 584 | |
Marek Lindner | a19d3d8 | 2013-05-27 15:33:25 +0800 | [diff] [blame] | 585 | if (atomic_read(&bat_priv->fragmentation) == 0) |
| 586 | goto out; |
| 587 | |
| 588 | /* with fragmentation enabled the maximum size of internally generated |
| 589 | * packets such as translation table exchanges or tvlv containers, etc |
| 590 | * has to be calculated |
| 591 | */ |
| 592 | min_mtu = min_t(int, min_mtu, BATADV_FRAG_MAX_FRAG_SIZE); |
| 593 | min_mtu -= sizeof(struct batadv_frag_packet); |
| 594 | min_mtu *= BATADV_FRAG_MAX_FRAGMENTS; |
Marek Lindner | a19d3d8 | 2013-05-27 15:33:25 +0800 | [diff] [blame] | 595 | |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 596 | out: |
Antonio Quartulli | 930cd6e | 2014-01-21 11:22:05 +0100 | [diff] [blame] | 597 | /* report to the other components the maximum amount of bytes that |
| 598 | * batman-adv can send over the wire (without considering the payload |
| 599 | * overhead). For example, this value is used by TT to compute the |
| 600 | * maximum local table table size |
| 601 | */ |
| 602 | atomic_set(&bat_priv->packet_size_max, min_mtu); |
| 603 | |
| 604 | /* the real soft-interface MTU is computed by removing the payload |
| 605 | * overhead from the maximum amount of bytes that was just computed. |
| 606 | * |
| 607 | * However batman-adv does not support MTUs bigger than ETH_DATA_LEN |
| 608 | */ |
| 609 | return min_t(int, min_mtu - batadv_max_header_len(), ETH_DATA_LEN); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 610 | } |
| 611 | |
Sven Eckelmann | ff15c27 | 2017-12-02 19:51:53 +0100 | [diff] [blame] | 612 | /** |
| 613 | * batadv_update_min_mtu() - Adjusts the MTU if a new interface with a smaller |
| 614 | * MTU appeared |
| 615 | * @soft_iface: netdev struct of the soft interface |
| 616 | */ |
Sven Eckelmann | 9563877 | 2012-05-12 02:09:31 +0200 | [diff] [blame] | 617 | void batadv_update_min_mtu(struct net_device *soft_iface) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 618 | { |
Marek Lindner | a19d3d8 | 2013-05-27 15:33:25 +0800 | [diff] [blame] | 619 | soft_iface->mtu = batadv_hardif_min_mtu(soft_iface); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 620 | |
Marek Lindner | a19d3d8 | 2013-05-27 15:33:25 +0800 | [diff] [blame] | 621 | /* Check if the local translate table should be cleaned up to match a |
| 622 | * new (and smaller) MTU. |
| 623 | */ |
| 624 | batadv_tt_local_resize_to_mtu(soft_iface); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 625 | } |
| 626 | |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 627 | static void |
| 628 | batadv_hardif_activate_interface(struct batadv_hard_iface *hard_iface) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 629 | { |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 630 | struct batadv_priv *bat_priv; |
| 631 | struct batadv_hard_iface *primary_if = NULL; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 632 | |
Sven Eckelmann | e9a4f29 | 2012-06-03 22:19:19 +0200 | [diff] [blame] | 633 | if (hard_iface->if_status != BATADV_IF_INACTIVE) |
Marek Lindner | 32ae9b2 | 2011-04-20 15:40:58 +0200 | [diff] [blame] | 634 | goto out; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 635 | |
Marek Lindner | e6c10f4 | 2011-02-18 12:33:20 +0000 | [diff] [blame] | 636 | bat_priv = netdev_priv(hard_iface->soft_iface); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 637 | |
Antonio Quartulli | 29824a5 | 2016-05-25 23:27:31 +0800 | [diff] [blame] | 638 | bat_priv->algo_ops->iface.update_mac(hard_iface); |
Sven Eckelmann | e9a4f29 | 2012-06-03 22:19:19 +0200 | [diff] [blame] | 639 | hard_iface->if_status = BATADV_IF_TO_BE_ACTIVATED; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 640 | |
Sven Eckelmann | 9cfc7bd | 2012-05-12 02:09:43 +0200 | [diff] [blame] | 641 | /* the first active interface becomes our primary interface or |
Antonio Quartulli | 015758d | 2011-07-09 17:52:13 +0200 | [diff] [blame] | 642 | * the next active interface after the old primary interface was removed |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 643 | */ |
Sven Eckelmann | e5d8925 | 2012-05-12 13:48:54 +0200 | [diff] [blame] | 644 | primary_if = batadv_primary_if_get_selected(bat_priv); |
Marek Lindner | 32ae9b2 | 2011-04-20 15:40:58 +0200 | [diff] [blame] | 645 | if (!primary_if) |
Sven Eckelmann | 18a1cb6 | 2012-05-12 18:33:57 +0200 | [diff] [blame] | 646 | batadv_primary_if_select(bat_priv, hard_iface); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 647 | |
Sven Eckelmann | 3e34819 | 2012-05-16 20:23:22 +0200 | [diff] [blame] | 648 | batadv_info(hard_iface->soft_iface, "Interface activated: %s\n", |
| 649 | hard_iface->net_dev->name); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 650 | |
Sven Eckelmann | 9563877 | 2012-05-12 02:09:31 +0200 | [diff] [blame] | 651 | batadv_update_min_mtu(hard_iface->soft_iface); |
Marek Lindner | 32ae9b2 | 2011-04-20 15:40:58 +0200 | [diff] [blame] | 652 | |
Antonio Quartulli | 29824a5 | 2016-05-25 23:27:31 +0800 | [diff] [blame] | 653 | if (bat_priv->algo_ops->iface.activate) |
| 654 | bat_priv->algo_ops->iface.activate(hard_iface); |
Antonio Quartulli | b6cf5d4 | 2016-04-14 09:37:05 +0800 | [diff] [blame] | 655 | |
Marek Lindner | 32ae9b2 | 2011-04-20 15:40:58 +0200 | [diff] [blame] | 656 | out: |
| 657 | if (primary_if) |
Sven Eckelmann | 82047ad | 2016-01-17 11:01:10 +0100 | [diff] [blame] | 658 | batadv_hardif_put(primary_if); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 659 | } |
| 660 | |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 661 | static void |
| 662 | batadv_hardif_deactivate_interface(struct batadv_hard_iface *hard_iface) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 663 | { |
Sven Eckelmann | 825ffe1 | 2017-08-23 21:52:13 +0200 | [diff] [blame] | 664 | if (hard_iface->if_status != BATADV_IF_ACTIVE && |
| 665 | hard_iface->if_status != BATADV_IF_TO_BE_ACTIVATED) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 666 | return; |
| 667 | |
Sven Eckelmann | e9a4f29 | 2012-06-03 22:19:19 +0200 | [diff] [blame] | 668 | hard_iface->if_status = BATADV_IF_INACTIVE; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 669 | |
Sven Eckelmann | 3e34819 | 2012-05-16 20:23:22 +0200 | [diff] [blame] | 670 | batadv_info(hard_iface->soft_iface, "Interface deactivated: %s\n", |
| 671 | hard_iface->net_dev->name); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 672 | |
Sven Eckelmann | 9563877 | 2012-05-12 02:09:31 +0200 | [diff] [blame] | 673 | batadv_update_min_mtu(hard_iface->soft_iface); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 674 | } |
| 675 | |
Antonio Quartulli | cb4b0d4 | 2013-02-16 14:42:39 +0100 | [diff] [blame] | 676 | /** |
Sven Eckelmann | 7e9a8c2 | 2017-12-02 19:51:47 +0100 | [diff] [blame] | 677 | * batadv_master_del_slave() - remove hard_iface from the current master iface |
Antonio Quartulli | cb4b0d4 | 2013-02-16 14:42:39 +0100 | [diff] [blame] | 678 | * @slave: the interface enslaved in another master |
| 679 | * @master: the master from which slave has to be removed |
| 680 | * |
| 681 | * Invoke ndo_del_slave on master passing slave as argument. In this way slave |
| 682 | * is free'd and master can correctly change its internal state. |
Sven Eckelmann | 62fe710 | 2015-09-15 19:00:48 +0200 | [diff] [blame] | 683 | * |
| 684 | * Return: 0 on success, a negative value representing the error otherwise |
Antonio Quartulli | cb4b0d4 | 2013-02-16 14:42:39 +0100 | [diff] [blame] | 685 | */ |
| 686 | static int batadv_master_del_slave(struct batadv_hard_iface *slave, |
| 687 | struct net_device *master) |
| 688 | { |
| 689 | int ret; |
| 690 | |
| 691 | if (!master) |
| 692 | return 0; |
| 693 | |
| 694 | ret = -EBUSY; |
| 695 | if (master->netdev_ops->ndo_del_slave) |
| 696 | ret = master->netdev_ops->ndo_del_slave(master, slave->net_dev); |
| 697 | |
| 698 | return ret; |
| 699 | } |
| 700 | |
Sven Eckelmann | ff15c27 | 2017-12-02 19:51:53 +0100 | [diff] [blame] | 701 | /** |
| 702 | * batadv_hardif_enable_interface() - Enslave hard interface to soft interface |
| 703 | * @hard_iface: hard interface to add to soft interface |
| 704 | * @net: the applicable net namespace |
| 705 | * @iface_name: name of the soft interface |
| 706 | * |
| 707 | * Return: 0 on success or negative error number in case of failure |
| 708 | */ |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 709 | int batadv_hardif_enable_interface(struct batadv_hard_iface *hard_iface, |
Andrew Lunn | 2cd45a0 | 2016-04-21 12:57:27 +0200 | [diff] [blame] | 710 | struct net *net, const char *iface_name) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 711 | { |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 712 | struct batadv_priv *bat_priv; |
Antonio Quartulli | cb4b0d4 | 2013-02-16 14:42:39 +0100 | [diff] [blame] | 713 | struct net_device *soft_iface, *master; |
Antonio Quartulli | 293e933 | 2013-05-19 12:55:16 +0200 | [diff] [blame] | 714 | __be16 ethertype = htons(ETH_P_BATMAN); |
Marek Lindner | 411d6ed | 2013-05-08 13:31:59 +0800 | [diff] [blame] | 715 | int max_header_len = batadv_max_header_len(); |
Sven Eckelmann | e44d8fe | 2011-03-04 21:36:41 +0000 | [diff] [blame] | 716 | int ret; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 717 | |
Sven Eckelmann | e9a4f29 | 2012-06-03 22:19:19 +0200 | [diff] [blame] | 718 | if (hard_iface->if_status != BATADV_IF_NOT_IN_USE) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 719 | goto out; |
| 720 | |
Sven Eckelmann | 17a8691 | 2016-04-11 13:06:40 +0200 | [diff] [blame] | 721 | kref_get(&hard_iface->refcount); |
Marek Lindner | ed75ccb | 2011-02-10 14:33:51 +0000 | [diff] [blame] | 722 | |
Andrew Lunn | 2cd45a0 | 2016-04-21 12:57:27 +0200 | [diff] [blame] | 723 | soft_iface = dev_get_by_name(net, iface_name); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 724 | |
Sven Eckelmann | e44d8fe | 2011-03-04 21:36:41 +0000 | [diff] [blame] | 725 | if (!soft_iface) { |
Andrew Lunn | 2cd45a0 | 2016-04-21 12:57:27 +0200 | [diff] [blame] | 726 | soft_iface = batadv_softif_create(net, iface_name); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 727 | |
Sven Eckelmann | e44d8fe | 2011-03-04 21:36:41 +0000 | [diff] [blame] | 728 | if (!soft_iface) { |
| 729 | ret = -ENOMEM; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 730 | goto err; |
Sven Eckelmann | e44d8fe | 2011-03-04 21:36:41 +0000 | [diff] [blame] | 731 | } |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 732 | |
| 733 | /* dev_get_by_name() increases the reference counter for us */ |
Sven Eckelmann | e44d8fe | 2011-03-04 21:36:41 +0000 | [diff] [blame] | 734 | dev_hold(soft_iface); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 735 | } |
| 736 | |
Sven Eckelmann | 04b482a | 2012-05-12 02:09:38 +0200 | [diff] [blame] | 737 | if (!batadv_softif_is_valid(soft_iface)) { |
Sven Eckelmann | 86ceb36 | 2012-03-07 09:07:45 +0100 | [diff] [blame] | 738 | pr_err("Can't create batman mesh interface %s: already exists as regular interface\n", |
Sven Eckelmann | e44d8fe | 2011-03-04 21:36:41 +0000 | [diff] [blame] | 739 | soft_iface->name); |
Sven Eckelmann | e44d8fe | 2011-03-04 21:36:41 +0000 | [diff] [blame] | 740 | ret = -EINVAL; |
Marek Lindner | 77af757 | 2012-02-07 17:20:48 +0800 | [diff] [blame] | 741 | goto err_dev; |
Sven Eckelmann | e44d8fe | 2011-03-04 21:36:41 +0000 | [diff] [blame] | 742 | } |
| 743 | |
Antonio Quartulli | cb4b0d4 | 2013-02-16 14:42:39 +0100 | [diff] [blame] | 744 | /* check if the interface is enslaved in another virtual one and |
| 745 | * in that case unlink it first |
| 746 | */ |
| 747 | master = netdev_master_upper_dev_get(hard_iface->net_dev); |
| 748 | ret = batadv_master_del_slave(hard_iface, master); |
| 749 | if (ret) |
| 750 | goto err_dev; |
| 751 | |
Sven Eckelmann | e44d8fe | 2011-03-04 21:36:41 +0000 | [diff] [blame] | 752 | hard_iface->soft_iface = soft_iface; |
Marek Lindner | e6c10f4 | 2011-02-18 12:33:20 +0000 | [diff] [blame] | 753 | bat_priv = netdev_priv(hard_iface->soft_iface); |
Marek Lindner | d0b9fd8 | 2011-07-30 12:33:33 +0200 | [diff] [blame] | 754 | |
Jiri Pirko | 6dffb04 | 2015-12-03 12:12:10 +0100 | [diff] [blame] | 755 | ret = netdev_master_upper_dev_link(hard_iface->net_dev, |
David Ahern | 42ab19e | 2017-10-04 17:48:47 -0700 | [diff] [blame] | 756 | soft_iface, NULL, NULL, NULL); |
Sven Eckelmann | 3dbd550 | 2013-02-11 17:10:27 +0800 | [diff] [blame] | 757 | if (ret) |
| 758 | goto err_dev; |
| 759 | |
Antonio Quartulli | 29824a5 | 2016-05-25 23:27:31 +0800 | [diff] [blame] | 760 | ret = bat_priv->algo_ops->iface.enable(hard_iface); |
Sven Eckelmann | 5346c35 | 2012-05-05 13:27:28 +0200 | [diff] [blame] | 761 | if (ret < 0) |
Sven Eckelmann | 3dbd550 | 2013-02-11 17:10:27 +0800 | [diff] [blame] | 762 | goto err_upper; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 763 | |
Sven Eckelmann | e9a4f29 | 2012-06-03 22:19:19 +0200 | [diff] [blame] | 764 | hard_iface->if_status = BATADV_IF_INACTIVE; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 765 | |
Sven Eckelmann | d7d6de9 | 2016-03-05 16:09:18 +0100 | [diff] [blame] | 766 | kref_get(&hard_iface->refcount); |
Sven Eckelmann | 7e071c7 | 2012-06-03 22:19:13 +0200 | [diff] [blame] | 767 | hard_iface->batman_adv_ptype.type = ethertype; |
Sven Eckelmann | 3193e8f | 2012-05-12 02:09:42 +0200 | [diff] [blame] | 768 | hard_iface->batman_adv_ptype.func = batadv_batman_skb_recv; |
Marek Lindner | e6c10f4 | 2011-02-18 12:33:20 +0000 | [diff] [blame] | 769 | hard_iface->batman_adv_ptype.dev = hard_iface->net_dev; |
| 770 | dev_add_pack(&hard_iface->batman_adv_ptype); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 771 | |
Sven Eckelmann | 3e34819 | 2012-05-16 20:23:22 +0200 | [diff] [blame] | 772 | batadv_info(hard_iface->soft_iface, "Adding interface: %s\n", |
| 773 | hard_iface->net_dev->name); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 774 | |
Sven Eckelmann | 0aca236 | 2012-06-19 20:26:30 +0200 | [diff] [blame] | 775 | if (atomic_read(&bat_priv->fragmentation) && |
Marek Lindner | 411d6ed | 2013-05-08 13:31:59 +0800 | [diff] [blame] | 776 | hard_iface->net_dev->mtu < ETH_DATA_LEN + max_header_len) |
Sven Eckelmann | 3e34819 | 2012-05-16 20:23:22 +0200 | [diff] [blame] | 777 | batadv_info(hard_iface->soft_iface, |
Marek Lindner | 411d6ed | 2013-05-08 13:31:59 +0800 | [diff] [blame] | 778 | "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", |
Sven Eckelmann | 3e34819 | 2012-05-16 20:23:22 +0200 | [diff] [blame] | 779 | hard_iface->net_dev->name, hard_iface->net_dev->mtu, |
Marek Lindner | 411d6ed | 2013-05-08 13:31:59 +0800 | [diff] [blame] | 780 | ETH_DATA_LEN + max_header_len); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 781 | |
Sven Eckelmann | 0aca236 | 2012-06-19 20:26:30 +0200 | [diff] [blame] | 782 | if (!atomic_read(&bat_priv->fragmentation) && |
Marek Lindner | 411d6ed | 2013-05-08 13:31:59 +0800 | [diff] [blame] | 783 | hard_iface->net_dev->mtu < ETH_DATA_LEN + max_header_len) |
Sven Eckelmann | 3e34819 | 2012-05-16 20:23:22 +0200 | [diff] [blame] | 784 | batadv_info(hard_iface->soft_iface, |
Marek Lindner | 411d6ed | 2013-05-08 13:31:59 +0800 | [diff] [blame] | 785 | "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", |
Sven Eckelmann | 3e34819 | 2012-05-16 20:23:22 +0200 | [diff] [blame] | 786 | hard_iface->net_dev->name, hard_iface->net_dev->mtu, |
Marek Lindner | 411d6ed | 2013-05-08 13:31:59 +0800 | [diff] [blame] | 787 | ETH_DATA_LEN + max_header_len); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 788 | |
Sven Eckelmann | 18a1cb6 | 2012-05-12 18:33:57 +0200 | [diff] [blame] | 789 | if (batadv_hardif_is_iface_up(hard_iface)) |
| 790 | batadv_hardif_activate_interface(hard_iface); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 791 | else |
Sven Eckelmann | 3e34819 | 2012-05-16 20:23:22 +0200 | [diff] [blame] | 792 | batadv_err(hard_iface->soft_iface, |
| 793 | "Not using interface %s (retrying later): interface not active\n", |
| 794 | hard_iface->net_dev->name); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 795 | |
Sven Eckelmann | 7bca68c | 2015-08-07 19:28:42 +0200 | [diff] [blame] | 796 | batadv_hardif_recalc_extra_skbroom(soft_iface); |
| 797 | |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 798 | out: |
| 799 | return 0; |
| 800 | |
Sven Eckelmann | 3dbd550 | 2013-02-11 17:10:27 +0800 | [diff] [blame] | 801 | err_upper: |
| 802 | netdev_upper_dev_unlink(hard_iface->net_dev, soft_iface); |
Marek Lindner | 77af757 | 2012-02-07 17:20:48 +0800 | [diff] [blame] | 803 | err_dev: |
Sven Eckelmann | 3dbd550 | 2013-02-11 17:10:27 +0800 | [diff] [blame] | 804 | hard_iface->soft_iface = NULL; |
Marek Lindner | 77af757 | 2012-02-07 17:20:48 +0800 | [diff] [blame] | 805 | dev_put(soft_iface); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 806 | err: |
Sven Eckelmann | 82047ad | 2016-01-17 11:01:10 +0100 | [diff] [blame] | 807 | batadv_hardif_put(hard_iface); |
Sven Eckelmann | e44d8fe | 2011-03-04 21:36:41 +0000 | [diff] [blame] | 808 | return ret; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 809 | } |
| 810 | |
Sven Eckelmann | ff15c27 | 2017-12-02 19:51:53 +0100 | [diff] [blame] | 811 | /** |
Sven Eckelmann | dee222c7 | 2018-08-16 16:54:45 +0200 | [diff] [blame] | 812 | * batadv_hardif_cnt() - get number of interfaces enslaved to soft interface |
| 813 | * @soft_iface: soft interface to check |
| 814 | * |
| 815 | * This function is only using RCU for locking - the result can therefore be |
| 816 | * off when another functions is modifying the list at the same time. The |
| 817 | * caller can use the rtnl_lock to make sure that the count is accurate. |
| 818 | * |
| 819 | * Return: number of connected/enslaved hard interfaces |
| 820 | */ |
| 821 | static size_t batadv_hardif_cnt(const struct net_device *soft_iface) |
| 822 | { |
| 823 | struct batadv_hard_iface *hard_iface; |
| 824 | size_t count = 0; |
| 825 | |
| 826 | rcu_read_lock(); |
| 827 | list_for_each_entry_rcu(hard_iface, &batadv_hardif_list, list) { |
| 828 | if (hard_iface->soft_iface != soft_iface) |
| 829 | continue; |
| 830 | |
| 831 | count++; |
| 832 | } |
| 833 | rcu_read_unlock(); |
| 834 | |
| 835 | return count; |
| 836 | } |
| 837 | |
| 838 | /** |
Sven Eckelmann | ff15c27 | 2017-12-02 19:51:53 +0100 | [diff] [blame] | 839 | * batadv_hardif_disable_interface() - Remove hard interface from soft interface |
| 840 | * @hard_iface: hard interface to be removed |
| 841 | * @autodel: whether to delete soft interface when it doesn't contain any other |
| 842 | * slave interfaces |
| 843 | */ |
Sven Eckelmann | a15fd36 | 2013-02-11 17:10:24 +0800 | [diff] [blame] | 844 | void batadv_hardif_disable_interface(struct batadv_hard_iface *hard_iface, |
| 845 | enum batadv_hard_if_cleanup autodel) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 846 | { |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 847 | struct batadv_priv *bat_priv = netdev_priv(hard_iface->soft_iface); |
| 848 | struct batadv_hard_iface *primary_if = NULL; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 849 | |
Sven Eckelmann | f2d2386 | 2016-03-19 13:55:21 +0100 | [diff] [blame] | 850 | batadv_hardif_deactivate_interface(hard_iface); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 851 | |
Sven Eckelmann | e9a4f29 | 2012-06-03 22:19:19 +0200 | [diff] [blame] | 852 | if (hard_iface->if_status != BATADV_IF_INACTIVE) |
Marek Lindner | 32ae9b2 | 2011-04-20 15:40:58 +0200 | [diff] [blame] | 853 | goto out; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 854 | |
Sven Eckelmann | 3e34819 | 2012-05-16 20:23:22 +0200 | [diff] [blame] | 855 | batadv_info(hard_iface->soft_iface, "Removing interface: %s\n", |
| 856 | hard_iface->net_dev->name); |
Marek Lindner | e6c10f4 | 2011-02-18 12:33:20 +0000 | [diff] [blame] | 857 | dev_remove_pack(&hard_iface->batman_adv_ptype); |
Sven Eckelmann | d7d6de9 | 2016-03-05 16:09:18 +0100 | [diff] [blame] | 858 | batadv_hardif_put(hard_iface); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 859 | |
Sven Eckelmann | e5d8925 | 2012-05-12 13:48:54 +0200 | [diff] [blame] | 860 | primary_if = batadv_primary_if_get_selected(bat_priv); |
Marek Lindner | 32ae9b2 | 2011-04-20 15:40:58 +0200 | [diff] [blame] | 861 | if (hard_iface == primary_if) { |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 862 | struct batadv_hard_iface *new_if; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 863 | |
Sven Eckelmann | 18a1cb6 | 2012-05-12 18:33:57 +0200 | [diff] [blame] | 864 | new_if = batadv_hardif_get_active(hard_iface->soft_iface); |
| 865 | batadv_primary_if_select(bat_priv, new_if); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 866 | |
| 867 | if (new_if) |
Sven Eckelmann | 82047ad | 2016-01-17 11:01:10 +0100 | [diff] [blame] | 868 | batadv_hardif_put(new_if); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 869 | } |
| 870 | |
Antonio Quartulli | 29824a5 | 2016-05-25 23:27:31 +0800 | [diff] [blame] | 871 | bat_priv->algo_ops->iface.disable(hard_iface); |
Sven Eckelmann | e9a4f29 | 2012-06-03 22:19:19 +0200 | [diff] [blame] | 872 | hard_iface->if_status = BATADV_IF_NOT_IN_USE; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 873 | |
Marek Lindner | e6c10f4 | 2011-02-18 12:33:20 +0000 | [diff] [blame] | 874 | /* delete all references to this hard_iface */ |
Sven Eckelmann | 7d211ef | 2012-05-12 02:09:34 +0200 | [diff] [blame] | 875 | batadv_purge_orig_ref(bat_priv); |
Sven Eckelmann | 9455e34 | 2012-05-12 02:09:37 +0200 | [diff] [blame] | 876 | batadv_purge_outstanding_packets(bat_priv, hard_iface); |
Marek Lindner | e6c10f4 | 2011-02-18 12:33:20 +0000 | [diff] [blame] | 877 | dev_put(hard_iface->soft_iface); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 878 | |
Antonio Quartulli | a5256f7 | 2015-08-04 22:26:19 +0200 | [diff] [blame] | 879 | netdev_upper_dev_unlink(hard_iface->net_dev, hard_iface->soft_iface); |
Sven Eckelmann | 7bca68c | 2015-08-07 19:28:42 +0200 | [diff] [blame] | 880 | batadv_hardif_recalc_extra_skbroom(hard_iface->soft_iface); |
Antonio Quartulli | a5256f7 | 2015-08-04 22:26:19 +0200 | [diff] [blame] | 881 | |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 882 | /* nobody uses this interface anymore */ |
Sven Eckelmann | dee222c7 | 2018-08-16 16:54:45 +0200 | [diff] [blame] | 883 | if (batadv_hardif_cnt(hard_iface->soft_iface) <= 1) { |
Antonio Quartulli | 8257f55 | 2013-08-19 18:39:59 +0200 | [diff] [blame] | 884 | batadv_gw_check_client_stop(bat_priv); |
| 885 | |
| 886 | if (autodel == BATADV_IF_CLEANUP_AUTO) |
| 887 | batadv_softif_destroy_sysfs(hard_iface->soft_iface); |
| 888 | } |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 889 | |
Sven Eckelmann | 27915aa | 2016-11-02 18:14:43 +0100 | [diff] [blame] | 890 | hard_iface->soft_iface = NULL; |
Sven Eckelmann | 82047ad | 2016-01-17 11:01:10 +0100 | [diff] [blame] | 891 | batadv_hardif_put(hard_iface); |
Marek Lindner | 32ae9b2 | 2011-04-20 15:40:58 +0200 | [diff] [blame] | 892 | |
| 893 | out: |
| 894 | if (primary_if) |
Sven Eckelmann | 82047ad | 2016-01-17 11:01:10 +0100 | [diff] [blame] | 895 | batadv_hardif_put(primary_if); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 896 | } |
| 897 | |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 898 | static struct batadv_hard_iface * |
Sven Eckelmann | 18a1cb6 | 2012-05-12 18:33:57 +0200 | [diff] [blame] | 899 | batadv_hardif_add_interface(struct net_device *net_dev) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 900 | { |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 901 | struct batadv_hard_iface *hard_iface; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 902 | int ret; |
| 903 | |
Sven Eckelmann | c3caf51 | 2011-05-03 11:51:38 +0200 | [diff] [blame] | 904 | ASSERT_RTNL(); |
| 905 | |
Sven Eckelmann | 4b426b1 | 2016-02-22 21:02:39 +0100 | [diff] [blame] | 906 | if (!batadv_is_valid_iface(net_dev)) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 907 | goto out; |
| 908 | |
| 909 | dev_hold(net_dev); |
| 910 | |
Antonio Quartulli | 7db3fc2 | 2013-04-02 12:16:53 +0200 | [diff] [blame] | 911 | hard_iface = kzalloc(sizeof(*hard_iface), GFP_ATOMIC); |
Joe Perches | 320f422 | 2011-08-29 14:17:24 -0700 | [diff] [blame] | 912 | if (!hard_iface) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 913 | goto release_dev; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 914 | |
Sven Eckelmann | 5853e22 | 2012-05-12 02:09:24 +0200 | [diff] [blame] | 915 | ret = batadv_sysfs_add_hardif(&hard_iface->hardif_obj, net_dev); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 916 | if (ret) |
| 917 | goto free_if; |
| 918 | |
Marek Lindner | e6c10f4 | 2011-02-18 12:33:20 +0000 | [diff] [blame] | 919 | hard_iface->net_dev = net_dev; |
| 920 | hard_iface->soft_iface = NULL; |
Sven Eckelmann | e9a4f29 | 2012-06-03 22:19:19 +0200 | [diff] [blame] | 921 | hard_iface->if_status = BATADV_IF_NOT_IN_USE; |
Simon Wunderlich | 5bc7c1e | 2013-11-21 14:16:12 +0100 | [diff] [blame] | 922 | |
| 923 | ret = batadv_debugfs_add_hardif(hard_iface); |
| 924 | if (ret) |
| 925 | goto free_sysfs; |
| 926 | |
Marek Lindner | e6c10f4 | 2011-02-18 12:33:20 +0000 | [diff] [blame] | 927 | INIT_LIST_HEAD(&hard_iface->list); |
Marek Lindner | cef6341 | 2015-08-04 21:09:55 +0800 | [diff] [blame] | 928 | INIT_HLIST_HEAD(&hard_iface->neigh_list); |
Simon Wunderlich | 5bc44dc | 2013-01-11 10:19:51 +0100 | [diff] [blame] | 929 | |
Marek Lindner | cef6341 | 2015-08-04 21:09:55 +0800 | [diff] [blame] | 930 | spin_lock_init(&hard_iface->neigh_list_lock); |
Sven Eckelmann | b2367e4 | 2016-07-15 17:39:28 +0200 | [diff] [blame] | 931 | kref_init(&hard_iface->refcount); |
Marek Lindner | cef6341 | 2015-08-04 21:09:55 +0800 | [diff] [blame] | 932 | |
Matthias Schiffer | caf65bf | 2013-03-09 23:14:23 +0100 | [diff] [blame] | 933 | hard_iface->num_bcasts = BATADV_NUM_BCASTS_DEFAULT; |
Sven Eckelmann | 10b1bbb | 2016-09-30 15:21:03 +0200 | [diff] [blame] | 934 | hard_iface->wifi_flags = batadv_wifi_flags_evaluate(net_dev); |
| 935 | if (batadv_is_wifi_hardif(hard_iface)) |
Matthias Schiffer | caf65bf | 2013-03-09 23:14:23 +0100 | [diff] [blame] | 936 | hard_iface->num_bcasts = BATADV_NUM_BCASTS_WIRELESS; |
| 937 | |
Marek Lindner | 7db682d | 2016-05-10 22:31:59 +0800 | [diff] [blame] | 938 | batadv_v_hardif_init(hard_iface); |
| 939 | |
Sven Eckelmann | 18a1cb6 | 2012-05-12 18:33:57 +0200 | [diff] [blame] | 940 | batadv_check_known_mac_addr(hard_iface->net_dev); |
Sven Eckelmann | b2367e4 | 2016-07-15 17:39:28 +0200 | [diff] [blame] | 941 | kref_get(&hard_iface->refcount); |
Sven Eckelmann | 3193e8f | 2012-05-12 02:09:42 +0200 | [diff] [blame] | 942 | list_add_tail_rcu(&hard_iface->list, &batadv_hardif_list); |
Sven Eckelmann | fb69be6 | 2018-10-30 22:01:24 +0100 | [diff] [blame] | 943 | batadv_hardif_generation++; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 944 | |
Marek Lindner | e6c10f4 | 2011-02-18 12:33:20 +0000 | [diff] [blame] | 945 | return hard_iface; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 946 | |
Simon Wunderlich | 5bc7c1e | 2013-11-21 14:16:12 +0100 | [diff] [blame] | 947 | free_sysfs: |
| 948 | batadv_sysfs_del_hardif(&hard_iface->hardif_obj); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 949 | free_if: |
Marek Lindner | e6c10f4 | 2011-02-18 12:33:20 +0000 | [diff] [blame] | 950 | kfree(hard_iface); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 951 | release_dev: |
| 952 | dev_put(net_dev); |
| 953 | out: |
| 954 | return NULL; |
| 955 | } |
| 956 | |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 957 | static void batadv_hardif_remove_interface(struct batadv_hard_iface *hard_iface) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 958 | { |
Sven Eckelmann | c3caf51 | 2011-05-03 11:51:38 +0200 | [diff] [blame] | 959 | ASSERT_RTNL(); |
| 960 | |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 961 | /* first deactivate interface */ |
Sven Eckelmann | e9a4f29 | 2012-06-03 22:19:19 +0200 | [diff] [blame] | 962 | if (hard_iface->if_status != BATADV_IF_NOT_IN_USE) |
Sven Eckelmann | a15fd36 | 2013-02-11 17:10:24 +0800 | [diff] [blame] | 963 | batadv_hardif_disable_interface(hard_iface, |
Sven Eckelmann | 06d640c | 2016-07-10 15:47:57 +0200 | [diff] [blame] | 964 | BATADV_IF_CLEANUP_KEEP); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 965 | |
Sven Eckelmann | e9a4f29 | 2012-06-03 22:19:19 +0200 | [diff] [blame] | 966 | if (hard_iface->if_status != BATADV_IF_NOT_IN_USE) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 967 | return; |
| 968 | |
Sven Eckelmann | e9a4f29 | 2012-06-03 22:19:19 +0200 | [diff] [blame] | 969 | hard_iface->if_status = BATADV_IF_TO_BE_REMOVED; |
Sven Eckelmann | 569c985 | 2016-06-13 07:41:31 +0200 | [diff] [blame] | 970 | batadv_debugfs_del_hardif(hard_iface); |
| 971 | batadv_sysfs_del_hardif(&hard_iface->hardif_obj); |
| 972 | batadv_hardif_put(hard_iface); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 973 | } |
| 974 | |
Sven Eckelmann | ff15c27 | 2017-12-02 19:51:53 +0100 | [diff] [blame] | 975 | /** |
| 976 | * batadv_hardif_remove_interfaces() - Remove all hard interfaces |
| 977 | */ |
Sven Eckelmann | 9563877 | 2012-05-12 02:09:31 +0200 | [diff] [blame] | 978 | void batadv_hardif_remove_interfaces(void) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 979 | { |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 980 | struct batadv_hard_iface *hard_iface, *hard_iface_tmp; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 981 | |
Sven Eckelmann | c3caf51 | 2011-05-03 11:51:38 +0200 | [diff] [blame] | 982 | rtnl_lock(); |
Marek Lindner | e6c10f4 | 2011-02-18 12:33:20 +0000 | [diff] [blame] | 983 | list_for_each_entry_safe(hard_iface, hard_iface_tmp, |
Sven Eckelmann | 3193e8f | 2012-05-12 02:09:42 +0200 | [diff] [blame] | 984 | &batadv_hardif_list, list) { |
Marek Lindner | e6c10f4 | 2011-02-18 12:33:20 +0000 | [diff] [blame] | 985 | list_del_rcu(&hard_iface->list); |
Sven Eckelmann | fb69be6 | 2018-10-30 22:01:24 +0100 | [diff] [blame] | 986 | batadv_hardif_generation++; |
Sven Eckelmann | 18a1cb6 | 2012-05-12 18:33:57 +0200 | [diff] [blame] | 987 | batadv_hardif_remove_interface(hard_iface); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 988 | } |
| 989 | rtnl_unlock(); |
| 990 | } |
| 991 | |
Sven Eckelmann | 6da7be7 | 2018-06-01 19:24:24 +0200 | [diff] [blame] | 992 | /** |
| 993 | * batadv_hard_if_event_softif() - Handle events for soft interfaces |
| 994 | * @event: NETDEV_* event to handle |
| 995 | * @net_dev: net_device which generated an event |
| 996 | * |
| 997 | * Return: NOTIFY_* result |
| 998 | */ |
| 999 | static int batadv_hard_if_event_softif(unsigned long event, |
| 1000 | struct net_device *net_dev) |
| 1001 | { |
| 1002 | struct batadv_priv *bat_priv; |
| 1003 | |
| 1004 | switch (event) { |
| 1005 | case NETDEV_REGISTER: |
| 1006 | batadv_sysfs_add_meshif(net_dev); |
| 1007 | bat_priv = netdev_priv(net_dev); |
| 1008 | batadv_softif_create_vlan(bat_priv, BATADV_NO_FLAGS); |
| 1009 | break; |
| 1010 | case NETDEV_CHANGENAME: |
| 1011 | batadv_debugfs_rename_meshif(net_dev); |
| 1012 | break; |
| 1013 | } |
| 1014 | |
| 1015 | return NOTIFY_DONE; |
| 1016 | } |
| 1017 | |
Sven Eckelmann | 18a1cb6 | 2012-05-12 18:33:57 +0200 | [diff] [blame] | 1018 | static int batadv_hard_if_event(struct notifier_block *this, |
| 1019 | unsigned long event, void *ptr) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 1020 | { |
Jiri Pirko | 351638e | 2013-05-28 01:30:21 +0000 | [diff] [blame] | 1021 | struct net_device *net_dev = netdev_notifier_info_to_dev(ptr); |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 1022 | struct batadv_hard_iface *hard_iface; |
| 1023 | struct batadv_hard_iface *primary_if = NULL; |
| 1024 | struct batadv_priv *bat_priv; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 1025 | |
Sven Eckelmann | 6da7be7 | 2018-06-01 19:24:24 +0200 | [diff] [blame] | 1026 | if (batadv_softif_is_valid(net_dev)) |
| 1027 | return batadv_hard_if_event_softif(event, net_dev); |
Sven Eckelmann | 3713029 | 2013-02-11 17:10:22 +0800 | [diff] [blame] | 1028 | |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 1029 | hard_iface = batadv_hardif_get_by_netdev(net_dev); |
Andrew Lunn | a1a66b1 | 2015-12-03 21:12:33 +0100 | [diff] [blame] | 1030 | if (!hard_iface && (event == NETDEV_REGISTER || |
| 1031 | event == NETDEV_POST_TYPE_CHANGE)) |
Sven Eckelmann | 18a1cb6 | 2012-05-12 18:33:57 +0200 | [diff] [blame] | 1032 | hard_iface = batadv_hardif_add_interface(net_dev); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 1033 | |
Marek Lindner | e6c10f4 | 2011-02-18 12:33:20 +0000 | [diff] [blame] | 1034 | if (!hard_iface) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 1035 | goto out; |
| 1036 | |
| 1037 | switch (event) { |
| 1038 | case NETDEV_UP: |
Sven Eckelmann | 18a1cb6 | 2012-05-12 18:33:57 +0200 | [diff] [blame] | 1039 | batadv_hardif_activate_interface(hard_iface); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 1040 | break; |
| 1041 | case NETDEV_GOING_DOWN: |
| 1042 | case NETDEV_DOWN: |
Sven Eckelmann | 18a1cb6 | 2012-05-12 18:33:57 +0200 | [diff] [blame] | 1043 | batadv_hardif_deactivate_interface(hard_iface); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 1044 | break; |
| 1045 | case NETDEV_UNREGISTER: |
Andrew Lunn | a1a66b1 | 2015-12-03 21:12:33 +0100 | [diff] [blame] | 1046 | case NETDEV_PRE_TYPE_CHANGE: |
Marek Lindner | e6c10f4 | 2011-02-18 12:33:20 +0000 | [diff] [blame] | 1047 | list_del_rcu(&hard_iface->list); |
Sven Eckelmann | fb69be6 | 2018-10-30 22:01:24 +0100 | [diff] [blame] | 1048 | batadv_hardif_generation++; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 1049 | |
Sven Eckelmann | 18a1cb6 | 2012-05-12 18:33:57 +0200 | [diff] [blame] | 1050 | batadv_hardif_remove_interface(hard_iface); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 1051 | break; |
| 1052 | case NETDEV_CHANGEMTU: |
Marek Lindner | e6c10f4 | 2011-02-18 12:33:20 +0000 | [diff] [blame] | 1053 | if (hard_iface->soft_iface) |
Sven Eckelmann | 9563877 | 2012-05-12 02:09:31 +0200 | [diff] [blame] | 1054 | batadv_update_min_mtu(hard_iface->soft_iface); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 1055 | break; |
| 1056 | case NETDEV_CHANGEADDR: |
Sven Eckelmann | e9a4f29 | 2012-06-03 22:19:19 +0200 | [diff] [blame] | 1057 | if (hard_iface->if_status == BATADV_IF_NOT_IN_USE) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 1058 | goto hardif_put; |
| 1059 | |
Sven Eckelmann | 18a1cb6 | 2012-05-12 18:33:57 +0200 | [diff] [blame] | 1060 | batadv_check_known_mac_addr(hard_iface->net_dev); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 1061 | |
Marek Lindner | e6c10f4 | 2011-02-18 12:33:20 +0000 | [diff] [blame] | 1062 | bat_priv = netdev_priv(hard_iface->soft_iface); |
Antonio Quartulli | 29824a5 | 2016-05-25 23:27:31 +0800 | [diff] [blame] | 1063 | bat_priv->algo_ops->iface.update_mac(hard_iface); |
Marek Lindner | 01c4224 | 2011-11-28 21:31:55 +0800 | [diff] [blame] | 1064 | |
Sven Eckelmann | e5d8925 | 2012-05-12 13:48:54 +0200 | [diff] [blame] | 1065 | primary_if = batadv_primary_if_get_selected(bat_priv); |
Marek Lindner | 32ae9b2 | 2011-04-20 15:40:58 +0200 | [diff] [blame] | 1066 | if (!primary_if) |
| 1067 | goto hardif_put; |
| 1068 | |
| 1069 | if (hard_iface == primary_if) |
Sven Eckelmann | 18a1cb6 | 2012-05-12 18:33:57 +0200 | [diff] [blame] | 1070 | batadv_primary_if_update_addr(bat_priv, NULL); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 1071 | break; |
Sven Eckelmann | ee3b5e9 | 2016-09-30 15:21:06 +0200 | [diff] [blame] | 1072 | case NETDEV_CHANGEUPPER: |
| 1073 | hard_iface->wifi_flags = batadv_wifi_flags_evaluate(net_dev); |
| 1074 | if (batadv_is_wifi_hardif(hard_iface)) |
| 1075 | hard_iface->num_bcasts = BATADV_NUM_BCASTS_WIRELESS; |
| 1076 | break; |
Sven Eckelmann | 36dc621 | 2018-06-01 19:24:23 +0200 | [diff] [blame] | 1077 | case NETDEV_CHANGENAME: |
| 1078 | batadv_debugfs_rename_hardif(hard_iface); |
| 1079 | break; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 1080 | default: |
| 1081 | break; |
Joe Perches | f81c622 | 2011-06-03 11:51:19 +0000 | [diff] [blame] | 1082 | } |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 1083 | |
| 1084 | hardif_put: |
Sven Eckelmann | 82047ad | 2016-01-17 11:01:10 +0100 | [diff] [blame] | 1085 | batadv_hardif_put(hard_iface); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 1086 | out: |
Marek Lindner | 32ae9b2 | 2011-04-20 15:40:58 +0200 | [diff] [blame] | 1087 | if (primary_if) |
Sven Eckelmann | 82047ad | 2016-01-17 11:01:10 +0100 | [diff] [blame] | 1088 | batadv_hardif_put(primary_if); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 1089 | return NOTIFY_DONE; |
| 1090 | } |
| 1091 | |
Sven Eckelmann | 9563877 | 2012-05-12 02:09:31 +0200 | [diff] [blame] | 1092 | struct notifier_block batadv_hard_if_notifier = { |
Sven Eckelmann | 18a1cb6 | 2012-05-12 18:33:57 +0200 | [diff] [blame] | 1093 | .notifier_call = batadv_hard_if_event, |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 1094 | }; |