blob: b51bface8bdd72d2ad7e9f397684cd45d8b26316 [file] [log] [blame]
Sven Eckelmann9f6446c2015-04-23 13:16:35 +02001/* Copyright (C) 2009-2015 B.A.T.M.A.N. contributors:
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00002 *
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 Quartulliebf38fb2013-11-03 20:40:48 +010015 * along with this program; if not, see <http://www.gnu.org/licenses/>.
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000016 */
17
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000018#include "gateway_common.h"
Sven Eckelmann1e2c2a42015-04-17 19:40:28 +020019#include "main.h"
20
21#include <linux/atomic.h>
Sven Eckelmann77927b72015-06-21 14:42:49 +020022#include <linux/errno.h>
Sven Eckelmann1e2c2a42015-04-17 19:40:28 +020023#include <linux/byteorder/generic.h>
24#include <linux/kernel.h>
Sven Eckelmann0b8336f2015-06-21 19:40:09 +020025#include <linux/math64.h>
Sven Eckelmann1e2c2a42015-04-17 19:40:28 +020026#include <linux/netdevice.h>
27#include <linux/stddef.h>
28#include <linux/string.h>
29
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000030#include "gateway_client.h"
Sven Eckelmann1e2c2a42015-04-17 19:40:28 +020031#include "packet.h"
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000032
Marek Lindner414254e2013-04-23 21:39:58 +080033/**
Sven Eckelmannd737ccb2015-09-13 09:44:45 +020034 * batadv_parse_throughput - parse supplied string buffer to extract throughput
35 * information
Marek Lindner414254e2013-04-23 21:39:58 +080036 * @net_dev: the soft interface net device
37 * @buff: string buffer to parse
Sven Eckelmannd737ccb2015-09-13 09:44:45 +020038 * @description: text shown when throughput string cannot be parsed
39 * @throughput: pointer holding the returned throughput information
Marek Lindner414254e2013-04-23 21:39:58 +080040 *
41 * Returns false on parse error and true otherwise.
42 */
Sven Eckelmannd737ccb2015-09-13 09:44:45 +020043static bool batadv_parse_throughput(struct net_device *net_dev, char *buff,
44 const char *description, u32 *throughput)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000045{
Marek Lindner414254e2013-04-23 21:39:58 +080046 enum batadv_bandwidth_units bw_unit_type = BATADV_BW_UNIT_KBIT;
Sven Eckelmannd737ccb2015-09-13 09:44:45 +020047 u64 lthroughput;
48 char *tmp_ptr;
Marek Lindner414254e2013-04-23 21:39:58 +080049 int ret;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000050
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000051 if (strlen(buff) > 4) {
52 tmp_ptr = buff + strlen(buff) - 4;
53
Rasmus Villemoesb7a8d752014-10-13 15:54:42 -070054 if (strncasecmp(tmp_ptr, "mbit", 4) == 0)
Marek Lindner414254e2013-04-23 21:39:58 +080055 bw_unit_type = BATADV_BW_UNIT_MBIT;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000056
Rasmus Villemoesb7a8d752014-10-13 15:54:42 -070057 if ((strncasecmp(tmp_ptr, "kbit", 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 *tmp_ptr = '\0';
60 }
61
Sven Eckelmannd737ccb2015-09-13 09:44:45 +020062 ret = kstrtou64(buff, 10, &lthroughput);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000063 if (ret) {
Sven Eckelmann3e348192012-05-16 20:23:22 +020064 batadv_err(net_dev,
Sven Eckelmannd737ccb2015-09-13 09:44:45 +020065 "Invalid throughput speed for %s: %s\n",
66 description, buff);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000067 return false;
68 }
69
Marek Lindner414254e2013-04-23 21:39:58 +080070 switch (bw_unit_type) {
71 case BATADV_BW_UNIT_MBIT:
Sven Eckelmann0b8336f2015-06-21 19:40:09 +020072 /* prevent overflow */
Sven Eckelmannd737ccb2015-09-13 09:44:45 +020073 if (U64_MAX / 10 < lthroughput) {
Sven Eckelmann0b8336f2015-06-21 19:40:09 +020074 batadv_err(net_dev,
Sven Eckelmannd737ccb2015-09-13 09:44:45 +020075 "Throughput speed for %s too large: %s\n",
76 description, buff);
Sven Eckelmann0b8336f2015-06-21 19:40:09 +020077 return false;
78 }
79
Sven Eckelmannd737ccb2015-09-13 09:44:45 +020080 lthroughput *= 10;
Marek Lindner414254e2013-04-23 21:39:58 +080081 break;
82 case BATADV_BW_UNIT_KBIT:
83 default:
Sven Eckelmannd737ccb2015-09-13 09:44:45 +020084 lthroughput = div_u64(lthroughput, 100);
Marek Lindner414254e2013-04-23 21:39:58 +080085 break;
86 }
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000087
Sven Eckelmannd737ccb2015-09-13 09:44:45 +020088 if (lthroughput > U32_MAX) {
Sven Eckelmann0b8336f2015-06-21 19:40:09 +020089 batadv_err(net_dev,
Sven Eckelmannd737ccb2015-09-13 09:44:45 +020090 "Throughput speed for %s too large: %s\n",
91 description, buff);
Sven Eckelmann0b8336f2015-06-21 19:40:09 +020092 return false;
93 }
94
Sven Eckelmannd737ccb2015-09-13 09:44:45 +020095 *throughput = lthroughput;
96
97 return true;
98}
99
100/**
101 * batadv_parse_gw_bandwidth - parse supplied string buffer to extract download
102 * and upload bandwidth information
103 * @net_dev: the soft interface net device
104 * @buff: string buffer to parse
105 * @down: pointer holding the returned download bandwidth information
106 * @up: pointer holding the returned upload bandwidth information
107 *
108 * Return: false on parse error and true otherwise.
109 */
110static bool batadv_parse_gw_bandwidth(struct net_device *net_dev, char *buff,
111 u32 *down, u32 *up)
112{
113 char *slash_ptr;
114 bool ret;
115
116 slash_ptr = strchr(buff, '/');
117 if (slash_ptr)
118 *slash_ptr = 0;
119
120 ret = batadv_parse_throughput(net_dev, buff, "download gateway speed",
121 down);
122 if (!ret)
123 return false;
Sven Eckelmann0b8336f2015-06-21 19:40:09 +0200124
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000125 /* we also got some upload info */
126 if (slash_ptr) {
Sven Eckelmannd737ccb2015-09-13 09:44:45 +0200127 ret = batadv_parse_throughput(net_dev, slash_ptr + 1,
128 "upload gateway speed", up);
129 if (!ret)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000130 return false;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000131 }
132
133 return true;
134}
135
Marek Lindner414254e2013-04-23 21:39:58 +0800136/**
137 * batadv_gw_tvlv_container_update - update the gw tvlv container after gateway
138 * setting change
139 * @bat_priv: the bat priv with all the soft interface information
140 */
141void batadv_gw_tvlv_container_update(struct batadv_priv *bat_priv)
142{
143 struct batadv_tvlv_gateway_data gw;
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200144 u32 down, up;
Marek Lindner414254e2013-04-23 21:39:58 +0800145 char gw_mode;
146
147 gw_mode = atomic_read(&bat_priv->gw_mode);
148
149 switch (gw_mode) {
150 case BATADV_GW_MODE_OFF:
151 case BATADV_GW_MODE_CLIENT:
152 batadv_tvlv_container_unregister(bat_priv, BATADV_TVLV_GW, 1);
153 break;
154 case BATADV_GW_MODE_SERVER:
155 down = atomic_read(&bat_priv->gw.bandwidth_down);
156 up = atomic_read(&bat_priv->gw.bandwidth_up);
157 gw.bandwidth_down = htonl(down);
158 gw.bandwidth_up = htonl(up);
159 batadv_tvlv_container_register(bat_priv, BATADV_TVLV_GW, 1,
160 &gw, sizeof(gw));
161 break;
162 }
163}
164
Sven Eckelmann84d5e5e2012-05-12 02:09:30 +0200165ssize_t batadv_gw_bandwidth_set(struct net_device *net_dev, char *buff,
166 size_t count)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000167{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200168 struct batadv_priv *bat_priv = netdev_priv(net_dev);
Sven Eckelmann4f248cf2015-06-09 20:50:49 +0200169 u32 down_curr;
170 u32 up_curr;
171 u32 down_new = 0;
172 u32 up_new = 0;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000173 bool ret;
174
Marek Lindner414254e2013-04-23 21:39:58 +0800175 down_curr = (unsigned int)atomic_read(&bat_priv->gw.bandwidth_down);
176 up_curr = (unsigned int)atomic_read(&bat_priv->gw.bandwidth_up);
177
178 ret = batadv_parse_gw_bandwidth(net_dev, buff, &down_new, &up_new);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000179 if (!ret)
Sven Eckelmann77927b72015-06-21 14:42:49 +0200180 return -EINVAL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000181
Marek Lindner414254e2013-04-23 21:39:58 +0800182 if (!down_new)
183 down_new = 1;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000184
Marek Lindner414254e2013-04-23 21:39:58 +0800185 if (!up_new)
186 up_new = down_new / 5;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000187
Marek Lindner414254e2013-04-23 21:39:58 +0800188 if (!up_new)
189 up_new = 1;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000190
Marek Lindner414254e2013-04-23 21:39:58 +0800191 if ((down_curr == down_new) && (up_curr == up_new))
Marek Lindnerdafe94b2012-05-11 16:10:50 +0800192 return count;
193
Antonio Quartulli4e820e72013-11-04 20:59:41 +0100194 batadv_gw_reselect(bat_priv);
Sven Eckelmann3e348192012-05-16 20:23:22 +0200195 batadv_info(net_dev,
Marek Lindner414254e2013-04-23 21:39:58 +0800196 "Changing gateway bandwidth from: '%u.%u/%u.%u MBit' to: '%u.%u/%u.%u MBit'\n",
197 down_curr / 10, down_curr % 10, up_curr / 10, up_curr % 10,
198 down_new / 10, down_new % 10, up_new / 10, up_new % 10);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000199
Marek Lindner414254e2013-04-23 21:39:58 +0800200 atomic_set(&bat_priv->gw.bandwidth_down, down_new);
201 atomic_set(&bat_priv->gw.bandwidth_up, up_new);
202 batadv_gw_tvlv_container_update(bat_priv);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000203
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000204 return count;
205}
Marek Lindner414254e2013-04-23 21:39:58 +0800206
207/**
208 * batadv_gw_tvlv_ogm_handler_v1 - process incoming gateway tvlv container
209 * @bat_priv: the bat priv with all the soft interface information
210 * @orig: the orig_node of the ogm
211 * @flags: flags indicating the tvlv state (see batadv_tvlv_handler_flags)
212 * @tvlv_value: tvlv buffer containing the gateway data
213 * @tvlv_value_len: tvlv buffer length
214 */
215static void batadv_gw_tvlv_ogm_handler_v1(struct batadv_priv *bat_priv,
216 struct batadv_orig_node *orig,
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200217 u8 flags,
218 void *tvlv_value, u16 tvlv_value_len)
Marek Lindner414254e2013-04-23 21:39:58 +0800219{
220 struct batadv_tvlv_gateway_data gateway, *gateway_ptr;
221
222 /* only fetch the tvlv value if the handler wasn't called via the
223 * CIFNOTFND flag and if there is data to fetch
224 */
225 if ((flags & BATADV_TVLV_HANDLER_OGM_CIFNOTFND) ||
226 (tvlv_value_len < sizeof(gateway))) {
227 gateway.bandwidth_down = 0;
228 gateway.bandwidth_up = 0;
229 } else {
230 gateway_ptr = tvlv_value;
231 gateway.bandwidth_down = gateway_ptr->bandwidth_down;
232 gateway.bandwidth_up = gateway_ptr->bandwidth_up;
233 if ((gateway.bandwidth_down == 0) ||
234 (gateway.bandwidth_up == 0)) {
235 gateway.bandwidth_down = 0;
236 gateway.bandwidth_up = 0;
237 }
238 }
239
240 batadv_gw_node_update(bat_priv, orig, &gateway);
241
242 /* restart gateway selection if fast or late switching was enabled */
243 if ((gateway.bandwidth_down != 0) &&
244 (atomic_read(&bat_priv->gw_mode) == BATADV_GW_MODE_CLIENT) &&
245 (atomic_read(&bat_priv->gw_sel_class) > 2))
246 batadv_gw_check_election(bat_priv, orig);
247}
248
249/**
250 * batadv_gw_init - initialise the gateway handling internals
251 * @bat_priv: the bat priv with all the soft interface information
252 */
253void batadv_gw_init(struct batadv_priv *bat_priv)
254{
255 batadv_tvlv_handler_register(bat_priv, batadv_gw_tvlv_ogm_handler_v1,
256 NULL, BATADV_TVLV_GW, 1,
257 BATADV_TVLV_HANDLER_OGM_CIFNOTFND);
258}
259
260/**
261 * batadv_gw_free - free the gateway handling internals
262 * @bat_priv: the bat priv with all the soft interface information
263 */
264void batadv_gw_free(struct batadv_priv *bat_priv)
265{
266 batadv_tvlv_container_unregister(bat_priv, BATADV_TVLV_GW, 1);
267 batadv_tvlv_handler_unregister(bat_priv, BATADV_TVLV_GW, 1);
268}