team.c 55.2 KB
Newer Older
1
/*
2
 * drivers/net/team/team.c - Network team device driver
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
 * Copyright (c) 2011 Jiri Pirko <jpirko@redhat.com>
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 */

#include <linux/kernel.h>
#include <linux/types.h>
#include <linux/module.h>
#include <linux/init.h>
#include <linux/slab.h>
#include <linux/rcupdate.h>
#include <linux/errno.h>
#include <linux/ctype.h>
#include <linux/notifier.h>
#include <linux/netdevice.h>
J
Jiri Pirko 已提交
21
#include <linux/netpoll.h>
22
#include <linux/if_vlan.h>
23 24 25 26 27 28 29
#include <linux/if_arp.h>
#include <linux/socket.h>
#include <linux/etherdevice.h>
#include <linux/rtnetlink.h>
#include <net/rtnetlink.h>
#include <net/genetlink.h>
#include <net/netlink.h>
J
Jiri Pirko 已提交
30
#include <net/sch_generic.h>
31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
#include <linux/if_team.h>

#define DRV_NAME "team"


/**********
 * Helpers
 **********/

#define team_port_exists(dev) (dev->priv_flags & IFF_TEAM_PORT)

static struct team_port *team_port_get_rcu(const struct net_device *dev)
{
	struct team_port *port = rcu_dereference(dev->rx_handler_data);

	return team_port_exists(dev) ? port : NULL;
}

static struct team_port *team_port_get_rtnl(const struct net_device *dev)
{
	struct team_port *port = rtnl_dereference(dev->rx_handler_data);

	return team_port_exists(dev) ? port : NULL;
}

/*
 * Since the ability to change mac address for open port device is tested in
 * team_port_add, this function can be called without control of return value
 */
static int __set_port_mac(struct net_device *port_dev,
			  const unsigned char *dev_addr)
{
	struct sockaddr addr;

	memcpy(addr.sa_data, dev_addr, ETH_ALEN);
	addr.sa_family = ARPHRD_ETHER;
	return dev_set_mac_address(port_dev, &addr);
}

J
Jiri Pirko 已提交
70
static int team_port_set_orig_mac(struct team_port *port)
71 72 73 74 75 76 77 78 79 80
{
	return __set_port_mac(port->dev, port->orig.dev_addr);
}

int team_port_set_team_mac(struct team_port *port)
{
	return __set_port_mac(port->dev, port->team->dev->dev_addr);
}
EXPORT_SYMBOL(team_port_set_team_mac);

81 82 83 84 85
static void team_refresh_port_linkup(struct team_port *port)
{
	port->linkup = port->user.linkup_enabled ? port->user.linkup :
						   port->state.linkup;
}
86

J
Jiri Pirko 已提交
87

88 89 90 91
/*******************
 * Options handling
 *******************/

92 93
struct team_option_inst { /* One for each option instance */
	struct list_head list;
94
	struct list_head tmp_list;
95
	struct team_option *option;
96
	struct team_option_inst_info info;
97 98 99 100 101 102
	bool changed;
	bool removed;
};

static struct team_option *__team_find_option(struct team *team,
					      const char *opt_name)
J
Jiri Pirko 已提交
103 104 105 106 107 108 109 110 111 112
{
	struct team_option *option;

	list_for_each_entry(option, &team->option_list, list) {
		if (strcmp(option->name, opt_name) == 0)
			return option;
	}
	return NULL;
}

113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129
static void __team_option_inst_del(struct team_option_inst *opt_inst)
{
	list_del(&opt_inst->list);
	kfree(opt_inst);
}

static void __team_option_inst_del_option(struct team *team,
					  struct team_option *option)
{
	struct team_option_inst *opt_inst, *tmp;

	list_for_each_entry_safe(opt_inst, tmp, &team->option_inst_list, list) {
		if (opt_inst->option == option)
			__team_option_inst_del(opt_inst);
	}
}

J
Jiri Pirko 已提交
130 131 132 133 134 135
static int __team_option_inst_add(struct team *team, struct team_option *option,
				  struct team_port *port)
{
	struct team_option_inst *opt_inst;
	unsigned int array_size;
	unsigned int i;
136
	int err;
J
Jiri Pirko 已提交
137 138 139 140 141 142 143 144 145 146

	array_size = option->array_size;
	if (!array_size)
		array_size = 1; /* No array but still need one instance */

	for (i = 0; i < array_size; i++) {
		opt_inst = kmalloc(sizeof(*opt_inst), GFP_KERNEL);
		if (!opt_inst)
			return -ENOMEM;
		opt_inst->option = option;
147 148
		opt_inst->info.port = port;
		opt_inst->info.array_index = i;
J
Jiri Pirko 已提交
149 150 151
		opt_inst->changed = true;
		opt_inst->removed = false;
		list_add_tail(&opt_inst->list, &team->option_inst_list);
152 153 154 155 156 157
		if (option->init) {
			err = option->init(team, &opt_inst->info);
			if (err)
				return err;
		}

J
Jiri Pirko 已提交
158 159 160 161
	}
	return 0;
}

162 163 164 165 166 167
static int __team_option_inst_add_option(struct team *team,
					 struct team_option *option)
{
	struct team_port *port;
	int err;

J
Jiri Pirko 已提交
168
	if (!option->per_port) {
169
		err = __team_option_inst_add(team, option, NULL);
J
Jiri Pirko 已提交
170 171 172
		if (err)
			goto inst_del_option;
	}
173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205

	list_for_each_entry(port, &team->port_list, list) {
		err = __team_option_inst_add(team, option, port);
		if (err)
			goto inst_del_option;
	}
	return 0;

inst_del_option:
	__team_option_inst_del_option(team, option);
	return err;
}

static void __team_option_inst_mark_removed_option(struct team *team,
						   struct team_option *option)
{
	struct team_option_inst *opt_inst;

	list_for_each_entry(opt_inst, &team->option_inst_list, list) {
		if (opt_inst->option == option) {
			opt_inst->changed = true;
			opt_inst->removed = true;
		}
	}
}

static void __team_option_inst_del_port(struct team *team,
					struct team_port *port)
{
	struct team_option_inst *opt_inst, *tmp;

	list_for_each_entry_safe(opt_inst, tmp, &team->option_inst_list, list) {
		if (opt_inst->option->per_port &&
206
		    opt_inst->info.port == port)
207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236
			__team_option_inst_del(opt_inst);
	}
}

static int __team_option_inst_add_port(struct team *team,
				       struct team_port *port)
{
	struct team_option *option;
	int err;

	list_for_each_entry(option, &team->option_list, list) {
		if (!option->per_port)
			continue;
		err = __team_option_inst_add(team, option, port);
		if (err)
			goto inst_del_port;
	}
	return 0;

inst_del_port:
	__team_option_inst_del_port(team, port);
	return err;
}

static void __team_option_inst_mark_removed_port(struct team *team,
						 struct team_port *port)
{
	struct team_option_inst *opt_inst;

	list_for_each_entry(opt_inst, &team->option_inst_list, list) {
237
		if (opt_inst->info.port == port) {
238 239 240 241 242 243 244 245 246
			opt_inst->changed = true;
			opt_inst->removed = true;
		}
	}
}

static int __team_options_register(struct team *team,
				   const struct team_option *option,
				   size_t option_count)
247 248
{
	int i;
249
	struct team_option **dst_opts;
J
Jiri Pirko 已提交
250
	int err;
251

252 253 254 255
	dst_opts = kzalloc(sizeof(struct team_option *) * option_count,
			   GFP_KERNEL);
	if (!dst_opts)
		return -ENOMEM;
J
Jiri Pirko 已提交
256 257 258
	for (i = 0; i < option_count; i++, option++) {
		if (__team_find_option(team, option->name)) {
			err = -EEXIST;
259
			goto alloc_rollback;
J
Jiri Pirko 已提交
260
		}
261 262
		dst_opts[i] = kmemdup(option, sizeof(*option), GFP_KERNEL);
		if (!dst_opts[i]) {
J
Jiri Pirko 已提交
263
			err = -ENOMEM;
264
			goto alloc_rollback;
J
Jiri Pirko 已提交
265 266 267
		}
	}

268
	for (i = 0; i < option_count; i++) {
269 270 271
		err = __team_option_inst_add_option(team, dst_opts[i]);
		if (err)
			goto inst_rollback;
J
Jiri Pirko 已提交
272
		list_add_tail(&dst_opts[i]->list, &team->option_list);
273
	}
J
Jiri Pirko 已提交
274

275
	kfree(dst_opts);
J
Jiri Pirko 已提交
276 277
	return 0;

278 279 280 281 282 283 284
inst_rollback:
	for (i--; i >= 0; i--)
		__team_option_inst_del_option(team, dst_opts[i]);

	i = option_count - 1;
alloc_rollback:
	for (i--; i >= 0; i--)
J
Jiri Pirko 已提交
285 286
		kfree(dst_opts[i]);

287
	kfree(dst_opts);
J
Jiri Pirko 已提交
288
	return err;
289
}
J
Jiri Pirko 已提交
290

291 292 293 294 295 296 297 298
static void __team_options_mark_removed(struct team *team,
					const struct team_option *option,
					size_t option_count)
{
	int i;

	for (i = 0; i < option_count; i++, option++) {
		struct team_option *del_opt;
299

300
		del_opt = __team_find_option(team, option->name);
301 302
		if (del_opt)
			__team_option_inst_mark_removed_option(team, del_opt);
303 304
	}
}
305 306

static void __team_options_unregister(struct team *team,
J
Jiri Pirko 已提交
307
				      const struct team_option *option,
308 309 310 311
				      size_t option_count)
{
	int i;

J
Jiri Pirko 已提交
312 313 314 315 316
	for (i = 0; i < option_count; i++, option++) {
		struct team_option *del_opt;

		del_opt = __team_find_option(team, option->name);
		if (del_opt) {
317
			__team_option_inst_del_option(team, del_opt);
J
Jiri Pirko 已提交
318 319 320 321
			list_del(&del_opt->list);
			kfree(del_opt);
		}
	}
322 323
}

324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339
static void __team_options_change_check(struct team *team);

int team_options_register(struct team *team,
			  const struct team_option *option,
			  size_t option_count)
{
	int err;

	err = __team_options_register(team, option, option_count);
	if (err)
		return err;
	__team_options_change_check(team);
	return 0;
}
EXPORT_SYMBOL(team_options_register);

J
Jiri Pirko 已提交
340 341
void team_options_unregister(struct team *team,
			     const struct team_option *option,
342 343
			     size_t option_count)
{
344 345
	__team_options_mark_removed(team, option, option_count);
	__team_options_change_check(team);
346 347 348 349
	__team_options_unregister(team, option, option_count);
}
EXPORT_SYMBOL(team_options_unregister);

350 351 352 353
static int team_option_get(struct team *team,
			   struct team_option_inst *opt_inst,
			   struct team_gsetter_ctx *ctx)
{
J
Jiri Pirko 已提交
354 355
	if (!opt_inst->option->getter)
		return -EOPNOTSUPP;
356 357 358 359 360 361
	return opt_inst->option->getter(team, ctx);
}

static int team_option_set(struct team *team,
			   struct team_option_inst *opt_inst,
			   struct team_gsetter_ctx *ctx)
362
{
J
Jiri Pirko 已提交
363 364
	if (!opt_inst->option->setter)
		return -EOPNOTSUPP;
365
	return opt_inst->option->setter(team, ctx);
366 367
}

J
Jiri Pirko 已提交
368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383
void team_option_inst_set_change(struct team_option_inst_info *opt_inst_info)
{
	struct team_option_inst *opt_inst;

	opt_inst = container_of(opt_inst_info, struct team_option_inst, info);
	opt_inst->changed = true;
}
EXPORT_SYMBOL(team_option_inst_set_change);

void team_options_change_check(struct team *team)
{
	__team_options_change_check(team);
}
EXPORT_SYMBOL(team_options_change_check);


384 385 386 387 388 389 390
/****************
 * Mode handling
 ****************/

static LIST_HEAD(mode_list);
static DEFINE_SPINLOCK(mode_list_lock);

J
Jiri Pirko 已提交
391 392 393 394 395 396
struct team_mode_item {
	struct list_head list;
	const struct team_mode *mode;
};

static struct team_mode_item *__find_mode(const char *kind)
397
{
J
Jiri Pirko 已提交
398
	struct team_mode_item *mitem;
399

J
Jiri Pirko 已提交
400 401 402
	list_for_each_entry(mitem, &mode_list, list) {
		if (strcmp(mitem->mode->kind, kind) == 0)
			return mitem;
403 404 405 406 407 408 409 410 411 412 413 414 415 416
	}
	return NULL;
}

static bool is_good_mode_name(const char *name)
{
	while (*name != '\0') {
		if (!isalpha(*name) && !isdigit(*name) && *name != '_')
			return false;
		name++;
	}
	return true;
}

J
Jiri Pirko 已提交
417
int team_mode_register(const struct team_mode *mode)
418 419
{
	int err = 0;
J
Jiri Pirko 已提交
420
	struct team_mode_item *mitem;
421 422 423 424

	if (!is_good_mode_name(mode->kind) ||
	    mode->priv_size > TEAM_MODE_PRIV_SIZE)
		return -EINVAL;
J
Jiri Pirko 已提交
425 426 427 428 429

	mitem = kmalloc(sizeof(*mitem), GFP_KERNEL);
	if (!mitem)
		return -ENOMEM;

430 431 432
	spin_lock(&mode_list_lock);
	if (__find_mode(mode->kind)) {
		err = -EEXIST;
J
Jiri Pirko 已提交
433
		kfree(mitem);
434 435
		goto unlock;
	}
J
Jiri Pirko 已提交
436 437
	mitem->mode = mode;
	list_add_tail(&mitem->list, &mode_list);
438 439 440 441 442 443
unlock:
	spin_unlock(&mode_list_lock);
	return err;
}
EXPORT_SYMBOL(team_mode_register);

J
Jiri Pirko 已提交
444
void team_mode_unregister(const struct team_mode *mode)
445
{
J
Jiri Pirko 已提交
446 447
	struct team_mode_item *mitem;

448
	spin_lock(&mode_list_lock);
J
Jiri Pirko 已提交
449 450 451 452 453
	mitem = __find_mode(mode->kind);
	if (mitem) {
		list_del_init(&mitem->list);
		kfree(mitem);
	}
454 455 456 457
	spin_unlock(&mode_list_lock);
}
EXPORT_SYMBOL(team_mode_unregister);

J
Jiri Pirko 已提交
458
static const struct team_mode *team_mode_get(const char *kind)
459
{
J
Jiri Pirko 已提交
460 461
	struct team_mode_item *mitem;
	const struct team_mode *mode = NULL;
462 463

	spin_lock(&mode_list_lock);
J
Jiri Pirko 已提交
464 465
	mitem = __find_mode(kind);
	if (!mitem) {
466 467 468
		spin_unlock(&mode_list_lock);
		request_module("team-mode-%s", kind);
		spin_lock(&mode_list_lock);
J
Jiri Pirko 已提交
469
		mitem = __find_mode(kind);
470
	}
J
Jiri Pirko 已提交
471 472
	if (mitem) {
		mode = mitem->mode;
473 474
		if (!try_module_get(mode->owner))
			mode = NULL;
J
Jiri Pirko 已提交
475
	}
476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498

	spin_unlock(&mode_list_lock);
	return mode;
}

static void team_mode_put(const struct team_mode *mode)
{
	module_put(mode->owner);
}

static bool team_dummy_transmit(struct team *team, struct sk_buff *skb)
{
	dev_kfree_skb_any(skb);
	return false;
}

rx_handler_result_t team_dummy_receive(struct team *team,
				       struct team_port *port,
				       struct sk_buff *skb)
{
	return RX_HANDLER_ANOTHER;
}

499 500 501 502 503 504 505 506 507 508 509 510 511 512
static const struct team_mode __team_no_mode = {
	.kind		= "*NOMODE*",
};

static bool team_is_mode_set(struct team *team)
{
	return team->mode != &__team_no_mode;
}

static void team_set_no_mode(struct team *team)
{
	team->mode = &__team_no_mode;
}

513
static void __team_adjust_ops(struct team *team, int en_port_count)
514 515 516 517 518 519
{
	/*
	 * To avoid checks in rx/tx skb paths, ensure here that non-null and
	 * correct ops are always set.
	 */

520 521
	if (!en_port_count || !team_is_mode_set(team) ||
	    !team->mode->ops->transmit)
522 523 524 525
		team->ops.transmit = team_dummy_transmit;
	else
		team->ops.transmit = team->mode->ops->transmit;

526 527
	if (!en_port_count || !team_is_mode_set(team) ||
	    !team->mode->ops->receive)
528 529 530 531 532
		team->ops.receive = team_dummy_receive;
	else
		team->ops.receive = team->mode->ops->receive;
}

533 534 535 536 537
static void team_adjust_ops(struct team *team)
{
	__team_adjust_ops(team, team->en_port_count);
}

538 539 540 541 542 543 544 545 546
/*
 * We can benefit from the fact that it's ensured no port is present
 * at the time of mode change. Therefore no packets are in fly so there's no
 * need to set mode operations in any special way.
 */
static int __team_change_mode(struct team *team,
			      const struct team_mode *new_mode)
{
	/* Check if mode was previously set and do cleanup if so */
547
	if (team_is_mode_set(team)) {
548 549 550 551 552 553 554 555 556
		void (*exit_op)(struct team *team) = team->ops.exit;

		/* Clear ops area so no callback is called any longer */
		memset(&team->ops, 0, sizeof(struct team_mode_ops));
		team_adjust_ops(team);

		if (exit_op)
			exit_op(team);
		team_mode_put(team->mode);
557
		team_set_no_mode(team);
558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582
		/* zero private data area */
		memset(&team->mode_priv, 0,
		       sizeof(struct team) - offsetof(struct team, mode_priv));
	}

	if (!new_mode)
		return 0;

	if (new_mode->ops->init) {
		int err;

		err = new_mode->ops->init(team);
		if (err)
			return err;
	}

	team->mode = new_mode;
	memcpy(&team->ops, new_mode->ops, sizeof(struct team_mode_ops));
	team_adjust_ops(team);

	return 0;
}

static int team_change_mode(struct team *team, const char *kind)
{
J
Jiri Pirko 已提交
583
	const struct team_mode *new_mode;
584 585 586 587 588 589 590 591
	struct net_device *dev = team->dev;
	int err;

	if (!list_empty(&team->port_list)) {
		netdev_err(dev, "No ports can be present during mode change\n");
		return -EBUSY;
	}

592
	if (team_is_mode_set(team) && strcmp(team->mode->kind, kind) == 0) {
593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634
		netdev_err(dev, "Unable to change to the same mode the team is in\n");
		return -EINVAL;
	}

	new_mode = team_mode_get(kind);
	if (!new_mode) {
		netdev_err(dev, "Mode \"%s\" not found\n", kind);
		return -EINVAL;
	}

	err = __team_change_mode(team, new_mode);
	if (err) {
		netdev_err(dev, "Failed to change to mode \"%s\"\n", kind);
		team_mode_put(new_mode);
		return err;
	}

	netdev_info(dev, "Mode changed to \"%s\"\n", kind);
	return 0;
}


/************************
 * Rx path frame handler
 ************************/

/* note: already called with rcu_read_lock */
static rx_handler_result_t team_handle_frame(struct sk_buff **pskb)
{
	struct sk_buff *skb = *pskb;
	struct team_port *port;
	struct team *team;
	rx_handler_result_t res;

	skb = skb_share_check(skb, GFP_ATOMIC);
	if (!skb)
		return RX_HANDLER_CONSUMED;

	*pskb = skb;

	port = team_port_get_rcu(skb->dev);
	team = port->team;
J
Jiri Pirko 已提交
635 636 637 638 639 640
	if (!team_port_enabled(port)) {
		/* allow exact match delivery for disabled ports */
		res = RX_HANDLER_EXACT;
	} else {
		res = team->ops.receive(team, port, skb);
	}
641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676
	if (res == RX_HANDLER_ANOTHER) {
		struct team_pcpu_stats *pcpu_stats;

		pcpu_stats = this_cpu_ptr(team->pcpu_stats);
		u64_stats_update_begin(&pcpu_stats->syncp);
		pcpu_stats->rx_packets++;
		pcpu_stats->rx_bytes += skb->len;
		if (skb->pkt_type == PACKET_MULTICAST)
			pcpu_stats->rx_multicast++;
		u64_stats_update_end(&pcpu_stats->syncp);

		skb->dev = team->dev;
	} else {
		this_cpu_inc(team->pcpu_stats->rx_dropped);
	}

	return res;
}


/****************
 * Port handling
 ****************/

static bool team_port_find(const struct team *team,
			   const struct team_port *port)
{
	struct team_port *cur;

	list_for_each_entry(cur, &team->port_list, list)
		if (cur == port)
			return true;
	return false;
}

/*
J
Jiri Pirko 已提交
677 678 679 680
 * Enable/disable port by adding to enabled port hashlist and setting
 * port->index (Might be racy so reader could see incorrect ifindex when
 * processing a flying packet, but that is not a problem). Write guarded
 * by team->lock.
681
 */
J
Jiri Pirko 已提交
682 683
static void team_port_enable(struct team *team,
			     struct team_port *port)
684
{
J
Jiri Pirko 已提交
685 686 687
	if (team_port_enabled(port))
		return;
	port->index = team->en_port_count++;
688 689
	hlist_add_head_rcu(&port->hlist,
			   team_port_index_hash(team, port->index));
690
	team_adjust_ops(team);
691 692
	if (team->ops.port_enabled)
		team->ops.port_enabled(team, port);
693 694 695 696 697 698 699
}

static void __reconstruct_port_hlist(struct team *team, int rm_index)
{
	int i;
	struct team_port *port;

J
Jiri Pirko 已提交
700
	for (i = rm_index + 1; i < team->en_port_count; i++) {
701 702 703 704 705 706 707 708
		port = team_get_port_by_index(team, i);
		hlist_del_rcu(&port->hlist);
		port->index--;
		hlist_add_head_rcu(&port->hlist,
				   team_port_index_hash(team, port->index));
	}
}

J
Jiri Pirko 已提交
709 710
static void team_port_disable(struct team *team,
			      struct team_port *port)
711
{
J
Jiri Pirko 已提交
712 713
	if (!team_port_enabled(port))
		return;
714 715
	if (team->ops.port_disabled)
		team->ops.port_disabled(team, port);
716
	hlist_del_rcu(&port->hlist);
717
	__reconstruct_port_hlist(team, port->index);
J
Jiri Pirko 已提交
718
	port->index = -1;
719 720 721 722 723 724 725
	__team_adjust_ops(team, team->en_port_count - 1);
	/*
	 * Wait until readers see adjusted ops. This ensures that
	 * readers never see team->en_port_count == 0
	 */
	synchronize_rcu();
	team->en_port_count--;
726 727 728 729 730 731 732 733 734 735 736
}

#define TEAM_VLAN_FEATURES (NETIF_F_ALL_CSUM | NETIF_F_SG | \
			    NETIF_F_FRAGLIST | NETIF_F_ALL_TSO | \
			    NETIF_F_HIGHDMA | NETIF_F_LRO)

static void __team_compute_features(struct team *team)
{
	struct team_port *port;
	u32 vlan_features = TEAM_VLAN_FEATURES;
	unsigned short max_hard_header_len = ETH_HLEN;
737
	unsigned int flags, dst_release_flag = IFF_XMIT_DST_RELEASE;
738 739 740 741 742 743

	list_for_each_entry(port, &team->port_list, list) {
		vlan_features = netdev_increment_features(vlan_features,
					port->dev->vlan_features,
					TEAM_VLAN_FEATURES);

744
		dst_release_flag &= port->dev->priv_flags;
745 746 747 748 749 750 751
		if (port->dev->hard_header_len > max_hard_header_len)
			max_hard_header_len = port->dev->hard_header_len;
	}

	team->dev->vlan_features = vlan_features;
	team->dev->hard_header_len = max_hard_header_len;

752 753 754
	flags = team->dev->priv_flags & ~IFF_XMIT_DST_RELEASE;
	team->dev->priv_flags = flags | dst_release_flag;

755 756 757 758 759
	netdev_change_features(team->dev);
}

static void team_compute_features(struct team *team)
{
760
	mutex_lock(&team->lock);
761
	__team_compute_features(team);
762
	mutex_unlock(&team->lock);
763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796
}

static int team_port_enter(struct team *team, struct team_port *port)
{
	int err = 0;

	dev_hold(team->dev);
	port->dev->priv_flags |= IFF_TEAM_PORT;
	if (team->ops.port_enter) {
		err = team->ops.port_enter(team, port);
		if (err) {
			netdev_err(team->dev, "Device %s failed to enter team mode\n",
				   port->dev->name);
			goto err_port_enter;
		}
	}

	return 0;

err_port_enter:
	port->dev->priv_flags &= ~IFF_TEAM_PORT;
	dev_put(team->dev);

	return err;
}

static void team_port_leave(struct team *team, struct team_port *port)
{
	if (team->ops.port_leave)
		team->ops.port_leave(team, port);
	port->dev->priv_flags &= ~IFF_TEAM_PORT;
	dev_put(team->dev);
}

J
Jiri Pirko 已提交
797
#ifdef CONFIG_NET_POLL_CONTROLLER
798 799
static int team_port_enable_netpoll(struct team *team, struct team_port *port,
				    gfp_t gfp)
J
Jiri Pirko 已提交
800 801 802 803
{
	struct netpoll *np;
	int err;

804
	np = kzalloc(sizeof(*np), gfp);
J
Jiri Pirko 已提交
805 806 807
	if (!np)
		return -ENOMEM;

808
	err = __netpoll_setup(np, port->dev, gfp);
J
Jiri Pirko 已提交
809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836
	if (err) {
		kfree(np);
		return err;
	}
	port->np = np;
	return err;
}

static void team_port_disable_netpoll(struct team_port *port)
{
	struct netpoll *np = port->np;

	if (!np)
		return;
	port->np = NULL;

	/* Wait for transmitting packets to finish before freeing. */
	synchronize_rcu_bh();
	__netpoll_cleanup(np);
	kfree(np);
}

static struct netpoll_info *team_netpoll_info(struct team *team)
{
	return team->dev->npinfo;
}

#else
837 838
static int team_port_enable_netpoll(struct team *team, struct team_port *port,
				    gfp_t gfp)
J
Jiri Pirko 已提交
839 840 841 842 843 844 845 846 847 848 849 850
{
	return 0;
}
static void team_port_disable_netpoll(struct team_port *port)
{
}
static struct netpoll_info *team_netpoll_info(struct team *team)
{
	return NULL;
}
#endif

J
Jiri Pirko 已提交
851
static void __team_port_change_port_added(struct team_port *port, bool linkup);
852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878

static int team_port_add(struct team *team, struct net_device *port_dev)
{
	struct net_device *dev = team->dev;
	struct team_port *port;
	char *portname = port_dev->name;
	int err;

	if (port_dev->flags & IFF_LOOPBACK ||
	    port_dev->type != ARPHRD_ETHER) {
		netdev_err(dev, "Device %s is of an unsupported type\n",
			   portname);
		return -EINVAL;
	}

	if (team_port_exists(port_dev)) {
		netdev_err(dev, "Device %s is already a port "
				"of a team device\n", portname);
		return -EBUSY;
	}

	if (port_dev->flags & IFF_UP) {
		netdev_err(dev, "Device %s is up. Set it down before adding it as a team port\n",
			   portname);
		return -EBUSY;
	}

J
Jiri Pirko 已提交
879 880
	port = kzalloc(sizeof(struct team_port) + team->mode->port_priv_size,
		       GFP_KERNEL);
881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909
	if (!port)
		return -ENOMEM;

	port->dev = port_dev;
	port->team = team;

	port->orig.mtu = port_dev->mtu;
	err = dev_set_mtu(port_dev, dev->mtu);
	if (err) {
		netdev_dbg(dev, "Error %d calling dev_set_mtu\n", err);
		goto err_set_mtu;
	}

	memcpy(port->orig.dev_addr, port_dev->dev_addr, ETH_ALEN);

	err = team_port_enter(team, port);
	if (err) {
		netdev_err(dev, "Device %s failed to enter team mode\n",
			   portname);
		goto err_port_enter;
	}

	err = dev_open(port_dev);
	if (err) {
		netdev_dbg(dev, "Device %s opening failed\n",
			   portname);
		goto err_dev_open;
	}

J
Jiri Pirko 已提交
910 911 912 913 914 915 916
	err = vlan_vids_add_by_dev(port_dev, dev);
	if (err) {
		netdev_err(dev, "Failed to add vlan ids to device %s\n",
				portname);
		goto err_vids_add;
	}

J
Jiri Pirko 已提交
917
	if (team_netpoll_info(team)) {
918
		err = team_port_enable_netpoll(team, port, GFP_KERNEL);
J
Jiri Pirko 已提交
919 920 921 922 923 924 925
		if (err) {
			netdev_err(dev, "Failed to enable netpoll on device %s\n",
				   portname);
			goto err_enable_netpoll;
		}
	}

926 927 928 929 930 931 932 933 934 935 936 937 938 939
	err = netdev_set_master(port_dev, dev);
	if (err) {
		netdev_err(dev, "Device %s failed to set master\n", portname);
		goto err_set_master;
	}

	err = netdev_rx_handler_register(port_dev, team_handle_frame,
					 port);
	if (err) {
		netdev_err(dev, "Device %s failed to register rx_handler\n",
			   portname);
		goto err_handler_register;
	}

940
	err = __team_option_inst_add_port(team, port);
941 942 943 944 945 946
	if (err) {
		netdev_err(dev, "Device %s failed to add per-port options\n",
			   portname);
		goto err_option_port_add;
	}

J
Jiri Pirko 已提交
947 948 949
	port->index = -1;
	team_port_enable(team, port);
	list_add_tail_rcu(&port->list, &team->port_list);
950
	__team_compute_features(team);
J
Jiri Pirko 已提交
951
	__team_port_change_port_added(port, !!netif_carrier_ok(port_dev));
952
	__team_options_change_check(team);
953 954 955 956 957

	netdev_info(dev, "Port device %s added\n", portname);

	return 0;

958 959 960
err_option_port_add:
	netdev_rx_handler_unregister(port_dev);

961 962 963 964
err_handler_register:
	netdev_set_master(port_dev, NULL);

err_set_master:
J
Jiri Pirko 已提交
965 966 967
	team_port_disable_netpoll(port);

err_enable_netpoll:
J
Jiri Pirko 已提交
968 969 970
	vlan_vids_del_by_dev(port_dev, dev);

err_vids_add:
971 972 973 974 975 976 977 978 979 980 981 982 983 984 985
	dev_close(port_dev);

err_dev_open:
	team_port_leave(team, port);
	team_port_set_orig_mac(port);

err_port_enter:
	dev_set_mtu(port_dev, port->orig.mtu);

err_set_mtu:
	kfree(port);

	return err;
}

J
Jiri Pirko 已提交
986 987
static void __team_port_change_port_removed(struct team_port *port);

988 989 990 991 992 993 994 995 996 997 998 999 1000
static int team_port_del(struct team *team, struct net_device *port_dev)
{
	struct net_device *dev = team->dev;
	struct team_port *port;
	char *portname = port_dev->name;

	port = team_port_get_rtnl(port_dev);
	if (!port || !team_port_find(team, port)) {
		netdev_err(dev, "Device %s does not act as a port of this team\n",
			   portname);
		return -ENOENT;
	}

1001 1002 1003
	__team_option_inst_mark_removed_port(team, port);
	__team_options_change_check(team);
	__team_option_inst_del_port(team, port);
J
Jiri Pirko 已提交
1004
	__team_port_change_port_removed(port);
J
Jiri Pirko 已提交
1005 1006
	team_port_disable(team, port);
	list_del_rcu(&port->list);
1007 1008
	netdev_rx_handler_unregister(port_dev);
	netdev_set_master(port_dev, NULL);
J
Jiri Pirko 已提交
1009
	team_port_disable_netpoll(port);
J
Jiri Pirko 已提交
1010
	vlan_vids_del_by_dev(port_dev, dev);
1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027
	dev_close(port_dev);
	team_port_leave(team, port);
	team_port_set_orig_mac(port);
	dev_set_mtu(port_dev, port->orig.mtu);
	synchronize_rcu();
	kfree(port);
	netdev_info(dev, "Port device %s removed\n", portname);
	__team_compute_features(team);

	return 0;
}


/*****************
 * Net device ops
 *****************/

1028
static int team_mode_option_get(struct team *team, struct team_gsetter_ctx *ctx)
1029
{
1030
	ctx->data.str_val = team->mode->kind;
1031 1032 1033
	return 0;
}

1034
static int team_mode_option_set(struct team *team, struct team_gsetter_ctx *ctx)
1035
{
1036
	return team_change_mode(team, ctx->data.str_val);
1037 1038
}

1039 1040 1041
static int team_port_en_option_get(struct team *team,
				   struct team_gsetter_ctx *ctx)
{
1042 1043 1044
	struct team_port *port = ctx->info->port;

	ctx->data.bool_val = team_port_enabled(port);
1045 1046 1047 1048 1049 1050
	return 0;
}

static int team_port_en_option_set(struct team *team,
				   struct team_gsetter_ctx *ctx)
{
1051 1052
	struct team_port *port = ctx->info->port;

1053
	if (ctx->data.bool_val)
1054
		team_port_enable(team, port);
1055
	else
1056
		team_port_disable(team, port);
1057 1058 1059
	return 0;
}

1060 1061 1062
static int team_user_linkup_option_get(struct team *team,
				       struct team_gsetter_ctx *ctx)
{
1063 1064 1065
	struct team_port *port = ctx->info->port;

	ctx->data.bool_val = port->user.linkup;
1066 1067 1068 1069 1070 1071
	return 0;
}

static int team_user_linkup_option_set(struct team *team,
				       struct team_gsetter_ctx *ctx)
{
1072 1073 1074 1075
	struct team_port *port = ctx->info->port;

	port->user.linkup = ctx->data.bool_val;
	team_refresh_port_linkup(port);
1076 1077 1078 1079 1080 1081
	return 0;
}

static int team_user_linkup_en_option_get(struct team *team,
					  struct team_gsetter_ctx *ctx)
{
1082
	struct team_port *port = ctx->info->port;
1083 1084 1085 1086 1087 1088 1089 1090

	ctx->data.bool_val = port->user.linkup_enabled;
	return 0;
}

static int team_user_linkup_en_option_set(struct team *team,
					  struct team_gsetter_ctx *ctx)
{
1091
	struct team_port *port = ctx->info->port;
1092 1093

	port->user.linkup_enabled = ctx->data.bool_val;
1094
	team_refresh_port_linkup(port);
1095 1096 1097
	return 0;
}

J
Jiri Pirko 已提交
1098
static const struct team_option team_options[] = {
1099 1100 1101 1102 1103 1104
	{
		.name = "mode",
		.type = TEAM_OPTION_TYPE_STRING,
		.getter = team_mode_option_get,
		.setter = team_mode_option_set,
	},
1105 1106 1107 1108 1109 1110 1111
	{
		.name = "enabled",
		.type = TEAM_OPTION_TYPE_BOOL,
		.per_port = true,
		.getter = team_port_en_option_get,
		.setter = team_port_en_option_set,
	},
1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125
	{
		.name = "user_linkup",
		.type = TEAM_OPTION_TYPE_BOOL,
		.per_port = true,
		.getter = team_user_linkup_option_get,
		.setter = team_user_linkup_option_set,
	},
	{
		.name = "user_linkup_enabled",
		.type = TEAM_OPTION_TYPE_BOOL,
		.per_port = true,
		.getter = team_user_linkup_en_option_get,
		.setter = team_user_linkup_en_option_set,
	},
1126 1127
};

J
Jiri Pirko 已提交
1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143
static struct lock_class_key team_netdev_xmit_lock_key;
static struct lock_class_key team_netdev_addr_lock_key;

static void team_set_lockdep_class_one(struct net_device *dev,
				       struct netdev_queue *txq,
				       void *unused)
{
	lockdep_set_class(&txq->_xmit_lock, &team_netdev_xmit_lock_key);
}

static void team_set_lockdep_class(struct net_device *dev)
{
	lockdep_set_class(&dev->addr_list_lock, &team_netdev_addr_lock_key);
	netdev_for_each_tx_queue(dev, team_set_lockdep_class_one, NULL);
}

1144 1145 1146 1147
static int team_init(struct net_device *dev)
{
	struct team *team = netdev_priv(dev);
	int i;
J
Jiri Pirko 已提交
1148
	int err;
1149 1150

	team->dev = dev;
1151
	mutex_init(&team->lock);
1152
	team_set_no_mode(team);
1153 1154 1155 1156 1157 1158

	team->pcpu_stats = alloc_percpu(struct team_pcpu_stats);
	if (!team->pcpu_stats)
		return -ENOMEM;

	for (i = 0; i < TEAM_PORT_HASHENTRIES; i++)
J
Jiri Pirko 已提交
1159
		INIT_HLIST_HEAD(&team->en_port_hlist[i]);
1160 1161 1162 1163 1164
	INIT_LIST_HEAD(&team->port_list);

	team_adjust_ops(team);

	INIT_LIST_HEAD(&team->option_list);
1165
	INIT_LIST_HEAD(&team->option_inst_list);
J
Jiri Pirko 已提交
1166 1167 1168
	err = team_options_register(team, team_options, ARRAY_SIZE(team_options));
	if (err)
		goto err_options_register;
1169 1170
	netif_carrier_off(dev);

J
Jiri Pirko 已提交
1171 1172
	team_set_lockdep_class(dev);

1173
	return 0;
J
Jiri Pirko 已提交
1174 1175 1176 1177 1178

err_options_register:
	free_percpu(team->pcpu_stats);

	return err;
1179 1180 1181 1182 1183 1184 1185 1186
}

static void team_uninit(struct net_device *dev)
{
	struct team *team = netdev_priv(dev);
	struct team_port *port;
	struct team_port *tmp;

1187
	mutex_lock(&team->lock);
1188 1189 1190 1191 1192
	list_for_each_entry_safe(port, tmp, &team->port_list, list)
		team_port_del(team, port->dev);

	__team_change_mode(team, NULL); /* cleanup */
	__team_options_unregister(team, team_options, ARRAY_SIZE(team_options));
1193
	mutex_unlock(&team->lock);
1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240
}

static void team_destructor(struct net_device *dev)
{
	struct team *team = netdev_priv(dev);

	free_percpu(team->pcpu_stats);
	free_netdev(dev);
}

static int team_open(struct net_device *dev)
{
	netif_carrier_on(dev);
	return 0;
}

static int team_close(struct net_device *dev)
{
	netif_carrier_off(dev);
	return 0;
}

/*
 * note: already called with rcu_read_lock
 */
static netdev_tx_t team_xmit(struct sk_buff *skb, struct net_device *dev)
{
	struct team *team = netdev_priv(dev);
	bool tx_success = false;
	unsigned int len = skb->len;

	tx_success = team->ops.transmit(team, skb);
	if (tx_success) {
		struct team_pcpu_stats *pcpu_stats;

		pcpu_stats = this_cpu_ptr(team->pcpu_stats);
		u64_stats_update_begin(&pcpu_stats->syncp);
		pcpu_stats->tx_packets++;
		pcpu_stats->tx_bytes += len;
		u64_stats_update_end(&pcpu_stats->syncp);
	} else {
		this_cpu_inc(team->pcpu_stats->tx_dropped);
	}

	return NETDEV_TX_OK;
}

J
Jiri Pirko 已提交
1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263
static u16 team_select_queue(struct net_device *dev, struct sk_buff *skb)
{
	/*
	 * This helper function exists to help dev_pick_tx get the correct
	 * destination queue.  Using a helper function skips a call to
	 * skb_tx_hash and will put the skbs in the queue we expect on their
	 * way down to the team driver.
	 */
	u16 txq = skb_rx_queue_recorded(skb) ? skb_get_rx_queue(skb) : 0;

	/*
	 * Save the original txq to restore before passing to the driver
	 */
	qdisc_skb_cb(skb)->slave_dev_queue_mapping = skb->queue_mapping;

	if (unlikely(txq >= dev->real_num_tx_queues)) {
		do {
			txq -= dev->real_num_tx_queues;
		} while (txq >= dev->real_num_tx_queues);
	}
	return txq;
}

1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300
static void team_change_rx_flags(struct net_device *dev, int change)
{
	struct team *team = netdev_priv(dev);
	struct team_port *port;
	int inc;

	rcu_read_lock();
	list_for_each_entry_rcu(port, &team->port_list, list) {
		if (change & IFF_PROMISC) {
			inc = dev->flags & IFF_PROMISC ? 1 : -1;
			dev_set_promiscuity(port->dev, inc);
		}
		if (change & IFF_ALLMULTI) {
			inc = dev->flags & IFF_ALLMULTI ? 1 : -1;
			dev_set_allmulti(port->dev, inc);
		}
	}
	rcu_read_unlock();
}

static void team_set_rx_mode(struct net_device *dev)
{
	struct team *team = netdev_priv(dev);
	struct team_port *port;

	rcu_read_lock();
	list_for_each_entry_rcu(port, &team->port_list, list) {
		dev_uc_sync(port->dev, dev);
		dev_mc_sync(port->dev, dev);
	}
	rcu_read_unlock();
}

static int team_set_mac_address(struct net_device *dev, void *p)
{
	struct team *team = netdev_priv(dev);
	struct team_port *port;
1301
	int err;
1302

1303 1304 1305
	err = eth_mac_addr(dev, p);
	if (err)
		return err;
1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323
	rcu_read_lock();
	list_for_each_entry_rcu(port, &team->port_list, list)
		if (team->ops.port_change_mac)
			team->ops.port_change_mac(team, port);
	rcu_read_unlock();
	return 0;
}

static int team_change_mtu(struct net_device *dev, int new_mtu)
{
	struct team *team = netdev_priv(dev);
	struct team_port *port;
	int err;

	/*
	 * Alhough this is reader, it's guarded by team lock. It's not possible
	 * to traverse list in reverse under rcu_read_lock
	 */
1324
	mutex_lock(&team->lock);
1325 1326 1327 1328 1329 1330 1331 1332
	list_for_each_entry(port, &team->port_list, list) {
		err = dev_set_mtu(port->dev, new_mtu);
		if (err) {
			netdev_err(dev, "Device %s failed to change mtu",
				   port->dev->name);
			goto unwind;
		}
	}
1333
	mutex_unlock(&team->lock);
1334 1335 1336 1337 1338 1339 1340 1341

	dev->mtu = new_mtu;

	return 0;

unwind:
	list_for_each_entry_continue_reverse(port, &team->port_list, list)
		dev_set_mtu(port->dev, dev->mtu);
1342
	mutex_unlock(&team->lock);
1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384

	return err;
}

static struct rtnl_link_stats64 *
team_get_stats64(struct net_device *dev, struct rtnl_link_stats64 *stats)
{
	struct team *team = netdev_priv(dev);
	struct team_pcpu_stats *p;
	u64 rx_packets, rx_bytes, rx_multicast, tx_packets, tx_bytes;
	u32 rx_dropped = 0, tx_dropped = 0;
	unsigned int start;
	int i;

	for_each_possible_cpu(i) {
		p = per_cpu_ptr(team->pcpu_stats, i);
		do {
			start = u64_stats_fetch_begin_bh(&p->syncp);
			rx_packets	= p->rx_packets;
			rx_bytes	= p->rx_bytes;
			rx_multicast	= p->rx_multicast;
			tx_packets	= p->tx_packets;
			tx_bytes	= p->tx_bytes;
		} while (u64_stats_fetch_retry_bh(&p->syncp, start));

		stats->rx_packets	+= rx_packets;
		stats->rx_bytes		+= rx_bytes;
		stats->multicast	+= rx_multicast;
		stats->tx_packets	+= tx_packets;
		stats->tx_bytes		+= tx_bytes;
		/*
		 * rx_dropped & tx_dropped are u32, updated
		 * without syncp protection.
		 */
		rx_dropped	+= p->rx_dropped;
		tx_dropped	+= p->tx_dropped;
	}
	stats->rx_dropped	= rx_dropped;
	stats->tx_dropped	= tx_dropped;
	return stats;
}

1385
static int team_vlan_rx_add_vid(struct net_device *dev, uint16_t vid)
1386 1387 1388
{
	struct team *team = netdev_priv(dev);
	struct team_port *port;
1389
	int err;
1390

1391 1392 1393 1394 1395 1396 1397 1398 1399
	/*
	 * Alhough this is reader, it's guarded by team lock. It's not possible
	 * to traverse list in reverse under rcu_read_lock
	 */
	mutex_lock(&team->lock);
	list_for_each_entry(port, &team->port_list, list) {
		err = vlan_vid_add(port->dev, vid);
		if (err)
			goto unwind;
1400
	}
1401
	mutex_unlock(&team->lock);
1402 1403

	return 0;
1404 1405 1406 1407 1408 1409 1410

unwind:
	list_for_each_entry_continue_reverse(port, &team->port_list, list)
		vlan_vid_del(port->dev, vid);
	mutex_unlock(&team->lock);

	return err;
1411 1412
}

1413
static int team_vlan_rx_kill_vid(struct net_device *dev, uint16_t vid)
1414 1415 1416 1417 1418
{
	struct team *team = netdev_priv(dev);
	struct team_port *port;

	rcu_read_lock();
1419 1420
	list_for_each_entry_rcu(port, &team->port_list, list)
		vlan_vid_del(port->dev, vid);
1421
	rcu_read_unlock();
1422 1423

	return 0;
1424 1425
}

J
Jiri Pirko 已提交
1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448
#ifdef CONFIG_NET_POLL_CONTROLLER
static void team_poll_controller(struct net_device *dev)
{
}

static void __team_netpoll_cleanup(struct team *team)
{
	struct team_port *port;

	list_for_each_entry(port, &team->port_list, list)
		team_port_disable_netpoll(port);
}

static void team_netpoll_cleanup(struct net_device *dev)
{
	struct team *team = netdev_priv(dev);

	mutex_lock(&team->lock);
	__team_netpoll_cleanup(team);
	mutex_unlock(&team->lock);
}

static int team_netpoll_setup(struct net_device *dev,
1449
			      struct netpoll_info *npifo, gfp_t gfp)
J
Jiri Pirko 已提交
1450 1451 1452
{
	struct team *team = netdev_priv(dev);
	struct team_port *port;
1453
	int err = 0;
J
Jiri Pirko 已提交
1454 1455 1456

	mutex_lock(&team->lock);
	list_for_each_entry(port, &team->port_list, list) {
1457
		err = team_port_enable_netpoll(team, port, gfp);
J
Jiri Pirko 已提交
1458 1459 1460 1461 1462 1463 1464 1465 1466 1467
		if (err) {
			__team_netpoll_cleanup(team);
			break;
		}
	}
	mutex_unlock(&team->lock);
	return err;
}
#endif

1468 1469 1470 1471 1472
static int team_add_slave(struct net_device *dev, struct net_device *port_dev)
{
	struct team *team = netdev_priv(dev);
	int err;

1473
	mutex_lock(&team->lock);
1474
	err = team_port_add(team, port_dev);
1475
	mutex_unlock(&team->lock);
1476 1477 1478 1479 1480 1481 1482 1483
	return err;
}

static int team_del_slave(struct net_device *dev, struct net_device *port_dev)
{
	struct team *team = netdev_priv(dev);
	int err;

1484
	mutex_lock(&team->lock);
1485
	err = team_port_del(team, port_dev);
1486
	mutex_unlock(&team->lock);
1487 1488 1489
	return err;
}

J
Jiri Pirko 已提交
1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510
static netdev_features_t team_fix_features(struct net_device *dev,
					   netdev_features_t features)
{
	struct team_port *port;
	struct team *team = netdev_priv(dev);
	netdev_features_t mask;

	mask = features;
	features &= ~NETIF_F_ONE_FOR_ALL;
	features |= NETIF_F_ALL_FOR_ALL;

	rcu_read_lock();
	list_for_each_entry_rcu(port, &team->port_list, list) {
		features = netdev_increment_features(features,
						     port->dev->features,
						     mask);
	}
	rcu_read_unlock();
	return features;
}

1511 1512 1513 1514 1515 1516
static const struct net_device_ops team_netdev_ops = {
	.ndo_init		= team_init,
	.ndo_uninit		= team_uninit,
	.ndo_open		= team_open,
	.ndo_stop		= team_close,
	.ndo_start_xmit		= team_xmit,
J
Jiri Pirko 已提交
1517
	.ndo_select_queue	= team_select_queue,
1518 1519 1520 1521 1522 1523 1524
	.ndo_change_rx_flags	= team_change_rx_flags,
	.ndo_set_rx_mode	= team_set_rx_mode,
	.ndo_set_mac_address	= team_set_mac_address,
	.ndo_change_mtu		= team_change_mtu,
	.ndo_get_stats64	= team_get_stats64,
	.ndo_vlan_rx_add_vid	= team_vlan_rx_add_vid,
	.ndo_vlan_rx_kill_vid	= team_vlan_rx_kill_vid,
J
Jiri Pirko 已提交
1525 1526 1527 1528 1529
#ifdef CONFIG_NET_POLL_CONTROLLER
	.ndo_poll_controller	= team_poll_controller,
	.ndo_netpoll_setup	= team_netpoll_setup,
	.ndo_netpoll_cleanup	= team_netpoll_cleanup,
#endif
1530 1531
	.ndo_add_slave		= team_add_slave,
	.ndo_del_slave		= team_del_slave,
J
Jiri Pirko 已提交
1532
	.ndo_fix_features	= team_fix_features,
1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554
};


/***********************
 * rt netlink interface
 ***********************/

static void team_setup(struct net_device *dev)
{
	ether_setup(dev);

	dev->netdev_ops = &team_netdev_ops;
	dev->destructor	= team_destructor;
	dev->tx_queue_len = 0;
	dev->flags |= IFF_MULTICAST;
	dev->priv_flags &= ~(IFF_XMIT_DST_RELEASE | IFF_TX_SKB_SHARING);

	/*
	 * Indicate we support unicast address filtering. That way core won't
	 * bring us to promisc mode in case a unicast addr is added.
	 * Let this up to underlay drivers.
	 */
1555
	dev->priv_flags |= IFF_UNICAST_FLT | IFF_LIVE_ADDR_CHANGE;
1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571

	dev->features |= NETIF_F_LLTX;
	dev->features |= NETIF_F_GRO;
	dev->hw_features = NETIF_F_HW_VLAN_TX |
			   NETIF_F_HW_VLAN_RX |
			   NETIF_F_HW_VLAN_FILTER;

	dev->features |= dev->hw_features;
}

static int team_newlink(struct net *src_net, struct net_device *dev,
			struct nlattr *tb[], struct nlattr *data[])
{
	int err;

	if (tb[IFLA_ADDRESS] == NULL)
1572
		eth_hw_addr_random(dev);
1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591

	err = register_netdevice(dev);
	if (err)
		return err;

	return 0;
}

static int team_validate(struct nlattr *tb[], struct nlattr *data[])
{
	if (tb[IFLA_ADDRESS]) {
		if (nla_len(tb[IFLA_ADDRESS]) != ETH_ALEN)
			return -EINVAL;
		if (!is_valid_ether_addr(nla_data(tb[IFLA_ADDRESS])))
			return -EADDRNOTAVAIL;
	}
	return 0;
}

J
Jiri Pirko 已提交
1592 1593 1594 1595 1596 1597 1598 1599 1600 1601
static unsigned int team_get_num_tx_queues(void)
{
	return TEAM_DEFAULT_NUM_TX_QUEUES;
}

static unsigned int team_get_num_rx_queues(void)
{
	return TEAM_DEFAULT_NUM_RX_QUEUES;
}

1602
static struct rtnl_link_ops team_link_ops __read_mostly = {
J
Jiri Pirko 已提交
1603 1604 1605 1606 1607 1608 1609
	.kind			= DRV_NAME,
	.priv_size		= sizeof(struct team),
	.setup			= team_setup,
	.newlink		= team_newlink,
	.validate		= team_validate,
	.get_num_tx_queues	= team_get_num_tx_queues,
	.get_num_rx_queues	= team_get_num_rx_queues,
1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640
};


/***********************************
 * Generic netlink custom interface
 ***********************************/

static struct genl_family team_nl_family = {
	.id		= GENL_ID_GENERATE,
	.name		= TEAM_GENL_NAME,
	.version	= TEAM_GENL_VERSION,
	.maxattr	= TEAM_ATTR_MAX,
	.netnsok	= true,
};

static const struct nla_policy team_nl_policy[TEAM_ATTR_MAX + 1] = {
	[TEAM_ATTR_UNSPEC]			= { .type = NLA_UNSPEC, },
	[TEAM_ATTR_TEAM_IFINDEX]		= { .type = NLA_U32 },
	[TEAM_ATTR_LIST_OPTION]			= { .type = NLA_NESTED },
	[TEAM_ATTR_LIST_PORT]			= { .type = NLA_NESTED },
};

static const struct nla_policy
team_nl_option_policy[TEAM_ATTR_OPTION_MAX + 1] = {
	[TEAM_ATTR_OPTION_UNSPEC]		= { .type = NLA_UNSPEC, },
	[TEAM_ATTR_OPTION_NAME] = {
		.type = NLA_STRING,
		.len = TEAM_STRING_MAX_LEN,
	},
	[TEAM_ATTR_OPTION_CHANGED]		= { .type = NLA_FLAG },
	[TEAM_ATTR_OPTION_TYPE]			= { .type = NLA_U8 },
J
Jiri Pirko 已提交
1641
	[TEAM_ATTR_OPTION_DATA]			= { .type = NLA_BINARY },
1642 1643 1644 1645 1646 1647 1648 1649
};

static int team_nl_cmd_noop(struct sk_buff *skb, struct genl_info *info)
{
	struct sk_buff *msg;
	void *hdr;
	int err;

1650
	msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
1651 1652 1653 1654 1655
	if (!msg)
		return -ENOMEM;

	hdr = genlmsg_put(msg, info->snd_pid, info->snd_seq,
			  &team_nl_family, 0, TEAM_CMD_NOOP);
W
Wei Yongjun 已提交
1656 1657
	if (!hdr) {
		err = -EMSGSIZE;
1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672
		goto err_msg_put;
	}

	genlmsg_end(msg, hdr);

	return genlmsg_unicast(genl_info_net(info), msg, info->snd_pid);

err_msg_put:
	nlmsg_free(msg);

	return err;
}

/*
 * Netlink cmd functions should be locked by following two functions.
1673
 * Since dev gets held here, that ensures dev won't disappear in between.
1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685
 */
static struct team *team_nl_team_get(struct genl_info *info)
{
	struct net *net = genl_info_net(info);
	int ifindex;
	struct net_device *dev;
	struct team *team;

	if (!info->attrs[TEAM_ATTR_TEAM_IFINDEX])
		return NULL;

	ifindex = nla_get_u32(info->attrs[TEAM_ATTR_TEAM_IFINDEX]);
1686
	dev = dev_get_by_index(net, ifindex);
1687
	if (!dev || dev->netdev_ops != &team_netdev_ops) {
1688 1689
		if (dev)
			dev_put(dev);
1690 1691 1692 1693
		return NULL;
	}

	team = netdev_priv(dev);
1694
	mutex_lock(&team->lock);
1695 1696 1697 1698 1699
	return team;
}

static void team_nl_team_put(struct team *team)
{
1700
	mutex_unlock(&team->lock);
1701
	dev_put(team->dev);
1702 1703 1704 1705 1706 1707 1708 1709 1710 1711
}

static int team_nl_send_generic(struct genl_info *info, struct team *team,
				int (*fill_func)(struct sk_buff *skb,
						 struct genl_info *info,
						 int flags, struct team *team))
{
	struct sk_buff *skb;
	int err;

1712
	skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727
	if (!skb)
		return -ENOMEM;

	err = fill_func(skb, info, NLM_F_ACK, team);
	if (err < 0)
		goto err_fill;

	err = genlmsg_unicast(genl_info_net(info), skb, info->snd_pid);
	return err;

err_fill:
	nlmsg_free(skb);
	return err;
}

1728 1729 1730 1731 1732 1733 1734 1735
typedef int team_nl_send_func_t(struct sk_buff *skb,
				struct team *team, u32 pid);

static int team_nl_send_unicast(struct sk_buff *skb, struct team *team, u32 pid)
{
	return genlmsg_unicast(dev_net(team->dev), skb, pid);
}

1736 1737 1738 1739 1740
static int team_nl_fill_one_option_get(struct sk_buff *skb, struct team *team,
				       struct team_option_inst *opt_inst)
{
	struct nlattr *option_item;
	struct team_option *option = opt_inst->option;
1741
	struct team_option_inst_info *opt_inst_info = &opt_inst->info;
1742 1743 1744
	struct team_gsetter_ctx ctx;
	int err;

1745 1746 1747 1748 1749
	ctx.info = opt_inst_info;
	err = team_option_get(team, opt_inst, &ctx);
	if (err)
		return err;

1750 1751
	option_item = nla_nest_start(skb, TEAM_ATTR_ITEM_OPTION);
	if (!option_item)
1752
		return -EMSGSIZE;
1753

1754 1755
	if (nla_put_string(skb, TEAM_ATTR_OPTION_NAME, option->name))
		goto nest_cancel;
1756 1757 1758
	if (opt_inst_info->port &&
	    nla_put_u32(skb, TEAM_ATTR_OPTION_PORT_IFINDEX,
			opt_inst_info->port->dev->ifindex))
1759
		goto nest_cancel;
1760 1761 1762
	if (opt_inst->option->array_size &&
	    nla_put_u32(skb, TEAM_ATTR_OPTION_ARRAY_INDEX,
			opt_inst_info->array_index))
1763
		goto nest_cancel;
1764 1765 1766 1767

	switch (option->type) {
	case TEAM_OPTION_TYPE_U32:
		if (nla_put_u8(skb, TEAM_ATTR_OPTION_TYPE, NLA_U32))
1768
			goto nest_cancel;
1769
		if (nla_put_u32(skb, TEAM_ATTR_OPTION_DATA, ctx.data.u32_val))
1770
			goto nest_cancel;
1771 1772 1773
		break;
	case TEAM_OPTION_TYPE_STRING:
		if (nla_put_u8(skb, TEAM_ATTR_OPTION_TYPE, NLA_STRING))
1774
			goto nest_cancel;
1775 1776
		if (nla_put_string(skb, TEAM_ATTR_OPTION_DATA,
				   ctx.data.str_val))
1777
			goto nest_cancel;
1778 1779 1780
		break;
	case TEAM_OPTION_TYPE_BINARY:
		if (nla_put_u8(skb, TEAM_ATTR_OPTION_TYPE, NLA_BINARY))
1781
			goto nest_cancel;
1782 1783
		if (nla_put(skb, TEAM_ATTR_OPTION_DATA, ctx.data.bin_val.len,
			    ctx.data.bin_val.ptr))
1784
			goto nest_cancel;
1785 1786 1787
		break;
	case TEAM_OPTION_TYPE_BOOL:
		if (nla_put_u8(skb, TEAM_ATTR_OPTION_TYPE, NLA_FLAG))
1788
			goto nest_cancel;
1789 1790
		if (ctx.data.bool_val &&
		    nla_put_flag(skb, TEAM_ATTR_OPTION_DATA))
1791
			goto nest_cancel;
1792 1793 1794 1795
		break;
	default:
		BUG();
	}
1796 1797 1798 1799 1800 1801 1802
	if (opt_inst->removed && nla_put_flag(skb, TEAM_ATTR_OPTION_REMOVED))
		goto nest_cancel;
	if (opt_inst->changed) {
		if (nla_put_flag(skb, TEAM_ATTR_OPTION_CHANGED))
			goto nest_cancel;
		opt_inst->changed = false;
	}
1803 1804 1805
	nla_nest_end(skb, option_item);
	return 0;

1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821
nest_cancel:
	nla_nest_cancel(skb, option_item);
	return -EMSGSIZE;
}

static int __send_and_alloc_skb(struct sk_buff **pskb,
				struct team *team, u32 pid,
				team_nl_send_func_t *send_func)
{
	int err;

	if (*pskb) {
		err = send_func(*pskb, team, pid);
		if (err)
			return err;
	}
1822
	*pskb = genlmsg_new(GENLMSG_DEFAULT_SIZE, GFP_KERNEL);
1823 1824 1825
	if (!*pskb)
		return -ENOMEM;
	return 0;
1826 1827
}

1828 1829
static int team_nl_send_options_get(struct team *team, u32 pid, u32 seq,
				    int flags, team_nl_send_func_t *send_func,
1830
				    struct list_head *sel_opt_inst_list)
1831 1832
{
	struct nlattr *option_list;
1833
	struct nlmsghdr *nlh;
1834
	void *hdr;
1835 1836
	struct team_option_inst *opt_inst;
	int err;
1837 1838 1839
	struct sk_buff *skb = NULL;
	bool incomplete;
	int i;
1840

1841 1842 1843 1844 1845 1846 1847 1848 1849
	opt_inst = list_first_entry(sel_opt_inst_list,
				    struct team_option_inst, tmp_list);

start_again:
	err = __send_and_alloc_skb(&skb, team, pid, send_func);
	if (err)
		return err;

	hdr = genlmsg_put(skb, pid, seq, &team_nl_family, flags | NLM_F_MULTI,
1850
			  TEAM_CMD_OPTIONS_GET);
W
Wei Yongjun 已提交
1851 1852
	if (!hdr)
		return -EMSGSIZE;
1853

D
David S. Miller 已提交
1854 1855
	if (nla_put_u32(skb, TEAM_ATTR_TEAM_IFINDEX, team->dev->ifindex))
		goto nla_put_failure;
1856 1857
	option_list = nla_nest_start(skb, TEAM_ATTR_LIST_OPTION);
	if (!option_list)
1858
		goto nla_put_failure;
1859

1860 1861 1862
	i = 0;
	incomplete = false;
	list_for_each_entry_from(opt_inst, sel_opt_inst_list, tmp_list) {
1863
		err = team_nl_fill_one_option_get(skb, team, opt_inst);
1864 1865 1866 1867 1868 1869 1870
		if (err) {
			if (err == -EMSGSIZE) {
				if (!i)
					goto errout;
				incomplete = true;
				break;
			}
1871
			goto errout;
1872 1873
		}
		i++;
1874 1875 1876
	}

	nla_nest_end(skb, option_list);
1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890
	genlmsg_end(skb, hdr);
	if (incomplete)
		goto start_again;

send_done:
	nlh = nlmsg_put(skb, pid, seq, NLMSG_DONE, 0, flags | NLM_F_MULTI);
	if (!nlh) {
		err = __send_and_alloc_skb(&skb, team, pid, send_func);
		if (err)
			goto errout;
		goto send_done;
	}

	return send_func(skb, team, pid);
1891 1892

nla_put_failure:
1893 1894
	err = -EMSGSIZE;
errout:
1895
	genlmsg_cancel(skb, hdr);
1896
	nlmsg_free(skb);
1897
	return err;
1898 1899 1900 1901 1902
}

static int team_nl_cmd_options_get(struct sk_buff *skb, struct genl_info *info)
{
	struct team *team;
1903
	struct team_option_inst *opt_inst;
1904
	int err;
1905
	LIST_HEAD(sel_opt_inst_list);
1906 1907 1908 1909 1910

	team = team_nl_team_get(info);
	if (!team)
		return -EINVAL;

1911 1912 1913 1914 1915
	list_for_each_entry(opt_inst, &team->option_inst_list, list)
		list_add_tail(&opt_inst->tmp_list, &sel_opt_inst_list);
	err = team_nl_send_options_get(team, info->snd_pid, info->snd_seq,
				       NLM_F_ACK, team_nl_send_unicast,
				       &sel_opt_inst_list);
1916 1917 1918 1919 1920 1921

	team_nl_team_put(team);

	return err;
}

1922 1923 1924
static int team_nl_send_event_options_get(struct team *team,
					  struct list_head *sel_opt_inst_list);

1925 1926 1927 1928 1929 1930
static int team_nl_cmd_options_set(struct sk_buff *skb, struct genl_info *info)
{
	struct team *team;
	int err = 0;
	int i;
	struct nlattr *nl_option;
1931
	LIST_HEAD(opt_inst_list);
1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943

	team = team_nl_team_get(info);
	if (!team)
		return -EINVAL;

	err = -EINVAL;
	if (!info->attrs[TEAM_ATTR_LIST_OPTION]) {
		err = -EINVAL;
		goto team_put;
	}

	nla_for_each_nested(nl_option, info->attrs[TEAM_ATTR_LIST_OPTION], i) {
1944
		struct nlattr *opt_attrs[TEAM_ATTR_OPTION_MAX + 1];
J
Jiri Pirko 已提交
1945
		struct nlattr *attr;
J
Jiri Pirko 已提交
1946
		struct nlattr *attr_data;
1947
		enum team_option_type opt_type;
1948
		int opt_port_ifindex = 0; /* != 0 for per-port options */
J
Jiri Pirko 已提交
1949 1950
		u32 opt_array_index = 0;
		bool opt_is_array = false;
1951
		struct team_option_inst *opt_inst;
1952 1953 1954 1955 1956 1957 1958
		char *opt_name;
		bool opt_found = false;

		if (nla_type(nl_option) != TEAM_ATTR_ITEM_OPTION) {
			err = -EINVAL;
			goto team_put;
		}
1959
		err = nla_parse_nested(opt_attrs, TEAM_ATTR_OPTION_MAX,
1960 1961 1962
				       nl_option, team_nl_option_policy);
		if (err)
			goto team_put;
1963
		if (!opt_attrs[TEAM_ATTR_OPTION_NAME] ||
J
Jiri Pirko 已提交
1964
		    !opt_attrs[TEAM_ATTR_OPTION_TYPE]) {
1965 1966 1967
			err = -EINVAL;
			goto team_put;
		}
1968
		switch (nla_get_u8(opt_attrs[TEAM_ATTR_OPTION_TYPE])) {
1969 1970 1971 1972 1973 1974
		case NLA_U32:
			opt_type = TEAM_OPTION_TYPE_U32;
			break;
		case NLA_STRING:
			opt_type = TEAM_OPTION_TYPE_STRING;
			break;
J
Jiri Pirko 已提交
1975 1976 1977
		case NLA_BINARY:
			opt_type = TEAM_OPTION_TYPE_BINARY;
			break;
J
Jiri Pirko 已提交
1978 1979 1980
		case NLA_FLAG:
			opt_type = TEAM_OPTION_TYPE_BOOL;
			break;
1981 1982 1983 1984
		default:
			goto team_put;
		}

J
Jiri Pirko 已提交
1985 1986 1987 1988 1989 1990
		attr_data = opt_attrs[TEAM_ATTR_OPTION_DATA];
		if (opt_type != TEAM_OPTION_TYPE_BOOL && !attr_data) {
			err = -EINVAL;
			goto team_put;
		}

1991
		opt_name = nla_data(opt_attrs[TEAM_ATTR_OPTION_NAME]);
J
Jiri Pirko 已提交
1992 1993 1994 1995 1996 1997 1998 1999 2000
		attr = opt_attrs[TEAM_ATTR_OPTION_PORT_IFINDEX];
		if (attr)
			opt_port_ifindex = nla_get_u32(attr);

		attr = opt_attrs[TEAM_ATTR_OPTION_ARRAY_INDEX];
		if (attr) {
			opt_is_array = true;
			opt_array_index = nla_get_u32(attr);
		}
2001 2002 2003 2004

		list_for_each_entry(opt_inst, &team->option_inst_list, list) {
			struct team_option *option = opt_inst->option;
			struct team_gsetter_ctx ctx;
2005
			struct team_option_inst_info *opt_inst_info;
2006
			int tmp_ifindex;
2007

2008 2009 2010
			opt_inst_info = &opt_inst->info;
			tmp_ifindex = opt_inst_info->port ?
				      opt_inst_info->port->dev->ifindex : 0;
2011
			if (option->type != opt_type ||
2012
			    strcmp(option->name, opt_name) ||
J
Jiri Pirko 已提交
2013 2014
			    tmp_ifindex != opt_port_ifindex ||
			    (option->array_size && !opt_is_array) ||
2015
			    opt_inst_info->array_index != opt_array_index)
2016 2017
				continue;
			opt_found = true;
2018
			ctx.info = opt_inst_info;
2019 2020
			switch (opt_type) {
			case TEAM_OPTION_TYPE_U32:
J
Jiri Pirko 已提交
2021
				ctx.data.u32_val = nla_get_u32(attr_data);
2022 2023
				break;
			case TEAM_OPTION_TYPE_STRING:
J
Jiri Pirko 已提交
2024
				if (nla_len(attr_data) > TEAM_STRING_MAX_LEN) {
J
Jiri Pirko 已提交
2025 2026 2027
					err = -EINVAL;
					goto team_put;
				}
J
Jiri Pirko 已提交
2028
				ctx.data.str_val = nla_data(attr_data);
2029
				break;
J
Jiri Pirko 已提交
2030
			case TEAM_OPTION_TYPE_BINARY:
J
Jiri Pirko 已提交
2031 2032 2033 2034 2035
				ctx.data.bin_val.len = nla_len(attr_data);
				ctx.data.bin_val.ptr = nla_data(attr_data);
				break;
			case TEAM_OPTION_TYPE_BOOL:
				ctx.data.bool_val = attr_data ? true : false;
J
Jiri Pirko 已提交
2036
				break;
2037 2038 2039
			default:
				BUG();
			}
2040
			err = team_option_set(team, opt_inst, &ctx);
2041 2042
			if (err)
				goto team_put;
2043 2044
			opt_inst->changed = true;
			list_add(&opt_inst->tmp_list, &opt_inst_list);
2045 2046 2047 2048 2049 2050 2051
		}
		if (!opt_found) {
			err = -ENOENT;
			goto team_put;
		}
	}

2052 2053
	err = team_nl_send_event_options_get(team, &opt_inst_list);

2054 2055 2056 2057 2058 2059
team_put:
	team_nl_team_put(team);

	return err;
}

2060 2061 2062 2063
static int team_nl_fill_port_list_get(struct sk_buff *skb,
				      u32 pid, u32 seq, int flags,
				      struct team *team,
				      bool fillall)
2064 2065 2066 2067 2068 2069 2070
{
	struct nlattr *port_list;
	void *hdr;
	struct team_port *port;

	hdr = genlmsg_put(skb, pid, seq, &team_nl_family, flags,
			  TEAM_CMD_PORT_LIST_GET);
W
Wei Yongjun 已提交
2071 2072
	if (!hdr)
		return -EMSGSIZE;
2073

D
David S. Miller 已提交
2074 2075
	if (nla_put_u32(skb, TEAM_ATTR_TEAM_IFINDEX, team->dev->ifindex))
		goto nla_put_failure;
2076 2077
	port_list = nla_nest_start(skb, TEAM_ATTR_LIST_PORT);
	if (!port_list)
2078
		goto nla_put_failure;
2079 2080 2081 2082

	list_for_each_entry(port, &team->port_list, list) {
		struct nlattr *port_item;

2083 2084 2085
		/* Include only changed ports if fill all mode is not on */
		if (!fillall && !port->changed)
			continue;
2086 2087 2088
		port_item = nla_nest_start(skb, TEAM_ATTR_ITEM_PORT);
		if (!port_item)
			goto nla_put_failure;
D
David S. Miller 已提交
2089 2090
		if (nla_put_u32(skb, TEAM_ATTR_PORT_IFINDEX, port->dev->ifindex))
			goto nla_put_failure;
2091
		if (port->changed) {
D
David S. Miller 已提交
2092 2093
			if (nla_put_flag(skb, TEAM_ATTR_PORT_CHANGED))
				goto nla_put_failure;
2094 2095
			port->changed = false;
		}
D
David S. Miller 已提交
2096 2097
		if ((port->removed &&
		     nla_put_flag(skb, TEAM_ATTR_PORT_REMOVED)) ||
2098
		    (port->state.linkup &&
D
David S. Miller 已提交
2099
		     nla_put_flag(skb, TEAM_ATTR_PORT_LINKUP)) ||
2100 2101
		    nla_put_u32(skb, TEAM_ATTR_PORT_SPEED, port->state.speed) ||
		    nla_put_u8(skb, TEAM_ATTR_PORT_DUPLEX, port->state.duplex))
D
David S. Miller 已提交
2102
			goto nla_put_failure;
2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113
		nla_nest_end(skb, port_item);
	}

	nla_nest_end(skb, port_list);
	return genlmsg_end(skb, hdr);

nla_put_failure:
	genlmsg_cancel(skb, hdr);
	return -EMSGSIZE;
}

2114 2115 2116
static int team_nl_fill_port_list_get_all(struct sk_buff *skb,
					  struct genl_info *info, int flags,
					  struct team *team)
2117
{
2118 2119 2120
	return team_nl_fill_port_list_get(skb, info->snd_pid,
					  info->snd_seq, NLM_F_ACK,
					  team, true);
2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132
}

static int team_nl_cmd_port_list_get(struct sk_buff *skb,
				     struct genl_info *info)
{
	struct team *team;
	int err;

	team = team_nl_team_get(info);
	if (!team)
		return -EINVAL;

2133
	err = team_nl_send_generic(info, team, team_nl_fill_port_list_get_all);
2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169

	team_nl_team_put(team);

	return err;
}

static struct genl_ops team_nl_ops[] = {
	{
		.cmd = TEAM_CMD_NOOP,
		.doit = team_nl_cmd_noop,
		.policy = team_nl_policy,
	},
	{
		.cmd = TEAM_CMD_OPTIONS_SET,
		.doit = team_nl_cmd_options_set,
		.policy = team_nl_policy,
		.flags = GENL_ADMIN_PERM,
	},
	{
		.cmd = TEAM_CMD_OPTIONS_GET,
		.doit = team_nl_cmd_options_get,
		.policy = team_nl_policy,
		.flags = GENL_ADMIN_PERM,
	},
	{
		.cmd = TEAM_CMD_PORT_LIST_GET,
		.doit = team_nl_cmd_port_list_get,
		.policy = team_nl_policy,
		.flags = GENL_ADMIN_PERM,
	},
};

static struct genl_multicast_group team_change_event_mcgrp = {
	.name = TEAM_GENL_CHANGE_EVENT_MC_GRP_NAME,
};

2170 2171 2172 2173 2174 2175 2176
static int team_nl_send_multicast(struct sk_buff *skb,
				  struct team *team, u32 pid)
{
	return genlmsg_multicast_netns(dev_net(team->dev), skb, 0,
				       team_change_event_mcgrp.id, GFP_KERNEL);
}

2177 2178
static int team_nl_send_event_options_get(struct team *team,
					  struct list_head *sel_opt_inst_list)
2179
{
2180 2181
	return team_nl_send_options_get(team, 0, 0, 0, team_nl_send_multicast,
					sel_opt_inst_list);
2182 2183
}

2184
static int team_nl_send_event_port_list_get(struct team *team)
2185 2186 2187
{
	struct sk_buff *skb;
	int err;
2188
	struct net *net = dev_net(team->dev);
2189

2190
	skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
2191 2192 2193
	if (!skb)
		return -ENOMEM;

2194
	err = team_nl_fill_port_list_get(skb, 0, 0, 0, team, false);
2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237
	if (err < 0)
		goto err_fill;

	err = genlmsg_multicast_netns(net, skb, 0, team_change_event_mcgrp.id,
				      GFP_KERNEL);
	return err;

err_fill:
	nlmsg_free(skb);
	return err;
}

static int team_nl_init(void)
{
	int err;

	err = genl_register_family_with_ops(&team_nl_family, team_nl_ops,
					    ARRAY_SIZE(team_nl_ops));
	if (err)
		return err;

	err = genl_register_mc_group(&team_nl_family, &team_change_event_mcgrp);
	if (err)
		goto err_change_event_grp_reg;

	return 0;

err_change_event_grp_reg:
	genl_unregister_family(&team_nl_family);

	return err;
}

static void team_nl_fini(void)
{
	genl_unregister_family(&team_nl_family);
}


/******************
 * Change checkers
 ******************/

2238
static void __team_options_change_check(struct team *team)
2239 2240
{
	int err;
2241 2242
	struct team_option_inst *opt_inst;
	LIST_HEAD(sel_opt_inst_list);
2243

2244 2245 2246 2247 2248
	list_for_each_entry(opt_inst, &team->option_inst_list, list) {
		if (opt_inst->changed)
			list_add_tail(&opt_inst->tmp_list, &sel_opt_inst_list);
	}
	err = team_nl_send_event_options_get(team, &sel_opt_inst_list);
2249
	if (err)
2250 2251
		netdev_warn(team->dev, "Failed to send options change via netlink (err %d)\n",
			    err);
2252 2253 2254
}

/* rtnl lock is held */
J
Jiri Pirko 已提交
2255 2256

static void __team_port_change_send(struct team_port *port, bool linkup)
2257 2258 2259
{
	int err;

2260
	port->changed = true;
2261 2262
	port->state.linkup = linkup;
	team_refresh_port_linkup(port);
2263 2264 2265 2266 2267
	if (linkup) {
		struct ethtool_cmd ecmd;

		err = __ethtool_get_settings(port->dev, &ecmd);
		if (!err) {
2268 2269
			port->state.speed = ethtool_cmd_speed(&ecmd);
			port->state.duplex = ecmd.duplex;
2270 2271 2272
			goto send_event;
		}
	}
2273 2274
	port->state.speed = 0;
	port->state.duplex = 0;
2275 2276

send_event:
2277
	err = team_nl_send_event_port_list_get(port->team);
2278 2279 2280 2281 2282 2283
	if (err)
		netdev_warn(port->team->dev, "Failed to send port change of device %s via netlink\n",
			    port->dev->name);

}

J
Jiri Pirko 已提交
2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300
static void __team_port_change_check(struct team_port *port, bool linkup)
{
	if (port->state.linkup != linkup)
		__team_port_change_send(port, linkup);
}

static void __team_port_change_port_added(struct team_port *port, bool linkup)
{
	__team_port_change_send(port, linkup);
}

static void __team_port_change_port_removed(struct team_port *port)
{
	port->removed = true;
	__team_port_change_send(port, false);
}

2301 2302 2303 2304
static void team_port_change_check(struct team_port *port, bool linkup)
{
	struct team *team = port->team;

2305
	mutex_lock(&team->lock);
2306
	__team_port_change_check(port, linkup);
2307
	mutex_unlock(&team->lock);
2308 2309
}

J
Jiri Pirko 已提交
2310

2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399
/************************************
 * Net device notifier event handler
 ************************************/

static int team_device_event(struct notifier_block *unused,
			     unsigned long event, void *ptr)
{
	struct net_device *dev = (struct net_device *) ptr;
	struct team_port *port;

	port = team_port_get_rtnl(dev);
	if (!port)
		return NOTIFY_DONE;

	switch (event) {
	case NETDEV_UP:
		if (netif_carrier_ok(dev))
			team_port_change_check(port, true);
	case NETDEV_DOWN:
		team_port_change_check(port, false);
	case NETDEV_CHANGE:
		if (netif_running(port->dev))
			team_port_change_check(port,
					       !!netif_carrier_ok(port->dev));
		break;
	case NETDEV_UNREGISTER:
		team_del_slave(port->team->dev, dev);
		break;
	case NETDEV_FEAT_CHANGE:
		team_compute_features(port->team);
		break;
	case NETDEV_CHANGEMTU:
		/* Forbid to change mtu of underlaying device */
		return NOTIFY_BAD;
	case NETDEV_PRE_TYPE_CHANGE:
		/* Forbid to change type of underlaying device */
		return NOTIFY_BAD;
	}
	return NOTIFY_DONE;
}

static struct notifier_block team_notifier_block __read_mostly = {
	.notifier_call = team_device_event,
};


/***********************
 * Module init and exit
 ***********************/

static int __init team_module_init(void)
{
	int err;

	register_netdevice_notifier(&team_notifier_block);

	err = rtnl_link_register(&team_link_ops);
	if (err)
		goto err_rtnl_reg;

	err = team_nl_init();
	if (err)
		goto err_nl_init;

	return 0;

err_nl_init:
	rtnl_link_unregister(&team_link_ops);

err_rtnl_reg:
	unregister_netdevice_notifier(&team_notifier_block);

	return err;
}

static void __exit team_module_exit(void)
{
	team_nl_fini();
	rtnl_link_unregister(&team_link_ops);
	unregister_netdevice_notifier(&team_notifier_block);
}

module_init(team_module_init);
module_exit(team_module_exit);

MODULE_LICENSE("GPL v2");
MODULE_AUTHOR("Jiri Pirko <jpirko@redhat.com>");
MODULE_DESCRIPTION("Ethernet team device driver");
MODULE_ALIAS_RTNL_LINK(DRV_NAME);