blob: 25dc67ef9d37084f55ff7a49a2daabee6556a42c [file] [log] [blame]
Jiri Pirko007f7902014-11-28 14:34:17 +01001/*
2 * net/switchdev/switchdev.c - Switch device API
Jiri Pirko7ea6eb32015-09-24 10:02:41 +02003 * Copyright (c) 2014-2015 Jiri Pirko <jiri@resnulli.us>
Scott Feldmanf8f21472015-03-09 13:59:09 -07004 * Copyright (c) 2014-2015 Scott Feldman <sfeldma@gmail.com>
Jiri Pirko007f7902014-11-28 14:34:17 +01005 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 */
11
12#include <linux/kernel.h>
13#include <linux/types.h>
14#include <linux/init.h>
Jiri Pirko03bf0c22015-01-15 23:49:36 +010015#include <linux/mutex.h>
16#include <linux/notifier.h>
Jiri Pirko007f7902014-11-28 14:34:17 +010017#include <linux/netdevice.h>
Jiri Pirko850d0cb2015-10-14 19:40:51 +020018#include <linux/etherdevice.h>
Scott Feldman47f83282015-05-10 09:47:56 -070019#include <linux/if_bridge.h>
Jiri Pirko7ea6eb32015-09-24 10:02:41 +020020#include <linux/list.h>
Jiri Pirko793f4012015-10-14 19:40:48 +020021#include <linux/workqueue.h>
Nikolay Aleksandrov87aaf2c2015-10-12 14:31:01 +020022#include <linux/if_vlan.h>
Ido Schimmel4f2c6ae2016-01-27 15:16:43 +010023#include <linux/rtnetlink.h>
Jiri Pirko007f7902014-11-28 14:34:17 +010024#include <net/switchdev.h>
25
26/**
Jiri Pirko7ea6eb32015-09-24 10:02:41 +020027 * switchdev_trans_item_enqueue - Enqueue data item to transaction queue
28 *
29 * @trans: transaction
30 * @data: pointer to data being queued
31 * @destructor: data destructor
32 * @tritem: transaction item being queued
33 *
34 * Enqeueue data item to transaction queue. tritem is typically placed in
35 * cointainter pointed at by data pointer. Destructor is called on
36 * transaction abort and after successful commit phase in case
37 * the caller did not dequeue the item before.
38 */
39void switchdev_trans_item_enqueue(struct switchdev_trans *trans,
40 void *data, void (*destructor)(void const *),
41 struct switchdev_trans_item *tritem)
42{
43 tritem->data = data;
44 tritem->destructor = destructor;
45 list_add_tail(&tritem->list, &trans->item_list);
46}
47EXPORT_SYMBOL_GPL(switchdev_trans_item_enqueue);
48
49static struct switchdev_trans_item *
50__switchdev_trans_item_dequeue(struct switchdev_trans *trans)
51{
52 struct switchdev_trans_item *tritem;
53
54 if (list_empty(&trans->item_list))
55 return NULL;
56 tritem = list_first_entry(&trans->item_list,
57 struct switchdev_trans_item, list);
58 list_del(&tritem->list);
59 return tritem;
60}
61
62/**
63 * switchdev_trans_item_dequeue - Dequeue data item from transaction queue
64 *
65 * @trans: transaction
66 */
67void *switchdev_trans_item_dequeue(struct switchdev_trans *trans)
68{
69 struct switchdev_trans_item *tritem;
70
71 tritem = __switchdev_trans_item_dequeue(trans);
72 BUG_ON(!tritem);
73 return tritem->data;
74}
75EXPORT_SYMBOL_GPL(switchdev_trans_item_dequeue);
76
77static void switchdev_trans_init(struct switchdev_trans *trans)
78{
79 INIT_LIST_HEAD(&trans->item_list);
80}
81
82static void switchdev_trans_items_destroy(struct switchdev_trans *trans)
83{
84 struct switchdev_trans_item *tritem;
85
86 while ((tritem = __switchdev_trans_item_dequeue(trans)))
87 tritem->destructor(tritem->data);
88}
89
90static void switchdev_trans_items_warn_destroy(struct net_device *dev,
91 struct switchdev_trans *trans)
92{
93 WARN(!list_empty(&trans->item_list), "%s: transaction item queue is not empty.\n",
94 dev->name);
95 switchdev_trans_items_destroy(trans);
96}
97
Jiri Pirko793f4012015-10-14 19:40:48 +020098static LIST_HEAD(deferred);
99static DEFINE_SPINLOCK(deferred_lock);
100
101typedef void switchdev_deferred_func_t(struct net_device *dev,
102 const void *data);
103
104struct switchdev_deferred_item {
105 struct list_head list;
106 struct net_device *dev;
107 switchdev_deferred_func_t *func;
108 unsigned long data[0];
109};
110
111static struct switchdev_deferred_item *switchdev_deferred_dequeue(void)
112{
113 struct switchdev_deferred_item *dfitem;
114
115 spin_lock_bh(&deferred_lock);
116 if (list_empty(&deferred)) {
117 dfitem = NULL;
118 goto unlock;
119 }
120 dfitem = list_first_entry(&deferred,
121 struct switchdev_deferred_item, list);
122 list_del(&dfitem->list);
123unlock:
124 spin_unlock_bh(&deferred_lock);
125 return dfitem;
126}
127
128/**
129 * switchdev_deferred_process - Process ops in deferred queue
130 *
131 * Called to flush the ops currently queued in deferred ops queue.
132 * rtnl_lock must be held.
133 */
134void switchdev_deferred_process(void)
135{
136 struct switchdev_deferred_item *dfitem;
137
138 ASSERT_RTNL();
139
140 while ((dfitem = switchdev_deferred_dequeue())) {
141 dfitem->func(dfitem->dev, dfitem->data);
142 dev_put(dfitem->dev);
143 kfree(dfitem);
144 }
145}
146EXPORT_SYMBOL_GPL(switchdev_deferred_process);
147
148static void switchdev_deferred_process_work(struct work_struct *work)
149{
150 rtnl_lock();
151 switchdev_deferred_process();
152 rtnl_unlock();
153}
154
155static DECLARE_WORK(deferred_process_work, switchdev_deferred_process_work);
156
157static int switchdev_deferred_enqueue(struct net_device *dev,
158 const void *data, size_t data_len,
159 switchdev_deferred_func_t *func)
160{
161 struct switchdev_deferred_item *dfitem;
162
163 dfitem = kmalloc(sizeof(*dfitem) + data_len, GFP_ATOMIC);
164 if (!dfitem)
165 return -ENOMEM;
166 dfitem->dev = dev;
167 dfitem->func = func;
168 memcpy(dfitem->data, data, data_len);
169 dev_hold(dev);
170 spin_lock_bh(&deferred_lock);
171 list_add_tail(&dfitem->list, &deferred);
172 spin_unlock_bh(&deferred_lock);
173 schedule_work(&deferred_process_work);
174 return 0;
175}
176
Jiri Pirko7ea6eb32015-09-24 10:02:41 +0200177/**
Scott Feldman30943332015-05-10 09:47:48 -0700178 * switchdev_port_attr_get - Get port attribute
179 *
180 * @dev: port device
181 * @attr: attribute to get
182 */
183int switchdev_port_attr_get(struct net_device *dev, struct switchdev_attr *attr)
184{
185 const struct switchdev_ops *ops = dev->switchdev_ops;
186 struct net_device *lower_dev;
187 struct list_head *iter;
188 struct switchdev_attr first = {
Jiri Pirko1f868392015-10-01 11:03:42 +0200189 .id = SWITCHDEV_ATTR_ID_UNDEFINED
Scott Feldman30943332015-05-10 09:47:48 -0700190 };
191 int err = -EOPNOTSUPP;
192
193 if (ops && ops->switchdev_port_attr_get)
194 return ops->switchdev_port_attr_get(dev, attr);
195
196 if (attr->flags & SWITCHDEV_F_NO_RECURSE)
197 return err;
198
199 /* Switch device port(s) may be stacked under
200 * bond/team/vlan dev, so recurse down to get attr on
201 * each port. Return -ENODATA if attr values don't
202 * compare across ports.
203 */
204
205 netdev_for_each_lower_dev(dev, lower_dev, iter) {
206 err = switchdev_port_attr_get(lower_dev, attr);
207 if (err)
208 break;
Jiri Pirko1f868392015-10-01 11:03:42 +0200209 if (first.id == SWITCHDEV_ATTR_ID_UNDEFINED)
Scott Feldman30943332015-05-10 09:47:48 -0700210 first = *attr;
211 else if (memcmp(&first, attr, sizeof(*attr)))
212 return -ENODATA;
213 }
214
215 return err;
216}
217EXPORT_SYMBOL_GPL(switchdev_port_attr_get);
218
219static int __switchdev_port_attr_set(struct net_device *dev,
Jiri Pirkof7fadf32015-10-14 19:40:49 +0200220 const struct switchdev_attr *attr,
Jiri Pirko7ea6eb32015-09-24 10:02:41 +0200221 struct switchdev_trans *trans)
Scott Feldman30943332015-05-10 09:47:48 -0700222{
223 const struct switchdev_ops *ops = dev->switchdev_ops;
224 struct net_device *lower_dev;
225 struct list_head *iter;
226 int err = -EOPNOTSUPP;
227
Jiri Pirko0c63d802015-11-03 17:40:53 +0100228 if (ops && ops->switchdev_port_attr_set) {
229 err = ops->switchdev_port_attr_set(dev, attr, trans);
230 goto done;
231 }
Scott Feldman30943332015-05-10 09:47:48 -0700232
233 if (attr->flags & SWITCHDEV_F_NO_RECURSE)
Scott Feldman464314e2015-10-08 19:23:18 -0700234 goto done;
Scott Feldman30943332015-05-10 09:47:48 -0700235
236 /* Switch device port(s) may be stacked under
237 * bond/team/vlan dev, so recurse down to set attr on
238 * each port.
239 */
240
241 netdev_for_each_lower_dev(dev, lower_dev, iter) {
Jiri Pirko7ea6eb32015-09-24 10:02:41 +0200242 err = __switchdev_port_attr_set(lower_dev, attr, trans);
Scott Feldman30943332015-05-10 09:47:48 -0700243 if (err)
244 break;
245 }
246
Scott Feldman464314e2015-10-08 19:23:18 -0700247done:
248 if (err == -EOPNOTSUPP && attr->flags & SWITCHDEV_F_SKIP_EOPNOTSUPP)
249 err = 0;
250
Scott Feldman30943332015-05-10 09:47:48 -0700251 return err;
252}
253
Jiri Pirko0bc05d52015-10-14 19:40:50 +0200254static int switchdev_port_attr_set_now(struct net_device *dev,
255 const struct switchdev_attr *attr)
Scott Feldman30943332015-05-10 09:47:48 -0700256{
Jiri Pirko7ea6eb32015-09-24 10:02:41 +0200257 struct switchdev_trans trans;
Scott Feldman30943332015-05-10 09:47:48 -0700258 int err;
259
Jiri Pirko7ea6eb32015-09-24 10:02:41 +0200260 switchdev_trans_init(&trans);
261
Scott Feldman30943332015-05-10 09:47:48 -0700262 /* Phase I: prepare for attr set. Driver/device should fail
263 * here if there are going to be issues in the commit phase,
264 * such as lack of resources or support. The driver/device
265 * should reserve resources needed for the commit phase here,
266 * but should not commit the attr.
267 */
268
Jiri Pirkof623ab72015-09-24 10:02:49 +0200269 trans.ph_prepare = true;
Jiri Pirko7ea6eb32015-09-24 10:02:41 +0200270 err = __switchdev_port_attr_set(dev, attr, &trans);
Scott Feldman30943332015-05-10 09:47:48 -0700271 if (err) {
272 /* Prepare phase failed: abort the transaction. Any
273 * resources reserved in the prepare phase are
274 * released.
275 */
276
Jiri Pirko9f6467c2015-09-24 10:02:47 +0200277 if (err != -EOPNOTSUPP)
Jiri Pirko7ea6eb32015-09-24 10:02:41 +0200278 switchdev_trans_items_destroy(&trans);
Scott Feldman30943332015-05-10 09:47:48 -0700279
280 return err;
281 }
282
283 /* Phase II: commit attr set. This cannot fail as a fault
284 * of driver/device. If it does, it's a bug in the driver/device
285 * because the driver said everythings was OK in phase I.
286 */
287
Jiri Pirkof623ab72015-09-24 10:02:49 +0200288 trans.ph_prepare = false;
Jiri Pirko7ea6eb32015-09-24 10:02:41 +0200289 err = __switchdev_port_attr_set(dev, attr, &trans);
Scott Feldmane9fdaec2015-06-11 11:20:42 -0700290 WARN(err, "%s: Commit of attribute (id=%d) failed.\n",
291 dev->name, attr->id);
Jiri Pirko7ea6eb32015-09-24 10:02:41 +0200292 switchdev_trans_items_warn_destroy(dev, &trans);
Scott Feldman30943332015-05-10 09:47:48 -0700293
294 return err;
295}
Jiri Pirko0bc05d52015-10-14 19:40:50 +0200296
297static void switchdev_port_attr_set_deferred(struct net_device *dev,
298 const void *data)
299{
300 const struct switchdev_attr *attr = data;
301 int err;
302
303 err = switchdev_port_attr_set_now(dev, attr);
304 if (err && err != -EOPNOTSUPP)
305 netdev_err(dev, "failed (err=%d) to set attribute (id=%d)\n",
306 err, attr->id);
Elad Raz7ceb2af2016-04-21 12:52:43 +0200307 if (attr->complete)
308 attr->complete(dev, err, attr->complete_priv);
Jiri Pirko0bc05d52015-10-14 19:40:50 +0200309}
310
311static int switchdev_port_attr_set_defer(struct net_device *dev,
312 const struct switchdev_attr *attr)
313{
314 return switchdev_deferred_enqueue(dev, attr, sizeof(*attr),
315 switchdev_port_attr_set_deferred);
316}
317
318/**
319 * switchdev_port_attr_set - Set port attribute
320 *
321 * @dev: port device
322 * @attr: attribute to set
323 *
324 * Use a 2-phase prepare-commit transaction model to ensure
325 * system is not left in a partially updated state due to
326 * failure from driver/device.
327 *
328 * rtnl_lock must be held and must not be in atomic section,
329 * in case SWITCHDEV_F_DEFER flag is not set.
330 */
331int switchdev_port_attr_set(struct net_device *dev,
332 const struct switchdev_attr *attr)
333{
334 if (attr->flags & SWITCHDEV_F_DEFER)
335 return switchdev_port_attr_set_defer(dev, attr);
336 ASSERT_RTNL();
337 return switchdev_port_attr_set_now(dev, attr);
338}
Scott Feldman30943332015-05-10 09:47:48 -0700339EXPORT_SYMBOL_GPL(switchdev_port_attr_set);
340
Scott Feldmane258d912015-10-28 23:17:31 -0700341static size_t switchdev_obj_size(const struct switchdev_obj *obj)
342{
343 switch (obj->id) {
344 case SWITCHDEV_OBJ_ID_PORT_VLAN:
345 return sizeof(struct switchdev_obj_port_vlan);
Scott Feldmane258d912015-10-28 23:17:31 -0700346 case SWITCHDEV_OBJ_ID_PORT_FDB:
347 return sizeof(struct switchdev_obj_port_fdb);
Elad Raz4d41e1252016-01-10 21:06:22 +0100348 case SWITCHDEV_OBJ_ID_PORT_MDB:
349 return sizeof(struct switchdev_obj_port_mdb);
Scott Feldmane258d912015-10-28 23:17:31 -0700350 default:
351 BUG();
352 }
353 return 0;
354}
355
Scott Feldman22c1f672015-05-12 23:03:51 -0700356static int __switchdev_port_obj_add(struct net_device *dev,
Jiri Pirko648b4a92015-10-01 11:03:45 +0200357 const struct switchdev_obj *obj,
Jiri Pirko7ea6eb32015-09-24 10:02:41 +0200358 struct switchdev_trans *trans)
Scott Feldman491d0f12015-05-10 09:47:52 -0700359{
360 const struct switchdev_ops *ops = dev->switchdev_ops;
361 struct net_device *lower_dev;
362 struct list_head *iter;
363 int err = -EOPNOTSUPP;
364
365 if (ops && ops->switchdev_port_obj_add)
Jiri Pirko9e8f4a52015-10-01 11:03:46 +0200366 return ops->switchdev_port_obj_add(dev, obj, trans);
Scott Feldman491d0f12015-05-10 09:47:52 -0700367
368 /* Switch device port(s) may be stacked under
369 * bond/team/vlan dev, so recurse down to add object on
370 * each port.
371 */
372
373 netdev_for_each_lower_dev(dev, lower_dev, iter) {
Jiri Pirko9e8f4a52015-10-01 11:03:46 +0200374 err = __switchdev_port_obj_add(lower_dev, obj, trans);
Scott Feldman491d0f12015-05-10 09:47:52 -0700375 if (err)
376 break;
377 }
378
379 return err;
380}
381
Jiri Pirko4d429c52015-10-14 19:40:52 +0200382static int switchdev_port_obj_add_now(struct net_device *dev,
383 const struct switchdev_obj *obj)
Scott Feldman491d0f12015-05-10 09:47:52 -0700384{
Jiri Pirko7ea6eb32015-09-24 10:02:41 +0200385 struct switchdev_trans trans;
Scott Feldman491d0f12015-05-10 09:47:52 -0700386 int err;
387
388 ASSERT_RTNL();
389
Jiri Pirko7ea6eb32015-09-24 10:02:41 +0200390 switchdev_trans_init(&trans);
391
Scott Feldman491d0f12015-05-10 09:47:52 -0700392 /* Phase I: prepare for obj add. Driver/device should fail
393 * here if there are going to be issues in the commit phase,
394 * such as lack of resources or support. The driver/device
395 * should reserve resources needed for the commit phase here,
396 * but should not commit the obj.
397 */
398
Jiri Pirkof623ab72015-09-24 10:02:49 +0200399 trans.ph_prepare = true;
Jiri Pirko9e8f4a52015-10-01 11:03:46 +0200400 err = __switchdev_port_obj_add(dev, obj, &trans);
Scott Feldman491d0f12015-05-10 09:47:52 -0700401 if (err) {
402 /* Prepare phase failed: abort the transaction. Any
403 * resources reserved in the prepare phase are
404 * released.
405 */
406
Jiri Pirko9f6467c2015-09-24 10:02:47 +0200407 if (err != -EOPNOTSUPP)
Jiri Pirko7ea6eb32015-09-24 10:02:41 +0200408 switchdev_trans_items_destroy(&trans);
Scott Feldman491d0f12015-05-10 09:47:52 -0700409
410 return err;
411 }
412
413 /* Phase II: commit obj add. This cannot fail as a fault
414 * of driver/device. If it does, it's a bug in the driver/device
415 * because the driver said everythings was OK in phase I.
416 */
417
Jiri Pirkof623ab72015-09-24 10:02:49 +0200418 trans.ph_prepare = false;
Jiri Pirko9e8f4a52015-10-01 11:03:46 +0200419 err = __switchdev_port_obj_add(dev, obj, &trans);
420 WARN(err, "%s: Commit of object (id=%d) failed.\n", dev->name, obj->id);
Jiri Pirko7ea6eb32015-09-24 10:02:41 +0200421 switchdev_trans_items_warn_destroy(dev, &trans);
Scott Feldman491d0f12015-05-10 09:47:52 -0700422
423 return err;
424}
Jiri Pirko4d429c52015-10-14 19:40:52 +0200425
426static void switchdev_port_obj_add_deferred(struct net_device *dev,
427 const void *data)
428{
429 const struct switchdev_obj *obj = data;
430 int err;
431
432 err = switchdev_port_obj_add_now(dev, obj);
433 if (err && err != -EOPNOTSUPP)
434 netdev_err(dev, "failed (err=%d) to add object (id=%d)\n",
435 err, obj->id);
Elad Raz7ceb2af2016-04-21 12:52:43 +0200436 if (obj->complete)
437 obj->complete(dev, err, obj->complete_priv);
Jiri Pirko4d429c52015-10-14 19:40:52 +0200438}
439
440static int switchdev_port_obj_add_defer(struct net_device *dev,
441 const struct switchdev_obj *obj)
442{
Scott Feldmane258d912015-10-28 23:17:31 -0700443 return switchdev_deferred_enqueue(dev, obj, switchdev_obj_size(obj),
Jiri Pirko4d429c52015-10-14 19:40:52 +0200444 switchdev_port_obj_add_deferred);
445}
Scott Feldman491d0f12015-05-10 09:47:52 -0700446
447/**
Jiri Pirko4d429c52015-10-14 19:40:52 +0200448 * switchdev_port_obj_add - Add port object
Scott Feldman491d0f12015-05-10 09:47:52 -0700449 *
450 * @dev: port device
Vivien Didelotab069002015-09-29 12:07:17 -0400451 * @id: object ID
Jiri Pirko4d429c52015-10-14 19:40:52 +0200452 * @obj: object to add
453 *
454 * Use a 2-phase prepare-commit transaction model to ensure
455 * system is not left in a partially updated state due to
456 * failure from driver/device.
457 *
458 * rtnl_lock must be held and must not be in atomic section,
459 * in case SWITCHDEV_F_DEFER flag is not set.
Scott Feldman491d0f12015-05-10 09:47:52 -0700460 */
Jiri Pirko4d429c52015-10-14 19:40:52 +0200461int switchdev_port_obj_add(struct net_device *dev,
Jiri Pirko648b4a92015-10-01 11:03:45 +0200462 const struct switchdev_obj *obj)
Scott Feldman491d0f12015-05-10 09:47:52 -0700463{
Jiri Pirko4d429c52015-10-14 19:40:52 +0200464 if (obj->flags & SWITCHDEV_F_DEFER)
465 return switchdev_port_obj_add_defer(dev, obj);
466 ASSERT_RTNL();
467 return switchdev_port_obj_add_now(dev, obj);
468}
469EXPORT_SYMBOL_GPL(switchdev_port_obj_add);
470
471static int switchdev_port_obj_del_now(struct net_device *dev,
472 const struct switchdev_obj *obj)
473{
Scott Feldman491d0f12015-05-10 09:47:52 -0700474 const struct switchdev_ops *ops = dev->switchdev_ops;
475 struct net_device *lower_dev;
476 struct list_head *iter;
477 int err = -EOPNOTSUPP;
478
479 if (ops && ops->switchdev_port_obj_del)
Jiri Pirko9e8f4a52015-10-01 11:03:46 +0200480 return ops->switchdev_port_obj_del(dev, obj);
Scott Feldman491d0f12015-05-10 09:47:52 -0700481
482 /* Switch device port(s) may be stacked under
483 * bond/team/vlan dev, so recurse down to delete object on
484 * each port.
485 */
486
487 netdev_for_each_lower_dev(dev, lower_dev, iter) {
Jiri Pirko4d429c52015-10-14 19:40:52 +0200488 err = switchdev_port_obj_del_now(lower_dev, obj);
Scott Feldman491d0f12015-05-10 09:47:52 -0700489 if (err)
490 break;
491 }
492
493 return err;
494}
Jiri Pirko4d429c52015-10-14 19:40:52 +0200495
496static void switchdev_port_obj_del_deferred(struct net_device *dev,
497 const void *data)
498{
499 const struct switchdev_obj *obj = data;
500 int err;
501
502 err = switchdev_port_obj_del_now(dev, obj);
503 if (err && err != -EOPNOTSUPP)
504 netdev_err(dev, "failed (err=%d) to del object (id=%d)\n",
505 err, obj->id);
Elad Raz7ceb2af2016-04-21 12:52:43 +0200506 if (obj->complete)
507 obj->complete(dev, err, obj->complete_priv);
Jiri Pirko4d429c52015-10-14 19:40:52 +0200508}
509
510static int switchdev_port_obj_del_defer(struct net_device *dev,
511 const struct switchdev_obj *obj)
512{
Scott Feldmane258d912015-10-28 23:17:31 -0700513 return switchdev_deferred_enqueue(dev, obj, switchdev_obj_size(obj),
Jiri Pirko4d429c52015-10-14 19:40:52 +0200514 switchdev_port_obj_del_deferred);
515}
516
517/**
518 * switchdev_port_obj_del - Delete port object
519 *
520 * @dev: port device
521 * @id: object ID
522 * @obj: object to delete
523 *
524 * rtnl_lock must be held and must not be in atomic section,
525 * in case SWITCHDEV_F_DEFER flag is not set.
526 */
527int switchdev_port_obj_del(struct net_device *dev,
528 const struct switchdev_obj *obj)
529{
530 if (obj->flags & SWITCHDEV_F_DEFER)
531 return switchdev_port_obj_del_defer(dev, obj);
532 ASSERT_RTNL();
533 return switchdev_port_obj_del_now(dev, obj);
534}
Scott Feldman491d0f12015-05-10 09:47:52 -0700535EXPORT_SYMBOL_GPL(switchdev_port_obj_del);
536
Samudrala, Sridhar45d41222015-05-13 21:55:43 -0700537/**
538 * switchdev_port_obj_dump - Dump port objects
539 *
540 * @dev: port device
Vivien Didelot25f07ad2015-09-29 12:07:16 -0400541 * @id: object ID
Samudrala, Sridhar45d41222015-05-13 21:55:43 -0700542 * @obj: object to dump
Vivien Didelot25f07ad2015-09-29 12:07:16 -0400543 * @cb: function to call with a filled object
Jiri Pirko771acac2015-10-14 19:40:55 +0200544 *
545 * rtnl_lock must be held.
Samudrala, Sridhar45d41222015-05-13 21:55:43 -0700546 */
Jiri Pirko9e8f4a52015-10-01 11:03:46 +0200547int switchdev_port_obj_dump(struct net_device *dev, struct switchdev_obj *obj,
Jiri Pirko648b4a92015-10-01 11:03:45 +0200548 switchdev_obj_dump_cb_t *cb)
Samudrala, Sridhar45d41222015-05-13 21:55:43 -0700549{
550 const struct switchdev_ops *ops = dev->switchdev_ops;
551 struct net_device *lower_dev;
552 struct list_head *iter;
553 int err = -EOPNOTSUPP;
554
Jiri Pirko771acac2015-10-14 19:40:55 +0200555 ASSERT_RTNL();
556
Samudrala, Sridhar45d41222015-05-13 21:55:43 -0700557 if (ops && ops->switchdev_port_obj_dump)
Jiri Pirko9e8f4a52015-10-01 11:03:46 +0200558 return ops->switchdev_port_obj_dump(dev, obj, cb);
Samudrala, Sridhar45d41222015-05-13 21:55:43 -0700559
560 /* Switch device port(s) may be stacked under
561 * bond/team/vlan dev, so recurse down to dump objects on
562 * first port at bottom of stack.
563 */
564
565 netdev_for_each_lower_dev(dev, lower_dev, iter) {
Jiri Pirko9e8f4a52015-10-01 11:03:46 +0200566 err = switchdev_port_obj_dump(lower_dev, obj, cb);
Samudrala, Sridhar45d41222015-05-13 21:55:43 -0700567 break;
568 }
569
570 return err;
571}
572EXPORT_SYMBOL_GPL(switchdev_port_obj_dump);
573
Arkadi Sharshevskyff5cf102017-06-08 08:44:13 +0200574static ATOMIC_NOTIFIER_HEAD(switchdev_notif_chain);
Jiri Pirko03bf0c22015-01-15 23:49:36 +0100575
576/**
Jiri Pirkoebb9a032015-05-10 09:47:46 -0700577 * register_switchdev_notifier - Register notifier
Jiri Pirko03bf0c22015-01-15 23:49:36 +0100578 * @nb: notifier_block
579 *
Arkadi Sharshevskyff5cf102017-06-08 08:44:13 +0200580 * Register switch device notifier.
Jiri Pirko03bf0c22015-01-15 23:49:36 +0100581 */
Jiri Pirkoebb9a032015-05-10 09:47:46 -0700582int register_switchdev_notifier(struct notifier_block *nb)
Jiri Pirko03bf0c22015-01-15 23:49:36 +0100583{
Arkadi Sharshevskyff5cf102017-06-08 08:44:13 +0200584 return atomic_notifier_chain_register(&switchdev_notif_chain, nb);
Jiri Pirko03bf0c22015-01-15 23:49:36 +0100585}
Jiri Pirkoebb9a032015-05-10 09:47:46 -0700586EXPORT_SYMBOL_GPL(register_switchdev_notifier);
Jiri Pirko03bf0c22015-01-15 23:49:36 +0100587
588/**
Jiri Pirkoebb9a032015-05-10 09:47:46 -0700589 * unregister_switchdev_notifier - Unregister notifier
Jiri Pirko03bf0c22015-01-15 23:49:36 +0100590 * @nb: notifier_block
591 *
592 * Unregister switch device notifier.
Jiri Pirko03bf0c22015-01-15 23:49:36 +0100593 */
Jiri Pirkoebb9a032015-05-10 09:47:46 -0700594int unregister_switchdev_notifier(struct notifier_block *nb)
Jiri Pirko03bf0c22015-01-15 23:49:36 +0100595{
Arkadi Sharshevskyff5cf102017-06-08 08:44:13 +0200596 return atomic_notifier_chain_unregister(&switchdev_notif_chain, nb);
Jiri Pirko03bf0c22015-01-15 23:49:36 +0100597}
Jiri Pirkoebb9a032015-05-10 09:47:46 -0700598EXPORT_SYMBOL_GPL(unregister_switchdev_notifier);
Jiri Pirko03bf0c22015-01-15 23:49:36 +0100599
600/**
Jiri Pirkoebb9a032015-05-10 09:47:46 -0700601 * call_switchdev_notifiers - Call notifiers
Jiri Pirko03bf0c22015-01-15 23:49:36 +0100602 * @val: value passed unmodified to notifier function
603 * @dev: port device
604 * @info: notifier information data
605 *
Arkadi Sharshevskyff5cf102017-06-08 08:44:13 +0200606 * Call all network notifier blocks.
Jiri Pirko03bf0c22015-01-15 23:49:36 +0100607 */
Jiri Pirkoebb9a032015-05-10 09:47:46 -0700608int call_switchdev_notifiers(unsigned long val, struct net_device *dev,
609 struct switchdev_notifier_info *info)
Jiri Pirko03bf0c22015-01-15 23:49:36 +0100610{
Jiri Pirko03bf0c22015-01-15 23:49:36 +0100611 info->dev = dev;
Arkadi Sharshevskyff5cf102017-06-08 08:44:13 +0200612 return atomic_notifier_call_chain(&switchdev_notif_chain, val, info);
Jiri Pirko03bf0c22015-01-15 23:49:36 +0100613}
Jiri Pirkoebb9a032015-05-10 09:47:46 -0700614EXPORT_SYMBOL_GPL(call_switchdev_notifiers);
Roopa Prabhu8a44dbb2015-01-29 22:40:13 -0800615
Scott Feldman7d4f8d82015-06-22 00:27:17 -0700616struct switchdev_vlan_dump {
Jiri Pirko8f24f302015-10-01 11:03:43 +0200617 struct switchdev_obj_port_vlan vlan;
Scott Feldman7d4f8d82015-06-22 00:27:17 -0700618 struct sk_buff *skb;
619 u32 filter_mask;
620 u16 flags;
621 u16 begin;
622 u16 end;
623};
624
Vivien Didelote23b0022015-09-29 12:07:13 -0400625static int switchdev_port_vlan_dump_put(struct switchdev_vlan_dump *dump)
Scott Feldman7d4f8d82015-06-22 00:27:17 -0700626{
627 struct bridge_vlan_info vinfo;
628
629 vinfo.flags = dump->flags;
630
631 if (dump->begin == 0 && dump->end == 0) {
632 return 0;
633 } else if (dump->begin == dump->end) {
634 vinfo.vid = dump->begin;
635 if (nla_put(dump->skb, IFLA_BRIDGE_VLAN_INFO,
636 sizeof(vinfo), &vinfo))
637 return -EMSGSIZE;
638 } else {
639 vinfo.vid = dump->begin;
640 vinfo.flags |= BRIDGE_VLAN_INFO_RANGE_BEGIN;
641 if (nla_put(dump->skb, IFLA_BRIDGE_VLAN_INFO,
642 sizeof(vinfo), &vinfo))
643 return -EMSGSIZE;
644 vinfo.vid = dump->end;
645 vinfo.flags &= ~BRIDGE_VLAN_INFO_RANGE_BEGIN;
646 vinfo.flags |= BRIDGE_VLAN_INFO_RANGE_END;
647 if (nla_put(dump->skb, IFLA_BRIDGE_VLAN_INFO,
648 sizeof(vinfo), &vinfo))
649 return -EMSGSIZE;
650 }
651
652 return 0;
653}
654
Jiri Pirko648b4a92015-10-01 11:03:45 +0200655static int switchdev_port_vlan_dump_cb(struct switchdev_obj *obj)
Scott Feldman7d4f8d82015-06-22 00:27:17 -0700656{
Jiri Pirko648b4a92015-10-01 11:03:45 +0200657 struct switchdev_obj_port_vlan *vlan = SWITCHDEV_OBJ_PORT_VLAN(obj);
Scott Feldman7d4f8d82015-06-22 00:27:17 -0700658 struct switchdev_vlan_dump *dump =
Vivien Didelot25f07ad2015-09-29 12:07:16 -0400659 container_of(vlan, struct switchdev_vlan_dump, vlan);
Scott Feldman7d4f8d82015-06-22 00:27:17 -0700660 int err = 0;
661
662 if (vlan->vid_begin > vlan->vid_end)
663 return -EINVAL;
664
665 if (dump->filter_mask & RTEXT_FILTER_BRVLAN) {
666 dump->flags = vlan->flags;
667 for (dump->begin = dump->end = vlan->vid_begin;
668 dump->begin <= vlan->vid_end;
669 dump->begin++, dump->end++) {
Vivien Didelote23b0022015-09-29 12:07:13 -0400670 err = switchdev_port_vlan_dump_put(dump);
Scott Feldman7d4f8d82015-06-22 00:27:17 -0700671 if (err)
672 return err;
673 }
674 } else if (dump->filter_mask & RTEXT_FILTER_BRVLAN_COMPRESSED) {
675 if (dump->begin > vlan->vid_begin &&
676 dump->begin >= vlan->vid_end) {
677 if ((dump->begin - 1) == vlan->vid_end &&
678 dump->flags == vlan->flags) {
679 /* prepend */
680 dump->begin = vlan->vid_begin;
681 } else {
Vivien Didelote23b0022015-09-29 12:07:13 -0400682 err = switchdev_port_vlan_dump_put(dump);
Scott Feldman7d4f8d82015-06-22 00:27:17 -0700683 dump->flags = vlan->flags;
684 dump->begin = vlan->vid_begin;
685 dump->end = vlan->vid_end;
686 }
687 } else if (dump->end <= vlan->vid_begin &&
688 dump->end < vlan->vid_end) {
689 if ((dump->end + 1) == vlan->vid_begin &&
690 dump->flags == vlan->flags) {
691 /* append */
692 dump->end = vlan->vid_end;
693 } else {
Vivien Didelote23b0022015-09-29 12:07:13 -0400694 err = switchdev_port_vlan_dump_put(dump);
Scott Feldman7d4f8d82015-06-22 00:27:17 -0700695 dump->flags = vlan->flags;
696 dump->begin = vlan->vid_begin;
697 dump->end = vlan->vid_end;
698 }
699 } else {
700 err = -EINVAL;
701 }
702 }
703
704 return err;
705}
706
707static int switchdev_port_vlan_fill(struct sk_buff *skb, struct net_device *dev,
708 u32 filter_mask)
709{
710 struct switchdev_vlan_dump dump = {
Ido Schimmel6ff64f62015-12-15 16:03:35 +0100711 .vlan.obj.orig_dev = dev,
Jiri Pirko9e8f4a52015-10-01 11:03:46 +0200712 .vlan.obj.id = SWITCHDEV_OBJ_ID_PORT_VLAN,
Scott Feldman7d4f8d82015-06-22 00:27:17 -0700713 .skb = skb,
714 .filter_mask = filter_mask,
715 };
716 int err = 0;
717
718 if ((filter_mask & RTEXT_FILTER_BRVLAN) ||
719 (filter_mask & RTEXT_FILTER_BRVLAN_COMPRESSED)) {
Jiri Pirko9e8f4a52015-10-01 11:03:46 +0200720 err = switchdev_port_obj_dump(dev, &dump.vlan.obj,
Vivien Didelot25f07ad2015-09-29 12:07:16 -0400721 switchdev_port_vlan_dump_cb);
Scott Feldman7d4f8d82015-06-22 00:27:17 -0700722 if (err)
723 goto err_out;
724 if (filter_mask & RTEXT_FILTER_BRVLAN_COMPRESSED)
725 /* last one */
Vivien Didelote23b0022015-09-29 12:07:13 -0400726 err = switchdev_port_vlan_dump_put(&dump);
Scott Feldman7d4f8d82015-06-22 00:27:17 -0700727 }
728
729err_out:
730 return err == -EOPNOTSUPP ? 0 : err;
731}
732
Scott Feldman8793d0a2015-05-10 09:48:04 -0700733/**
734 * switchdev_port_bridge_getlink - Get bridge port attributes
735 *
736 * @dev: port device
737 *
738 * Called for SELF on rtnl_bridge_getlink to get bridge port
739 * attributes.
740 */
741int switchdev_port_bridge_getlink(struct sk_buff *skb, u32 pid, u32 seq,
742 struct net_device *dev, u32 filter_mask,
743 int nlflags)
744{
745 struct switchdev_attr attr = {
Ido Schimmel6ff64f62015-12-15 16:03:35 +0100746 .orig_dev = dev,
Jiri Pirko1f868392015-10-01 11:03:42 +0200747 .id = SWITCHDEV_ATTR_ID_PORT_BRIDGE_FLAGS,
Scott Feldman8793d0a2015-05-10 09:48:04 -0700748 };
749 u16 mode = BRIDGE_MODE_UNDEF;
Ido Schimmel741af002015-10-28 10:16:54 +0100750 u32 mask = BR_LEARNING | BR_LEARNING_SYNC | BR_FLOOD;
Scott Feldman8793d0a2015-05-10 09:48:04 -0700751 int err;
752
Ido Schimmel97c24292016-10-18 18:50:23 +0200753 if (!netif_is_bridge_port(dev))
754 return -EOPNOTSUPP;
755
Scott Feldman8793d0a2015-05-10 09:48:04 -0700756 err = switchdev_port_attr_get(dev, &attr);
Vivien Didelot5c8079d2015-06-23 10:26:04 -0400757 if (err && err != -EOPNOTSUPP)
Scott Feldman8793d0a2015-05-10 09:48:04 -0700758 return err;
759
760 return ndo_dflt_bridge_getlink(skb, pid, seq, dev, mode,
Scott Feldman7d4f8d82015-06-22 00:27:17 -0700761 attr.u.brport_flags, mask, nlflags,
762 filter_mask, switchdev_port_vlan_fill);
Scott Feldman8793d0a2015-05-10 09:48:04 -0700763}
764EXPORT_SYMBOL_GPL(switchdev_port_bridge_getlink);
765
Scott Feldman47f83282015-05-10 09:47:56 -0700766static int switchdev_port_br_setflag(struct net_device *dev,
767 struct nlattr *nlattr,
768 unsigned long brport_flag)
769{
770 struct switchdev_attr attr = {
Ido Schimmel6ff64f62015-12-15 16:03:35 +0100771 .orig_dev = dev,
Jiri Pirko1f868392015-10-01 11:03:42 +0200772 .id = SWITCHDEV_ATTR_ID_PORT_BRIDGE_FLAGS,
Scott Feldman47f83282015-05-10 09:47:56 -0700773 };
774 u8 flag = nla_get_u8(nlattr);
775 int err;
776
777 err = switchdev_port_attr_get(dev, &attr);
778 if (err)
779 return err;
780
781 if (flag)
Scott Feldman42275bd2015-05-13 11:16:50 -0700782 attr.u.brport_flags |= brport_flag;
Scott Feldman47f83282015-05-10 09:47:56 -0700783 else
Scott Feldman42275bd2015-05-13 11:16:50 -0700784 attr.u.brport_flags &= ~brport_flag;
Scott Feldman47f83282015-05-10 09:47:56 -0700785
786 return switchdev_port_attr_set(dev, &attr);
787}
788
789static const struct nla_policy
790switchdev_port_bridge_policy[IFLA_BRPORT_MAX + 1] = {
791 [IFLA_BRPORT_STATE] = { .type = NLA_U8 },
792 [IFLA_BRPORT_COST] = { .type = NLA_U32 },
793 [IFLA_BRPORT_PRIORITY] = { .type = NLA_U16 },
794 [IFLA_BRPORT_MODE] = { .type = NLA_U8 },
795 [IFLA_BRPORT_GUARD] = { .type = NLA_U8 },
796 [IFLA_BRPORT_PROTECT] = { .type = NLA_U8 },
797 [IFLA_BRPORT_FAST_LEAVE] = { .type = NLA_U8 },
798 [IFLA_BRPORT_LEARNING] = { .type = NLA_U8 },
799 [IFLA_BRPORT_LEARNING_SYNC] = { .type = NLA_U8 },
800 [IFLA_BRPORT_UNICAST_FLOOD] = { .type = NLA_U8 },
801};
802
803static int switchdev_port_br_setlink_protinfo(struct net_device *dev,
804 struct nlattr *protinfo)
805{
806 struct nlattr *attr;
807 int rem;
808 int err;
809
810 err = nla_validate_nested(protinfo, IFLA_BRPORT_MAX,
Johannes Bergfceb6432017-04-12 14:34:07 +0200811 switchdev_port_bridge_policy, NULL);
Scott Feldman47f83282015-05-10 09:47:56 -0700812 if (err)
813 return err;
814
815 nla_for_each_nested(attr, protinfo, rem) {
816 switch (nla_type(attr)) {
817 case IFLA_BRPORT_LEARNING:
818 err = switchdev_port_br_setflag(dev, attr,
819 BR_LEARNING);
820 break;
821 case IFLA_BRPORT_LEARNING_SYNC:
822 err = switchdev_port_br_setflag(dev, attr,
823 BR_LEARNING_SYNC);
824 break;
Ido Schimmel741af002015-10-28 10:16:54 +0100825 case IFLA_BRPORT_UNICAST_FLOOD:
826 err = switchdev_port_br_setflag(dev, attr, BR_FLOOD);
827 break;
Scott Feldman47f83282015-05-10 09:47:56 -0700828 default:
829 err = -EOPNOTSUPP;
830 break;
831 }
832 if (err)
833 return err;
834 }
835
836 return 0;
837}
838
839static int switchdev_port_br_afspec(struct net_device *dev,
840 struct nlattr *afspec,
841 int (*f)(struct net_device *dev,
Jiri Pirko648b4a92015-10-01 11:03:45 +0200842 const struct switchdev_obj *obj))
Scott Feldman47f83282015-05-10 09:47:56 -0700843{
844 struct nlattr *attr;
845 struct bridge_vlan_info *vinfo;
Jiri Pirko9e8f4a52015-10-01 11:03:46 +0200846 struct switchdev_obj_port_vlan vlan = {
Ido Schimmel6ff64f62015-12-15 16:03:35 +0100847 .obj.orig_dev = dev,
Jiri Pirko9e8f4a52015-10-01 11:03:46 +0200848 .obj.id = SWITCHDEV_OBJ_ID_PORT_VLAN,
849 };
Scott Feldman47f83282015-05-10 09:47:56 -0700850 int rem;
851 int err;
852
853 nla_for_each_nested(attr, afspec, rem) {
854 if (nla_type(attr) != IFLA_BRIDGE_VLAN_INFO)
855 continue;
856 if (nla_len(attr) != sizeof(struct bridge_vlan_info))
857 return -EINVAL;
858 vinfo = nla_data(attr);
Nikolay Aleksandrov87aaf2c2015-10-12 14:31:01 +0200859 if (!vinfo->vid || vinfo->vid >= VLAN_VID_MASK)
860 return -EINVAL;
Vivien Didelotab069002015-09-29 12:07:17 -0400861 vlan.flags = vinfo->flags;
Scott Feldman47f83282015-05-10 09:47:56 -0700862 if (vinfo->flags & BRIDGE_VLAN_INFO_RANGE_BEGIN) {
Vivien Didelotab069002015-09-29 12:07:17 -0400863 if (vlan.vid_begin)
Scott Feldman47f83282015-05-10 09:47:56 -0700864 return -EINVAL;
Vivien Didelotab069002015-09-29 12:07:17 -0400865 vlan.vid_begin = vinfo->vid;
Nikolay Aleksandrovcc02aa82015-10-12 14:01:39 +0200866 /* don't allow range of pvids */
867 if (vlan.flags & BRIDGE_VLAN_INFO_PVID)
868 return -EINVAL;
Scott Feldman47f83282015-05-10 09:47:56 -0700869 } else if (vinfo->flags & BRIDGE_VLAN_INFO_RANGE_END) {
Vivien Didelotab069002015-09-29 12:07:17 -0400870 if (!vlan.vid_begin)
Scott Feldman47f83282015-05-10 09:47:56 -0700871 return -EINVAL;
Vivien Didelotab069002015-09-29 12:07:17 -0400872 vlan.vid_end = vinfo->vid;
873 if (vlan.vid_end <= vlan.vid_begin)
Scott Feldman47f83282015-05-10 09:47:56 -0700874 return -EINVAL;
Jiri Pirko9e8f4a52015-10-01 11:03:46 +0200875 err = f(dev, &vlan.obj);
Scott Feldman47f83282015-05-10 09:47:56 -0700876 if (err)
877 return err;
Scott Feldman3a7bde52015-10-28 23:17:30 -0700878 vlan.vid_begin = 0;
Scott Feldman47f83282015-05-10 09:47:56 -0700879 } else {
Vivien Didelotab069002015-09-29 12:07:17 -0400880 if (vlan.vid_begin)
Scott Feldman47f83282015-05-10 09:47:56 -0700881 return -EINVAL;
Vivien Didelotab069002015-09-29 12:07:17 -0400882 vlan.vid_begin = vinfo->vid;
883 vlan.vid_end = vinfo->vid;
Jiri Pirko9e8f4a52015-10-01 11:03:46 +0200884 err = f(dev, &vlan.obj);
Scott Feldman47f83282015-05-10 09:47:56 -0700885 if (err)
886 return err;
Scott Feldman3a7bde52015-10-28 23:17:30 -0700887 vlan.vid_begin = 0;
Scott Feldman47f83282015-05-10 09:47:56 -0700888 }
889 }
890
891 return 0;
892}
893
Roopa Prabhu8a44dbb2015-01-29 22:40:13 -0800894/**
Scott Feldman47f83282015-05-10 09:47:56 -0700895 * switchdev_port_bridge_setlink - Set bridge port attributes
Roopa Prabhu8a44dbb2015-01-29 22:40:13 -0800896 *
897 * @dev: port device
Scott Feldman47f83282015-05-10 09:47:56 -0700898 * @nlh: netlink header
899 * @flags: netlink flags
Roopa Prabhu8a44dbb2015-01-29 22:40:13 -0800900 *
Scott Feldman47f83282015-05-10 09:47:56 -0700901 * Called for SELF on rtnl_bridge_setlink to set bridge port
902 * attributes.
Roopa Prabhu8a44dbb2015-01-29 22:40:13 -0800903 */
Jiri Pirkoebb9a032015-05-10 09:47:46 -0700904int switchdev_port_bridge_setlink(struct net_device *dev,
905 struct nlmsghdr *nlh, u16 flags)
Roopa Prabhu8a44dbb2015-01-29 22:40:13 -0800906{
Scott Feldman47f83282015-05-10 09:47:56 -0700907 struct nlattr *protinfo;
908 struct nlattr *afspec;
909 int err = 0;
Roopa Prabhu8a44dbb2015-01-29 22:40:13 -0800910
Ido Schimmel97c24292016-10-18 18:50:23 +0200911 if (!netif_is_bridge_port(dev))
912 return -EOPNOTSUPP;
913
Scott Feldman47f83282015-05-10 09:47:56 -0700914 protinfo = nlmsg_find_attr(nlh, sizeof(struct ifinfomsg),
915 IFLA_PROTINFO);
916 if (protinfo) {
917 err = switchdev_port_br_setlink_protinfo(dev, protinfo);
918 if (err)
919 return err;
920 }
Roopa Prabhu8a44dbb2015-01-29 22:40:13 -0800921
Scott Feldman47f83282015-05-10 09:47:56 -0700922 afspec = nlmsg_find_attr(nlh, sizeof(struct ifinfomsg),
923 IFLA_AF_SPEC);
924 if (afspec)
925 err = switchdev_port_br_afspec(dev, afspec,
926 switchdev_port_obj_add);
Roopa Prabhu8a44dbb2015-01-29 22:40:13 -0800927
Scott Feldman47f83282015-05-10 09:47:56 -0700928 return err;
Roopa Prabhu8a44dbb2015-01-29 22:40:13 -0800929}
Jiri Pirkoebb9a032015-05-10 09:47:46 -0700930EXPORT_SYMBOL_GPL(switchdev_port_bridge_setlink);
Roopa Prabhu8a44dbb2015-01-29 22:40:13 -0800931
932/**
Scott Feldman5c34e022015-05-10 09:48:00 -0700933 * switchdev_port_bridge_dellink - Set bridge port attributes
Roopa Prabhu8a44dbb2015-01-29 22:40:13 -0800934 *
935 * @dev: port device
Scott Feldman5c34e022015-05-10 09:48:00 -0700936 * @nlh: netlink header
937 * @flags: netlink flags
Roopa Prabhu8a44dbb2015-01-29 22:40:13 -0800938 *
Scott Feldman5c34e022015-05-10 09:48:00 -0700939 * Called for SELF on rtnl_bridge_dellink to set bridge port
940 * attributes.
Roopa Prabhu8a44dbb2015-01-29 22:40:13 -0800941 */
Jiri Pirkoebb9a032015-05-10 09:47:46 -0700942int switchdev_port_bridge_dellink(struct net_device *dev,
943 struct nlmsghdr *nlh, u16 flags)
Roopa Prabhu8a44dbb2015-01-29 22:40:13 -0800944{
Scott Feldman5c34e022015-05-10 09:48:00 -0700945 struct nlattr *afspec;
Roopa Prabhu8a44dbb2015-01-29 22:40:13 -0800946
Ido Schimmel97c24292016-10-18 18:50:23 +0200947 if (!netif_is_bridge_port(dev))
948 return -EOPNOTSUPP;
949
Scott Feldman5c34e022015-05-10 09:48:00 -0700950 afspec = nlmsg_find_attr(nlh, sizeof(struct ifinfomsg),
951 IFLA_AF_SPEC);
952 if (afspec)
953 return switchdev_port_br_afspec(dev, afspec,
954 switchdev_port_obj_del);
Roopa Prabhu8a44dbb2015-01-29 22:40:13 -0800955
Scott Feldman5c34e022015-05-10 09:48:00 -0700956 return 0;
Roopa Prabhu8a44dbb2015-01-29 22:40:13 -0800957}
Jiri Pirkoebb9a032015-05-10 09:47:46 -0700958EXPORT_SYMBOL_GPL(switchdev_port_bridge_dellink);
Roopa Prabhu8a44dbb2015-01-29 22:40:13 -0800959
Samudrala, Sridhar45d41222015-05-13 21:55:43 -0700960/**
961 * switchdev_port_fdb_add - Add FDB (MAC/VLAN) entry to port
962 *
963 * @ndmsg: netlink hdr
964 * @nlattr: netlink attributes
965 * @dev: port device
966 * @addr: MAC address to add
967 * @vid: VLAN to add
968 *
969 * Add FDB entry to switch device.
970 */
971int switchdev_port_fdb_add(struct ndmsg *ndm, struct nlattr *tb[],
972 struct net_device *dev, const unsigned char *addr,
973 u16 vid, u16 nlm_flags)
974{
Jiri Pirko52ba57c2015-10-01 11:03:44 +0200975 struct switchdev_obj_port_fdb fdb = {
Ido Schimmel6ff64f62015-12-15 16:03:35 +0100976 .obj.orig_dev = dev,
Jiri Pirko9e8f4a52015-10-01 11:03:46 +0200977 .obj.id = SWITCHDEV_OBJ_ID_PORT_FDB,
Vivien Didelotab069002015-09-29 12:07:17 -0400978 .vid = vid,
Samudrala, Sridhar45d41222015-05-13 21:55:43 -0700979 };
980
Jiri Pirko850d0cb2015-10-14 19:40:51 +0200981 ether_addr_copy(fdb.addr, addr);
Jiri Pirko9e8f4a52015-10-01 11:03:46 +0200982 return switchdev_port_obj_add(dev, &fdb.obj);
Samudrala, Sridhar45d41222015-05-13 21:55:43 -0700983}
984EXPORT_SYMBOL_GPL(switchdev_port_fdb_add);
985
986/**
987 * switchdev_port_fdb_del - Delete FDB (MAC/VLAN) entry from port
988 *
989 * @ndmsg: netlink hdr
990 * @nlattr: netlink attributes
991 * @dev: port device
992 * @addr: MAC address to delete
993 * @vid: VLAN to delete
994 *
995 * Delete FDB entry from switch device.
996 */
997int switchdev_port_fdb_del(struct ndmsg *ndm, struct nlattr *tb[],
998 struct net_device *dev, const unsigned char *addr,
999 u16 vid)
1000{
Jiri Pirko52ba57c2015-10-01 11:03:44 +02001001 struct switchdev_obj_port_fdb fdb = {
Ido Schimmel6ff64f62015-12-15 16:03:35 +01001002 .obj.orig_dev = dev,
Jiri Pirko9e8f4a52015-10-01 11:03:46 +02001003 .obj.id = SWITCHDEV_OBJ_ID_PORT_FDB,
Vivien Didelotab069002015-09-29 12:07:17 -04001004 .vid = vid,
Samudrala, Sridhar45d41222015-05-13 21:55:43 -07001005 };
1006
Jiri Pirko850d0cb2015-10-14 19:40:51 +02001007 ether_addr_copy(fdb.addr, addr);
Jiri Pirko9e8f4a52015-10-01 11:03:46 +02001008 return switchdev_port_obj_del(dev, &fdb.obj);
Samudrala, Sridhar45d41222015-05-13 21:55:43 -07001009}
1010EXPORT_SYMBOL_GPL(switchdev_port_fdb_del);
1011
1012struct switchdev_fdb_dump {
Jiri Pirko52ba57c2015-10-01 11:03:44 +02001013 struct switchdev_obj_port_fdb fdb;
Vivien Didelote02a06b2015-09-29 12:07:14 -04001014 struct net_device *dev;
Samudrala, Sridhar45d41222015-05-13 21:55:43 -07001015 struct sk_buff *skb;
1016 struct netlink_callback *cb;
Samudrala, Sridhar45d41222015-05-13 21:55:43 -07001017 int idx;
1018};
1019
Jiri Pirko648b4a92015-10-01 11:03:45 +02001020static int switchdev_port_fdb_dump_cb(struct switchdev_obj *obj)
Samudrala, Sridhar45d41222015-05-13 21:55:43 -07001021{
Jiri Pirko648b4a92015-10-01 11:03:45 +02001022 struct switchdev_obj_port_fdb *fdb = SWITCHDEV_OBJ_PORT_FDB(obj);
Samudrala, Sridhar45d41222015-05-13 21:55:43 -07001023 struct switchdev_fdb_dump *dump =
Vivien Didelot25f07ad2015-09-29 12:07:16 -04001024 container_of(fdb, struct switchdev_fdb_dump, fdb);
Samudrala, Sridhar45d41222015-05-13 21:55:43 -07001025 u32 portid = NETLINK_CB(dump->cb->skb).portid;
1026 u32 seq = dump->cb->nlh->nlmsg_seq;
1027 struct nlmsghdr *nlh;
1028 struct ndmsg *ndm;
Samudrala, Sridhar45d41222015-05-13 21:55:43 -07001029
Roopa Prabhud2976532016-08-30 21:56:45 -07001030 if (dump->idx < dump->cb->args[2])
Samudrala, Sridhar45d41222015-05-13 21:55:43 -07001031 goto skip;
1032
Samudrala, Sridhar45d41222015-05-13 21:55:43 -07001033 nlh = nlmsg_put(dump->skb, portid, seq, RTM_NEWNEIGH,
1034 sizeof(*ndm), NLM_F_MULTI);
1035 if (!nlh)
1036 return -EMSGSIZE;
1037
1038 ndm = nlmsg_data(nlh);
1039 ndm->ndm_family = AF_BRIDGE;
1040 ndm->ndm_pad1 = 0;
1041 ndm->ndm_pad2 = 0;
1042 ndm->ndm_flags = NTF_SELF;
1043 ndm->ndm_type = 0;
Vivien Didelote02a06b2015-09-29 12:07:14 -04001044 ndm->ndm_ifindex = dump->dev->ifindex;
Vivien Didelot25f07ad2015-09-29 12:07:16 -04001045 ndm->ndm_state = fdb->ndm_state;
Samudrala, Sridhar45d41222015-05-13 21:55:43 -07001046
Vivien Didelot25f07ad2015-09-29 12:07:16 -04001047 if (nla_put(dump->skb, NDA_LLADDR, ETH_ALEN, fdb->addr))
Samudrala, Sridhar45d41222015-05-13 21:55:43 -07001048 goto nla_put_failure;
1049
Vivien Didelot25f07ad2015-09-29 12:07:16 -04001050 if (fdb->vid && nla_put_u16(dump->skb, NDA_VLAN, fdb->vid))
Samudrala, Sridhar45d41222015-05-13 21:55:43 -07001051 goto nla_put_failure;
1052
1053 nlmsg_end(dump->skb, nlh);
1054
1055skip:
1056 dump->idx++;
1057 return 0;
1058
1059nla_put_failure:
1060 nlmsg_cancel(dump->skb, nlh);
1061 return -EMSGSIZE;
1062}
1063
1064/**
1065 * switchdev_port_fdb_dump - Dump port FDB (MAC/VLAN) entries
1066 *
1067 * @skb: netlink skb
1068 * @cb: netlink callback
1069 * @dev: port device
1070 * @filter_dev: filter device
1071 * @idx:
1072 *
Nicolas Dichtel3e347662016-03-24 16:50:00 +01001073 * Dump FDB entries from switch device.
Samudrala, Sridhar45d41222015-05-13 21:55:43 -07001074 */
1075int switchdev_port_fdb_dump(struct sk_buff *skb, struct netlink_callback *cb,
1076 struct net_device *dev,
Roopa Prabhud2976532016-08-30 21:56:45 -07001077 struct net_device *filter_dev, int *idx)
Samudrala, Sridhar45d41222015-05-13 21:55:43 -07001078{
1079 struct switchdev_fdb_dump dump = {
Ido Schimmel6ff64f62015-12-15 16:03:35 +01001080 .fdb.obj.orig_dev = dev,
Jiri Pirko9e8f4a52015-10-01 11:03:46 +02001081 .fdb.obj.id = SWITCHDEV_OBJ_ID_PORT_FDB,
Vivien Didelote02a06b2015-09-29 12:07:14 -04001082 .dev = dev,
Samudrala, Sridhar45d41222015-05-13 21:55:43 -07001083 .skb = skb,
1084 .cb = cb,
Roopa Prabhud2976532016-08-30 21:56:45 -07001085 .idx = *idx,
Samudrala, Sridhar45d41222015-05-13 21:55:43 -07001086 };
MINOURA Makoto / 箕浦 真472681d2016-02-25 14:20:48 +09001087 int err;
Samudrala, Sridhar45d41222015-05-13 21:55:43 -07001088
MINOURA Makoto / 箕浦 真472681d2016-02-25 14:20:48 +09001089 err = switchdev_port_obj_dump(dev, &dump.fdb.obj,
1090 switchdev_port_fdb_dump_cb);
Roopa Prabhud2976532016-08-30 21:56:45 -07001091 *idx = dump.idx;
1092 return err;
Samudrala, Sridhar45d41222015-05-13 21:55:43 -07001093}
1094EXPORT_SYMBOL_GPL(switchdev_port_fdb_dump);
1095
Or Gerlitz84388842016-07-14 10:32:43 +03001096bool switchdev_port_same_parent_id(struct net_device *a,
1097 struct net_device *b)
Scott Feldman1a3b2ec2015-07-18 18:24:50 -07001098{
1099 struct switchdev_attr a_attr = {
Ido Schimmel6ff64f62015-12-15 16:03:35 +01001100 .orig_dev = a,
Jiri Pirko1f868392015-10-01 11:03:42 +02001101 .id = SWITCHDEV_ATTR_ID_PORT_PARENT_ID,
Scott Feldman1a3b2ec2015-07-18 18:24:50 -07001102 };
1103 struct switchdev_attr b_attr = {
Ido Schimmel6ff64f62015-12-15 16:03:35 +01001104 .orig_dev = b,
Jiri Pirko1f868392015-10-01 11:03:42 +02001105 .id = SWITCHDEV_ATTR_ID_PORT_PARENT_ID,
Scott Feldman1a3b2ec2015-07-18 18:24:50 -07001106 };
1107
1108 if (switchdev_port_attr_get(a, &a_attr) ||
1109 switchdev_port_attr_get(b, &b_attr))
1110 return false;
1111
1112 return netdev_phys_item_id_same(&a_attr.u.ppid, &b_attr.u.ppid);
1113}
Or Gerlitz2eb03e62016-08-15 14:51:54 +03001114EXPORT_SYMBOL_GPL(switchdev_port_same_parent_id);