switchdev.c 15.5 KB
Newer Older
1 2
/*
 * net/switchdev/switchdev.c - Switch device API
3
 * Copyright (c) 2014-2015 Jiri Pirko <jiri@resnulli.us>
4
 * Copyright (c) 2014-2015 Scott Feldman <sfeldma@gmail.com>
5 6 7 8 9 10 11 12 13 14
 *
 * 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/init.h>
15 16
#include <linux/mutex.h>
#include <linux/notifier.h>
17
#include <linux/netdevice.h>
18
#include <linux/etherdevice.h>
19
#include <linux/if_bridge.h>
20
#include <linux/list.h>
21
#include <linux/workqueue.h>
22
#include <linux/if_vlan.h>
23
#include <linux/rtnetlink.h>
24 25
#include <net/switchdev.h>

26 27 28 29 30 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 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97
/**
 *	switchdev_trans_item_enqueue - Enqueue data item to transaction queue
 *
 *	@trans: transaction
 *	@data: pointer to data being queued
 *	@destructor: data destructor
 *	@tritem: transaction item being queued
 *
 *	Enqeueue data item to transaction queue. tritem is typically placed in
 *	cointainter pointed at by data pointer. Destructor is called on
 *	transaction abort and after successful commit phase in case
 *	the caller did not dequeue the item before.
 */
void switchdev_trans_item_enqueue(struct switchdev_trans *trans,
				  void *data, void (*destructor)(void const *),
				  struct switchdev_trans_item *tritem)
{
	tritem->data = data;
	tritem->destructor = destructor;
	list_add_tail(&tritem->list, &trans->item_list);
}
EXPORT_SYMBOL_GPL(switchdev_trans_item_enqueue);

static struct switchdev_trans_item *
__switchdev_trans_item_dequeue(struct switchdev_trans *trans)
{
	struct switchdev_trans_item *tritem;

	if (list_empty(&trans->item_list))
		return NULL;
	tritem = list_first_entry(&trans->item_list,
				  struct switchdev_trans_item, list);
	list_del(&tritem->list);
	return tritem;
}

/**
 *	switchdev_trans_item_dequeue - Dequeue data item from transaction queue
 *
 *	@trans: transaction
 */
void *switchdev_trans_item_dequeue(struct switchdev_trans *trans)
{
	struct switchdev_trans_item *tritem;

	tritem = __switchdev_trans_item_dequeue(trans);
	BUG_ON(!tritem);
	return tritem->data;
}
EXPORT_SYMBOL_GPL(switchdev_trans_item_dequeue);

static void switchdev_trans_init(struct switchdev_trans *trans)
{
	INIT_LIST_HEAD(&trans->item_list);
}

static void switchdev_trans_items_destroy(struct switchdev_trans *trans)
{
	struct switchdev_trans_item *tritem;

	while ((tritem = __switchdev_trans_item_dequeue(trans)))
		tritem->destructor(tritem->data);
}

static void switchdev_trans_items_warn_destroy(struct net_device *dev,
					       struct switchdev_trans *trans)
{
	WARN(!list_empty(&trans->item_list), "%s: transaction item queue is not empty.\n",
	     dev->name);
	switchdev_trans_items_destroy(trans);
}

98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176
static LIST_HEAD(deferred);
static DEFINE_SPINLOCK(deferred_lock);

typedef void switchdev_deferred_func_t(struct net_device *dev,
				       const void *data);

struct switchdev_deferred_item {
	struct list_head list;
	struct net_device *dev;
	switchdev_deferred_func_t *func;
	unsigned long data[0];
};

static struct switchdev_deferred_item *switchdev_deferred_dequeue(void)
{
	struct switchdev_deferred_item *dfitem;

	spin_lock_bh(&deferred_lock);
	if (list_empty(&deferred)) {
		dfitem = NULL;
		goto unlock;
	}
	dfitem = list_first_entry(&deferred,
				  struct switchdev_deferred_item, list);
	list_del(&dfitem->list);
unlock:
	spin_unlock_bh(&deferred_lock);
	return dfitem;
}

/**
 *	switchdev_deferred_process - Process ops in deferred queue
 *
 *	Called to flush the ops currently queued in deferred ops queue.
 *	rtnl_lock must be held.
 */
void switchdev_deferred_process(void)
{
	struct switchdev_deferred_item *dfitem;

	ASSERT_RTNL();

	while ((dfitem = switchdev_deferred_dequeue())) {
		dfitem->func(dfitem->dev, dfitem->data);
		dev_put(dfitem->dev);
		kfree(dfitem);
	}
}
EXPORT_SYMBOL_GPL(switchdev_deferred_process);

static void switchdev_deferred_process_work(struct work_struct *work)
{
	rtnl_lock();
	switchdev_deferred_process();
	rtnl_unlock();
}

static DECLARE_WORK(deferred_process_work, switchdev_deferred_process_work);

static int switchdev_deferred_enqueue(struct net_device *dev,
				      const void *data, size_t data_len,
				      switchdev_deferred_func_t *func)
{
	struct switchdev_deferred_item *dfitem;

	dfitem = kmalloc(sizeof(*dfitem) + data_len, GFP_ATOMIC);
	if (!dfitem)
		return -ENOMEM;
	dfitem->dev = dev;
	dfitem->func = func;
	memcpy(dfitem->data, data, data_len);
	dev_hold(dev);
	spin_lock_bh(&deferred_lock);
	list_add_tail(&dfitem->list, &deferred);
	spin_unlock_bh(&deferred_lock);
	schedule_work(&deferred_process_work);
	return 0;
}

177 178 179 180 181 182 183 184 185 186 187 188
/**
 *	switchdev_port_attr_get - Get port attribute
 *
 *	@dev: port device
 *	@attr: attribute to get
 */
int switchdev_port_attr_get(struct net_device *dev, struct switchdev_attr *attr)
{
	const struct switchdev_ops *ops = dev->switchdev_ops;
	struct net_device *lower_dev;
	struct list_head *iter;
	struct switchdev_attr first = {
189
		.id = SWITCHDEV_ATTR_ID_UNDEFINED
190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208
	};
	int err = -EOPNOTSUPP;

	if (ops && ops->switchdev_port_attr_get)
		return ops->switchdev_port_attr_get(dev, attr);

	if (attr->flags & SWITCHDEV_F_NO_RECURSE)
		return err;

	/* Switch device port(s) may be stacked under
	 * bond/team/vlan dev, so recurse down to get attr on
	 * each port.  Return -ENODATA if attr values don't
	 * compare across ports.
	 */

	netdev_for_each_lower_dev(dev, lower_dev, iter) {
		err = switchdev_port_attr_get(lower_dev, attr);
		if (err)
			break;
209
		if (first.id == SWITCHDEV_ATTR_ID_UNDEFINED)
210 211 212 213 214 215 216 217 218 219
			first = *attr;
		else if (memcmp(&first, attr, sizeof(*attr)))
			return -ENODATA;
	}

	return err;
}
EXPORT_SYMBOL_GPL(switchdev_port_attr_get);

static int __switchdev_port_attr_set(struct net_device *dev,
220
				     const struct switchdev_attr *attr,
221
				     struct switchdev_trans *trans)
222 223 224 225 226 227
{
	const struct switchdev_ops *ops = dev->switchdev_ops;
	struct net_device *lower_dev;
	struct list_head *iter;
	int err = -EOPNOTSUPP;

228 229 230 231
	if (ops && ops->switchdev_port_attr_set) {
		err = ops->switchdev_port_attr_set(dev, attr, trans);
		goto done;
	}
232 233

	if (attr->flags & SWITCHDEV_F_NO_RECURSE)
234
		goto done;
235 236 237 238 239 240 241

	/* Switch device port(s) may be stacked under
	 * bond/team/vlan dev, so recurse down to set attr on
	 * each port.
	 */

	netdev_for_each_lower_dev(dev, lower_dev, iter) {
242
		err = __switchdev_port_attr_set(lower_dev, attr, trans);
243 244 245 246
		if (err)
			break;
	}

247 248 249 250
done:
	if (err == -EOPNOTSUPP && attr->flags & SWITCHDEV_F_SKIP_EOPNOTSUPP)
		err = 0;

251 252 253
	return err;
}

254 255
static int switchdev_port_attr_set_now(struct net_device *dev,
				       const struct switchdev_attr *attr)
256
{
257
	struct switchdev_trans trans;
258 259
	int err;

260 261
	switchdev_trans_init(&trans);

262 263 264 265 266 267 268
	/* Phase I: prepare for attr set. Driver/device should fail
	 * here if there are going to be issues in the commit phase,
	 * such as lack of resources or support.  The driver/device
	 * should reserve resources needed for the commit phase here,
	 * but should not commit the attr.
	 */

269
	trans.ph_prepare = true;
270
	err = __switchdev_port_attr_set(dev, attr, &trans);
271 272 273 274 275 276
	if (err) {
		/* Prepare phase failed: abort the transaction.  Any
		 * resources reserved in the prepare phase are
		 * released.
		 */

277
		if (err != -EOPNOTSUPP)
278
			switchdev_trans_items_destroy(&trans);
279 280 281 282 283 284 285 286 287

		return err;
	}

	/* Phase II: commit attr set.  This cannot fail as a fault
	 * of driver/device.  If it does, it's a bug in the driver/device
	 * because the driver said everythings was OK in phase I.
	 */

288
	trans.ph_prepare = false;
289
	err = __switchdev_port_attr_set(dev, attr, &trans);
290 291
	WARN(err, "%s: Commit of attribute (id=%d) failed.\n",
	     dev->name, attr->id);
292
	switchdev_trans_items_warn_destroy(dev, &trans);
293 294 295

	return err;
}
296 297 298 299 300 301 302 303 304 305 306

static void switchdev_port_attr_set_deferred(struct net_device *dev,
					     const void *data)
{
	const struct switchdev_attr *attr = data;
	int err;

	err = switchdev_port_attr_set_now(dev, attr);
	if (err && err != -EOPNOTSUPP)
		netdev_err(dev, "failed (err=%d) to set attribute (id=%d)\n",
			   err, attr->id);
307 308
	if (attr->complete)
		attr->complete(dev, err, attr->complete_priv);
309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338
}

static int switchdev_port_attr_set_defer(struct net_device *dev,
					 const struct switchdev_attr *attr)
{
	return switchdev_deferred_enqueue(dev, attr, sizeof(*attr),
					  switchdev_port_attr_set_deferred);
}

/**
 *	switchdev_port_attr_set - Set port attribute
 *
 *	@dev: port device
 *	@attr: attribute to set
 *
 *	Use a 2-phase prepare-commit transaction model to ensure
 *	system is not left in a partially updated state due to
 *	failure from driver/device.
 *
 *	rtnl_lock must be held and must not be in atomic section,
 *	in case SWITCHDEV_F_DEFER flag is not set.
 */
int switchdev_port_attr_set(struct net_device *dev,
			    const struct switchdev_attr *attr)
{
	if (attr->flags & SWITCHDEV_F_DEFER)
		return switchdev_port_attr_set_defer(dev, attr);
	ASSERT_RTNL();
	return switchdev_port_attr_set_now(dev, attr);
}
339 340
EXPORT_SYMBOL_GPL(switchdev_port_attr_set);

341 342 343 344 345
static size_t switchdev_obj_size(const struct switchdev_obj *obj)
{
	switch (obj->id) {
	case SWITCHDEV_OBJ_ID_PORT_VLAN:
		return sizeof(struct switchdev_obj_port_vlan);
E
Elad Raz 已提交
346 347
	case SWITCHDEV_OBJ_ID_PORT_MDB:
		return sizeof(struct switchdev_obj_port_mdb);
348 349
	case SWITCHDEV_OBJ_ID_HOST_MDB:
		return sizeof(struct switchdev_obj_port_mdb);
350 351 352 353 354 355
	default:
		BUG();
	}
	return 0;
}

356
static int __switchdev_port_obj_add(struct net_device *dev,
357
				    const struct switchdev_obj *obj,
358
				    struct switchdev_trans *trans)
359 360 361 362 363 364 365
{
	const struct switchdev_ops *ops = dev->switchdev_ops;
	struct net_device *lower_dev;
	struct list_head *iter;
	int err = -EOPNOTSUPP;

	if (ops && ops->switchdev_port_obj_add)
366
		return ops->switchdev_port_obj_add(dev, obj, trans);
367 368 369 370 371 372 373

	/* Switch device port(s) may be stacked under
	 * bond/team/vlan dev, so recurse down to add object on
	 * each port.
	 */

	netdev_for_each_lower_dev(dev, lower_dev, iter) {
374
		err = __switchdev_port_obj_add(lower_dev, obj, trans);
375 376 377 378 379 380 381
		if (err)
			break;
	}

	return err;
}

382 383
static int switchdev_port_obj_add_now(struct net_device *dev,
				      const struct switchdev_obj *obj)
384
{
385
	struct switchdev_trans trans;
386 387 388 389
	int err;

	ASSERT_RTNL();

390 391
	switchdev_trans_init(&trans);

392 393 394 395 396 397 398
	/* Phase I: prepare for obj add. Driver/device should fail
	 * here if there are going to be issues in the commit phase,
	 * such as lack of resources or support.  The driver/device
	 * should reserve resources needed for the commit phase here,
	 * but should not commit the obj.
	 */

399
	trans.ph_prepare = true;
400
	err = __switchdev_port_obj_add(dev, obj, &trans);
401 402 403 404 405 406
	if (err) {
		/* Prepare phase failed: abort the transaction.  Any
		 * resources reserved in the prepare phase are
		 * released.
		 */

407
		if (err != -EOPNOTSUPP)
408
			switchdev_trans_items_destroy(&trans);
409 410 411 412 413 414 415 416 417

		return err;
	}

	/* Phase II: commit obj add.  This cannot fail as a fault
	 * of driver/device.  If it does, it's a bug in the driver/device
	 * because the driver said everythings was OK in phase I.
	 */

418
	trans.ph_prepare = false;
419 420
	err = __switchdev_port_obj_add(dev, obj, &trans);
	WARN(err, "%s: Commit of object (id=%d) failed.\n", dev->name, obj->id);
421
	switchdev_trans_items_warn_destroy(dev, &trans);
422 423 424

	return err;
}
425 426 427 428 429 430 431 432 433 434 435

static void switchdev_port_obj_add_deferred(struct net_device *dev,
					    const void *data)
{
	const struct switchdev_obj *obj = data;
	int err;

	err = switchdev_port_obj_add_now(dev, obj);
	if (err && err != -EOPNOTSUPP)
		netdev_err(dev, "failed (err=%d) to add object (id=%d)\n",
			   err, obj->id);
436 437
	if (obj->complete)
		obj->complete(dev, err, obj->complete_priv);
438 439 440 441 442
}

static int switchdev_port_obj_add_defer(struct net_device *dev,
					const struct switchdev_obj *obj)
{
443
	return switchdev_deferred_enqueue(dev, obj, switchdev_obj_size(obj),
444 445
					  switchdev_port_obj_add_deferred);
}
446 447

/**
448
 *	switchdev_port_obj_add - Add port object
449 450
 *
 *	@dev: port device
451
 *	@id: object ID
452 453 454 455 456 457 458 459
 *	@obj: object to add
 *
 *	Use a 2-phase prepare-commit transaction model to ensure
 *	system is not left in a partially updated state due to
 *	failure from driver/device.
 *
 *	rtnl_lock must be held and must not be in atomic section,
 *	in case SWITCHDEV_F_DEFER flag is not set.
460
 */
461
int switchdev_port_obj_add(struct net_device *dev,
462
			   const struct switchdev_obj *obj)
463 464 465 466 467 468 469 470 471 472
{
	if (obj->flags & SWITCHDEV_F_DEFER)
		return switchdev_port_obj_add_defer(dev, obj);
	ASSERT_RTNL();
	return switchdev_port_obj_add_now(dev, obj);
}
EXPORT_SYMBOL_GPL(switchdev_port_obj_add);

static int switchdev_port_obj_del_now(struct net_device *dev,
				      const struct switchdev_obj *obj)
473 474 475 476 477 478 479
{
	const struct switchdev_ops *ops = dev->switchdev_ops;
	struct net_device *lower_dev;
	struct list_head *iter;
	int err = -EOPNOTSUPP;

	if (ops && ops->switchdev_port_obj_del)
480
		return ops->switchdev_port_obj_del(dev, obj);
481 482 483 484 485 486 487

	/* Switch device port(s) may be stacked under
	 * bond/team/vlan dev, so recurse down to delete object on
	 * each port.
	 */

	netdev_for_each_lower_dev(dev, lower_dev, iter) {
488
		err = switchdev_port_obj_del_now(lower_dev, obj);
489 490 491 492 493 494
		if (err)
			break;
	}

	return err;
}
495 496 497 498 499 500 501 502 503 504 505

static void switchdev_port_obj_del_deferred(struct net_device *dev,
					    const void *data)
{
	const struct switchdev_obj *obj = data;
	int err;

	err = switchdev_port_obj_del_now(dev, obj);
	if (err && err != -EOPNOTSUPP)
		netdev_err(dev, "failed (err=%d) to del object (id=%d)\n",
			   err, obj->id);
506 507
	if (obj->complete)
		obj->complete(dev, err, obj->complete_priv);
508 509 510 511 512
}

static int switchdev_port_obj_del_defer(struct net_device *dev,
					const struct switchdev_obj *obj)
{
513
	return switchdev_deferred_enqueue(dev, obj, switchdev_obj_size(obj),
514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534
					  switchdev_port_obj_del_deferred);
}

/**
 *	switchdev_port_obj_del - Delete port object
 *
 *	@dev: port device
 *	@id: object ID
 *	@obj: object to delete
 *
 *	rtnl_lock must be held and must not be in atomic section,
 *	in case SWITCHDEV_F_DEFER flag is not set.
 */
int switchdev_port_obj_del(struct net_device *dev,
			   const struct switchdev_obj *obj)
{
	if (obj->flags & SWITCHDEV_F_DEFER)
		return switchdev_port_obj_del_defer(dev, obj);
	ASSERT_RTNL();
	return switchdev_port_obj_del_now(dev, obj);
}
535 536
EXPORT_SYMBOL_GPL(switchdev_port_obj_del);

537
static ATOMIC_NOTIFIER_HEAD(switchdev_notif_chain);
538 539

/**
540
 *	register_switchdev_notifier - Register notifier
541 542
 *	@nb: notifier_block
 *
543
 *	Register switch device notifier.
544
 */
545
int register_switchdev_notifier(struct notifier_block *nb)
546
{
547
	return atomic_notifier_chain_register(&switchdev_notif_chain, nb);
548
}
549
EXPORT_SYMBOL_GPL(register_switchdev_notifier);
550 551

/**
552
 *	unregister_switchdev_notifier - Unregister notifier
553 554 555 556
 *	@nb: notifier_block
 *
 *	Unregister switch device notifier.
 */
557
int unregister_switchdev_notifier(struct notifier_block *nb)
558
{
559
	return atomic_notifier_chain_unregister(&switchdev_notif_chain, nb);
560
}
561
EXPORT_SYMBOL_GPL(unregister_switchdev_notifier);
562 563

/**
564
 *	call_switchdev_notifiers - Call notifiers
565 566 567 568
 *	@val: value passed unmodified to notifier function
 *	@dev: port device
 *	@info: notifier information data
 *
569
 *	Call all network notifier blocks.
570
 */
571 572
int call_switchdev_notifiers(unsigned long val, struct net_device *dev,
			     struct switchdev_notifier_info *info)
573 574
{
	info->dev = dev;
575
	return atomic_notifier_call_chain(&switchdev_notif_chain, val, info);
576
}
577
EXPORT_SYMBOL_GPL(call_switchdev_notifiers);
578

579 580
bool switchdev_port_same_parent_id(struct net_device *a,
				   struct net_device *b)
581 582
{
	struct switchdev_attr a_attr = {
583
		.orig_dev = a,
584
		.id = SWITCHDEV_ATTR_ID_PORT_PARENT_ID,
585 586
	};
	struct switchdev_attr b_attr = {
587
		.orig_dev = b,
588
		.id = SWITCHDEV_ATTR_ID_PORT_PARENT_ID,
589 590 591 592 593 594 595 596
	};

	if (switchdev_port_attr_get(a, &a_attr) ||
	    switchdev_port_attr_get(b, &b_attr))
		return false;

	return netdev_phys_item_id_same(&a_attr.u.ppid, &b_attr.u.ppid);
}
597
EXPORT_SYMBOL_GPL(switchdev_port_same_parent_id);