blob: 69016305ad5891749225ba0baaf79b943bd83d29 [file] [log] [blame]
Jiri Pirko007f7902014-11-28 14:34:17 +01001/*
2 * include/net/switchdev.h - 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#ifndef _LINUX_SWITCHDEV_H_
12#define _LINUX_SWITCHDEV_H_
13
14#include <linux/netdevice.h>
Jiri Pirko03bf0c22015-01-15 23:49:36 +010015#include <linux/notifier.h>
Jiri Pirko7ea6eb32015-09-24 10:02:41 +020016#include <linux/list.h>
Jiri Pirko850d0cb2015-10-14 19:40:51 +020017#include <net/ip_fib.h>
Jiri Pirko03bf0c22015-01-15 23:49:36 +010018
Scott Feldman30943332015-05-10 09:47:48 -070019#define SWITCHDEV_F_NO_RECURSE BIT(0)
Scott Feldman464314e2015-10-08 19:23:18 -070020#define SWITCHDEV_F_SKIP_EOPNOTSUPP BIT(1)
Jiri Pirko0bc05d52015-10-14 19:40:50 +020021#define SWITCHDEV_F_DEFER BIT(2)
Scott Feldman30943332015-05-10 09:47:48 -070022
Jiri Pirko7ea6eb32015-09-24 10:02:41 +020023struct switchdev_trans_item {
24 struct list_head list;
25 void *data;
26 void (*destructor)(const void *data);
27};
28
29struct switchdev_trans {
30 struct list_head item_list;
Jiri Pirkof623ab72015-09-24 10:02:49 +020031 bool ph_prepare;
Jiri Pirko7ea6eb32015-09-24 10:02:41 +020032};
33
Jiri Pirko8bdb4272015-09-24 10:02:43 +020034static inline bool switchdev_trans_ph_prepare(struct switchdev_trans *trans)
35{
Jiri Pirkof623ab72015-09-24 10:02:49 +020036 return trans && trans->ph_prepare;
Jiri Pirko8bdb4272015-09-24 10:02:43 +020037}
38
39static inline bool switchdev_trans_ph_commit(struct switchdev_trans *trans)
40{
Jiri Pirkof623ab72015-09-24 10:02:49 +020041 return trans && !trans->ph_prepare;
Jiri Pirko8bdb4272015-09-24 10:02:43 +020042}
43
Scott Feldman30943332015-05-10 09:47:48 -070044enum switchdev_attr_id {
Jiri Pirko1f868392015-10-01 11:03:42 +020045 SWITCHDEV_ATTR_ID_UNDEFINED,
46 SWITCHDEV_ATTR_ID_PORT_PARENT_ID,
47 SWITCHDEV_ATTR_ID_PORT_STP_STATE,
48 SWITCHDEV_ATTR_ID_PORT_BRIDGE_FLAGS,
Arkadi Sharshevskydc0ecabd2017-06-08 08:44:10 +020049 SWITCHDEV_ATTR_ID_PORT_BRIDGE_FLAGS_SUPPORT,
Nogah Frankel6d549642017-02-09 14:54:42 +010050 SWITCHDEV_ATTR_ID_PORT_MROUTER,
Scott Feldmanf55ac582015-10-08 19:23:17 -070051 SWITCHDEV_ATTR_ID_BRIDGE_AGEING_TIME,
Elad Raz81435c32016-01-06 13:01:05 +010052 SWITCHDEV_ATTR_ID_BRIDGE_VLAN_FILTERING,
Nogah Frankel147c1e92017-02-09 14:54:40 +010053 SWITCHDEV_ATTR_ID_BRIDGE_MC_DISABLED,
Yotam Gigi77041422017-10-09 11:15:31 +020054 SWITCHDEV_ATTR_ID_BRIDGE_MROUTER,
Scott Feldman30943332015-05-10 09:47:48 -070055};
56
57struct switchdev_attr {
Ido Schimmel6ff64f62015-12-15 16:03:35 +010058 struct net_device *orig_dev;
Scott Feldman30943332015-05-10 09:47:48 -070059 enum switchdev_attr_id id;
Scott Feldman30943332015-05-10 09:47:48 -070060 u32 flags;
Elad Raz7ceb2af2016-04-21 12:52:43 +020061 void *complete_priv;
62 void (*complete)(struct net_device *dev, int err, void *priv);
Scott Feldmanf8e20a92015-05-10 09:47:49 -070063 union {
64 struct netdev_phys_item_id ppid; /* PORT_PARENT_ID */
Scott Feldman35636062015-05-10 09:47:51 -070065 u8 stp_state; /* PORT_STP_STATE */
Scott Feldman6004c862015-05-10 09:47:55 -070066 unsigned long brport_flags; /* PORT_BRIDGE_FLAGS */
Arkadi Sharshevskydc0ecabd2017-06-08 08:44:10 +020067 unsigned long brport_flags_support; /* PORT_BRIDGE_FLAGS_SUPPORT */
Nogah Frankel6d549642017-02-09 14:54:42 +010068 bool mrouter; /* PORT_MROUTER */
Vivien Dideloteabfdda2016-07-18 15:02:06 -040069 clock_t ageing_time; /* BRIDGE_AGEING_TIME */
Elad Raz81435c32016-01-06 13:01:05 +010070 bool vlan_filtering; /* BRIDGE_VLAN_FILTERING */
Nogah Frankel147c1e92017-02-09 14:54:40 +010071 bool mc_disabled; /* MC_DISABLED */
Scott Feldman42275bd2015-05-13 11:16:50 -070072 } u;
Scott Feldman30943332015-05-10 09:47:48 -070073};
74
Scott Feldman491d0f12015-05-10 09:47:52 -070075enum switchdev_obj_id {
Jiri Pirko57d80832015-10-01 11:03:41 +020076 SWITCHDEV_OBJ_ID_UNDEFINED,
77 SWITCHDEV_OBJ_ID_PORT_VLAN,
Elad Raz4d41e1252016-01-10 21:06:22 +010078 SWITCHDEV_OBJ_ID_PORT_MDB,
Andrew Lunn47d5b6d2017-11-09 23:10:59 +010079 SWITCHDEV_OBJ_ID_HOST_MDB,
Scott Feldman491d0f12015-05-10 09:47:52 -070080};
81
Jiri Pirko648b4a92015-10-01 11:03:45 +020082struct switchdev_obj {
Ido Schimmel6ff64f62015-12-15 16:03:35 +010083 struct net_device *orig_dev;
Jiri Pirko9e8f4a52015-10-01 11:03:46 +020084 enum switchdev_obj_id id;
Jiri Pirko4d429c52015-10-14 19:40:52 +020085 u32 flags;
Elad Raz7ceb2af2016-04-21 12:52:43 +020086 void *complete_priv;
87 void (*complete)(struct net_device *dev, int err, void *priv);
Jiri Pirko648b4a92015-10-01 11:03:45 +020088};
89
Jiri Pirko57d80832015-10-01 11:03:41 +020090/* SWITCHDEV_OBJ_ID_PORT_VLAN */
Jiri Pirko8f24f302015-10-01 11:03:43 +020091struct switchdev_obj_port_vlan {
Jiri Pirko648b4a92015-10-01 11:03:45 +020092 struct switchdev_obj obj;
Vivien Didelot44bbcf52015-09-29 12:07:18 -040093 u16 flags;
94 u16 vid_begin;
95 u16 vid_end;
96};
97
Petr Machataec394af2018-11-22 23:28:07 +000098#define SWITCHDEV_OBJ_PORT_VLAN(OBJ) \
99 container_of((OBJ), struct switchdev_obj_port_vlan, obj)
Jiri Pirko648b4a92015-10-01 11:03:45 +0200100
Elad Raz4d41e1252016-01-10 21:06:22 +0100101/* SWITCHDEV_OBJ_ID_PORT_MDB */
102struct switchdev_obj_port_mdb {
103 struct switchdev_obj obj;
104 unsigned char addr[ETH_ALEN];
105 u16 vid;
106};
107
Petr Machataec394af2018-11-22 23:28:07 +0000108#define SWITCHDEV_OBJ_PORT_MDB(OBJ) \
109 container_of((OBJ), struct switchdev_obj_port_mdb, obj)
Elad Raz4d41e1252016-01-10 21:06:22 +0100110
Jiri Pirko7ea6eb32015-09-24 10:02:41 +0200111void switchdev_trans_item_enqueue(struct switchdev_trans *trans,
112 void *data, void (*destructor)(void const *),
113 struct switchdev_trans_item *tritem);
114void *switchdev_trans_item_dequeue(struct switchdev_trans *trans);
115
Jiri Pirko648b4a92015-10-01 11:03:45 +0200116typedef int switchdev_obj_dump_cb_t(struct switchdev_obj *obj);
117
Scott Feldman41706042015-03-15 21:07:14 -0700118/**
119 * struct switchdev_ops - switchdev operations
120 *
Scott Feldman30943332015-05-10 09:47:48 -0700121 * @switchdev_port_attr_get: Get a port attribute (see switchdev_attr).
122 *
123 * @switchdev_port_attr_set: Set a port attribute (see switchdev_attr).
Scott Feldman41706042015-03-15 21:07:14 -0700124 */
Jiri Pirko9d47c0a2015-05-10 09:47:47 -0700125struct switchdev_ops {
Scott Feldman30943332015-05-10 09:47:48 -0700126 int (*switchdev_port_attr_get)(struct net_device *dev,
127 struct switchdev_attr *attr);
128 int (*switchdev_port_attr_set)(struct net_device *dev,
Jiri Pirkof7fadf32015-10-14 19:40:49 +0200129 const struct switchdev_attr *attr,
Jiri Pirko7ea6eb32015-09-24 10:02:41 +0200130 struct switchdev_trans *trans);
Scott Feldman41706042015-03-15 21:07:14 -0700131};
132
Jiri Pirkoebb9a032015-05-10 09:47:46 -0700133enum switchdev_notifier_type {
Arkadi Sharshevsky6b26b512017-06-08 08:44:14 +0200134 SWITCHDEV_FDB_ADD_TO_BRIDGE = 1,
135 SWITCHDEV_FDB_DEL_TO_BRIDGE,
136 SWITCHDEV_FDB_ADD_TO_DEVICE,
137 SWITCHDEV_FDB_DEL_TO_DEVICE,
Arkadi Sharshevsky9fe8bce2017-06-08 08:44:15 +0200138 SWITCHDEV_FDB_OFFLOADED,
Petr Machata9a997352018-10-17 08:53:22 +0000139
Petr Machataaa4efe22018-11-22 23:28:38 +0000140 SWITCHDEV_PORT_OBJ_ADD, /* Blocking. */
141 SWITCHDEV_PORT_OBJ_DEL, /* Blocking. */
142
Petr Machata5728ae02018-11-21 08:02:39 +0000143 SWITCHDEV_VXLAN_FDB_ADD_TO_BRIDGE,
144 SWITCHDEV_VXLAN_FDB_DEL_TO_BRIDGE,
Petr Machata9a997352018-10-17 08:53:22 +0000145 SWITCHDEV_VXLAN_FDB_ADD_TO_DEVICE,
146 SWITCHDEV_VXLAN_FDB_DEL_TO_DEVICE,
Petr Machata0efe1172018-10-17 08:53:26 +0000147 SWITCHDEV_VXLAN_FDB_OFFLOADED,
Jiri Pirko3aeb6612015-01-15 23:49:37 +0100148};
149
Jiri Pirkoebb9a032015-05-10 09:47:46 -0700150struct switchdev_notifier_info {
Jiri Pirko03bf0c22015-01-15 23:49:36 +0100151 struct net_device *dev;
152};
153
Jiri Pirkoebb9a032015-05-10 09:47:46 -0700154struct switchdev_notifier_fdb_info {
155 struct switchdev_notifier_info info; /* must be first */
Jiri Pirko3aeb6612015-01-15 23:49:37 +0100156 const unsigned char *addr;
157 u16 vid;
Ido Schimmele9ba0fb2018-10-17 08:53:29 +0000158 u8 added_by_user:1,
159 offloaded:1;
Jiri Pirko3aeb6612015-01-15 23:49:37 +0100160};
161
Petr Machataaa4efe22018-11-22 23:28:38 +0000162struct switchdev_notifier_port_obj_info {
163 struct switchdev_notifier_info info; /* must be first */
164 const struct switchdev_obj *obj;
165 struct switchdev_trans *trans;
166 bool handled;
167};
168
Jiri Pirko03bf0c22015-01-15 23:49:36 +0100169static inline struct net_device *
Jiri Pirkoebb9a032015-05-10 09:47:46 -0700170switchdev_notifier_info_to_dev(const struct switchdev_notifier_info *info)
Jiri Pirko03bf0c22015-01-15 23:49:36 +0100171{
172 return info->dev;
173}
Jiri Pirko007f7902014-11-28 14:34:17 +0100174
175#ifdef CONFIG_NET_SWITCHDEV
176
Jiri Pirko793f4012015-10-14 19:40:48 +0200177void switchdev_deferred_process(void);
Scott Feldman30943332015-05-10 09:47:48 -0700178int switchdev_port_attr_get(struct net_device *dev,
179 struct switchdev_attr *attr);
180int switchdev_port_attr_set(struct net_device *dev,
Jiri Pirkof7fadf32015-10-14 19:40:49 +0200181 const struct switchdev_attr *attr);
Jiri Pirko9e8f4a52015-10-01 11:03:46 +0200182int switchdev_port_obj_add(struct net_device *dev,
Petr Machata69b73202018-12-12 17:02:52 +0000183 const struct switchdev_obj *obj,
184 struct netlink_ext_ack *extack);
Jiri Pirko9e8f4a52015-10-01 11:03:46 +0200185int switchdev_port_obj_del(struct net_device *dev,
Jiri Pirko648b4a92015-10-01 11:03:45 +0200186 const struct switchdev_obj *obj);
Petr Machataa93e3b12018-11-22 23:28:25 +0000187
Jiri Pirkoebb9a032015-05-10 09:47:46 -0700188int register_switchdev_notifier(struct notifier_block *nb);
189int unregister_switchdev_notifier(struct notifier_block *nb);
190int call_switchdev_notifiers(unsigned long val, struct net_device *dev,
191 struct switchdev_notifier_info *info);
Petr Machataa93e3b12018-11-22 23:28:25 +0000192
193int register_switchdev_blocking_notifier(struct notifier_block *nb);
194int unregister_switchdev_blocking_notifier(struct notifier_block *nb);
195int call_switchdev_blocking_notifiers(unsigned long val, struct net_device *dev,
196 struct switchdev_notifier_info *info);
197
Scott Feldman1a3b2ec2015-07-18 18:24:50 -0700198void switchdev_port_fwd_mark_set(struct net_device *dev,
199 struct net_device *group_dev,
200 bool joining);
Scott Feldman5e8d9042015-03-05 21:21:15 -0800201
Or Gerlitz84388842016-07-14 10:32:43 +0300202bool switchdev_port_same_parent_id(struct net_device *a,
203 struct net_device *b);
Simon Hormand643a752017-06-29 22:08:11 +0200204
Petr Machataf30f0602018-11-22 23:29:44 +0000205int switchdev_handle_port_obj_add(struct net_device *dev,
206 struct switchdev_notifier_port_obj_info *port_obj_info,
207 bool (*check_cb)(const struct net_device *dev),
208 int (*add_cb)(struct net_device *dev,
209 const struct switchdev_obj *obj,
210 struct switchdev_trans *trans));
211int switchdev_handle_port_obj_del(struct net_device *dev,
212 struct switchdev_notifier_port_obj_info *port_obj_info,
213 bool (*check_cb)(const struct net_device *dev),
214 int (*del_cb)(struct net_device *dev,
215 const struct switchdev_obj *obj));
216
Simon Hormand643a752017-06-29 22:08:11 +0200217#define SWITCHDEV_SET_OPS(netdev, ops) ((netdev)->switchdev_ops = (ops))
Jiri Pirko007f7902014-11-28 14:34:17 +0100218#else
219
Jiri Pirko793f4012015-10-14 19:40:48 +0200220static inline void switchdev_deferred_process(void)
221{
222}
223
Scott Feldman30943332015-05-10 09:47:48 -0700224static inline int switchdev_port_attr_get(struct net_device *dev,
225 struct switchdev_attr *attr)
226{
227 return -EOPNOTSUPP;
228}
229
230static inline int switchdev_port_attr_set(struct net_device *dev,
Jiri Pirkof7fadf32015-10-14 19:40:49 +0200231 const struct switchdev_attr *attr)
Scott Feldman30943332015-05-10 09:47:48 -0700232{
233 return -EOPNOTSUPP;
234}
235
Scott Feldman491d0f12015-05-10 09:47:52 -0700236static inline int switchdev_port_obj_add(struct net_device *dev,
Petr Machata69b73202018-12-12 17:02:52 +0000237 const struct switchdev_obj *obj,
238 struct netlink_ext_ack *extack)
Scott Feldman491d0f12015-05-10 09:47:52 -0700239{
240 return -EOPNOTSUPP;
241}
242
243static inline int switchdev_port_obj_del(struct net_device *dev,
Jiri Pirko648b4a92015-10-01 11:03:45 +0200244 const struct switchdev_obj *obj)
Scott Feldman491d0f12015-05-10 09:47:52 -0700245{
246 return -EOPNOTSUPP;
247}
248
Jiri Pirkoebb9a032015-05-10 09:47:46 -0700249static inline int register_switchdev_notifier(struct notifier_block *nb)
Jiri Pirko03bf0c22015-01-15 23:49:36 +0100250{
251 return 0;
252}
253
Jiri Pirkoebb9a032015-05-10 09:47:46 -0700254static inline int unregister_switchdev_notifier(struct notifier_block *nb)
Jiri Pirko03bf0c22015-01-15 23:49:36 +0100255{
256 return 0;
257}
258
Jiri Pirkoebb9a032015-05-10 09:47:46 -0700259static inline int call_switchdev_notifiers(unsigned long val,
260 struct net_device *dev,
261 struct switchdev_notifier_info *info)
Jiri Pirko03bf0c22015-01-15 23:49:36 +0100262{
263 return NOTIFY_DONE;
264}
265
Petr Machataa93e3b12018-11-22 23:28:25 +0000266static inline int
267register_switchdev_blocking_notifier(struct notifier_block *nb)
268{
269 return 0;
270}
271
272static inline int
273unregister_switchdev_blocking_notifier(struct notifier_block *nb)
274{
275 return 0;
276}
277
278static inline int
279call_switchdev_blocking_notifiers(unsigned long val,
280 struct net_device *dev,
281 struct switchdev_notifier_info *info)
282{
283 return NOTIFY_DONE;
284}
285
Or Gerlitz84388842016-07-14 10:32:43 +0300286static inline bool switchdev_port_same_parent_id(struct net_device *a,
287 struct net_device *b)
288{
289 return false;
290}
291
Petr Machataf30f0602018-11-22 23:29:44 +0000292static inline int
293switchdev_handle_port_obj_add(struct net_device *dev,
294 struct switchdev_notifier_port_obj_info *port_obj_info,
295 bool (*check_cb)(const struct net_device *dev),
296 int (*add_cb)(struct net_device *dev,
297 const struct switchdev_obj *obj,
298 struct switchdev_trans *trans))
299{
300 return 0;
301}
302
303static inline int
304switchdev_handle_port_obj_del(struct net_device *dev,
305 struct switchdev_notifier_port_obj_info *port_obj_info,
306 bool (*check_cb)(const struct net_device *dev),
307 int (*del_cb)(struct net_device *dev,
308 const struct switchdev_obj *obj))
309{
310 return 0;
311}
312
Simon Hormand643a752017-06-29 22:08:11 +0200313#define SWITCHDEV_SET_OPS(netdev, ops) do {} while (0)
314
Jiri Pirko007f7902014-11-28 14:34:17 +0100315#endif
316
317#endif /* _LINUX_SWITCHDEV_H_ */