batman-adv: tvlv - gateway download/upload bandwidth container
[deliverable/linux.git] / net / batman-adv / sysfs.c
CommitLineData
0b873931 1/* Copyright (C) 2010-2013 B.A.T.M.A.N. contributors:
c6c8fea2
SE
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
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
17 * 02110-1301, USA
c6c8fea2
SE
18 */
19
20#include "main.h"
b706b13b 21#include "sysfs.h"
c6c8fea2 22#include "translation-table.h"
33af49ad 23#include "distributed-arp-table.h"
c6c8fea2
SE
24#include "originator.h"
25#include "hard-interface.h"
26#include "gateway_common.h"
27#include "gateway_client.h"
28#include "vis.h"
29
0ff9b86f 30static struct net_device *batadv_kobj_to_netdev(struct kobject *obj)
3d222bba
SE
31{
32 struct device *dev = container_of(obj->parent, struct device, kobj);
33 return to_net_dev(dev);
34}
35
56303d34 36static struct batadv_priv *batadv_kobj_to_batpriv(struct kobject *obj)
3d222bba 37{
0ff9b86f 38 struct net_device *net_dev = batadv_kobj_to_netdev(obj);
3d222bba
SE
39 return netdev_priv(net_dev);
40}
c6c8fea2 41
347c80f0
SE
42#define BATADV_UEV_TYPE_VAR "BATTYPE="
43#define BATADV_UEV_ACTION_VAR "BATACTION="
44#define BATADV_UEV_DATA_VAR "BATDATA="
c6bda689 45
0ff9b86f 46static char *batadv_uev_action_str[] = {
c6bda689
AQ
47 "add",
48 "del",
49 "change"
50};
51
0ff9b86f 52static char *batadv_uev_type_str[] = {
c6bda689
AQ
53 "gw"
54};
55
c6c8fea2 56/* Use this, if you have customized show and store functions */
347c80f0 57#define BATADV_ATTR(_name, _mode, _show, _store) \
b4d66b87 58struct batadv_attribute batadv_attr_##_name = { \
347c80f0
SE
59 .attr = {.name = __stringify(_name), \
60 .mode = _mode }, \
61 .show = _show, \
62 .store = _store, \
c6c8fea2
SE
63};
64
347c80f0 65#define BATADV_ATTR_SIF_STORE_BOOL(_name, _post_func) \
0ff9b86f
SE
66ssize_t batadv_store_##_name(struct kobject *kobj, \
67 struct attribute *attr, char *buff, \
68 size_t count) \
c6c8fea2 69{ \
0ff9b86f 70 struct net_device *net_dev = batadv_kobj_to_netdev(kobj); \
56303d34 71 struct batadv_priv *bat_priv = netdev_priv(net_dev); \
0ff9b86f
SE
72 return __batadv_store_bool_attr(buff, count, _post_func, attr, \
73 &bat_priv->_name, net_dev); \
c6c8fea2
SE
74}
75
347c80f0 76#define BATADV_ATTR_SIF_SHOW_BOOL(_name) \
0ff9b86f
SE
77ssize_t batadv_show_##_name(struct kobject *kobj, \
78 struct attribute *attr, char *buff) \
c6c8fea2 79{ \
56303d34 80 struct batadv_priv *bat_priv = batadv_kobj_to_batpriv(kobj); \
c6c8fea2
SE
81 return sprintf(buff, "%s\n", \
82 atomic_read(&bat_priv->_name) == 0 ? \
83 "disabled" : "enabled"); \
84} \
85
f245c38b 86/* Use this, if you are going to turn a [name] in the soft-interface
9cfc7bd6
SE
87 * (bat_priv) on or off
88 */
347c80f0
SE
89#define BATADV_ATTR_SIF_BOOL(_name, _mode, _post_func) \
90 static BATADV_ATTR_SIF_STORE_BOOL(_name, _post_func) \
91 static BATADV_ATTR_SIF_SHOW_BOOL(_name) \
92 static BATADV_ATTR(_name, _mode, batadv_show_##_name, \
93 batadv_store_##_name)
c6c8fea2
SE
94
95
347c80f0 96#define BATADV_ATTR_SIF_STORE_UINT(_name, _min, _max, _post_func) \
0ff9b86f
SE
97ssize_t batadv_store_##_name(struct kobject *kobj, \
98 struct attribute *attr, char *buff, \
99 size_t count) \
c6c8fea2 100{ \
0ff9b86f 101 struct net_device *net_dev = batadv_kobj_to_netdev(kobj); \
56303d34 102 struct batadv_priv *bat_priv = netdev_priv(net_dev); \
0ff9b86f
SE
103 return __batadv_store_uint_attr(buff, count, _min, _max, \
104 _post_func, attr, \
105 &bat_priv->_name, net_dev); \
c6c8fea2
SE
106}
107
347c80f0 108#define BATADV_ATTR_SIF_SHOW_UINT(_name) \
0ff9b86f
SE
109ssize_t batadv_show_##_name(struct kobject *kobj, \
110 struct attribute *attr, char *buff) \
c6c8fea2 111{ \
56303d34 112 struct batadv_priv *bat_priv = batadv_kobj_to_batpriv(kobj); \
c6c8fea2
SE
113 return sprintf(buff, "%i\n", atomic_read(&bat_priv->_name)); \
114} \
115
f245c38b 116/* Use this, if you are going to set [name] in the soft-interface
9cfc7bd6
SE
117 * (bat_priv) to an unsigned integer value
118 */
347c80f0
SE
119#define BATADV_ATTR_SIF_UINT(_name, _mode, _min, _max, _post_func) \
120 static BATADV_ATTR_SIF_STORE_UINT(_name, _min, _max, _post_func)\
121 static BATADV_ATTR_SIF_SHOW_UINT(_name) \
122 static BATADV_ATTR(_name, _mode, batadv_show_##_name, \
123 batadv_store_##_name)
c6c8fea2
SE
124
125
0ff9b86f
SE
126static int batadv_store_bool_attr(char *buff, size_t count,
127 struct net_device *net_dev,
128 const char *attr_name, atomic_t *attr)
c6c8fea2
SE
129{
130 int enabled = -1;
131
132 if (buff[count - 1] == '\n')
133 buff[count - 1] = '\0';
134
135 if ((strncmp(buff, "1", 2) == 0) ||
136 (strncmp(buff, "enable", 7) == 0) ||
137 (strncmp(buff, "enabled", 8) == 0))
138 enabled = 1;
139
140 if ((strncmp(buff, "0", 2) == 0) ||
141 (strncmp(buff, "disable", 8) == 0) ||
142 (strncmp(buff, "disabled", 9) == 0))
143 enabled = 0;
144
145 if (enabled < 0) {
3e34819e
SE
146 batadv_info(net_dev, "%s: Invalid parameter received: %s\n",
147 attr_name, buff);
c6c8fea2
SE
148 return -EINVAL;
149 }
150
151 if (atomic_read(attr) == enabled)
152 return count;
153
3e34819e
SE
154 batadv_info(net_dev, "%s: Changing from: %s to: %s\n", attr_name,
155 atomic_read(attr) == 1 ? "enabled" : "disabled",
156 enabled == 1 ? "enabled" : "disabled");
c6c8fea2 157
95c96174 158 atomic_set(attr, (unsigned int)enabled);
c6c8fea2
SE
159 return count;
160}
161
0ff9b86f
SE
162static inline ssize_t
163__batadv_store_bool_attr(char *buff, size_t count,
164 void (*post_func)(struct net_device *),
165 struct attribute *attr,
166 atomic_t *attr_store, struct net_device *net_dev)
c6c8fea2
SE
167{
168 int ret;
169
0ff9b86f
SE
170 ret = batadv_store_bool_attr(buff, count, net_dev, attr->name,
171 attr_store);
c6c8fea2
SE
172 if (post_func && ret)
173 post_func(net_dev);
174
175 return ret;
176}
177
0ff9b86f
SE
178static int batadv_store_uint_attr(const char *buff, size_t count,
179 struct net_device *net_dev,
180 const char *attr_name,
181 unsigned int min, unsigned int max,
182 atomic_t *attr)
c6c8fea2
SE
183{
184 unsigned long uint_val;
185 int ret;
186
25a92b13 187 ret = kstrtoul(buff, 10, &uint_val);
c6c8fea2 188 if (ret) {
3e34819e
SE
189 batadv_info(net_dev, "%s: Invalid parameter received: %s\n",
190 attr_name, buff);
c6c8fea2
SE
191 return -EINVAL;
192 }
193
194 if (uint_val < min) {
3e34819e
SE
195 batadv_info(net_dev, "%s: Value is too small: %lu min: %u\n",
196 attr_name, uint_val, min);
c6c8fea2
SE
197 return -EINVAL;
198 }
199
200 if (uint_val > max) {
3e34819e
SE
201 batadv_info(net_dev, "%s: Value is too big: %lu max: %u\n",
202 attr_name, uint_val, max);
c6c8fea2
SE
203 return -EINVAL;
204 }
205
206 if (atomic_read(attr) == uint_val)
207 return count;
208
3e34819e
SE
209 batadv_info(net_dev, "%s: Changing from: %i to: %lu\n",
210 attr_name, atomic_read(attr), uint_val);
c6c8fea2
SE
211
212 atomic_set(attr, uint_val);
213 return count;
214}
215
0ff9b86f
SE
216static inline ssize_t
217__batadv_store_uint_attr(const char *buff, size_t count,
218 int min, int max,
219 void (*post_func)(struct net_device *),
220 const struct attribute *attr,
221 atomic_t *attr_store, struct net_device *net_dev)
c6c8fea2
SE
222{
223 int ret;
224
0ff9b86f
SE
225 ret = batadv_store_uint_attr(buff, count, net_dev, attr->name, min, max,
226 attr_store);
c6c8fea2
SE
227 if (post_func && ret)
228 post_func(net_dev);
229
230 return ret;
231}
232
0ff9b86f
SE
233static ssize_t batadv_show_vis_mode(struct kobject *kobj,
234 struct attribute *attr, char *buff)
c6c8fea2 235{
56303d34 236 struct batadv_priv *bat_priv = batadv_kobj_to_batpriv(kobj);
c6c8fea2 237 int vis_mode = atomic_read(&bat_priv->vis_mode);
acd34afa 238 const char *mode;
c6c8fea2 239
acd34afa
SE
240 if (vis_mode == BATADV_VIS_TYPE_CLIENT_UPDATE)
241 mode = "client";
242 else
243 mode = "server";
244
245 return sprintf(buff, "%s\n", mode);
c6c8fea2
SE
246}
247
0ff9b86f
SE
248static ssize_t batadv_store_vis_mode(struct kobject *kobj,
249 struct attribute *attr, char *buff,
250 size_t count)
c6c8fea2 251{
0ff9b86f 252 struct net_device *net_dev = batadv_kobj_to_netdev(kobj);
56303d34 253 struct batadv_priv *bat_priv = netdev_priv(net_dev);
c6c8fea2
SE
254 unsigned long val;
255 int ret, vis_mode_tmp = -1;
3e34819e 256 const char *old_mode, *new_mode;
c6c8fea2 257
25a92b13 258 ret = kstrtoul(buff, 10, &val);
c6c8fea2 259
acd34afa
SE
260 if (((count == 2) && (!ret) &&
261 (val == BATADV_VIS_TYPE_CLIENT_UPDATE)) ||
c6c8fea2
SE
262 (strncmp(buff, "client", 6) == 0) ||
263 (strncmp(buff, "off", 3) == 0))
acd34afa 264 vis_mode_tmp = BATADV_VIS_TYPE_CLIENT_UPDATE;
c6c8fea2 265
acd34afa
SE
266 if (((count == 2) && (!ret) &&
267 (val == BATADV_VIS_TYPE_SERVER_SYNC)) ||
c6c8fea2 268 (strncmp(buff, "server", 6) == 0))
acd34afa 269 vis_mode_tmp = BATADV_VIS_TYPE_SERVER_SYNC;
c6c8fea2
SE
270
271 if (vis_mode_tmp < 0) {
272 if (buff[count - 1] == '\n')
273 buff[count - 1] = '\0';
274
3e34819e
SE
275 batadv_info(net_dev,
276 "Invalid parameter for 'vis mode' setting received: %s\n",
277 buff);
c6c8fea2
SE
278 return -EINVAL;
279 }
280
281 if (atomic_read(&bat_priv->vis_mode) == vis_mode_tmp)
282 return count;
283
acd34afa 284 if (atomic_read(&bat_priv->vis_mode) == BATADV_VIS_TYPE_CLIENT_UPDATE)
3e34819e
SE
285 old_mode = "client";
286 else
287 old_mode = "server";
288
acd34afa 289 if (vis_mode_tmp == BATADV_VIS_TYPE_CLIENT_UPDATE)
3e34819e
SE
290 new_mode = "client";
291 else
292 new_mode = "server";
293
294 batadv_info(net_dev, "Changing vis mode from: %s to: %s\n", old_mode,
295 new_mode);
c6c8fea2 296
95c96174 297 atomic_set(&bat_priv->vis_mode, (unsigned int)vis_mode_tmp);
c6c8fea2
SE
298 return count;
299}
300
0ff9b86f
SE
301static ssize_t batadv_show_bat_algo(struct kobject *kobj,
302 struct attribute *attr, char *buff)
ea3d2fd1 303{
56303d34 304 struct batadv_priv *bat_priv = batadv_kobj_to_batpriv(kobj);
ea3d2fd1
ML
305 return sprintf(buff, "%s\n", bat_priv->bat_algo_ops->name);
306}
307
0ff9b86f 308static void batadv_post_gw_deselect(struct net_device *net_dev)
c6c8fea2 309{
56303d34 310 struct batadv_priv *bat_priv = netdev_priv(net_dev);
7cf06bc6 311 batadv_gw_deselect(bat_priv);
c6c8fea2
SE
312}
313
0ff9b86f
SE
314static ssize_t batadv_show_gw_mode(struct kobject *kobj, struct attribute *attr,
315 char *buff)
c6c8fea2 316{
56303d34 317 struct batadv_priv *bat_priv = batadv_kobj_to_batpriv(kobj);
c6c8fea2
SE
318 int bytes_written;
319
320 switch (atomic_read(&bat_priv->gw_mode)) {
cd646ab1 321 case BATADV_GW_MODE_CLIENT:
97ea4ba1
SE
322 bytes_written = sprintf(buff, "%s\n",
323 BATADV_GW_MODE_CLIENT_NAME);
c6c8fea2 324 break;
cd646ab1 325 case BATADV_GW_MODE_SERVER:
97ea4ba1
SE
326 bytes_written = sprintf(buff, "%s\n",
327 BATADV_GW_MODE_SERVER_NAME);
c6c8fea2
SE
328 break;
329 default:
97ea4ba1
SE
330 bytes_written = sprintf(buff, "%s\n",
331 BATADV_GW_MODE_OFF_NAME);
c6c8fea2
SE
332 break;
333 }
334
335 return bytes_written;
336}
337
0ff9b86f
SE
338static ssize_t batadv_store_gw_mode(struct kobject *kobj,
339 struct attribute *attr, char *buff,
340 size_t count)
c6c8fea2 341{
0ff9b86f 342 struct net_device *net_dev = batadv_kobj_to_netdev(kobj);
56303d34 343 struct batadv_priv *bat_priv = netdev_priv(net_dev);
c6c8fea2
SE
344 char *curr_gw_mode_str;
345 int gw_mode_tmp = -1;
346
347 if (buff[count - 1] == '\n')
348 buff[count - 1] = '\0';
349
97ea4ba1
SE
350 if (strncmp(buff, BATADV_GW_MODE_OFF_NAME,
351 strlen(BATADV_GW_MODE_OFF_NAME)) == 0)
cd646ab1 352 gw_mode_tmp = BATADV_GW_MODE_OFF;
c6c8fea2 353
97ea4ba1
SE
354 if (strncmp(buff, BATADV_GW_MODE_CLIENT_NAME,
355 strlen(BATADV_GW_MODE_CLIENT_NAME)) == 0)
cd646ab1 356 gw_mode_tmp = BATADV_GW_MODE_CLIENT;
c6c8fea2 357
97ea4ba1
SE
358 if (strncmp(buff, BATADV_GW_MODE_SERVER_NAME,
359 strlen(BATADV_GW_MODE_SERVER_NAME)) == 0)
cd646ab1 360 gw_mode_tmp = BATADV_GW_MODE_SERVER;
c6c8fea2
SE
361
362 if (gw_mode_tmp < 0) {
3e34819e
SE
363 batadv_info(net_dev,
364 "Invalid parameter for 'gw mode' setting received: %s\n",
365 buff);
c6c8fea2
SE
366 return -EINVAL;
367 }
368
369 if (atomic_read(&bat_priv->gw_mode) == gw_mode_tmp)
370 return count;
371
372 switch (atomic_read(&bat_priv->gw_mode)) {
cd646ab1 373 case BATADV_GW_MODE_CLIENT:
97ea4ba1 374 curr_gw_mode_str = BATADV_GW_MODE_CLIENT_NAME;
c6c8fea2 375 break;
cd646ab1 376 case BATADV_GW_MODE_SERVER:
97ea4ba1 377 curr_gw_mode_str = BATADV_GW_MODE_SERVER_NAME;
c6c8fea2
SE
378 break;
379 default:
97ea4ba1 380 curr_gw_mode_str = BATADV_GW_MODE_OFF_NAME;
c6c8fea2
SE
381 break;
382 }
383
3e34819e
SE
384 batadv_info(net_dev, "Changing gw mode from: %s to: %s\n",
385 curr_gw_mode_str, buff);
c6c8fea2 386
7cf06bc6 387 batadv_gw_deselect(bat_priv);
c6eaa3f0
AQ
388 /* always call batadv_gw_check_client_stop() before changing the gateway
389 * state
390 */
391 batadv_gw_check_client_stop(bat_priv);
95c96174 392 atomic_set(&bat_priv->gw_mode, (unsigned int)gw_mode_tmp);
414254e3 393 batadv_gw_tvlv_container_update(bat_priv);
c6c8fea2
SE
394 return count;
395}
396
0ff9b86f
SE
397static ssize_t batadv_show_gw_bwidth(struct kobject *kobj,
398 struct attribute *attr, char *buff)
c6c8fea2 399{
56303d34 400 struct batadv_priv *bat_priv = batadv_kobj_to_batpriv(kobj);
414254e3
ML
401 uint32_t down, up;
402
403 down = atomic_read(&bat_priv->gw.bandwidth_down);
404 up = atomic_read(&bat_priv->gw.bandwidth_up);
405
406 return sprintf(buff, "%u.%u/%u.%u MBit\n", down / 10,
407 down % 10, up / 10, up % 10);
c6c8fea2
SE
408}
409
0ff9b86f
SE
410static ssize_t batadv_store_gw_bwidth(struct kobject *kobj,
411 struct attribute *attr, char *buff,
412 size_t count)
c6c8fea2 413{
0ff9b86f 414 struct net_device *net_dev = batadv_kobj_to_netdev(kobj);
c6c8fea2
SE
415
416 if (buff[count - 1] == '\n')
417 buff[count - 1] = '\0';
418
84d5e5e0 419 return batadv_gw_bandwidth_set(net_dev, buff, count);
c6c8fea2
SE
420}
421
347c80f0
SE
422BATADV_ATTR_SIF_BOOL(aggregated_ogms, S_IRUGO | S_IWUSR, NULL);
423BATADV_ATTR_SIF_BOOL(bonding, S_IRUGO | S_IWUSR, NULL);
7a5cc242 424#ifdef CONFIG_BATMAN_ADV_BLA
347c80f0 425BATADV_ATTR_SIF_BOOL(bridge_loop_avoidance, S_IRUGO | S_IWUSR, NULL);
7a5cc242 426#endif
33af49ad
AQ
427#ifdef CONFIG_BATMAN_ADV_DAT
428BATADV_ATTR_SIF_BOOL(distributed_arp_table, S_IRUGO | S_IWUSR, NULL);
429#endif
347c80f0
SE
430BATADV_ATTR_SIF_BOOL(fragmentation, S_IRUGO | S_IWUSR, batadv_update_min_mtu);
431BATADV_ATTR_SIF_BOOL(ap_isolation, S_IRUGO | S_IWUSR, NULL);
432static BATADV_ATTR(vis_mode, S_IRUGO | S_IWUSR, batadv_show_vis_mode,
433 batadv_store_vis_mode);
434static BATADV_ATTR(routing_algo, S_IRUGO, batadv_show_bat_algo, NULL);
435static BATADV_ATTR(gw_mode, S_IRUGO | S_IWUSR, batadv_show_gw_mode,
436 batadv_store_gw_mode);
42d0b044
SE
437BATADV_ATTR_SIF_UINT(orig_interval, S_IRUGO | S_IWUSR, 2 * BATADV_JITTER,
438 INT_MAX, NULL);
439BATADV_ATTR_SIF_UINT(hop_penalty, S_IRUGO | S_IWUSR, 0, BATADV_TQ_MAX_VALUE,
347c80f0 440 NULL);
42d0b044 441BATADV_ATTR_SIF_UINT(gw_sel_class, S_IRUGO | S_IWUSR, 1, BATADV_TQ_MAX_VALUE,
347c80f0
SE
442 batadv_post_gw_deselect);
443static BATADV_ATTR(gw_bandwidth, S_IRUGO | S_IWUSR, batadv_show_gw_bwidth,
444 batadv_store_gw_bwidth);
c6c8fea2 445#ifdef CONFIG_BATMAN_ADV_DEBUG
39c75a51 446BATADV_ATTR_SIF_UINT(log_level, S_IRUGO | S_IWUSR, 0, BATADV_DBG_ALL, NULL);
c6c8fea2 447#endif
d353d8d4
MH
448#ifdef CONFIG_BATMAN_ADV_NC
449BATADV_ATTR_SIF_BOOL(network_coding, S_IRUGO | S_IWUSR, NULL);
450#endif
c6c8fea2 451
b4d66b87 452static struct batadv_attribute *batadv_mesh_attrs[] = {
0ff9b86f
SE
453 &batadv_attr_aggregated_ogms,
454 &batadv_attr_bonding,
7a5cc242 455#ifdef CONFIG_BATMAN_ADV_BLA
0ff9b86f 456 &batadv_attr_bridge_loop_avoidance,
33af49ad
AQ
457#endif
458#ifdef CONFIG_BATMAN_ADV_DAT
459 &batadv_attr_distributed_arp_table,
7a5cc242 460#endif
0ff9b86f
SE
461 &batadv_attr_fragmentation,
462 &batadv_attr_ap_isolation,
463 &batadv_attr_vis_mode,
464 &batadv_attr_routing_algo,
465 &batadv_attr_gw_mode,
466 &batadv_attr_orig_interval,
467 &batadv_attr_hop_penalty,
468 &batadv_attr_gw_sel_class,
469 &batadv_attr_gw_bandwidth,
c6c8fea2 470#ifdef CONFIG_BATMAN_ADV_DEBUG
0ff9b86f 471 &batadv_attr_log_level,
d353d8d4
MH
472#endif
473#ifdef CONFIG_BATMAN_ADV_NC
474 &batadv_attr_network_coding,
c6c8fea2
SE
475#endif
476 NULL,
477};
478
5853e22c 479int batadv_sysfs_add_meshif(struct net_device *dev)
c6c8fea2
SE
480{
481 struct kobject *batif_kobject = &dev->dev.kobj;
56303d34 482 struct batadv_priv *bat_priv = netdev_priv(dev);
b4d66b87 483 struct batadv_attribute **bat_attr;
c6c8fea2
SE
484 int err;
485
036cbfeb 486 bat_priv->mesh_obj = kobject_create_and_add(BATADV_SYSFS_IF_MESH_SUBDIR,
c6c8fea2
SE
487 batif_kobject);
488 if (!bat_priv->mesh_obj) {
3e34819e 489 batadv_err(dev, "Can't add sysfs directory: %s/%s\n", dev->name,
036cbfeb 490 BATADV_SYSFS_IF_MESH_SUBDIR);
c6c8fea2
SE
491 goto out;
492 }
493
0ff9b86f 494 for (bat_attr = batadv_mesh_attrs; *bat_attr; ++bat_attr) {
c6c8fea2
SE
495 err = sysfs_create_file(bat_priv->mesh_obj,
496 &((*bat_attr)->attr));
497 if (err) {
3e34819e 498 batadv_err(dev, "Can't add sysfs file: %s/%s/%s\n",
036cbfeb 499 dev->name, BATADV_SYSFS_IF_MESH_SUBDIR,
3e34819e 500 ((*bat_attr)->attr).name);
c6c8fea2
SE
501 goto rem_attr;
502 }
503 }
504
505 return 0;
506
507rem_attr:
0ff9b86f 508 for (bat_attr = batadv_mesh_attrs; *bat_attr; ++bat_attr)
c6c8fea2
SE
509 sysfs_remove_file(bat_priv->mesh_obj, &((*bat_attr)->attr));
510
511 kobject_put(bat_priv->mesh_obj);
512 bat_priv->mesh_obj = NULL;
513out:
514 return -ENOMEM;
515}
516
5853e22c 517void batadv_sysfs_del_meshif(struct net_device *dev)
c6c8fea2 518{
56303d34 519 struct batadv_priv *bat_priv = netdev_priv(dev);
b4d66b87 520 struct batadv_attribute **bat_attr;
c6c8fea2 521
0ff9b86f 522 for (bat_attr = batadv_mesh_attrs; *bat_attr; ++bat_attr)
c6c8fea2
SE
523 sysfs_remove_file(bat_priv->mesh_obj, &((*bat_attr)->attr));
524
525 kobject_put(bat_priv->mesh_obj);
526 bat_priv->mesh_obj = NULL;
527}
528
0ff9b86f
SE
529static ssize_t batadv_show_mesh_iface(struct kobject *kobj,
530 struct attribute *attr, char *buff)
c6c8fea2 531{
0ff9b86f 532 struct net_device *net_dev = batadv_kobj_to_netdev(kobj);
56303d34 533 struct batadv_hard_iface *hard_iface;
c6c8fea2 534 ssize_t length;
e9a4f295 535 const char *ifname;
c6c8fea2 536
56303d34 537 hard_iface = batadv_hardif_get_by_netdev(net_dev);
e6c10f43 538 if (!hard_iface)
c6c8fea2
SE
539 return 0;
540
e9a4f295
SE
541 if (hard_iface->if_status == BATADV_IF_NOT_IN_USE)
542 ifname = "none";
543 else
544 ifname = hard_iface->soft_iface->name;
545
546 length = sprintf(buff, "%s\n", ifname);
c6c8fea2 547
e5d89254 548 batadv_hardif_free_ref(hard_iface);
c6c8fea2
SE
549
550 return length;
551}
552
0ff9b86f
SE
553static ssize_t batadv_store_mesh_iface(struct kobject *kobj,
554 struct attribute *attr, char *buff,
555 size_t count)
c6c8fea2 556{
0ff9b86f 557 struct net_device *net_dev = batadv_kobj_to_netdev(kobj);
56303d34 558 struct batadv_hard_iface *hard_iface;
c6c8fea2 559 int status_tmp = -1;
ed75ccbe 560 int ret = count;
c6c8fea2 561
56303d34 562 hard_iface = batadv_hardif_get_by_netdev(net_dev);
e6c10f43 563 if (!hard_iface)
c6c8fea2
SE
564 return count;
565
566 if (buff[count - 1] == '\n')
567 buff[count - 1] = '\0';
568
569 if (strlen(buff) >= IFNAMSIZ) {
86ceb360
SE
570 pr_err("Invalid parameter for 'mesh_iface' setting received: interface name too long '%s'\n",
571 buff);
e5d89254 572 batadv_hardif_free_ref(hard_iface);
c6c8fea2
SE
573 return -EINVAL;
574 }
575
576 if (strncmp(buff, "none", 4) == 0)
e9a4f295 577 status_tmp = BATADV_IF_NOT_IN_USE;
c6c8fea2 578 else
e9a4f295 579 status_tmp = BATADV_IF_I_WANT_YOU;
c6c8fea2 580
e6c10f43
ML
581 if (hard_iface->if_status == status_tmp)
582 goto out;
583
584 if ((hard_iface->soft_iface) &&
585 (strncmp(hard_iface->soft_iface->name, buff, IFNAMSIZ) == 0))
ed75ccbe 586 goto out;
c6c8fea2 587
ac16d148 588 rtnl_lock();
3a4375a9 589
e9a4f295 590 if (status_tmp == BATADV_IF_NOT_IN_USE) {
a15fd361
SE
591 batadv_hardif_disable_interface(hard_iface,
592 BATADV_IF_CLEANUP_AUTO);
3a4375a9 593 goto unlock;
c6c8fea2
SE
594 }
595
596 /* if the interface already is in use */
e9a4f295 597 if (hard_iface->if_status != BATADV_IF_NOT_IN_USE)
a15fd361
SE
598 batadv_hardif_disable_interface(hard_iface,
599 BATADV_IF_CLEANUP_AUTO);
c6c8fea2 600
9563877e 601 ret = batadv_hardif_enable_interface(hard_iface, buff);
c6c8fea2 602
3a4375a9
SE
603unlock:
604 rtnl_unlock();
ed75ccbe 605out:
e5d89254 606 batadv_hardif_free_ref(hard_iface);
c6c8fea2
SE
607 return ret;
608}
609
0ff9b86f
SE
610static ssize_t batadv_show_iface_status(struct kobject *kobj,
611 struct attribute *attr, char *buff)
c6c8fea2 612{
0ff9b86f 613 struct net_device *net_dev = batadv_kobj_to_netdev(kobj);
56303d34 614 struct batadv_hard_iface *hard_iface;
c6c8fea2
SE
615 ssize_t length;
616
56303d34 617 hard_iface = batadv_hardif_get_by_netdev(net_dev);
e6c10f43 618 if (!hard_iface)
c6c8fea2
SE
619 return 0;
620
e6c10f43 621 switch (hard_iface->if_status) {
e9a4f295 622 case BATADV_IF_TO_BE_REMOVED:
c6c8fea2
SE
623 length = sprintf(buff, "disabling\n");
624 break;
e9a4f295 625 case BATADV_IF_INACTIVE:
c6c8fea2
SE
626 length = sprintf(buff, "inactive\n");
627 break;
e9a4f295 628 case BATADV_IF_ACTIVE:
c6c8fea2
SE
629 length = sprintf(buff, "active\n");
630 break;
e9a4f295 631 case BATADV_IF_TO_BE_ACTIVATED:
c6c8fea2
SE
632 length = sprintf(buff, "enabling\n");
633 break;
e9a4f295 634 case BATADV_IF_NOT_IN_USE:
c6c8fea2
SE
635 default:
636 length = sprintf(buff, "not in use\n");
637 break;
638 }
639
e5d89254 640 batadv_hardif_free_ref(hard_iface);
c6c8fea2
SE
641
642 return length;
643}
644
347c80f0
SE
645static BATADV_ATTR(mesh_iface, S_IRUGO | S_IWUSR, batadv_show_mesh_iface,
646 batadv_store_mesh_iface);
647static BATADV_ATTR(iface_status, S_IRUGO, batadv_show_iface_status, NULL);
c6c8fea2 648
b4d66b87 649static struct batadv_attribute *batadv_batman_attrs[] = {
0ff9b86f
SE
650 &batadv_attr_mesh_iface,
651 &batadv_attr_iface_status,
c6c8fea2
SE
652 NULL,
653};
654
5853e22c 655int batadv_sysfs_add_hardif(struct kobject **hardif_obj, struct net_device *dev)
c6c8fea2
SE
656{
657 struct kobject *hardif_kobject = &dev->dev.kobj;
b4d66b87 658 struct batadv_attribute **bat_attr;
c6c8fea2
SE
659 int err;
660
036cbfeb
SE
661 *hardif_obj = kobject_create_and_add(BATADV_SYSFS_IF_BAT_SUBDIR,
662 hardif_kobject);
c6c8fea2
SE
663
664 if (!*hardif_obj) {
3e34819e 665 batadv_err(dev, "Can't add sysfs directory: %s/%s\n", dev->name,
036cbfeb 666 BATADV_SYSFS_IF_BAT_SUBDIR);
c6c8fea2
SE
667 goto out;
668 }
669
0ff9b86f 670 for (bat_attr = batadv_batman_attrs; *bat_attr; ++bat_attr) {
c6c8fea2
SE
671 err = sysfs_create_file(*hardif_obj, &((*bat_attr)->attr));
672 if (err) {
3e34819e 673 batadv_err(dev, "Can't add sysfs file: %s/%s/%s\n",
036cbfeb 674 dev->name, BATADV_SYSFS_IF_BAT_SUBDIR,
3e34819e 675 ((*bat_attr)->attr).name);
c6c8fea2
SE
676 goto rem_attr;
677 }
678 }
679
680 return 0;
681
682rem_attr:
0ff9b86f 683 for (bat_attr = batadv_batman_attrs; *bat_attr; ++bat_attr)
c6c8fea2
SE
684 sysfs_remove_file(*hardif_obj, &((*bat_attr)->attr));
685out:
686 return -ENOMEM;
687}
688
5853e22c 689void batadv_sysfs_del_hardif(struct kobject **hardif_obj)
c6c8fea2
SE
690{
691 kobject_put(*hardif_obj);
692 *hardif_obj = NULL;
693}
c6bda689 694
56303d34 695int batadv_throw_uevent(struct batadv_priv *bat_priv, enum batadv_uev_type type,
39c75a51 696 enum batadv_uev_action action, const char *data)
c6bda689 697{
5346c35e 698 int ret = -ENOMEM;
c6bda689
AQ
699 struct kobject *bat_kobj;
700 char *uevent_env[4] = { NULL, NULL, NULL, NULL };
701
736292c2 702 bat_kobj = &bat_priv->soft_iface->dev.kobj;
c6bda689 703
347c80f0 704 uevent_env[0] = kmalloc(strlen(BATADV_UEV_TYPE_VAR) +
0ff9b86f 705 strlen(batadv_uev_type_str[type]) + 1,
c6bda689
AQ
706 GFP_ATOMIC);
707 if (!uevent_env[0])
708 goto out;
709
347c80f0
SE
710 sprintf(uevent_env[0], "%s%s", BATADV_UEV_TYPE_VAR,
711 batadv_uev_type_str[type]);
c6bda689 712
347c80f0 713 uevent_env[1] = kmalloc(strlen(BATADV_UEV_ACTION_VAR) +
0ff9b86f 714 strlen(batadv_uev_action_str[action]) + 1,
c6bda689
AQ
715 GFP_ATOMIC);
716 if (!uevent_env[1])
717 goto out;
718
347c80f0 719 sprintf(uevent_env[1], "%s%s", BATADV_UEV_ACTION_VAR,
0ff9b86f 720 batadv_uev_action_str[action]);
c6bda689
AQ
721
722 /* If the event is DEL, ignore the data field */
39c75a51 723 if (action != BATADV_UEV_DEL) {
347c80f0 724 uevent_env[2] = kmalloc(strlen(BATADV_UEV_DATA_VAR) +
c6bda689
AQ
725 strlen(data) + 1, GFP_ATOMIC);
726 if (!uevent_env[2])
727 goto out;
728
347c80f0 729 sprintf(uevent_env[2], "%s%s", BATADV_UEV_DATA_VAR, data);
c6bda689
AQ
730 }
731
732 ret = kobject_uevent_env(bat_kobj, KOBJ_CHANGE, uevent_env);
733out:
734 kfree(uevent_env[0]);
735 kfree(uevent_env[1]);
736 kfree(uevent_env[2]);
737
c6bda689 738 if (ret)
39c75a51 739 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
1eda58bf 740 "Impossible to send uevent for (%s,%s,%s) event (err: %d)\n",
0ff9b86f
SE
741 batadv_uev_type_str[type],
742 batadv_uev_action_str[action],
39c75a51 743 (action == BATADV_UEV_DEL ? "NULL" : data), ret);
c6bda689
AQ
744 return ret;
745}
This page took 0.237176 seconds and 5 git commands to generate.