Sven Eckelmann | 7db7d9f | 2017-11-19 15:05:11 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Sven Eckelmann | 68e039f | 2020-01-01 00:00:01 +0100 | [diff] [blame] | 2 | /* Copyright (C) 2011-2020 B.A.T.M.A.N. contributors: |
Linus Luessing | d6f94d9 | 2016-01-16 16:40:09 +0800 | [diff] [blame] | 3 | * |
| 4 | * Linus Lüssing, Marek Lindner |
Linus Luessing | d6f94d9 | 2016-01-16 16:40:09 +0800 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | #include "bat_v_elp.h" |
| 8 | #include "main.h" |
| 9 | |
| 10 | #include <linux/atomic.h> |
Sven Eckelmann | d6289088 | 2017-06-09 17:06:51 +0200 | [diff] [blame] | 11 | #include <linux/bitops.h> |
Linus Luessing | d6f94d9 | 2016-01-16 16:40:09 +0800 | [diff] [blame] | 12 | #include <linux/byteorder/generic.h> |
| 13 | #include <linux/errno.h> |
| 14 | #include <linux/etherdevice.h> |
Antonio Quartulli | c833484 | 2015-11-10 18:50:51 +0100 | [diff] [blame] | 15 | #include <linux/ethtool.h> |
Sven Eckelmann | b92b94a | 2017-11-19 17:12:02 +0100 | [diff] [blame] | 16 | #include <linux/gfp.h> |
Linus Luessing | d6f94d9 | 2016-01-16 16:40:09 +0800 | [diff] [blame] | 17 | #include <linux/if_ether.h> |
| 18 | #include <linux/jiffies.h> |
| 19 | #include <linux/kernel.h> |
Antonio Quartulli | c833484 | 2015-11-10 18:50:51 +0100 | [diff] [blame] | 20 | #include <linux/kref.h> |
Linus Luessing | d6f94d9 | 2016-01-16 16:40:09 +0800 | [diff] [blame] | 21 | #include <linux/netdevice.h> |
Sven Eckelmann | d6289088 | 2017-06-09 17:06:51 +0200 | [diff] [blame] | 22 | #include <linux/nl80211.h> |
Sven Eckelmann | 0093870 | 2020-08-17 08:09:48 +0200 | [diff] [blame] | 23 | #include <linux/prandom.h> |
Linus Luessing | d6f94d9 | 2016-01-16 16:40:09 +0800 | [diff] [blame] | 24 | #include <linux/random.h> |
| 25 | #include <linux/rculist.h> |
| 26 | #include <linux/rcupdate.h> |
Antonio Quartulli | c833484 | 2015-11-10 18:50:51 +0100 | [diff] [blame] | 27 | #include <linux/rtnetlink.h> |
Linus Luessing | d6f94d9 | 2016-01-16 16:40:09 +0800 | [diff] [blame] | 28 | #include <linux/skbuff.h> |
| 29 | #include <linux/stddef.h> |
| 30 | #include <linux/string.h> |
| 31 | #include <linux/types.h> |
| 32 | #include <linux/workqueue.h> |
Antonio Quartulli | c833484 | 2015-11-10 18:50:51 +0100 | [diff] [blame] | 33 | #include <net/cfg80211.h> |
Sven Eckelmann | fec149f | 2017-12-21 10:17:41 +0100 | [diff] [blame] | 34 | #include <uapi/linux/batadv_packet.h> |
Linus Luessing | d6f94d9 | 2016-01-16 16:40:09 +0800 | [diff] [blame] | 35 | |
| 36 | #include "bat_algo.h" |
Antonio Quartulli | 9323158 | 2016-01-16 16:40:13 +0800 | [diff] [blame] | 37 | #include "bat_v_ogm.h" |
Linus Luessing | d6f94d9 | 2016-01-16 16:40:09 +0800 | [diff] [blame] | 38 | #include "hard-interface.h" |
Sven Eckelmann | ba41208 | 2016-05-15 23:48:31 +0200 | [diff] [blame] | 39 | #include "log.h" |
Linus Luessing | 162bd64 | 2016-01-16 16:40:10 +0800 | [diff] [blame] | 40 | #include "originator.h" |
Linus Luessing | 162bd64 | 2016-01-16 16:40:10 +0800 | [diff] [blame] | 41 | #include "routing.h" |
Linus Luessing | d6f94d9 | 2016-01-16 16:40:09 +0800 | [diff] [blame] | 42 | #include "send.h" |
| 43 | |
| 44 | /** |
Sven Eckelmann | 7e9a8c2 | 2017-12-02 19:51:47 +0100 | [diff] [blame] | 45 | * batadv_v_elp_start_timer() - restart timer for ELP periodic work |
Linus Luessing | d6f94d9 | 2016-01-16 16:40:09 +0800 | [diff] [blame] | 46 | * @hard_iface: the interface for which the timer has to be reset |
| 47 | */ |
| 48 | static void batadv_v_elp_start_timer(struct batadv_hard_iface *hard_iface) |
| 49 | { |
| 50 | unsigned int msecs; |
| 51 | |
| 52 | msecs = atomic_read(&hard_iface->bat_v.elp_interval) - BATADV_JITTER; |
Sven Eckelmann | 26893e7 | 2020-04-13 21:23:29 +0200 | [diff] [blame] | 53 | msecs += prandom_u32_max(2 * BATADV_JITTER); |
Linus Luessing | d6f94d9 | 2016-01-16 16:40:09 +0800 | [diff] [blame] | 54 | |
| 55 | queue_delayed_work(batadv_event_workqueue, &hard_iface->bat_v.elp_wq, |
| 56 | msecs_to_jiffies(msecs)); |
| 57 | } |
| 58 | |
| 59 | /** |
Sven Eckelmann | 7e9a8c2 | 2017-12-02 19:51:47 +0100 | [diff] [blame] | 60 | * batadv_v_elp_get_throughput() - get the throughput towards a neighbour |
Antonio Quartulli | c833484 | 2015-11-10 18:50:51 +0100 | [diff] [blame] | 61 | * @neigh: the neighbour for which the throughput has to be obtained |
| 62 | * |
| 63 | * Return: The throughput towards the given neighbour in multiples of 100kpbs |
Sven Eckelmann | bccb48c | 2020-06-01 20:13:21 +0200 | [diff] [blame] | 64 | * (a value of '1' equals 0.1Mbps, '10' equals 1Mbps, etc). |
Antonio Quartulli | c833484 | 2015-11-10 18:50:51 +0100 | [diff] [blame] | 65 | */ |
| 66 | static u32 batadv_v_elp_get_throughput(struct batadv_hardif_neigh_node *neigh) |
| 67 | { |
| 68 | struct batadv_hard_iface *hard_iface = neigh->if_incoming; |
| 69 | struct ethtool_link_ksettings link_settings; |
Marek Lindner | 1942de1 | 2016-09-30 15:21:05 +0200 | [diff] [blame] | 70 | struct net_device *real_netdev; |
Antonio Quartulli | c833484 | 2015-11-10 18:50:51 +0100 | [diff] [blame] | 71 | struct station_info sinfo; |
| 72 | u32 throughput; |
| 73 | int ret; |
| 74 | |
| 75 | /* if the user specified a customised value for this interface, then |
| 76 | * return it directly |
| 77 | */ |
| 78 | throughput = atomic_read(&hard_iface->bat_v.throughput_override); |
| 79 | if (throughput != 0) |
| 80 | return throughput; |
| 81 | |
| 82 | /* if this is a wireless device, then ask its throughput through |
| 83 | * cfg80211 API |
| 84 | */ |
Sven Eckelmann | 10b1bbb | 2016-09-30 15:21:03 +0200 | [diff] [blame] | 85 | if (batadv_is_wifi_hardif(hard_iface)) { |
| 86 | if (!batadv_is_cfg80211_hardif(hard_iface)) |
Marek Lindner | f44a3ae | 2016-09-30 15:21:02 +0200 | [diff] [blame] | 87 | /* unsupported WiFi driver version */ |
| 88 | goto default_throughput; |
Antonio Quartulli | c833484 | 2015-11-10 18:50:51 +0100 | [diff] [blame] | 89 | |
Marek Lindner | 1942de1 | 2016-09-30 15:21:05 +0200 | [diff] [blame] | 90 | real_netdev = batadv_get_real_netdev(hard_iface->net_dev); |
| 91 | if (!real_netdev) |
| 92 | goto default_throughput; |
| 93 | |
| 94 | ret = cfg80211_get_station(real_netdev, neigh->addr, &sinfo); |
| 95 | |
Anders Roxell | ca8c3b9 | 2019-02-22 16:25:54 +0100 | [diff] [blame] | 96 | if (!ret) { |
| 97 | /* free the TID stats immediately */ |
| 98 | cfg80211_sinfo_release_content(&sinfo); |
| 99 | } |
Felix Fietkau | 7d65266 | 2019-01-25 08:21:26 +0100 | [diff] [blame] | 100 | |
Marek Lindner | 1942de1 | 2016-09-30 15:21:05 +0200 | [diff] [blame] | 101 | dev_put(real_netdev); |
Marek Lindner | f44a3ae | 2016-09-30 15:21:02 +0200 | [diff] [blame] | 102 | if (ret == -ENOENT) { |
| 103 | /* Node is not associated anymore! It would be |
| 104 | * possible to delete this neighbor. For now set |
| 105 | * the throughput metric to 0. |
| 106 | */ |
| 107 | return 0; |
| 108 | } |
Sven Eckelmann | 3f3f873 | 2017-06-09 17:06:50 +0200 | [diff] [blame] | 109 | if (ret) |
| 110 | goto default_throughput; |
| 111 | |
René Treffer | 2b1aa5a | 2019-11-26 10:27:38 +0800 | [diff] [blame] | 112 | if (sinfo.filled & BIT(NL80211_STA_INFO_EXPECTED_THROUGHPUT)) |
| 113 | return sinfo.expected_throughput / 100; |
| 114 | |
| 115 | /* try to estimate the expected throughput based on reported tx |
| 116 | * rates |
| 117 | */ |
| 118 | if (sinfo.filled & BIT(NL80211_STA_INFO_TX_BITRATE)) |
| 119 | return cfg80211_calculate_bitrate(&sinfo.txrate) / 3; |
| 120 | |
| 121 | goto default_throughput; |
Antonio Quartulli | c833484 | 2015-11-10 18:50:51 +0100 | [diff] [blame] | 122 | } |
| 123 | |
| 124 | /* if not a wifi interface, check if this device provides data via |
| 125 | * ethtool (e.g. an Ethernet adapter) |
| 126 | */ |
| 127 | memset(&link_settings, 0, sizeof(link_settings)); |
| 128 | rtnl_lock(); |
| 129 | ret = __ethtool_get_link_ksettings(hard_iface->net_dev, &link_settings); |
| 130 | rtnl_unlock(); |
Sven Eckelmann | 9ad346c | 2019-11-25 10:46:50 +0100 | [diff] [blame] | 131 | if (ret == 0) { |
Antonio Quartulli | c833484 | 2015-11-10 18:50:51 +0100 | [diff] [blame] | 132 | /* link characteristics might change over time */ |
| 133 | if (link_settings.base.duplex == DUPLEX_FULL) |
| 134 | hard_iface->bat_v.flags |= BATADV_FULL_DUPLEX; |
| 135 | else |
| 136 | hard_iface->bat_v.flags &= ~BATADV_FULL_DUPLEX; |
| 137 | |
| 138 | throughput = link_settings.base.speed; |
Sven Eckelmann | 825ffe1 | 2017-08-23 21:52:13 +0200 | [diff] [blame] | 139 | if (throughput && throughput != SPEED_UNKNOWN) |
Antonio Quartulli | c833484 | 2015-11-10 18:50:51 +0100 | [diff] [blame] | 140 | return throughput * 10; |
| 141 | } |
| 142 | |
| 143 | default_throughput: |
| 144 | if (!(hard_iface->bat_v.flags & BATADV_WARNING_DEFAULT)) { |
| 145 | batadv_info(hard_iface->soft_iface, |
| 146 | "WiFi driver or ethtool info does not provide information about link speeds on interface %s, therefore defaulting to hardcoded throughput values of %u.%1u Mbps. Consider overriding the throughput manually or checking your driver.\n", |
| 147 | hard_iface->net_dev->name, |
| 148 | BATADV_THROUGHPUT_DEFAULT_VALUE / 10, |
| 149 | BATADV_THROUGHPUT_DEFAULT_VALUE % 10); |
| 150 | hard_iface->bat_v.flags |= BATADV_WARNING_DEFAULT; |
| 151 | } |
| 152 | |
| 153 | /* if none of the above cases apply, return the base_throughput */ |
| 154 | return BATADV_THROUGHPUT_DEFAULT_VALUE; |
| 155 | } |
| 156 | |
| 157 | /** |
Sven Eckelmann | 7e9a8c2 | 2017-12-02 19:51:47 +0100 | [diff] [blame] | 158 | * batadv_v_elp_throughput_metric_update() - worker updating the throughput |
| 159 | * metric of a single hop neighbour |
Antonio Quartulli | c833484 | 2015-11-10 18:50:51 +0100 | [diff] [blame] | 160 | * @work: the work queue item |
| 161 | */ |
| 162 | void batadv_v_elp_throughput_metric_update(struct work_struct *work) |
| 163 | { |
| 164 | struct batadv_hardif_neigh_node_bat_v *neigh_bat_v; |
| 165 | struct batadv_hardif_neigh_node *neigh; |
| 166 | |
| 167 | neigh_bat_v = container_of(work, struct batadv_hardif_neigh_node_bat_v, |
| 168 | metric_work); |
| 169 | neigh = container_of(neigh_bat_v, struct batadv_hardif_neigh_node, |
| 170 | bat_v); |
| 171 | |
| 172 | ewma_throughput_add(&neigh->bat_v.throughput, |
| 173 | batadv_v_elp_get_throughput(neigh)); |
| 174 | |
| 175 | /* decrement refcounter to balance increment performed before scheduling |
| 176 | * this task |
| 177 | */ |
| 178 | batadv_hardif_neigh_put(neigh); |
| 179 | } |
| 180 | |
| 181 | /** |
Sven Eckelmann | 7e9a8c2 | 2017-12-02 19:51:47 +0100 | [diff] [blame] | 182 | * batadv_v_elp_wifi_neigh_probe() - send link probing packets to a neighbour |
Antonio Quartulli | 8d2d499 | 2015-11-10 18:51:22 +0100 | [diff] [blame] | 183 | * @neigh: the neighbour to probe |
| 184 | * |
| 185 | * Sends a predefined number of unicast wifi packets to a given neighbour in |
| 186 | * order to trigger the throughput estimation on this link by the RC algorithm. |
Sven Eckelmann | bccb48c | 2020-06-01 20:13:21 +0200 | [diff] [blame] | 187 | * Packets are sent only if there is not enough payload unicast traffic towards |
| 188 | * this neighbour.. |
Antonio Quartulli | 8d2d499 | 2015-11-10 18:51:22 +0100 | [diff] [blame] | 189 | * |
| 190 | * Return: True on success and false in case of error during skb preparation. |
| 191 | */ |
| 192 | static bool |
| 193 | batadv_v_elp_wifi_neigh_probe(struct batadv_hardif_neigh_node *neigh) |
| 194 | { |
| 195 | struct batadv_hard_iface *hard_iface = neigh->if_incoming; |
| 196 | struct batadv_priv *bat_priv = netdev_priv(hard_iface->soft_iface); |
| 197 | unsigned long last_tx_diff; |
| 198 | struct sk_buff *skb; |
| 199 | int probe_len, i; |
| 200 | int elp_skb_len; |
| 201 | |
| 202 | /* this probing routine is for Wifi neighbours only */ |
Sven Eckelmann | 10b1bbb | 2016-09-30 15:21:03 +0200 | [diff] [blame] | 203 | if (!batadv_is_wifi_hardif(hard_iface)) |
Antonio Quartulli | 8d2d499 | 2015-11-10 18:51:22 +0100 | [diff] [blame] | 204 | return true; |
| 205 | |
| 206 | /* probe the neighbor only if no unicast packets have been sent |
| 207 | * to it in the last 100 milliseconds: this is the rate control |
| 208 | * algorithm sampling interval (minstrel). In this way, if not |
| 209 | * enough traffic has been sent to the neighbor, batman-adv can |
| 210 | * generate 2 probe packets and push the RC algorithm to perform |
| 211 | * the sampling |
| 212 | */ |
| 213 | last_tx_diff = jiffies_to_msecs(jiffies - neigh->bat_v.last_unicast_tx); |
| 214 | if (last_tx_diff <= BATADV_ELP_PROBE_MAX_TX_DIFF) |
| 215 | return true; |
| 216 | |
| 217 | probe_len = max_t(int, sizeof(struct batadv_elp_packet), |
| 218 | BATADV_ELP_MIN_PROBE_SIZE); |
| 219 | |
| 220 | for (i = 0; i < BATADV_ELP_PROBES_PER_NODE; i++) { |
| 221 | elp_skb_len = hard_iface->bat_v.elp_skb->len; |
| 222 | skb = skb_copy_expand(hard_iface->bat_v.elp_skb, 0, |
| 223 | probe_len - elp_skb_len, |
| 224 | GFP_ATOMIC); |
| 225 | if (!skb) |
| 226 | return false; |
| 227 | |
| 228 | /* Tell the skb to get as big as the allocated space (we want |
| 229 | * the packet to be exactly of that size to make the link |
| 230 | * throughput estimation effective. |
| 231 | */ |
Sven Eckelmann | 88d0895 | 2018-08-31 15:08:44 +0200 | [diff] [blame] | 232 | skb_put_zero(skb, probe_len - hard_iface->bat_v.elp_skb->len); |
Antonio Quartulli | 8d2d499 | 2015-11-10 18:51:22 +0100 | [diff] [blame] | 233 | |
| 234 | batadv_dbg(BATADV_DBG_BATMAN, bat_priv, |
| 235 | "Sending unicast (probe) ELP packet on interface %s to %pM\n", |
| 236 | hard_iface->net_dev->name, neigh->addr); |
| 237 | |
| 238 | batadv_send_skb_packet(skb, hard_iface, neigh->addr); |
| 239 | } |
| 240 | |
| 241 | return true; |
| 242 | } |
| 243 | |
| 244 | /** |
Sven Eckelmann | 7e9a8c2 | 2017-12-02 19:51:47 +0100 | [diff] [blame] | 245 | * batadv_v_elp_periodic_work() - ELP periodic task per interface |
Linus Luessing | d6f94d9 | 2016-01-16 16:40:09 +0800 | [diff] [blame] | 246 | * @work: work queue item |
| 247 | * |
Sven Eckelmann | bccb48c | 2020-06-01 20:13:21 +0200 | [diff] [blame] | 248 | * Emits broadcast ELP messages in regular intervals. |
Linus Luessing | d6f94d9 | 2016-01-16 16:40:09 +0800 | [diff] [blame] | 249 | */ |
| 250 | static void batadv_v_elp_periodic_work(struct work_struct *work) |
| 251 | { |
Antonio Quartulli | c833484 | 2015-11-10 18:50:51 +0100 | [diff] [blame] | 252 | struct batadv_hardif_neigh_node *hardif_neigh; |
Linus Luessing | d6f94d9 | 2016-01-16 16:40:09 +0800 | [diff] [blame] | 253 | struct batadv_hard_iface *hard_iface; |
| 254 | struct batadv_hard_iface_bat_v *bat_v; |
| 255 | struct batadv_elp_packet *elp_packet; |
| 256 | struct batadv_priv *bat_priv; |
| 257 | struct sk_buff *skb; |
| 258 | u32 elp_interval; |
Marek Lindner | 4c4af69 | 2018-09-07 05:45:55 +0800 | [diff] [blame] | 259 | bool ret; |
Linus Luessing | d6f94d9 | 2016-01-16 16:40:09 +0800 | [diff] [blame] | 260 | |
| 261 | bat_v = container_of(work, struct batadv_hard_iface_bat_v, elp_wq.work); |
| 262 | hard_iface = container_of(bat_v, struct batadv_hard_iface, bat_v); |
| 263 | bat_priv = netdev_priv(hard_iface->soft_iface); |
| 264 | |
| 265 | if (atomic_read(&bat_priv->mesh_state) == BATADV_MESH_DEACTIVATING) |
| 266 | goto out; |
| 267 | |
| 268 | /* we are in the process of shutting this interface down */ |
Sven Eckelmann | 825ffe1 | 2017-08-23 21:52:13 +0200 | [diff] [blame] | 269 | if (hard_iface->if_status == BATADV_IF_NOT_IN_USE || |
| 270 | hard_iface->if_status == BATADV_IF_TO_BE_REMOVED) |
Linus Luessing | d6f94d9 | 2016-01-16 16:40:09 +0800 | [diff] [blame] | 271 | goto out; |
| 272 | |
| 273 | /* the interface was enabled but may not be ready yet */ |
| 274 | if (hard_iface->if_status != BATADV_IF_ACTIVE) |
| 275 | goto restart_timer; |
| 276 | |
| 277 | skb = skb_copy(hard_iface->bat_v.elp_skb, GFP_ATOMIC); |
| 278 | if (!skb) |
| 279 | goto restart_timer; |
| 280 | |
| 281 | elp_packet = (struct batadv_elp_packet *)skb->data; |
| 282 | elp_packet->seqno = htonl(atomic_read(&hard_iface->bat_v.elp_seqno)); |
| 283 | elp_interval = atomic_read(&hard_iface->bat_v.elp_interval); |
| 284 | elp_packet->elp_interval = htonl(elp_interval); |
| 285 | |
| 286 | batadv_dbg(BATADV_DBG_BATMAN, bat_priv, |
| 287 | "Sending broadcast ELP packet on interface %s, seqno %u\n", |
| 288 | hard_iface->net_dev->name, |
| 289 | atomic_read(&hard_iface->bat_v.elp_seqno)); |
| 290 | |
Antonio Quartulli | 95d3927 | 2016-01-16 16:40:15 +0800 | [diff] [blame] | 291 | batadv_send_broadcast_skb(skb, hard_iface); |
Linus Luessing | d6f94d9 | 2016-01-16 16:40:09 +0800 | [diff] [blame] | 292 | |
| 293 | atomic_inc(&hard_iface->bat_v.elp_seqno); |
| 294 | |
Antonio Quartulli | c833484 | 2015-11-10 18:50:51 +0100 | [diff] [blame] | 295 | /* The throughput metric is updated on each sent packet. This way, if a |
| 296 | * node is dead and no longer sends packets, batman-adv is still able to |
| 297 | * react timely to its death. |
| 298 | * |
| 299 | * The throughput metric is updated by following these steps: |
| 300 | * 1) if the hard_iface is wifi => send a number of unicast ELPs for |
| 301 | * probing/sampling to each neighbor |
| 302 | * 2) update the throughput metric value of each neighbor (note that the |
| 303 | * value retrieved in this step might be 100ms old because the |
| 304 | * probing packets at point 1) could still be in the HW queue) |
| 305 | */ |
| 306 | rcu_read_lock(); |
| 307 | hlist_for_each_entry_rcu(hardif_neigh, &hard_iface->neigh_list, list) { |
Antonio Quartulli | 8d2d499 | 2015-11-10 18:51:22 +0100 | [diff] [blame] | 308 | if (!batadv_v_elp_wifi_neigh_probe(hardif_neigh)) |
| 309 | /* if something goes wrong while probing, better to stop |
| 310 | * sending packets immediately and reschedule the task |
| 311 | */ |
| 312 | break; |
| 313 | |
Antonio Quartulli | c833484 | 2015-11-10 18:50:51 +0100 | [diff] [blame] | 314 | if (!kref_get_unless_zero(&hardif_neigh->refcount)) |
| 315 | continue; |
| 316 | |
| 317 | /* Reading the estimated throughput from cfg80211 is a task that |
| 318 | * may sleep and that is not allowed in an rcu protected |
| 319 | * context. Therefore schedule a task for that. |
| 320 | */ |
Marek Lindner | 4c4af69 | 2018-09-07 05:45:55 +0800 | [diff] [blame] | 321 | ret = queue_work(batadv_event_workqueue, |
| 322 | &hardif_neigh->bat_v.metric_work); |
| 323 | |
| 324 | if (!ret) |
| 325 | batadv_hardif_neigh_put(hardif_neigh); |
Antonio Quartulli | c833484 | 2015-11-10 18:50:51 +0100 | [diff] [blame] | 326 | } |
| 327 | rcu_read_unlock(); |
| 328 | |
Linus Luessing | d6f94d9 | 2016-01-16 16:40:09 +0800 | [diff] [blame] | 329 | restart_timer: |
| 330 | batadv_v_elp_start_timer(hard_iface); |
| 331 | out: |
| 332 | return; |
| 333 | } |
| 334 | |
| 335 | /** |
Sven Eckelmann | 7e9a8c2 | 2017-12-02 19:51:47 +0100 | [diff] [blame] | 336 | * batadv_v_elp_iface_enable() - setup the ELP interface private resources |
Linus Luessing | d6f94d9 | 2016-01-16 16:40:09 +0800 | [diff] [blame] | 337 | * @hard_iface: interface for which the data has to be prepared |
| 338 | * |
| 339 | * Return: 0 on success or a -ENOMEM in case of failure. |
| 340 | */ |
| 341 | int batadv_v_elp_iface_enable(struct batadv_hard_iface *hard_iface) |
| 342 | { |
Sven Eckelmann | f4156f9 | 2018-10-30 12:17:10 +0100 | [diff] [blame] | 343 | static const size_t tvlv_padding = sizeof(__be32); |
Linus Luessing | d6f94d9 | 2016-01-16 16:40:09 +0800 | [diff] [blame] | 344 | struct batadv_elp_packet *elp_packet; |
| 345 | unsigned char *elp_buff; |
| 346 | u32 random_seqno; |
| 347 | size_t size; |
| 348 | int res = -ENOMEM; |
| 349 | |
Sven Eckelmann | f4156f9 | 2018-10-30 12:17:10 +0100 | [diff] [blame] | 350 | size = ETH_HLEN + NET_IP_ALIGN + BATADV_ELP_HLEN + tvlv_padding; |
Linus Luessing | d6f94d9 | 2016-01-16 16:40:09 +0800 | [diff] [blame] | 351 | hard_iface->bat_v.elp_skb = dev_alloc_skb(size); |
| 352 | if (!hard_iface->bat_v.elp_skb) |
| 353 | goto out; |
| 354 | |
| 355 | skb_reserve(hard_iface->bat_v.elp_skb, ETH_HLEN + NET_IP_ALIGN); |
Sven Eckelmann | f4156f9 | 2018-10-30 12:17:10 +0100 | [diff] [blame] | 356 | elp_buff = skb_put_zero(hard_iface->bat_v.elp_skb, |
| 357 | BATADV_ELP_HLEN + tvlv_padding); |
Linus Luessing | d6f94d9 | 2016-01-16 16:40:09 +0800 | [diff] [blame] | 358 | elp_packet = (struct batadv_elp_packet *)elp_buff; |
Linus Luessing | d6f94d9 | 2016-01-16 16:40:09 +0800 | [diff] [blame] | 359 | |
| 360 | elp_packet->packet_type = BATADV_ELP; |
| 361 | elp_packet->version = BATADV_COMPAT_VERSION; |
| 362 | |
| 363 | /* randomize initial seqno to avoid collision */ |
| 364 | get_random_bytes(&random_seqno, sizeof(random_seqno)); |
| 365 | atomic_set(&hard_iface->bat_v.elp_seqno, random_seqno); |
Linus Luessing | d6f94d9 | 2016-01-16 16:40:09 +0800 | [diff] [blame] | 366 | |
Antonio Quartulli | c833484 | 2015-11-10 18:50:51 +0100 | [diff] [blame] | 367 | /* assume full-duplex by default */ |
| 368 | hard_iface->bat_v.flags |= BATADV_FULL_DUPLEX; |
| 369 | |
| 370 | /* warn the user (again) if there is no throughput data is available */ |
| 371 | hard_iface->bat_v.flags &= ~BATADV_WARNING_DEFAULT; |
| 372 | |
Sven Eckelmann | 10b1bbb | 2016-09-30 15:21:03 +0200 | [diff] [blame] | 373 | if (batadv_is_wifi_hardif(hard_iface)) |
Antonio Quartulli | c833484 | 2015-11-10 18:50:51 +0100 | [diff] [blame] | 374 | hard_iface->bat_v.flags &= ~BATADV_FULL_DUPLEX; |
| 375 | |
Linus Luessing | d6f94d9 | 2016-01-16 16:40:09 +0800 | [diff] [blame] | 376 | INIT_DELAYED_WORK(&hard_iface->bat_v.elp_wq, |
| 377 | batadv_v_elp_periodic_work); |
| 378 | batadv_v_elp_start_timer(hard_iface); |
| 379 | res = 0; |
| 380 | |
| 381 | out: |
| 382 | return res; |
| 383 | } |
| 384 | |
| 385 | /** |
Sven Eckelmann | 7e9a8c2 | 2017-12-02 19:51:47 +0100 | [diff] [blame] | 386 | * batadv_v_elp_iface_disable() - release ELP interface private resources |
Linus Luessing | d6f94d9 | 2016-01-16 16:40:09 +0800 | [diff] [blame] | 387 | * @hard_iface: interface for which the resources have to be released |
| 388 | */ |
| 389 | void batadv_v_elp_iface_disable(struct batadv_hard_iface *hard_iface) |
| 390 | { |
| 391 | cancel_delayed_work_sync(&hard_iface->bat_v.elp_wq); |
| 392 | |
| 393 | dev_kfree_skb(hard_iface->bat_v.elp_skb); |
| 394 | hard_iface->bat_v.elp_skb = NULL; |
| 395 | } |
| 396 | |
| 397 | /** |
Sven Eckelmann | 7e9a8c2 | 2017-12-02 19:51:47 +0100 | [diff] [blame] | 398 | * batadv_v_elp_iface_activate() - update the ELP buffer belonging to the given |
Marek Lindner | ebe24ce | 2016-05-07 19:54:17 +0800 | [diff] [blame] | 399 | * hard-interface |
| 400 | * @primary_iface: the new primary interface |
| 401 | * @hard_iface: interface holding the to-be-updated buffer |
| 402 | */ |
| 403 | void batadv_v_elp_iface_activate(struct batadv_hard_iface *primary_iface, |
| 404 | struct batadv_hard_iface *hard_iface) |
| 405 | { |
| 406 | struct batadv_elp_packet *elp_packet; |
| 407 | struct sk_buff *skb; |
| 408 | |
| 409 | if (!hard_iface->bat_v.elp_skb) |
| 410 | return; |
| 411 | |
| 412 | skb = hard_iface->bat_v.elp_skb; |
| 413 | elp_packet = (struct batadv_elp_packet *)skb->data; |
| 414 | ether_addr_copy(elp_packet->orig, |
| 415 | primary_iface->net_dev->dev_addr); |
| 416 | } |
| 417 | |
| 418 | /** |
Sven Eckelmann | 7e9a8c2 | 2017-12-02 19:51:47 +0100 | [diff] [blame] | 419 | * batadv_v_elp_primary_iface_set() - change internal data to reflect the new |
Linus Luessing | d6f94d9 | 2016-01-16 16:40:09 +0800 | [diff] [blame] | 420 | * primary interface |
| 421 | * @primary_iface: the new primary interface |
| 422 | */ |
| 423 | void batadv_v_elp_primary_iface_set(struct batadv_hard_iface *primary_iface) |
| 424 | { |
| 425 | struct batadv_hard_iface *hard_iface; |
Linus Luessing | d6f94d9 | 2016-01-16 16:40:09 +0800 | [diff] [blame] | 426 | |
| 427 | /* update orig field of every elp iface belonging to this mesh */ |
| 428 | rcu_read_lock(); |
| 429 | list_for_each_entry_rcu(hard_iface, &batadv_hardif_list, list) { |
| 430 | if (primary_iface->soft_iface != hard_iface->soft_iface) |
| 431 | continue; |
| 432 | |
Marek Lindner | ebe24ce | 2016-05-07 19:54:17 +0800 | [diff] [blame] | 433 | batadv_v_elp_iface_activate(primary_iface, hard_iface); |
Linus Luessing | d6f94d9 | 2016-01-16 16:40:09 +0800 | [diff] [blame] | 434 | } |
| 435 | rcu_read_unlock(); |
| 436 | } |
Linus Luessing | 162bd64 | 2016-01-16 16:40:10 +0800 | [diff] [blame] | 437 | |
| 438 | /** |
Sven Eckelmann | 7e9a8c2 | 2017-12-02 19:51:47 +0100 | [diff] [blame] | 439 | * batadv_v_elp_neigh_update() - update an ELP neighbour node |
Linus Luessing | 162bd64 | 2016-01-16 16:40:10 +0800 | [diff] [blame] | 440 | * @bat_priv: the bat priv with all the soft interface information |
| 441 | * @neigh_addr: the neighbour interface address |
| 442 | * @if_incoming: the interface the packet was received through |
| 443 | * @elp_packet: the received ELP packet |
| 444 | * |
| 445 | * Updates the ELP neighbour node state with the data received within the new |
| 446 | * ELP packet. |
| 447 | */ |
| 448 | static void batadv_v_elp_neigh_update(struct batadv_priv *bat_priv, |
| 449 | u8 *neigh_addr, |
| 450 | struct batadv_hard_iface *if_incoming, |
| 451 | struct batadv_elp_packet *elp_packet) |
| 452 | |
| 453 | { |
| 454 | struct batadv_neigh_node *neigh; |
| 455 | struct batadv_orig_node *orig_neigh; |
| 456 | struct batadv_hardif_neigh_node *hardif_neigh; |
| 457 | s32 seqno_diff; |
| 458 | s32 elp_latest_seqno; |
| 459 | |
| 460 | orig_neigh = batadv_v_ogm_orig_get(bat_priv, elp_packet->orig); |
| 461 | if (!orig_neigh) |
| 462 | return; |
| 463 | |
Marek Lindner | 6f0a6b5 | 2016-05-03 01:52:08 +0800 | [diff] [blame] | 464 | neigh = batadv_neigh_node_get_or_create(orig_neigh, |
| 465 | if_incoming, neigh_addr); |
Linus Luessing | 162bd64 | 2016-01-16 16:40:10 +0800 | [diff] [blame] | 466 | if (!neigh) |
| 467 | goto orig_free; |
| 468 | |
| 469 | hardif_neigh = batadv_hardif_neigh_get(if_incoming, neigh_addr); |
| 470 | if (!hardif_neigh) |
| 471 | goto neigh_free; |
| 472 | |
| 473 | elp_latest_seqno = hardif_neigh->bat_v.elp_latest_seqno; |
| 474 | seqno_diff = ntohl(elp_packet->seqno) - elp_latest_seqno; |
| 475 | |
| 476 | /* known or older sequence numbers are ignored. However always adopt |
| 477 | * if the router seems to have been restarted. |
| 478 | */ |
| 479 | if (seqno_diff < 1 && seqno_diff > -BATADV_ELP_MAX_AGE) |
| 480 | goto hardif_free; |
| 481 | |
| 482 | neigh->last_seen = jiffies; |
| 483 | hardif_neigh->last_seen = jiffies; |
| 484 | hardif_neigh->bat_v.elp_latest_seqno = ntohl(elp_packet->seqno); |
| 485 | hardif_neigh->bat_v.elp_interval = ntohl(elp_packet->elp_interval); |
| 486 | |
| 487 | hardif_free: |
| 488 | if (hardif_neigh) |
| 489 | batadv_hardif_neigh_put(hardif_neigh); |
| 490 | neigh_free: |
| 491 | if (neigh) |
| 492 | batadv_neigh_node_put(neigh); |
| 493 | orig_free: |
| 494 | if (orig_neigh) |
| 495 | batadv_orig_node_put(orig_neigh); |
| 496 | } |
| 497 | |
| 498 | /** |
Sven Eckelmann | 7e9a8c2 | 2017-12-02 19:51:47 +0100 | [diff] [blame] | 499 | * batadv_v_elp_packet_recv() - main ELP packet handler |
Linus Luessing | 162bd64 | 2016-01-16 16:40:10 +0800 | [diff] [blame] | 500 | * @skb: the received packet |
| 501 | * @if_incoming: the interface this packet was received through |
| 502 | * |
Sven Eckelmann | bccb48c | 2020-06-01 20:13:21 +0200 | [diff] [blame] | 503 | * Return: NET_RX_SUCCESS and consumes the skb if the packet was properly |
Linus Luessing | 162bd64 | 2016-01-16 16:40:10 +0800 | [diff] [blame] | 504 | * processed or NET_RX_DROP in case of failure. |
| 505 | */ |
| 506 | int batadv_v_elp_packet_recv(struct sk_buff *skb, |
| 507 | struct batadv_hard_iface *if_incoming) |
| 508 | { |
| 509 | struct batadv_priv *bat_priv = netdev_priv(if_incoming->soft_iface); |
| 510 | struct batadv_elp_packet *elp_packet; |
| 511 | struct batadv_hard_iface *primary_if; |
| 512 | struct ethhdr *ethhdr = (struct ethhdr *)skb_mac_header(skb); |
Sven Eckelmann | b91a254 | 2016-07-17 21:04:04 +0200 | [diff] [blame] | 513 | bool res; |
| 514 | int ret = NET_RX_DROP; |
Linus Luessing | 162bd64 | 2016-01-16 16:40:10 +0800 | [diff] [blame] | 515 | |
Sven Eckelmann | b91a254 | 2016-07-17 21:04:04 +0200 | [diff] [blame] | 516 | res = batadv_check_management_packet(skb, if_incoming, BATADV_ELP_HLEN); |
| 517 | if (!res) |
| 518 | goto free_skb; |
Linus Luessing | 162bd64 | 2016-01-16 16:40:10 +0800 | [diff] [blame] | 519 | |
| 520 | if (batadv_is_my_mac(bat_priv, ethhdr->h_source)) |
Sven Eckelmann | b91a254 | 2016-07-17 21:04:04 +0200 | [diff] [blame] | 521 | goto free_skb; |
Linus Luessing | 162bd64 | 2016-01-16 16:40:10 +0800 | [diff] [blame] | 522 | |
| 523 | /* did we receive a B.A.T.M.A.N. V ELP packet on an interface |
| 524 | * that does not have B.A.T.M.A.N. V ELP enabled ? |
| 525 | */ |
Antonio Quartulli | 29824a5 | 2016-05-25 23:27:31 +0800 | [diff] [blame] | 526 | if (strcmp(bat_priv->algo_ops->name, "BATMAN_V") != 0) |
Sven Eckelmann | b91a254 | 2016-07-17 21:04:04 +0200 | [diff] [blame] | 527 | goto free_skb; |
Linus Luessing | 162bd64 | 2016-01-16 16:40:10 +0800 | [diff] [blame] | 528 | |
| 529 | elp_packet = (struct batadv_elp_packet *)skb->data; |
| 530 | |
| 531 | batadv_dbg(BATADV_DBG_BATMAN, bat_priv, |
| 532 | "Received ELP packet from %pM seqno %u ORIG: %pM\n", |
| 533 | ethhdr->h_source, ntohl(elp_packet->seqno), |
| 534 | elp_packet->orig); |
| 535 | |
| 536 | primary_if = batadv_primary_if_get_selected(bat_priv); |
| 537 | if (!primary_if) |
Sven Eckelmann | b91a254 | 2016-07-17 21:04:04 +0200 | [diff] [blame] | 538 | goto free_skb; |
Linus Luessing | 162bd64 | 2016-01-16 16:40:10 +0800 | [diff] [blame] | 539 | |
| 540 | batadv_v_elp_neigh_update(bat_priv, ethhdr->h_source, if_incoming, |
| 541 | elp_packet); |
| 542 | |
Sven Eckelmann | b91a254 | 2016-07-17 21:04:04 +0200 | [diff] [blame] | 543 | ret = NET_RX_SUCCESS; |
| 544 | batadv_hardif_put(primary_if); |
| 545 | |
| 546 | free_skb: |
| 547 | if (ret == NET_RX_SUCCESS) |
| 548 | consume_skb(skb); |
| 549 | else |
| 550 | kfree_skb(skb); |
| 551 | |
| 552 | return ret; |
Linus Luessing | 162bd64 | 2016-01-16 16:40:10 +0800 | [diff] [blame] | 553 | } |