Antonio Quartulli | 0b87393 | 2013-01-04 03:05:31 +0100 | [diff] [blame] | 1 | /* Copyright (C) 2009-2013 B.A.T.M.A.N. contributors: |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 2 | * |
| 3 | * Marek Lindner |
| 4 | * |
| 5 | * This program is free software; you can redistribute it and/or |
| 6 | * modify it under the terms of version 2 of the GNU General Public |
| 7 | * License as published by the Free Software Foundation. |
| 8 | * |
| 9 | * This program is distributed in the hope that it will be useful, but |
| 10 | * WITHOUT ANY WARRANTY; without even the implied warranty of |
| 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 12 | * General Public License for more details. |
| 13 | * |
| 14 | * You should have received a copy of the GNU General Public License |
Antonio Quartulli | ebf38fb | 2013-11-03 20:40:48 +0100 | [diff] [blame^] | 15 | * along with this program; if not, see <http://www.gnu.org/licenses/>. |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 16 | */ |
| 17 | |
| 18 | #include "main.h" |
Sven Eckelmann | b706b13 | 2012-06-10 23:58:51 +0200 | [diff] [blame] | 19 | #include "sysfs.h" |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 20 | #include "gateway_client.h" |
| 21 | #include "gateway_common.h" |
| 22 | #include "hard-interface.h" |
Linus Lüssing | 57f0c07 | 2011-03-14 22:43:33 +0000 | [diff] [blame] | 23 | #include "originator.h" |
Marek Lindner | be7af5c | 2011-09-08 13:12:53 +0200 | [diff] [blame] | 24 | #include "translation-table.h" |
Antonio Quartulli | 43676ab | 2011-04-26 21:31:45 +0200 | [diff] [blame] | 25 | #include "routing.h" |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 26 | #include <linux/ip.h> |
| 27 | #include <linux/ipv6.h> |
| 28 | #include <linux/udp.h> |
| 29 | #include <linux/if_vlan.h> |
| 30 | |
Antonio Quartulli | 43676ab | 2011-04-26 21:31:45 +0200 | [diff] [blame] | 31 | /* This is the offset of the options field in a dhcp packet starting at |
Sven Eckelmann | 9cfc7bd | 2012-05-12 02:09:43 +0200 | [diff] [blame] | 32 | * the beginning of the dhcp header |
| 33 | */ |
Sven Eckelmann | 347c80f | 2012-06-03 22:19:07 +0200 | [diff] [blame] | 34 | #define BATADV_DHCP_OPTIONS_OFFSET 240 |
| 35 | #define BATADV_DHCP_REQUEST 3 |
Antonio Quartulli | 43676ab | 2011-04-26 21:31:45 +0200 | [diff] [blame] | 36 | |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 37 | static void batadv_gw_node_free_ref(struct batadv_gw_node *gw_node) |
Marek Lindner | 25b6d3c | 2011-02-10 14:33:49 +0000 | [diff] [blame] | 38 | { |
| 39 | if (atomic_dec_and_test(&gw_node->refcount)) |
Paul E. McKenney | eb340b2 | 2011-05-01 23:25:02 -0700 | [diff] [blame] | 40 | kfree_rcu(gw_node, rcu); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 41 | } |
| 42 | |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 43 | static struct batadv_gw_node * |
| 44 | batadv_gw_get_selected_gw_node(struct batadv_priv *bat_priv) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 45 | { |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 46 | struct batadv_gw_node *gw_node; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 47 | |
Linus Lüssing | 5d02b3c | 2011-02-13 21:13:02 +0000 | [diff] [blame] | 48 | rcu_read_lock(); |
Sven Eckelmann | 807736f | 2012-07-15 22:26:51 +0200 | [diff] [blame] | 49 | gw_node = rcu_dereference(bat_priv->gw.curr_gw); |
Marek Lindner | c4aac1a | 2011-03-23 11:24:34 +0100 | [diff] [blame] | 50 | if (!gw_node) |
Linus Lüssing | 5d02b3c | 2011-02-13 21:13:02 +0000 | [diff] [blame] | 51 | goto out; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 52 | |
Marek Lindner | c4aac1a | 2011-03-23 11:24:34 +0100 | [diff] [blame] | 53 | if (!atomic_inc_not_zero(&gw_node->refcount)) |
| 54 | gw_node = NULL; |
| 55 | |
| 56 | out: |
| 57 | rcu_read_unlock(); |
| 58 | return gw_node; |
| 59 | } |
| 60 | |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 61 | struct batadv_orig_node * |
| 62 | batadv_gw_get_selected_orig(struct batadv_priv *bat_priv) |
Marek Lindner | c4aac1a | 2011-03-23 11:24:34 +0100 | [diff] [blame] | 63 | { |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 64 | struct batadv_gw_node *gw_node; |
| 65 | struct batadv_orig_node *orig_node = NULL; |
Marek Lindner | c4aac1a | 2011-03-23 11:24:34 +0100 | [diff] [blame] | 66 | |
Sven Eckelmann | 1409a83 | 2012-05-12 18:33:55 +0200 | [diff] [blame] | 67 | gw_node = batadv_gw_get_selected_gw_node(bat_priv); |
Marek Lindner | c4aac1a | 2011-03-23 11:24:34 +0100 | [diff] [blame] | 68 | if (!gw_node) |
Marek Lindner | 7b36e8e | 2011-02-18 12:28:10 +0000 | [diff] [blame] | 69 | goto out; |
Linus Lüssing | 5d02b3c | 2011-02-13 21:13:02 +0000 | [diff] [blame] | 70 | |
Marek Lindner | c4aac1a | 2011-03-23 11:24:34 +0100 | [diff] [blame] | 71 | rcu_read_lock(); |
| 72 | orig_node = gw_node->orig_node; |
| 73 | if (!orig_node) |
| 74 | goto unlock; |
| 75 | |
Marek Lindner | 7b36e8e | 2011-02-18 12:28:10 +0000 | [diff] [blame] | 76 | if (!atomic_inc_not_zero(&orig_node->refcount)) |
| 77 | orig_node = NULL; |
Linus Lüssing | 43c70ad | 2011-02-13 21:13:04 +0000 | [diff] [blame] | 78 | |
Marek Lindner | c4aac1a | 2011-03-23 11:24:34 +0100 | [diff] [blame] | 79 | unlock: |
Linus Lüssing | 5d02b3c | 2011-02-13 21:13:02 +0000 | [diff] [blame] | 80 | rcu_read_unlock(); |
Marek Lindner | c4aac1a | 2011-03-23 11:24:34 +0100 | [diff] [blame] | 81 | out: |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 82 | if (gw_node) |
Sven Eckelmann | 1409a83 | 2012-05-12 18:33:55 +0200 | [diff] [blame] | 83 | batadv_gw_node_free_ref(gw_node); |
Marek Lindner | c4aac1a | 2011-03-23 11:24:34 +0100 | [diff] [blame] | 84 | return orig_node; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 85 | } |
| 86 | |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 87 | static void batadv_gw_select(struct batadv_priv *bat_priv, |
| 88 | struct batadv_gw_node *new_gw_node) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 89 | { |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 90 | struct batadv_gw_node *curr_gw_node; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 91 | |
Sven Eckelmann | 807736f | 2012-07-15 22:26:51 +0200 | [diff] [blame] | 92 | spin_lock_bh(&bat_priv->gw.list_lock); |
Marek Lindner | c4aac1a | 2011-03-23 11:24:34 +0100 | [diff] [blame] | 93 | |
Marek Lindner | 25b6d3c | 2011-02-10 14:33:49 +0000 | [diff] [blame] | 94 | if (new_gw_node && !atomic_inc_not_zero(&new_gw_node->refcount)) |
| 95 | new_gw_node = NULL; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 96 | |
Sven Eckelmann | 807736f | 2012-07-15 22:26:51 +0200 | [diff] [blame] | 97 | curr_gw_node = rcu_dereference_protected(bat_priv->gw.curr_gw, 1); |
| 98 | rcu_assign_pointer(bat_priv->gw.curr_gw, new_gw_node); |
Marek Lindner | 25b6d3c | 2011-02-10 14:33:49 +0000 | [diff] [blame] | 99 | |
| 100 | if (curr_gw_node) |
Sven Eckelmann | 1409a83 | 2012-05-12 18:33:55 +0200 | [diff] [blame] | 101 | batadv_gw_node_free_ref(curr_gw_node); |
Marek Lindner | c4aac1a | 2011-03-23 11:24:34 +0100 | [diff] [blame] | 102 | |
Sven Eckelmann | 807736f | 2012-07-15 22:26:51 +0200 | [diff] [blame] | 103 | spin_unlock_bh(&bat_priv->gw.list_lock); |
Marek Lindner | c4aac1a | 2011-03-23 11:24:34 +0100 | [diff] [blame] | 104 | } |
| 105 | |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 106 | void batadv_gw_deselect(struct batadv_priv *bat_priv) |
Marek Lindner | c4aac1a | 2011-03-23 11:24:34 +0100 | [diff] [blame] | 107 | { |
Sven Eckelmann | 807736f | 2012-07-15 22:26:51 +0200 | [diff] [blame] | 108 | atomic_set(&bat_priv->gw.reselect, 1); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 109 | } |
| 110 | |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 111 | static struct batadv_gw_node * |
| 112 | batadv_gw_get_best_gw_node(struct batadv_priv *bat_priv) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 113 | { |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 114 | struct batadv_neigh_node *router; |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 115 | struct batadv_gw_node *gw_node, *curr_gw = NULL; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 116 | uint32_t max_gw_factor = 0, tmp_gw_factor = 0; |
Sven Eckelmann | c67893d | 2012-07-08 18:33:51 +0200 | [diff] [blame] | 117 | uint32_t gw_divisor; |
Antonio Quartulli | 2265c14 | 2011-04-27 00:22:00 +0200 | [diff] [blame] | 118 | uint8_t max_tq = 0; |
Sven Eckelmann | c67893d | 2012-07-08 18:33:51 +0200 | [diff] [blame] | 119 | uint8_t tq_avg; |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 120 | struct batadv_orig_node *orig_node; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 121 | |
Sven Eckelmann | c67893d | 2012-07-08 18:33:51 +0200 | [diff] [blame] | 122 | gw_divisor = BATADV_TQ_LOCAL_WINDOW_SIZE * BATADV_TQ_LOCAL_WINDOW_SIZE; |
| 123 | gw_divisor *= 64; |
| 124 | |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 125 | rcu_read_lock(); |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 126 | hlist_for_each_entry_rcu(gw_node, &bat_priv->gw.list, list) { |
Linus Lüssing | e1a5382f | 2011-03-14 22:43:37 +0000 | [diff] [blame] | 127 | if (gw_node->deleted) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 128 | continue; |
| 129 | |
Sven Eckelmann | 84d5e5e | 2012-05-12 02:09:30 +0200 | [diff] [blame] | 130 | orig_node = gw_node->orig_node; |
Sven Eckelmann | 7d211ef | 2012-05-12 02:09:34 +0200 | [diff] [blame] | 131 | router = batadv_orig_node_get_router(orig_node); |
Linus Lüssing | e1a5382f | 2011-03-14 22:43:37 +0000 | [diff] [blame] | 132 | if (!router) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 133 | continue; |
| 134 | |
Antonio Quartulli | 2265c14 | 2011-04-27 00:22:00 +0200 | [diff] [blame] | 135 | if (!atomic_inc_not_zero(&gw_node->refcount)) |
| 136 | goto next; |
| 137 | |
Antonio Quartulli | 0538f759 | 2013-09-02 12:15:01 +0200 | [diff] [blame] | 138 | tq_avg = router->bat_iv.tq_avg; |
Sven Eckelmann | c67893d | 2012-07-08 18:33:51 +0200 | [diff] [blame] | 139 | |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 140 | switch (atomic_read(&bat_priv->gw_sel_class)) { |
| 141 | case 1: /* fast connection */ |
Marek Lindner | 414254e | 2013-04-23 21:39:58 +0800 | [diff] [blame] | 142 | tmp_gw_factor = tq_avg * tq_avg; |
| 143 | tmp_gw_factor *= gw_node->bandwidth_down; |
| 144 | tmp_gw_factor *= 100 * 100; |
Sven Eckelmann | c67893d | 2012-07-08 18:33:51 +0200 | [diff] [blame] | 145 | tmp_gw_factor /= gw_divisor; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 146 | |
| 147 | if ((tmp_gw_factor > max_gw_factor) || |
| 148 | ((tmp_gw_factor == max_gw_factor) && |
Sven Eckelmann | c67893d | 2012-07-08 18:33:51 +0200 | [diff] [blame] | 149 | (tq_avg > max_tq))) { |
Antonio Quartulli | 2265c14 | 2011-04-27 00:22:00 +0200 | [diff] [blame] | 150 | if (curr_gw) |
Sven Eckelmann | 1409a83 | 2012-05-12 18:33:55 +0200 | [diff] [blame] | 151 | batadv_gw_node_free_ref(curr_gw); |
Antonio Quartulli | 2265c14 | 2011-04-27 00:22:00 +0200 | [diff] [blame] | 152 | curr_gw = gw_node; |
| 153 | atomic_inc(&curr_gw->refcount); |
| 154 | } |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 155 | break; |
| 156 | |
Sven Eckelmann | 9cfc7bd | 2012-05-12 02:09:43 +0200 | [diff] [blame] | 157 | default: /* 2: stable connection (use best statistic) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 158 | * 3: fast-switch (use best statistic but change as |
| 159 | * soon as a better gateway appears) |
| 160 | * XX: late-switch (use best statistic but change as |
| 161 | * soon as a better gateway appears which has |
| 162 | * $routing_class more tq points) |
Sven Eckelmann | 9cfc7bd | 2012-05-12 02:09:43 +0200 | [diff] [blame] | 163 | */ |
Sven Eckelmann | c67893d | 2012-07-08 18:33:51 +0200 | [diff] [blame] | 164 | if (tq_avg > max_tq) { |
Antonio Quartulli | 2265c14 | 2011-04-27 00:22:00 +0200 | [diff] [blame] | 165 | if (curr_gw) |
Sven Eckelmann | 1409a83 | 2012-05-12 18:33:55 +0200 | [diff] [blame] | 166 | batadv_gw_node_free_ref(curr_gw); |
Antonio Quartulli | 2265c14 | 2011-04-27 00:22:00 +0200 | [diff] [blame] | 167 | curr_gw = gw_node; |
| 168 | atomic_inc(&curr_gw->refcount); |
| 169 | } |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 170 | break; |
| 171 | } |
| 172 | |
Sven Eckelmann | c67893d | 2012-07-08 18:33:51 +0200 | [diff] [blame] | 173 | if (tq_avg > max_tq) |
| 174 | max_tq = tq_avg; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 175 | |
| 176 | if (tmp_gw_factor > max_gw_factor) |
| 177 | max_gw_factor = tmp_gw_factor; |
Linus Lüssing | e1a5382f | 2011-03-14 22:43:37 +0000 | [diff] [blame] | 178 | |
Sven Eckelmann | 1409a83 | 2012-05-12 18:33:55 +0200 | [diff] [blame] | 179 | batadv_gw_node_free_ref(gw_node); |
Antonio Quartulli | 2265c14 | 2011-04-27 00:22:00 +0200 | [diff] [blame] | 180 | |
| 181 | next: |
Sven Eckelmann | 7d211ef | 2012-05-12 02:09:34 +0200 | [diff] [blame] | 182 | batadv_neigh_node_free_ref(router); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 183 | } |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 184 | rcu_read_unlock(); |
Antonio Quartulli | 2265c14 | 2011-04-27 00:22:00 +0200 | [diff] [blame] | 185 | |
| 186 | return curr_gw; |
| 187 | } |
| 188 | |
Antonio Quartulli | c6eaa3f | 2013-07-13 00:06:00 +0200 | [diff] [blame] | 189 | /** |
| 190 | * batadv_gw_check_client_stop - check if client mode has been switched off |
| 191 | * @bat_priv: the bat priv with all the soft interface information |
| 192 | * |
| 193 | * This function assumes the caller has checked that the gw state *is actually |
| 194 | * changing*. This function is not supposed to be called when there is no state |
| 195 | * change. |
| 196 | */ |
| 197 | void batadv_gw_check_client_stop(struct batadv_priv *bat_priv) |
| 198 | { |
| 199 | struct batadv_gw_node *curr_gw; |
| 200 | |
| 201 | if (atomic_read(&bat_priv->gw_mode) != BATADV_GW_MODE_CLIENT) |
| 202 | return; |
| 203 | |
| 204 | curr_gw = batadv_gw_get_selected_gw_node(bat_priv); |
| 205 | if (!curr_gw) |
| 206 | return; |
| 207 | |
| 208 | /* if batman-adv is switching the gw client mode off and a gateway was |
| 209 | * already selected, send a DEL uevent |
| 210 | */ |
| 211 | batadv_throw_uevent(bat_priv, BATADV_UEV_GW, BATADV_UEV_DEL, NULL); |
| 212 | |
| 213 | batadv_gw_node_free_ref(curr_gw); |
| 214 | } |
| 215 | |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 216 | void batadv_gw_election(struct batadv_priv *bat_priv) |
Antonio Quartulli | 2265c14 | 2011-04-27 00:22:00 +0200 | [diff] [blame] | 217 | { |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 218 | struct batadv_gw_node *curr_gw = NULL, *next_gw = NULL; |
| 219 | struct batadv_neigh_node *router = NULL; |
Antonio Quartulli | 19595e0 | 2011-06-12 11:58:58 +0200 | [diff] [blame] | 220 | char gw_addr[18] = { '\0' }; |
Antonio Quartulli | 2265c14 | 2011-04-27 00:22:00 +0200 | [diff] [blame] | 221 | |
Sven Eckelmann | cd646ab | 2012-06-03 22:19:18 +0200 | [diff] [blame] | 222 | if (atomic_read(&bat_priv->gw_mode) != BATADV_GW_MODE_CLIENT) |
Antonio Quartulli | 2265c14 | 2011-04-27 00:22:00 +0200 | [diff] [blame] | 223 | goto out; |
| 224 | |
Sven Eckelmann | 1409a83 | 2012-05-12 18:33:55 +0200 | [diff] [blame] | 225 | curr_gw = batadv_gw_get_selected_gw_node(bat_priv); |
Antonio Quartulli | 2265c14 | 2011-04-27 00:22:00 +0200 | [diff] [blame] | 226 | |
Sven Eckelmann | 807736f | 2012-07-15 22:26:51 +0200 | [diff] [blame] | 227 | if (!batadv_atomic_dec_not_zero(&bat_priv->gw.reselect) && curr_gw) |
Marek Lindner | caa0bf6 | 2012-08-04 04:13:26 +0000 | [diff] [blame] | 228 | goto out; |
| 229 | |
Sven Eckelmann | 1409a83 | 2012-05-12 18:33:55 +0200 | [diff] [blame] | 230 | next_gw = batadv_gw_get_best_gw_node(bat_priv); |
Antonio Quartulli | 2265c14 | 2011-04-27 00:22:00 +0200 | [diff] [blame] | 231 | |
| 232 | if (curr_gw == next_gw) |
| 233 | goto out; |
| 234 | |
| 235 | if (next_gw) { |
Antonio Quartulli | 19595e0 | 2011-06-12 11:58:58 +0200 | [diff] [blame] | 236 | sprintf(gw_addr, "%pM", next_gw->orig_node->orig); |
| 237 | |
Sven Eckelmann | 7d211ef | 2012-05-12 02:09:34 +0200 | [diff] [blame] | 238 | router = batadv_orig_node_get_router(next_gw->orig_node); |
Antonio Quartulli | 2265c14 | 2011-04-27 00:22:00 +0200 | [diff] [blame] | 239 | if (!router) { |
Sven Eckelmann | 7cf06bc | 2012-05-12 02:09:29 +0200 | [diff] [blame] | 240 | batadv_gw_deselect(bat_priv); |
Antonio Quartulli | 2265c14 | 2011-04-27 00:22:00 +0200 | [diff] [blame] | 241 | goto out; |
| 242 | } |
| 243 | } |
| 244 | |
| 245 | if ((curr_gw) && (!next_gw)) { |
Sven Eckelmann | 39c75a5 | 2012-06-03 22:19:22 +0200 | [diff] [blame] | 246 | batadv_dbg(BATADV_DBG_BATMAN, bat_priv, |
Sven Eckelmann | 1eda58b | 2012-05-12 13:48:58 +0200 | [diff] [blame] | 247 | "Removing selected gateway - no gateway in range\n"); |
Sven Eckelmann | 39c75a5 | 2012-06-03 22:19:22 +0200 | [diff] [blame] | 248 | batadv_throw_uevent(bat_priv, BATADV_UEV_GW, BATADV_UEV_DEL, |
| 249 | NULL); |
Antonio Quartulli | 2265c14 | 2011-04-27 00:22:00 +0200 | [diff] [blame] | 250 | } else if ((!curr_gw) && (next_gw)) { |
Sven Eckelmann | 39c75a5 | 2012-06-03 22:19:22 +0200 | [diff] [blame] | 251 | batadv_dbg(BATADV_DBG_BATMAN, bat_priv, |
Marek Lindner | 414254e | 2013-04-23 21:39:58 +0800 | [diff] [blame] | 252 | "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] | 253 | next_gw->orig_node->orig, |
Marek Lindner | 414254e | 2013-04-23 21:39:58 +0800 | [diff] [blame] | 254 | next_gw->bandwidth_down / 10, |
| 255 | next_gw->bandwidth_down % 10, |
| 256 | next_gw->bandwidth_up / 10, |
Antonio Quartulli | 0538f759 | 2013-09-02 12:15:01 +0200 | [diff] [blame] | 257 | next_gw->bandwidth_up % 10, router->bat_iv.tq_avg); |
Sven Eckelmann | 39c75a5 | 2012-06-03 22:19:22 +0200 | [diff] [blame] | 258 | batadv_throw_uevent(bat_priv, BATADV_UEV_GW, BATADV_UEV_ADD, |
| 259 | gw_addr); |
Antonio Quartulli | 2265c14 | 2011-04-27 00:22:00 +0200 | [diff] [blame] | 260 | } else { |
Sven Eckelmann | 39c75a5 | 2012-06-03 22:19:22 +0200 | [diff] [blame] | 261 | batadv_dbg(BATADV_DBG_BATMAN, bat_priv, |
Marek Lindner | 414254e | 2013-04-23 21:39:58 +0800 | [diff] [blame] | 262 | "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] | 263 | next_gw->orig_node->orig, |
Marek Lindner | 414254e | 2013-04-23 21:39:58 +0800 | [diff] [blame] | 264 | next_gw->bandwidth_down / 10, |
| 265 | next_gw->bandwidth_down % 10, |
| 266 | next_gw->bandwidth_up / 10, |
Antonio Quartulli | 0538f759 | 2013-09-02 12:15:01 +0200 | [diff] [blame] | 267 | next_gw->bandwidth_up % 10, router->bat_iv.tq_avg); |
Sven Eckelmann | 39c75a5 | 2012-06-03 22:19:22 +0200 | [diff] [blame] | 268 | batadv_throw_uevent(bat_priv, BATADV_UEV_GW, BATADV_UEV_CHANGE, |
| 269 | gw_addr); |
Antonio Quartulli | 2265c14 | 2011-04-27 00:22:00 +0200 | [diff] [blame] | 270 | } |
| 271 | |
Sven Eckelmann | 1409a83 | 2012-05-12 18:33:55 +0200 | [diff] [blame] | 272 | batadv_gw_select(bat_priv, next_gw); |
Antonio Quartulli | 2265c14 | 2011-04-27 00:22:00 +0200 | [diff] [blame] | 273 | |
Marek Lindner | c4aac1a | 2011-03-23 11:24:34 +0100 | [diff] [blame] | 274 | out: |
| 275 | if (curr_gw) |
Sven Eckelmann | 1409a83 | 2012-05-12 18:33:55 +0200 | [diff] [blame] | 276 | batadv_gw_node_free_ref(curr_gw); |
Antonio Quartulli | 2265c14 | 2011-04-27 00:22:00 +0200 | [diff] [blame] | 277 | if (next_gw) |
Sven Eckelmann | 1409a83 | 2012-05-12 18:33:55 +0200 | [diff] [blame] | 278 | batadv_gw_node_free_ref(next_gw); |
Antonio Quartulli | 2265c14 | 2011-04-27 00:22:00 +0200 | [diff] [blame] | 279 | if (router) |
Sven Eckelmann | 7d211ef | 2012-05-12 02:09:34 +0200 | [diff] [blame] | 280 | batadv_neigh_node_free_ref(router); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 281 | } |
| 282 | |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 283 | void batadv_gw_check_election(struct batadv_priv *bat_priv, |
| 284 | struct batadv_orig_node *orig_node) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 285 | { |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 286 | struct batadv_orig_node *curr_gw_orig; |
| 287 | struct batadv_neigh_node *router_gw = NULL, *router_orig = NULL; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 288 | uint8_t gw_tq_avg, orig_tq_avg; |
| 289 | |
Sven Eckelmann | 7cf06bc | 2012-05-12 02:09:29 +0200 | [diff] [blame] | 290 | curr_gw_orig = batadv_gw_get_selected_orig(bat_priv); |
Linus Lüssing | 57f0c07 | 2011-03-14 22:43:33 +0000 | [diff] [blame] | 291 | if (!curr_gw_orig) |
| 292 | goto deselect; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 293 | |
Sven Eckelmann | 7d211ef | 2012-05-12 02:09:34 +0200 | [diff] [blame] | 294 | router_gw = batadv_orig_node_get_router(curr_gw_orig); |
Linus Lüssing | e1a5382f | 2011-03-14 22:43:37 +0000 | [diff] [blame] | 295 | if (!router_gw) |
| 296 | goto deselect; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 297 | |
| 298 | /* this node already is the gateway */ |
Linus Lüssing | 57f0c07 | 2011-03-14 22:43:33 +0000 | [diff] [blame] | 299 | if (curr_gw_orig == orig_node) |
Linus Lüssing | e1a5382f | 2011-03-14 22:43:37 +0000 | [diff] [blame] | 300 | goto out; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 301 | |
Sven Eckelmann | 7d211ef | 2012-05-12 02:09:34 +0200 | [diff] [blame] | 302 | router_orig = batadv_orig_node_get_router(orig_node); |
Linus Lüssing | e1a5382f | 2011-03-14 22:43:37 +0000 | [diff] [blame] | 303 | if (!router_orig) |
| 304 | goto out; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 305 | |
Antonio Quartulli | 0538f759 | 2013-09-02 12:15:01 +0200 | [diff] [blame] | 306 | gw_tq_avg = router_gw->bat_iv.tq_avg; |
| 307 | orig_tq_avg = router_orig->bat_iv.tq_avg; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 308 | |
| 309 | /* the TQ value has to be better */ |
| 310 | if (orig_tq_avg < gw_tq_avg) |
Linus Lüssing | 5d02b3c | 2011-02-13 21:13:02 +0000 | [diff] [blame] | 311 | goto out; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 312 | |
Sven Eckelmann | 9cfc7bd | 2012-05-12 02:09:43 +0200 | [diff] [blame] | 313 | /* if the routing class is greater than 3 the value tells us how much |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 314 | * greater the TQ value of the new gateway must be |
Sven Eckelmann | 9cfc7bd | 2012-05-12 02:09:43 +0200 | [diff] [blame] | 315 | */ |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 316 | if ((atomic_read(&bat_priv->gw_sel_class) > 3) && |
| 317 | (orig_tq_avg - gw_tq_avg < atomic_read(&bat_priv->gw_sel_class))) |
Linus Lüssing | 5d02b3c | 2011-02-13 21:13:02 +0000 | [diff] [blame] | 318 | goto out; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 319 | |
Sven Eckelmann | 39c75a5 | 2012-06-03 22:19:22 +0200 | [diff] [blame] | 320 | batadv_dbg(BATADV_DBG_BATMAN, bat_priv, |
Sven Eckelmann | 1eda58b | 2012-05-12 13:48:58 +0200 | [diff] [blame] | 321 | "Restarting gateway selection: better gateway found (tq curr: %i, tq new: %i)\n", |
| 322 | gw_tq_avg, orig_tq_avg); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 323 | |
| 324 | deselect: |
Sven Eckelmann | 7cf06bc | 2012-05-12 02:09:29 +0200 | [diff] [blame] | 325 | batadv_gw_deselect(bat_priv); |
Linus Lüssing | 5d02b3c | 2011-02-13 21:13:02 +0000 | [diff] [blame] | 326 | out: |
Linus Lüssing | 57f0c07 | 2011-03-14 22:43:33 +0000 | [diff] [blame] | 327 | if (curr_gw_orig) |
Sven Eckelmann | 7d211ef | 2012-05-12 02:09:34 +0200 | [diff] [blame] | 328 | batadv_orig_node_free_ref(curr_gw_orig); |
Linus Lüssing | e1a5382f | 2011-03-14 22:43:37 +0000 | [diff] [blame] | 329 | if (router_gw) |
Sven Eckelmann | 7d211ef | 2012-05-12 02:09:34 +0200 | [diff] [blame] | 330 | batadv_neigh_node_free_ref(router_gw); |
Linus Lüssing | e1a5382f | 2011-03-14 22:43:37 +0000 | [diff] [blame] | 331 | if (router_orig) |
Sven Eckelmann | 7d211ef | 2012-05-12 02:09:34 +0200 | [diff] [blame] | 332 | batadv_neigh_node_free_ref(router_orig); |
Linus Lüssing | 57f0c07 | 2011-03-14 22:43:33 +0000 | [diff] [blame] | 333 | |
Linus Lüssing | 5d02b3c | 2011-02-13 21:13:02 +0000 | [diff] [blame] | 334 | return; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 335 | } |
| 336 | |
Marek Lindner | 414254e | 2013-04-23 21:39:58 +0800 | [diff] [blame] | 337 | /** |
| 338 | * batadv_gw_node_add - add gateway node to list of available gateways |
| 339 | * @bat_priv: the bat priv with all the soft interface information |
| 340 | * @orig_node: originator announcing gateway capabilities |
| 341 | * @gateway: announced bandwidth information |
| 342 | */ |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 343 | static void batadv_gw_node_add(struct batadv_priv *bat_priv, |
| 344 | struct batadv_orig_node *orig_node, |
Marek Lindner | 414254e | 2013-04-23 21:39:58 +0800 | [diff] [blame] | 345 | struct batadv_tvlv_gateway_data *gateway) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 346 | { |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 347 | struct batadv_gw_node *gw_node; |
Marek Lindner | 414254e | 2013-04-23 21:39:58 +0800 | [diff] [blame] | 348 | |
| 349 | if (gateway->bandwidth_down == 0) |
| 350 | return; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 351 | |
Sven Eckelmann | 704509b | 2011-05-14 23:14:54 +0200 | [diff] [blame] | 352 | gw_node = kzalloc(sizeof(*gw_node), GFP_ATOMIC); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 353 | if (!gw_node) |
| 354 | return; |
| 355 | |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 356 | INIT_HLIST_NODE(&gw_node->list); |
| 357 | gw_node->orig_node = orig_node; |
Marek Lindner | 25b6d3c | 2011-02-10 14:33:49 +0000 | [diff] [blame] | 358 | atomic_set(&gw_node->refcount, 1); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 359 | |
Sven Eckelmann | 807736f | 2012-07-15 22:26:51 +0200 | [diff] [blame] | 360 | spin_lock_bh(&bat_priv->gw.list_lock); |
| 361 | hlist_add_head_rcu(&gw_node->list, &bat_priv->gw.list); |
| 362 | spin_unlock_bh(&bat_priv->gw.list_lock); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 363 | |
Sven Eckelmann | 39c75a5 | 2012-06-03 22:19:22 +0200 | [diff] [blame] | 364 | batadv_dbg(BATADV_DBG_BATMAN, bat_priv, |
Marek Lindner | 414254e | 2013-04-23 21:39:58 +0800 | [diff] [blame] | 365 | "Found new gateway %pM -> gw bandwidth: %u.%u/%u.%u MBit\n", |
| 366 | orig_node->orig, |
| 367 | ntohl(gateway->bandwidth_down) / 10, |
| 368 | ntohl(gateway->bandwidth_down) % 10, |
| 369 | ntohl(gateway->bandwidth_up) / 10, |
| 370 | ntohl(gateway->bandwidth_up) % 10); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 371 | } |
| 372 | |
Marek Lindner | 414254e | 2013-04-23 21:39:58 +0800 | [diff] [blame] | 373 | /** |
| 374 | * batadv_gw_node_get - retrieve gateway node from list of available gateways |
| 375 | * @bat_priv: the bat priv with all the soft interface information |
| 376 | * @orig_node: originator announcing gateway capabilities |
| 377 | * |
| 378 | * Returns gateway node if found or NULL otherwise. |
| 379 | */ |
| 380 | static struct batadv_gw_node * |
| 381 | batadv_gw_node_get(struct batadv_priv *bat_priv, |
| 382 | struct batadv_orig_node *orig_node) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 383 | { |
Marek Lindner | 414254e | 2013-04-23 21:39:58 +0800 | [diff] [blame] | 384 | struct batadv_gw_node *gw_node_tmp, *gw_node = NULL; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 385 | |
| 386 | rcu_read_lock(); |
Marek Lindner | 414254e | 2013-04-23 21:39:58 +0800 | [diff] [blame] | 387 | hlist_for_each_entry_rcu(gw_node_tmp, &bat_priv->gw.list, list) { |
| 388 | if (gw_node_tmp->orig_node != orig_node) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 389 | continue; |
| 390 | |
Marek Lindner | 414254e | 2013-04-23 21:39:58 +0800 | [diff] [blame] | 391 | if (gw_node_tmp->deleted) |
| 392 | continue; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 393 | |
Marek Lindner | 414254e | 2013-04-23 21:39:58 +0800 | [diff] [blame] | 394 | if (!atomic_inc_not_zero(&gw_node_tmp->refcount)) |
| 395 | continue; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 396 | |
Marek Lindner | 414254e | 2013-04-23 21:39:58 +0800 | [diff] [blame] | 397 | gw_node = gw_node_tmp; |
| 398 | break; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 399 | } |
Marek Lindner | c4aac1a | 2011-03-23 11:24:34 +0100 | [diff] [blame] | 400 | rcu_read_unlock(); |
Antonio Quartulli | 71e4aa9 | 2011-04-25 22:44:32 +0200 | [diff] [blame] | 401 | |
Marek Lindner | 414254e | 2013-04-23 21:39:58 +0800 | [diff] [blame] | 402 | return gw_node; |
| 403 | } |
| 404 | |
| 405 | /** |
| 406 | * batadv_gw_node_update - update list of available gateways with changed |
| 407 | * bandwidth information |
| 408 | * @bat_priv: the bat priv with all the soft interface information |
| 409 | * @orig_node: originator announcing gateway capabilities |
| 410 | * @gateway: announced bandwidth information |
| 411 | */ |
| 412 | void batadv_gw_node_update(struct batadv_priv *bat_priv, |
| 413 | struct batadv_orig_node *orig_node, |
| 414 | struct batadv_tvlv_gateway_data *gateway) |
| 415 | { |
| 416 | struct batadv_gw_node *gw_node, *curr_gw = NULL; |
| 417 | |
| 418 | gw_node = batadv_gw_node_get(bat_priv, orig_node); |
| 419 | if (!gw_node) { |
| 420 | batadv_gw_node_add(bat_priv, orig_node, gateway); |
| 421 | goto out; |
| 422 | } |
| 423 | |
| 424 | if ((gw_node->bandwidth_down == ntohl(gateway->bandwidth_down)) && |
| 425 | (gw_node->bandwidth_up == ntohl(gateway->bandwidth_up))) |
| 426 | goto out; |
| 427 | |
| 428 | batadv_dbg(BATADV_DBG_BATMAN, bat_priv, |
| 429 | "Gateway bandwidth of originator %pM changed from %u.%u/%u.%u MBit to %u.%u/%u.%u MBit\n", |
| 430 | orig_node->orig, |
| 431 | gw_node->bandwidth_down / 10, |
| 432 | gw_node->bandwidth_down % 10, |
| 433 | gw_node->bandwidth_up / 10, |
| 434 | gw_node->bandwidth_up % 10, |
| 435 | ntohl(gateway->bandwidth_down) / 10, |
| 436 | ntohl(gateway->bandwidth_down) % 10, |
| 437 | ntohl(gateway->bandwidth_up) / 10, |
| 438 | ntohl(gateway->bandwidth_up) % 10); |
| 439 | |
| 440 | gw_node->bandwidth_down = ntohl(gateway->bandwidth_down); |
| 441 | gw_node->bandwidth_up = ntohl(gateway->bandwidth_up); |
| 442 | |
| 443 | gw_node->deleted = 0; |
| 444 | if (ntohl(gateway->bandwidth_down) == 0) { |
| 445 | gw_node->deleted = jiffies; |
| 446 | batadv_dbg(BATADV_DBG_BATMAN, bat_priv, |
| 447 | "Gateway %pM removed from gateway list\n", |
| 448 | orig_node->orig); |
| 449 | |
| 450 | /* Note: We don't need a NULL check here, since curr_gw never |
| 451 | * gets dereferenced. |
| 452 | */ |
| 453 | curr_gw = batadv_gw_get_selected_gw_node(bat_priv); |
| 454 | if (gw_node == curr_gw) |
| 455 | batadv_gw_deselect(bat_priv); |
| 456 | } |
| 457 | |
| 458 | out: |
Marek Lindner | c4aac1a | 2011-03-23 11:24:34 +0100 | [diff] [blame] | 459 | if (curr_gw) |
Sven Eckelmann | 1409a83 | 2012-05-12 18:33:55 +0200 | [diff] [blame] | 460 | batadv_gw_node_free_ref(curr_gw); |
Marek Lindner | 414254e | 2013-04-23 21:39:58 +0800 | [diff] [blame] | 461 | if (gw_node) |
| 462 | batadv_gw_node_free_ref(gw_node); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 463 | } |
| 464 | |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 465 | void batadv_gw_node_delete(struct batadv_priv *bat_priv, |
| 466 | struct batadv_orig_node *orig_node) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 467 | { |
Marek Lindner | 414254e | 2013-04-23 21:39:58 +0800 | [diff] [blame] | 468 | struct batadv_tvlv_gateway_data gateway; |
| 469 | |
| 470 | gateway.bandwidth_down = 0; |
| 471 | gateway.bandwidth_up = 0; |
| 472 | |
| 473 | batadv_gw_node_update(bat_priv, orig_node, &gateway); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 474 | } |
| 475 | |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 476 | void batadv_gw_node_purge(struct batadv_priv *bat_priv) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 477 | { |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 478 | struct batadv_gw_node *gw_node, *curr_gw; |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 479 | struct hlist_node *node_tmp; |
Sven Eckelmann | 42d0b04 | 2012-06-03 22:19:17 +0200 | [diff] [blame] | 480 | unsigned long timeout = msecs_to_jiffies(2 * BATADV_PURGE_TIMEOUT); |
Sven Eckelmann | b4e1705 | 2011-06-15 09:41:37 +0200 | [diff] [blame] | 481 | int do_deselect = 0; |
Marek Lindner | c4aac1a | 2011-03-23 11:24:34 +0100 | [diff] [blame] | 482 | |
Sven Eckelmann | 1409a83 | 2012-05-12 18:33:55 +0200 | [diff] [blame] | 483 | curr_gw = batadv_gw_get_selected_gw_node(bat_priv); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 484 | |
Sven Eckelmann | 807736f | 2012-07-15 22:26:51 +0200 | [diff] [blame] | 485 | spin_lock_bh(&bat_priv->gw.list_lock); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 486 | |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 487 | hlist_for_each_entry_safe(gw_node, node_tmp, |
Sven Eckelmann | 807736f | 2012-07-15 22:26:51 +0200 | [diff] [blame] | 488 | &bat_priv->gw.list, list) { |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 489 | if (((!gw_node->deleted) || |
| 490 | (time_before(jiffies, gw_node->deleted + timeout))) && |
Sven Eckelmann | 39c75a5 | 2012-06-03 22:19:22 +0200 | [diff] [blame] | 491 | atomic_read(&bat_priv->mesh_state) == BATADV_MESH_ACTIVE) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 492 | continue; |
| 493 | |
Marek Lindner | c4aac1a | 2011-03-23 11:24:34 +0100 | [diff] [blame] | 494 | if (curr_gw == gw_node) |
| 495 | do_deselect = 1; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 496 | |
| 497 | hlist_del_rcu(&gw_node->list); |
Sven Eckelmann | 1409a83 | 2012-05-12 18:33:55 +0200 | [diff] [blame] | 498 | batadv_gw_node_free_ref(gw_node); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 499 | } |
| 500 | |
Sven Eckelmann | 807736f | 2012-07-15 22:26:51 +0200 | [diff] [blame] | 501 | spin_unlock_bh(&bat_priv->gw.list_lock); |
Marek Lindner | c4aac1a | 2011-03-23 11:24:34 +0100 | [diff] [blame] | 502 | |
| 503 | /* gw_deselect() needs to acquire the gw_list_lock */ |
| 504 | if (do_deselect) |
Sven Eckelmann | 7cf06bc | 2012-05-12 02:09:29 +0200 | [diff] [blame] | 505 | batadv_gw_deselect(bat_priv); |
Marek Lindner | c4aac1a | 2011-03-23 11:24:34 +0100 | [diff] [blame] | 506 | |
| 507 | if (curr_gw) |
Sven Eckelmann | 1409a83 | 2012-05-12 18:33:55 +0200 | [diff] [blame] | 508 | batadv_gw_node_free_ref(curr_gw); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 509 | } |
| 510 | |
Sven Eckelmann | 9cfc7bd | 2012-05-12 02:09:43 +0200 | [diff] [blame] | 511 | /* fails if orig_node has no router */ |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 512 | static int batadv_write_buffer_text(struct batadv_priv *bat_priv, |
| 513 | struct seq_file *seq, |
| 514 | const struct batadv_gw_node *gw_node) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 515 | { |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 516 | struct batadv_gw_node *curr_gw; |
| 517 | struct batadv_neigh_node *router; |
Marek Lindner | 414254e | 2013-04-23 21:39:58 +0800 | [diff] [blame] | 518 | int ret = -1; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 519 | |
Sven Eckelmann | 7d211ef | 2012-05-12 02:09:34 +0200 | [diff] [blame] | 520 | router = batadv_orig_node_get_router(gw_node->orig_node); |
Linus Lüssing | e1a5382f | 2011-03-14 22:43:37 +0000 | [diff] [blame] | 521 | if (!router) |
| 522 | goto out; |
| 523 | |
Sven Eckelmann | 1409a83 | 2012-05-12 18:33:55 +0200 | [diff] [blame] | 524 | curr_gw = batadv_gw_get_selected_gw_node(bat_priv); |
Linus Lüssing | 5d02b3c | 2011-02-13 21:13:02 +0000 | [diff] [blame] | 525 | |
Marek Lindner | 414254e | 2013-04-23 21:39:58 +0800 | [diff] [blame] | 526 | ret = seq_printf(seq, "%s %pM (%3i) %pM [%10s]: %u.%u/%u.%u MBit\n", |
Marek Lindner | c4aac1a | 2011-03-23 11:24:34 +0100 | [diff] [blame] | 527 | (curr_gw == gw_node ? "=>" : " "), |
| 528 | gw_node->orig_node->orig, |
Antonio Quartulli | 0538f759 | 2013-09-02 12:15:01 +0200 | [diff] [blame] | 529 | router->bat_iv.tq_avg, router->addr, |
Marek Lindner | c4aac1a | 2011-03-23 11:24:34 +0100 | [diff] [blame] | 530 | router->if_incoming->net_dev->name, |
Marek Lindner | 414254e | 2013-04-23 21:39:58 +0800 | [diff] [blame] | 531 | gw_node->bandwidth_down / 10, |
| 532 | gw_node->bandwidth_down % 10, |
| 533 | gw_node->bandwidth_up / 10, |
| 534 | gw_node->bandwidth_up % 10); |
Linus Lüssing | 5d02b3c | 2011-02-13 21:13:02 +0000 | [diff] [blame] | 535 | |
Sven Eckelmann | 7d211ef | 2012-05-12 02:09:34 +0200 | [diff] [blame] | 536 | batadv_neigh_node_free_ref(router); |
Marek Lindner | c4aac1a | 2011-03-23 11:24:34 +0100 | [diff] [blame] | 537 | if (curr_gw) |
Sven Eckelmann | 1409a83 | 2012-05-12 18:33:55 +0200 | [diff] [blame] | 538 | batadv_gw_node_free_ref(curr_gw); |
Linus Lüssing | e1a5382f | 2011-03-14 22:43:37 +0000 | [diff] [blame] | 539 | out: |
Linus Lüssing | 5d02b3c | 2011-02-13 21:13:02 +0000 | [diff] [blame] | 540 | return ret; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 541 | } |
| 542 | |
Sven Eckelmann | 7cf06bc | 2012-05-12 02:09:29 +0200 | [diff] [blame] | 543 | 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] | 544 | { |
| 545 | struct net_device *net_dev = (struct net_device *)seq->private; |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 546 | struct batadv_priv *bat_priv = netdev_priv(net_dev); |
| 547 | struct batadv_hard_iface *primary_if; |
| 548 | struct batadv_gw_node *gw_node; |
Marek Lindner | 30da63a | 2012-08-03 17:15:46 +0200 | [diff] [blame] | 549 | int gw_count = 0; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 550 | |
Marek Lindner | 30da63a | 2012-08-03 17:15:46 +0200 | [diff] [blame] | 551 | primary_if = batadv_seq_print_text_primary_if_get(seq); |
| 552 | if (!primary_if) |
Marek Lindner | 32ae9b2 | 2011-04-20 15:40:58 +0200 | [diff] [blame] | 553 | goto out; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 554 | |
Sven Eckelmann | 86ceb36 | 2012-03-07 09:07:45 +0100 | [diff] [blame] | 555 | seq_printf(seq, |
Marek Lindner | 414254e | 2013-04-23 21:39:58 +0800 | [diff] [blame] | 556 | " %-12s (%s/%i) %17s [%10s]: advertised uplink bandwidth ... [B.A.T.M.A.N. adv %s, MainIF/MAC: %s/%pM (%s)]\n", |
Sven Eckelmann | 42d0b04 | 2012-06-03 22:19:17 +0200 | [diff] [blame] | 557 | "Gateway", "#", BATADV_TQ_MAX_VALUE, "Nexthop", "outgoingIF", |
| 558 | BATADV_SOURCE_VERSION, primary_if->net_dev->name, |
Marek Lindner | 32ae9b2 | 2011-04-20 15:40:58 +0200 | [diff] [blame] | 559 | primary_if->net_dev->dev_addr, net_dev->name); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 560 | |
| 561 | rcu_read_lock(); |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 562 | hlist_for_each_entry_rcu(gw_node, &bat_priv->gw.list, list) { |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 563 | if (gw_node->deleted) |
| 564 | continue; |
| 565 | |
Linus Lüssing | e1a5382f | 2011-03-14 22:43:37 +0000 | [diff] [blame] | 566 | /* fails if orig_node has no router */ |
Sven Eckelmann | 1409a83 | 2012-05-12 18:33:55 +0200 | [diff] [blame] | 567 | if (batadv_write_buffer_text(bat_priv, seq, gw_node) < 0) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 568 | continue; |
| 569 | |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 570 | gw_count++; |
| 571 | } |
| 572 | rcu_read_unlock(); |
| 573 | |
| 574 | if (gw_count == 0) |
Antonio Quartulli | 0c81465 | 2013-03-21 09:23:29 +0100 | [diff] [blame] | 575 | seq_puts(seq, "No gateways in range ...\n"); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 576 | |
Marek Lindner | 32ae9b2 | 2011-04-20 15:40:58 +0200 | [diff] [blame] | 577 | out: |
| 578 | if (primary_if) |
Sven Eckelmann | e5d8925 | 2012-05-12 13:48:54 +0200 | [diff] [blame] | 579 | batadv_hardif_free_ref(primary_if); |
Marek Lindner | 30da63a | 2012-08-03 17:15:46 +0200 | [diff] [blame] | 580 | return 0; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 581 | } |
| 582 | |
Linus Lüssing | 9d2c948 | 2013-08-06 20:21:15 +0200 | [diff] [blame] | 583 | /* this call might reallocate skb data */ |
Sven Eckelmann | 1409a83 | 2012-05-12 18:33:55 +0200 | [diff] [blame] | 584 | static bool batadv_is_type_dhcprequest(struct sk_buff *skb, int header_len) |
Antonio Quartulli | 43676ab | 2011-04-26 21:31:45 +0200 | [diff] [blame] | 585 | { |
| 586 | int ret = false; |
| 587 | unsigned char *p; |
| 588 | int pkt_len; |
| 589 | |
| 590 | if (skb_linearize(skb) < 0) |
| 591 | goto out; |
| 592 | |
| 593 | pkt_len = skb_headlen(skb); |
| 594 | |
Sven Eckelmann | 347c80f | 2012-06-03 22:19:07 +0200 | [diff] [blame] | 595 | if (pkt_len < header_len + BATADV_DHCP_OPTIONS_OFFSET + 1) |
Antonio Quartulli | 43676ab | 2011-04-26 21:31:45 +0200 | [diff] [blame] | 596 | goto out; |
| 597 | |
Sven Eckelmann | 347c80f | 2012-06-03 22:19:07 +0200 | [diff] [blame] | 598 | p = skb->data + header_len + BATADV_DHCP_OPTIONS_OFFSET; |
| 599 | pkt_len -= header_len + BATADV_DHCP_OPTIONS_OFFSET + 1; |
Antonio Quartulli | 43676ab | 2011-04-26 21:31:45 +0200 | [diff] [blame] | 600 | |
| 601 | /* Access the dhcp option lists. Each entry is made up by: |
Antonio Quartulli | 015758d | 2011-07-09 17:52:13 +0200 | [diff] [blame] | 602 | * - octet 1: option type |
| 603 | * - octet 2: option data len (only if type != 255 and 0) |
Sven Eckelmann | 9cfc7bd | 2012-05-12 02:09:43 +0200 | [diff] [blame] | 604 | * - octet 3: option data |
| 605 | */ |
Antonio Quartulli | 43676ab | 2011-04-26 21:31:45 +0200 | [diff] [blame] | 606 | while (*p != 255 && !ret) { |
Antonio Quartulli | 015758d | 2011-07-09 17:52:13 +0200 | [diff] [blame] | 607 | /* p now points to the first octet: option type */ |
Antonio Quartulli | 43676ab | 2011-04-26 21:31:45 +0200 | [diff] [blame] | 608 | if (*p == 53) { |
| 609 | /* type 53 is the message type option. |
Sven Eckelmann | 9cfc7bd | 2012-05-12 02:09:43 +0200 | [diff] [blame] | 610 | * Jump the len octet and go to the data octet |
| 611 | */ |
Antonio Quartulli | 43676ab | 2011-04-26 21:31:45 +0200 | [diff] [blame] | 612 | if (pkt_len < 2) |
| 613 | goto out; |
| 614 | p += 2; |
| 615 | |
| 616 | /* check if the message type is what we need */ |
Sven Eckelmann | 347c80f | 2012-06-03 22:19:07 +0200 | [diff] [blame] | 617 | if (*p == BATADV_DHCP_REQUEST) |
Antonio Quartulli | 43676ab | 2011-04-26 21:31:45 +0200 | [diff] [blame] | 618 | ret = true; |
| 619 | break; |
| 620 | } else if (*p == 0) { |
| 621 | /* option type 0 (padding), just go forward */ |
| 622 | if (pkt_len < 1) |
| 623 | goto out; |
| 624 | pkt_len--; |
| 625 | p++; |
| 626 | } else { |
| 627 | /* This is any other option. So we get the length... */ |
| 628 | if (pkt_len < 1) |
| 629 | goto out; |
| 630 | pkt_len--; |
| 631 | p++; |
| 632 | |
| 633 | /* ...and then we jump over the data */ |
Antonio Quartulli | 9205cc5 | 2012-02-27 11:29:53 +0100 | [diff] [blame] | 634 | if (pkt_len < 1 + (*p)) |
Antonio Quartulli | 43676ab | 2011-04-26 21:31:45 +0200 | [diff] [blame] | 635 | goto out; |
Antonio Quartulli | 9205cc5 | 2012-02-27 11:29:53 +0100 | [diff] [blame] | 636 | pkt_len -= 1 + (*p); |
| 637 | p += 1 + (*p); |
Antonio Quartulli | 43676ab | 2011-04-26 21:31:45 +0200 | [diff] [blame] | 638 | } |
| 639 | } |
| 640 | out: |
| 641 | return ret; |
| 642 | } |
| 643 | |
Linus Lüssing | 9d2c948 | 2013-08-06 20:21:15 +0200 | [diff] [blame] | 644 | /* this call might reallocate skb data */ |
Sven Eckelmann | 7cf06bc | 2012-05-12 02:09:29 +0200 | [diff] [blame] | 645 | bool batadv_gw_is_dhcp_target(struct sk_buff *skb, unsigned int *header_len) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 646 | { |
| 647 | struct ethhdr *ethhdr; |
| 648 | struct iphdr *iphdr; |
| 649 | struct ipv6hdr *ipv6hdr; |
| 650 | struct udphdr *udphdr; |
Antonio Quartulli | f7f8ed5 | 2013-05-12 21:51:15 +0200 | [diff] [blame] | 651 | struct vlan_ethhdr *vhdr; |
| 652 | __be16 proto; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 653 | |
| 654 | /* check for ethernet header */ |
Marek Lindner | be7af5c | 2011-09-08 13:12:53 +0200 | [diff] [blame] | 655 | if (!pskb_may_pull(skb, *header_len + ETH_HLEN)) |
| 656 | return false; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 657 | ethhdr = (struct ethhdr *)skb->data; |
Antonio Quartulli | f7f8ed5 | 2013-05-12 21:51:15 +0200 | [diff] [blame] | 658 | proto = ethhdr->h_proto; |
Marek Lindner | be7af5c | 2011-09-08 13:12:53 +0200 | [diff] [blame] | 659 | *header_len += ETH_HLEN; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 660 | |
| 661 | /* check for initial vlan header */ |
Antonio Quartulli | f7f8ed5 | 2013-05-12 21:51:15 +0200 | [diff] [blame] | 662 | if (proto == htons(ETH_P_8021Q)) { |
Marek Lindner | be7af5c | 2011-09-08 13:12:53 +0200 | [diff] [blame] | 663 | if (!pskb_may_pull(skb, *header_len + VLAN_HLEN)) |
| 664 | return false; |
Antonio Quartulli | f7f8ed5 | 2013-05-12 21:51:15 +0200 | [diff] [blame] | 665 | |
| 666 | vhdr = (struct vlan_ethhdr *)skb->data; |
| 667 | proto = vhdr->h_vlan_encapsulated_proto; |
Marek Lindner | be7af5c | 2011-09-08 13:12:53 +0200 | [diff] [blame] | 668 | *header_len += VLAN_HLEN; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 669 | } |
| 670 | |
| 671 | /* check for ip header */ |
Antonio Quartulli | f7f8ed5 | 2013-05-12 21:51:15 +0200 | [diff] [blame] | 672 | switch (proto) { |
| 673 | case htons(ETH_P_IP): |
Marek Lindner | be7af5c | 2011-09-08 13:12:53 +0200 | [diff] [blame] | 674 | if (!pskb_may_pull(skb, *header_len + sizeof(*iphdr))) |
| 675 | return false; |
| 676 | iphdr = (struct iphdr *)(skb->data + *header_len); |
| 677 | *header_len += iphdr->ihl * 4; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 678 | |
| 679 | /* check for udp header */ |
| 680 | if (iphdr->protocol != IPPROTO_UDP) |
Marek Lindner | be7af5c | 2011-09-08 13:12:53 +0200 | [diff] [blame] | 681 | return false; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 682 | |
| 683 | break; |
Antonio Quartulli | f7f8ed5 | 2013-05-12 21:51:15 +0200 | [diff] [blame] | 684 | case htons(ETH_P_IPV6): |
Marek Lindner | be7af5c | 2011-09-08 13:12:53 +0200 | [diff] [blame] | 685 | if (!pskb_may_pull(skb, *header_len + sizeof(*ipv6hdr))) |
| 686 | return false; |
| 687 | ipv6hdr = (struct ipv6hdr *)(skb->data + *header_len); |
| 688 | *header_len += sizeof(*ipv6hdr); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 689 | |
| 690 | /* check for udp header */ |
| 691 | if (ipv6hdr->nexthdr != IPPROTO_UDP) |
Marek Lindner | be7af5c | 2011-09-08 13:12:53 +0200 | [diff] [blame] | 692 | return false; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 693 | |
| 694 | break; |
| 695 | default: |
Marek Lindner | be7af5c | 2011-09-08 13:12:53 +0200 | [diff] [blame] | 696 | return false; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 697 | } |
| 698 | |
Marek Lindner | be7af5c | 2011-09-08 13:12:53 +0200 | [diff] [blame] | 699 | if (!pskb_may_pull(skb, *header_len + sizeof(*udphdr))) |
| 700 | return false; |
Linus Lüssing | 9d2c948 | 2013-08-06 20:21:15 +0200 | [diff] [blame] | 701 | |
| 702 | /* skb->data might have been reallocated by pskb_may_pull() */ |
| 703 | ethhdr = (struct ethhdr *)skb->data; |
| 704 | if (ntohs(ethhdr->h_proto) == ETH_P_8021Q) |
| 705 | ethhdr = (struct ethhdr *)(skb->data + VLAN_HLEN); |
| 706 | |
Marek Lindner | be7af5c | 2011-09-08 13:12:53 +0200 | [diff] [blame] | 707 | udphdr = (struct udphdr *)(skb->data + *header_len); |
| 708 | *header_len += sizeof(*udphdr); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 709 | |
| 710 | /* check for bootp port */ |
Antonio Quartulli | f7f8ed5 | 2013-05-12 21:51:15 +0200 | [diff] [blame] | 711 | if ((proto == htons(ETH_P_IP)) && |
Antonio Quartulli | 293e933 | 2013-05-19 12:55:16 +0200 | [diff] [blame] | 712 | (udphdr->dest != htons(67))) |
Marek Lindner | be7af5c | 2011-09-08 13:12:53 +0200 | [diff] [blame] | 713 | return false; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 714 | |
Antonio Quartulli | f7f8ed5 | 2013-05-12 21:51:15 +0200 | [diff] [blame] | 715 | if ((proto == htons(ETH_P_IPV6)) && |
Antonio Quartulli | 293e933 | 2013-05-19 12:55:16 +0200 | [diff] [blame] | 716 | (udphdr->dest != htons(547))) |
Marek Lindner | be7af5c | 2011-09-08 13:12:53 +0200 | [diff] [blame] | 717 | return false; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 718 | |
Marek Lindner | be7af5c | 2011-09-08 13:12:53 +0200 | [diff] [blame] | 719 | return true; |
| 720 | } |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 721 | |
Antonio Quartulli | bbb877e | 2013-06-04 12:11:42 +0200 | [diff] [blame] | 722 | /** |
| 723 | * batadv_gw_out_of_range - check if the dhcp request destination is the best gw |
| 724 | * @bat_priv: the bat priv with all the soft interface information |
| 725 | * @skb: the outgoing packet |
| 726 | * |
| 727 | * Check if the skb is a DHCP request and if it is sent to the current best GW |
| 728 | * server. Due to topology changes it may be the case that the GW server |
| 729 | * previously selected is not the best one anymore. |
| 730 | * |
| 731 | * Returns true if the packet destination is unicast and it is not the best gw, |
| 732 | * false otherwise. |
| 733 | * |
| 734 | * This call might reallocate skb data. |
| 735 | */ |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 736 | bool batadv_gw_out_of_range(struct batadv_priv *bat_priv, |
Linus Lüssing | 9d2c948 | 2013-08-06 20:21:15 +0200 | [diff] [blame] | 737 | struct sk_buff *skb) |
Marek Lindner | be7af5c | 2011-09-08 13:12:53 +0200 | [diff] [blame] | 738 | { |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 739 | struct batadv_neigh_node *neigh_curr = NULL, *neigh_old = NULL; |
| 740 | struct batadv_orig_node *orig_dst_node = NULL; |
Marek Lindner | 414254e | 2013-04-23 21:39:58 +0800 | [diff] [blame] | 741 | struct batadv_gw_node *gw_node = NULL, *curr_gw = NULL; |
Linus Lüssing | 9d2c948 | 2013-08-06 20:21:15 +0200 | [diff] [blame] | 742 | struct ethhdr *ethhdr; |
Marek Lindner | be7af5c | 2011-09-08 13:12:53 +0200 | [diff] [blame] | 743 | bool ret, out_of_range = false; |
| 744 | unsigned int header_len = 0; |
| 745 | uint8_t curr_tq_avg; |
Antonio Quartulli | bbb877e | 2013-06-04 12:11:42 +0200 | [diff] [blame] | 746 | unsigned short vid; |
| 747 | |
| 748 | vid = batadv_get_vid(skb, 0); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 749 | |
Sven Eckelmann | 7cf06bc | 2012-05-12 02:09:29 +0200 | [diff] [blame] | 750 | ret = batadv_gw_is_dhcp_target(skb, &header_len); |
Marek Lindner | be7af5c | 2011-09-08 13:12:53 +0200 | [diff] [blame] | 751 | if (!ret) |
| 752 | goto out; |
| 753 | |
Linus Lüssing | 9d2c948 | 2013-08-06 20:21:15 +0200 | [diff] [blame] | 754 | ethhdr = (struct ethhdr *)skb->data; |
Sven Eckelmann | 08c36d3 | 2012-05-12 02:09:39 +0200 | [diff] [blame] | 755 | orig_dst_node = batadv_transtable_search(bat_priv, ethhdr->h_source, |
Antonio Quartulli | bbb877e | 2013-06-04 12:11:42 +0200 | [diff] [blame] | 756 | ethhdr->h_dest, vid); |
Marek Lindner | be7af5c | 2011-09-08 13:12:53 +0200 | [diff] [blame] | 757 | if (!orig_dst_node) |
| 758 | goto out; |
| 759 | |
Marek Lindner | 414254e | 2013-04-23 21:39:58 +0800 | [diff] [blame] | 760 | gw_node = batadv_gw_node_get(bat_priv, orig_dst_node); |
| 761 | if (!gw_node->bandwidth_down == 0) |
Marek Lindner | be7af5c | 2011-09-08 13:12:53 +0200 | [diff] [blame] | 762 | goto out; |
| 763 | |
Sven Eckelmann | 1409a83 | 2012-05-12 18:33:55 +0200 | [diff] [blame] | 764 | ret = batadv_is_type_dhcprequest(skb, header_len); |
Marek Lindner | be7af5c | 2011-09-08 13:12:53 +0200 | [diff] [blame] | 765 | if (!ret) |
| 766 | goto out; |
| 767 | |
| 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 | |
Antonio Quartulli | 0538f759 | 2013-09-02 12:15:01 +0200 | [diff] [blame] | 793 | curr_tq_avg = neigh_curr->bat_iv.tq_avg; |
Marek Lindner | be7af5c | 2011-09-08 13:12:53 +0200 | [diff] [blame] | 794 | break; |
Sven Eckelmann | cd646ab | 2012-06-03 22:19:18 +0200 | [diff] [blame] | 795 | case BATADV_GW_MODE_OFF: |
Marek Lindner | be7af5c | 2011-09-08 13:12:53 +0200 | [diff] [blame] | 796 | default: |
| 797 | goto out; |
Antonio Quartulli | 43676ab | 2011-04-26 21:31:45 +0200 | [diff] [blame] | 798 | } |
Marek Lindner | be7af5c | 2011-09-08 13:12:53 +0200 | [diff] [blame] | 799 | |
Sven Eckelmann | 30d3c51 | 2012-05-12 02:09:36 +0200 | [diff] [blame] | 800 | neigh_old = batadv_find_router(bat_priv, orig_dst_node, NULL); |
Dan Carpenter | 2ef04f4 | 2011-11-29 09:09:09 +0300 | [diff] [blame] | 801 | if (!neigh_old) |
Marek Lindner | be7af5c | 2011-09-08 13:12:53 +0200 | [diff] [blame] | 802 | goto out; |
| 803 | |
Antonio Quartulli | 0538f759 | 2013-09-02 12:15:01 +0200 | [diff] [blame] | 804 | if (curr_tq_avg - neigh_old->bat_iv.tq_avg > BATADV_GW_THRESHOLD) |
Marek Lindner | be7af5c | 2011-09-08 13:12:53 +0200 | [diff] [blame] | 805 | out_of_range = true; |
| 806 | |
| 807 | out: |
| 808 | if (orig_dst_node) |
Sven Eckelmann | 7d211ef | 2012-05-12 02:09:34 +0200 | [diff] [blame] | 809 | batadv_orig_node_free_ref(orig_dst_node); |
Marek Lindner | be7af5c | 2011-09-08 13:12:53 +0200 | [diff] [blame] | 810 | if (curr_gw) |
Sven Eckelmann | 1409a83 | 2012-05-12 18:33:55 +0200 | [diff] [blame] | 811 | batadv_gw_node_free_ref(curr_gw); |
Marek Lindner | 414254e | 2013-04-23 21:39:58 +0800 | [diff] [blame] | 812 | if (gw_node) |
| 813 | batadv_gw_node_free_ref(gw_node); |
Antonio Quartulli | 43676ab | 2011-04-26 21:31:45 +0200 | [diff] [blame] | 814 | if (neigh_old) |
Sven Eckelmann | 7d211ef | 2012-05-12 02:09:34 +0200 | [diff] [blame] | 815 | batadv_neigh_node_free_ref(neigh_old); |
Antonio Quartulli | 43676ab | 2011-04-26 21:31:45 +0200 | [diff] [blame] | 816 | if (neigh_curr) |
Sven Eckelmann | 7d211ef | 2012-05-12 02:09:34 +0200 | [diff] [blame] | 817 | batadv_neigh_node_free_ref(neigh_curr); |
Marek Lindner | be7af5c | 2011-09-08 13:12:53 +0200 | [diff] [blame] | 818 | return out_of_range; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 819 | } |