blob: 0531b41d1f2d08fe596f01cafee1cbb323298299 [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);
Scott Feldmane258d912015-10-28 23:17:31 -0700348 default:
349 BUG();
350 }
351 return 0;
352}
353
Scott Feldman22c1f672015-05-12 23:03:51 -0700354static int __switchdev_port_obj_add(struct net_device *dev,
Jiri Pirko648b4a92015-10-01 11:03:45 +0200355 const struct switchdev_obj *obj,
Jiri Pirko7ea6eb32015-09-24 10:02:41 +0200356 struct switchdev_trans *trans)
Scott Feldman491d0f12015-05-10 09:47:52 -0700357{
358 const struct switchdev_ops *ops = dev->switchdev_ops;
359 struct net_device *lower_dev;
360 struct list_head *iter;
361 int err = -EOPNOTSUPP;
362
363 if (ops && ops->switchdev_port_obj_add)
Jiri Pirko9e8f4a52015-10-01 11:03:46 +0200364 return ops->switchdev_port_obj_add(dev, obj, trans);
Scott Feldman491d0f12015-05-10 09:47:52 -0700365
366 /* Switch device port(s) may be stacked under
367 * bond/team/vlan dev, so recurse down to add object on
368 * each port.
369 */
370
371 netdev_for_each_lower_dev(dev, lower_dev, iter) {
Jiri Pirko9e8f4a52015-10-01 11:03:46 +0200372 err = __switchdev_port_obj_add(lower_dev, obj, trans);
Scott Feldman491d0f12015-05-10 09:47:52 -0700373 if (err)
374 break;
375 }
376
377 return err;
378}
379
Jiri Pirko4d429c52015-10-14 19:40:52 +0200380static int switchdev_port_obj_add_now(struct net_device *dev,
381 const struct switchdev_obj *obj)
Scott Feldman491d0f12015-05-10 09:47:52 -0700382{
Jiri Pirko7ea6eb32015-09-24 10:02:41 +0200383 struct switchdev_trans trans;
Scott Feldman491d0f12015-05-10 09:47:52 -0700384 int err;
385
386 ASSERT_RTNL();
387
Jiri Pirko7ea6eb32015-09-24 10:02:41 +0200388 switchdev_trans_init(&trans);
389
Scott Feldman491d0f12015-05-10 09:47:52 -0700390 /* Phase I: prepare for obj add. Driver/device should fail
391 * here if there are going to be issues in the commit phase,
392 * such as lack of resources or support. The driver/device
393 * should reserve resources needed for the commit phase here,
394 * but should not commit the obj.
395 */
396
Jiri Pirkof623ab72015-09-24 10:02:49 +0200397 trans.ph_prepare = true;
Jiri Pirko9e8f4a52015-10-01 11:03:46 +0200398 err = __switchdev_port_obj_add(dev, obj, &trans);
Scott Feldman491d0f12015-05-10 09:47:52 -0700399 if (err) {
400 /* Prepare phase failed: abort the transaction. Any
401 * resources reserved in the prepare phase are
402 * released.
403 */
404
Jiri Pirko9f6467c2015-09-24 10:02:47 +0200405 if (err != -EOPNOTSUPP)
Jiri Pirko7ea6eb32015-09-24 10:02:41 +0200406 switchdev_trans_items_destroy(&trans);
Scott Feldman491d0f12015-05-10 09:47:52 -0700407
408 return err;
409 }
410
411 /* Phase II: commit obj add. This cannot fail as a fault
412 * of driver/device. If it does, it's a bug in the driver/device
413 * because the driver said everythings was OK in phase I.
414 */
415
Jiri Pirkof623ab72015-09-24 10:02:49 +0200416 trans.ph_prepare = false;
Jiri Pirko9e8f4a52015-10-01 11:03:46 +0200417 err = __switchdev_port_obj_add(dev, obj, &trans);
418 WARN(err, "%s: Commit of object (id=%d) failed.\n", dev->name, obj->id);
Jiri Pirko7ea6eb32015-09-24 10:02:41 +0200419 switchdev_trans_items_warn_destroy(dev, &trans);
Scott Feldman491d0f12015-05-10 09:47:52 -0700420
421 return err;
422}
Jiri Pirko4d429c52015-10-14 19:40:52 +0200423
424static void switchdev_port_obj_add_deferred(struct net_device *dev,
425 const void *data)
426{
427 const struct switchdev_obj *obj = data;
428 int err;
429
430 err = switchdev_port_obj_add_now(dev, obj);
431 if (err && err != -EOPNOTSUPP)
432 netdev_err(dev, "failed (err=%d) to add object (id=%d)\n",
433 err, obj->id);
Elad Raz7ceb2af2016-04-21 12:52:43 +0200434 if (obj->complete)
435 obj->complete(dev, err, obj->complete_priv);
Jiri Pirko4d429c52015-10-14 19:40:52 +0200436}
437
438static int switchdev_port_obj_add_defer(struct net_device *dev,
439 const struct switchdev_obj *obj)
440{
Scott Feldmane258d912015-10-28 23:17:31 -0700441 return switchdev_deferred_enqueue(dev, obj, switchdev_obj_size(obj),
Jiri Pirko4d429c52015-10-14 19:40:52 +0200442 switchdev_port_obj_add_deferred);
443}
Scott Feldman491d0f12015-05-10 09:47:52 -0700444
445/**
Jiri Pirko4d429c52015-10-14 19:40:52 +0200446 * switchdev_port_obj_add - Add port object
Scott Feldman491d0f12015-05-10 09:47:52 -0700447 *
448 * @dev: port device
Vivien Didelotab069002015-09-29 12:07:17 -0400449 * @id: object ID
Jiri Pirko4d429c52015-10-14 19:40:52 +0200450 * @obj: object to add
451 *
452 * Use a 2-phase prepare-commit transaction model to ensure
453 * system is not left in a partially updated state due to
454 * failure from driver/device.
455 *
456 * rtnl_lock must be held and must not be in atomic section,
457 * in case SWITCHDEV_F_DEFER flag is not set.
Scott Feldman491d0f12015-05-10 09:47:52 -0700458 */
Jiri Pirko4d429c52015-10-14 19:40:52 +0200459int switchdev_port_obj_add(struct net_device *dev,
Jiri Pirko648b4a92015-10-01 11:03:45 +0200460 const struct switchdev_obj *obj)
Scott Feldman491d0f12015-05-10 09:47:52 -0700461{
Jiri Pirko4d429c52015-10-14 19:40:52 +0200462 if (obj->flags & SWITCHDEV_F_DEFER)
463 return switchdev_port_obj_add_defer(dev, obj);
464 ASSERT_RTNL();
465 return switchdev_port_obj_add_now(dev, obj);
466}
467EXPORT_SYMBOL_GPL(switchdev_port_obj_add);
468
469static int switchdev_port_obj_del_now(struct net_device *dev,
470 const struct switchdev_obj *obj)
471{
Scott Feldman491d0f12015-05-10 09:47:52 -0700472 const struct switchdev_ops *ops = dev->switchdev_ops;
473 struct net_device *lower_dev;
474 struct list_head *iter;
475 int err = -EOPNOTSUPP;
476
477 if (ops && ops->switchdev_port_obj_del)
Jiri Pirko9e8f4a52015-10-01 11:03:46 +0200478 return ops->switchdev_port_obj_del(dev, obj);
Scott Feldman491d0f12015-05-10 09:47:52 -0700479
480 /* Switch device port(s) may be stacked under
481 * bond/team/vlan dev, so recurse down to delete object on
482 * each port.
483 */
484
485 netdev_for_each_lower_dev(dev, lower_dev, iter) {
Jiri Pirko4d429c52015-10-14 19:40:52 +0200486 err = switchdev_port_obj_del_now(lower_dev, obj);
Scott Feldman491d0f12015-05-10 09:47:52 -0700487 if (err)
488 break;
489 }
490
491 return err;
492}
Jiri Pirko4d429c52015-10-14 19:40:52 +0200493
494static void switchdev_port_obj_del_deferred(struct net_device *dev,
495 const void *data)
496{
497 const struct switchdev_obj *obj = data;
498 int err;
499
500 err = switchdev_port_obj_del_now(dev, obj);
501 if (err && err != -EOPNOTSUPP)
502 netdev_err(dev, "failed (err=%d) to del object (id=%d)\n",
503 err, obj->id);
Elad Raz7ceb2af2016-04-21 12:52:43 +0200504 if (obj->complete)
505 obj->complete(dev, err, obj->complete_priv);
Jiri Pirko4d429c52015-10-14 19:40:52 +0200506}
507
508static int switchdev_port_obj_del_defer(struct net_device *dev,
509 const struct switchdev_obj *obj)
510{
Scott Feldmane258d912015-10-28 23:17:31 -0700511 return switchdev_deferred_enqueue(dev, obj, switchdev_obj_size(obj),
Jiri Pirko4d429c52015-10-14 19:40:52 +0200512 switchdev_port_obj_del_deferred);
513}
514
515/**
516 * switchdev_port_obj_del - Delete port object
517 *
518 * @dev: port device
519 * @id: object ID
520 * @obj: object to delete
521 *
522 * rtnl_lock must be held and must not be in atomic section,
523 * in case SWITCHDEV_F_DEFER flag is not set.
524 */
525int switchdev_port_obj_del(struct net_device *dev,
526 const struct switchdev_obj *obj)
527{
528 if (obj->flags & SWITCHDEV_F_DEFER)
529 return switchdev_port_obj_del_defer(dev, obj);
530 ASSERT_RTNL();
531 return switchdev_port_obj_del_now(dev, obj);
532}
Scott Feldman491d0f12015-05-10 09:47:52 -0700533EXPORT_SYMBOL_GPL(switchdev_port_obj_del);
534
Arkadi Sharshevskyff5cf102017-06-08 08:44:13 +0200535static ATOMIC_NOTIFIER_HEAD(switchdev_notif_chain);
Jiri Pirko03bf0c22015-01-15 23:49:36 +0100536
537/**
Jiri Pirkoebb9a032015-05-10 09:47:46 -0700538 * register_switchdev_notifier - Register notifier
Jiri Pirko03bf0c22015-01-15 23:49:36 +0100539 * @nb: notifier_block
540 *
Arkadi Sharshevskyff5cf102017-06-08 08:44:13 +0200541 * Register switch device notifier.
Jiri Pirko03bf0c22015-01-15 23:49:36 +0100542 */
Jiri Pirkoebb9a032015-05-10 09:47:46 -0700543int register_switchdev_notifier(struct notifier_block *nb)
Jiri Pirko03bf0c22015-01-15 23:49:36 +0100544{
Arkadi Sharshevskyff5cf102017-06-08 08:44:13 +0200545 return atomic_notifier_chain_register(&switchdev_notif_chain, nb);
Jiri Pirko03bf0c22015-01-15 23:49:36 +0100546}
Jiri Pirkoebb9a032015-05-10 09:47:46 -0700547EXPORT_SYMBOL_GPL(register_switchdev_notifier);
Jiri Pirko03bf0c22015-01-15 23:49:36 +0100548
549/**
Jiri Pirkoebb9a032015-05-10 09:47:46 -0700550 * unregister_switchdev_notifier - Unregister notifier
Jiri Pirko03bf0c22015-01-15 23:49:36 +0100551 * @nb: notifier_block
552 *
553 * Unregister switch device notifier.
Jiri Pirko03bf0c22015-01-15 23:49:36 +0100554 */
Jiri Pirkoebb9a032015-05-10 09:47:46 -0700555int unregister_switchdev_notifier(struct notifier_block *nb)
Jiri Pirko03bf0c22015-01-15 23:49:36 +0100556{
Arkadi Sharshevskyff5cf102017-06-08 08:44:13 +0200557 return atomic_notifier_chain_unregister(&switchdev_notif_chain, nb);
Jiri Pirko03bf0c22015-01-15 23:49:36 +0100558}
Jiri Pirkoebb9a032015-05-10 09:47:46 -0700559EXPORT_SYMBOL_GPL(unregister_switchdev_notifier);
Jiri Pirko03bf0c22015-01-15 23:49:36 +0100560
561/**
Jiri Pirkoebb9a032015-05-10 09:47:46 -0700562 * call_switchdev_notifiers - Call notifiers
Jiri Pirko03bf0c22015-01-15 23:49:36 +0100563 * @val: value passed unmodified to notifier function
564 * @dev: port device
565 * @info: notifier information data
566 *
Arkadi Sharshevskyff5cf102017-06-08 08:44:13 +0200567 * Call all network notifier blocks.
Jiri Pirko03bf0c22015-01-15 23:49:36 +0100568 */
Jiri Pirkoebb9a032015-05-10 09:47:46 -0700569int call_switchdev_notifiers(unsigned long val, struct net_device *dev,
570 struct switchdev_notifier_info *info)
Jiri Pirko03bf0c22015-01-15 23:49:36 +0100571{
Jiri Pirko03bf0c22015-01-15 23:49:36 +0100572 info->dev = dev;
Arkadi Sharshevskyff5cf102017-06-08 08:44:13 +0200573 return atomic_notifier_call_chain(&switchdev_notif_chain, val, info);
Jiri Pirko03bf0c22015-01-15 23:49:36 +0100574}
Jiri Pirkoebb9a032015-05-10 09:47:46 -0700575EXPORT_SYMBOL_GPL(call_switchdev_notifiers);
Roopa Prabhu8a44dbb2015-01-29 22:40:13 -0800576
Or Gerlitz84388842016-07-14 10:32:43 +0300577bool switchdev_port_same_parent_id(struct net_device *a,
578 struct net_device *b)
Scott Feldman1a3b2ec2015-07-18 18:24:50 -0700579{
580 struct switchdev_attr a_attr = {
Ido Schimmel6ff64f62015-12-15 16:03:35 +0100581 .orig_dev = a,
Jiri Pirko1f868392015-10-01 11:03:42 +0200582 .id = SWITCHDEV_ATTR_ID_PORT_PARENT_ID,
Scott Feldman1a3b2ec2015-07-18 18:24:50 -0700583 };
584 struct switchdev_attr b_attr = {
Ido Schimmel6ff64f62015-12-15 16:03:35 +0100585 .orig_dev = b,
Jiri Pirko1f868392015-10-01 11:03:42 +0200586 .id = SWITCHDEV_ATTR_ID_PORT_PARENT_ID,
Scott Feldman1a3b2ec2015-07-18 18:24:50 -0700587 };
588
589 if (switchdev_port_attr_get(a, &a_attr) ||
590 switchdev_port_attr_get(b, &b_attr))
591 return false;
592
593 return netdev_phys_item_id_same(&a_attr.u.ppid, &b_attr.u.ppid);
594}
Or Gerlitz2eb03e62016-08-15 14:51:54 +0300595EXPORT_SYMBOL_GPL(switchdev_port_same_parent_id);