blob: fe23fac4dc4bddbb2c86e377bc962d84525c9612 [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);
Elad Raz4d41e1252016-01-10 21:06:22 +0100346 case SWITCHDEV_OBJ_ID_PORT_MDB:
347 return sizeof(struct switchdev_obj_port_mdb);
Andrew Lunn47d5b6d2017-11-09 23:10:59 +0100348 case SWITCHDEV_OBJ_ID_HOST_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
Petr Machatad17d9f52018-11-22 23:32:57 +0000356static int switchdev_port_obj_notify(enum switchdev_notifier_type nt,
357 struct net_device *dev,
358 const struct switchdev_obj *obj,
359 struct switchdev_trans *trans)
Scott Feldman491d0f12015-05-10 09:47:52 -0700360{
Petr Machatad17d9f52018-11-22 23:32:57 +0000361 int rc;
362 int err;
Scott Feldman491d0f12015-05-10 09:47:52 -0700363
Petr Machatad17d9f52018-11-22 23:32:57 +0000364 struct switchdev_notifier_port_obj_info obj_info = {
365 .obj = obj,
366 .trans = trans,
367 .handled = false,
368 };
Scott Feldman491d0f12015-05-10 09:47:52 -0700369
Petr Machatad17d9f52018-11-22 23:32:57 +0000370 rc = call_switchdev_blocking_notifiers(nt, dev, &obj_info.info);
371 err = notifier_to_errno(rc);
372 if (err) {
373 WARN_ON(!obj_info.handled);
374 return err;
Scott Feldman491d0f12015-05-10 09:47:52 -0700375 }
Petr Machatad17d9f52018-11-22 23:32:57 +0000376 if (!obj_info.handled)
377 return -EOPNOTSUPP;
378 return 0;
Scott Feldman491d0f12015-05-10 09:47:52 -0700379}
380
Jiri Pirko4d429c52015-10-14 19:40:52 +0200381static int switchdev_port_obj_add_now(struct net_device *dev,
382 const struct switchdev_obj *obj)
Scott Feldman491d0f12015-05-10 09:47:52 -0700383{
Jiri Pirko7ea6eb32015-09-24 10:02:41 +0200384 struct switchdev_trans trans;
Scott Feldman491d0f12015-05-10 09:47:52 -0700385 int err;
386
387 ASSERT_RTNL();
388
Jiri Pirko7ea6eb32015-09-24 10:02:41 +0200389 switchdev_trans_init(&trans);
390
Scott Feldman491d0f12015-05-10 09:47:52 -0700391 /* Phase I: prepare for obj add. Driver/device should fail
392 * here if there are going to be issues in the commit phase,
393 * such as lack of resources or support. The driver/device
394 * should reserve resources needed for the commit phase here,
395 * but should not commit the obj.
396 */
397
Jiri Pirkof623ab72015-09-24 10:02:49 +0200398 trans.ph_prepare = true;
Petr Machatad17d9f52018-11-22 23:32:57 +0000399 err = switchdev_port_obj_notify(SWITCHDEV_PORT_OBJ_ADD,
400 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;
Petr Machatad17d9f52018-11-22 23:32:57 +0000419 err = switchdev_port_obj_notify(SWITCHDEV_PORT_OBJ_ADD,
420 dev, obj, &trans);
Jiri Pirko9e8f4a52015-10-01 11:03:46 +0200421 WARN(err, "%s: Commit of object (id=%d) failed.\n", dev->name, obj->id);
Jiri Pirko7ea6eb32015-09-24 10:02:41 +0200422 switchdev_trans_items_warn_destroy(dev, &trans);
Scott Feldman491d0f12015-05-10 09:47:52 -0700423
424 return err;
425}
Jiri Pirko4d429c52015-10-14 19:40:52 +0200426
427static void switchdev_port_obj_add_deferred(struct net_device *dev,
428 const void *data)
429{
430 const struct switchdev_obj *obj = data;
431 int err;
432
433 err = switchdev_port_obj_add_now(dev, obj);
434 if (err && err != -EOPNOTSUPP)
435 netdev_err(dev, "failed (err=%d) to add object (id=%d)\n",
436 err, obj->id);
Elad Raz7ceb2af2016-04-21 12:52:43 +0200437 if (obj->complete)
438 obj->complete(dev, err, obj->complete_priv);
Jiri Pirko4d429c52015-10-14 19:40:52 +0200439}
440
441static int switchdev_port_obj_add_defer(struct net_device *dev,
442 const struct switchdev_obj *obj)
443{
Scott Feldmane258d912015-10-28 23:17:31 -0700444 return switchdev_deferred_enqueue(dev, obj, switchdev_obj_size(obj),
Jiri Pirko4d429c52015-10-14 19:40:52 +0200445 switchdev_port_obj_add_deferred);
446}
Scott Feldman491d0f12015-05-10 09:47:52 -0700447
448/**
Jiri Pirko4d429c52015-10-14 19:40:52 +0200449 * switchdev_port_obj_add - Add port object
Scott Feldman491d0f12015-05-10 09:47:52 -0700450 *
451 * @dev: port device
Vivien Didelotab069002015-09-29 12:07:17 -0400452 * @id: object ID
Jiri Pirko4d429c52015-10-14 19:40:52 +0200453 * @obj: object to add
454 *
455 * Use a 2-phase prepare-commit transaction model to ensure
456 * system is not left in a partially updated state due to
457 * failure from driver/device.
458 *
459 * rtnl_lock must be held and must not be in atomic section,
460 * in case SWITCHDEV_F_DEFER flag is not set.
Scott Feldman491d0f12015-05-10 09:47:52 -0700461 */
Jiri Pirko4d429c52015-10-14 19:40:52 +0200462int switchdev_port_obj_add(struct net_device *dev,
Jiri Pirko648b4a92015-10-01 11:03:45 +0200463 const struct switchdev_obj *obj)
Scott Feldman491d0f12015-05-10 09:47:52 -0700464{
Jiri Pirko4d429c52015-10-14 19:40:52 +0200465 if (obj->flags & SWITCHDEV_F_DEFER)
466 return switchdev_port_obj_add_defer(dev, obj);
467 ASSERT_RTNL();
468 return switchdev_port_obj_add_now(dev, obj);
469}
470EXPORT_SYMBOL_GPL(switchdev_port_obj_add);
471
472static int switchdev_port_obj_del_now(struct net_device *dev,
473 const struct switchdev_obj *obj)
474{
Petr Machatad17d9f52018-11-22 23:32:57 +0000475 return switchdev_port_obj_notify(SWITCHDEV_PORT_OBJ_DEL,
476 dev, obj, NULL);
Scott Feldman491d0f12015-05-10 09:47:52 -0700477}
Jiri Pirko4d429c52015-10-14 19:40:52 +0200478
479static void switchdev_port_obj_del_deferred(struct net_device *dev,
480 const void *data)
481{
482 const struct switchdev_obj *obj = data;
483 int err;
484
485 err = switchdev_port_obj_del_now(dev, obj);
486 if (err && err != -EOPNOTSUPP)
487 netdev_err(dev, "failed (err=%d) to del object (id=%d)\n",
488 err, obj->id);
Elad Raz7ceb2af2016-04-21 12:52:43 +0200489 if (obj->complete)
490 obj->complete(dev, err, obj->complete_priv);
Jiri Pirko4d429c52015-10-14 19:40:52 +0200491}
492
493static int switchdev_port_obj_del_defer(struct net_device *dev,
494 const struct switchdev_obj *obj)
495{
Scott Feldmane258d912015-10-28 23:17:31 -0700496 return switchdev_deferred_enqueue(dev, obj, switchdev_obj_size(obj),
Jiri Pirko4d429c52015-10-14 19:40:52 +0200497 switchdev_port_obj_del_deferred);
498}
499
500/**
501 * switchdev_port_obj_del - Delete port object
502 *
503 * @dev: port device
504 * @id: object ID
505 * @obj: object to delete
506 *
507 * rtnl_lock must be held and must not be in atomic section,
508 * in case SWITCHDEV_F_DEFER flag is not set.
509 */
510int switchdev_port_obj_del(struct net_device *dev,
511 const struct switchdev_obj *obj)
512{
513 if (obj->flags & SWITCHDEV_F_DEFER)
514 return switchdev_port_obj_del_defer(dev, obj);
515 ASSERT_RTNL();
516 return switchdev_port_obj_del_now(dev, obj);
517}
Scott Feldman491d0f12015-05-10 09:47:52 -0700518EXPORT_SYMBOL_GPL(switchdev_port_obj_del);
519
Arkadi Sharshevskyff5cf102017-06-08 08:44:13 +0200520static ATOMIC_NOTIFIER_HEAD(switchdev_notif_chain);
Petr Machataa93e3b12018-11-22 23:28:25 +0000521static BLOCKING_NOTIFIER_HEAD(switchdev_blocking_notif_chain);
Jiri Pirko03bf0c22015-01-15 23:49:36 +0100522
523/**
Jiri Pirkoebb9a032015-05-10 09:47:46 -0700524 * register_switchdev_notifier - Register notifier
Jiri Pirko03bf0c22015-01-15 23:49:36 +0100525 * @nb: notifier_block
526 *
Arkadi Sharshevskyff5cf102017-06-08 08:44:13 +0200527 * Register switch device notifier.
Jiri Pirko03bf0c22015-01-15 23:49:36 +0100528 */
Jiri Pirkoebb9a032015-05-10 09:47:46 -0700529int register_switchdev_notifier(struct notifier_block *nb)
Jiri Pirko03bf0c22015-01-15 23:49:36 +0100530{
Arkadi Sharshevskyff5cf102017-06-08 08:44:13 +0200531 return atomic_notifier_chain_register(&switchdev_notif_chain, nb);
Jiri Pirko03bf0c22015-01-15 23:49:36 +0100532}
Jiri Pirkoebb9a032015-05-10 09:47:46 -0700533EXPORT_SYMBOL_GPL(register_switchdev_notifier);
Jiri Pirko03bf0c22015-01-15 23:49:36 +0100534
535/**
Jiri Pirkoebb9a032015-05-10 09:47:46 -0700536 * unregister_switchdev_notifier - Unregister notifier
Jiri Pirko03bf0c22015-01-15 23:49:36 +0100537 * @nb: notifier_block
538 *
539 * Unregister switch device notifier.
Jiri Pirko03bf0c22015-01-15 23:49:36 +0100540 */
Jiri Pirkoebb9a032015-05-10 09:47:46 -0700541int unregister_switchdev_notifier(struct notifier_block *nb)
Jiri Pirko03bf0c22015-01-15 23:49:36 +0100542{
Arkadi Sharshevskyff5cf102017-06-08 08:44:13 +0200543 return atomic_notifier_chain_unregister(&switchdev_notif_chain, nb);
Jiri Pirko03bf0c22015-01-15 23:49:36 +0100544}
Jiri Pirkoebb9a032015-05-10 09:47:46 -0700545EXPORT_SYMBOL_GPL(unregister_switchdev_notifier);
Jiri Pirko03bf0c22015-01-15 23:49:36 +0100546
547/**
Jiri Pirkoebb9a032015-05-10 09:47:46 -0700548 * call_switchdev_notifiers - Call notifiers
Jiri Pirko03bf0c22015-01-15 23:49:36 +0100549 * @val: value passed unmodified to notifier function
550 * @dev: port device
551 * @info: notifier information data
552 *
Arkadi Sharshevskyff5cf102017-06-08 08:44:13 +0200553 * Call all network notifier blocks.
Jiri Pirko03bf0c22015-01-15 23:49:36 +0100554 */
Jiri Pirkoebb9a032015-05-10 09:47:46 -0700555int call_switchdev_notifiers(unsigned long val, struct net_device *dev,
556 struct switchdev_notifier_info *info)
Jiri Pirko03bf0c22015-01-15 23:49:36 +0100557{
Jiri Pirko03bf0c22015-01-15 23:49:36 +0100558 info->dev = dev;
Arkadi Sharshevskyff5cf102017-06-08 08:44:13 +0200559 return atomic_notifier_call_chain(&switchdev_notif_chain, val, info);
Jiri Pirko03bf0c22015-01-15 23:49:36 +0100560}
Jiri Pirkoebb9a032015-05-10 09:47:46 -0700561EXPORT_SYMBOL_GPL(call_switchdev_notifiers);
Roopa Prabhu8a44dbb2015-01-29 22:40:13 -0800562
Petr Machataa93e3b12018-11-22 23:28:25 +0000563int register_switchdev_blocking_notifier(struct notifier_block *nb)
564{
565 struct blocking_notifier_head *chain = &switchdev_blocking_notif_chain;
566
567 return blocking_notifier_chain_register(chain, nb);
568}
569EXPORT_SYMBOL_GPL(register_switchdev_blocking_notifier);
570
571int unregister_switchdev_blocking_notifier(struct notifier_block *nb)
572{
573 struct blocking_notifier_head *chain = &switchdev_blocking_notif_chain;
574
575 return blocking_notifier_chain_unregister(chain, nb);
576}
577EXPORT_SYMBOL_GPL(unregister_switchdev_blocking_notifier);
578
579int call_switchdev_blocking_notifiers(unsigned long val, struct net_device *dev,
580 struct switchdev_notifier_info *info)
581{
582 info->dev = dev;
583 return blocking_notifier_call_chain(&switchdev_blocking_notif_chain,
584 val, info);
585}
586EXPORT_SYMBOL_GPL(call_switchdev_blocking_notifiers);
587
Or Gerlitz84388842016-07-14 10:32:43 +0300588bool switchdev_port_same_parent_id(struct net_device *a,
589 struct net_device *b)
Scott Feldman1a3b2ec2015-07-18 18:24:50 -0700590{
591 struct switchdev_attr a_attr = {
Ido Schimmel6ff64f62015-12-15 16:03:35 +0100592 .orig_dev = a,
Jiri Pirko1f868392015-10-01 11:03:42 +0200593 .id = SWITCHDEV_ATTR_ID_PORT_PARENT_ID,
Scott Feldman1a3b2ec2015-07-18 18:24:50 -0700594 };
595 struct switchdev_attr b_attr = {
Ido Schimmel6ff64f62015-12-15 16:03:35 +0100596 .orig_dev = b,
Jiri Pirko1f868392015-10-01 11:03:42 +0200597 .id = SWITCHDEV_ATTR_ID_PORT_PARENT_ID,
Scott Feldman1a3b2ec2015-07-18 18:24:50 -0700598 };
599
600 if (switchdev_port_attr_get(a, &a_attr) ||
601 switchdev_port_attr_get(b, &b_attr))
602 return false;
603
604 return netdev_phys_item_id_same(&a_attr.u.ppid, &b_attr.u.ppid);
605}
Or Gerlitz2eb03e62016-08-15 14:51:54 +0300606EXPORT_SYMBOL_GPL(switchdev_port_same_parent_id);
Petr Machataf30f0602018-11-22 23:29:44 +0000607
608static int __switchdev_handle_port_obj_add(struct net_device *dev,
609 struct switchdev_notifier_port_obj_info *port_obj_info,
610 bool (*check_cb)(const struct net_device *dev),
611 int (*add_cb)(struct net_device *dev,
612 const struct switchdev_obj *obj,
613 struct switchdev_trans *trans))
614{
615 struct net_device *lower_dev;
616 struct list_head *iter;
617 int err = -EOPNOTSUPP;
618
619 if (check_cb(dev)) {
620 /* This flag is only checked if the return value is success. */
621 port_obj_info->handled = true;
622 return add_cb(dev, port_obj_info->obj, port_obj_info->trans);
623 }
624
625 /* Switch ports might be stacked under e.g. a LAG. Ignore the
626 * unsupported devices, another driver might be able to handle them. But
627 * propagate to the callers any hard errors.
628 *
629 * If the driver does its own bookkeeping of stacked ports, it's not
630 * necessary to go through this helper.
631 */
632 netdev_for_each_lower_dev(dev, lower_dev, iter) {
633 err = __switchdev_handle_port_obj_add(lower_dev, port_obj_info,
634 check_cb, add_cb);
635 if (err && err != -EOPNOTSUPP)
636 return err;
637 }
638
639 return err;
640}
641
642int switchdev_handle_port_obj_add(struct net_device *dev,
643 struct switchdev_notifier_port_obj_info *port_obj_info,
644 bool (*check_cb)(const struct net_device *dev),
645 int (*add_cb)(struct net_device *dev,
646 const struct switchdev_obj *obj,
647 struct switchdev_trans *trans))
648{
649 int err;
650
651 err = __switchdev_handle_port_obj_add(dev, port_obj_info, check_cb,
652 add_cb);
653 if (err == -EOPNOTSUPP)
654 err = 0;
655 return err;
656}
657EXPORT_SYMBOL_GPL(switchdev_handle_port_obj_add);
658
659static int __switchdev_handle_port_obj_del(struct net_device *dev,
660 struct switchdev_notifier_port_obj_info *port_obj_info,
661 bool (*check_cb)(const struct net_device *dev),
662 int (*del_cb)(struct net_device *dev,
663 const struct switchdev_obj *obj))
664{
665 struct net_device *lower_dev;
666 struct list_head *iter;
667 int err = -EOPNOTSUPP;
668
669 if (check_cb(dev)) {
670 /* This flag is only checked if the return value is success. */
671 port_obj_info->handled = true;
672 return del_cb(dev, port_obj_info->obj);
673 }
674
675 /* Switch ports might be stacked under e.g. a LAG. Ignore the
676 * unsupported devices, another driver might be able to handle them. But
677 * propagate to the callers any hard errors.
678 *
679 * If the driver does its own bookkeeping of stacked ports, it's not
680 * necessary to go through this helper.
681 */
682 netdev_for_each_lower_dev(dev, lower_dev, iter) {
683 err = __switchdev_handle_port_obj_del(lower_dev, port_obj_info,
684 check_cb, del_cb);
685 if (err && err != -EOPNOTSUPP)
686 return err;
687 }
688
689 return err;
690}
691
692int switchdev_handle_port_obj_del(struct net_device *dev,
693 struct switchdev_notifier_port_obj_info *port_obj_info,
694 bool (*check_cb)(const struct net_device *dev),
695 int (*del_cb)(struct net_device *dev,
696 const struct switchdev_obj *obj))
697{
698 int err;
699
700 err = __switchdev_handle_port_obj_del(dev, port_obj_info, check_cb,
701 del_cb);
702 if (err == -EOPNOTSUPP)
703 err = 0;
704 return err;
705}
706EXPORT_SYMBOL_GPL(switchdev_handle_port_obj_del);