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