blob: d6b4a84a4a7974ae9e25b510ef35a95003a4eaf5 [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>
Scott Feldman5e8d9042015-03-05 21:21:15 -080023#include <net/ip_fib.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
228 if (ops && ops->switchdev_port_attr_set)
Jiri Pirko7ea6eb32015-09-24 10:02:41 +0200229 return ops->switchdev_port_attr_set(dev, attr, trans);
Scott Feldman30943332015-05-10 09:47:48 -0700230
231 if (attr->flags & SWITCHDEV_F_NO_RECURSE)
Scott Feldman464314e2015-10-08 19:23:18 -0700232 goto done;
Scott Feldman30943332015-05-10 09:47:48 -0700233
234 /* Switch device port(s) may be stacked under
235 * bond/team/vlan dev, so recurse down to set attr on
236 * each port.
237 */
238
239 netdev_for_each_lower_dev(dev, lower_dev, iter) {
Jiri Pirko7ea6eb32015-09-24 10:02:41 +0200240 err = __switchdev_port_attr_set(lower_dev, attr, trans);
Scott Feldman464314e2015-10-08 19:23:18 -0700241 if (err == -EOPNOTSUPP &&
242 attr->flags & SWITCHDEV_F_SKIP_EOPNOTSUPP)
243 continue;
Scott Feldman30943332015-05-10 09:47:48 -0700244 if (err)
245 break;
246 }
247
Scott Feldman464314e2015-10-08 19:23:18 -0700248done:
249 if (err == -EOPNOTSUPP && attr->flags & SWITCHDEV_F_SKIP_EOPNOTSUPP)
250 err = 0;
251
Scott Feldman30943332015-05-10 09:47:48 -0700252 return err;
253}
254
Jiri Pirko0bc05d52015-10-14 19:40:50 +0200255static int switchdev_port_attr_set_now(struct net_device *dev,
256 const struct switchdev_attr *attr)
Scott Feldman30943332015-05-10 09:47:48 -0700257{
Jiri Pirko7ea6eb32015-09-24 10:02:41 +0200258 struct switchdev_trans trans;
Scott Feldman30943332015-05-10 09:47:48 -0700259 int err;
260
Jiri Pirko7ea6eb32015-09-24 10:02:41 +0200261 switchdev_trans_init(&trans);
262
Scott Feldman30943332015-05-10 09:47:48 -0700263 /* Phase I: prepare for attr set. Driver/device should fail
264 * here if there are going to be issues in the commit phase,
265 * such as lack of resources or support. The driver/device
266 * should reserve resources needed for the commit phase here,
267 * but should not commit the attr.
268 */
269
Jiri Pirkof623ab72015-09-24 10:02:49 +0200270 trans.ph_prepare = true;
Jiri Pirko7ea6eb32015-09-24 10:02:41 +0200271 err = __switchdev_port_attr_set(dev, attr, &trans);
Scott Feldman30943332015-05-10 09:47:48 -0700272 if (err) {
273 /* Prepare phase failed: abort the transaction. Any
274 * resources reserved in the prepare phase are
275 * released.
276 */
277
Jiri Pirko9f6467c2015-09-24 10:02:47 +0200278 if (err != -EOPNOTSUPP)
Jiri Pirko7ea6eb32015-09-24 10:02:41 +0200279 switchdev_trans_items_destroy(&trans);
Scott Feldman30943332015-05-10 09:47:48 -0700280
281 return err;
282 }
283
284 /* Phase II: commit attr set. This cannot fail as a fault
285 * of driver/device. If it does, it's a bug in the driver/device
286 * because the driver said everythings was OK in phase I.
287 */
288
Jiri Pirkof623ab72015-09-24 10:02:49 +0200289 trans.ph_prepare = false;
Jiri Pirko7ea6eb32015-09-24 10:02:41 +0200290 err = __switchdev_port_attr_set(dev, attr, &trans);
Scott Feldmane9fdaec2015-06-11 11:20:42 -0700291 WARN(err, "%s: Commit of attribute (id=%d) failed.\n",
292 dev->name, attr->id);
Jiri Pirko7ea6eb32015-09-24 10:02:41 +0200293 switchdev_trans_items_warn_destroy(dev, &trans);
Scott Feldman30943332015-05-10 09:47:48 -0700294
295 return err;
296}
Jiri Pirko0bc05d52015-10-14 19:40:50 +0200297
298static void switchdev_port_attr_set_deferred(struct net_device *dev,
299 const void *data)
300{
301 const struct switchdev_attr *attr = data;
302 int err;
303
304 err = switchdev_port_attr_set_now(dev, attr);
305 if (err && err != -EOPNOTSUPP)
306 netdev_err(dev, "failed (err=%d) to set attribute (id=%d)\n",
307 err, attr->id);
308}
309
310static int switchdev_port_attr_set_defer(struct net_device *dev,
311 const struct switchdev_attr *attr)
312{
313 return switchdev_deferred_enqueue(dev, attr, sizeof(*attr),
314 switchdev_port_attr_set_deferred);
315}
316
317/**
318 * switchdev_port_attr_set - Set port attribute
319 *
320 * @dev: port device
321 * @attr: attribute to set
322 *
323 * Use a 2-phase prepare-commit transaction model to ensure
324 * system is not left in a partially updated state due to
325 * failure from driver/device.
326 *
327 * rtnl_lock must be held and must not be in atomic section,
328 * in case SWITCHDEV_F_DEFER flag is not set.
329 */
330int switchdev_port_attr_set(struct net_device *dev,
331 const struct switchdev_attr *attr)
332{
333 if (attr->flags & SWITCHDEV_F_DEFER)
334 return switchdev_port_attr_set_defer(dev, attr);
335 ASSERT_RTNL();
336 return switchdev_port_attr_set_now(dev, attr);
337}
Scott Feldman30943332015-05-10 09:47:48 -0700338EXPORT_SYMBOL_GPL(switchdev_port_attr_set);
339
Scott Feldman22c1f672015-05-12 23:03:51 -0700340static int __switchdev_port_obj_add(struct net_device *dev,
Jiri Pirko648b4a92015-10-01 11:03:45 +0200341 const struct switchdev_obj *obj,
Jiri Pirko7ea6eb32015-09-24 10:02:41 +0200342 struct switchdev_trans *trans)
Scott Feldman491d0f12015-05-10 09:47:52 -0700343{
344 const struct switchdev_ops *ops = dev->switchdev_ops;
345 struct net_device *lower_dev;
346 struct list_head *iter;
347 int err = -EOPNOTSUPP;
348
349 if (ops && ops->switchdev_port_obj_add)
Jiri Pirko9e8f4a52015-10-01 11:03:46 +0200350 return ops->switchdev_port_obj_add(dev, obj, trans);
Scott Feldman491d0f12015-05-10 09:47:52 -0700351
352 /* Switch device port(s) may be stacked under
353 * bond/team/vlan dev, so recurse down to add object on
354 * each port.
355 */
356
357 netdev_for_each_lower_dev(dev, lower_dev, iter) {
Jiri Pirko9e8f4a52015-10-01 11:03:46 +0200358 err = __switchdev_port_obj_add(lower_dev, obj, trans);
Scott Feldman491d0f12015-05-10 09:47:52 -0700359 if (err)
360 break;
361 }
362
363 return err;
364}
365
Jiri Pirko4d429c52015-10-14 19:40:52 +0200366static int switchdev_port_obj_add_now(struct net_device *dev,
367 const struct switchdev_obj *obj)
Scott Feldman491d0f12015-05-10 09:47:52 -0700368{
Jiri Pirko7ea6eb32015-09-24 10:02:41 +0200369 struct switchdev_trans trans;
Scott Feldman491d0f12015-05-10 09:47:52 -0700370 int err;
371
372 ASSERT_RTNL();
373
Jiri Pirko7ea6eb32015-09-24 10:02:41 +0200374 switchdev_trans_init(&trans);
375
Scott Feldman491d0f12015-05-10 09:47:52 -0700376 /* Phase I: prepare for obj add. Driver/device should fail
377 * here if there are going to be issues in the commit phase,
378 * such as lack of resources or support. The driver/device
379 * should reserve resources needed for the commit phase here,
380 * but should not commit the obj.
381 */
382
Jiri Pirkof623ab72015-09-24 10:02:49 +0200383 trans.ph_prepare = true;
Jiri Pirko9e8f4a52015-10-01 11:03:46 +0200384 err = __switchdev_port_obj_add(dev, obj, &trans);
Scott Feldman491d0f12015-05-10 09:47:52 -0700385 if (err) {
386 /* Prepare phase failed: abort the transaction. Any
387 * resources reserved in the prepare phase are
388 * released.
389 */
390
Jiri Pirko9f6467c2015-09-24 10:02:47 +0200391 if (err != -EOPNOTSUPP)
Jiri Pirko7ea6eb32015-09-24 10:02:41 +0200392 switchdev_trans_items_destroy(&trans);
Scott Feldman491d0f12015-05-10 09:47:52 -0700393
394 return err;
395 }
396
397 /* Phase II: commit obj add. This cannot fail as a fault
398 * of driver/device. If it does, it's a bug in the driver/device
399 * because the driver said everythings was OK in phase I.
400 */
401
Jiri Pirkof623ab72015-09-24 10:02:49 +0200402 trans.ph_prepare = false;
Jiri Pirko9e8f4a52015-10-01 11:03:46 +0200403 err = __switchdev_port_obj_add(dev, obj, &trans);
404 WARN(err, "%s: Commit of object (id=%d) failed.\n", dev->name, obj->id);
Jiri Pirko7ea6eb32015-09-24 10:02:41 +0200405 switchdev_trans_items_warn_destroy(dev, &trans);
Scott Feldman491d0f12015-05-10 09:47:52 -0700406
407 return err;
408}
Jiri Pirko4d429c52015-10-14 19:40:52 +0200409
410static void switchdev_port_obj_add_deferred(struct net_device *dev,
411 const void *data)
412{
413 const struct switchdev_obj *obj = data;
414 int err;
415
416 err = switchdev_port_obj_add_now(dev, obj);
417 if (err && err != -EOPNOTSUPP)
418 netdev_err(dev, "failed (err=%d) to add object (id=%d)\n",
419 err, obj->id);
420}
421
422static int switchdev_port_obj_add_defer(struct net_device *dev,
423 const struct switchdev_obj *obj)
424{
425 return switchdev_deferred_enqueue(dev, obj, sizeof(*obj),
426 switchdev_port_obj_add_deferred);
427}
Scott Feldman491d0f12015-05-10 09:47:52 -0700428
429/**
Jiri Pirko4d429c52015-10-14 19:40:52 +0200430 * switchdev_port_obj_add - Add port object
Scott Feldman491d0f12015-05-10 09:47:52 -0700431 *
432 * @dev: port device
Vivien Didelotab069002015-09-29 12:07:17 -0400433 * @id: object ID
Jiri Pirko4d429c52015-10-14 19:40:52 +0200434 * @obj: object to add
435 *
436 * Use a 2-phase prepare-commit transaction model to ensure
437 * system is not left in a partially updated state due to
438 * failure from driver/device.
439 *
440 * rtnl_lock must be held and must not be in atomic section,
441 * in case SWITCHDEV_F_DEFER flag is not set.
Scott Feldman491d0f12015-05-10 09:47:52 -0700442 */
Jiri Pirko4d429c52015-10-14 19:40:52 +0200443int switchdev_port_obj_add(struct net_device *dev,
Jiri Pirko648b4a92015-10-01 11:03:45 +0200444 const struct switchdev_obj *obj)
Scott Feldman491d0f12015-05-10 09:47:52 -0700445{
Jiri Pirko4d429c52015-10-14 19:40:52 +0200446 if (obj->flags & SWITCHDEV_F_DEFER)
447 return switchdev_port_obj_add_defer(dev, obj);
448 ASSERT_RTNL();
449 return switchdev_port_obj_add_now(dev, obj);
450}
451EXPORT_SYMBOL_GPL(switchdev_port_obj_add);
452
453static int switchdev_port_obj_del_now(struct net_device *dev,
454 const struct switchdev_obj *obj)
455{
Scott Feldman491d0f12015-05-10 09:47:52 -0700456 const struct switchdev_ops *ops = dev->switchdev_ops;
457 struct net_device *lower_dev;
458 struct list_head *iter;
459 int err = -EOPNOTSUPP;
460
461 if (ops && ops->switchdev_port_obj_del)
Jiri Pirko9e8f4a52015-10-01 11:03:46 +0200462 return ops->switchdev_port_obj_del(dev, obj);
Scott Feldman491d0f12015-05-10 09:47:52 -0700463
464 /* Switch device port(s) may be stacked under
465 * bond/team/vlan dev, so recurse down to delete object on
466 * each port.
467 */
468
469 netdev_for_each_lower_dev(dev, lower_dev, iter) {
Jiri Pirko4d429c52015-10-14 19:40:52 +0200470 err = switchdev_port_obj_del_now(lower_dev, obj);
Scott Feldman491d0f12015-05-10 09:47:52 -0700471 if (err)
472 break;
473 }
474
475 return err;
476}
Jiri Pirko4d429c52015-10-14 19:40:52 +0200477
478static void switchdev_port_obj_del_deferred(struct net_device *dev,
479 const void *data)
480{
481 const struct switchdev_obj *obj = data;
482 int err;
483
484 err = switchdev_port_obj_del_now(dev, obj);
485 if (err && err != -EOPNOTSUPP)
486 netdev_err(dev, "failed (err=%d) to del object (id=%d)\n",
487 err, obj->id);
488}
489
490static int switchdev_port_obj_del_defer(struct net_device *dev,
491 const struct switchdev_obj *obj)
492{
493 return switchdev_deferred_enqueue(dev, obj, sizeof(*obj),
494 switchdev_port_obj_del_deferred);
495}
496
497/**
498 * switchdev_port_obj_del - Delete port object
499 *
500 * @dev: port device
501 * @id: object ID
502 * @obj: object to delete
503 *
504 * rtnl_lock must be held and must not be in atomic section,
505 * in case SWITCHDEV_F_DEFER flag is not set.
506 */
507int switchdev_port_obj_del(struct net_device *dev,
508 const struct switchdev_obj *obj)
509{
510 if (obj->flags & SWITCHDEV_F_DEFER)
511 return switchdev_port_obj_del_defer(dev, obj);
512 ASSERT_RTNL();
513 return switchdev_port_obj_del_now(dev, obj);
514}
Scott Feldman491d0f12015-05-10 09:47:52 -0700515EXPORT_SYMBOL_GPL(switchdev_port_obj_del);
516
Samudrala, Sridhar45d41222015-05-13 21:55:43 -0700517/**
518 * switchdev_port_obj_dump - Dump port objects
519 *
520 * @dev: port device
Vivien Didelot25f07ad2015-09-29 12:07:16 -0400521 * @id: object ID
Samudrala, Sridhar45d41222015-05-13 21:55:43 -0700522 * @obj: object to dump
Vivien Didelot25f07ad2015-09-29 12:07:16 -0400523 * @cb: function to call with a filled object
Jiri Pirko771acac2015-10-14 19:40:55 +0200524 *
525 * rtnl_lock must be held.
Samudrala, Sridhar45d41222015-05-13 21:55:43 -0700526 */
Jiri Pirko9e8f4a52015-10-01 11:03:46 +0200527int switchdev_port_obj_dump(struct net_device *dev, struct switchdev_obj *obj,
Jiri Pirko648b4a92015-10-01 11:03:45 +0200528 switchdev_obj_dump_cb_t *cb)
Samudrala, Sridhar45d41222015-05-13 21:55:43 -0700529{
530 const struct switchdev_ops *ops = dev->switchdev_ops;
531 struct net_device *lower_dev;
532 struct list_head *iter;
533 int err = -EOPNOTSUPP;
534
Jiri Pirko771acac2015-10-14 19:40:55 +0200535 ASSERT_RTNL();
536
Samudrala, Sridhar45d41222015-05-13 21:55:43 -0700537 if (ops && ops->switchdev_port_obj_dump)
Jiri Pirko9e8f4a52015-10-01 11:03:46 +0200538 return ops->switchdev_port_obj_dump(dev, obj, cb);
Samudrala, Sridhar45d41222015-05-13 21:55:43 -0700539
540 /* Switch device port(s) may be stacked under
541 * bond/team/vlan dev, so recurse down to dump objects on
542 * first port at bottom of stack.
543 */
544
545 netdev_for_each_lower_dev(dev, lower_dev, iter) {
Jiri Pirko9e8f4a52015-10-01 11:03:46 +0200546 err = switchdev_port_obj_dump(lower_dev, obj, cb);
Samudrala, Sridhar45d41222015-05-13 21:55:43 -0700547 break;
548 }
549
550 return err;
551}
552EXPORT_SYMBOL_GPL(switchdev_port_obj_dump);
553
Jiri Pirkoebb9a032015-05-10 09:47:46 -0700554static DEFINE_MUTEX(switchdev_mutex);
555static RAW_NOTIFIER_HEAD(switchdev_notif_chain);
Jiri Pirko03bf0c22015-01-15 23:49:36 +0100556
557/**
Jiri Pirkoebb9a032015-05-10 09:47:46 -0700558 * register_switchdev_notifier - Register notifier
Jiri Pirko03bf0c22015-01-15 23:49:36 +0100559 * @nb: notifier_block
560 *
561 * Register switch device notifier. This should be used by code
562 * which needs to monitor events happening in particular device.
563 * Return values are same as for atomic_notifier_chain_register().
564 */
Jiri Pirkoebb9a032015-05-10 09:47:46 -0700565int register_switchdev_notifier(struct notifier_block *nb)
Jiri Pirko03bf0c22015-01-15 23:49:36 +0100566{
567 int err;
568
Jiri Pirkoebb9a032015-05-10 09:47:46 -0700569 mutex_lock(&switchdev_mutex);
570 err = raw_notifier_chain_register(&switchdev_notif_chain, nb);
571 mutex_unlock(&switchdev_mutex);
Jiri Pirko03bf0c22015-01-15 23:49:36 +0100572 return err;
573}
Jiri Pirkoebb9a032015-05-10 09:47:46 -0700574EXPORT_SYMBOL_GPL(register_switchdev_notifier);
Jiri Pirko03bf0c22015-01-15 23:49:36 +0100575
576/**
Jiri Pirkoebb9a032015-05-10 09:47:46 -0700577 * unregister_switchdev_notifier - Unregister notifier
Jiri Pirko03bf0c22015-01-15 23:49:36 +0100578 * @nb: notifier_block
579 *
580 * Unregister switch device notifier.
581 * Return values are same as for atomic_notifier_chain_unregister().
582 */
Jiri Pirkoebb9a032015-05-10 09:47:46 -0700583int unregister_switchdev_notifier(struct notifier_block *nb)
Jiri Pirko03bf0c22015-01-15 23:49:36 +0100584{
585 int err;
586
Jiri Pirkoebb9a032015-05-10 09:47:46 -0700587 mutex_lock(&switchdev_mutex);
588 err = raw_notifier_chain_unregister(&switchdev_notif_chain, nb);
589 mutex_unlock(&switchdev_mutex);
Jiri Pirko03bf0c22015-01-15 23:49:36 +0100590 return err;
591}
Jiri Pirkoebb9a032015-05-10 09:47:46 -0700592EXPORT_SYMBOL_GPL(unregister_switchdev_notifier);
Jiri Pirko03bf0c22015-01-15 23:49:36 +0100593
594/**
Jiri Pirkoebb9a032015-05-10 09:47:46 -0700595 * call_switchdev_notifiers - Call notifiers
Jiri Pirko03bf0c22015-01-15 23:49:36 +0100596 * @val: value passed unmodified to notifier function
597 * @dev: port device
598 * @info: notifier information data
599 *
600 * Call all network notifier blocks. This should be called by driver
601 * when it needs to propagate hardware event.
602 * Return values are same as for atomic_notifier_call_chain().
603 */
Jiri Pirkoebb9a032015-05-10 09:47:46 -0700604int call_switchdev_notifiers(unsigned long val, struct net_device *dev,
605 struct switchdev_notifier_info *info)
Jiri Pirko03bf0c22015-01-15 23:49:36 +0100606{
607 int err;
608
609 info->dev = dev;
Jiri Pirkoebb9a032015-05-10 09:47:46 -0700610 mutex_lock(&switchdev_mutex);
611 err = raw_notifier_call_chain(&switchdev_notif_chain, val, info);
612 mutex_unlock(&switchdev_mutex);
Jiri Pirko03bf0c22015-01-15 23:49:36 +0100613 return err;
614}
Jiri Pirkoebb9a032015-05-10 09:47:46 -0700615EXPORT_SYMBOL_GPL(call_switchdev_notifiers);
Roopa Prabhu8a44dbb2015-01-29 22:40:13 -0800616
Scott Feldman7d4f8d82015-06-22 00:27:17 -0700617struct switchdev_vlan_dump {
Jiri Pirko8f24f302015-10-01 11:03:43 +0200618 struct switchdev_obj_port_vlan vlan;
Scott Feldman7d4f8d82015-06-22 00:27:17 -0700619 struct sk_buff *skb;
620 u32 filter_mask;
621 u16 flags;
622 u16 begin;
623 u16 end;
624};
625
Vivien Didelote23b0022015-09-29 12:07:13 -0400626static int switchdev_port_vlan_dump_put(struct switchdev_vlan_dump *dump)
Scott Feldman7d4f8d82015-06-22 00:27:17 -0700627{
628 struct bridge_vlan_info vinfo;
629
630 vinfo.flags = dump->flags;
631
632 if (dump->begin == 0 && dump->end == 0) {
633 return 0;
634 } else if (dump->begin == dump->end) {
635 vinfo.vid = dump->begin;
636 if (nla_put(dump->skb, IFLA_BRIDGE_VLAN_INFO,
637 sizeof(vinfo), &vinfo))
638 return -EMSGSIZE;
639 } else {
640 vinfo.vid = dump->begin;
641 vinfo.flags |= BRIDGE_VLAN_INFO_RANGE_BEGIN;
642 if (nla_put(dump->skb, IFLA_BRIDGE_VLAN_INFO,
643 sizeof(vinfo), &vinfo))
644 return -EMSGSIZE;
645 vinfo.vid = dump->end;
646 vinfo.flags &= ~BRIDGE_VLAN_INFO_RANGE_BEGIN;
647 vinfo.flags |= BRIDGE_VLAN_INFO_RANGE_END;
648 if (nla_put(dump->skb, IFLA_BRIDGE_VLAN_INFO,
649 sizeof(vinfo), &vinfo))
650 return -EMSGSIZE;
651 }
652
653 return 0;
654}
655
Jiri Pirko648b4a92015-10-01 11:03:45 +0200656static int switchdev_port_vlan_dump_cb(struct switchdev_obj *obj)
Scott Feldman7d4f8d82015-06-22 00:27:17 -0700657{
Jiri Pirko648b4a92015-10-01 11:03:45 +0200658 struct switchdev_obj_port_vlan *vlan = SWITCHDEV_OBJ_PORT_VLAN(obj);
Scott Feldman7d4f8d82015-06-22 00:27:17 -0700659 struct switchdev_vlan_dump *dump =
Vivien Didelot25f07ad2015-09-29 12:07:16 -0400660 container_of(vlan, struct switchdev_vlan_dump, vlan);
Scott Feldman7d4f8d82015-06-22 00:27:17 -0700661 int err = 0;
662
663 if (vlan->vid_begin > vlan->vid_end)
664 return -EINVAL;
665
666 if (dump->filter_mask & RTEXT_FILTER_BRVLAN) {
667 dump->flags = vlan->flags;
668 for (dump->begin = dump->end = vlan->vid_begin;
669 dump->begin <= vlan->vid_end;
670 dump->begin++, dump->end++) {
Vivien Didelote23b0022015-09-29 12:07:13 -0400671 err = switchdev_port_vlan_dump_put(dump);
Scott Feldman7d4f8d82015-06-22 00:27:17 -0700672 if (err)
673 return err;
674 }
675 } else if (dump->filter_mask & RTEXT_FILTER_BRVLAN_COMPRESSED) {
676 if (dump->begin > vlan->vid_begin &&
677 dump->begin >= vlan->vid_end) {
678 if ((dump->begin - 1) == vlan->vid_end &&
679 dump->flags == vlan->flags) {
680 /* prepend */
681 dump->begin = vlan->vid_begin;
682 } else {
Vivien Didelote23b0022015-09-29 12:07:13 -0400683 err = switchdev_port_vlan_dump_put(dump);
Scott Feldman7d4f8d82015-06-22 00:27:17 -0700684 dump->flags = vlan->flags;
685 dump->begin = vlan->vid_begin;
686 dump->end = vlan->vid_end;
687 }
688 } else if (dump->end <= vlan->vid_begin &&
689 dump->end < vlan->vid_end) {
690 if ((dump->end + 1) == vlan->vid_begin &&
691 dump->flags == vlan->flags) {
692 /* append */
693 dump->end = vlan->vid_end;
694 } else {
Vivien Didelote23b0022015-09-29 12:07:13 -0400695 err = switchdev_port_vlan_dump_put(dump);
Scott Feldman7d4f8d82015-06-22 00:27:17 -0700696 dump->flags = vlan->flags;
697 dump->begin = vlan->vid_begin;
698 dump->end = vlan->vid_end;
699 }
700 } else {
701 err = -EINVAL;
702 }
703 }
704
705 return err;
706}
707
708static int switchdev_port_vlan_fill(struct sk_buff *skb, struct net_device *dev,
709 u32 filter_mask)
710{
711 struct switchdev_vlan_dump dump = {
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 = {
Jiri Pirko1f868392015-10-01 11:03:42 +0200746 .id = SWITCHDEV_ATTR_ID_PORT_BRIDGE_FLAGS,
Scott Feldman8793d0a2015-05-10 09:48:04 -0700747 };
748 u16 mode = BRIDGE_MODE_UNDEF;
Ido Schimmel741af002015-10-28 10:16:54 +0100749 u32 mask = BR_LEARNING | BR_LEARNING_SYNC | BR_FLOOD;
Scott Feldman8793d0a2015-05-10 09:48:04 -0700750 int err;
751
752 err = switchdev_port_attr_get(dev, &attr);
Vivien Didelot5c8079d2015-06-23 10:26:04 -0400753 if (err && err != -EOPNOTSUPP)
Scott Feldman8793d0a2015-05-10 09:48:04 -0700754 return err;
755
756 return ndo_dflt_bridge_getlink(skb, pid, seq, dev, mode,
Scott Feldman7d4f8d82015-06-22 00:27:17 -0700757 attr.u.brport_flags, mask, nlflags,
758 filter_mask, switchdev_port_vlan_fill);
Scott Feldman8793d0a2015-05-10 09:48:04 -0700759}
760EXPORT_SYMBOL_GPL(switchdev_port_bridge_getlink);
761
Scott Feldman47f83282015-05-10 09:47:56 -0700762static int switchdev_port_br_setflag(struct net_device *dev,
763 struct nlattr *nlattr,
764 unsigned long brport_flag)
765{
766 struct switchdev_attr attr = {
Jiri Pirko1f868392015-10-01 11:03:42 +0200767 .id = SWITCHDEV_ATTR_ID_PORT_BRIDGE_FLAGS,
Scott Feldman47f83282015-05-10 09:47:56 -0700768 };
769 u8 flag = nla_get_u8(nlattr);
770 int err;
771
772 err = switchdev_port_attr_get(dev, &attr);
773 if (err)
774 return err;
775
776 if (flag)
Scott Feldman42275bd2015-05-13 11:16:50 -0700777 attr.u.brport_flags |= brport_flag;
Scott Feldman47f83282015-05-10 09:47:56 -0700778 else
Scott Feldman42275bd2015-05-13 11:16:50 -0700779 attr.u.brport_flags &= ~brport_flag;
Scott Feldman47f83282015-05-10 09:47:56 -0700780
781 return switchdev_port_attr_set(dev, &attr);
782}
783
784static const struct nla_policy
785switchdev_port_bridge_policy[IFLA_BRPORT_MAX + 1] = {
786 [IFLA_BRPORT_STATE] = { .type = NLA_U8 },
787 [IFLA_BRPORT_COST] = { .type = NLA_U32 },
788 [IFLA_BRPORT_PRIORITY] = { .type = NLA_U16 },
789 [IFLA_BRPORT_MODE] = { .type = NLA_U8 },
790 [IFLA_BRPORT_GUARD] = { .type = NLA_U8 },
791 [IFLA_BRPORT_PROTECT] = { .type = NLA_U8 },
792 [IFLA_BRPORT_FAST_LEAVE] = { .type = NLA_U8 },
793 [IFLA_BRPORT_LEARNING] = { .type = NLA_U8 },
794 [IFLA_BRPORT_LEARNING_SYNC] = { .type = NLA_U8 },
795 [IFLA_BRPORT_UNICAST_FLOOD] = { .type = NLA_U8 },
796};
797
798static int switchdev_port_br_setlink_protinfo(struct net_device *dev,
799 struct nlattr *protinfo)
800{
801 struct nlattr *attr;
802 int rem;
803 int err;
804
805 err = nla_validate_nested(protinfo, IFLA_BRPORT_MAX,
806 switchdev_port_bridge_policy);
807 if (err)
808 return err;
809
810 nla_for_each_nested(attr, protinfo, rem) {
811 switch (nla_type(attr)) {
812 case IFLA_BRPORT_LEARNING:
813 err = switchdev_port_br_setflag(dev, attr,
814 BR_LEARNING);
815 break;
816 case IFLA_BRPORT_LEARNING_SYNC:
817 err = switchdev_port_br_setflag(dev, attr,
818 BR_LEARNING_SYNC);
819 break;
Ido Schimmel741af002015-10-28 10:16:54 +0100820 case IFLA_BRPORT_UNICAST_FLOOD:
821 err = switchdev_port_br_setflag(dev, attr, BR_FLOOD);
822 break;
Scott Feldman47f83282015-05-10 09:47:56 -0700823 default:
824 err = -EOPNOTSUPP;
825 break;
826 }
827 if (err)
828 return err;
829 }
830
831 return 0;
832}
833
834static int switchdev_port_br_afspec(struct net_device *dev,
835 struct nlattr *afspec,
836 int (*f)(struct net_device *dev,
Jiri Pirko648b4a92015-10-01 11:03:45 +0200837 const struct switchdev_obj *obj))
Scott Feldman47f83282015-05-10 09:47:56 -0700838{
839 struct nlattr *attr;
840 struct bridge_vlan_info *vinfo;
Jiri Pirko9e8f4a52015-10-01 11:03:46 +0200841 struct switchdev_obj_port_vlan vlan = {
842 .obj.id = SWITCHDEV_OBJ_ID_PORT_VLAN,
843 };
Scott Feldman47f83282015-05-10 09:47:56 -0700844 int rem;
845 int err;
846
847 nla_for_each_nested(attr, afspec, rem) {
848 if (nla_type(attr) != IFLA_BRIDGE_VLAN_INFO)
849 continue;
850 if (nla_len(attr) != sizeof(struct bridge_vlan_info))
851 return -EINVAL;
852 vinfo = nla_data(attr);
Nikolay Aleksandrov87aaf2c2015-10-12 14:31:01 +0200853 if (!vinfo->vid || vinfo->vid >= VLAN_VID_MASK)
854 return -EINVAL;
Vivien Didelotab069002015-09-29 12:07:17 -0400855 vlan.flags = vinfo->flags;
Scott Feldman47f83282015-05-10 09:47:56 -0700856 if (vinfo->flags & BRIDGE_VLAN_INFO_RANGE_BEGIN) {
Vivien Didelotab069002015-09-29 12:07:17 -0400857 if (vlan.vid_begin)
Scott Feldman47f83282015-05-10 09:47:56 -0700858 return -EINVAL;
Vivien Didelotab069002015-09-29 12:07:17 -0400859 vlan.vid_begin = vinfo->vid;
Nikolay Aleksandrovcc02aa82015-10-12 14:01:39 +0200860 /* don't allow range of pvids */
861 if (vlan.flags & BRIDGE_VLAN_INFO_PVID)
862 return -EINVAL;
Scott Feldman47f83282015-05-10 09:47:56 -0700863 } else if (vinfo->flags & BRIDGE_VLAN_INFO_RANGE_END) {
Vivien Didelotab069002015-09-29 12:07:17 -0400864 if (!vlan.vid_begin)
Scott Feldman47f83282015-05-10 09:47:56 -0700865 return -EINVAL;
Vivien Didelotab069002015-09-29 12:07:17 -0400866 vlan.vid_end = vinfo->vid;
867 if (vlan.vid_end <= vlan.vid_begin)
Scott Feldman47f83282015-05-10 09:47:56 -0700868 return -EINVAL;
Jiri Pirko9e8f4a52015-10-01 11:03:46 +0200869 err = f(dev, &vlan.obj);
Scott Feldman47f83282015-05-10 09:47:56 -0700870 if (err)
871 return err;
Scott Feldman3a7bde52015-10-28 23:17:30 -0700872 vlan.vid_begin = 0;
Scott Feldman47f83282015-05-10 09:47:56 -0700873 } else {
Vivien Didelotab069002015-09-29 12:07:17 -0400874 if (vlan.vid_begin)
Scott Feldman47f83282015-05-10 09:47:56 -0700875 return -EINVAL;
Vivien Didelotab069002015-09-29 12:07:17 -0400876 vlan.vid_begin = vinfo->vid;
877 vlan.vid_end = vinfo->vid;
Jiri Pirko9e8f4a52015-10-01 11:03:46 +0200878 err = f(dev, &vlan.obj);
Scott Feldman47f83282015-05-10 09:47:56 -0700879 if (err)
880 return err;
Scott Feldman3a7bde52015-10-28 23:17:30 -0700881 vlan.vid_begin = 0;
Scott Feldman47f83282015-05-10 09:47:56 -0700882 }
883 }
884
885 return 0;
886}
887
Roopa Prabhu8a44dbb2015-01-29 22:40:13 -0800888/**
Scott Feldman47f83282015-05-10 09:47:56 -0700889 * switchdev_port_bridge_setlink - Set bridge port attributes
Roopa Prabhu8a44dbb2015-01-29 22:40:13 -0800890 *
891 * @dev: port device
Scott Feldman47f83282015-05-10 09:47:56 -0700892 * @nlh: netlink header
893 * @flags: netlink flags
Roopa Prabhu8a44dbb2015-01-29 22:40:13 -0800894 *
Scott Feldman47f83282015-05-10 09:47:56 -0700895 * Called for SELF on rtnl_bridge_setlink to set bridge port
896 * attributes.
Roopa Prabhu8a44dbb2015-01-29 22:40:13 -0800897 */
Jiri Pirkoebb9a032015-05-10 09:47:46 -0700898int switchdev_port_bridge_setlink(struct net_device *dev,
899 struct nlmsghdr *nlh, u16 flags)
Roopa Prabhu8a44dbb2015-01-29 22:40:13 -0800900{
Scott Feldman47f83282015-05-10 09:47:56 -0700901 struct nlattr *protinfo;
902 struct nlattr *afspec;
903 int err = 0;
Roopa Prabhu8a44dbb2015-01-29 22:40:13 -0800904
Scott Feldman47f83282015-05-10 09:47:56 -0700905 protinfo = nlmsg_find_attr(nlh, sizeof(struct ifinfomsg),
906 IFLA_PROTINFO);
907 if (protinfo) {
908 err = switchdev_port_br_setlink_protinfo(dev, protinfo);
909 if (err)
910 return err;
911 }
Roopa Prabhu8a44dbb2015-01-29 22:40:13 -0800912
Scott Feldman47f83282015-05-10 09:47:56 -0700913 afspec = nlmsg_find_attr(nlh, sizeof(struct ifinfomsg),
914 IFLA_AF_SPEC);
915 if (afspec)
916 err = switchdev_port_br_afspec(dev, afspec,
917 switchdev_port_obj_add);
Roopa Prabhu8a44dbb2015-01-29 22:40:13 -0800918
Scott Feldman47f83282015-05-10 09:47:56 -0700919 return err;
Roopa Prabhu8a44dbb2015-01-29 22:40:13 -0800920}
Jiri Pirkoebb9a032015-05-10 09:47:46 -0700921EXPORT_SYMBOL_GPL(switchdev_port_bridge_setlink);
Roopa Prabhu8a44dbb2015-01-29 22:40:13 -0800922
923/**
Scott Feldman5c34e022015-05-10 09:48:00 -0700924 * switchdev_port_bridge_dellink - Set bridge port attributes
Roopa Prabhu8a44dbb2015-01-29 22:40:13 -0800925 *
926 * @dev: port device
Scott Feldman5c34e022015-05-10 09:48:00 -0700927 * @nlh: netlink header
928 * @flags: netlink flags
Roopa Prabhu8a44dbb2015-01-29 22:40:13 -0800929 *
Scott Feldman5c34e022015-05-10 09:48:00 -0700930 * Called for SELF on rtnl_bridge_dellink to set bridge port
931 * attributes.
Roopa Prabhu8a44dbb2015-01-29 22:40:13 -0800932 */
Jiri Pirkoebb9a032015-05-10 09:47:46 -0700933int switchdev_port_bridge_dellink(struct net_device *dev,
934 struct nlmsghdr *nlh, u16 flags)
Roopa Prabhu8a44dbb2015-01-29 22:40:13 -0800935{
Scott Feldman5c34e022015-05-10 09:48:00 -0700936 struct nlattr *afspec;
Roopa Prabhu8a44dbb2015-01-29 22:40:13 -0800937
Scott Feldman5c34e022015-05-10 09:48:00 -0700938 afspec = nlmsg_find_attr(nlh, sizeof(struct ifinfomsg),
939 IFLA_AF_SPEC);
940 if (afspec)
941 return switchdev_port_br_afspec(dev, afspec,
942 switchdev_port_obj_del);
Roopa Prabhu8a44dbb2015-01-29 22:40:13 -0800943
Scott Feldman5c34e022015-05-10 09:48:00 -0700944 return 0;
Roopa Prabhu8a44dbb2015-01-29 22:40:13 -0800945}
Jiri Pirkoebb9a032015-05-10 09:47:46 -0700946EXPORT_SYMBOL_GPL(switchdev_port_bridge_dellink);
Roopa Prabhu8a44dbb2015-01-29 22:40:13 -0800947
Samudrala, Sridhar45d41222015-05-13 21:55:43 -0700948/**
949 * switchdev_port_fdb_add - Add FDB (MAC/VLAN) entry to port
950 *
951 * @ndmsg: netlink hdr
952 * @nlattr: netlink attributes
953 * @dev: port device
954 * @addr: MAC address to add
955 * @vid: VLAN to add
956 *
957 * Add FDB entry to switch device.
958 */
959int switchdev_port_fdb_add(struct ndmsg *ndm, struct nlattr *tb[],
960 struct net_device *dev, const unsigned char *addr,
961 u16 vid, u16 nlm_flags)
962{
Jiri Pirko52ba57c2015-10-01 11:03:44 +0200963 struct switchdev_obj_port_fdb fdb = {
Jiri Pirko9e8f4a52015-10-01 11:03:46 +0200964 .obj.id = SWITCHDEV_OBJ_ID_PORT_FDB,
Vivien Didelotab069002015-09-29 12:07:17 -0400965 .vid = vid,
Samudrala, Sridhar45d41222015-05-13 21:55:43 -0700966 };
967
Jiri Pirko850d0cb2015-10-14 19:40:51 +0200968 ether_addr_copy(fdb.addr, addr);
Jiri Pirko9e8f4a52015-10-01 11:03:46 +0200969 return switchdev_port_obj_add(dev, &fdb.obj);
Samudrala, Sridhar45d41222015-05-13 21:55:43 -0700970}
971EXPORT_SYMBOL_GPL(switchdev_port_fdb_add);
972
973/**
974 * switchdev_port_fdb_del - Delete FDB (MAC/VLAN) entry from port
975 *
976 * @ndmsg: netlink hdr
977 * @nlattr: netlink attributes
978 * @dev: port device
979 * @addr: MAC address to delete
980 * @vid: VLAN to delete
981 *
982 * Delete FDB entry from switch device.
983 */
984int switchdev_port_fdb_del(struct ndmsg *ndm, struct nlattr *tb[],
985 struct net_device *dev, const unsigned char *addr,
986 u16 vid)
987{
Jiri Pirko52ba57c2015-10-01 11:03:44 +0200988 struct switchdev_obj_port_fdb fdb = {
Jiri Pirko9e8f4a52015-10-01 11:03:46 +0200989 .obj.id = SWITCHDEV_OBJ_ID_PORT_FDB,
Vivien Didelotab069002015-09-29 12:07:17 -0400990 .vid = vid,
Samudrala, Sridhar45d41222015-05-13 21:55:43 -0700991 };
992
Jiri Pirko850d0cb2015-10-14 19:40:51 +0200993 ether_addr_copy(fdb.addr, addr);
Jiri Pirko9e8f4a52015-10-01 11:03:46 +0200994 return switchdev_port_obj_del(dev, &fdb.obj);
Samudrala, Sridhar45d41222015-05-13 21:55:43 -0700995}
996EXPORT_SYMBOL_GPL(switchdev_port_fdb_del);
997
998struct switchdev_fdb_dump {
Jiri Pirko52ba57c2015-10-01 11:03:44 +0200999 struct switchdev_obj_port_fdb fdb;
Vivien Didelote02a06b22015-09-29 12:07:14 -04001000 struct net_device *dev;
Samudrala, Sridhar45d41222015-05-13 21:55:43 -07001001 struct sk_buff *skb;
1002 struct netlink_callback *cb;
Samudrala, Sridhar45d41222015-05-13 21:55:43 -07001003 int idx;
1004};
1005
Jiri Pirko648b4a92015-10-01 11:03:45 +02001006static int switchdev_port_fdb_dump_cb(struct switchdev_obj *obj)
Samudrala, Sridhar45d41222015-05-13 21:55:43 -07001007{
Jiri Pirko648b4a92015-10-01 11:03:45 +02001008 struct switchdev_obj_port_fdb *fdb = SWITCHDEV_OBJ_PORT_FDB(obj);
Samudrala, Sridhar45d41222015-05-13 21:55:43 -07001009 struct switchdev_fdb_dump *dump =
Vivien Didelot25f07ad2015-09-29 12:07:16 -04001010 container_of(fdb, struct switchdev_fdb_dump, fdb);
Samudrala, Sridhar45d41222015-05-13 21:55:43 -07001011 u32 portid = NETLINK_CB(dump->cb->skb).portid;
1012 u32 seq = dump->cb->nlh->nlmsg_seq;
1013 struct nlmsghdr *nlh;
1014 struct ndmsg *ndm;
Samudrala, Sridhar45d41222015-05-13 21:55:43 -07001015
1016 if (dump->idx < dump->cb->args[0])
1017 goto skip;
1018
Samudrala, Sridhar45d41222015-05-13 21:55:43 -07001019 nlh = nlmsg_put(dump->skb, portid, seq, RTM_NEWNEIGH,
1020 sizeof(*ndm), NLM_F_MULTI);
1021 if (!nlh)
1022 return -EMSGSIZE;
1023
1024 ndm = nlmsg_data(nlh);
1025 ndm->ndm_family = AF_BRIDGE;
1026 ndm->ndm_pad1 = 0;
1027 ndm->ndm_pad2 = 0;
1028 ndm->ndm_flags = NTF_SELF;
1029 ndm->ndm_type = 0;
Vivien Didelote02a06b22015-09-29 12:07:14 -04001030 ndm->ndm_ifindex = dump->dev->ifindex;
Vivien Didelot25f07ad2015-09-29 12:07:16 -04001031 ndm->ndm_state = fdb->ndm_state;
Samudrala, Sridhar45d41222015-05-13 21:55:43 -07001032
Vivien Didelot25f07ad2015-09-29 12:07:16 -04001033 if (nla_put(dump->skb, NDA_LLADDR, ETH_ALEN, fdb->addr))
Samudrala, Sridhar45d41222015-05-13 21:55:43 -07001034 goto nla_put_failure;
1035
Vivien Didelot25f07ad2015-09-29 12:07:16 -04001036 if (fdb->vid && nla_put_u16(dump->skb, NDA_VLAN, fdb->vid))
Samudrala, Sridhar45d41222015-05-13 21:55:43 -07001037 goto nla_put_failure;
1038
1039 nlmsg_end(dump->skb, nlh);
1040
1041skip:
1042 dump->idx++;
1043 return 0;
1044
1045nla_put_failure:
1046 nlmsg_cancel(dump->skb, nlh);
1047 return -EMSGSIZE;
1048}
1049
1050/**
1051 * switchdev_port_fdb_dump - Dump port FDB (MAC/VLAN) entries
1052 *
1053 * @skb: netlink skb
1054 * @cb: netlink callback
1055 * @dev: port device
1056 * @filter_dev: filter device
1057 * @idx:
1058 *
1059 * Delete FDB entry from switch device.
1060 */
1061int switchdev_port_fdb_dump(struct sk_buff *skb, struct netlink_callback *cb,
1062 struct net_device *dev,
1063 struct net_device *filter_dev, int idx)
1064{
1065 struct switchdev_fdb_dump dump = {
Jiri Pirko9e8f4a52015-10-01 11:03:46 +02001066 .fdb.obj.id = SWITCHDEV_OBJ_ID_PORT_FDB,
Vivien Didelote02a06b22015-09-29 12:07:14 -04001067 .dev = dev,
Samudrala, Sridhar45d41222015-05-13 21:55:43 -07001068 .skb = skb,
1069 .cb = cb,
Samudrala, Sridhar45d41222015-05-13 21:55:43 -07001070 .idx = idx,
1071 };
Samudrala, Sridhar45d41222015-05-13 21:55:43 -07001072
Jiri Pirko9e8f4a52015-10-01 11:03:46 +02001073 switchdev_port_obj_dump(dev, &dump.fdb.obj, switchdev_port_fdb_dump_cb);
Samudrala, Sridhar45d41222015-05-13 21:55:43 -07001074 return dump.idx;
1075}
1076EXPORT_SYMBOL_GPL(switchdev_port_fdb_dump);
1077
Jiri Pirkoebb9a032015-05-10 09:47:46 -07001078static struct net_device *switchdev_get_lowest_dev(struct net_device *dev)
Scott Feldmanb5d6fbd2015-03-05 21:21:17 -08001079{
Jiri Pirko9d47c0a2015-05-10 09:47:47 -07001080 const struct switchdev_ops *ops = dev->switchdev_ops;
Scott Feldmanb5d6fbd2015-03-05 21:21:17 -08001081 struct net_device *lower_dev;
1082 struct net_device *port_dev;
1083 struct list_head *iter;
1084
1085 /* Recusively search down until we find a sw port dev.
Scott Feldmanf8e20a92015-05-10 09:47:49 -07001086 * (A sw port dev supports switchdev_port_attr_get).
Scott Feldmanb5d6fbd2015-03-05 21:21:17 -08001087 */
1088
Scott Feldmanf8e20a92015-05-10 09:47:49 -07001089 if (ops && ops->switchdev_port_attr_get)
Scott Feldmanb5d6fbd2015-03-05 21:21:17 -08001090 return dev;
1091
1092 netdev_for_each_lower_dev(dev, lower_dev, iter) {
Jiri Pirkoebb9a032015-05-10 09:47:46 -07001093 port_dev = switchdev_get_lowest_dev(lower_dev);
Scott Feldmanb5d6fbd2015-03-05 21:21:17 -08001094 if (port_dev)
1095 return port_dev;
1096 }
1097
1098 return NULL;
1099}
1100
Jiri Pirkoebb9a032015-05-10 09:47:46 -07001101static struct net_device *switchdev_get_dev_by_nhs(struct fib_info *fi)
Scott Feldmanb5d6fbd2015-03-05 21:21:17 -08001102{
Scott Feldmanf8e20a92015-05-10 09:47:49 -07001103 struct switchdev_attr attr = {
Jiri Pirko1f868392015-10-01 11:03:42 +02001104 .id = SWITCHDEV_ATTR_ID_PORT_PARENT_ID,
Scott Feldmanf8e20a92015-05-10 09:47:49 -07001105 };
1106 struct switchdev_attr prev_attr;
Scott Feldmanb5d6fbd2015-03-05 21:21:17 -08001107 struct net_device *dev = NULL;
1108 int nhsel;
1109
Jiri Pirko771acac2015-10-14 19:40:55 +02001110 ASSERT_RTNL();
1111
Scott Feldmanb5d6fbd2015-03-05 21:21:17 -08001112 /* For this route, all nexthop devs must be on the same switch. */
1113
1114 for (nhsel = 0; nhsel < fi->fib_nhs; nhsel++) {
1115 const struct fib_nh *nh = &fi->fib_nh[nhsel];
1116
1117 if (!nh->nh_dev)
1118 return NULL;
1119
Jiri Pirkoebb9a032015-05-10 09:47:46 -07001120 dev = switchdev_get_lowest_dev(nh->nh_dev);
Scott Feldmanb5d6fbd2015-03-05 21:21:17 -08001121 if (!dev)
1122 return NULL;
1123
Scott Feldmanf8e20a92015-05-10 09:47:49 -07001124 if (switchdev_port_attr_get(dev, &attr))
Scott Feldmanb5d6fbd2015-03-05 21:21:17 -08001125 return NULL;
1126
Scott Feldmand754f982015-07-18 18:24:49 -07001127 if (nhsel > 0 &&
1128 !netdev_phys_item_id_same(&prev_attr.u.ppid, &attr.u.ppid))
Scott Feldmanb5d6fbd2015-03-05 21:21:17 -08001129 return NULL;
Scott Feldmanb5d6fbd2015-03-05 21:21:17 -08001130
Scott Feldmanf8e20a92015-05-10 09:47:49 -07001131 prev_attr = attr;
Scott Feldmanb5d6fbd2015-03-05 21:21:17 -08001132 }
1133
1134 return dev;
1135}
1136
Scott Feldman5e8d9042015-03-05 21:21:15 -08001137/**
Scott Feldman7616dcb2015-06-03 20:43:43 -07001138 * switchdev_fib_ipv4_add - Add/modify switch IPv4 route entry
Scott Feldman5e8d9042015-03-05 21:21:15 -08001139 *
1140 * @dst: route's IPv4 destination address
1141 * @dst_len: destination address length (prefix length)
1142 * @fi: route FIB info structure
1143 * @tos: route TOS
1144 * @type: route type
Scott Feldmanf8f21472015-03-09 13:59:09 -07001145 * @nlflags: netlink flags passed in (NLM_F_*)
Scott Feldman5e8d9042015-03-05 21:21:15 -08001146 * @tb_id: route table ID
1147 *
Scott Feldman7616dcb2015-06-03 20:43:43 -07001148 * Add/modify switch IPv4 route entry.
Scott Feldman5e8d9042015-03-05 21:21:15 -08001149 */
Jiri Pirkoebb9a032015-05-10 09:47:46 -07001150int switchdev_fib_ipv4_add(u32 dst, int dst_len, struct fib_info *fi,
1151 u8 tos, u8 type, u32 nlflags, u32 tb_id)
Scott Feldman5e8d9042015-03-05 21:21:15 -08001152{
Vivien Didelotab069002015-09-29 12:07:17 -04001153 struct switchdev_obj_ipv4_fib ipv4_fib = {
Jiri Pirko9e8f4a52015-10-01 11:03:46 +02001154 .obj.id = SWITCHDEV_OBJ_ID_IPV4_FIB,
Vivien Didelotab069002015-09-29 12:07:17 -04001155 .dst = dst,
1156 .dst_len = dst_len,
Vivien Didelotab069002015-09-29 12:07:17 -04001157 .tos = tos,
1158 .type = type,
1159 .nlflags = nlflags,
1160 .tb_id = tb_id,
Scott Feldman58c2cb12015-05-10 09:48:06 -07001161 };
Scott Feldmanb5d6fbd2015-03-05 21:21:17 -08001162 struct net_device *dev;
Scott Feldmanb5d6fbd2015-03-05 21:21:17 -08001163 int err = 0;
1164
Jiri Pirko850d0cb2015-10-14 19:40:51 +02001165 memcpy(&ipv4_fib.fi, fi, sizeof(ipv4_fib.fi));
1166
Scott Feldman8e05fd72015-03-05 21:21:19 -08001167 /* Don't offload route if using custom ip rules or if
1168 * IPv4 FIB offloading has been disabled completely.
1169 */
1170
Scott Feldmane1315db2015-03-06 01:14:36 -08001171#ifdef CONFIG_IP_MULTIPLE_TABLES
1172 if (fi->fib_net->ipv4.fib_has_custom_rules)
1173 return 0;
1174#endif
1175
1176 if (fi->fib_net->ipv4.fib_offload_disabled)
Scott Feldman104616e2015-03-05 21:21:16 -08001177 return 0;
1178
Jiri Pirkoebb9a032015-05-10 09:47:46 -07001179 dev = switchdev_get_dev_by_nhs(fi);
Scott Feldmanb5d6fbd2015-03-05 21:21:17 -08001180 if (!dev)
1181 return 0;
Scott Feldmanb5d6fbd2015-03-05 21:21:17 -08001182
Jiri Pirko9e8f4a52015-10-01 11:03:46 +02001183 err = switchdev_port_obj_add(dev, &ipv4_fib.obj);
Scott Feldman58c2cb12015-05-10 09:48:06 -07001184 if (!err)
David S. Miller36583eb2015-05-23 01:22:35 -04001185 fi->fib_flags |= RTNH_F_OFFLOAD;
Scott Feldmanb5d6fbd2015-03-05 21:21:17 -08001186
Scott Feldmanaf201f72015-06-10 17:04:49 -07001187 return err == -EOPNOTSUPP ? 0 : err;
Scott Feldman5e8d9042015-03-05 21:21:15 -08001188}
Jiri Pirkoebb9a032015-05-10 09:47:46 -07001189EXPORT_SYMBOL_GPL(switchdev_fib_ipv4_add);
Scott Feldman5e8d9042015-03-05 21:21:15 -08001190
1191/**
Jiri Pirkoebb9a032015-05-10 09:47:46 -07001192 * switchdev_fib_ipv4_del - Delete IPv4 route entry from switch
Scott Feldman5e8d9042015-03-05 21:21:15 -08001193 *
1194 * @dst: route's IPv4 destination address
1195 * @dst_len: destination address length (prefix length)
1196 * @fi: route FIB info structure
1197 * @tos: route TOS
1198 * @type: route type
1199 * @tb_id: route table ID
1200 *
1201 * Delete IPv4 route entry from switch device.
1202 */
Jiri Pirkoebb9a032015-05-10 09:47:46 -07001203int switchdev_fib_ipv4_del(u32 dst, int dst_len, struct fib_info *fi,
1204 u8 tos, u8 type, u32 tb_id)
Scott Feldman5e8d9042015-03-05 21:21:15 -08001205{
Vivien Didelotab069002015-09-29 12:07:17 -04001206 struct switchdev_obj_ipv4_fib ipv4_fib = {
Jiri Pirko9e8f4a52015-10-01 11:03:46 +02001207 .obj.id = SWITCHDEV_OBJ_ID_IPV4_FIB,
Vivien Didelotab069002015-09-29 12:07:17 -04001208 .dst = dst,
1209 .dst_len = dst_len,
Vivien Didelotab069002015-09-29 12:07:17 -04001210 .tos = tos,
1211 .type = type,
1212 .nlflags = 0,
1213 .tb_id = tb_id,
Scott Feldman58c2cb12015-05-10 09:48:06 -07001214 };
Scott Feldmanb5d6fbd2015-03-05 21:21:17 -08001215 struct net_device *dev;
Scott Feldmanb5d6fbd2015-03-05 21:21:17 -08001216 int err = 0;
1217
Jiri Pirko850d0cb2015-10-14 19:40:51 +02001218 memcpy(&ipv4_fib.fi, fi, sizeof(ipv4_fib.fi));
1219
Roopa Prabhueea39942015-05-13 21:17:41 -07001220 if (!(fi->fib_flags & RTNH_F_OFFLOAD))
Scott Feldmanb5d6fbd2015-03-05 21:21:17 -08001221 return 0;
1222
Jiri Pirkoebb9a032015-05-10 09:47:46 -07001223 dev = switchdev_get_dev_by_nhs(fi);
Scott Feldmanb5d6fbd2015-03-05 21:21:17 -08001224 if (!dev)
1225 return 0;
Scott Feldmanb5d6fbd2015-03-05 21:21:17 -08001226
Jiri Pirko9e8f4a52015-10-01 11:03:46 +02001227 err = switchdev_port_obj_del(dev, &ipv4_fib.obj);
Scott Feldman58c2cb12015-05-10 09:48:06 -07001228 if (!err)
David S. Miller36583eb2015-05-23 01:22:35 -04001229 fi->fib_flags &= ~RTNH_F_OFFLOAD;
Scott Feldmanb5d6fbd2015-03-05 21:21:17 -08001230
Scott Feldmanaf201f72015-06-10 17:04:49 -07001231 return err == -EOPNOTSUPP ? 0 : err;
Scott Feldman5e8d9042015-03-05 21:21:15 -08001232}
Jiri Pirkoebb9a032015-05-10 09:47:46 -07001233EXPORT_SYMBOL_GPL(switchdev_fib_ipv4_del);
Scott Feldman8e05fd72015-03-05 21:21:19 -08001234
1235/**
Jiri Pirkoebb9a032015-05-10 09:47:46 -07001236 * switchdev_fib_ipv4_abort - Abort an IPv4 FIB operation
Scott Feldman8e05fd72015-03-05 21:21:19 -08001237 *
1238 * @fi: route FIB info structure
1239 */
Jiri Pirkoebb9a032015-05-10 09:47:46 -07001240void switchdev_fib_ipv4_abort(struct fib_info *fi)
Scott Feldman8e05fd72015-03-05 21:21:19 -08001241{
1242 /* There was a problem installing this route to the offload
1243 * device. For now, until we come up with more refined
1244 * policy handling, abruptly end IPv4 fib offloading for
1245 * for entire net by flushing offload device(s) of all
1246 * IPv4 routes, and mark IPv4 fib offloading broken from
1247 * this point forward.
1248 */
1249
1250 fib_flush_external(fi->fib_net);
1251 fi->fib_net->ipv4.fib_offload_disabled = true;
1252}
Jiri Pirkoebb9a032015-05-10 09:47:46 -07001253EXPORT_SYMBOL_GPL(switchdev_fib_ipv4_abort);
Scott Feldman1a3b2ec2015-07-18 18:24:50 -07001254
1255static bool switchdev_port_same_parent_id(struct net_device *a,
1256 struct net_device *b)
1257{
1258 struct switchdev_attr a_attr = {
Jiri Pirko1f868392015-10-01 11:03:42 +02001259 .id = SWITCHDEV_ATTR_ID_PORT_PARENT_ID,
Scott Feldman1a3b2ec2015-07-18 18:24:50 -07001260 .flags = SWITCHDEV_F_NO_RECURSE,
1261 };
1262 struct switchdev_attr b_attr = {
Jiri Pirko1f868392015-10-01 11:03:42 +02001263 .id = SWITCHDEV_ATTR_ID_PORT_PARENT_ID,
Scott Feldman1a3b2ec2015-07-18 18:24:50 -07001264 .flags = SWITCHDEV_F_NO_RECURSE,
1265 };
1266
1267 if (switchdev_port_attr_get(a, &a_attr) ||
1268 switchdev_port_attr_get(b, &b_attr))
1269 return false;
1270
1271 return netdev_phys_item_id_same(&a_attr.u.ppid, &b_attr.u.ppid);
1272}
1273
1274static u32 switchdev_port_fwd_mark_get(struct net_device *dev,
1275 struct net_device *group_dev)
1276{
1277 struct net_device *lower_dev;
1278 struct list_head *iter;
1279
1280 netdev_for_each_lower_dev(group_dev, lower_dev, iter) {
1281 if (lower_dev == dev)
1282 continue;
1283 if (switchdev_port_same_parent_id(dev, lower_dev))
1284 return lower_dev->offload_fwd_mark;
1285 return switchdev_port_fwd_mark_get(dev, lower_dev);
1286 }
1287
1288 return dev->ifindex;
1289}
1290
1291static void switchdev_port_fwd_mark_reset(struct net_device *group_dev,
1292 u32 old_mark, u32 *reset_mark)
1293{
1294 struct net_device *lower_dev;
1295 struct list_head *iter;
1296
1297 netdev_for_each_lower_dev(group_dev, lower_dev, iter) {
1298 if (lower_dev->offload_fwd_mark == old_mark) {
1299 if (!*reset_mark)
1300 *reset_mark = lower_dev->ifindex;
1301 lower_dev->offload_fwd_mark = *reset_mark;
1302 }
1303 switchdev_port_fwd_mark_reset(lower_dev, old_mark, reset_mark);
1304 }
1305}
1306
1307/**
1308 * switchdev_port_fwd_mark_set - Set port offload forwarding mark
1309 *
1310 * @dev: port device
1311 * @group_dev: containing device
1312 * @joining: true if dev is joining group; false if leaving group
1313 *
1314 * An ungrouped port's offload mark is just its ifindex. A grouped
1315 * port's (member of a bridge, for example) offload mark is the ifindex
1316 * of one of the ports in the group with the same parent (switch) ID.
1317 * Ports on the same device in the same group will have the same mark.
1318 *
1319 * Example:
1320 *
1321 * br0 ifindex=9
1322 * sw1p1 ifindex=2 mark=2
1323 * sw1p2 ifindex=3 mark=2
1324 * sw2p1 ifindex=4 mark=5
1325 * sw2p2 ifindex=5 mark=5
1326 *
1327 * If sw2p2 leaves the bridge, we'll have:
1328 *
1329 * br0 ifindex=9
1330 * sw1p1 ifindex=2 mark=2
1331 * sw1p2 ifindex=3 mark=2
1332 * sw2p1 ifindex=4 mark=4
1333 * sw2p2 ifindex=5 mark=5
1334 */
1335void switchdev_port_fwd_mark_set(struct net_device *dev,
1336 struct net_device *group_dev,
1337 bool joining)
1338{
1339 u32 mark = dev->ifindex;
1340 u32 reset_mark = 0;
1341
Jiri Pirko771acac2015-10-14 19:40:55 +02001342 if (group_dev) {
1343 ASSERT_RTNL();
1344 if (joining)
1345 mark = switchdev_port_fwd_mark_get(dev, group_dev);
1346 else if (dev->offload_fwd_mark == mark)
Scott Feldman1a3b2ec2015-07-18 18:24:50 -07001347 /* Ohoh, this port was the mark reference port,
1348 * but it's leaving the group, so reset the
1349 * mark for the remaining ports in the group.
1350 */
1351 switchdev_port_fwd_mark_reset(group_dev, mark,
1352 &reset_mark);
1353 }
1354
1355 dev->offload_fwd_mark = mark;
1356}
1357EXPORT_SYMBOL_GPL(switchdev_port_fwd_mark_set);