Sven Eckelmann | 9f6446c | 2015-04-23 13:16:35 +0200 | [diff] [blame] | 1 | /* Copyright (C) 2009-2015 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 | |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 18 | #include "gateway_common.h" |
Sven Eckelmann | 1e2c2a4 | 2015-04-17 19:40:28 +0200 | [diff] [blame] | 19 | #include "main.h" |
| 20 | |
| 21 | #include <linux/atomic.h> |
| 22 | #include <linux/byteorder/generic.h> |
| 23 | #include <linux/kernel.h> |
| 24 | #include <linux/netdevice.h> |
| 25 | #include <linux/stddef.h> |
| 26 | #include <linux/string.h> |
| 27 | |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 28 | #include "gateway_client.h" |
Sven Eckelmann | 1e2c2a4 | 2015-04-17 19:40:28 +0200 | [diff] [blame] | 29 | #include "packet.h" |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 30 | |
Marek Lindner | 414254e | 2013-04-23 21:39:58 +0800 | [diff] [blame] | 31 | /** |
| 32 | * batadv_parse_gw_bandwidth - parse supplied string buffer to extract download |
| 33 | * and upload bandwidth information |
| 34 | * @net_dev: the soft interface net device |
| 35 | * @buff: string buffer to parse |
| 36 | * @down: pointer holding the returned download bandwidth information |
| 37 | * @up: pointer holding the returned upload bandwidth information |
| 38 | * |
| 39 | * Returns false on parse error and true otherwise. |
| 40 | */ |
Sven Eckelmann | 8e714a5 | 2012-05-12 18:33:56 +0200 | [diff] [blame] | 41 | static bool batadv_parse_gw_bandwidth(struct net_device *net_dev, char *buff, |
Sven Eckelmann | 6b5e971 | 2015-05-26 18:34:26 +0200 | [diff] [blame^] | 42 | u32 *down, u32 *up) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 43 | { |
Marek Lindner | 414254e | 2013-04-23 21:39:58 +0800 | [diff] [blame] | 44 | enum batadv_bandwidth_units bw_unit_type = BATADV_BW_UNIT_KBIT; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 45 | char *slash_ptr, *tmp_ptr; |
Sven Eckelmann | 37a4065 | 2011-05-14 23:14:51 +0200 | [diff] [blame] | 46 | long ldown, lup; |
Marek Lindner | 414254e | 2013-04-23 21:39:58 +0800 | [diff] [blame] | 47 | int ret; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 48 | |
| 49 | slash_ptr = strchr(buff, '/'); |
| 50 | if (slash_ptr) |
| 51 | *slash_ptr = 0; |
| 52 | |
| 53 | if (strlen(buff) > 4) { |
| 54 | tmp_ptr = buff + strlen(buff) - 4; |
| 55 | |
Rasmus Villemoes | b7a8d756 | 2014-10-13 15:54:42 -0700 | [diff] [blame] | 56 | if (strncasecmp(tmp_ptr, "mbit", 4) == 0) |
Marek Lindner | 414254e | 2013-04-23 21:39:58 +0800 | [diff] [blame] | 57 | bw_unit_type = BATADV_BW_UNIT_MBIT; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 58 | |
Rasmus Villemoes | b7a8d756 | 2014-10-13 15:54:42 -0700 | [diff] [blame] | 59 | if ((strncasecmp(tmp_ptr, "kbit", 4) == 0) || |
Marek Lindner | 414254e | 2013-04-23 21:39:58 +0800 | [diff] [blame] | 60 | (bw_unit_type == BATADV_BW_UNIT_MBIT)) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 61 | *tmp_ptr = '\0'; |
| 62 | } |
| 63 | |
Sven Eckelmann | 25a92b1 | 2011-09-30 13:32:01 +0200 | [diff] [blame] | 64 | ret = kstrtol(buff, 10, &ldown); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 65 | if (ret) { |
Sven Eckelmann | 3e34819 | 2012-05-16 20:23:22 +0200 | [diff] [blame] | 66 | batadv_err(net_dev, |
| 67 | "Download speed of gateway mode invalid: %s\n", |
| 68 | buff); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 69 | return false; |
| 70 | } |
| 71 | |
Marek Lindner | 414254e | 2013-04-23 21:39:58 +0800 | [diff] [blame] | 72 | switch (bw_unit_type) { |
| 73 | case BATADV_BW_UNIT_MBIT: |
| 74 | *down = ldown * 10; |
| 75 | break; |
| 76 | case BATADV_BW_UNIT_KBIT: |
| 77 | default: |
| 78 | *down = ldown / 100; |
| 79 | break; |
| 80 | } |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 81 | |
| 82 | /* we also got some upload info */ |
| 83 | if (slash_ptr) { |
Marek Lindner | 414254e | 2013-04-23 21:39:58 +0800 | [diff] [blame] | 84 | bw_unit_type = BATADV_BW_UNIT_KBIT; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 85 | |
| 86 | if (strlen(slash_ptr + 1) > 4) { |
| 87 | tmp_ptr = slash_ptr + 1 - 4 + strlen(slash_ptr + 1); |
| 88 | |
Rasmus Villemoes | b7a8d756 | 2014-10-13 15:54:42 -0700 | [diff] [blame] | 89 | if (strncasecmp(tmp_ptr, "mbit", 4) == 0) |
Marek Lindner | 414254e | 2013-04-23 21:39:58 +0800 | [diff] [blame] | 90 | bw_unit_type = BATADV_BW_UNIT_MBIT; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 91 | |
Rasmus Villemoes | b7a8d756 | 2014-10-13 15:54:42 -0700 | [diff] [blame] | 92 | if ((strncasecmp(tmp_ptr, "kbit", 4) == 0) || |
Marek Lindner | 414254e | 2013-04-23 21:39:58 +0800 | [diff] [blame] | 93 | (bw_unit_type == BATADV_BW_UNIT_MBIT)) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 94 | *tmp_ptr = '\0'; |
| 95 | } |
| 96 | |
Sven Eckelmann | 25a92b1 | 2011-09-30 13:32:01 +0200 | [diff] [blame] | 97 | ret = kstrtol(slash_ptr + 1, 10, &lup); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 98 | if (ret) { |
Sven Eckelmann | 3e34819 | 2012-05-16 20:23:22 +0200 | [diff] [blame] | 99 | batadv_err(net_dev, |
| 100 | "Upload speed of gateway mode invalid: %s\n", |
| 101 | slash_ptr + 1); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 102 | return false; |
| 103 | } |
| 104 | |
Marek Lindner | 414254e | 2013-04-23 21:39:58 +0800 | [diff] [blame] | 105 | switch (bw_unit_type) { |
| 106 | case BATADV_BW_UNIT_MBIT: |
| 107 | *up = lup * 10; |
| 108 | break; |
| 109 | case BATADV_BW_UNIT_KBIT: |
| 110 | default: |
| 111 | *up = lup / 100; |
| 112 | break; |
| 113 | } |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 114 | } |
| 115 | |
| 116 | return true; |
| 117 | } |
| 118 | |
Marek Lindner | 414254e | 2013-04-23 21:39:58 +0800 | [diff] [blame] | 119 | /** |
| 120 | * batadv_gw_tvlv_container_update - update the gw tvlv container after gateway |
| 121 | * setting change |
| 122 | * @bat_priv: the bat priv with all the soft interface information |
| 123 | */ |
| 124 | void batadv_gw_tvlv_container_update(struct batadv_priv *bat_priv) |
| 125 | { |
| 126 | struct batadv_tvlv_gateway_data gw; |
Sven Eckelmann | 6b5e971 | 2015-05-26 18:34:26 +0200 | [diff] [blame^] | 127 | u32 down, up; |
Marek Lindner | 414254e | 2013-04-23 21:39:58 +0800 | [diff] [blame] | 128 | char gw_mode; |
| 129 | |
| 130 | gw_mode = atomic_read(&bat_priv->gw_mode); |
| 131 | |
| 132 | switch (gw_mode) { |
| 133 | case BATADV_GW_MODE_OFF: |
| 134 | case BATADV_GW_MODE_CLIENT: |
| 135 | batadv_tvlv_container_unregister(bat_priv, BATADV_TVLV_GW, 1); |
| 136 | break; |
| 137 | case BATADV_GW_MODE_SERVER: |
| 138 | down = atomic_read(&bat_priv->gw.bandwidth_down); |
| 139 | up = atomic_read(&bat_priv->gw.bandwidth_up); |
| 140 | gw.bandwidth_down = htonl(down); |
| 141 | gw.bandwidth_up = htonl(up); |
| 142 | batadv_tvlv_container_register(bat_priv, BATADV_TVLV_GW, 1, |
| 143 | &gw, sizeof(gw)); |
| 144 | break; |
| 145 | } |
| 146 | } |
| 147 | |
Sven Eckelmann | 84d5e5e | 2012-05-12 02:09:30 +0200 | [diff] [blame] | 148 | ssize_t batadv_gw_bandwidth_set(struct net_device *net_dev, char *buff, |
| 149 | size_t count) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 150 | { |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 151 | struct batadv_priv *bat_priv = netdev_priv(net_dev); |
Sven Eckelmann | 6b5e971 | 2015-05-26 18:34:26 +0200 | [diff] [blame^] | 152 | u32 down_curr, up_curr, down_new = 0, up_new = 0; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 153 | bool ret; |
| 154 | |
Marek Lindner | 414254e | 2013-04-23 21:39:58 +0800 | [diff] [blame] | 155 | down_curr = (unsigned int)atomic_read(&bat_priv->gw.bandwidth_down); |
| 156 | up_curr = (unsigned int)atomic_read(&bat_priv->gw.bandwidth_up); |
| 157 | |
| 158 | ret = batadv_parse_gw_bandwidth(net_dev, buff, &down_new, &up_new); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 159 | if (!ret) |
| 160 | goto end; |
| 161 | |
Marek Lindner | 414254e | 2013-04-23 21:39:58 +0800 | [diff] [blame] | 162 | if (!down_new) |
| 163 | down_new = 1; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 164 | |
Marek Lindner | 414254e | 2013-04-23 21:39:58 +0800 | [diff] [blame] | 165 | if (!up_new) |
| 166 | up_new = down_new / 5; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 167 | |
Marek Lindner | 414254e | 2013-04-23 21:39:58 +0800 | [diff] [blame] | 168 | if (!up_new) |
| 169 | up_new = 1; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 170 | |
Marek Lindner | 414254e | 2013-04-23 21:39:58 +0800 | [diff] [blame] | 171 | if ((down_curr == down_new) && (up_curr == up_new)) |
Marek Lindner | dafe94b | 2012-05-11 16:10:50 +0800 | [diff] [blame] | 172 | return count; |
| 173 | |
Antonio Quartulli | 4e820e7 | 2013-11-04 20:59:41 +0100 | [diff] [blame] | 174 | batadv_gw_reselect(bat_priv); |
Sven Eckelmann | 3e34819 | 2012-05-16 20:23:22 +0200 | [diff] [blame] | 175 | batadv_info(net_dev, |
Marek Lindner | 414254e | 2013-04-23 21:39:58 +0800 | [diff] [blame] | 176 | "Changing gateway bandwidth from: '%u.%u/%u.%u MBit' to: '%u.%u/%u.%u MBit'\n", |
| 177 | down_curr / 10, down_curr % 10, up_curr / 10, up_curr % 10, |
| 178 | down_new / 10, down_new % 10, up_new / 10, up_new % 10); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 179 | |
Marek Lindner | 414254e | 2013-04-23 21:39:58 +0800 | [diff] [blame] | 180 | atomic_set(&bat_priv->gw.bandwidth_down, down_new); |
| 181 | atomic_set(&bat_priv->gw.bandwidth_up, up_new); |
| 182 | batadv_gw_tvlv_container_update(bat_priv); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 183 | |
| 184 | end: |
| 185 | return count; |
| 186 | } |
Marek Lindner | 414254e | 2013-04-23 21:39:58 +0800 | [diff] [blame] | 187 | |
| 188 | /** |
| 189 | * batadv_gw_tvlv_ogm_handler_v1 - process incoming gateway tvlv container |
| 190 | * @bat_priv: the bat priv with all the soft interface information |
| 191 | * @orig: the orig_node of the ogm |
| 192 | * @flags: flags indicating the tvlv state (see batadv_tvlv_handler_flags) |
| 193 | * @tvlv_value: tvlv buffer containing the gateway data |
| 194 | * @tvlv_value_len: tvlv buffer length |
| 195 | */ |
| 196 | static void batadv_gw_tvlv_ogm_handler_v1(struct batadv_priv *bat_priv, |
| 197 | struct batadv_orig_node *orig, |
Sven Eckelmann | 6b5e971 | 2015-05-26 18:34:26 +0200 | [diff] [blame^] | 198 | u8 flags, |
| 199 | void *tvlv_value, u16 tvlv_value_len) |
Marek Lindner | 414254e | 2013-04-23 21:39:58 +0800 | [diff] [blame] | 200 | { |
| 201 | struct batadv_tvlv_gateway_data gateway, *gateway_ptr; |
| 202 | |
| 203 | /* only fetch the tvlv value if the handler wasn't called via the |
| 204 | * CIFNOTFND flag and if there is data to fetch |
| 205 | */ |
| 206 | if ((flags & BATADV_TVLV_HANDLER_OGM_CIFNOTFND) || |
| 207 | (tvlv_value_len < sizeof(gateway))) { |
| 208 | gateway.bandwidth_down = 0; |
| 209 | gateway.bandwidth_up = 0; |
| 210 | } else { |
| 211 | gateway_ptr = tvlv_value; |
| 212 | gateway.bandwidth_down = gateway_ptr->bandwidth_down; |
| 213 | gateway.bandwidth_up = gateway_ptr->bandwidth_up; |
| 214 | if ((gateway.bandwidth_down == 0) || |
| 215 | (gateway.bandwidth_up == 0)) { |
| 216 | gateway.bandwidth_down = 0; |
| 217 | gateway.bandwidth_up = 0; |
| 218 | } |
| 219 | } |
| 220 | |
| 221 | batadv_gw_node_update(bat_priv, orig, &gateway); |
| 222 | |
| 223 | /* restart gateway selection if fast or late switching was enabled */ |
| 224 | if ((gateway.bandwidth_down != 0) && |
| 225 | (atomic_read(&bat_priv->gw_mode) == BATADV_GW_MODE_CLIENT) && |
| 226 | (atomic_read(&bat_priv->gw_sel_class) > 2)) |
| 227 | batadv_gw_check_election(bat_priv, orig); |
| 228 | } |
| 229 | |
| 230 | /** |
| 231 | * batadv_gw_init - initialise the gateway handling internals |
| 232 | * @bat_priv: the bat priv with all the soft interface information |
| 233 | */ |
| 234 | void batadv_gw_init(struct batadv_priv *bat_priv) |
| 235 | { |
| 236 | batadv_tvlv_handler_register(bat_priv, batadv_gw_tvlv_ogm_handler_v1, |
| 237 | NULL, BATADV_TVLV_GW, 1, |
| 238 | BATADV_TVLV_HANDLER_OGM_CIFNOTFND); |
| 239 | } |
| 240 | |
| 241 | /** |
| 242 | * batadv_gw_free - free the gateway handling internals |
| 243 | * @bat_priv: the bat priv with all the soft interface information |
| 244 | */ |
| 245 | void batadv_gw_free(struct batadv_priv *bat_priv) |
| 246 | { |
| 247 | batadv_tvlv_container_unregister(bat_priv, BATADV_TVLV_GW, 1); |
| 248 | batadv_tvlv_handler_unregister(bat_priv, BATADV_TVLV_GW, 1); |
| 249 | } |