sysfs.c 20.0 KB
Newer Older
1
/* Copyright (C) 2010-2013 B.A.T.M.A.N. contributors:
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
 *
 * Marek Lindner
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of version 2 of the GNU General Public
 * License as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
 * General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
 * 02110-1301, USA
 */

#include "main.h"
21
#include "sysfs.h"
22
#include "translation-table.h"
23
#include "distributed-arp-table.h"
24 25 26 27 28 29
#include "originator.h"
#include "hard-interface.h"
#include "gateway_common.h"
#include "gateway_client.h"
#include "vis.h"

30
static struct net_device *batadv_kobj_to_netdev(struct kobject *obj)
31 32 33 34 35
{
	struct device *dev = container_of(obj->parent, struct device, kobj);
	return to_net_dev(dev);
}

36
static struct batadv_priv *batadv_kobj_to_batpriv(struct kobject *obj)
37
{
38
	struct net_device *net_dev = batadv_kobj_to_netdev(obj);
39 40
	return netdev_priv(net_dev);
}
41

42 43 44
#define BATADV_UEV_TYPE_VAR	"BATTYPE="
#define BATADV_UEV_ACTION_VAR	"BATACTION="
#define BATADV_UEV_DATA_VAR	"BATDATA="
45

46
static char *batadv_uev_action_str[] = {
47 48 49 50 51
	"add",
	"del",
	"change"
};

52
static char *batadv_uev_type_str[] = {
53 54 55
	"gw"
};

56
/* Use this, if you have customized show and store functions */
57
#define BATADV_ATTR(_name, _mode, _show, _store)	\
58
struct batadv_attribute batadv_attr_##_name = {		\
59 60 61 62
	.attr = {.name = __stringify(_name),		\
		 .mode = _mode },			\
	.show   = _show,				\
	.store  = _store,				\
63 64
};

65
#define BATADV_ATTR_SIF_STORE_BOOL(_name, _post_func)			\
66 67 68
ssize_t batadv_store_##_name(struct kobject *kobj,			\
			     struct attribute *attr, char *buff,	\
			     size_t count)				\
69
{									\
70
	struct net_device *net_dev = batadv_kobj_to_netdev(kobj);	\
71
	struct batadv_priv *bat_priv = netdev_priv(net_dev);		\
72 73
	return __batadv_store_bool_attr(buff, count, _post_func, attr,	\
					&bat_priv->_name, net_dev);	\
74 75
}

76
#define BATADV_ATTR_SIF_SHOW_BOOL(_name)				\
77 78
ssize_t batadv_show_##_name(struct kobject *kobj,			\
			    struct attribute *attr, char *buff)		\
79
{									\
80
	struct batadv_priv *bat_priv = batadv_kobj_to_batpriv(kobj);	\
81 82 83 84 85
	return sprintf(buff, "%s\n",					\
		       atomic_read(&bat_priv->_name) == 0 ?		\
		       "disabled" : "enabled");				\
}									\

86
/* Use this, if you are going to turn a [name] in the soft-interface
87 88
 * (bat_priv) on or off
 */
89 90 91 92 93
#define BATADV_ATTR_SIF_BOOL(_name, _mode, _post_func)			\
	static BATADV_ATTR_SIF_STORE_BOOL(_name, _post_func)		\
	static BATADV_ATTR_SIF_SHOW_BOOL(_name)				\
	static BATADV_ATTR(_name, _mode, batadv_show_##_name,		\
			   batadv_store_##_name)
94 95


96
#define BATADV_ATTR_SIF_STORE_UINT(_name, _min, _max, _post_func)	\
97 98 99
ssize_t batadv_store_##_name(struct kobject *kobj,			\
			     struct attribute *attr, char *buff,	\
			     size_t count)				\
100
{									\
101
	struct net_device *net_dev = batadv_kobj_to_netdev(kobj);	\
102
	struct batadv_priv *bat_priv = netdev_priv(net_dev);		\
103 104 105
	return __batadv_store_uint_attr(buff, count, _min, _max,	\
					_post_func, attr,		\
					&bat_priv->_name, net_dev);	\
106 107
}

108
#define BATADV_ATTR_SIF_SHOW_UINT(_name)				\
109 110
ssize_t batadv_show_##_name(struct kobject *kobj,			\
			    struct attribute *attr, char *buff)		\
111
{									\
112
	struct batadv_priv *bat_priv = batadv_kobj_to_batpriv(kobj);	\
113 114 115
	return sprintf(buff, "%i\n", atomic_read(&bat_priv->_name));	\
}									\

116
/* Use this, if you are going to set [name] in the soft-interface
117 118
 * (bat_priv) to an unsigned integer value
 */
119 120 121 122 123
#define BATADV_ATTR_SIF_UINT(_name, _mode, _min, _max, _post_func)	\
	static BATADV_ATTR_SIF_STORE_UINT(_name, _min, _max, _post_func)\
	static BATADV_ATTR_SIF_SHOW_UINT(_name)				\
	static BATADV_ATTR(_name, _mode, batadv_show_##_name,		\
			   batadv_store_##_name)
124 125


126 127 128
static int batadv_store_bool_attr(char *buff, size_t count,
				  struct net_device *net_dev,
				  const char *attr_name, atomic_t *attr)
129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145
{
	int enabled = -1;

	if (buff[count - 1] == '\n')
		buff[count - 1] = '\0';

	if ((strncmp(buff, "1", 2) == 0) ||
	    (strncmp(buff, "enable", 7) == 0) ||
	    (strncmp(buff, "enabled", 8) == 0))
		enabled = 1;

	if ((strncmp(buff, "0", 2) == 0) ||
	    (strncmp(buff, "disable", 8) == 0) ||
	    (strncmp(buff, "disabled", 9) == 0))
		enabled = 0;

	if (enabled < 0) {
146 147
		batadv_info(net_dev, "%s: Invalid parameter received: %s\n",
			    attr_name, buff);
148 149 150 151 152 153
		return -EINVAL;
	}

	if (atomic_read(attr) == enabled)
		return count;

154 155 156
	batadv_info(net_dev, "%s: Changing from: %s to: %s\n", attr_name,
		    atomic_read(attr) == 1 ? "enabled" : "disabled",
		    enabled == 1 ? "enabled" : "disabled");
157

158
	atomic_set(attr, (unsigned int)enabled);
159 160 161
	return count;
}

162 163 164 165 166
static inline ssize_t
__batadv_store_bool_attr(char *buff, size_t count,
			 void (*post_func)(struct net_device *),
			 struct attribute *attr,
			 atomic_t *attr_store, struct net_device *net_dev)
167 168 169
{
	int ret;

170 171
	ret = batadv_store_bool_attr(buff, count, net_dev, attr->name,
				     attr_store);
172 173 174 175 176 177
	if (post_func && ret)
		post_func(net_dev);

	return ret;
}

178 179 180 181 182
static int batadv_store_uint_attr(const char *buff, size_t count,
				  struct net_device *net_dev,
				  const char *attr_name,
				  unsigned int min, unsigned int max,
				  atomic_t *attr)
183 184 185 186
{
	unsigned long uint_val;
	int ret;

187
	ret = kstrtoul(buff, 10, &uint_val);
188
	if (ret) {
189 190
		batadv_info(net_dev, "%s: Invalid parameter received: %s\n",
			    attr_name, buff);
191 192 193 194
		return -EINVAL;
	}

	if (uint_val < min) {
195 196
		batadv_info(net_dev, "%s: Value is too small: %lu min: %u\n",
			    attr_name, uint_val, min);
197 198 199 200
		return -EINVAL;
	}

	if (uint_val > max) {
201 202
		batadv_info(net_dev, "%s: Value is too big: %lu max: %u\n",
			    attr_name, uint_val, max);
203 204 205 206 207 208
		return -EINVAL;
	}

	if (atomic_read(attr) == uint_val)
		return count;

209 210
	batadv_info(net_dev, "%s: Changing from: %i to: %lu\n",
		    attr_name, atomic_read(attr), uint_val);
211 212 213 214 215

	atomic_set(attr, uint_val);
	return count;
}

216 217 218 219 220 221
static inline ssize_t
__batadv_store_uint_attr(const char *buff, size_t count,
			 int min, int max,
			 void (*post_func)(struct net_device *),
			 const struct attribute *attr,
			 atomic_t *attr_store, struct net_device *net_dev)
222 223 224
{
	int ret;

225 226
	ret = batadv_store_uint_attr(buff, count, net_dev, attr->name, min, max,
				     attr_store);
227 228 229 230 231 232
	if (post_func && ret)
		post_func(net_dev);

	return ret;
}

233 234
static ssize_t batadv_show_vis_mode(struct kobject *kobj,
				    struct attribute *attr, char *buff)
235
{
236
	struct batadv_priv *bat_priv = batadv_kobj_to_batpriv(kobj);
237
	int vis_mode = atomic_read(&bat_priv->vis_mode);
238
	const char *mode;
239

240 241 242 243 244 245
	if (vis_mode == BATADV_VIS_TYPE_CLIENT_UPDATE)
		mode = "client";
	else
		mode = "server";

	return sprintf(buff, "%s\n", mode);
246 247
}

248 249 250
static ssize_t batadv_store_vis_mode(struct kobject *kobj,
				     struct attribute *attr, char *buff,
				     size_t count)
251
{
252
	struct net_device *net_dev = batadv_kobj_to_netdev(kobj);
253
	struct batadv_priv *bat_priv = netdev_priv(net_dev);
254 255
	unsigned long val;
	int ret, vis_mode_tmp = -1;
256
	const char *old_mode, *new_mode;
257

258
	ret = kstrtoul(buff, 10, &val);
259

260 261
	if (((count == 2) && (!ret) &&
	     (val == BATADV_VIS_TYPE_CLIENT_UPDATE)) ||
262 263
	    (strncmp(buff, "client", 6) == 0) ||
	    (strncmp(buff, "off", 3) == 0))
264
		vis_mode_tmp = BATADV_VIS_TYPE_CLIENT_UPDATE;
265

266 267
	if (((count == 2) && (!ret) &&
	     (val == BATADV_VIS_TYPE_SERVER_SYNC)) ||
268
	    (strncmp(buff, "server", 6) == 0))
269
		vis_mode_tmp = BATADV_VIS_TYPE_SERVER_SYNC;
270 271 272 273 274

	if (vis_mode_tmp < 0) {
		if (buff[count - 1] == '\n')
			buff[count - 1] = '\0';

275 276 277
		batadv_info(net_dev,
			    "Invalid parameter for 'vis mode' setting received: %s\n",
			    buff);
278 279 280 281 282 283
		return -EINVAL;
	}

	if (atomic_read(&bat_priv->vis_mode) == vis_mode_tmp)
		return count;

284
	if (atomic_read(&bat_priv->vis_mode) == BATADV_VIS_TYPE_CLIENT_UPDATE)
285 286 287 288
		old_mode =  "client";
	else
		old_mode = "server";

289
	if (vis_mode_tmp == BATADV_VIS_TYPE_CLIENT_UPDATE)
290 291 292 293 294 295
		new_mode =  "client";
	else
		new_mode = "server";

	batadv_info(net_dev, "Changing vis mode from: %s to: %s\n", old_mode,
		    new_mode);
296

297
	atomic_set(&bat_priv->vis_mode, (unsigned int)vis_mode_tmp);
298 299 300
	return count;
}

301 302
static ssize_t batadv_show_bat_algo(struct kobject *kobj,
				    struct attribute *attr, char *buff)
303
{
304
	struct batadv_priv *bat_priv = batadv_kobj_to_batpriv(kobj);
305 306 307
	return sprintf(buff, "%s\n", bat_priv->bat_algo_ops->name);
}

308
static void batadv_post_gw_deselect(struct net_device *net_dev)
309
{
310
	struct batadv_priv *bat_priv = netdev_priv(net_dev);
311
	batadv_gw_deselect(bat_priv);
312 313
}

314 315
static ssize_t batadv_show_gw_mode(struct kobject *kobj, struct attribute *attr,
				   char *buff)
316
{
317
	struct batadv_priv *bat_priv = batadv_kobj_to_batpriv(kobj);
318 319 320
	int bytes_written;

	switch (atomic_read(&bat_priv->gw_mode)) {
321
	case BATADV_GW_MODE_CLIENT:
322 323
		bytes_written = sprintf(buff, "%s\n",
					BATADV_GW_MODE_CLIENT_NAME);
324
		break;
325
	case BATADV_GW_MODE_SERVER:
326 327
		bytes_written = sprintf(buff, "%s\n",
					BATADV_GW_MODE_SERVER_NAME);
328 329
		break;
	default:
330 331
		bytes_written = sprintf(buff, "%s\n",
					BATADV_GW_MODE_OFF_NAME);
332 333 334 335 336 337
		break;
	}

	return bytes_written;
}

338 339 340
static ssize_t batadv_store_gw_mode(struct kobject *kobj,
				    struct attribute *attr, char *buff,
				    size_t count)
341
{
342
	struct net_device *net_dev = batadv_kobj_to_netdev(kobj);
343
	struct batadv_priv *bat_priv = netdev_priv(net_dev);
344 345 346 347 348 349
	char *curr_gw_mode_str;
	int gw_mode_tmp = -1;

	if (buff[count - 1] == '\n')
		buff[count - 1] = '\0';

350 351
	if (strncmp(buff, BATADV_GW_MODE_OFF_NAME,
		    strlen(BATADV_GW_MODE_OFF_NAME)) == 0)
352
		gw_mode_tmp = BATADV_GW_MODE_OFF;
353

354 355
	if (strncmp(buff, BATADV_GW_MODE_CLIENT_NAME,
		    strlen(BATADV_GW_MODE_CLIENT_NAME)) == 0)
356
		gw_mode_tmp = BATADV_GW_MODE_CLIENT;
357

358 359
	if (strncmp(buff, BATADV_GW_MODE_SERVER_NAME,
		    strlen(BATADV_GW_MODE_SERVER_NAME)) == 0)
360
		gw_mode_tmp = BATADV_GW_MODE_SERVER;
361 362

	if (gw_mode_tmp < 0) {
363 364 365
		batadv_info(net_dev,
			    "Invalid parameter for 'gw mode' setting received: %s\n",
			    buff);
366 367 368 369 370 371 372
		return -EINVAL;
	}

	if (atomic_read(&bat_priv->gw_mode) == gw_mode_tmp)
		return count;

	switch (atomic_read(&bat_priv->gw_mode)) {
373
	case BATADV_GW_MODE_CLIENT:
374
		curr_gw_mode_str = BATADV_GW_MODE_CLIENT_NAME;
375
		break;
376
	case BATADV_GW_MODE_SERVER:
377
		curr_gw_mode_str = BATADV_GW_MODE_SERVER_NAME;
378 379
		break;
	default:
380
		curr_gw_mode_str = BATADV_GW_MODE_OFF_NAME;
381 382 383
		break;
	}

384 385
	batadv_info(net_dev, "Changing gw mode from: %s to: %s\n",
		    curr_gw_mode_str, buff);
386

387
	batadv_gw_deselect(bat_priv);
388 389 390 391
	/* always call batadv_gw_check_client_stop() before changing the gateway
	 * state
	 */
	batadv_gw_check_client_stop(bat_priv);
392
	atomic_set(&bat_priv->gw_mode, (unsigned int)gw_mode_tmp);
393
	batadv_gw_tvlv_container_update(bat_priv);
394 395 396
	return count;
}

397 398
static ssize_t batadv_show_gw_bwidth(struct kobject *kobj,
				     struct attribute *attr, char *buff)
399
{
400
	struct batadv_priv *bat_priv = batadv_kobj_to_batpriv(kobj);
401 402 403 404 405 406 407
	uint32_t down, up;

	down = atomic_read(&bat_priv->gw.bandwidth_down);
	up = atomic_read(&bat_priv->gw.bandwidth_up);

	return sprintf(buff, "%u.%u/%u.%u MBit\n", down / 10,
		       down % 10, up / 10, up % 10);
408 409
}

410 411 412
static ssize_t batadv_store_gw_bwidth(struct kobject *kobj,
				      struct attribute *attr, char *buff,
				      size_t count)
413
{
414
	struct net_device *net_dev = batadv_kobj_to_netdev(kobj);
415 416 417 418

	if (buff[count - 1] == '\n')
		buff[count - 1] = '\0';

419
	return batadv_gw_bandwidth_set(net_dev, buff, count);
420 421
}

422 423
BATADV_ATTR_SIF_BOOL(aggregated_ogms, S_IRUGO | S_IWUSR, NULL);
BATADV_ATTR_SIF_BOOL(bonding, S_IRUGO | S_IWUSR, NULL);
424
#ifdef CONFIG_BATMAN_ADV_BLA
425
BATADV_ATTR_SIF_BOOL(bridge_loop_avoidance, S_IRUGO | S_IWUSR, NULL);
426
#endif
427 428 429
#ifdef CONFIG_BATMAN_ADV_DAT
BATADV_ATTR_SIF_BOOL(distributed_arp_table, S_IRUGO | S_IWUSR, NULL);
#endif
430 431 432 433 434 435 436
BATADV_ATTR_SIF_BOOL(fragmentation, S_IRUGO | S_IWUSR, batadv_update_min_mtu);
BATADV_ATTR_SIF_BOOL(ap_isolation, S_IRUGO | S_IWUSR, NULL);
static BATADV_ATTR(vis_mode, S_IRUGO | S_IWUSR, batadv_show_vis_mode,
		   batadv_store_vis_mode);
static BATADV_ATTR(routing_algo, S_IRUGO, batadv_show_bat_algo, NULL);
static BATADV_ATTR(gw_mode, S_IRUGO | S_IWUSR, batadv_show_gw_mode,
		   batadv_store_gw_mode);
437 438 439
BATADV_ATTR_SIF_UINT(orig_interval, S_IRUGO | S_IWUSR, 2 * BATADV_JITTER,
		     INT_MAX, NULL);
BATADV_ATTR_SIF_UINT(hop_penalty, S_IRUGO | S_IWUSR, 0, BATADV_TQ_MAX_VALUE,
440
		     NULL);
441
BATADV_ATTR_SIF_UINT(gw_sel_class, S_IRUGO | S_IWUSR, 1, BATADV_TQ_MAX_VALUE,
442 443 444
		     batadv_post_gw_deselect);
static BATADV_ATTR(gw_bandwidth, S_IRUGO | S_IWUSR, batadv_show_gw_bwidth,
		   batadv_store_gw_bwidth);
445
#ifdef CONFIG_BATMAN_ADV_DEBUG
446
BATADV_ATTR_SIF_UINT(log_level, S_IRUGO | S_IWUSR, 0, BATADV_DBG_ALL, NULL);
447
#endif
448 449 450
#ifdef CONFIG_BATMAN_ADV_NC
BATADV_ATTR_SIF_BOOL(network_coding, S_IRUGO | S_IWUSR, NULL);
#endif
451

452
static struct batadv_attribute *batadv_mesh_attrs[] = {
453 454
	&batadv_attr_aggregated_ogms,
	&batadv_attr_bonding,
455
#ifdef CONFIG_BATMAN_ADV_BLA
456
	&batadv_attr_bridge_loop_avoidance,
457 458 459
#endif
#ifdef CONFIG_BATMAN_ADV_DAT
	&batadv_attr_distributed_arp_table,
460
#endif
461 462 463 464 465 466 467 468 469
	&batadv_attr_fragmentation,
	&batadv_attr_ap_isolation,
	&batadv_attr_vis_mode,
	&batadv_attr_routing_algo,
	&batadv_attr_gw_mode,
	&batadv_attr_orig_interval,
	&batadv_attr_hop_penalty,
	&batadv_attr_gw_sel_class,
	&batadv_attr_gw_bandwidth,
470
#ifdef CONFIG_BATMAN_ADV_DEBUG
471
	&batadv_attr_log_level,
472 473 474
#endif
#ifdef CONFIG_BATMAN_ADV_NC
	&batadv_attr_network_coding,
475 476 477 478
#endif
	NULL,
};

479
int batadv_sysfs_add_meshif(struct net_device *dev)
480 481
{
	struct kobject *batif_kobject = &dev->dev.kobj;
482
	struct batadv_priv *bat_priv = netdev_priv(dev);
483
	struct batadv_attribute **bat_attr;
484 485
	int err;

486
	bat_priv->mesh_obj = kobject_create_and_add(BATADV_SYSFS_IF_MESH_SUBDIR,
487 488
						    batif_kobject);
	if (!bat_priv->mesh_obj) {
489
		batadv_err(dev, "Can't add sysfs directory: %s/%s\n", dev->name,
490
			   BATADV_SYSFS_IF_MESH_SUBDIR);
491 492 493
		goto out;
	}

494
	for (bat_attr = batadv_mesh_attrs; *bat_attr; ++bat_attr) {
495 496 497
		err = sysfs_create_file(bat_priv->mesh_obj,
					&((*bat_attr)->attr));
		if (err) {
498
			batadv_err(dev, "Can't add sysfs file: %s/%s/%s\n",
499
				   dev->name, BATADV_SYSFS_IF_MESH_SUBDIR,
500
				   ((*bat_attr)->attr).name);
501 502 503 504 505 506 507
			goto rem_attr;
		}
	}

	return 0;

rem_attr:
508
	for (bat_attr = batadv_mesh_attrs; *bat_attr; ++bat_attr)
509 510 511 512 513 514 515 516
		sysfs_remove_file(bat_priv->mesh_obj, &((*bat_attr)->attr));

	kobject_put(bat_priv->mesh_obj);
	bat_priv->mesh_obj = NULL;
out:
	return -ENOMEM;
}

517
void batadv_sysfs_del_meshif(struct net_device *dev)
518
{
519
	struct batadv_priv *bat_priv = netdev_priv(dev);
520
	struct batadv_attribute **bat_attr;
521

522
	for (bat_attr = batadv_mesh_attrs; *bat_attr; ++bat_attr)
523 524 525 526 527 528
		sysfs_remove_file(bat_priv->mesh_obj, &((*bat_attr)->attr));

	kobject_put(bat_priv->mesh_obj);
	bat_priv->mesh_obj = NULL;
}

529 530
static ssize_t batadv_show_mesh_iface(struct kobject *kobj,
				      struct attribute *attr, char *buff)
531
{
532
	struct net_device *net_dev = batadv_kobj_to_netdev(kobj);
533
	struct batadv_hard_iface *hard_iface;
534
	ssize_t length;
535
	const char *ifname;
536

537
	hard_iface = batadv_hardif_get_by_netdev(net_dev);
538
	if (!hard_iface)
539 540
		return 0;

541 542 543 544 545 546
	if (hard_iface->if_status == BATADV_IF_NOT_IN_USE)
		ifname =  "none";
	else
		ifname = hard_iface->soft_iface->name;

	length = sprintf(buff, "%s\n", ifname);
547

548
	batadv_hardif_free_ref(hard_iface);
549 550 551 552

	return length;
}

553 554 555
static ssize_t batadv_store_mesh_iface(struct kobject *kobj,
				       struct attribute *attr, char *buff,
				       size_t count)
556
{
557
	struct net_device *net_dev = batadv_kobj_to_netdev(kobj);
558
	struct batadv_hard_iface *hard_iface;
559
	int status_tmp = -1;
560
	int ret = count;
561

562
	hard_iface = batadv_hardif_get_by_netdev(net_dev);
563
	if (!hard_iface)
564 565 566 567 568 569
		return count;

	if (buff[count - 1] == '\n')
		buff[count - 1] = '\0';

	if (strlen(buff) >= IFNAMSIZ) {
570 571
		pr_err("Invalid parameter for 'mesh_iface' setting received: interface name too long '%s'\n",
		       buff);
572
		batadv_hardif_free_ref(hard_iface);
573 574 575 576
		return -EINVAL;
	}

	if (strncmp(buff, "none", 4) == 0)
577
		status_tmp = BATADV_IF_NOT_IN_USE;
578
	else
579
		status_tmp = BATADV_IF_I_WANT_YOU;
580

581 582 583 584 585
	if (hard_iface->if_status == status_tmp)
		goto out;

	if ((hard_iface->soft_iface) &&
	    (strncmp(hard_iface->soft_iface->name, buff, IFNAMSIZ) == 0))
586
		goto out;
587

588
	rtnl_lock();
589

590
	if (status_tmp == BATADV_IF_NOT_IN_USE) {
591 592
		batadv_hardif_disable_interface(hard_iface,
						BATADV_IF_CLEANUP_AUTO);
593
		goto unlock;
594 595 596
	}

	/* if the interface already is in use */
597
	if (hard_iface->if_status != BATADV_IF_NOT_IN_USE)
598 599
		batadv_hardif_disable_interface(hard_iface,
						BATADV_IF_CLEANUP_AUTO);
600

601
	ret = batadv_hardif_enable_interface(hard_iface, buff);
602

603 604
unlock:
	rtnl_unlock();
605
out:
606
	batadv_hardif_free_ref(hard_iface);
607 608 609
	return ret;
}

610 611
static ssize_t batadv_show_iface_status(struct kobject *kobj,
					struct attribute *attr, char *buff)
612
{
613
	struct net_device *net_dev = batadv_kobj_to_netdev(kobj);
614
	struct batadv_hard_iface *hard_iface;
615 616
	ssize_t length;

617
	hard_iface = batadv_hardif_get_by_netdev(net_dev);
618
	if (!hard_iface)
619 620
		return 0;

621
	switch (hard_iface->if_status) {
622
	case BATADV_IF_TO_BE_REMOVED:
623 624
		length = sprintf(buff, "disabling\n");
		break;
625
	case BATADV_IF_INACTIVE:
626 627
		length = sprintf(buff, "inactive\n");
		break;
628
	case BATADV_IF_ACTIVE:
629 630
		length = sprintf(buff, "active\n");
		break;
631
	case BATADV_IF_TO_BE_ACTIVATED:
632 633
		length = sprintf(buff, "enabling\n");
		break;
634
	case BATADV_IF_NOT_IN_USE:
635 636 637 638 639
	default:
		length = sprintf(buff, "not in use\n");
		break;
	}

640
	batadv_hardif_free_ref(hard_iface);
641 642 643 644

	return length;
}

645 646 647
static BATADV_ATTR(mesh_iface, S_IRUGO | S_IWUSR, batadv_show_mesh_iface,
		   batadv_store_mesh_iface);
static BATADV_ATTR(iface_status, S_IRUGO, batadv_show_iface_status, NULL);
648

649
static struct batadv_attribute *batadv_batman_attrs[] = {
650 651
	&batadv_attr_mesh_iface,
	&batadv_attr_iface_status,
652 653 654
	NULL,
};

655
int batadv_sysfs_add_hardif(struct kobject **hardif_obj, struct net_device *dev)
656 657
{
	struct kobject *hardif_kobject = &dev->dev.kobj;
658
	struct batadv_attribute **bat_attr;
659 660
	int err;

661 662
	*hardif_obj = kobject_create_and_add(BATADV_SYSFS_IF_BAT_SUBDIR,
					     hardif_kobject);
663 664

	if (!*hardif_obj) {
665
		batadv_err(dev, "Can't add sysfs directory: %s/%s\n", dev->name,
666
			   BATADV_SYSFS_IF_BAT_SUBDIR);
667 668 669
		goto out;
	}

670
	for (bat_attr = batadv_batman_attrs; *bat_attr; ++bat_attr) {
671 672
		err = sysfs_create_file(*hardif_obj, &((*bat_attr)->attr));
		if (err) {
673
			batadv_err(dev, "Can't add sysfs file: %s/%s/%s\n",
674
				   dev->name, BATADV_SYSFS_IF_BAT_SUBDIR,
675
				   ((*bat_attr)->attr).name);
676 677 678 679 680 681 682
			goto rem_attr;
		}
	}

	return 0;

rem_attr:
683
	for (bat_attr = batadv_batman_attrs; *bat_attr; ++bat_attr)
684 685 686 687 688
		sysfs_remove_file(*hardif_obj, &((*bat_attr)->attr));
out:
	return -ENOMEM;
}

689
void batadv_sysfs_del_hardif(struct kobject **hardif_obj)
690 691 692 693
{
	kobject_put(*hardif_obj);
	*hardif_obj = NULL;
}
694

695
int batadv_throw_uevent(struct batadv_priv *bat_priv, enum batadv_uev_type type,
696
			enum batadv_uev_action action, const char *data)
697
{
698
	int ret = -ENOMEM;
699 700 701
	struct kobject *bat_kobj;
	char *uevent_env[4] = { NULL, NULL, NULL, NULL };

702
	bat_kobj = &bat_priv->soft_iface->dev.kobj;
703

704
	uevent_env[0] = kmalloc(strlen(BATADV_UEV_TYPE_VAR) +
705
				strlen(batadv_uev_type_str[type]) + 1,
706 707 708 709
				GFP_ATOMIC);
	if (!uevent_env[0])
		goto out;

710 711
	sprintf(uevent_env[0], "%s%s", BATADV_UEV_TYPE_VAR,
		batadv_uev_type_str[type]);
712

713
	uevent_env[1] = kmalloc(strlen(BATADV_UEV_ACTION_VAR) +
714
				strlen(batadv_uev_action_str[action]) + 1,
715 716 717 718
				GFP_ATOMIC);
	if (!uevent_env[1])
		goto out;

719
	sprintf(uevent_env[1], "%s%s", BATADV_UEV_ACTION_VAR,
720
		batadv_uev_action_str[action]);
721 722

	/* If the event is DEL, ignore the data field */
723
	if (action != BATADV_UEV_DEL) {
724
		uevent_env[2] = kmalloc(strlen(BATADV_UEV_DATA_VAR) +
725 726 727 728
					strlen(data) + 1, GFP_ATOMIC);
		if (!uevent_env[2])
			goto out;

729
		sprintf(uevent_env[2], "%s%s", BATADV_UEV_DATA_VAR, data);
730 731 732 733 734 735 736 737 738
	}

	ret = kobject_uevent_env(bat_kobj, KOBJ_CHANGE, uevent_env);
out:
	kfree(uevent_env[0]);
	kfree(uevent_env[1]);
	kfree(uevent_env[2]);

	if (ret)
739
		batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
740
			   "Impossible to send uevent for (%s,%s,%s) event (err: %d)\n",
741 742
			   batadv_uev_type_str[type],
			   batadv_uev_action_str[action],
743
			   (action == BATADV_UEV_DEL ? "NULL" : data), ret);
744 745
	return ret;
}