blob: 322027792fe8137ba20d478e5275daebf3faffe9 [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"
Jakub Kicinski77a844e2017-12-14 21:29:16 -080037#include "../nfpcore/nfp_nffw.h"
Jakub Kicinski8aa0cb02017-05-31 08:06:46 -070038#include "../nfp_app.h"
39#include "../nfp_main.h"
40#include "../nfp_net.h"
41#include "../nfp_port.h"
Jakub Kicinski0d49eaf2017-12-14 21:29:18 -080042#include "fw.h"
Jakub Kicinskibb45e512017-05-31 08:06:49 -070043#include "main.h"
44
45static bool nfp_net_ebpf_capable(struct nfp_net *nn)
46{
Jakub Kicinski0f6cf4d2017-10-12 10:34:13 -070047#ifdef __LITTLE_ENDIAN
Jakub Kicinskibb45e512017-05-31 08:06:49 -070048 if (nn->cap & NFP_NET_CFG_CTRL_BPF &&
49 nn_readb(nn, NFP_NET_CFG_BPF_ABI) == NFP_NET_BPF_ABI)
50 return true;
Jakub Kicinski0f6cf4d2017-10-12 10:34:13 -070051#endif
Jakub Kicinskibb45e512017-05-31 08:06:49 -070052 return false;
53}
54
55static int
56nfp_bpf_xdp_offload(struct nfp_app *app, struct nfp_net *nn,
Quentin Monnetacc2abbb2018-01-19 17:44:49 -080057 struct bpf_prog *prog, struct netlink_ext_ack *extack)
Jakub Kicinskibb45e512017-05-31 08:06:49 -070058{
Jakub Kicinski9ce7a952017-11-03 13:56:25 -070059 bool running, xdp_running;
Jakub Kicinskibb45e512017-05-31 08:06:49 -070060 int ret;
61
62 if (!nfp_net_ebpf_capable(nn))
63 return -EINVAL;
64
Jakub Kicinski9ce7a952017-11-03 13:56:25 -070065 running = nn->dp.ctrl & NFP_NET_CFG_CTRL_BPF;
66 xdp_running = running && nn->dp.bpf_offload_xdp;
Jakub Kicinskibb45e512017-05-31 08:06:49 -070067
Jakub Kicinski9ce7a952017-11-03 13:56:25 -070068 if (!prog && !xdp_running)
69 return 0;
70 if (prog && running && !xdp_running)
71 return -EBUSY;
72
Quentin Monnet52be9a72018-01-19 17:44:50 -080073 ret = nfp_net_bpf_offload(nn, prog, running, extack);
Jakub Kicinskibb45e512017-05-31 08:06:49 -070074 /* Stop offload if replace not possible */
Jakub Kicinski9ce7a952017-11-03 13:56:25 -070075 if (ret && prog)
Quentin Monnetacc2abbb2018-01-19 17:44:49 -080076 nfp_bpf_xdp_offload(app, nn, NULL, extack);
Jakub Kicinski9ce7a952017-11-03 13:56:25 -070077
Jakub Kicinskibb45e512017-05-31 08:06:49 -070078 nn->dp.bpf_offload_xdp = prog && !ret;
79 return ret;
80}
81
82static const char *nfp_bpf_extra_cap(struct nfp_app *app, struct nfp_net *nn)
83{
84 return nfp_net_ebpf_capable(nn) ? "BPF" : "";
85}
Jakub Kicinski8aa0cb02017-05-31 08:06:46 -070086
Jakub Kicinski4f834352017-12-27 15:36:49 -080087static int
88nfp_bpf_vnic_alloc(struct nfp_app *app, struct nfp_net *nn, unsigned int id)
89{
Jakub Kicinski2314fe92018-01-10 12:26:01 +000090 struct nfp_bpf_vnic *bv;
Jakub Kicinski4f834352017-12-27 15:36:49 -080091 int err;
92
Jakub Kicinski2314fe92018-01-10 12:26:01 +000093 bv = kzalloc(sizeof(*bv), GFP_KERNEL);
94 if (!bv)
Jakub Kicinski4f834352017-12-27 15:36:49 -080095 return -ENOMEM;
Jakub Kicinski2314fe92018-01-10 12:26:01 +000096 nn->app_priv = bv;
Jakub Kicinski4f834352017-12-27 15:36:49 -080097
98 err = nfp_app_nic_vnic_alloc(app, nn, id);
99 if (err)
100 goto err_free_priv;
101
Jakub Kicinski2314fe92018-01-10 12:26:01 +0000102 bv->start_off = nn_readw(nn, NFP_NET_CFG_BPF_START);
103 bv->tgt_done = nn_readw(nn, NFP_NET_CFG_BPF_DONE);
104
Jakub Kicinski4f834352017-12-27 15:36:49 -0800105 return 0;
106err_free_priv:
107 kfree(nn->app_priv);
108 return err;
109}
110
111static void nfp_bpf_vnic_free(struct nfp_app *app, struct nfp_net *nn)
112{
113 struct nfp_bpf_vnic *bv = nn->app_priv;
114
115 WARN_ON(bv->tc_prog);
116 kfree(bv);
117}
118
Jiri Pirko90d97312017-10-19 15:50:44 +0200119static int nfp_bpf_setup_tc_block_cb(enum tc_setup_type type,
120 void *type_data, void *cb_priv)
121{
122 struct tc_cls_bpf_offload *cls_bpf = type_data;
123 struct nfp_net *nn = cb_priv;
Jakub Kicinskid3f89b92017-12-19 13:32:14 -0800124 struct bpf_prog *oldprog;
125 struct nfp_bpf_vnic *bv;
126 int err;
Jiri Pirko90d97312017-10-19 15:50:44 +0200127
Quentin Monnet52be9a72018-01-19 17:44:50 -0800128 if (type != TC_SETUP_CLSBPF) {
129 NL_SET_ERR_MSG_MOD(cls_bpf->common.extack,
130 "only offload of BPF classifiers supported");
131 return -EOPNOTSUPP;
132 }
Jakub Kicinski3107fdc2018-01-25 14:00:45 -0800133 if (!tc_cls_can_offload_and_chain0(nn->dp.netdev, &cls_bpf->common))
Quentin Monnet52be9a72018-01-19 17:44:50 -0800134 return -EOPNOTSUPP;
135 if (!nfp_net_ebpf_capable(nn)) {
136 NL_SET_ERR_MSG_MOD(cls_bpf->common.extack,
137 "NFP firmware does not support eBPF offload");
138 return -EOPNOTSUPP;
139 }
140 if (cls_bpf->common.protocol != htons(ETH_P_ALL)) {
141 NL_SET_ERR_MSG_MOD(cls_bpf->common.extack,
142 "only ETH_P_ALL supported as filter protocol");
143 return -EOPNOTSUPP;
144 }
Jiri Pirko44ae12a2017-11-01 11:47:39 +0100145
Jakub Kicinski9ce7a952017-11-03 13:56:25 -0700146 /* Only support TC direct action */
147 if (!cls_bpf->exts_integrated ||
148 tcf_exts_has_actions(cls_bpf->exts)) {
Quentin Monnet52be9a72018-01-19 17:44:50 -0800149 NL_SET_ERR_MSG_MOD(cls_bpf->common.extack,
150 "only direct action with no legacy actions supported");
Jakub Kicinski9ce7a952017-11-03 13:56:25 -0700151 return -EOPNOTSUPP;
152 }
Jakub Kicinskif4496572017-11-02 01:31:31 -0700153
Jakub Kicinski102740b2017-12-19 13:32:13 -0800154 if (cls_bpf->command != TC_CLSBPF_OFFLOAD)
Jiri Pirko90d97312017-10-19 15:50:44 +0200155 return -EOPNOTSUPP;
Jakub Kicinski102740b2017-12-19 13:32:13 -0800156
Jakub Kicinskid3f89b92017-12-19 13:32:14 -0800157 bv = nn->app_priv;
158 oldprog = cls_bpf->oldprog;
159
160 /* Don't remove if oldprog doesn't match driver's state */
161 if (bv->tc_prog != oldprog) {
162 oldprog = NULL;
163 if (!cls_bpf->prog)
164 return 0;
Jiri Pirko90d97312017-10-19 15:50:44 +0200165 }
Jakub Kicinskid3f89b92017-12-19 13:32:14 -0800166
Quentin Monnet52be9a72018-01-19 17:44:50 -0800167 err = nfp_net_bpf_offload(nn, cls_bpf->prog, oldprog,
168 cls_bpf->common.extack);
Jakub Kicinskid3f89b92017-12-19 13:32:14 -0800169 if (err)
170 return err;
171
172 bv->tc_prog = cls_bpf->prog;
173 return 0;
Jiri Pirko90d97312017-10-19 15:50:44 +0200174}
175
176static int nfp_bpf_setup_tc_block(struct net_device *netdev,
177 struct tc_block_offload *f)
178{
179 struct nfp_net *nn = netdev_priv(netdev);
180
181 if (f->binder_type != TCF_BLOCK_BINDER_TYPE_CLSACT_INGRESS)
182 return -EOPNOTSUPP;
183
184 switch (f->command) {
185 case TC_BLOCK_BIND:
186 return tcf_block_cb_register(f->block,
187 nfp_bpf_setup_tc_block_cb,
188 nn, nn);
189 case TC_BLOCK_UNBIND:
190 tcf_block_cb_unregister(f->block,
191 nfp_bpf_setup_tc_block_cb,
192 nn);
193 return 0;
194 default:
195 return -EOPNOTSUPP;
196 }
197}
198
Jakub Kicinskibb45e512017-05-31 08:06:49 -0700199static int nfp_bpf_setup_tc(struct nfp_app *app, struct net_device *netdev,
Jiri Pirkode4784c2017-08-07 10:15:32 +0200200 enum tc_setup_type type, void *type_data)
Jakub Kicinskibb45e512017-05-31 08:06:49 -0700201{
Jiri Pirko90d97312017-10-19 15:50:44 +0200202 switch (type) {
Jiri Pirko90d97312017-10-19 15:50:44 +0200203 case TC_SETUP_BLOCK:
204 return nfp_bpf_setup_tc_block(netdev, type_data);
205 default:
Jakub Kicinskibb45e512017-05-31 08:06:49 -0700206 return -EOPNOTSUPP;
Jiri Pirko90d97312017-10-19 15:50:44 +0200207 }
Jakub Kicinskibb45e512017-05-31 08:06:49 -0700208}
209
210static bool nfp_bpf_tc_busy(struct nfp_app *app, struct nfp_net *nn)
211{
Jakub Kicinskia0f30c92018-01-10 12:25:58 +0000212 struct nfp_bpf_vnic *bv = nn->app_priv;
213
214 return !!bv->tc_prog;
Jakub Kicinskibb45e512017-05-31 08:06:49 -0700215}
216
Jakub Kicinski0d49eaf2017-12-14 21:29:18 -0800217static int
Jakub Kicinskiccbdc592018-01-10 12:25:57 +0000218nfp_bpf_change_mtu(struct nfp_app *app, struct net_device *netdev, int new_mtu)
219{
220 struct nfp_net *nn = netdev_priv(netdev);
221 unsigned int max_mtu;
222
223 if (~nn->dp.ctrl & NFP_NET_CFG_CTRL_BPF)
224 return 0;
225
226 max_mtu = nn_readb(nn, NFP_NET_CFG_BPF_INL_MTU) * 64 - 32;
227 if (new_mtu > max_mtu) {
228 nn_info(nn, "BPF offload active, MTU over %u not supported\n",
229 max_mtu);
230 return -EBUSY;
231 }
232 return 0;
233}
234
235static int
Jakub Kicinski0d49eaf2017-12-14 21:29:18 -0800236nfp_bpf_parse_cap_adjust_head(struct nfp_app_bpf *bpf, void __iomem *value,
237 u32 length)
238{
239 struct nfp_bpf_cap_tlv_adjust_head __iomem *cap = value;
240 struct nfp_cpp *cpp = bpf->app->pf->cpp;
241
242 if (length < sizeof(*cap)) {
243 nfp_err(cpp, "truncated adjust_head TLV: %d\n", length);
244 return -EINVAL;
245 }
246
247 bpf->adjust_head.flags = readl(&cap->flags);
248 bpf->adjust_head.off_min = readl(&cap->off_min);
249 bpf->adjust_head.off_max = readl(&cap->off_max);
Jakub Kicinski8231f842017-12-14 21:29:19 -0800250 bpf->adjust_head.guaranteed_sub = readl(&cap->guaranteed_sub);
251 bpf->adjust_head.guaranteed_add = readl(&cap->guaranteed_add);
Jakub Kicinski0d49eaf2017-12-14 21:29:18 -0800252
253 if (bpf->adjust_head.off_min > bpf->adjust_head.off_max) {
254 nfp_err(cpp, "invalid adjust_head TLV: min > max\n");
255 return -EINVAL;
256 }
257 if (!FIELD_FIT(UR_REG_IMM_MAX, bpf->adjust_head.off_min) ||
258 !FIELD_FIT(UR_REG_IMM_MAX, bpf->adjust_head.off_max)) {
259 nfp_warn(cpp, "disabling adjust_head - driver expects min/max to fit in as immediates\n");
260 memset(&bpf->adjust_head, 0, sizeof(bpf->adjust_head));
261 return 0;
262 }
263
264 return 0;
265}
266
Jakub Kicinski9d080d52018-01-11 20:29:13 -0800267static int
268nfp_bpf_parse_cap_func(struct nfp_app_bpf *bpf, void __iomem *value, u32 length)
269{
270 struct nfp_bpf_cap_tlv_func __iomem *cap = value;
271
272 if (length < sizeof(*cap)) {
273 nfp_err(bpf->app->cpp, "truncated function TLV: %d\n", length);
274 return -EINVAL;
275 }
276
277 switch (readl(&cap->func_id)) {
278 case BPF_FUNC_map_lookup_elem:
279 bpf->helpers.map_lookup = readl(&cap->func_addr);
280 break;
281 }
282
283 return 0;
284}
285
286static int
287nfp_bpf_parse_cap_maps(struct nfp_app_bpf *bpf, void __iomem *value, u32 length)
288{
289 struct nfp_bpf_cap_tlv_maps __iomem *cap = value;
290
291 if (length < sizeof(*cap)) {
292 nfp_err(bpf->app->cpp, "truncated maps TLV: %d\n", length);
293 return -EINVAL;
294 }
295
296 bpf->maps.types = readl(&cap->types);
297 bpf->maps.max_maps = readl(&cap->max_maps);
298 bpf->maps.max_elems = readl(&cap->max_elems);
299 bpf->maps.max_key_sz = readl(&cap->max_key_sz);
300 bpf->maps.max_val_sz = readl(&cap->max_val_sz);
301 bpf->maps.max_elem_sz = readl(&cap->max_elem_sz);
302
303 return 0;
304}
305
Jakub Kicinski77a844e2017-12-14 21:29:16 -0800306static int nfp_bpf_parse_capabilities(struct nfp_app *app)
307{
308 struct nfp_cpp *cpp = app->pf->cpp;
309 struct nfp_cpp_area *area;
310 u8 __iomem *mem, *start;
311
312 mem = nfp_rtsym_map(app->pf->rtbl, "_abi_bpf_capabilities", "bpf.cap",
313 8, &area);
314 if (IS_ERR(mem))
315 return PTR_ERR(mem) == -ENOENT ? 0 : PTR_ERR(mem);
316
317 start = mem;
318 while (mem - start + 8 < nfp_cpp_area_size(area)) {
Jakub Kicinski0d49eaf2017-12-14 21:29:18 -0800319 u8 __iomem *value;
Jakub Kicinski77a844e2017-12-14 21:29:16 -0800320 u32 type, length;
321
322 type = readl(mem);
323 length = readl(mem + 4);
Jakub Kicinski0d49eaf2017-12-14 21:29:18 -0800324 value = mem + 8;
Jakub Kicinski77a844e2017-12-14 21:29:16 -0800325
326 mem += 8 + length;
327 if (mem - start > nfp_cpp_area_size(area))
328 goto err_release_free;
329
330 switch (type) {
Jakub Kicinski9d080d52018-01-11 20:29:13 -0800331 case NFP_BPF_CAP_TYPE_FUNC:
332 if (nfp_bpf_parse_cap_func(app->priv, value, length))
333 goto err_release_free;
334 break;
Jakub Kicinski0d49eaf2017-12-14 21:29:18 -0800335 case NFP_BPF_CAP_TYPE_ADJUST_HEAD:
336 if (nfp_bpf_parse_cap_adjust_head(app->priv, value,
337 length))
338 goto err_release_free;
339 break;
Jakub Kicinski9d080d52018-01-11 20:29:13 -0800340 case NFP_BPF_CAP_TYPE_MAPS:
341 if (nfp_bpf_parse_cap_maps(app->priv, value, length))
342 goto err_release_free;
343 break;
Jakub Kicinski77a844e2017-12-14 21:29:16 -0800344 default:
345 nfp_dbg(cpp, "unknown BPF capability: %d\n", type);
346 break;
347 }
348 }
349 if (mem - start != nfp_cpp_area_size(area)) {
Jakub Kicinski0bce7c92017-12-15 10:39:31 -0800350 nfp_err(cpp, "BPF capabilities left after parsing, parsed:%zd total length:%zu\n",
Jakub Kicinski77a844e2017-12-14 21:29:16 -0800351 mem - start, nfp_cpp_area_size(area));
352 goto err_release_free;
353 }
354
355 nfp_cpp_area_release_free(area);
356
357 return 0;
358
359err_release_free:
Jakub Kicinski0bce7c92017-12-15 10:39:31 -0800360 nfp_err(cpp, "invalid BPF capabilities at offset:%zd\n", mem - start);
Jakub Kicinski77a844e2017-12-14 21:29:16 -0800361 nfp_cpp_area_release_free(area);
362 return -EINVAL;
363}
364
365static int nfp_bpf_init(struct nfp_app *app)
366{
367 struct nfp_app_bpf *bpf;
368 int err;
369
370 bpf = kzalloc(sizeof(*bpf), GFP_KERNEL);
371 if (!bpf)
372 return -ENOMEM;
373 bpf->app = app;
374 app->priv = bpf;
375
Jakub Kicinskid48ae232018-01-11 20:29:11 -0800376 skb_queue_head_init(&bpf->cmsg_replies);
377 init_waitqueue_head(&bpf->cmsg_wq);
Jakub Kicinski4da98ee2018-01-11 20:29:10 -0800378 INIT_LIST_HEAD(&bpf->map_list);
379
Jakub Kicinski77a844e2017-12-14 21:29:16 -0800380 err = nfp_bpf_parse_capabilities(app);
381 if (err)
382 goto err_free_bpf;
383
384 return 0;
385
386err_free_bpf:
387 kfree(bpf);
388 return err;
389}
390
391static void nfp_bpf_clean(struct nfp_app *app)
392{
Jakub Kicinski4da98ee2018-01-11 20:29:10 -0800393 struct nfp_app_bpf *bpf = app->priv;
394
Jakub Kicinskid48ae232018-01-11 20:29:11 -0800395 WARN_ON(!skb_queue_empty(&bpf->cmsg_replies));
Jakub Kicinski4da98ee2018-01-11 20:29:10 -0800396 WARN_ON(!list_empty(&bpf->map_list));
Jakub Kicinski1bba4c42018-01-11 20:29:17 -0800397 WARN_ON(bpf->maps_in_use || bpf->map_elems_in_use);
Jakub Kicinski4da98ee2018-01-11 20:29:10 -0800398 kfree(bpf);
Jakub Kicinski77a844e2017-12-14 21:29:16 -0800399}
400
Jakub Kicinski8aa0cb02017-05-31 08:06:46 -0700401const struct nfp_app_type app_bpf = {
402 .id = NFP_APP_BPF_NIC,
Jakub Kicinski2707d6f2017-05-31 08:06:47 -0700403 .name = "ebpf",
Jakub Kicinski8aa0cb02017-05-31 08:06:46 -0700404
Jakub Kicinski81bd5ded2018-01-17 18:51:06 -0800405 .ctrl_cap_mask = 0,
Jakub Kicinski78a0a652018-01-17 18:51:05 -0800406
Jakub Kicinski77a844e2017-12-14 21:29:16 -0800407 .init = nfp_bpf_init,
408 .clean = nfp_bpf_clean,
409
Jakub Kicinskiccbdc592018-01-10 12:25:57 +0000410 .change_mtu = nfp_bpf_change_mtu,
411
Jakub Kicinskibb45e512017-05-31 08:06:49 -0700412 .extra_cap = nfp_bpf_extra_cap,
413
Jakub Kicinski4f834352017-12-27 15:36:49 -0800414 .vnic_alloc = nfp_bpf_vnic_alloc,
415 .vnic_free = nfp_bpf_vnic_free,
Jakub Kicinskibb45e512017-05-31 08:06:49 -0700416
Jakub Kicinskid48ae232018-01-11 20:29:11 -0800417 .ctrl_msg_rx = nfp_bpf_ctrl_msg_rx,
418
Jakub Kicinskibb45e512017-05-31 08:06:49 -0700419 .setup_tc = nfp_bpf_setup_tc,
420 .tc_busy = nfp_bpf_tc_busy,
Jakub Kicinskiaf93d152018-01-10 12:26:04 +0000421 .bpf = nfp_ndo_bpf,
Jakub Kicinskibb45e512017-05-31 08:06:49 -0700422 .xdp_offload = nfp_bpf_xdp_offload,
Jakub Kicinski8aa0cb02017-05-31 08:06:46 -0700423};