blob: b3e156af2256cff85a1d362112ccf577ac7fa348 [file] [log] [blame]
Sven Eckelmann7db7d9f2017-11-19 15:05:11 +01001// SPDX-License-Identifier: GPL-2.0
Sven Eckelmannac79cbb2017-01-01 00:00:00 +01002/* Copyright (C) 2009-2017 B.A.T.M.A.N. contributors:
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00003 *
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 Quartulliebf38fb2013-11-03 20:40:48 +010016 * along with this program; if not, see <http://www.gnu.org/licenses/>.
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000017 */
18
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000019#include "gateway_common.h"
Sven Eckelmann1e2c2a42015-04-17 19:40:28 +020020#include "main.h"
21
22#include <linux/atomic.h>
23#include <linux/byteorder/generic.h>
Sven Eckelmannfcafa5e2016-05-15 11:07:42 +020024#include <linux/errno.h>
Sven Eckelmann1e2c2a42015-04-17 19:40:28 +020025#include <linux/kernel.h>
Sven Eckelmann0b8336f2015-06-21 19:40:09 +020026#include <linux/math64.h>
Sven Eckelmann1e2c2a42015-04-17 19:40:28 +020027#include <linux/netdevice.h>
28#include <linux/stddef.h>
29#include <linux/string.h>
Sven Eckelmannfec149f2017-12-21 10:17:41 +010030#include <uapi/linux/batadv_packet.h>
Sven Eckelmann1e2c2a42015-04-17 19:40:28 +020031
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000032#include "gateway_client.h"
Sven Eckelmannba412082016-05-15 23:48:31 +020033#include "log.h"
Markus Pargmann1f8dce42016-05-15 11:07:43 +020034#include "tvlv.h"
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000035
Marek Lindner414254e2013-04-23 21:39:58 +080036/**
Sven Eckelmann7e9a8c22017-12-02 19:51:47 +010037 * batadv_parse_throughput() - parse supplied string buffer to extract
38 * throughput information
Marek Lindner414254e2013-04-23 21:39:58 +080039 * @net_dev: the soft interface net device
40 * @buff: string buffer to parse
Sven Eckelmannd737ccb2015-09-13 09:44:45 +020041 * @description: text shown when throughput string cannot be parsed
42 * @throughput: pointer holding the returned throughput information
Marek Lindner414254e2013-04-23 21:39:58 +080043 *
Sven Eckelmann62fe7102015-09-15 19:00:48 +020044 * Return: false on parse error and true otherwise.
Marek Lindner414254e2013-04-23 21:39:58 +080045 */
Antonio Quartulli0b5ecc62016-01-16 16:40:14 +080046bool batadv_parse_throughput(struct net_device *net_dev, char *buff,
47 const char *description, u32 *throughput)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000048{
Marek Lindner414254e2013-04-23 21:39:58 +080049 enum batadv_bandwidth_units bw_unit_type = BATADV_BW_UNIT_KBIT;
Sven Eckelmannd737ccb2015-09-13 09:44:45 +020050 u64 lthroughput;
51 char *tmp_ptr;
Marek Lindner414254e2013-04-23 21:39:58 +080052 int ret;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000053
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000054 if (strlen(buff) > 4) {
55 tmp_ptr = buff + strlen(buff) - 4;
56
Rasmus Villemoesb7a8d7562014-10-13 15:54:42 -070057 if (strncasecmp(tmp_ptr, "mbit", 4) == 0)
Marek Lindner414254e2013-04-23 21:39:58 +080058 bw_unit_type = BATADV_BW_UNIT_MBIT;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000059
Sven Eckelmann825ffe12017-08-23 21:52:13 +020060 if (strncasecmp(tmp_ptr, "kbit", 4) == 0 ||
61 bw_unit_type == BATADV_BW_UNIT_MBIT)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000062 *tmp_ptr = '\0';
63 }
64
Sven Eckelmannd737ccb2015-09-13 09:44:45 +020065 ret = kstrtou64(buff, 10, &lthroughput);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000066 if (ret) {
Sven Eckelmann3e348192012-05-16 20:23:22 +020067 batadv_err(net_dev,
Sven Eckelmannd737ccb2015-09-13 09:44:45 +020068 "Invalid throughput speed for %s: %s\n",
69 description, buff);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000070 return false;
71 }
72
Marek Lindner414254e2013-04-23 21:39:58 +080073 switch (bw_unit_type) {
74 case BATADV_BW_UNIT_MBIT:
Sven Eckelmann0b8336f2015-06-21 19:40:09 +020075 /* prevent overflow */
Sven Eckelmannd737ccb2015-09-13 09:44:45 +020076 if (U64_MAX / 10 < lthroughput) {
Sven Eckelmann0b8336f2015-06-21 19:40:09 +020077 batadv_err(net_dev,
Sven Eckelmannd737ccb2015-09-13 09:44:45 +020078 "Throughput speed for %s too large: %s\n",
79 description, buff);
Sven Eckelmann0b8336f2015-06-21 19:40:09 +020080 return false;
81 }
82
Sven Eckelmannd737ccb2015-09-13 09:44:45 +020083 lthroughput *= 10;
Marek Lindner414254e2013-04-23 21:39:58 +080084 break;
85 case BATADV_BW_UNIT_KBIT:
86 default:
Sven Eckelmannd737ccb2015-09-13 09:44:45 +020087 lthroughput = div_u64(lthroughput, 100);
Marek Lindner414254e2013-04-23 21:39:58 +080088 break;
89 }
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000090
Sven Eckelmannd737ccb2015-09-13 09:44:45 +020091 if (lthroughput > U32_MAX) {
Sven Eckelmann0b8336f2015-06-21 19:40:09 +020092 batadv_err(net_dev,
Sven Eckelmannd737ccb2015-09-13 09:44:45 +020093 "Throughput speed for %s too large: %s\n",
94 description, buff);
Sven Eckelmann0b8336f2015-06-21 19:40:09 +020095 return false;
96 }
97
Sven Eckelmannd737ccb2015-09-13 09:44:45 +020098 *throughput = lthroughput;
99
100 return true;
101}
102
103/**
Sven Eckelmann7e9a8c22017-12-02 19:51:47 +0100104 * batadv_parse_gw_bandwidth() - parse supplied string buffer to extract
105 * download and upload bandwidth information
Sven Eckelmannd737ccb2015-09-13 09:44:45 +0200106 * @net_dev: the soft interface net device
107 * @buff: string buffer to parse
108 * @down: pointer holding the returned download bandwidth information
109 * @up: pointer holding the returned upload bandwidth information
110 *
111 * Return: false on parse error and true otherwise.
112 */
113static bool batadv_parse_gw_bandwidth(struct net_device *net_dev, char *buff,
114 u32 *down, u32 *up)
115{
116 char *slash_ptr;
117 bool ret;
118
119 slash_ptr = strchr(buff, '/');
120 if (slash_ptr)
121 *slash_ptr = 0;
122
123 ret = batadv_parse_throughput(net_dev, buff, "download gateway speed",
124 down);
125 if (!ret)
126 return false;
Sven Eckelmann0b8336f2015-06-21 19:40:09 +0200127
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000128 /* we also got some upload info */
129 if (slash_ptr) {
Sven Eckelmannd737ccb2015-09-13 09:44:45 +0200130 ret = batadv_parse_throughput(net_dev, slash_ptr + 1,
131 "upload gateway speed", up);
132 if (!ret)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000133 return false;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000134 }
135
136 return true;
137}
138
Marek Lindner414254e2013-04-23 21:39:58 +0800139/**
Sven Eckelmann7e9a8c22017-12-02 19:51:47 +0100140 * batadv_gw_tvlv_container_update() - update the gw tvlv container after
141 * gateway setting change
Marek Lindner414254e2013-04-23 21:39:58 +0800142 * @bat_priv: the bat priv with all the soft interface information
143 */
144void batadv_gw_tvlv_container_update(struct batadv_priv *bat_priv)
145{
146 struct batadv_tvlv_gateway_data gw;
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200147 u32 down, up;
Marek Lindner414254e2013-04-23 21:39:58 +0800148 char gw_mode;
149
Antonio Quartulli3a24a632016-05-06 02:46:38 +0800150 gw_mode = atomic_read(&bat_priv->gw.mode);
Marek Lindner414254e2013-04-23 21:39:58 +0800151
152 switch (gw_mode) {
153 case BATADV_GW_MODE_OFF:
154 case BATADV_GW_MODE_CLIENT:
155 batadv_tvlv_container_unregister(bat_priv, BATADV_TVLV_GW, 1);
156 break;
157 case BATADV_GW_MODE_SERVER:
158 down = atomic_read(&bat_priv->gw.bandwidth_down);
159 up = atomic_read(&bat_priv->gw.bandwidth_up);
160 gw.bandwidth_down = htonl(down);
161 gw.bandwidth_up = htonl(up);
162 batadv_tvlv_container_register(bat_priv, BATADV_TVLV_GW, 1,
163 &gw, sizeof(gw));
164 break;
165 }
166}
167
Sven Eckelmannff15c272017-12-02 19:51:53 +0100168/**
169 * batadv_gw_bandwidth_set() - Parse and set download/upload gateway bandwidth
170 * from supplied string buffer
171 * @net_dev: netdev struct of the soft interface
172 * @buff: the buffer containing the user data
173 * @count: number of bytes in the buffer
174 *
175 * Return: 'count' on success or a negative error code in case of failure
176 */
Sven Eckelmann84d5e5e2012-05-12 02:09:30 +0200177ssize_t batadv_gw_bandwidth_set(struct net_device *net_dev, char *buff,
178 size_t count)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000179{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200180 struct batadv_priv *bat_priv = netdev_priv(net_dev);
Sven Eckelmann4f248cf2015-06-09 20:50:49 +0200181 u32 down_curr;
182 u32 up_curr;
183 u32 down_new = 0;
184 u32 up_new = 0;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000185 bool ret;
186
Marek Lindner414254e2013-04-23 21:39:58 +0800187 down_curr = (unsigned int)atomic_read(&bat_priv->gw.bandwidth_down);
188 up_curr = (unsigned int)atomic_read(&bat_priv->gw.bandwidth_up);
189
190 ret = batadv_parse_gw_bandwidth(net_dev, buff, &down_new, &up_new);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000191 if (!ret)
Sven Eckelmann77927b72015-06-21 14:42:49 +0200192 return -EINVAL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000193
Marek Lindner414254e2013-04-23 21:39:58 +0800194 if (!down_new)
195 down_new = 1;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000196
Marek Lindner414254e2013-04-23 21:39:58 +0800197 if (!up_new)
198 up_new = down_new / 5;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000199
Marek Lindner414254e2013-04-23 21:39:58 +0800200 if (!up_new)
201 up_new = 1;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000202
Sven Eckelmann825ffe12017-08-23 21:52:13 +0200203 if (down_curr == down_new && up_curr == up_new)
Marek Lindnerdafe94b2012-05-11 16:10:50 +0800204 return count;
205
Antonio Quartulli4e820e72013-11-04 20:59:41 +0100206 batadv_gw_reselect(bat_priv);
Sven Eckelmann3e348192012-05-16 20:23:22 +0200207 batadv_info(net_dev,
Marek Lindner414254e2013-04-23 21:39:58 +0800208 "Changing gateway bandwidth from: '%u.%u/%u.%u MBit' to: '%u.%u/%u.%u MBit'\n",
209 down_curr / 10, down_curr % 10, up_curr / 10, up_curr % 10,
210 down_new / 10, down_new % 10, up_new / 10, up_new % 10);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000211
Marek Lindner414254e2013-04-23 21:39:58 +0800212 atomic_set(&bat_priv->gw.bandwidth_down, down_new);
213 atomic_set(&bat_priv->gw.bandwidth_up, up_new);
214 batadv_gw_tvlv_container_update(bat_priv);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000215
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000216 return count;
217}
Marek Lindner414254e2013-04-23 21:39:58 +0800218
219/**
Sven Eckelmann7e9a8c22017-12-02 19:51:47 +0100220 * batadv_gw_tvlv_ogm_handler_v1() - process incoming gateway tvlv container
Marek Lindner414254e2013-04-23 21:39:58 +0800221 * @bat_priv: the bat priv with all the soft interface information
222 * @orig: the orig_node of the ogm
223 * @flags: flags indicating the tvlv state (see batadv_tvlv_handler_flags)
224 * @tvlv_value: tvlv buffer containing the gateway data
225 * @tvlv_value_len: tvlv buffer length
226 */
227static void batadv_gw_tvlv_ogm_handler_v1(struct batadv_priv *bat_priv,
228 struct batadv_orig_node *orig,
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200229 u8 flags,
230 void *tvlv_value, u16 tvlv_value_len)
Marek Lindner414254e2013-04-23 21:39:58 +0800231{
232 struct batadv_tvlv_gateway_data gateway, *gateway_ptr;
233
234 /* only fetch the tvlv value if the handler wasn't called via the
235 * CIFNOTFND flag and if there is data to fetch
236 */
Sven Eckelmann825ffe12017-08-23 21:52:13 +0200237 if (flags & BATADV_TVLV_HANDLER_OGM_CIFNOTFND ||
238 tvlv_value_len < sizeof(gateway)) {
Marek Lindner414254e2013-04-23 21:39:58 +0800239 gateway.bandwidth_down = 0;
240 gateway.bandwidth_up = 0;
241 } else {
242 gateway_ptr = tvlv_value;
243 gateway.bandwidth_down = gateway_ptr->bandwidth_down;
244 gateway.bandwidth_up = gateway_ptr->bandwidth_up;
Sven Eckelmann825ffe12017-08-23 21:52:13 +0200245 if (gateway.bandwidth_down == 0 ||
246 gateway.bandwidth_up == 0) {
Marek Lindner414254e2013-04-23 21:39:58 +0800247 gateway.bandwidth_down = 0;
248 gateway.bandwidth_up = 0;
249 }
250 }
251
252 batadv_gw_node_update(bat_priv, orig, &gateway);
253
Antonio Quartulli34d99cf2016-07-03 12:46:33 +0200254 /* restart gateway selection */
Sven Eckelmann825ffe12017-08-23 21:52:13 +0200255 if (gateway.bandwidth_down != 0 &&
256 atomic_read(&bat_priv->gw.mode) == BATADV_GW_MODE_CLIENT)
Marek Lindner414254e2013-04-23 21:39:58 +0800257 batadv_gw_check_election(bat_priv, orig);
258}
259
260/**
Sven Eckelmann7e9a8c22017-12-02 19:51:47 +0100261 * batadv_gw_init() - initialise the gateway handling internals
Marek Lindner414254e2013-04-23 21:39:58 +0800262 * @bat_priv: the bat priv with all the soft interface information
263 */
264void batadv_gw_init(struct batadv_priv *bat_priv)
265{
Sven Eckelmann1a9070e2017-03-04 15:48:50 +0100266 if (bat_priv->algo_ops->gw.init_sel_class)
267 bat_priv->algo_ops->gw.init_sel_class(bat_priv);
268 else
269 atomic_set(&bat_priv->gw.sel_class, 1);
270
Marek Lindner414254e2013-04-23 21:39:58 +0800271 batadv_tvlv_handler_register(bat_priv, batadv_gw_tvlv_ogm_handler_v1,
272 NULL, BATADV_TVLV_GW, 1,
273 BATADV_TVLV_HANDLER_OGM_CIFNOTFND);
274}
275
276/**
Sven Eckelmann7e9a8c22017-12-02 19:51:47 +0100277 * batadv_gw_free() - free the gateway handling internals
Marek Lindner414254e2013-04-23 21:39:58 +0800278 * @bat_priv: the bat priv with all the soft interface information
279 */
280void batadv_gw_free(struct batadv_priv *bat_priv)
281{
282 batadv_tvlv_container_unregister(bat_priv, BATADV_TVLV_GW, 1);
283 batadv_tvlv_handler_unregister(bat_priv, BATADV_TVLV_GW, 1);
284}