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