blob: d756fbe46625d11b38b5a073ba0a086d4e188d7f [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,
Scott Feldman491d0f12015-05-10 09:47:52 -070079};
80
Jiri Pirko648b4a92015-10-01 11:03:45 +020081struct switchdev_obj {
Ido Schimmel6ff64f62015-12-15 16:03:35 +010082 struct net_device *orig_dev;
Jiri Pirko9e8f4a52015-10-01 11:03:46 +020083 enum switchdev_obj_id id;
Jiri Pirko4d429c52015-10-14 19:40:52 +020084 u32 flags;
Elad Raz7ceb2af2016-04-21 12:52:43 +020085 void *complete_priv;
86 void (*complete)(struct net_device *dev, int err, void *priv);
Jiri Pirko648b4a92015-10-01 11:03:45 +020087};
88
Jiri Pirko57d80832015-10-01 11:03:41 +020089/* SWITCHDEV_OBJ_ID_PORT_VLAN */
Jiri Pirko8f24f302015-10-01 11:03:43 +020090struct switchdev_obj_port_vlan {
Jiri Pirko648b4a92015-10-01 11:03:45 +020091 struct switchdev_obj obj;
Vivien Didelot44bbcf52015-09-29 12:07:18 -040092 u16 flags;
93 u16 vid_begin;
94 u16 vid_end;
95};
96
Jiri Pirko648b4a92015-10-01 11:03:45 +020097#define SWITCHDEV_OBJ_PORT_VLAN(obj) \
98 container_of(obj, struct switchdev_obj_port_vlan, obj)
99
Elad Raz4d41e1252016-01-10 21:06:22 +0100100/* SWITCHDEV_OBJ_ID_PORT_MDB */
101struct switchdev_obj_port_mdb {
102 struct switchdev_obj obj;
103 unsigned char addr[ETH_ALEN];
104 u16 vid;
105};
106
107#define SWITCHDEV_OBJ_PORT_MDB(obj) \
108 container_of(obj, struct switchdev_obj_port_mdb, obj)
109
Jiri Pirko7ea6eb32015-09-24 10:02:41 +0200110void switchdev_trans_item_enqueue(struct switchdev_trans *trans,
111 void *data, void (*destructor)(void const *),
112 struct switchdev_trans_item *tritem);
113void *switchdev_trans_item_dequeue(struct switchdev_trans *trans);
114
Jiri Pirko648b4a92015-10-01 11:03:45 +0200115typedef int switchdev_obj_dump_cb_t(struct switchdev_obj *obj);
116
Scott Feldman41706042015-03-15 21:07:14 -0700117/**
118 * struct switchdev_ops - switchdev operations
119 *
Scott Feldman30943332015-05-10 09:47:48 -0700120 * @switchdev_port_attr_get: Get a port attribute (see switchdev_attr).
121 *
122 * @switchdev_port_attr_set: Set a port attribute (see switchdev_attr).
123 *
Vivien Didelot44bbcf52015-09-29 12:07:18 -0400124 * @switchdev_port_obj_add: Add an object to port (see switchdev_obj_*).
Scott Feldman491d0f12015-05-10 09:47:52 -0700125 *
Vivien Didelot44bbcf52015-09-29 12:07:18 -0400126 * @switchdev_port_obj_del: Delete an object from port (see switchdev_obj_*).
Scott Feldman41706042015-03-15 21:07:14 -0700127 */
Jiri Pirko9d47c0a2015-05-10 09:47:47 -0700128struct switchdev_ops {
Scott Feldman30943332015-05-10 09:47:48 -0700129 int (*switchdev_port_attr_get)(struct net_device *dev,
130 struct switchdev_attr *attr);
131 int (*switchdev_port_attr_set)(struct net_device *dev,
Jiri Pirkof7fadf32015-10-14 19:40:49 +0200132 const struct switchdev_attr *attr,
Jiri Pirko7ea6eb32015-09-24 10:02:41 +0200133 struct switchdev_trans *trans);
Scott Feldman491d0f12015-05-10 09:47:52 -0700134 int (*switchdev_port_obj_add)(struct net_device *dev,
Jiri Pirko648b4a92015-10-01 11:03:45 +0200135 const struct switchdev_obj *obj,
Jiri Pirko7ea6eb32015-09-24 10:02:41 +0200136 struct switchdev_trans *trans);
Scott Feldman491d0f12015-05-10 09:47:52 -0700137 int (*switchdev_port_obj_del)(struct net_device *dev,
Jiri Pirko648b4a92015-10-01 11:03:45 +0200138 const struct switchdev_obj *obj);
Scott Feldman41706042015-03-15 21:07:14 -0700139};
140
Jiri Pirkoebb9a032015-05-10 09:47:46 -0700141enum switchdev_notifier_type {
Arkadi Sharshevsky6b26b512017-06-08 08:44:14 +0200142 SWITCHDEV_FDB_ADD_TO_BRIDGE = 1,
143 SWITCHDEV_FDB_DEL_TO_BRIDGE,
144 SWITCHDEV_FDB_ADD_TO_DEVICE,
145 SWITCHDEV_FDB_DEL_TO_DEVICE,
Arkadi Sharshevsky9fe8bce2017-06-08 08:44:15 +0200146 SWITCHDEV_FDB_OFFLOADED,
Jiri Pirko3aeb6612015-01-15 23:49:37 +0100147};
148
Jiri Pirkoebb9a032015-05-10 09:47:46 -0700149struct switchdev_notifier_info {
Jiri Pirko03bf0c22015-01-15 23:49:36 +0100150 struct net_device *dev;
151};
152
Jiri Pirkoebb9a032015-05-10 09:47:46 -0700153struct switchdev_notifier_fdb_info {
154 struct switchdev_notifier_info info; /* must be first */
Jiri Pirko3aeb6612015-01-15 23:49:37 +0100155 const unsigned char *addr;
156 u16 vid;
157};
158
Jiri Pirko03bf0c22015-01-15 23:49:36 +0100159static inline struct net_device *
Jiri Pirkoebb9a032015-05-10 09:47:46 -0700160switchdev_notifier_info_to_dev(const struct switchdev_notifier_info *info)
Jiri Pirko03bf0c22015-01-15 23:49:36 +0100161{
162 return info->dev;
163}
Jiri Pirko007f7902014-11-28 14:34:17 +0100164
165#ifdef CONFIG_NET_SWITCHDEV
166
Jiri Pirko793f4012015-10-14 19:40:48 +0200167void switchdev_deferred_process(void);
Scott Feldman30943332015-05-10 09:47:48 -0700168int switchdev_port_attr_get(struct net_device *dev,
169 struct switchdev_attr *attr);
170int switchdev_port_attr_set(struct net_device *dev,
Jiri Pirkof7fadf32015-10-14 19:40:49 +0200171 const struct switchdev_attr *attr);
Jiri Pirko9e8f4a52015-10-01 11:03:46 +0200172int switchdev_port_obj_add(struct net_device *dev,
Jiri Pirko648b4a92015-10-01 11:03:45 +0200173 const struct switchdev_obj *obj);
Jiri Pirko9e8f4a52015-10-01 11:03:46 +0200174int switchdev_port_obj_del(struct net_device *dev,
Jiri Pirko648b4a92015-10-01 11:03:45 +0200175 const struct switchdev_obj *obj);
Jiri Pirkoebb9a032015-05-10 09:47:46 -0700176int register_switchdev_notifier(struct notifier_block *nb);
177int unregister_switchdev_notifier(struct notifier_block *nb);
178int call_switchdev_notifiers(unsigned long val, struct net_device *dev,
179 struct switchdev_notifier_info *info);
Scott Feldman1a3b2ec2015-07-18 18:24:50 -0700180void switchdev_port_fwd_mark_set(struct net_device *dev,
181 struct net_device *group_dev,
182 bool joining);
Scott Feldman5e8d9042015-03-05 21:21:15 -0800183
Or Gerlitz84388842016-07-14 10:32:43 +0300184bool switchdev_port_same_parent_id(struct net_device *a,
185 struct net_device *b);
Simon Hormand643a752017-06-29 22:08:11 +0200186
187#define SWITCHDEV_SET_OPS(netdev, ops) ((netdev)->switchdev_ops = (ops))
Jiri Pirko007f7902014-11-28 14:34:17 +0100188#else
189
Jiri Pirko793f4012015-10-14 19:40:48 +0200190static inline void switchdev_deferred_process(void)
191{
192}
193
Scott Feldman30943332015-05-10 09:47:48 -0700194static inline int switchdev_port_attr_get(struct net_device *dev,
195 struct switchdev_attr *attr)
196{
197 return -EOPNOTSUPP;
198}
199
200static inline int switchdev_port_attr_set(struct net_device *dev,
Jiri Pirkof7fadf32015-10-14 19:40:49 +0200201 const struct switchdev_attr *attr)
Scott Feldman30943332015-05-10 09:47:48 -0700202{
203 return -EOPNOTSUPP;
204}
205
Scott Feldman491d0f12015-05-10 09:47:52 -0700206static inline int switchdev_port_obj_add(struct net_device *dev,
Jiri Pirko648b4a92015-10-01 11:03:45 +0200207 const struct switchdev_obj *obj)
Scott Feldman491d0f12015-05-10 09:47:52 -0700208{
209 return -EOPNOTSUPP;
210}
211
212static inline int switchdev_port_obj_del(struct net_device *dev,
Jiri Pirko648b4a92015-10-01 11:03:45 +0200213 const struct switchdev_obj *obj)
Scott Feldman491d0f12015-05-10 09:47:52 -0700214{
215 return -EOPNOTSUPP;
216}
217
Jiri Pirkoebb9a032015-05-10 09:47:46 -0700218static inline int register_switchdev_notifier(struct notifier_block *nb)
Jiri Pirko03bf0c22015-01-15 23:49:36 +0100219{
220 return 0;
221}
222
Jiri Pirkoebb9a032015-05-10 09:47:46 -0700223static inline int unregister_switchdev_notifier(struct notifier_block *nb)
Jiri Pirko03bf0c22015-01-15 23:49:36 +0100224{
225 return 0;
226}
227
Jiri Pirkoebb9a032015-05-10 09:47:46 -0700228static inline int call_switchdev_notifiers(unsigned long val,
229 struct net_device *dev,
230 struct switchdev_notifier_info *info)
Jiri Pirko03bf0c22015-01-15 23:49:36 +0100231{
232 return NOTIFY_DONE;
233}
234
Or Gerlitz84388842016-07-14 10:32:43 +0300235static inline bool switchdev_port_same_parent_id(struct net_device *a,
236 struct net_device *b)
237{
238 return false;
239}
240
Simon Hormand643a752017-06-29 22:08:11 +0200241#define SWITCHDEV_SET_OPS(netdev, ops) do {} while (0)
242
Jiri Pirko007f7902014-11-28 14:34:17 +0100243#endif
244
245#endif /* _LINUX_SWITCHDEV_H_ */