blob: f15a186f6c871c6872c1a78e1a1212abbd3e1f1e [file] [log] [blame]
Jakub Kicinski8aa0cb02017-05-31 08:06:46 -07001/*
2 * Copyright (C) 2017 Netronome Systems, Inc.
3 *
4 * This software is dual 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 or the BSD 2-Clause License provided below. You have the
7 * option to license this software under the complete terms of either license.
8 *
9 * The BSD 2-Clause License:
10 *
11 * Redistribution and use in source and binary forms, with or
12 * without modification, are permitted provided that the following
13 * conditions are met:
14 *
15 * 1. Redistributions of source code must retain the above
16 * copyright notice, this list of conditions and the following
17 * disclaimer.
18 *
19 * 2. Redistributions in binary form must reproduce the above
20 * copyright notice, this list of conditions and the following
21 * disclaimer in the documentation and/or other materials
22 * provided with the distribution.
23 *
24 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
25 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
26 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
27 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
28 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
29 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
30 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
31 * SOFTWARE.
32 */
33
Jakub Kicinskibb45e512017-05-31 08:06:49 -070034#include <net/pkt_cls.h>
35
Jakub Kicinski8aa0cb02017-05-31 08:06:46 -070036#include "../nfpcore/nfp_cpp.h"
37#include "../nfp_app.h"
38#include "../nfp_main.h"
39#include "../nfp_net.h"
40#include "../nfp_port.h"
Jakub Kicinskibb45e512017-05-31 08:06:49 -070041#include "main.h"
42
43static bool nfp_net_ebpf_capable(struct nfp_net *nn)
44{
Jakub Kicinski0f6cf4d2017-10-12 10:34:13 -070045#ifdef __LITTLE_ENDIAN
Jakub Kicinskibb45e512017-05-31 08:06:49 -070046 if (nn->cap & NFP_NET_CFG_CTRL_BPF &&
47 nn_readb(nn, NFP_NET_CFG_BPF_ABI) == NFP_NET_BPF_ABI)
48 return true;
Jakub Kicinski0f6cf4d2017-10-12 10:34:13 -070049#endif
Jakub Kicinskibb45e512017-05-31 08:06:49 -070050 return false;
51}
52
53static int
54nfp_bpf_xdp_offload(struct nfp_app *app, struct nfp_net *nn,
55 struct bpf_prog *prog)
56{
57 struct tc_cls_bpf_offload cmd = {
58 .prog = prog,
59 };
60 int ret;
61
62 if (!nfp_net_ebpf_capable(nn))
63 return -EINVAL;
64
65 if (nn->dp.ctrl & NFP_NET_CFG_CTRL_BPF) {
66 if (!nn->dp.bpf_offload_xdp)
67 return prog ? -EBUSY : 0;
68 cmd.command = prog ? TC_CLSBPF_REPLACE : TC_CLSBPF_DESTROY;
69 } else {
70 if (!prog)
71 return 0;
72 cmd.command = TC_CLSBPF_ADD;
73 }
74
75 ret = nfp_net_bpf_offload(nn, &cmd);
76 /* Stop offload if replace not possible */
77 if (ret && cmd.command == TC_CLSBPF_REPLACE)
78 nfp_bpf_xdp_offload(app, nn, NULL);
79 nn->dp.bpf_offload_xdp = prog && !ret;
80 return ret;
81}
82
83static const char *nfp_bpf_extra_cap(struct nfp_app *app, struct nfp_net *nn)
84{
85 return nfp_net_ebpf_capable(nn) ? "BPF" : "";
86}
Jakub Kicinski8aa0cb02017-05-31 08:06:46 -070087
88static int
Jakub Kicinskic4962912017-09-02 18:26:00 -070089nfp_bpf_vnic_alloc(struct nfp_app *app, struct nfp_net *nn, unsigned int id)
Jakub Kicinski8aa0cb02017-05-31 08:06:46 -070090{
Jakub Kicinskic66a9cf2017-05-31 08:06:50 -070091 struct nfp_net_bpf_priv *priv;
92 int ret;
93
Jakub Kicinskic66a9cf2017-05-31 08:06:50 -070094 priv = kmalloc(sizeof(*priv), GFP_KERNEL);
95 if (!priv)
96 return -ENOMEM;
97
98 nn->app_priv = priv;
99 spin_lock_init(&priv->rx_filter_lock);
Kees Cook3248f772017-10-25 03:51:38 -0700100 priv->nn = nn;
101 timer_setup(&priv->rx_filter_stats_timer,
102 nfp_net_filter_stats_timer, 0);
Jakub Kicinskic66a9cf2017-05-31 08:06:50 -0700103
Jakub Kicinskic4962912017-09-02 18:26:00 -0700104 ret = nfp_app_nic_vnic_alloc(app, nn, id);
Jakub Kicinskic66a9cf2017-05-31 08:06:50 -0700105 if (ret)
106 kfree(priv);
107
108 return ret;
Jakub Kicinski8aa0cb02017-05-31 08:06:46 -0700109}
110
Jakub Kicinskic4962912017-09-02 18:26:00 -0700111static void nfp_bpf_vnic_free(struct nfp_app *app, struct nfp_net *nn)
Jakub Kicinskibb45e512017-05-31 08:06:49 -0700112{
113 if (nn->dp.bpf_offload_xdp)
114 nfp_bpf_xdp_offload(app, nn, NULL);
Jakub Kicinskic66a9cf2017-05-31 08:06:50 -0700115 kfree(nn->app_priv);
Jakub Kicinskibb45e512017-05-31 08:06:49 -0700116}
117
Jiri Pirko90d97312017-10-19 15:50:44 +0200118static int nfp_bpf_setup_tc_block_cb(enum tc_setup_type type,
119 void *type_data, void *cb_priv)
120{
121 struct tc_cls_bpf_offload *cls_bpf = type_data;
122 struct nfp_net *nn = cb_priv;
123
124 switch (type) {
125 case TC_SETUP_CLSBPF:
126 if (!nfp_net_ebpf_capable(nn) ||
127 cls_bpf->common.protocol != htons(ETH_P_ALL) ||
128 cls_bpf->common.chain_index)
129 return -EOPNOTSUPP;
130 return nfp_net_bpf_offload(nn, cls_bpf);
131 default:
132 return -EOPNOTSUPP;
133 }
134}
135
136static int nfp_bpf_setup_tc_block(struct net_device *netdev,
137 struct tc_block_offload *f)
138{
139 struct nfp_net *nn = netdev_priv(netdev);
140
141 if (f->binder_type != TCF_BLOCK_BINDER_TYPE_CLSACT_INGRESS)
142 return -EOPNOTSUPP;
143
144 switch (f->command) {
145 case TC_BLOCK_BIND:
146 return tcf_block_cb_register(f->block,
147 nfp_bpf_setup_tc_block_cb,
148 nn, nn);
149 case TC_BLOCK_UNBIND:
150 tcf_block_cb_unregister(f->block,
151 nfp_bpf_setup_tc_block_cb,
152 nn);
153 return 0;
154 default:
155 return -EOPNOTSUPP;
156 }
157}
158
Jakub Kicinskibb45e512017-05-31 08:06:49 -0700159static int nfp_bpf_setup_tc(struct nfp_app *app, struct net_device *netdev,
Jiri Pirkode4784c2017-08-07 10:15:32 +0200160 enum tc_setup_type type, void *type_data)
Jakub Kicinskibb45e512017-05-31 08:06:49 -0700161{
Jiri Pirko90d97312017-10-19 15:50:44 +0200162 switch (type) {
Jiri Pirko90d97312017-10-19 15:50:44 +0200163 case TC_SETUP_BLOCK:
164 return nfp_bpf_setup_tc_block(netdev, type_data);
165 default:
Jakub Kicinskibb45e512017-05-31 08:06:49 -0700166 return -EOPNOTSUPP;
Jiri Pirko90d97312017-10-19 15:50:44 +0200167 }
Jakub Kicinskibb45e512017-05-31 08:06:49 -0700168}
169
170static bool nfp_bpf_tc_busy(struct nfp_app *app, struct nfp_net *nn)
171{
172 return nn->dp.ctrl & NFP_NET_CFG_CTRL_BPF;
173}
174
Jakub Kicinski8aa0cb02017-05-31 08:06:46 -0700175const struct nfp_app_type app_bpf = {
176 .id = NFP_APP_BPF_NIC,
Jakub Kicinski2707d6f2017-05-31 08:06:47 -0700177 .name = "ebpf",
Jakub Kicinski8aa0cb02017-05-31 08:06:46 -0700178
Jakub Kicinskibb45e512017-05-31 08:06:49 -0700179 .extra_cap = nfp_bpf_extra_cap,
180
Jakub Kicinskic4962912017-09-02 18:26:00 -0700181 .vnic_alloc = nfp_bpf_vnic_alloc,
182 .vnic_free = nfp_bpf_vnic_free,
Jakub Kicinskibb45e512017-05-31 08:06:49 -0700183
184 .setup_tc = nfp_bpf_setup_tc,
185 .tc_busy = nfp_bpf_tc_busy,
186 .xdp_offload = nfp_bpf_xdp_offload,
Jakub Kicinski8aa0cb02017-05-31 08:06:46 -0700187};