blob: 865f3e037425a1d5738fa0db5ad4e3e98480a4ea [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Jiri Pirko007f7902014-11-28 14:34:17 +01002/*
3 * net/switchdev/switchdev.c - Switch device API
Jiri Pirko7ea6eb32015-09-24 10:02:41 +02004 * Copyright (c) 2014-2015 Jiri Pirko <jiri@resnulli.us>
Scott Feldmanf8f21472015-03-09 13:59:09 -07005 * Copyright (c) 2014-2015 Scott Feldman <sfeldma@gmail.com>
Jiri Pirko007f7902014-11-28 14:34:17 +01006 */
7
8#include <linux/kernel.h>
9#include <linux/types.h>
10#include <linux/init.h>
Jiri Pirko03bf0c22015-01-15 23:49:36 +010011#include <linux/mutex.h>
12#include <linux/notifier.h>
Jiri Pirko007f7902014-11-28 14:34:17 +010013#include <linux/netdevice.h>
Jiri Pirko850d0cb2015-10-14 19:40:51 +020014#include <linux/etherdevice.h>
Scott Feldman47f83282015-05-10 09:47:56 -070015#include <linux/if_bridge.h>
Jiri Pirko7ea6eb32015-09-24 10:02:41 +020016#include <linux/list.h>
Jiri Pirko793f4012015-10-14 19:40:48 +020017#include <linux/workqueue.h>
Nikolay Aleksandrov87aaf2c2015-10-12 14:31:01 +020018#include <linux/if_vlan.h>
Ido Schimmel4f2c6ae2016-01-27 15:16:43 +010019#include <linux/rtnetlink.h>
Jiri Pirko007f7902014-11-28 14:34:17 +010020#include <net/switchdev.h>
21
Jiri Pirko793f4012015-10-14 19:40:48 +020022static LIST_HEAD(deferred);
23static DEFINE_SPINLOCK(deferred_lock);
24
25typedef void switchdev_deferred_func_t(struct net_device *dev,
26 const void *data);
27
28struct switchdev_deferred_item {
29 struct list_head list;
30 struct net_device *dev;
31 switchdev_deferred_func_t *func;
Gustavo A. R. Silvafbfc8502020-02-17 14:02:36 -060032 unsigned long data[];
Jiri Pirko793f4012015-10-14 19:40:48 +020033};
34
35static struct switchdev_deferred_item *switchdev_deferred_dequeue(void)
36{
37 struct switchdev_deferred_item *dfitem;
38
39 spin_lock_bh(&deferred_lock);
40 if (list_empty(&deferred)) {
41 dfitem = NULL;
42 goto unlock;
43 }
44 dfitem = list_first_entry(&deferred,
45 struct switchdev_deferred_item, list);
46 list_del(&dfitem->list);
47unlock:
48 spin_unlock_bh(&deferred_lock);
49 return dfitem;
50}
51
52/**
53 * switchdev_deferred_process - Process ops in deferred queue
54 *
55 * Called to flush the ops currently queued in deferred ops queue.
56 * rtnl_lock must be held.
57 */
58void switchdev_deferred_process(void)
59{
60 struct switchdev_deferred_item *dfitem;
61
62 ASSERT_RTNL();
63
64 while ((dfitem = switchdev_deferred_dequeue())) {
65 dfitem->func(dfitem->dev, dfitem->data);
66 dev_put(dfitem->dev);
67 kfree(dfitem);
68 }
69}
70EXPORT_SYMBOL_GPL(switchdev_deferred_process);
71
72static void switchdev_deferred_process_work(struct work_struct *work)
73{
74 rtnl_lock();
75 switchdev_deferred_process();
76 rtnl_unlock();
77}
78
79static DECLARE_WORK(deferred_process_work, switchdev_deferred_process_work);
80
81static int switchdev_deferred_enqueue(struct net_device *dev,
82 const void *data, size_t data_len,
83 switchdev_deferred_func_t *func)
84{
85 struct switchdev_deferred_item *dfitem;
86
87 dfitem = kmalloc(sizeof(*dfitem) + data_len, GFP_ATOMIC);
88 if (!dfitem)
89 return -ENOMEM;
90 dfitem->dev = dev;
91 dfitem->func = func;
92 memcpy(dfitem->data, data, data_len);
93 dev_hold(dev);
94 spin_lock_bh(&deferred_lock);
95 list_add_tail(&dfitem->list, &deferred);
96 spin_unlock_bh(&deferred_lock);
97 schedule_work(&deferred_process_work);
98 return 0;
99}
100
Florian Fainellid45224d2019-02-27 11:44:31 -0800101static int switchdev_port_attr_notify(enum switchdev_notifier_type nt,
102 struct net_device *dev,
103 const struct switchdev_attr *attr,
104 struct switchdev_trans *trans)
Scott Feldman30943332015-05-10 09:47:48 -0700105{
Florian Fainellid45224d2019-02-27 11:44:31 -0800106 int err;
107 int rc;
Scott Feldman30943332015-05-10 09:47:48 -0700108
Florian Fainellid45224d2019-02-27 11:44:31 -0800109 struct switchdev_notifier_port_attr_info attr_info = {
110 .attr = attr,
111 .trans = trans,
112 .handled = false,
113 };
114
115 rc = call_switchdev_blocking_notifiers(nt, dev,
116 &attr_info.info, NULL);
117 err = notifier_to_errno(rc);
118 if (err) {
119 WARN_ON(!attr_info.handled);
120 return err;
Jiri Pirko0c63d802015-11-03 17:40:53 +0100121 }
Scott Feldman30943332015-05-10 09:47:48 -0700122
Florian Fainellid45224d2019-02-27 11:44:31 -0800123 if (!attr_info.handled)
124 return -EOPNOTSUPP;
Scott Feldman30943332015-05-10 09:47:48 -0700125
Florian Fainellid45224d2019-02-27 11:44:31 -0800126 return 0;
Scott Feldman30943332015-05-10 09:47:48 -0700127}
128
Jiri Pirko0bc05d52015-10-14 19:40:50 +0200129static int switchdev_port_attr_set_now(struct net_device *dev,
130 const struct switchdev_attr *attr)
Scott Feldman30943332015-05-10 09:47:48 -0700131{
Jiri Pirko7ea6eb32015-09-24 10:02:41 +0200132 struct switchdev_trans trans;
Scott Feldman30943332015-05-10 09:47:48 -0700133 int err;
134
Scott Feldman30943332015-05-10 09:47:48 -0700135 /* Phase I: prepare for attr set. Driver/device should fail
136 * here if there are going to be issues in the commit phase,
137 * such as lack of resources or support. The driver/device
138 * should reserve resources needed for the commit phase here,
139 * but should not commit the attr.
140 */
141
Jiri Pirkof623ab72015-09-24 10:02:49 +0200142 trans.ph_prepare = true;
Florian Fainellid45224d2019-02-27 11:44:31 -0800143 err = switchdev_port_attr_notify(SWITCHDEV_PORT_ATTR_SET, dev, attr,
144 &trans);
Florian Fainelli91cf8ec2019-02-27 16:29:16 -0800145 if (err)
Scott Feldman30943332015-05-10 09:47:48 -0700146 return err;
Scott Feldman30943332015-05-10 09:47:48 -0700147
148 /* Phase II: commit attr set. This cannot fail as a fault
149 * of driver/device. If it does, it's a bug in the driver/device
150 * because the driver said everythings was OK in phase I.
151 */
152
Jiri Pirkof623ab72015-09-24 10:02:49 +0200153 trans.ph_prepare = false;
Florian Fainellid45224d2019-02-27 11:44:31 -0800154 err = switchdev_port_attr_notify(SWITCHDEV_PORT_ATTR_SET, dev, attr,
155 &trans);
Scott Feldmane9fdaec2015-06-11 11:20:42 -0700156 WARN(err, "%s: Commit of attribute (id=%d) failed.\n",
157 dev->name, attr->id);
Scott Feldman30943332015-05-10 09:47:48 -0700158
159 return err;
160}
Jiri Pirko0bc05d52015-10-14 19:40:50 +0200161
162static void switchdev_port_attr_set_deferred(struct net_device *dev,
163 const void *data)
164{
165 const struct switchdev_attr *attr = data;
166 int err;
167
168 err = switchdev_port_attr_set_now(dev, attr);
169 if (err && err != -EOPNOTSUPP)
170 netdev_err(dev, "failed (err=%d) to set attribute (id=%d)\n",
171 err, attr->id);
Elad Raz7ceb2af2016-04-21 12:52:43 +0200172 if (attr->complete)
173 attr->complete(dev, err, attr->complete_priv);
Jiri Pirko0bc05d52015-10-14 19:40:50 +0200174}
175
176static int switchdev_port_attr_set_defer(struct net_device *dev,
177 const struct switchdev_attr *attr)
178{
179 return switchdev_deferred_enqueue(dev, attr, sizeof(*attr),
180 switchdev_port_attr_set_deferred);
181}
182
183/**
184 * switchdev_port_attr_set - Set port attribute
185 *
186 * @dev: port device
187 * @attr: attribute to set
188 *
189 * Use a 2-phase prepare-commit transaction model to ensure
190 * system is not left in a partially updated state due to
191 * failure from driver/device.
192 *
193 * rtnl_lock must be held and must not be in atomic section,
194 * in case SWITCHDEV_F_DEFER flag is not set.
195 */
196int switchdev_port_attr_set(struct net_device *dev,
197 const struct switchdev_attr *attr)
198{
199 if (attr->flags & SWITCHDEV_F_DEFER)
200 return switchdev_port_attr_set_defer(dev, attr);
201 ASSERT_RTNL();
202 return switchdev_port_attr_set_now(dev, attr);
203}
Scott Feldman30943332015-05-10 09:47:48 -0700204EXPORT_SYMBOL_GPL(switchdev_port_attr_set);
205
Scott Feldmane258d912015-10-28 23:17:31 -0700206static size_t switchdev_obj_size(const struct switchdev_obj *obj)
207{
208 switch (obj->id) {
209 case SWITCHDEV_OBJ_ID_PORT_VLAN:
210 return sizeof(struct switchdev_obj_port_vlan);
Elad Raz4d41e1252016-01-10 21:06:22 +0100211 case SWITCHDEV_OBJ_ID_PORT_MDB:
212 return sizeof(struct switchdev_obj_port_mdb);
Andrew Lunn47d5b6d2017-11-09 23:10:59 +0100213 case SWITCHDEV_OBJ_ID_HOST_MDB:
214 return sizeof(struct switchdev_obj_port_mdb);
Scott Feldmane258d912015-10-28 23:17:31 -0700215 default:
216 BUG();
217 }
218 return 0;
219}
220
Petr Machatad17d9f52018-11-22 23:32:57 +0000221static int switchdev_port_obj_notify(enum switchdev_notifier_type nt,
222 struct net_device *dev,
223 const struct switchdev_obj *obj,
Petr Machata69b73202018-12-12 17:02:52 +0000224 struct switchdev_trans *trans,
225 struct netlink_ext_ack *extack)
Scott Feldman491d0f12015-05-10 09:47:52 -0700226{
Petr Machatad17d9f52018-11-22 23:32:57 +0000227 int rc;
228 int err;
Scott Feldman491d0f12015-05-10 09:47:52 -0700229
Petr Machatad17d9f52018-11-22 23:32:57 +0000230 struct switchdev_notifier_port_obj_info obj_info = {
231 .obj = obj,
232 .trans = trans,
233 .handled = false,
234 };
Scott Feldman491d0f12015-05-10 09:47:52 -0700235
Petr Machata479c86d2018-12-12 17:02:54 +0000236 rc = call_switchdev_blocking_notifiers(nt, dev, &obj_info.info, extack);
Petr Machatad17d9f52018-11-22 23:32:57 +0000237 err = notifier_to_errno(rc);
238 if (err) {
239 WARN_ON(!obj_info.handled);
240 return err;
Scott Feldman491d0f12015-05-10 09:47:52 -0700241 }
Petr Machatad17d9f52018-11-22 23:32:57 +0000242 if (!obj_info.handled)
243 return -EOPNOTSUPP;
244 return 0;
Scott Feldman491d0f12015-05-10 09:47:52 -0700245}
246
Jiri Pirko4d429c52015-10-14 19:40:52 +0200247static int switchdev_port_obj_add_now(struct net_device *dev,
Petr Machata69b73202018-12-12 17:02:52 +0000248 const struct switchdev_obj *obj,
249 struct netlink_ext_ack *extack)
Scott Feldman491d0f12015-05-10 09:47:52 -0700250{
Jiri Pirko7ea6eb32015-09-24 10:02:41 +0200251 struct switchdev_trans trans;
Scott Feldman491d0f12015-05-10 09:47:52 -0700252 int err;
253
254 ASSERT_RTNL();
255
256 /* Phase I: prepare for obj add. Driver/device should fail
257 * here if there are going to be issues in the commit phase,
258 * such as lack of resources or support. The driver/device
259 * should reserve resources needed for the commit phase here,
260 * but should not commit the obj.
261 */
262
Jiri Pirkof623ab72015-09-24 10:02:49 +0200263 trans.ph_prepare = true;
Petr Machatad17d9f52018-11-22 23:32:57 +0000264 err = switchdev_port_obj_notify(SWITCHDEV_PORT_OBJ_ADD,
Petr Machata69b73202018-12-12 17:02:52 +0000265 dev, obj, &trans, extack);
Florian Fainelli91cf8ec2019-02-27 16:29:16 -0800266 if (err)
Scott Feldman491d0f12015-05-10 09:47:52 -0700267 return err;
Scott Feldman491d0f12015-05-10 09:47:52 -0700268
269 /* Phase II: commit obj add. This cannot fail as a fault
270 * of driver/device. If it does, it's a bug in the driver/device
271 * because the driver said everythings was OK in phase I.
272 */
273
Jiri Pirkof623ab72015-09-24 10:02:49 +0200274 trans.ph_prepare = false;
Petr Machatad17d9f52018-11-22 23:32:57 +0000275 err = switchdev_port_obj_notify(SWITCHDEV_PORT_OBJ_ADD,
Petr Machata69b73202018-12-12 17:02:52 +0000276 dev, obj, &trans, extack);
Jiri Pirko9e8f4a52015-10-01 11:03:46 +0200277 WARN(err, "%s: Commit of object (id=%d) failed.\n", dev->name, obj->id);
Scott Feldman491d0f12015-05-10 09:47:52 -0700278
279 return err;
280}
Jiri Pirko4d429c52015-10-14 19:40:52 +0200281
282static void switchdev_port_obj_add_deferred(struct net_device *dev,
283 const void *data)
284{
285 const struct switchdev_obj *obj = data;
286 int err;
287
Petr Machata69b73202018-12-12 17:02:52 +0000288 err = switchdev_port_obj_add_now(dev, obj, NULL);
Jiri Pirko4d429c52015-10-14 19:40:52 +0200289 if (err && err != -EOPNOTSUPP)
290 netdev_err(dev, "failed (err=%d) to add object (id=%d)\n",
291 err, obj->id);
Elad Raz7ceb2af2016-04-21 12:52:43 +0200292 if (obj->complete)
293 obj->complete(dev, err, obj->complete_priv);
Jiri Pirko4d429c52015-10-14 19:40:52 +0200294}
295
296static int switchdev_port_obj_add_defer(struct net_device *dev,
297 const struct switchdev_obj *obj)
298{
Scott Feldmane258d912015-10-28 23:17:31 -0700299 return switchdev_deferred_enqueue(dev, obj, switchdev_obj_size(obj),
Jiri Pirko4d429c52015-10-14 19:40:52 +0200300 switchdev_port_obj_add_deferred);
301}
Scott Feldman491d0f12015-05-10 09:47:52 -0700302
303/**
Jiri Pirko4d429c52015-10-14 19:40:52 +0200304 * switchdev_port_obj_add - Add port object
Scott Feldman491d0f12015-05-10 09:47:52 -0700305 *
306 * @dev: port device
Jiri Pirko4d429c52015-10-14 19:40:52 +0200307 * @obj: object to add
Andrew Lunnc8af73f2020-07-13 01:15:13 +0200308 * @extack: netlink extended ack
Jiri Pirko4d429c52015-10-14 19:40:52 +0200309 *
310 * Use a 2-phase prepare-commit transaction model to ensure
311 * system is not left in a partially updated state due to
312 * failure from driver/device.
313 *
314 * rtnl_lock must be held and must not be in atomic section,
315 * in case SWITCHDEV_F_DEFER flag is not set.
Scott Feldman491d0f12015-05-10 09:47:52 -0700316 */
Jiri Pirko4d429c52015-10-14 19:40:52 +0200317int switchdev_port_obj_add(struct net_device *dev,
Petr Machata69b73202018-12-12 17:02:52 +0000318 const struct switchdev_obj *obj,
319 struct netlink_ext_ack *extack)
Scott Feldman491d0f12015-05-10 09:47:52 -0700320{
Jiri Pirko4d429c52015-10-14 19:40:52 +0200321 if (obj->flags & SWITCHDEV_F_DEFER)
322 return switchdev_port_obj_add_defer(dev, obj);
323 ASSERT_RTNL();
Petr Machata69b73202018-12-12 17:02:52 +0000324 return switchdev_port_obj_add_now(dev, obj, extack);
Jiri Pirko4d429c52015-10-14 19:40:52 +0200325}
326EXPORT_SYMBOL_GPL(switchdev_port_obj_add);
327
328static int switchdev_port_obj_del_now(struct net_device *dev,
329 const struct switchdev_obj *obj)
330{
Petr Machatad17d9f52018-11-22 23:32:57 +0000331 return switchdev_port_obj_notify(SWITCHDEV_PORT_OBJ_DEL,
Petr Machata69b73202018-12-12 17:02:52 +0000332 dev, obj, NULL, NULL);
Scott Feldman491d0f12015-05-10 09:47:52 -0700333}
Jiri Pirko4d429c52015-10-14 19:40:52 +0200334
335static void switchdev_port_obj_del_deferred(struct net_device *dev,
336 const void *data)
337{
338 const struct switchdev_obj *obj = data;
339 int err;
340
341 err = switchdev_port_obj_del_now(dev, obj);
342 if (err && err != -EOPNOTSUPP)
343 netdev_err(dev, "failed (err=%d) to del object (id=%d)\n",
344 err, obj->id);
Elad Raz7ceb2af2016-04-21 12:52:43 +0200345 if (obj->complete)
346 obj->complete(dev, err, obj->complete_priv);
Jiri Pirko4d429c52015-10-14 19:40:52 +0200347}
348
349static int switchdev_port_obj_del_defer(struct net_device *dev,
350 const struct switchdev_obj *obj)
351{
Scott Feldmane258d912015-10-28 23:17:31 -0700352 return switchdev_deferred_enqueue(dev, obj, switchdev_obj_size(obj),
Jiri Pirko4d429c52015-10-14 19:40:52 +0200353 switchdev_port_obj_del_deferred);
354}
355
356/**
357 * switchdev_port_obj_del - Delete port object
358 *
359 * @dev: port device
Jiri Pirko4d429c52015-10-14 19:40:52 +0200360 * @obj: object to delete
361 *
362 * rtnl_lock must be held and must not be in atomic section,
363 * in case SWITCHDEV_F_DEFER flag is not set.
364 */
365int switchdev_port_obj_del(struct net_device *dev,
366 const struct switchdev_obj *obj)
367{
368 if (obj->flags & SWITCHDEV_F_DEFER)
369 return switchdev_port_obj_del_defer(dev, obj);
370 ASSERT_RTNL();
371 return switchdev_port_obj_del_now(dev, obj);
372}
Scott Feldman491d0f12015-05-10 09:47:52 -0700373EXPORT_SYMBOL_GPL(switchdev_port_obj_del);
374
Arkadi Sharshevskyff5cf102017-06-08 08:44:13 +0200375static ATOMIC_NOTIFIER_HEAD(switchdev_notif_chain);
Petr Machataa93e3b12018-11-22 23:28:25 +0000376static BLOCKING_NOTIFIER_HEAD(switchdev_blocking_notif_chain);
Jiri Pirko03bf0c22015-01-15 23:49:36 +0100377
378/**
Jiri Pirkoebb9a032015-05-10 09:47:46 -0700379 * register_switchdev_notifier - Register notifier
Jiri Pirko03bf0c22015-01-15 23:49:36 +0100380 * @nb: notifier_block
381 *
Arkadi Sharshevskyff5cf102017-06-08 08:44:13 +0200382 * Register switch device notifier.
Jiri Pirko03bf0c22015-01-15 23:49:36 +0100383 */
Jiri Pirkoebb9a032015-05-10 09:47:46 -0700384int register_switchdev_notifier(struct notifier_block *nb)
Jiri Pirko03bf0c22015-01-15 23:49:36 +0100385{
Arkadi Sharshevskyff5cf102017-06-08 08:44:13 +0200386 return atomic_notifier_chain_register(&switchdev_notif_chain, nb);
Jiri Pirko03bf0c22015-01-15 23:49:36 +0100387}
Jiri Pirkoebb9a032015-05-10 09:47:46 -0700388EXPORT_SYMBOL_GPL(register_switchdev_notifier);
Jiri Pirko03bf0c22015-01-15 23:49:36 +0100389
390/**
Jiri Pirkoebb9a032015-05-10 09:47:46 -0700391 * unregister_switchdev_notifier - Unregister notifier
Jiri Pirko03bf0c22015-01-15 23:49:36 +0100392 * @nb: notifier_block
393 *
394 * Unregister switch device notifier.
Jiri Pirko03bf0c22015-01-15 23:49:36 +0100395 */
Jiri Pirkoebb9a032015-05-10 09:47:46 -0700396int unregister_switchdev_notifier(struct notifier_block *nb)
Jiri Pirko03bf0c22015-01-15 23:49:36 +0100397{
Arkadi Sharshevskyff5cf102017-06-08 08:44:13 +0200398 return atomic_notifier_chain_unregister(&switchdev_notif_chain, nb);
Jiri Pirko03bf0c22015-01-15 23:49:36 +0100399}
Jiri Pirkoebb9a032015-05-10 09:47:46 -0700400EXPORT_SYMBOL_GPL(unregister_switchdev_notifier);
Jiri Pirko03bf0c22015-01-15 23:49:36 +0100401
402/**
Jiri Pirkoebb9a032015-05-10 09:47:46 -0700403 * call_switchdev_notifiers - Call notifiers
Jiri Pirko03bf0c22015-01-15 23:49:36 +0100404 * @val: value passed unmodified to notifier function
405 * @dev: port device
406 * @info: notifier information data
407 *
Arkadi Sharshevskyff5cf102017-06-08 08:44:13 +0200408 * Call all network notifier blocks.
Jiri Pirko03bf0c22015-01-15 23:49:36 +0100409 */
Jiri Pirkoebb9a032015-05-10 09:47:46 -0700410int call_switchdev_notifiers(unsigned long val, struct net_device *dev,
Petr Machata66859872019-01-16 23:06:56 +0000411 struct switchdev_notifier_info *info,
412 struct netlink_ext_ack *extack)
Jiri Pirko03bf0c22015-01-15 23:49:36 +0100413{
Jiri Pirko03bf0c22015-01-15 23:49:36 +0100414 info->dev = dev;
Petr Machata66859872019-01-16 23:06:56 +0000415 info->extack = extack;
Arkadi Sharshevskyff5cf102017-06-08 08:44:13 +0200416 return atomic_notifier_call_chain(&switchdev_notif_chain, val, info);
Jiri Pirko03bf0c22015-01-15 23:49:36 +0100417}
Jiri Pirkoebb9a032015-05-10 09:47:46 -0700418EXPORT_SYMBOL_GPL(call_switchdev_notifiers);
Roopa Prabhu8a44dbb2015-01-29 22:40:13 -0800419
Petr Machataa93e3b12018-11-22 23:28:25 +0000420int register_switchdev_blocking_notifier(struct notifier_block *nb)
421{
422 struct blocking_notifier_head *chain = &switchdev_blocking_notif_chain;
423
424 return blocking_notifier_chain_register(chain, nb);
425}
426EXPORT_SYMBOL_GPL(register_switchdev_blocking_notifier);
427
428int unregister_switchdev_blocking_notifier(struct notifier_block *nb)
429{
430 struct blocking_notifier_head *chain = &switchdev_blocking_notif_chain;
431
432 return blocking_notifier_chain_unregister(chain, nb);
433}
434EXPORT_SYMBOL_GPL(unregister_switchdev_blocking_notifier);
435
436int call_switchdev_blocking_notifiers(unsigned long val, struct net_device *dev,
Petr Machata479c86d2018-12-12 17:02:54 +0000437 struct switchdev_notifier_info *info,
438 struct netlink_ext_ack *extack)
Petr Machataa93e3b12018-11-22 23:28:25 +0000439{
440 info->dev = dev;
Petr Machata479c86d2018-12-12 17:02:54 +0000441 info->extack = extack;
Petr Machataa93e3b12018-11-22 23:28:25 +0000442 return blocking_notifier_call_chain(&switchdev_blocking_notif_chain,
443 val, info);
444}
445EXPORT_SYMBOL_GPL(call_switchdev_blocking_notifiers);
446
Petr Machataf30f0602018-11-22 23:29:44 +0000447static int __switchdev_handle_port_obj_add(struct net_device *dev,
448 struct switchdev_notifier_port_obj_info *port_obj_info,
449 bool (*check_cb)(const struct net_device *dev),
450 int (*add_cb)(struct net_device *dev,
451 const struct switchdev_obj *obj,
Petr Machata69213512018-12-12 17:02:56 +0000452 struct switchdev_trans *trans,
453 struct netlink_ext_ack *extack))
Petr Machataf30f0602018-11-22 23:29:44 +0000454{
Petr Machata69213512018-12-12 17:02:56 +0000455 struct netlink_ext_ack *extack;
Petr Machataf30f0602018-11-22 23:29:44 +0000456 struct net_device *lower_dev;
457 struct list_head *iter;
458 int err = -EOPNOTSUPP;
459
Petr Machata69213512018-12-12 17:02:56 +0000460 extack = switchdev_notifier_info_to_extack(&port_obj_info->info);
461
Petr Machataf30f0602018-11-22 23:29:44 +0000462 if (check_cb(dev)) {
463 /* This flag is only checked if the return value is success. */
464 port_obj_info->handled = true;
Petr Machata69213512018-12-12 17:02:56 +0000465 return add_cb(dev, port_obj_info->obj, port_obj_info->trans,
466 extack);
Petr Machataf30f0602018-11-22 23:29:44 +0000467 }
468
469 /* Switch ports might be stacked under e.g. a LAG. Ignore the
470 * unsupported devices, another driver might be able to handle them. But
471 * propagate to the callers any hard errors.
472 *
473 * If the driver does its own bookkeeping of stacked ports, it's not
474 * necessary to go through this helper.
475 */
476 netdev_for_each_lower_dev(dev, lower_dev, iter) {
Russell King07c6f982020-02-26 17:14:21 +0000477 if (netif_is_bridge_master(lower_dev))
478 continue;
479
Petr Machataf30f0602018-11-22 23:29:44 +0000480 err = __switchdev_handle_port_obj_add(lower_dev, port_obj_info,
481 check_cb, add_cb);
482 if (err && err != -EOPNOTSUPP)
483 return err;
484 }
485
486 return err;
487}
488
489int switchdev_handle_port_obj_add(struct net_device *dev,
490 struct switchdev_notifier_port_obj_info *port_obj_info,
491 bool (*check_cb)(const struct net_device *dev),
492 int (*add_cb)(struct net_device *dev,
493 const struct switchdev_obj *obj,
Petr Machata69213512018-12-12 17:02:56 +0000494 struct switchdev_trans *trans,
495 struct netlink_ext_ack *extack))
Petr Machataf30f0602018-11-22 23:29:44 +0000496{
497 int err;
498
499 err = __switchdev_handle_port_obj_add(dev, port_obj_info, check_cb,
500 add_cb);
501 if (err == -EOPNOTSUPP)
502 err = 0;
503 return err;
504}
505EXPORT_SYMBOL_GPL(switchdev_handle_port_obj_add);
506
507static int __switchdev_handle_port_obj_del(struct net_device *dev,
508 struct switchdev_notifier_port_obj_info *port_obj_info,
509 bool (*check_cb)(const struct net_device *dev),
510 int (*del_cb)(struct net_device *dev,
511 const struct switchdev_obj *obj))
512{
513 struct net_device *lower_dev;
514 struct list_head *iter;
515 int err = -EOPNOTSUPP;
516
517 if (check_cb(dev)) {
518 /* This flag is only checked if the return value is success. */
519 port_obj_info->handled = true;
520 return del_cb(dev, port_obj_info->obj);
521 }
522
523 /* Switch ports might be stacked under e.g. a LAG. Ignore the
524 * unsupported devices, another driver might be able to handle them. But
525 * propagate to the callers any hard errors.
526 *
527 * If the driver does its own bookkeeping of stacked ports, it's not
528 * necessary to go through this helper.
529 */
530 netdev_for_each_lower_dev(dev, lower_dev, iter) {
Russell King07c6f982020-02-26 17:14:21 +0000531 if (netif_is_bridge_master(lower_dev))
532 continue;
533
Petr Machataf30f0602018-11-22 23:29:44 +0000534 err = __switchdev_handle_port_obj_del(lower_dev, port_obj_info,
535 check_cb, del_cb);
536 if (err && err != -EOPNOTSUPP)
537 return err;
538 }
539
540 return err;
541}
542
543int switchdev_handle_port_obj_del(struct net_device *dev,
544 struct switchdev_notifier_port_obj_info *port_obj_info,
545 bool (*check_cb)(const struct net_device *dev),
546 int (*del_cb)(struct net_device *dev,
547 const struct switchdev_obj *obj))
548{
549 int err;
550
551 err = __switchdev_handle_port_obj_del(dev, port_obj_info, check_cb,
552 del_cb);
553 if (err == -EOPNOTSUPP)
554 err = 0;
555 return err;
556}
557EXPORT_SYMBOL_GPL(switchdev_handle_port_obj_del);
Florian Fainelli1cb33af2019-02-27 11:44:25 -0800558
559static int __switchdev_handle_port_attr_set(struct net_device *dev,
560 struct switchdev_notifier_port_attr_info *port_attr_info,
561 bool (*check_cb)(const struct net_device *dev),
562 int (*set_cb)(struct net_device *dev,
563 const struct switchdev_attr *attr,
564 struct switchdev_trans *trans))
565{
566 struct net_device *lower_dev;
567 struct list_head *iter;
568 int err = -EOPNOTSUPP;
569
570 if (check_cb(dev)) {
571 port_attr_info->handled = true;
572 return set_cb(dev, port_attr_info->attr,
573 port_attr_info->trans);
574 }
575
576 /* Switch ports might be stacked under e.g. a LAG. Ignore the
577 * unsupported devices, another driver might be able to handle them. But
578 * propagate to the callers any hard errors.
579 *
580 * If the driver does its own bookkeeping of stacked ports, it's not
581 * necessary to go through this helper.
582 */
583 netdev_for_each_lower_dev(dev, lower_dev, iter) {
Russell King07c6f982020-02-26 17:14:21 +0000584 if (netif_is_bridge_master(lower_dev))
585 continue;
586
Florian Fainelli1cb33af2019-02-27 11:44:25 -0800587 err = __switchdev_handle_port_attr_set(lower_dev, port_attr_info,
588 check_cb, set_cb);
589 if (err && err != -EOPNOTSUPP)
590 return err;
591 }
592
593 return err;
594}
595
596int switchdev_handle_port_attr_set(struct net_device *dev,
597 struct switchdev_notifier_port_attr_info *port_attr_info,
598 bool (*check_cb)(const struct net_device *dev),
599 int (*set_cb)(struct net_device *dev,
600 const struct switchdev_attr *attr,
601 struct switchdev_trans *trans))
602{
603 int err;
604
605 err = __switchdev_handle_port_attr_set(dev, port_attr_info, check_cb,
606 set_cb);
607 if (err == -EOPNOTSUPP)
608 err = 0;
609 return err;
610}
611EXPORT_SYMBOL_GPL(switchdev_handle_port_attr_set);