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) 2009-2019 B.A.T.M.A.N. contributors: |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 3 | * |
| 4 | * Marek Lindner |
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 "gateway_client.h" |
Sven Eckelmann | 1e2c2a4 | 2015-04-17 19:40:28 +0200 | [diff] [blame] | 8 | #include "main.h" |
| 9 | |
| 10 | #include <linux/atomic.h> |
| 11 | #include <linux/byteorder/generic.h> |
Sven Eckelmann | d7129da | 2016-07-03 13:31:42 +0200 | [diff] [blame] | 12 | #include <linux/errno.h> |
Sven Eckelmann | 1e2c2a4 | 2015-04-17 19:40:28 +0200 | [diff] [blame] | 13 | #include <linux/etherdevice.h> |
Sven Eckelmann | b92b94a | 2017-11-19 17:12:02 +0100 | [diff] [blame] | 14 | #include <linux/gfp.h> |
Sven Eckelmann | 1e2c2a4 | 2015-04-17 19:40:28 +0200 | [diff] [blame] | 15 | #include <linux/if_ether.h> |
| 16 | #include <linux/if_vlan.h> |
| 17 | #include <linux/in.h> |
| 18 | #include <linux/ip.h> |
| 19 | #include <linux/ipv6.h> |
Sven Eckelmann | 1e2c2a4 | 2015-04-17 19:40:28 +0200 | [diff] [blame] | 20 | #include <linux/kernel.h> |
Sven Eckelmann | e7aed32 | 2016-01-16 10:29:41 +0100 | [diff] [blame] | 21 | #include <linux/kref.h> |
Sven Eckelmann | 1e2c2a4 | 2015-04-17 19:40:28 +0200 | [diff] [blame] | 22 | #include <linux/list.h> |
Sven Eckelmann | dff9bc4 | 2018-08-12 21:04:41 +0200 | [diff] [blame] | 23 | #include <linux/lockdep.h> |
Sven Eckelmann | 1e2c2a4 | 2015-04-17 19:40:28 +0200 | [diff] [blame] | 24 | #include <linux/netdevice.h> |
Sven Eckelmann | d7129da | 2016-07-03 13:31:42 +0200 | [diff] [blame] | 25 | #include <linux/netlink.h> |
Sven Eckelmann | 1e2c2a4 | 2015-04-17 19:40:28 +0200 | [diff] [blame] | 26 | #include <linux/rculist.h> |
| 27 | #include <linux/rcupdate.h> |
| 28 | #include <linux/seq_file.h> |
| 29 | #include <linux/skbuff.h> |
| 30 | #include <linux/slab.h> |
| 31 | #include <linux/spinlock.h> |
| 32 | #include <linux/stddef.h> |
| 33 | #include <linux/udp.h> |
Sven Eckelmann | d7129da | 2016-07-03 13:31:42 +0200 | [diff] [blame] | 34 | #include <net/sock.h> |
Sven Eckelmann | fec149f | 2017-12-21 10:17:41 +0100 | [diff] [blame] | 35 | #include <uapi/linux/batadv_packet.h> |
Sven Eckelmann | d7129da | 2016-07-03 13:31:42 +0200 | [diff] [blame] | 36 | #include <uapi/linux/batman_adv.h> |
Sven Eckelmann | 1e2c2a4 | 2015-04-17 19:40:28 +0200 | [diff] [blame] | 37 | |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 38 | #include "hard-interface.h" |
Sven Eckelmann | ba41208 | 2016-05-15 23:48:31 +0200 | [diff] [blame] | 39 | #include "log.h" |
Sven Eckelmann | d7129da | 2016-07-03 13:31:42 +0200 | [diff] [blame] | 40 | #include "netlink.h" |
Linus Lüssing | 57f0c07 | 2011-03-14 22:43:33 +0000 | [diff] [blame] | 41 | #include "originator.h" |
Antonio Quartulli | 43676ab | 2011-04-26 21:31:45 +0200 | [diff] [blame] | 42 | #include "routing.h" |
Sven Eckelmann | d7129da | 2016-07-03 13:31:42 +0200 | [diff] [blame] | 43 | #include "soft-interface.h" |
Sven Eckelmann | 1e2c2a4 | 2015-04-17 19:40:28 +0200 | [diff] [blame] | 44 | #include "translation-table.h" |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 45 | |
Antonio Quartulli | 6c413b1 | 2013-11-05 19:31:08 +0100 | [diff] [blame] | 46 | /* These are the offsets of the "hw type" and "hw address length" in the dhcp |
| 47 | * packet starting at the beginning of the dhcp header |
Sven Eckelmann | 9cfc7bd | 2012-05-12 02:09:43 +0200 | [diff] [blame] | 48 | */ |
Antonio Quartulli | 6c413b1 | 2013-11-05 19:31:08 +0100 | [diff] [blame] | 49 | #define BATADV_DHCP_HTYPE_OFFSET 1 |
| 50 | #define BATADV_DHCP_HLEN_OFFSET 2 |
| 51 | /* Value of htype representing Ethernet */ |
| 52 | #define BATADV_DHCP_HTYPE_ETHERNET 0x01 |
| 53 | /* This is the offset of the "chaddr" field in the dhcp packet starting at the |
| 54 | * beginning of the dhcp header |
| 55 | */ |
| 56 | #define BATADV_DHCP_CHADDR_OFFSET 28 |
Antonio Quartulli | 43676ab | 2011-04-26 21:31:45 +0200 | [diff] [blame] | 57 | |
Sven Eckelmann | e7aed32 | 2016-01-16 10:29:41 +0100 | [diff] [blame] | 58 | /** |
Sven Eckelmann | 7e9a8c2 | 2017-12-02 19:51:47 +0100 | [diff] [blame] | 59 | * batadv_gw_node_release() - release gw_node from lists and queue for free |
| 60 | * after rcu grace period |
Sven Eckelmann | e7aed32 | 2016-01-16 10:29:41 +0100 | [diff] [blame] | 61 | * @ref: kref pointer of the gw_node |
| 62 | */ |
| 63 | static void batadv_gw_node_release(struct kref *ref) |
| 64 | { |
| 65 | struct batadv_gw_node *gw_node; |
| 66 | |
| 67 | gw_node = container_of(ref, struct batadv_gw_node, refcount); |
| 68 | |
Sven Eckelmann | 5d96731 | 2016-01-17 11:01:09 +0100 | [diff] [blame] | 69 | batadv_orig_node_put(gw_node->orig_node); |
Sven Eckelmann | e7aed32 | 2016-01-16 10:29:41 +0100 | [diff] [blame] | 70 | kfree_rcu(gw_node, rcu); |
| 71 | } |
| 72 | |
| 73 | /** |
Sven Eckelmann | 7e9a8c2 | 2017-12-02 19:51:47 +0100 | [diff] [blame] | 74 | * batadv_gw_node_put() - decrement the gw_node refcounter and possibly release |
| 75 | * it |
Sven Eckelmann | e7aed32 | 2016-01-16 10:29:41 +0100 | [diff] [blame] | 76 | * @gw_node: gateway node to free |
| 77 | */ |
Antonio Quartulli | 34d99cf | 2016-07-03 12:46:33 +0200 | [diff] [blame] | 78 | void batadv_gw_node_put(struct batadv_gw_node *gw_node) |
Marek Lindner | 25b6d3c | 2011-02-10 14:33:49 +0000 | [diff] [blame] | 79 | { |
Sven Eckelmann | e7aed32 | 2016-01-16 10:29:41 +0100 | [diff] [blame] | 80 | kref_put(&gw_node->refcount, batadv_gw_node_release); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 81 | } |
| 82 | |
Sven Eckelmann | ff15c27 | 2017-12-02 19:51:53 +0100 | [diff] [blame] | 83 | /** |
| 84 | * batadv_gw_get_selected_gw_node() - Get currently selected gateway |
| 85 | * @bat_priv: the bat priv with all the soft interface information |
| 86 | * |
| 87 | * Return: selected gateway (with increased refcnt), NULL on errors |
| 88 | */ |
Antonio Quartulli | 34d99cf | 2016-07-03 12:46:33 +0200 | [diff] [blame] | 89 | struct batadv_gw_node * |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 90 | batadv_gw_get_selected_gw_node(struct batadv_priv *bat_priv) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 91 | { |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 92 | struct batadv_gw_node *gw_node; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 93 | |
Linus Lüssing | 5d02b3c | 2011-02-13 21:13:02 +0000 | [diff] [blame] | 94 | rcu_read_lock(); |
Sven Eckelmann | 807736f | 2012-07-15 22:26:51 +0200 | [diff] [blame] | 95 | gw_node = rcu_dereference(bat_priv->gw.curr_gw); |
Marek Lindner | c4aac1a | 2011-03-23 11:24:34 +0100 | [diff] [blame] | 96 | if (!gw_node) |
Linus Lüssing | 5d02b3c | 2011-02-13 21:13:02 +0000 | [diff] [blame] | 97 | goto out; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 98 | |
Sven Eckelmann | e7aed32 | 2016-01-16 10:29:41 +0100 | [diff] [blame] | 99 | if (!kref_get_unless_zero(&gw_node->refcount)) |
Marek Lindner | c4aac1a | 2011-03-23 11:24:34 +0100 | [diff] [blame] | 100 | gw_node = NULL; |
| 101 | |
| 102 | out: |
| 103 | rcu_read_unlock(); |
| 104 | return gw_node; |
| 105 | } |
| 106 | |
Sven Eckelmann | ff15c27 | 2017-12-02 19:51:53 +0100 | [diff] [blame] | 107 | /** |
| 108 | * batadv_gw_get_selected_orig() - Get originator of currently selected gateway |
| 109 | * @bat_priv: the bat priv with all the soft interface information |
| 110 | * |
| 111 | * Return: orig_node of selected gateway (with increased refcnt), NULL on errors |
| 112 | */ |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 113 | struct batadv_orig_node * |
| 114 | batadv_gw_get_selected_orig(struct batadv_priv *bat_priv) |
Marek Lindner | c4aac1a | 2011-03-23 11:24:34 +0100 | [diff] [blame] | 115 | { |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 116 | struct batadv_gw_node *gw_node; |
| 117 | struct batadv_orig_node *orig_node = NULL; |
Marek Lindner | c4aac1a | 2011-03-23 11:24:34 +0100 | [diff] [blame] | 118 | |
Sven Eckelmann | 1409a83 | 2012-05-12 18:33:55 +0200 | [diff] [blame] | 119 | gw_node = batadv_gw_get_selected_gw_node(bat_priv); |
Marek Lindner | c4aac1a | 2011-03-23 11:24:34 +0100 | [diff] [blame] | 120 | if (!gw_node) |
Marek Lindner | 7b36e8e | 2011-02-18 12:28:10 +0000 | [diff] [blame] | 121 | goto out; |
Linus Lüssing | 5d02b3c | 2011-02-13 21:13:02 +0000 | [diff] [blame] | 122 | |
Marek Lindner | c4aac1a | 2011-03-23 11:24:34 +0100 | [diff] [blame] | 123 | rcu_read_lock(); |
| 124 | orig_node = gw_node->orig_node; |
| 125 | if (!orig_node) |
| 126 | goto unlock; |
| 127 | |
Sven Eckelmann | 7c12439 | 2016-01-16 10:29:56 +0100 | [diff] [blame] | 128 | if (!kref_get_unless_zero(&orig_node->refcount)) |
Marek Lindner | 7b36e8e | 2011-02-18 12:28:10 +0000 | [diff] [blame] | 129 | orig_node = NULL; |
Linus Lüssing | 43c70ad | 2011-02-13 21:13:04 +0000 | [diff] [blame] | 130 | |
Marek Lindner | c4aac1a | 2011-03-23 11:24:34 +0100 | [diff] [blame] | 131 | unlock: |
Linus Lüssing | 5d02b3c | 2011-02-13 21:13:02 +0000 | [diff] [blame] | 132 | rcu_read_unlock(); |
Marek Lindner | c4aac1a | 2011-03-23 11:24:34 +0100 | [diff] [blame] | 133 | out: |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 134 | if (gw_node) |
Sven Eckelmann | 3a01743 | 2016-01-17 11:01:18 +0100 | [diff] [blame] | 135 | batadv_gw_node_put(gw_node); |
Marek Lindner | c4aac1a | 2011-03-23 11:24:34 +0100 | [diff] [blame] | 136 | return orig_node; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 137 | } |
| 138 | |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 139 | static void batadv_gw_select(struct batadv_priv *bat_priv, |
| 140 | struct batadv_gw_node *new_gw_node) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 141 | { |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 142 | struct batadv_gw_node *curr_gw_node; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 143 | |
Sven Eckelmann | 807736f | 2012-07-15 22:26:51 +0200 | [diff] [blame] | 144 | spin_lock_bh(&bat_priv->gw.list_lock); |
Marek Lindner | c4aac1a | 2011-03-23 11:24:34 +0100 | [diff] [blame] | 145 | |
Sven Eckelmann | a08d497 | 2016-03-05 16:09:22 +0100 | [diff] [blame] | 146 | if (new_gw_node) |
| 147 | kref_get(&new_gw_node->refcount); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 148 | |
Sven Eckelmann | 807736f | 2012-07-15 22:26:51 +0200 | [diff] [blame] | 149 | curr_gw_node = rcu_dereference_protected(bat_priv->gw.curr_gw, 1); |
| 150 | rcu_assign_pointer(bat_priv->gw.curr_gw, new_gw_node); |
Marek Lindner | 25b6d3c | 2011-02-10 14:33:49 +0000 | [diff] [blame] | 151 | |
| 152 | if (curr_gw_node) |
Sven Eckelmann | 3a01743 | 2016-01-17 11:01:18 +0100 | [diff] [blame] | 153 | batadv_gw_node_put(curr_gw_node); |
Marek Lindner | c4aac1a | 2011-03-23 11:24:34 +0100 | [diff] [blame] | 154 | |
Sven Eckelmann | 807736f | 2012-07-15 22:26:51 +0200 | [diff] [blame] | 155 | spin_unlock_bh(&bat_priv->gw.list_lock); |
Marek Lindner | c4aac1a | 2011-03-23 11:24:34 +0100 | [diff] [blame] | 156 | } |
| 157 | |
Antonio Quartulli | 4e820e7 | 2013-11-04 20:59:41 +0100 | [diff] [blame] | 158 | /** |
Sven Eckelmann | 7e9a8c2 | 2017-12-02 19:51:47 +0100 | [diff] [blame] | 159 | * batadv_gw_reselect() - force a gateway reselection |
Antonio Quartulli | 4e820e7 | 2013-11-04 20:59:41 +0100 | [diff] [blame] | 160 | * @bat_priv: the bat priv with all the soft interface information |
| 161 | * |
| 162 | * Set a flag to remind the GW component to perform a new gateway reselection. |
| 163 | * However this function does not ensure that the current gateway is going to be |
| 164 | * deselected. The reselection mechanism may elect the same gateway once again. |
| 165 | * |
| 166 | * This means that invoking batadv_gw_reselect() does not guarantee a gateway |
| 167 | * change and therefore a uevent is not necessarily expected. |
| 168 | */ |
| 169 | void batadv_gw_reselect(struct batadv_priv *bat_priv) |
Marek Lindner | c4aac1a | 2011-03-23 11:24:34 +0100 | [diff] [blame] | 170 | { |
Sven Eckelmann | 807736f | 2012-07-15 22:26:51 +0200 | [diff] [blame] | 171 | atomic_set(&bat_priv->gw.reselect, 1); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 172 | } |
| 173 | |
Antonio Quartulli | c6eaa3f | 2013-07-13 00:06:00 +0200 | [diff] [blame] | 174 | /** |
Sven Eckelmann | 7e9a8c2 | 2017-12-02 19:51:47 +0100 | [diff] [blame] | 175 | * batadv_gw_check_client_stop() - check if client mode has been switched off |
Antonio Quartulli | c6eaa3f | 2013-07-13 00:06:00 +0200 | [diff] [blame] | 176 | * @bat_priv: the bat priv with all the soft interface information |
| 177 | * |
| 178 | * This function assumes the caller has checked that the gw state *is actually |
| 179 | * changing*. This function is not supposed to be called when there is no state |
| 180 | * change. |
| 181 | */ |
| 182 | void batadv_gw_check_client_stop(struct batadv_priv *bat_priv) |
| 183 | { |
| 184 | struct batadv_gw_node *curr_gw; |
| 185 | |
Antonio Quartulli | 3a24a63 | 2016-05-06 02:46:38 +0800 | [diff] [blame] | 186 | if (atomic_read(&bat_priv->gw.mode) != BATADV_GW_MODE_CLIENT) |
Antonio Quartulli | c6eaa3f | 2013-07-13 00:06:00 +0200 | [diff] [blame] | 187 | return; |
| 188 | |
| 189 | curr_gw = batadv_gw_get_selected_gw_node(bat_priv); |
| 190 | if (!curr_gw) |
| 191 | return; |
| 192 | |
Antonio Quartulli | f316318 | 2013-11-04 20:59:40 +0100 | [diff] [blame] | 193 | /* deselect the current gateway so that next time that client mode is |
| 194 | * enabled a proper GW_ADD event can be sent |
| 195 | */ |
| 196 | batadv_gw_select(bat_priv, NULL); |
| 197 | |
Antonio Quartulli | c6eaa3f | 2013-07-13 00:06:00 +0200 | [diff] [blame] | 198 | /* if batman-adv is switching the gw client mode off and a gateway was |
| 199 | * already selected, send a DEL uevent |
| 200 | */ |
| 201 | batadv_throw_uevent(bat_priv, BATADV_UEV_GW, BATADV_UEV_DEL, NULL); |
| 202 | |
Sven Eckelmann | 3a01743 | 2016-01-17 11:01:18 +0100 | [diff] [blame] | 203 | batadv_gw_node_put(curr_gw); |
Antonio Quartulli | c6eaa3f | 2013-07-13 00:06:00 +0200 | [diff] [blame] | 204 | } |
| 205 | |
Sven Eckelmann | ff15c27 | 2017-12-02 19:51:53 +0100 | [diff] [blame] | 206 | /** |
| 207 | * batadv_gw_election() - Elect the best gateway |
| 208 | * @bat_priv: the bat priv with all the soft interface information |
| 209 | */ |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 210 | void batadv_gw_election(struct batadv_priv *bat_priv) |
Antonio Quartulli | 2265c14 | 2011-04-27 00:22:00 +0200 | [diff] [blame] | 211 | { |
Sven Eckelmann | 4f248cf | 2015-06-09 20:50:49 +0200 | [diff] [blame] | 212 | struct batadv_gw_node *curr_gw = NULL; |
| 213 | struct batadv_gw_node *next_gw = NULL; |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 214 | struct batadv_neigh_node *router = NULL; |
Simon Wunderlich | 8965233 | 2013-11-13 19:14:46 +0100 | [diff] [blame] | 215 | struct batadv_neigh_ifinfo *router_ifinfo = NULL; |
Antonio Quartulli | 19595e0 | 2011-06-12 11:58:58 +0200 | [diff] [blame] | 216 | char gw_addr[18] = { '\0' }; |
Antonio Quartulli | 2265c14 | 2011-04-27 00:22:00 +0200 | [diff] [blame] | 217 | |
Antonio Quartulli | 3a24a63 | 2016-05-06 02:46:38 +0800 | [diff] [blame] | 218 | if (atomic_read(&bat_priv->gw.mode) != BATADV_GW_MODE_CLIENT) |
Antonio Quartulli | 2265c14 | 2011-04-27 00:22:00 +0200 | [diff] [blame] | 219 | goto out; |
| 220 | |
Antonio Quartulli | 34d99cf | 2016-07-03 12:46:33 +0200 | [diff] [blame] | 221 | if (!bat_priv->algo_ops->gw.get_best_gw_node) |
| 222 | goto out; |
| 223 | |
Sven Eckelmann | 1409a83 | 2012-05-12 18:33:55 +0200 | [diff] [blame] | 224 | curr_gw = batadv_gw_get_selected_gw_node(bat_priv); |
Antonio Quartulli | 2265c14 | 2011-04-27 00:22:00 +0200 | [diff] [blame] | 225 | |
Sven Eckelmann | 807736f | 2012-07-15 22:26:51 +0200 | [diff] [blame] | 226 | if (!batadv_atomic_dec_not_zero(&bat_priv->gw.reselect) && curr_gw) |
Marek Lindner | caa0bf6 | 2012-08-04 04:13:26 +0000 | [diff] [blame] | 227 | goto out; |
| 228 | |
Antonio Quartulli | 34d99cf | 2016-07-03 12:46:33 +0200 | [diff] [blame] | 229 | /* if gw.reselect is set to 1 it means that a previous call to |
| 230 | * gw.is_eligible() said that we have a new best GW, therefore it can |
| 231 | * now be picked from the list and selected |
| 232 | */ |
| 233 | next_gw = bat_priv->algo_ops->gw.get_best_gw_node(bat_priv); |
Antonio Quartulli | 2265c14 | 2011-04-27 00:22:00 +0200 | [diff] [blame] | 234 | |
| 235 | if (curr_gw == next_gw) |
| 236 | goto out; |
| 237 | |
| 238 | if (next_gw) { |
Antonio Quartulli | 19595e0 | 2011-06-12 11:58:58 +0200 | [diff] [blame] | 239 | sprintf(gw_addr, "%pM", next_gw->orig_node->orig); |
| 240 | |
Simon Wunderlich | 7351a482 | 2013-11-13 19:14:47 +0100 | [diff] [blame] | 241 | router = batadv_orig_router_get(next_gw->orig_node, |
| 242 | BATADV_IF_DEFAULT); |
Antonio Quartulli | 2265c14 | 2011-04-27 00:22:00 +0200 | [diff] [blame] | 243 | if (!router) { |
Antonio Quartulli | 4e820e7 | 2013-11-04 20:59:41 +0100 | [diff] [blame] | 244 | batadv_gw_reselect(bat_priv); |
Antonio Quartulli | 2265c14 | 2011-04-27 00:22:00 +0200 | [diff] [blame] | 245 | goto out; |
| 246 | } |
Simon Wunderlich | 8965233 | 2013-11-13 19:14:46 +0100 | [diff] [blame] | 247 | |
| 248 | router_ifinfo = batadv_neigh_ifinfo_get(router, |
| 249 | BATADV_IF_DEFAULT); |
| 250 | if (!router_ifinfo) { |
| 251 | batadv_gw_reselect(bat_priv); |
| 252 | goto out; |
| 253 | } |
Antonio Quartulli | 2265c14 | 2011-04-27 00:22:00 +0200 | [diff] [blame] | 254 | } |
| 255 | |
Sven Eckelmann | 825ffe1 | 2017-08-23 21:52:13 +0200 | [diff] [blame] | 256 | if (curr_gw && !next_gw) { |
Sven Eckelmann | 39c75a5 | 2012-06-03 22:19:22 +0200 | [diff] [blame] | 257 | batadv_dbg(BATADV_DBG_BATMAN, bat_priv, |
Sven Eckelmann | 1eda58b | 2012-05-12 13:48:58 +0200 | [diff] [blame] | 258 | "Removing selected gateway - no gateway in range\n"); |
Sven Eckelmann | 39c75a5 | 2012-06-03 22:19:22 +0200 | [diff] [blame] | 259 | batadv_throw_uevent(bat_priv, BATADV_UEV_GW, BATADV_UEV_DEL, |
| 260 | NULL); |
Sven Eckelmann | 825ffe1 | 2017-08-23 21:52:13 +0200 | [diff] [blame] | 261 | } else if (!curr_gw && next_gw) { |
Sven Eckelmann | 39c75a5 | 2012-06-03 22:19:22 +0200 | [diff] [blame] | 262 | batadv_dbg(BATADV_DBG_BATMAN, bat_priv, |
Marek Lindner | 414254e | 2013-04-23 21:39:58 +0800 | [diff] [blame] | 263 | "Adding route to gateway %pM (bandwidth: %u.%u/%u.%u MBit, tq: %i)\n", |
Sven Eckelmann | 1eda58b | 2012-05-12 13:48:58 +0200 | [diff] [blame] | 264 | next_gw->orig_node->orig, |
Marek Lindner | 414254e | 2013-04-23 21:39:58 +0800 | [diff] [blame] | 265 | next_gw->bandwidth_down / 10, |
| 266 | next_gw->bandwidth_down % 10, |
| 267 | next_gw->bandwidth_up / 10, |
Simon Wunderlich | 8965233 | 2013-11-13 19:14:46 +0100 | [diff] [blame] | 268 | next_gw->bandwidth_up % 10, |
| 269 | router_ifinfo->bat_iv.tq_avg); |
Sven Eckelmann | 39c75a5 | 2012-06-03 22:19:22 +0200 | [diff] [blame] | 270 | batadv_throw_uevent(bat_priv, BATADV_UEV_GW, BATADV_UEV_ADD, |
| 271 | gw_addr); |
Antonio Quartulli | 2265c14 | 2011-04-27 00:22:00 +0200 | [diff] [blame] | 272 | } else { |
Sven Eckelmann | 39c75a5 | 2012-06-03 22:19:22 +0200 | [diff] [blame] | 273 | batadv_dbg(BATADV_DBG_BATMAN, bat_priv, |
Marek Lindner | 414254e | 2013-04-23 21:39:58 +0800 | [diff] [blame] | 274 | "Changing route to gateway %pM (bandwidth: %u.%u/%u.%u MBit, tq: %i)\n", |
Sven Eckelmann | 1eda58b | 2012-05-12 13:48:58 +0200 | [diff] [blame] | 275 | next_gw->orig_node->orig, |
Marek Lindner | 414254e | 2013-04-23 21:39:58 +0800 | [diff] [blame] | 276 | next_gw->bandwidth_down / 10, |
| 277 | next_gw->bandwidth_down % 10, |
| 278 | next_gw->bandwidth_up / 10, |
Simon Wunderlich | 8965233 | 2013-11-13 19:14:46 +0100 | [diff] [blame] | 279 | next_gw->bandwidth_up % 10, |
| 280 | router_ifinfo->bat_iv.tq_avg); |
Sven Eckelmann | 39c75a5 | 2012-06-03 22:19:22 +0200 | [diff] [blame] | 281 | batadv_throw_uevent(bat_priv, BATADV_UEV_GW, BATADV_UEV_CHANGE, |
| 282 | gw_addr); |
Antonio Quartulli | 2265c14 | 2011-04-27 00:22:00 +0200 | [diff] [blame] | 283 | } |
| 284 | |
Sven Eckelmann | 1409a83 | 2012-05-12 18:33:55 +0200 | [diff] [blame] | 285 | batadv_gw_select(bat_priv, next_gw); |
Antonio Quartulli | 2265c14 | 2011-04-27 00:22:00 +0200 | [diff] [blame] | 286 | |
Marek Lindner | c4aac1a | 2011-03-23 11:24:34 +0100 | [diff] [blame] | 287 | out: |
| 288 | if (curr_gw) |
Sven Eckelmann | 3a01743 | 2016-01-17 11:01:18 +0100 | [diff] [blame] | 289 | batadv_gw_node_put(curr_gw); |
Antonio Quartulli | 2265c14 | 2011-04-27 00:22:00 +0200 | [diff] [blame] | 290 | if (next_gw) |
Sven Eckelmann | 3a01743 | 2016-01-17 11:01:18 +0100 | [diff] [blame] | 291 | batadv_gw_node_put(next_gw); |
Antonio Quartulli | 2265c14 | 2011-04-27 00:22:00 +0200 | [diff] [blame] | 292 | if (router) |
Sven Eckelmann | 25bb250 | 2016-01-17 11:01:11 +0100 | [diff] [blame] | 293 | batadv_neigh_node_put(router); |
Simon Wunderlich | 8965233 | 2013-11-13 19:14:46 +0100 | [diff] [blame] | 294 | if (router_ifinfo) |
Sven Eckelmann | 044fa3a | 2016-01-17 11:01:12 +0100 | [diff] [blame] | 295 | batadv_neigh_ifinfo_put(router_ifinfo); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 296 | } |
| 297 | |
Sven Eckelmann | ff15c27 | 2017-12-02 19:51:53 +0100 | [diff] [blame] | 298 | /** |
| 299 | * batadv_gw_check_election() - Elect orig node as best gateway when eligible |
| 300 | * @bat_priv: the bat priv with all the soft interface information |
| 301 | * @orig_node: orig node which is to be checked |
| 302 | */ |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 303 | void batadv_gw_check_election(struct batadv_priv *bat_priv, |
| 304 | struct batadv_orig_node *orig_node) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 305 | { |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 306 | struct batadv_orig_node *curr_gw_orig; |
Antonio Quartulli | 34d99cf | 2016-07-03 12:46:33 +0200 | [diff] [blame] | 307 | |
| 308 | /* abort immediately if the routing algorithm does not support gateway |
| 309 | * election |
| 310 | */ |
| 311 | if (!bat_priv->algo_ops->gw.is_eligible) |
| 312 | return; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 313 | |
Sven Eckelmann | 7cf06bc | 2012-05-12 02:09:29 +0200 | [diff] [blame] | 314 | curr_gw_orig = batadv_gw_get_selected_orig(bat_priv); |
Linus Lüssing | 57f0c07 | 2011-03-14 22:43:33 +0000 | [diff] [blame] | 315 | if (!curr_gw_orig) |
Antonio Quartulli | 4e820e7 | 2013-11-04 20:59:41 +0100 | [diff] [blame] | 316 | goto reselect; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 317 | |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 318 | /* this node already is the gateway */ |
Linus Lüssing | 57f0c07 | 2011-03-14 22:43:33 +0000 | [diff] [blame] | 319 | if (curr_gw_orig == orig_node) |
Linus Lüssing | e1a5382f | 2011-03-14 22:43:37 +0000 | [diff] [blame] | 320 | goto out; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 321 | |
Antonio Quartulli | 34d99cf | 2016-07-03 12:46:33 +0200 | [diff] [blame] | 322 | if (!bat_priv->algo_ops->gw.is_eligible(bat_priv, curr_gw_orig, |
| 323 | orig_node)) |
Linus Lüssing | e1a5382f | 2011-03-14 22:43:37 +0000 | [diff] [blame] | 324 | goto out; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 325 | |
Antonio Quartulli | 4e820e7 | 2013-11-04 20:59:41 +0100 | [diff] [blame] | 326 | reselect: |
| 327 | batadv_gw_reselect(bat_priv); |
Linus Lüssing | 5d02b3c | 2011-02-13 21:13:02 +0000 | [diff] [blame] | 328 | out: |
Linus Lüssing | 57f0c07 | 2011-03-14 22:43:33 +0000 | [diff] [blame] | 329 | if (curr_gw_orig) |
Sven Eckelmann | 5d96731 | 2016-01-17 11:01:09 +0100 | [diff] [blame] | 330 | batadv_orig_node_put(curr_gw_orig); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 331 | } |
| 332 | |
Marek Lindner | 414254e | 2013-04-23 21:39:58 +0800 | [diff] [blame] | 333 | /** |
Sven Eckelmann | 7e9a8c2 | 2017-12-02 19:51:47 +0100 | [diff] [blame] | 334 | * batadv_gw_node_add() - add gateway node to list of available gateways |
Marek Lindner | 414254e | 2013-04-23 21:39:58 +0800 | [diff] [blame] | 335 | * @bat_priv: the bat priv with all the soft interface information |
| 336 | * @orig_node: originator announcing gateway capabilities |
| 337 | * @gateway: announced bandwidth information |
Sven Eckelmann | dff9bc4 | 2018-08-12 21:04:41 +0200 | [diff] [blame] | 338 | * |
| 339 | * Has to be called with the appropriate locks being acquired |
| 340 | * (gw.list_lock). |
Marek Lindner | 414254e | 2013-04-23 21:39:58 +0800 | [diff] [blame] | 341 | */ |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 342 | static void batadv_gw_node_add(struct batadv_priv *bat_priv, |
| 343 | struct batadv_orig_node *orig_node, |
Marek Lindner | 414254e | 2013-04-23 21:39:58 +0800 | [diff] [blame] | 344 | struct batadv_tvlv_gateway_data *gateway) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 345 | { |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 346 | struct batadv_gw_node *gw_node; |
Marek Lindner | 414254e | 2013-04-23 21:39:58 +0800 | [diff] [blame] | 347 | |
Sven Eckelmann | dff9bc4 | 2018-08-12 21:04:41 +0200 | [diff] [blame] | 348 | lockdep_assert_held(&bat_priv->gw.list_lock); |
| 349 | |
Marek Lindner | 414254e | 2013-04-23 21:39:58 +0800 | [diff] [blame] | 350 | if (gateway->bandwidth_down == 0) |
| 351 | return; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 352 | |
Antonio Quartulli | 377fe0f | 2014-05-02 01:35:13 +0200 | [diff] [blame] | 353 | gw_node = kzalloc(sizeof(*gw_node), GFP_ATOMIC); |
Sven Eckelmann | c3ba37a7 | 2016-03-05 16:09:23 +0100 | [diff] [blame] | 354 | if (!gw_node) |
Antonio Quartulli | 377fe0f | 2014-05-02 01:35:13 +0200 | [diff] [blame] | 355 | return; |
Antonio Quartulli | 377fe0f | 2014-05-02 01:35:13 +0200 | [diff] [blame] | 356 | |
Sven Eckelmann | f665fa7 | 2016-07-15 17:39:27 +0200 | [diff] [blame] | 357 | kref_init(&gw_node->refcount); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 358 | INIT_HLIST_NODE(&gw_node->list); |
Sven Eckelmann | 55db2d5 | 2016-07-15 17:39:21 +0200 | [diff] [blame] | 359 | kref_get(&orig_node->refcount); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 360 | gw_node->orig_node = orig_node; |
Simon Wunderlich | 27a4d5e | 2015-06-24 14:50:19 +0200 | [diff] [blame] | 361 | gw_node->bandwidth_down = ntohl(gateway->bandwidth_down); |
| 362 | gw_node->bandwidth_up = ntohl(gateway->bandwidth_up); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 363 | |
Sven Eckelmann | f665fa7 | 2016-07-15 17:39:27 +0200 | [diff] [blame] | 364 | kref_get(&gw_node->refcount); |
Sven Eckelmann | 70ea5ce | 2016-07-27 12:31:08 +0200 | [diff] [blame] | 365 | hlist_add_head_rcu(&gw_node->list, &bat_priv->gw.gateway_list); |
Sven Eckelmann | 9264c85 | 2018-10-30 22:01:23 +0100 | [diff] [blame] | 366 | bat_priv->gw.generation++; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 367 | |
Sven Eckelmann | 39c75a5 | 2012-06-03 22:19:22 +0200 | [diff] [blame] | 368 | batadv_dbg(BATADV_DBG_BATMAN, bat_priv, |
Marek Lindner | 414254e | 2013-04-23 21:39:58 +0800 | [diff] [blame] | 369 | "Found new gateway %pM -> gw bandwidth: %u.%u/%u.%u MBit\n", |
| 370 | orig_node->orig, |
| 371 | ntohl(gateway->bandwidth_down) / 10, |
| 372 | ntohl(gateway->bandwidth_down) % 10, |
| 373 | ntohl(gateway->bandwidth_up) / 10, |
| 374 | ntohl(gateway->bandwidth_up) % 10); |
Sven Eckelmann | f665fa7 | 2016-07-15 17:39:27 +0200 | [diff] [blame] | 375 | |
| 376 | /* don't return reference to new gw_node */ |
| 377 | batadv_gw_node_put(gw_node); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 378 | } |
| 379 | |
Marek Lindner | 414254e | 2013-04-23 21:39:58 +0800 | [diff] [blame] | 380 | /** |
Sven Eckelmann | 7e9a8c2 | 2017-12-02 19:51:47 +0100 | [diff] [blame] | 381 | * batadv_gw_node_get() - retrieve gateway node from list of available gateways |
Marek Lindner | 414254e | 2013-04-23 21:39:58 +0800 | [diff] [blame] | 382 | * @bat_priv: the bat priv with all the soft interface information |
| 383 | * @orig_node: originator announcing gateway capabilities |
| 384 | * |
Sven Eckelmann | 62fe710 | 2015-09-15 19:00:48 +0200 | [diff] [blame] | 385 | * Return: gateway node if found or NULL otherwise. |
Marek Lindner | 414254e | 2013-04-23 21:39:58 +0800 | [diff] [blame] | 386 | */ |
Antonio Quartulli | 50164d8 | 2016-07-03 12:46:34 +0200 | [diff] [blame] | 387 | struct batadv_gw_node *batadv_gw_node_get(struct batadv_priv *bat_priv, |
| 388 | struct batadv_orig_node *orig_node) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 389 | { |
Marek Lindner | 414254e | 2013-04-23 21:39:58 +0800 | [diff] [blame] | 390 | struct batadv_gw_node *gw_node_tmp, *gw_node = NULL; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 391 | |
| 392 | rcu_read_lock(); |
Sven Eckelmann | 70ea5ce | 2016-07-27 12:31:08 +0200 | [diff] [blame] | 393 | hlist_for_each_entry_rcu(gw_node_tmp, &bat_priv->gw.gateway_list, |
| 394 | list) { |
Marek Lindner | 414254e | 2013-04-23 21:39:58 +0800 | [diff] [blame] | 395 | if (gw_node_tmp->orig_node != orig_node) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 396 | continue; |
| 397 | |
Sven Eckelmann | e7aed32 | 2016-01-16 10:29:41 +0100 | [diff] [blame] | 398 | if (!kref_get_unless_zero(&gw_node_tmp->refcount)) |
Marek Lindner | 414254e | 2013-04-23 21:39:58 +0800 | [diff] [blame] | 399 | continue; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 400 | |
Marek Lindner | 414254e | 2013-04-23 21:39:58 +0800 | [diff] [blame] | 401 | gw_node = gw_node_tmp; |
| 402 | break; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 403 | } |
Marek Lindner | c4aac1a | 2011-03-23 11:24:34 +0100 | [diff] [blame] | 404 | rcu_read_unlock(); |
Antonio Quartulli | 71e4aa9 | 2011-04-25 22:44:32 +0200 | [diff] [blame] | 405 | |
Marek Lindner | 414254e | 2013-04-23 21:39:58 +0800 | [diff] [blame] | 406 | return gw_node; |
| 407 | } |
| 408 | |
| 409 | /** |
Sven Eckelmann | 7e9a8c2 | 2017-12-02 19:51:47 +0100 | [diff] [blame] | 410 | * batadv_gw_node_update() - update list of available gateways with changed |
Marek Lindner | 414254e | 2013-04-23 21:39:58 +0800 | [diff] [blame] | 411 | * bandwidth information |
| 412 | * @bat_priv: the bat priv with all the soft interface information |
| 413 | * @orig_node: originator announcing gateway capabilities |
| 414 | * @gateway: announced bandwidth information |
| 415 | */ |
| 416 | void batadv_gw_node_update(struct batadv_priv *bat_priv, |
| 417 | struct batadv_orig_node *orig_node, |
| 418 | struct batadv_tvlv_gateway_data *gateway) |
| 419 | { |
| 420 | struct batadv_gw_node *gw_node, *curr_gw = NULL; |
| 421 | |
Sven Eckelmann | dff9bc4 | 2018-08-12 21:04:41 +0200 | [diff] [blame] | 422 | spin_lock_bh(&bat_priv->gw.list_lock); |
Marek Lindner | 414254e | 2013-04-23 21:39:58 +0800 | [diff] [blame] | 423 | gw_node = batadv_gw_node_get(bat_priv, orig_node); |
| 424 | if (!gw_node) { |
| 425 | batadv_gw_node_add(bat_priv, orig_node, gateway); |
Sven Eckelmann | dff9bc4 | 2018-08-12 21:04:41 +0200 | [diff] [blame] | 426 | spin_unlock_bh(&bat_priv->gw.list_lock); |
Marek Lindner | 414254e | 2013-04-23 21:39:58 +0800 | [diff] [blame] | 427 | goto out; |
| 428 | } |
Sven Eckelmann | dff9bc4 | 2018-08-12 21:04:41 +0200 | [diff] [blame] | 429 | spin_unlock_bh(&bat_priv->gw.list_lock); |
Marek Lindner | 414254e | 2013-04-23 21:39:58 +0800 | [diff] [blame] | 430 | |
Sven Eckelmann | 825ffe1 | 2017-08-23 21:52:13 +0200 | [diff] [blame] | 431 | if (gw_node->bandwidth_down == ntohl(gateway->bandwidth_down) && |
| 432 | gw_node->bandwidth_up == ntohl(gateway->bandwidth_up)) |
Marek Lindner | 414254e | 2013-04-23 21:39:58 +0800 | [diff] [blame] | 433 | goto out; |
| 434 | |
| 435 | batadv_dbg(BATADV_DBG_BATMAN, bat_priv, |
| 436 | "Gateway bandwidth of originator %pM changed from %u.%u/%u.%u MBit to %u.%u/%u.%u MBit\n", |
| 437 | orig_node->orig, |
| 438 | gw_node->bandwidth_down / 10, |
| 439 | gw_node->bandwidth_down % 10, |
| 440 | gw_node->bandwidth_up / 10, |
| 441 | gw_node->bandwidth_up % 10, |
| 442 | ntohl(gateway->bandwidth_down) / 10, |
| 443 | ntohl(gateway->bandwidth_down) % 10, |
| 444 | ntohl(gateway->bandwidth_up) / 10, |
| 445 | ntohl(gateway->bandwidth_up) % 10); |
| 446 | |
| 447 | gw_node->bandwidth_down = ntohl(gateway->bandwidth_down); |
| 448 | gw_node->bandwidth_up = ntohl(gateway->bandwidth_up); |
| 449 | |
Marek Lindner | 414254e | 2013-04-23 21:39:58 +0800 | [diff] [blame] | 450 | if (ntohl(gateway->bandwidth_down) == 0) { |
Marek Lindner | 414254e | 2013-04-23 21:39:58 +0800 | [diff] [blame] | 451 | batadv_dbg(BATADV_DBG_BATMAN, bat_priv, |
| 452 | "Gateway %pM removed from gateway list\n", |
| 453 | orig_node->orig); |
| 454 | |
| 455 | /* Note: We don't need a NULL check here, since curr_gw never |
| 456 | * gets dereferenced. |
| 457 | */ |
Simon Wunderlich | bd3524c | 2015-08-03 19:13:58 +0200 | [diff] [blame] | 458 | spin_lock_bh(&bat_priv->gw.list_lock); |
Sven Eckelmann | c18bdd0 | 2016-01-31 13:27:59 +0100 | [diff] [blame] | 459 | if (!hlist_unhashed(&gw_node->list)) { |
| 460 | hlist_del_init_rcu(&gw_node->list); |
Sven Eckelmann | 3a01743 | 2016-01-17 11:01:18 +0100 | [diff] [blame] | 461 | batadv_gw_node_put(gw_node); |
Sven Eckelmann | 9264c85 | 2018-10-30 22:01:23 +0100 | [diff] [blame] | 462 | bat_priv->gw.generation++; |
Sven Eckelmann | c18bdd0 | 2016-01-31 13:27:59 +0100 | [diff] [blame] | 463 | } |
Simon Wunderlich | bd3524c | 2015-08-03 19:13:58 +0200 | [diff] [blame] | 464 | spin_unlock_bh(&bat_priv->gw.list_lock); |
| 465 | |
Marek Lindner | 414254e | 2013-04-23 21:39:58 +0800 | [diff] [blame] | 466 | curr_gw = batadv_gw_get_selected_gw_node(bat_priv); |
| 467 | if (gw_node == curr_gw) |
Antonio Quartulli | 4e820e7 | 2013-11-04 20:59:41 +0100 | [diff] [blame] | 468 | batadv_gw_reselect(bat_priv); |
Simon Wunderlich | bd3524c | 2015-08-03 19:13:58 +0200 | [diff] [blame] | 469 | |
| 470 | if (curr_gw) |
Sven Eckelmann | 3a01743 | 2016-01-17 11:01:18 +0100 | [diff] [blame] | 471 | batadv_gw_node_put(curr_gw); |
Marek Lindner | 414254e | 2013-04-23 21:39:58 +0800 | [diff] [blame] | 472 | } |
| 473 | |
| 474 | out: |
Marek Lindner | 414254e | 2013-04-23 21:39:58 +0800 | [diff] [blame] | 475 | if (gw_node) |
Sven Eckelmann | 3a01743 | 2016-01-17 11:01:18 +0100 | [diff] [blame] | 476 | batadv_gw_node_put(gw_node); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 477 | } |
| 478 | |
Sven Eckelmann | ff15c27 | 2017-12-02 19:51:53 +0100 | [diff] [blame] | 479 | /** |
| 480 | * batadv_gw_node_delete() - Remove orig_node from gateway list |
| 481 | * @bat_priv: the bat priv with all the soft interface information |
| 482 | * @orig_node: orig node which is currently in process of being removed |
| 483 | */ |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 484 | void batadv_gw_node_delete(struct batadv_priv *bat_priv, |
| 485 | struct batadv_orig_node *orig_node) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 486 | { |
Marek Lindner | 414254e | 2013-04-23 21:39:58 +0800 | [diff] [blame] | 487 | struct batadv_tvlv_gateway_data gateway; |
| 488 | |
| 489 | gateway.bandwidth_down = 0; |
| 490 | gateway.bandwidth_up = 0; |
| 491 | |
| 492 | batadv_gw_node_update(bat_priv, orig_node, &gateway); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 493 | } |
| 494 | |
Sven Eckelmann | ff15c27 | 2017-12-02 19:51:53 +0100 | [diff] [blame] | 495 | /** |
| 496 | * batadv_gw_node_free() - Free gateway information from soft interface |
| 497 | * @bat_priv: the bat priv with all the soft interface information |
| 498 | */ |
Simon Wunderlich | bd3524c | 2015-08-03 19:13:58 +0200 | [diff] [blame] | 499 | void batadv_gw_node_free(struct batadv_priv *bat_priv) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 500 | { |
Simon Wunderlich | bd3524c | 2015-08-03 19:13:58 +0200 | [diff] [blame] | 501 | struct batadv_gw_node *gw_node; |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 502 | struct hlist_node *node_tmp; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 503 | |
Sven Eckelmann | 807736f | 2012-07-15 22:26:51 +0200 | [diff] [blame] | 504 | spin_lock_bh(&bat_priv->gw.list_lock); |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 505 | hlist_for_each_entry_safe(gw_node, node_tmp, |
Sven Eckelmann | 70ea5ce | 2016-07-27 12:31:08 +0200 | [diff] [blame] | 506 | &bat_priv->gw.gateway_list, list) { |
Simon Wunderlich | bd3524c | 2015-08-03 19:13:58 +0200 | [diff] [blame] | 507 | hlist_del_init_rcu(&gw_node->list); |
Sven Eckelmann | 3a01743 | 2016-01-17 11:01:18 +0100 | [diff] [blame] | 508 | batadv_gw_node_put(gw_node); |
Sven Eckelmann | 9264c85 | 2018-10-30 22:01:23 +0100 | [diff] [blame] | 509 | bat_priv->gw.generation++; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 510 | } |
Sven Eckelmann | 807736f | 2012-07-15 22:26:51 +0200 | [diff] [blame] | 511 | spin_unlock_bh(&bat_priv->gw.list_lock); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 512 | } |
| 513 | |
Sven Eckelmann | dc1cbd1 | 2016-07-16 09:31:20 +0200 | [diff] [blame] | 514 | #ifdef CONFIG_BATMAN_ADV_DEBUGFS |
Sven Eckelmann | ff15c27 | 2017-12-02 19:51:53 +0100 | [diff] [blame] | 515 | |
| 516 | /** |
| 517 | * batadv_gw_client_seq_print_text() - Print the gateway table in a seq file |
| 518 | * @seq: seq file to print on |
| 519 | * @offset: not used |
| 520 | * |
| 521 | * Return: always 0 |
| 522 | */ |
Sven Eckelmann | 7cf06bc | 2012-05-12 02:09:29 +0200 | [diff] [blame] | 523 | int batadv_gw_client_seq_print_text(struct seq_file *seq, void *offset) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 524 | { |
| 525 | struct net_device *net_dev = (struct net_device *)seq->private; |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 526 | struct batadv_priv *bat_priv = netdev_priv(net_dev); |
| 527 | struct batadv_hard_iface *primary_if; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 528 | |
Marek Lindner | 30da63a | 2012-08-03 17:15:46 +0200 | [diff] [blame] | 529 | primary_if = batadv_seq_print_text_primary_if_get(seq); |
| 530 | if (!primary_if) |
Antonio Quartulli | 34d99cf | 2016-07-03 12:46:33 +0200 | [diff] [blame] | 531 | return 0; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 532 | |
Antonio Quartulli | 34d99cf | 2016-07-03 12:46:33 +0200 | [diff] [blame] | 533 | seq_printf(seq, "[B.A.T.M.A.N. adv %s, MainIF/MAC: %s/%pM (%s %s)]\n", |
Sven Eckelmann | 42d0b04 | 2012-06-03 22:19:17 +0200 | [diff] [blame] | 534 | BATADV_SOURCE_VERSION, primary_if->net_dev->name, |
Antonio Quartulli | 34d99cf | 2016-07-03 12:46:33 +0200 | [diff] [blame] | 535 | primary_if->net_dev->dev_addr, net_dev->name, |
| 536 | bat_priv->algo_ops->name); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 537 | |
Antonio Quartulli | 34d99cf | 2016-07-03 12:46:33 +0200 | [diff] [blame] | 538 | batadv_hardif_put(primary_if); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 539 | |
Antonio Quartulli | 34d99cf | 2016-07-03 12:46:33 +0200 | [diff] [blame] | 540 | if (!bat_priv->algo_ops->gw.print) { |
| 541 | seq_puts(seq, |
| 542 | "No printing function for this routing protocol\n"); |
| 543 | return 0; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 544 | } |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 545 | |
Antonio Quartulli | 34d99cf | 2016-07-03 12:46:33 +0200 | [diff] [blame] | 546 | bat_priv->algo_ops->gw.print(bat_priv, seq); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 547 | |
Marek Lindner | 30da63a | 2012-08-03 17:15:46 +0200 | [diff] [blame] | 548 | return 0; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 549 | } |
Sven Eckelmann | dc1cbd1 | 2016-07-16 09:31:20 +0200 | [diff] [blame] | 550 | #endif |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 551 | |
Antonio Quartulli | 6c413b1 | 2013-11-05 19:31:08 +0100 | [diff] [blame] | 552 | /** |
Sven Eckelmann | 7e9a8c2 | 2017-12-02 19:51:47 +0100 | [diff] [blame] | 553 | * batadv_gw_dump() - Dump gateways into a message |
Sven Eckelmann | d7129da | 2016-07-03 13:31:42 +0200 | [diff] [blame] | 554 | * @msg: Netlink message to dump into |
| 555 | * @cb: Control block containing additional options |
| 556 | * |
| 557 | * Return: Error code, or length of message |
| 558 | */ |
| 559 | int batadv_gw_dump(struct sk_buff *msg, struct netlink_callback *cb) |
| 560 | { |
| 561 | struct batadv_hard_iface *primary_if = NULL; |
| 562 | struct net *net = sock_net(cb->skb->sk); |
| 563 | struct net_device *soft_iface; |
| 564 | struct batadv_priv *bat_priv; |
| 565 | int ifindex; |
| 566 | int ret; |
| 567 | |
| 568 | ifindex = batadv_netlink_get_ifindex(cb->nlh, |
| 569 | BATADV_ATTR_MESH_IFINDEX); |
| 570 | if (!ifindex) |
| 571 | return -EINVAL; |
| 572 | |
| 573 | soft_iface = dev_get_by_index(net, ifindex); |
| 574 | if (!soft_iface || !batadv_softif_is_valid(soft_iface)) { |
| 575 | ret = -ENODEV; |
| 576 | goto out; |
| 577 | } |
| 578 | |
| 579 | bat_priv = netdev_priv(soft_iface); |
| 580 | |
| 581 | primary_if = batadv_primary_if_get_selected(bat_priv); |
| 582 | if (!primary_if || primary_if->if_status != BATADV_IF_ACTIVE) { |
| 583 | ret = -ENOENT; |
| 584 | goto out; |
| 585 | } |
| 586 | |
| 587 | if (!bat_priv->algo_ops->gw.dump) { |
| 588 | ret = -EOPNOTSUPP; |
| 589 | goto out; |
| 590 | } |
| 591 | |
| 592 | bat_priv->algo_ops->gw.dump(msg, cb, bat_priv); |
| 593 | |
| 594 | ret = msg->len; |
| 595 | |
| 596 | out: |
| 597 | if (primary_if) |
| 598 | batadv_hardif_put(primary_if); |
| 599 | if (soft_iface) |
| 600 | dev_put(soft_iface); |
| 601 | |
| 602 | return ret; |
| 603 | } |
| 604 | |
| 605 | /** |
Sven Eckelmann | 7e9a8c2 | 2017-12-02 19:51:47 +0100 | [diff] [blame] | 606 | * batadv_gw_dhcp_recipient_get() - check if a packet is a DHCP message |
Antonio Quartulli | 6c413b1 | 2013-11-05 19:31:08 +0100 | [diff] [blame] | 607 | * @skb: the packet to check |
| 608 | * @header_len: a pointer to the batman-adv header size |
| 609 | * @chaddr: buffer where the client address will be stored. Valid |
| 610 | * only if the function returns BATADV_DHCP_TO_CLIENT |
| 611 | * |
Sven Eckelmann | 62fe710 | 2015-09-15 19:00:48 +0200 | [diff] [blame] | 612 | * This function may re-allocate the data buffer of the skb passed as argument. |
| 613 | * |
| 614 | * Return: |
Antonio Quartulli | 6c413b1 | 2013-11-05 19:31:08 +0100 | [diff] [blame] | 615 | * - BATADV_DHCP_NO if the packet is not a dhcp message or if there was an error |
| 616 | * while parsing it |
| 617 | * - BATADV_DHCP_TO_SERVER if this is a message going to the DHCP server |
| 618 | * - BATADV_DHCP_TO_CLIENT if this is a message going to a DHCP client |
Antonio Quartulli | 6c413b1 | 2013-11-05 19:31:08 +0100 | [diff] [blame] | 619 | */ |
| 620 | enum batadv_dhcp_recipient |
| 621 | batadv_gw_dhcp_recipient_get(struct sk_buff *skb, unsigned int *header_len, |
Sven Eckelmann | 6b5e971 | 2015-05-26 18:34:26 +0200 | [diff] [blame] | 622 | u8 *chaddr) |
Antonio Quartulli | 43676ab | 2011-04-26 21:31:45 +0200 | [diff] [blame] | 623 | { |
Antonio Quartulli | 6c413b1 | 2013-11-05 19:31:08 +0100 | [diff] [blame] | 624 | enum batadv_dhcp_recipient ret = BATADV_DHCP_NO; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 625 | struct ethhdr *ethhdr; |
| 626 | struct iphdr *iphdr; |
| 627 | struct ipv6hdr *ipv6hdr; |
| 628 | struct udphdr *udphdr; |
Antonio Quartulli | f7f8ed5 | 2013-05-12 21:51:15 +0200 | [diff] [blame] | 629 | struct vlan_ethhdr *vhdr; |
Antonio Quartulli | 6c413b1 | 2013-11-05 19:31:08 +0100 | [diff] [blame] | 630 | int chaddr_offset; |
Antonio Quartulli | f7f8ed5 | 2013-05-12 21:51:15 +0200 | [diff] [blame] | 631 | __be16 proto; |
Sven Eckelmann | 6b5e971 | 2015-05-26 18:34:26 +0200 | [diff] [blame] | 632 | u8 *p; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 633 | |
| 634 | /* check for ethernet header */ |
Marek Lindner | be7af5c | 2011-09-08 13:12:53 +0200 | [diff] [blame] | 635 | if (!pskb_may_pull(skb, *header_len + ETH_HLEN)) |
Antonio Quartulli | 6c413b1 | 2013-11-05 19:31:08 +0100 | [diff] [blame] | 636 | return BATADV_DHCP_NO; |
| 637 | |
Linus Lüssing | 927c2ed | 2014-01-19 22:22:45 +0100 | [diff] [blame] | 638 | ethhdr = eth_hdr(skb); |
Antonio Quartulli | f7f8ed5 | 2013-05-12 21:51:15 +0200 | [diff] [blame] | 639 | proto = ethhdr->h_proto; |
Marek Lindner | be7af5c | 2011-09-08 13:12:53 +0200 | [diff] [blame] | 640 | *header_len += ETH_HLEN; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 641 | |
| 642 | /* check for initial vlan header */ |
Antonio Quartulli | f7f8ed5 | 2013-05-12 21:51:15 +0200 | [diff] [blame] | 643 | if (proto == htons(ETH_P_8021Q)) { |
Marek Lindner | be7af5c | 2011-09-08 13:12:53 +0200 | [diff] [blame] | 644 | if (!pskb_may_pull(skb, *header_len + VLAN_HLEN)) |
Antonio Quartulli | 6c413b1 | 2013-11-05 19:31:08 +0100 | [diff] [blame] | 645 | return BATADV_DHCP_NO; |
Antonio Quartulli | f7f8ed5 | 2013-05-12 21:51:15 +0200 | [diff] [blame] | 646 | |
Linus Lüssing | 927c2ed | 2014-01-19 22:22:45 +0100 | [diff] [blame] | 647 | vhdr = vlan_eth_hdr(skb); |
Antonio Quartulli | f7f8ed5 | 2013-05-12 21:51:15 +0200 | [diff] [blame] | 648 | proto = vhdr->h_vlan_encapsulated_proto; |
Marek Lindner | be7af5c | 2011-09-08 13:12:53 +0200 | [diff] [blame] | 649 | *header_len += VLAN_HLEN; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 650 | } |
| 651 | |
| 652 | /* check for ip header */ |
Antonio Quartulli | f7f8ed5 | 2013-05-12 21:51:15 +0200 | [diff] [blame] | 653 | switch (proto) { |
| 654 | case htons(ETH_P_IP): |
Marek Lindner | be7af5c | 2011-09-08 13:12:53 +0200 | [diff] [blame] | 655 | if (!pskb_may_pull(skb, *header_len + sizeof(*iphdr))) |
Antonio Quartulli | 6c413b1 | 2013-11-05 19:31:08 +0100 | [diff] [blame] | 656 | return BATADV_DHCP_NO; |
| 657 | |
Marek Lindner | be7af5c | 2011-09-08 13:12:53 +0200 | [diff] [blame] | 658 | iphdr = (struct iphdr *)(skb->data + *header_len); |
| 659 | *header_len += iphdr->ihl * 4; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 660 | |
| 661 | /* check for udp header */ |
| 662 | if (iphdr->protocol != IPPROTO_UDP) |
Antonio Quartulli | 6c413b1 | 2013-11-05 19:31:08 +0100 | [diff] [blame] | 663 | return BATADV_DHCP_NO; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 664 | |
| 665 | break; |
Antonio Quartulli | f7f8ed5 | 2013-05-12 21:51:15 +0200 | [diff] [blame] | 666 | case htons(ETH_P_IPV6): |
Marek Lindner | be7af5c | 2011-09-08 13:12:53 +0200 | [diff] [blame] | 667 | if (!pskb_may_pull(skb, *header_len + sizeof(*ipv6hdr))) |
Antonio Quartulli | 6c413b1 | 2013-11-05 19:31:08 +0100 | [diff] [blame] | 668 | return BATADV_DHCP_NO; |
| 669 | |
Marek Lindner | be7af5c | 2011-09-08 13:12:53 +0200 | [diff] [blame] | 670 | ipv6hdr = (struct ipv6hdr *)(skb->data + *header_len); |
| 671 | *header_len += sizeof(*ipv6hdr); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 672 | |
| 673 | /* check for udp header */ |
| 674 | if (ipv6hdr->nexthdr != IPPROTO_UDP) |
Antonio Quartulli | 6c413b1 | 2013-11-05 19:31:08 +0100 | [diff] [blame] | 675 | return BATADV_DHCP_NO; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 676 | |
| 677 | break; |
| 678 | default: |
Antonio Quartulli | 6c413b1 | 2013-11-05 19:31:08 +0100 | [diff] [blame] | 679 | return BATADV_DHCP_NO; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 680 | } |
| 681 | |
Marek Lindner | be7af5c | 2011-09-08 13:12:53 +0200 | [diff] [blame] | 682 | if (!pskb_may_pull(skb, *header_len + sizeof(*udphdr))) |
Antonio Quartulli | 6c413b1 | 2013-11-05 19:31:08 +0100 | [diff] [blame] | 683 | return BATADV_DHCP_NO; |
Linus Lüssing | 9d2c948 | 2013-08-06 20:21:15 +0200 | [diff] [blame] | 684 | |
Marek Lindner | be7af5c | 2011-09-08 13:12:53 +0200 | [diff] [blame] | 685 | udphdr = (struct udphdr *)(skb->data + *header_len); |
| 686 | *header_len += sizeof(*udphdr); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 687 | |
| 688 | /* check for bootp port */ |
Antonio Quartulli | 6c413b1 | 2013-11-05 19:31:08 +0100 | [diff] [blame] | 689 | switch (proto) { |
| 690 | case htons(ETH_P_IP): |
| 691 | if (udphdr->dest == htons(67)) |
| 692 | ret = BATADV_DHCP_TO_SERVER; |
| 693 | else if (udphdr->source == htons(67)) |
| 694 | ret = BATADV_DHCP_TO_CLIENT; |
| 695 | break; |
| 696 | case htons(ETH_P_IPV6): |
| 697 | if (udphdr->dest == htons(547)) |
| 698 | ret = BATADV_DHCP_TO_SERVER; |
| 699 | else if (udphdr->source == htons(547)) |
| 700 | ret = BATADV_DHCP_TO_CLIENT; |
| 701 | break; |
| 702 | } |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 703 | |
Antonio Quartulli | 6c413b1 | 2013-11-05 19:31:08 +0100 | [diff] [blame] | 704 | chaddr_offset = *header_len + BATADV_DHCP_CHADDR_OFFSET; |
| 705 | /* store the client address if the message is going to a client */ |
| 706 | if (ret == BATADV_DHCP_TO_CLIENT && |
| 707 | pskb_may_pull(skb, chaddr_offset + ETH_ALEN)) { |
| 708 | /* check if the DHCP packet carries an Ethernet DHCP */ |
| 709 | p = skb->data + *header_len + BATADV_DHCP_HTYPE_OFFSET; |
| 710 | if (*p != BATADV_DHCP_HTYPE_ETHERNET) |
| 711 | return BATADV_DHCP_NO; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 712 | |
Antonio Quartulli | 6c413b1 | 2013-11-05 19:31:08 +0100 | [diff] [blame] | 713 | /* check if the DHCP packet carries a valid Ethernet address */ |
| 714 | p = skb->data + *header_len + BATADV_DHCP_HLEN_OFFSET; |
| 715 | if (*p != ETH_ALEN) |
| 716 | return BATADV_DHCP_NO; |
| 717 | |
Antonio Quartulli | 8fdd015 | 2014-01-22 00:42:11 +0100 | [diff] [blame] | 718 | ether_addr_copy(chaddr, skb->data + chaddr_offset); |
Antonio Quartulli | 6c413b1 | 2013-11-05 19:31:08 +0100 | [diff] [blame] | 719 | } |
| 720 | |
| 721 | return ret; |
Marek Lindner | be7af5c | 2011-09-08 13:12:53 +0200 | [diff] [blame] | 722 | } |
Antonio Quartulli | aa143d2 | 2014-09-01 14:37:27 +0200 | [diff] [blame] | 723 | |
Antonio Quartulli | bbb877e | 2013-06-04 12:11:42 +0200 | [diff] [blame] | 724 | /** |
Sven Eckelmann | 7e9a8c2 | 2017-12-02 19:51:47 +0100 | [diff] [blame] | 725 | * batadv_gw_out_of_range() - check if the dhcp request destination is the best |
| 726 | * gateway |
Antonio Quartulli | bbb877e | 2013-06-04 12:11:42 +0200 | [diff] [blame] | 727 | * @bat_priv: the bat priv with all the soft interface information |
| 728 | * @skb: the outgoing packet |
| 729 | * |
| 730 | * Check if the skb is a DHCP request and if it is sent to the current best GW |
| 731 | * server. Due to topology changes it may be the case that the GW server |
| 732 | * previously selected is not the best one anymore. |
| 733 | * |
Antonio Quartulli | bbb877e | 2013-06-04 12:11:42 +0200 | [diff] [blame] | 734 | * This call might reallocate skb data. |
Antonio Quartulli | 6c413b1 | 2013-11-05 19:31:08 +0100 | [diff] [blame] | 735 | * Must be invoked only when the DHCP packet is going TO a DHCP SERVER. |
Sven Eckelmann | 62fe710 | 2015-09-15 19:00:48 +0200 | [diff] [blame] | 736 | * |
| 737 | * Return: true if the packet destination is unicast and it is not the best gw, |
| 738 | * false otherwise. |
Antonio Quartulli | bbb877e | 2013-06-04 12:11:42 +0200 | [diff] [blame] | 739 | */ |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 740 | bool batadv_gw_out_of_range(struct batadv_priv *bat_priv, |
Linus Lüssing | 9d2c948 | 2013-08-06 20:21:15 +0200 | [diff] [blame] | 741 | struct sk_buff *skb) |
Marek Lindner | be7af5c | 2011-09-08 13:12:53 +0200 | [diff] [blame] | 742 | { |
Sven Eckelmann | 4f248cf | 2015-06-09 20:50:49 +0200 | [diff] [blame] | 743 | struct batadv_neigh_node *neigh_curr = NULL; |
| 744 | struct batadv_neigh_node *neigh_old = NULL; |
Linus Lüssing | a752c0a | 2018-03-22 00:21:32 +0100 | [diff] [blame] | 745 | struct batadv_orig_node *orig_dst_node = NULL; |
Sven Eckelmann | 4f248cf | 2015-06-09 20:50:49 +0200 | [diff] [blame] | 746 | struct batadv_gw_node *gw_node = NULL; |
| 747 | struct batadv_gw_node *curr_gw = NULL; |
Simon Wunderlich | 8965233 | 2013-11-13 19:14:46 +0100 | [diff] [blame] | 748 | struct batadv_neigh_ifinfo *curr_ifinfo, *old_ifinfo; |
Antonio Quartulli | 6c413b1 | 2013-11-05 19:31:08 +0100 | [diff] [blame] | 749 | struct ethhdr *ethhdr = (struct ethhdr *)skb->data; |
| 750 | bool out_of_range = false; |
Sven Eckelmann | 6b5e971 | 2015-05-26 18:34:26 +0200 | [diff] [blame] | 751 | u8 curr_tq_avg; |
Antonio Quartulli | bbb877e | 2013-06-04 12:11:42 +0200 | [diff] [blame] | 752 | unsigned short vid; |
| 753 | |
| 754 | vid = batadv_get_vid(skb, 0); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 755 | |
Linus Lüssing | a752c0a | 2018-03-22 00:21:32 +0100 | [diff] [blame] | 756 | if (is_multicast_ether_addr(ethhdr->h_dest)) |
| 757 | goto out; |
| 758 | |
Sven Eckelmann | 08c36d3 | 2012-05-12 02:09:39 +0200 | [diff] [blame] | 759 | orig_dst_node = batadv_transtable_search(bat_priv, ethhdr->h_source, |
Antonio Quartulli | bbb877e | 2013-06-04 12:11:42 +0200 | [diff] [blame] | 760 | ethhdr->h_dest, vid); |
Marek Lindner | be7af5c | 2011-09-08 13:12:53 +0200 | [diff] [blame] | 761 | if (!orig_dst_node) |
| 762 | goto out; |
| 763 | |
Marek Lindner | 414254e | 2013-04-23 21:39:58 +0800 | [diff] [blame] | 764 | gw_node = batadv_gw_node_get(bat_priv, orig_dst_node); |
Antonio Quartulli | 0d16449 | 2014-12-20 13:48:57 +0100 | [diff] [blame] | 765 | if (!gw_node) |
Marek Lindner | be7af5c | 2011-09-08 13:12:53 +0200 | [diff] [blame] | 766 | goto out; |
| 767 | |
Antonio Quartulli | 3a24a63 | 2016-05-06 02:46:38 +0800 | [diff] [blame] | 768 | switch (atomic_read(&bat_priv->gw.mode)) { |
Sven Eckelmann | cd646ab | 2012-06-03 22:19:18 +0200 | [diff] [blame] | 769 | case BATADV_GW_MODE_SERVER: |
Marek Lindner | be7af5c | 2011-09-08 13:12:53 +0200 | [diff] [blame] | 770 | /* If we are a GW then we are our best GW. We can artificially |
Sven Eckelmann | 9cfc7bd | 2012-05-12 02:09:43 +0200 | [diff] [blame] | 771 | * set the tq towards ourself as the maximum value |
| 772 | */ |
Sven Eckelmann | 42d0b04 | 2012-06-03 22:19:17 +0200 | [diff] [blame] | 773 | curr_tq_avg = BATADV_TQ_MAX_VALUE; |
Marek Lindner | be7af5c | 2011-09-08 13:12:53 +0200 | [diff] [blame] | 774 | break; |
Sven Eckelmann | cd646ab | 2012-06-03 22:19:18 +0200 | [diff] [blame] | 775 | case BATADV_GW_MODE_CLIENT: |
Sven Eckelmann | 1409a83 | 2012-05-12 18:33:55 +0200 | [diff] [blame] | 776 | curr_gw = batadv_gw_get_selected_gw_node(bat_priv); |
Marek Lindner | be7af5c | 2011-09-08 13:12:53 +0200 | [diff] [blame] | 777 | if (!curr_gw) |
| 778 | goto out; |
| 779 | |
| 780 | /* packet is going to our gateway */ |
| 781 | if (curr_gw->orig_node == orig_dst_node) |
| 782 | goto out; |
| 783 | |
| 784 | /* If the dhcp packet has been sent to a different gw, |
| 785 | * we have to evaluate whether the old gw is still |
Sven Eckelmann | 9cfc7bd | 2012-05-12 02:09:43 +0200 | [diff] [blame] | 786 | * reliable enough |
| 787 | */ |
Sven Eckelmann | 30d3c51 | 2012-05-12 02:09:36 +0200 | [diff] [blame] | 788 | neigh_curr = batadv_find_router(bat_priv, curr_gw->orig_node, |
| 789 | NULL); |
Marek Lindner | be7af5c | 2011-09-08 13:12:53 +0200 | [diff] [blame] | 790 | if (!neigh_curr) |
| 791 | goto out; |
| 792 | |
Simon Wunderlich | 8965233 | 2013-11-13 19:14:46 +0100 | [diff] [blame] | 793 | curr_ifinfo = batadv_neigh_ifinfo_get(neigh_curr, |
| 794 | BATADV_IF_DEFAULT); |
| 795 | if (!curr_ifinfo) |
| 796 | goto out; |
| 797 | |
| 798 | curr_tq_avg = curr_ifinfo->bat_iv.tq_avg; |
Sven Eckelmann | 044fa3a | 2016-01-17 11:01:12 +0100 | [diff] [blame] | 799 | batadv_neigh_ifinfo_put(curr_ifinfo); |
Simon Wunderlich | 8965233 | 2013-11-13 19:14:46 +0100 | [diff] [blame] | 800 | |
Marek Lindner | be7af5c | 2011-09-08 13:12:53 +0200 | [diff] [blame] | 801 | break; |
Sven Eckelmann | cd646ab | 2012-06-03 22:19:18 +0200 | [diff] [blame] | 802 | case BATADV_GW_MODE_OFF: |
Marek Lindner | be7af5c | 2011-09-08 13:12:53 +0200 | [diff] [blame] | 803 | default: |
| 804 | goto out; |
Antonio Quartulli | 43676ab | 2011-04-26 21:31:45 +0200 | [diff] [blame] | 805 | } |
Marek Lindner | be7af5c | 2011-09-08 13:12:53 +0200 | [diff] [blame] | 806 | |
Sven Eckelmann | 30d3c51 | 2012-05-12 02:09:36 +0200 | [diff] [blame] | 807 | neigh_old = batadv_find_router(bat_priv, orig_dst_node, NULL); |
Dan Carpenter | 2ef04f4 | 2011-11-29 09:09:09 +0300 | [diff] [blame] | 808 | if (!neigh_old) |
Marek Lindner | be7af5c | 2011-09-08 13:12:53 +0200 | [diff] [blame] | 809 | goto out; |
| 810 | |
Simon Wunderlich | 8965233 | 2013-11-13 19:14:46 +0100 | [diff] [blame] | 811 | old_ifinfo = batadv_neigh_ifinfo_get(neigh_old, BATADV_IF_DEFAULT); |
| 812 | if (!old_ifinfo) |
| 813 | goto out; |
| 814 | |
| 815 | if ((curr_tq_avg - old_ifinfo->bat_iv.tq_avg) > BATADV_GW_THRESHOLD) |
Marek Lindner | be7af5c | 2011-09-08 13:12:53 +0200 | [diff] [blame] | 816 | out_of_range = true; |
Sven Eckelmann | 044fa3a | 2016-01-17 11:01:12 +0100 | [diff] [blame] | 817 | batadv_neigh_ifinfo_put(old_ifinfo); |
Marek Lindner | be7af5c | 2011-09-08 13:12:53 +0200 | [diff] [blame] | 818 | |
| 819 | out: |
| 820 | if (orig_dst_node) |
Sven Eckelmann | 5d96731 | 2016-01-17 11:01:09 +0100 | [diff] [blame] | 821 | batadv_orig_node_put(orig_dst_node); |
Marek Lindner | be7af5c | 2011-09-08 13:12:53 +0200 | [diff] [blame] | 822 | if (curr_gw) |
Sven Eckelmann | 3a01743 | 2016-01-17 11:01:18 +0100 | [diff] [blame] | 823 | batadv_gw_node_put(curr_gw); |
Marek Lindner | 414254e | 2013-04-23 21:39:58 +0800 | [diff] [blame] | 824 | if (gw_node) |
Sven Eckelmann | 3a01743 | 2016-01-17 11:01:18 +0100 | [diff] [blame] | 825 | batadv_gw_node_put(gw_node); |
Antonio Quartulli | 43676ab | 2011-04-26 21:31:45 +0200 | [diff] [blame] | 826 | if (neigh_old) |
Sven Eckelmann | 25bb250 | 2016-01-17 11:01:11 +0100 | [diff] [blame] | 827 | batadv_neigh_node_put(neigh_old); |
Antonio Quartulli | 43676ab | 2011-04-26 21:31:45 +0200 | [diff] [blame] | 828 | if (neigh_curr) |
Sven Eckelmann | 25bb250 | 2016-01-17 11:01:11 +0100 | [diff] [blame] | 829 | batadv_neigh_node_put(neigh_curr); |
Marek Lindner | be7af5c | 2011-09-08 13:12:53 +0200 | [diff] [blame] | 830 | return out_of_range; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 831 | } |