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