Jakub Kicinski | 83c9e13 | 2017-12-01 15:08:58 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2017 Netronome Systems, Inc. |
| 3 | * |
| 4 | * This software is licensed under the GNU General License Version 2, |
| 5 | * June 1991 as shown in the file COPYING in the top-level directory of this |
| 6 | * source tree. |
| 7 | * |
| 8 | * THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" |
| 9 | * WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, |
| 10 | * BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 11 | * FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE |
| 12 | * OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME |
| 13 | * THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. |
| 14 | */ |
| 15 | |
Jakub Kicinski | 7957922 | 2017-12-01 15:09:01 -0800 | [diff] [blame] | 16 | #include <linux/device.h> |
Jakub Kicinski | 83c9e13 | 2017-12-01 15:08:58 -0800 | [diff] [blame] | 17 | #include <linux/kernel.h> |
Jakub Kicinski | 31d3ad8 | 2017-12-01 15:08:59 -0800 | [diff] [blame] | 18 | #include <linux/list.h> |
Jakub Kicinski | 83c9e13 | 2017-12-01 15:08:58 -0800 | [diff] [blame] | 19 | #include <linux/netdevice.h> |
| 20 | #include <linux/u64_stats_sync.h> |
Jiri Pirko | 8320d14 | 2019-04-25 15:59:53 +0200 | [diff] [blame^] | 21 | #include <net/devlink.h> |
Jakub Kicinski | 0529662 | 2018-07-11 20:36:40 -0700 | [diff] [blame] | 22 | #include <net/xdp.h> |
Jakub Kicinski | 83c9e13 | 2017-12-01 15:08:58 -0800 | [diff] [blame] | 23 | |
| 24 | #define DRV_NAME "netdevsim" |
| 25 | |
Jakub Kicinski | 31d3ad8 | 2017-12-01 15:08:59 -0800 | [diff] [blame] | 26 | #define NSIM_XDP_MAX_MTU 4000 |
| 27 | |
| 28 | #define NSIM_EA(extack, msg) NL_SET_ERR_MSG_MOD((extack), msg) |
| 29 | |
Shannon Nelson | 7699353 | 2018-06-26 10:07:54 -0700 | [diff] [blame] | 30 | #define NSIM_IPSEC_MAX_SA_COUNT 33 |
| 31 | #define NSIM_IPSEC_VALID BIT(31) |
| 32 | |
| 33 | struct nsim_sa { |
| 34 | struct xfrm_state *xs; |
| 35 | __be32 ipaddr[4]; |
| 36 | u32 key[4]; |
| 37 | u32 salt; |
| 38 | bool used; |
| 39 | bool crypt; |
| 40 | bool rx; |
| 41 | }; |
| 42 | |
| 43 | struct nsim_ipsec { |
| 44 | struct nsim_sa sa[NSIM_IPSEC_MAX_SA_COUNT]; |
| 45 | struct dentry *pfile; |
| 46 | u32 count; |
| 47 | u32 tx; |
| 48 | u32 ok; |
| 49 | }; |
| 50 | |
Jakub Kicinski | 83c9e13 | 2017-12-01 15:08:58 -0800 | [diff] [blame] | 51 | struct netdevsim { |
Jakub Kicinski | 31d3ad8 | 2017-12-01 15:08:59 -0800 | [diff] [blame] | 52 | struct net_device *netdev; |
Jiri Pirko | a60f9e4 | 2019-04-25 15:59:49 +0200 | [diff] [blame] | 53 | struct nsim_dev *nsim_dev; |
Jakub Kicinski | 31d3ad8 | 2017-12-01 15:08:59 -0800 | [diff] [blame] | 54 | |
Jakub Kicinski | 83c9e13 | 2017-12-01 15:08:58 -0800 | [diff] [blame] | 55 | u64 tx_packets; |
| 56 | u64 tx_bytes; |
| 57 | struct u64_stats_sync syncp; |
Jakub Kicinski | 31d3ad8 | 2017-12-01 15:08:59 -0800 | [diff] [blame] | 58 | |
Jiri Pirko | 40e4fe4 | 2019-04-25 15:59:45 +0200 | [diff] [blame] | 59 | struct nsim_bus_dev *nsim_bus_dev; |
Jakub Kicinski | 7957922 | 2017-12-01 15:09:01 -0800 | [diff] [blame] | 60 | |
Jakub Kicinski | 31d3ad8 | 2017-12-01 15:08:59 -0800 | [diff] [blame] | 61 | struct dentry *ddir; |
| 62 | |
| 63 | struct bpf_prog *bpf_offloaded; |
| 64 | u32 bpf_offloaded_id; |
| 65 | |
Jakub Kicinski | 0529662 | 2018-07-11 20:36:40 -0700 | [diff] [blame] | 66 | struct xdp_attachment_info xdp; |
Jakub Kicinski | 799e173 | 2018-07-11 20:36:42 -0700 | [diff] [blame] | 67 | struct xdp_attachment_info xdp_hw; |
Jakub Kicinski | 31d3ad8 | 2017-12-01 15:08:59 -0800 | [diff] [blame] | 68 | |
Jakub Kicinski | 31d3ad8 | 2017-12-01 15:08:59 -0800 | [diff] [blame] | 69 | bool bpf_tc_accept; |
| 70 | bool bpf_tc_non_bound_accept; |
| 71 | bool bpf_xdpdrv_accept; |
| 72 | bool bpf_xdpoffload_accept; |
Jakub Kicinski | 395cacb | 2018-01-17 19:13:30 -0800 | [diff] [blame] | 73 | |
| 74 | bool bpf_map_accept; |
Shannon Nelson | 7699353 | 2018-06-26 10:07:54 -0700 | [diff] [blame] | 75 | struct nsim_ipsec ipsec; |
Jakub Kicinski | 83c9e13 | 2017-12-01 15:08:58 -0800 | [diff] [blame] | 76 | }; |
Jakub Kicinski | 31d3ad8 | 2017-12-01 15:08:59 -0800 | [diff] [blame] | 77 | |
Jakub Kicinski | 7c5db7e | 2018-01-23 11:22:54 -0800 | [diff] [blame] | 78 | #ifdef CONFIG_BPF_SYSCALL |
Jiri Pirko | d514f41 | 2019-04-25 15:59:50 +0200 | [diff] [blame] | 79 | int nsim_bpf_dev_init(struct nsim_dev *nsim_dev); |
| 80 | void nsim_bpf_dev_exit(struct nsim_dev *nsim_dev); |
Jakub Kicinski | 31d3ad8 | 2017-12-01 15:08:59 -0800 | [diff] [blame] | 81 | int nsim_bpf_init(struct netdevsim *ns); |
| 82 | void nsim_bpf_uninit(struct netdevsim *ns); |
| 83 | int nsim_bpf(struct net_device *dev, struct netdev_bpf *bpf); |
| 84 | int nsim_bpf_disable_tc(struct netdevsim *ns); |
| 85 | int nsim_bpf_setup_tc_block_cb(enum tc_setup_type type, |
| 86 | void *type_data, void *cb_priv); |
Jakub Kicinski | 7c5db7e | 2018-01-23 11:22:54 -0800 | [diff] [blame] | 87 | #else |
Jiri Pirko | d514f41 | 2019-04-25 15:59:50 +0200 | [diff] [blame] | 88 | |
| 89 | static inline int nsim_bpf_dev_init(struct nsim_dev *nsim_dev) |
| 90 | { |
| 91 | return 0; |
| 92 | } |
| 93 | |
| 94 | static inline void nsim_bpf_dev_exit(struct nsim_dev *nsim_dev) |
| 95 | { |
| 96 | } |
Jakub Kicinski | 7c5db7e | 2018-01-23 11:22:54 -0800 | [diff] [blame] | 97 | static inline int nsim_bpf_init(struct netdevsim *ns) |
| 98 | { |
| 99 | return 0; |
| 100 | } |
| 101 | |
| 102 | static inline void nsim_bpf_uninit(struct netdevsim *ns) |
| 103 | { |
| 104 | } |
| 105 | |
| 106 | static inline int nsim_bpf(struct net_device *dev, struct netdev_bpf *bpf) |
| 107 | { |
| 108 | return bpf->command == XDP_QUERY_PROG ? 0 : -EOPNOTSUPP; |
| 109 | } |
| 110 | |
| 111 | static inline int nsim_bpf_disable_tc(struct netdevsim *ns) |
| 112 | { |
| 113 | return 0; |
| 114 | } |
| 115 | |
| 116 | static inline int |
| 117 | nsim_bpf_setup_tc_block_cb(enum tc_setup_type type, void *type_data, |
| 118 | void *cb_priv) |
| 119 | { |
| 120 | return -EOPNOTSUPP; |
| 121 | } |
| 122 | #endif |
Jakub Kicinski | 7957922 | 2017-12-01 15:09:01 -0800 | [diff] [blame] | 123 | |
David Ahern | 37923ed | 2018-03-27 18:22:00 -0700 | [diff] [blame] | 124 | enum nsim_resource_id { |
| 125 | NSIM_RESOURCE_NONE, /* DEVLINK_RESOURCE_ID_PARENT_TOP */ |
| 126 | NSIM_RESOURCE_IPV4, |
| 127 | NSIM_RESOURCE_IPV4_FIB, |
| 128 | NSIM_RESOURCE_IPV4_FIB_RULES, |
| 129 | NSIM_RESOURCE_IPV6, |
| 130 | NSIM_RESOURCE_IPV6_FIB, |
| 131 | NSIM_RESOURCE_IPV6_FIB_RULES, |
| 132 | }; |
| 133 | |
Jiri Pirko | 8320d14 | 2019-04-25 15:59:53 +0200 | [diff] [blame^] | 134 | struct nsim_dev_port { |
| 135 | struct list_head list; |
| 136 | struct devlink_port devlink_port; |
| 137 | unsigned int port_index; |
| 138 | struct dentry *ddir; |
| 139 | }; |
| 140 | |
Jiri Pirko | a60f9e4 | 2019-04-25 15:59:49 +0200 | [diff] [blame] | 141 | struct nsim_dev { |
Jiri Pirko | d514f41 | 2019-04-25 15:59:50 +0200 | [diff] [blame] | 142 | struct nsim_bus_dev *nsim_bus_dev; |
Jiri Pirko | a60f9e4 | 2019-04-25 15:59:49 +0200 | [diff] [blame] | 143 | struct nsim_fib_data *fib_data; |
Jiri Pirko | d514f41 | 2019-04-25 15:59:50 +0200 | [diff] [blame] | 144 | struct dentry *ddir; |
Jiri Pirko | ab1d0cc | 2019-04-25 15:59:52 +0200 | [diff] [blame] | 145 | struct dentry *ports_ddir; |
Jiri Pirko | d514f41 | 2019-04-25 15:59:50 +0200 | [diff] [blame] | 146 | struct bpf_offload_dev *bpf_dev; |
| 147 | bool bpf_bind_accept; |
| 148 | u32 bpf_bind_verifier_delay; |
| 149 | struct dentry *ddir_bpf_bound_progs; |
| 150 | u32 prog_id_gen; |
| 151 | struct list_head bpf_bound_progs; |
| 152 | struct list_head bpf_bound_maps; |
Jiri Pirko | 514cf64 | 2019-04-25 15:59:51 +0200 | [diff] [blame] | 153 | struct netdev_phys_item_id switch_id; |
Jiri Pirko | 8320d14 | 2019-04-25 15:59:53 +0200 | [diff] [blame^] | 154 | struct list_head port_list; |
Jiri Pirko | a60f9e4 | 2019-04-25 15:59:49 +0200 | [diff] [blame] | 155 | }; |
| 156 | |
Jiri Pirko | d514f41 | 2019-04-25 15:59:50 +0200 | [diff] [blame] | 157 | int nsim_dev_init(void); |
| 158 | void nsim_dev_exit(void); |
Jiri Pirko | 8320d14 | 2019-04-25 15:59:53 +0200 | [diff] [blame^] | 159 | int nsim_dev_probe(struct nsim_bus_dev *nsim_bus_dev); |
| 160 | void nsim_dev_remove(struct nsim_bus_dev *nsim_bus_dev); |
David Ahern | 37923ed | 2018-03-27 18:22:00 -0700 | [diff] [blame] | 161 | |
Jiri Pirko | 5fc4942 | 2019-04-25 15:59:42 +0200 | [diff] [blame] | 162 | struct nsim_fib_data *nsim_fib_create(void); |
| 163 | void nsim_fib_destroy(struct nsim_fib_data *fib_data); |
| 164 | u64 nsim_fib_get_val(struct nsim_fib_data *fib_data, |
| 165 | enum nsim_resource_id res_id, bool max); |
| 166 | int nsim_fib_set_max(struct nsim_fib_data *fib_data, |
| 167 | enum nsim_resource_id res_id, u64 val, |
David Ahern | 7fa76d7 | 2018-06-05 08:14:10 -0700 | [diff] [blame] | 168 | struct netlink_ext_ack *extack); |
David Ahern | 37923ed | 2018-03-27 18:22:00 -0700 | [diff] [blame] | 169 | |
Shannon Nelson | 7699353 | 2018-06-26 10:07:54 -0700 | [diff] [blame] | 170 | #if IS_ENABLED(CONFIG_XFRM_OFFLOAD) |
| 171 | void nsim_ipsec_init(struct netdevsim *ns); |
| 172 | void nsim_ipsec_teardown(struct netdevsim *ns); |
| 173 | bool nsim_ipsec_tx(struct netdevsim *ns, struct sk_buff *skb); |
| 174 | #else |
| 175 | static inline void nsim_ipsec_init(struct netdevsim *ns) |
| 176 | { |
| 177 | } |
| 178 | |
| 179 | static inline void nsim_ipsec_teardown(struct netdevsim *ns) |
| 180 | { |
| 181 | } |
| 182 | |
| 183 | static inline bool nsim_ipsec_tx(struct netdevsim *ns, struct sk_buff *skb) |
| 184 | { |
| 185 | return true; |
| 186 | } |
| 187 | #endif |
| 188 | |
Jiri Pirko | 40e4fe4 | 2019-04-25 15:59:45 +0200 | [diff] [blame] | 189 | struct nsim_vf_config { |
| 190 | int link_state; |
| 191 | u16 min_tx_rate; |
| 192 | u16 max_tx_rate; |
| 193 | u16 vlan; |
| 194 | __be16 vlan_proto; |
| 195 | u16 qos; |
| 196 | u8 vf_mac[ETH_ALEN]; |
| 197 | bool spoofchk_enabled; |
| 198 | bool trusted; |
| 199 | bool rss_query_enabled; |
| 200 | }; |
Jiri Pirko | 925f5af | 2019-04-25 15:59:44 +0200 | [diff] [blame] | 201 | |
Jiri Pirko | 40e4fe4 | 2019-04-25 15:59:45 +0200 | [diff] [blame] | 202 | struct nsim_bus_dev { |
| 203 | struct device dev; |
Jiri Pirko | f9d9db4 | 2019-04-25 15:59:48 +0200 | [diff] [blame] | 204 | struct list_head list; |
| 205 | unsigned int port_count; |
Jiri Pirko | 40e4fe4 | 2019-04-25 15:59:45 +0200 | [diff] [blame] | 206 | unsigned int num_vfs; |
| 207 | struct nsim_vf_config *vfconfigs; |
| 208 | }; |
Jiri Pirko | 925f5af | 2019-04-25 15:59:44 +0200 | [diff] [blame] | 209 | |
Jiri Pirko | f9d9db4 | 2019-04-25 15:59:48 +0200 | [diff] [blame] | 210 | struct nsim_bus_dev *nsim_bus_dev_new(unsigned int id, unsigned int port_count); |
Jiri Pirko | 8320d14 | 2019-04-25 15:59:53 +0200 | [diff] [blame^] | 211 | struct nsim_bus_dev *nsim_bus_dev_new_with_ns(struct netdevsim *ns); |
Jiri Pirko | 40e4fe4 | 2019-04-25 15:59:45 +0200 | [diff] [blame] | 212 | void nsim_bus_dev_del(struct nsim_bus_dev *nsim_bus_dev); |
Jiri Pirko | 925f5af | 2019-04-25 15:59:44 +0200 | [diff] [blame] | 213 | int nsim_bus_init(void); |
| 214 | void nsim_bus_exit(void); |