blob: aec5e49661a2bc17c5e00f17369677e356c2f2da [file] [log] [blame]
Jiri Pirko007f7902014-11-28 14:34:17 +01001/*
2 * include/net/switchdev.h - Switch device API
3 * Copyright (c) 2014 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>
16
Scott Feldman30943332015-05-10 09:47:48 -070017#define SWITCHDEV_F_NO_RECURSE BIT(0)
18
19enum switchdev_trans {
20 SWITCHDEV_TRANS_NONE,
21 SWITCHDEV_TRANS_PREPARE,
22 SWITCHDEV_TRANS_ABORT,
23 SWITCHDEV_TRANS_COMMIT,
24};
25
26enum switchdev_attr_id {
27 SWITCHDEV_ATTR_UNDEFINED,
Scott Feldmanf8e20a92015-05-10 09:47:49 -070028 SWITCHDEV_ATTR_PORT_PARENT_ID,
Scott Feldman35636062015-05-10 09:47:51 -070029 SWITCHDEV_ATTR_PORT_STP_STATE,
Scott Feldman30943332015-05-10 09:47:48 -070030};
31
32struct switchdev_attr {
33 enum switchdev_attr_id id;
34 enum switchdev_trans trans;
35 u32 flags;
Scott Feldmanf8e20a92015-05-10 09:47:49 -070036 union {
37 struct netdev_phys_item_id ppid; /* PORT_PARENT_ID */
Scott Feldman35636062015-05-10 09:47:51 -070038 u8 stp_state; /* PORT_STP_STATE */
Scott Feldmanf8e20a92015-05-10 09:47:49 -070039 };
Scott Feldman30943332015-05-10 09:47:48 -070040};
41
Scott Feldman41706042015-03-15 21:07:14 -070042struct fib_info;
43
44/**
45 * struct switchdev_ops - switchdev operations
46 *
Scott Feldman30943332015-05-10 09:47:48 -070047 * @switchdev_port_attr_get: Get a port attribute (see switchdev_attr).
48 *
49 * @switchdev_port_attr_set: Set a port attribute (see switchdev_attr).
50 *
Jiri Pirko9d47c0a2015-05-10 09:47:47 -070051 * @switchdev_fib_ipv4_add: Called to add/modify IPv4 route to switch device.
Scott Feldman41706042015-03-15 21:07:14 -070052 *
Jiri Pirko9d47c0a2015-05-10 09:47:47 -070053 * @switchdev_fib_ipv4_del: Called to delete IPv4 route from switch device.
Scott Feldman41706042015-03-15 21:07:14 -070054 */
Jiri Pirko9d47c0a2015-05-10 09:47:47 -070055struct switchdev_ops {
Scott Feldman30943332015-05-10 09:47:48 -070056 int (*switchdev_port_attr_get)(struct net_device *dev,
57 struct switchdev_attr *attr);
58 int (*switchdev_port_attr_set)(struct net_device *dev,
59 struct switchdev_attr *attr);
Jiri Pirko9d47c0a2015-05-10 09:47:47 -070060 int (*switchdev_fib_ipv4_add)(struct net_device *dev, __be32 dst,
61 int dst_len, struct fib_info *fi,
62 u8 tos, u8 type, u32 nlflags,
63 u32 tb_id);
64 int (*switchdev_fib_ipv4_del)(struct net_device *dev, __be32 dst,
65 int dst_len, struct fib_info *fi,
66 u8 tos, u8 type, u32 tb_id);
Scott Feldman41706042015-03-15 21:07:14 -070067};
68
Jiri Pirkoebb9a032015-05-10 09:47:46 -070069enum switchdev_notifier_type {
70 SWITCHDEV_FDB_ADD = 1,
71 SWITCHDEV_FDB_DEL,
Jiri Pirko3aeb6612015-01-15 23:49:37 +010072};
73
Jiri Pirkoebb9a032015-05-10 09:47:46 -070074struct switchdev_notifier_info {
Jiri Pirko03bf0c22015-01-15 23:49:36 +010075 struct net_device *dev;
76};
77
Jiri Pirkoebb9a032015-05-10 09:47:46 -070078struct switchdev_notifier_fdb_info {
79 struct switchdev_notifier_info info; /* must be first */
Jiri Pirko3aeb6612015-01-15 23:49:37 +010080 const unsigned char *addr;
81 u16 vid;
82};
83
Jiri Pirko03bf0c22015-01-15 23:49:36 +010084static inline struct net_device *
Jiri Pirkoebb9a032015-05-10 09:47:46 -070085switchdev_notifier_info_to_dev(const struct switchdev_notifier_info *info)
Jiri Pirko03bf0c22015-01-15 23:49:36 +010086{
87 return info->dev;
88}
Jiri Pirko007f7902014-11-28 14:34:17 +010089
90#ifdef CONFIG_NET_SWITCHDEV
91
Scott Feldman30943332015-05-10 09:47:48 -070092int switchdev_port_attr_get(struct net_device *dev,
93 struct switchdev_attr *attr);
94int switchdev_port_attr_set(struct net_device *dev,
95 struct switchdev_attr *attr);
Jiri Pirkoebb9a032015-05-10 09:47:46 -070096int register_switchdev_notifier(struct notifier_block *nb);
97int unregister_switchdev_notifier(struct notifier_block *nb);
98int call_switchdev_notifiers(unsigned long val, struct net_device *dev,
99 struct switchdev_notifier_info *info);
100int switchdev_port_bridge_setlink(struct net_device *dev,
101 struct nlmsghdr *nlh, u16 flags);
102int switchdev_port_bridge_dellink(struct net_device *dev,
103 struct nlmsghdr *nlh, u16 flags);
104int ndo_dflt_switchdev_port_bridge_dellink(struct net_device *dev,
105 struct nlmsghdr *nlh, u16 flags);
106int ndo_dflt_switchdev_port_bridge_setlink(struct net_device *dev,
107 struct nlmsghdr *nlh, u16 flags);
108int switchdev_fib_ipv4_add(u32 dst, int dst_len, struct fib_info *fi,
109 u8 tos, u8 type, u32 nlflags, u32 tb_id);
110int switchdev_fib_ipv4_del(u32 dst, int dst_len, struct fib_info *fi,
111 u8 tos, u8 type, u32 tb_id);
112void switchdev_fib_ipv4_abort(struct fib_info *fi);
Scott Feldman5e8d9042015-03-05 21:21:15 -0800113
Jiri Pirko007f7902014-11-28 14:34:17 +0100114#else
115
Scott Feldman30943332015-05-10 09:47:48 -0700116static inline int switchdev_port_attr_get(struct net_device *dev,
117 struct switchdev_attr *attr)
118{
119 return -EOPNOTSUPP;
120}
121
122static inline int switchdev_port_attr_set(struct net_device *dev,
123 struct switchdev_attr *attr)
124{
125 return -EOPNOTSUPP;
126}
127
Jiri Pirkoebb9a032015-05-10 09:47:46 -0700128static inline int register_switchdev_notifier(struct notifier_block *nb)
Jiri Pirko03bf0c22015-01-15 23:49:36 +0100129{
130 return 0;
131}
132
Jiri Pirkoebb9a032015-05-10 09:47:46 -0700133static inline int unregister_switchdev_notifier(struct notifier_block *nb)
Jiri Pirko03bf0c22015-01-15 23:49:36 +0100134{
135 return 0;
136}
137
Jiri Pirkoebb9a032015-05-10 09:47:46 -0700138static inline int call_switchdev_notifiers(unsigned long val,
139 struct net_device *dev,
140 struct switchdev_notifier_info *info)
Jiri Pirko03bf0c22015-01-15 23:49:36 +0100141{
142 return NOTIFY_DONE;
143}
144
Jiri Pirkoebb9a032015-05-10 09:47:46 -0700145static inline int switchdev_port_bridge_setlink(struct net_device *dev,
146 struct nlmsghdr *nlh,
147 u16 flags)
Roopa Prabhu8a44dbb2015-01-29 22:40:13 -0800148{
149 return -EOPNOTSUPP;
150}
151
Jiri Pirkoebb9a032015-05-10 09:47:46 -0700152static inline int switchdev_port_bridge_dellink(struct net_device *dev,
153 struct nlmsghdr *nlh,
154 u16 flags)
Roopa Prabhu8a44dbb2015-01-29 22:40:13 -0800155{
156 return -EOPNOTSUPP;
157}
158
Jiri Pirkoebb9a032015-05-10 09:47:46 -0700159static inline int ndo_dflt_switchdev_port_bridge_dellink(struct net_device *dev,
160 struct nlmsghdr *nlh,
161 u16 flags)
Roopa Prabhu8a44dbb2015-01-29 22:40:13 -0800162{
163 return 0;
164}
165
Jiri Pirkoebb9a032015-05-10 09:47:46 -0700166static inline int ndo_dflt_switchdev_port_bridge_setlink(struct net_device *dev,
167 struct nlmsghdr *nlh,
168 u16 flags)
Roopa Prabhu8a44dbb2015-01-29 22:40:13 -0800169{
170 return 0;
171}
172
Jiri Pirkoebb9a032015-05-10 09:47:46 -0700173static inline int switchdev_fib_ipv4_add(u32 dst, int dst_len,
174 struct fib_info *fi,
175 u8 tos, u8 type,
176 u32 nlflags, u32 tb_id)
Scott Feldman5e8d9042015-03-05 21:21:15 -0800177{
178 return 0;
179}
180
Jiri Pirkoebb9a032015-05-10 09:47:46 -0700181static inline int switchdev_fib_ipv4_del(u32 dst, int dst_len,
182 struct fib_info *fi,
183 u8 tos, u8 type, u32 tb_id)
Scott Feldman5e8d9042015-03-05 21:21:15 -0800184{
185 return 0;
186}
187
Jiri Pirkoebb9a032015-05-10 09:47:46 -0700188static inline void switchdev_fib_ipv4_abort(struct fib_info *fi)
Scott Feldman8e05fd72015-03-05 21:21:19 -0800189{
190}
191
Jiri Pirko007f7902014-11-28 14:34:17 +0100192#endif
193
194#endif /* _LINUX_SWITCHDEV_H_ */