Merge branch 'sched/urgent'
[linux-2.6/x86.git] / net / batman-adv / gateway_common.c
blob18661af0bc3becbe4cc57ae8e2b9ec8a92d482e0
1 /*
2 * Copyright (C) 2009-2011 B.A.T.M.A.N. contributors:
4 * Marek Lindner
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.
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.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
18 * 02110-1301, USA
22 #include "main.h"
23 #include "gateway_common.h"
24 #include "gateway_client.h"
26 /* calculates the gateway class from kbit */
27 static void kbit_to_gw_bandwidth(int down, int up, long *gw_srv_class)
29 int mdown = 0, tdown, tup, difference;
30 uint8_t sbit, part;
32 *gw_srv_class = 0;
33 difference = 0x0FFFFFFF;
35 /* test all downspeeds */
36 for (sbit = 0; sbit < 2; sbit++) {
37 for (part = 0; part < 16; part++) {
38 tdown = 32 * (sbit + 2) * (1 << part);
40 if (abs(tdown - down) < difference) {
41 *gw_srv_class = (sbit << 7) + (part << 3);
42 difference = abs(tdown - down);
43 mdown = tdown;
48 /* test all upspeeds */
49 difference = 0x0FFFFFFF;
51 for (part = 0; part < 8; part++) {
52 tup = ((part + 1) * (mdown)) / 8;
54 if (abs(tup - up) < difference) {
55 *gw_srv_class = (*gw_srv_class & 0xF8) | part;
56 difference = abs(tup - up);
61 /* returns the up and downspeeds in kbit, calculated from the class */
62 void gw_bandwidth_to_kbit(uint8_t gw_srv_class, int *down, int *up)
64 int sbit = (gw_srv_class & 0x80) >> 7;
65 int dpart = (gw_srv_class & 0x78) >> 3;
66 int upart = (gw_srv_class & 0x07);
68 if (!gw_srv_class) {
69 *down = 0;
70 *up = 0;
71 return;
74 *down = 32 * (sbit + 2) * (1 << dpart);
75 *up = ((upart + 1) * (*down)) / 8;
78 static bool parse_gw_bandwidth(struct net_device *net_dev, char *buff,
79 int *up, int *down)
81 int ret, multi = 1;
82 char *slash_ptr, *tmp_ptr;
83 long ldown, lup;
85 slash_ptr = strchr(buff, '/');
86 if (slash_ptr)
87 *slash_ptr = 0;
89 if (strlen(buff) > 4) {
90 tmp_ptr = buff + strlen(buff) - 4;
92 if (strnicmp(tmp_ptr, "mbit", 4) == 0)
93 multi = 1024;
95 if ((strnicmp(tmp_ptr, "kbit", 4) == 0) ||
96 (multi > 1))
97 *tmp_ptr = '\0';
100 ret = strict_strtol(buff, 10, &ldown);
101 if (ret) {
102 bat_err(net_dev,
103 "Download speed of gateway mode invalid: %s\n",
104 buff);
105 return false;
108 *down = ldown * multi;
110 /* we also got some upload info */
111 if (slash_ptr) {
112 multi = 1;
114 if (strlen(slash_ptr + 1) > 4) {
115 tmp_ptr = slash_ptr + 1 - 4 + strlen(slash_ptr + 1);
117 if (strnicmp(tmp_ptr, "mbit", 4) == 0)
118 multi = 1024;
120 if ((strnicmp(tmp_ptr, "kbit", 4) == 0) ||
121 (multi > 1))
122 *tmp_ptr = '\0';
125 ret = strict_strtol(slash_ptr + 1, 10, &lup);
126 if (ret) {
127 bat_err(net_dev,
128 "Upload speed of gateway mode invalid: "
129 "%s\n", slash_ptr + 1);
130 return false;
133 *up = lup * multi;
136 return true;
139 ssize_t gw_bandwidth_set(struct net_device *net_dev, char *buff, size_t count)
141 struct bat_priv *bat_priv = netdev_priv(net_dev);
142 long gw_bandwidth_tmp = 0;
143 int up = 0, down = 0;
144 bool ret;
146 ret = parse_gw_bandwidth(net_dev, buff, &up, &down);
147 if (!ret)
148 goto end;
150 if ((!down) || (down < 256))
151 down = 2000;
153 if (!up)
154 up = down / 5;
156 kbit_to_gw_bandwidth(down, up, &gw_bandwidth_tmp);
159 * the gw bandwidth we guessed above might not match the given
160 * speeds, hence we need to calculate it back to show the number
161 * that is going to be propagated
163 gw_bandwidth_to_kbit((uint8_t)gw_bandwidth_tmp, &down, &up);
165 gw_deselect(bat_priv);
166 bat_info(net_dev, "Changing gateway bandwidth from: '%i' to: '%ld' "
167 "(propagating: %d%s/%d%s)\n",
168 atomic_read(&bat_priv->gw_bandwidth), gw_bandwidth_tmp,
169 (down > 2048 ? down / 1024 : down),
170 (down > 2048 ? "MBit" : "KBit"),
171 (up > 2048 ? up / 1024 : up),
172 (up > 2048 ? "MBit" : "KBit"));
174 atomic_set(&bat_priv->gw_bandwidth, gw_bandwidth_tmp);
176 end:
177 return count;