main.c 4.7 KB
Newer Older
J
Jakub Kicinski 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
/*
 * Copyright (C) 2017 Netronome Systems, Inc.
 *
 * This software is dual licensed under the GNU General License Version 2,
 * June 1991 as shown in the file COPYING in the top-level directory of this
 * source tree or the BSD 2-Clause License provided below.  You have the
 * option to license this software under the complete terms of either license.
 *
 * The BSD 2-Clause License:
 *
 *     Redistribution and use in source and binary forms, with or
 *     without modification, are permitted provided that the following
 *     conditions are met:
 *
 *      1. Redistributions of source code must retain the above
 *         copyright notice, this list of conditions and the following
 *         disclaimer.
 *
 *      2. Redistributions in binary form must reproduce the above
 *         copyright notice, this list of conditions and the following
 *         disclaimer in the documentation and/or other materials
 *         provided with the distribution.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 * SOFTWARE.
 */

34 35
#include <net/pkt_cls.h>

J
Jakub Kicinski 已提交
36 37 38 39 40
#include "../nfpcore/nfp_cpp.h"
#include "../nfp_app.h"
#include "../nfp_main.h"
#include "../nfp_net.h"
#include "../nfp_port.h"
41 42 43 44
#include "main.h"

static bool nfp_net_ebpf_capable(struct nfp_net *nn)
{
45
#ifdef __LITTLE_ENDIAN
46 47 48
	if (nn->cap & NFP_NET_CFG_CTRL_BPF &&
	    nn_readb(nn, NFP_NET_CFG_BPF_ABI) == NFP_NET_BPF_ABI)
		return true;
49
#endif
50 51 52 53 54 55 56
	return false;
}

static int
nfp_bpf_xdp_offload(struct nfp_app *app, struct nfp_net *nn,
		    struct bpf_prog *prog)
{
J
Jakub Kicinski 已提交
57
	bool running, xdp_running;
58 59 60 61 62
	int ret;

	if (!nfp_net_ebpf_capable(nn))
		return -EINVAL;

J
Jakub Kicinski 已提交
63 64 65 66 67 68 69
	running = nn->dp.ctrl & NFP_NET_CFG_CTRL_BPF;
	xdp_running = running && nn->dp.bpf_offload_xdp;

	if (!prog && !xdp_running)
		return 0;
	if (prog && running && !xdp_running)
		return -EBUSY;
70

71
	ret = nfp_net_bpf_offload(nn, prog, running);
72
	/* Stop offload if replace not possible */
J
Jakub Kicinski 已提交
73
	if (ret && prog)
74
		nfp_bpf_xdp_offload(app, nn, NULL);
J
Jakub Kicinski 已提交
75

76 77 78 79 80 81 82 83
	nn->dp.bpf_offload_xdp = prog && !ret;
	return ret;
}

static const char *nfp_bpf_extra_cap(struct nfp_app *app, struct nfp_net *nn)
{
	return nfp_net_ebpf_capable(nn) ? "BPF" : "";
}
J
Jakub Kicinski 已提交
84

85 86
static int nfp_bpf_setup_tc_block_cb(enum tc_setup_type type,
				     void *type_data, void *cb_priv)
87
{
88
	struct tc_cls_bpf_offload *cls_bpf = type_data;
89
	struct nfp_net *nn = cb_priv;
J
Jakub Kicinski 已提交
90 91 92 93 94 95 96 97 98

	if (type != TC_SETUP_CLSBPF ||
	    !tc_can_offload(nn->dp.netdev) ||
	    !nfp_net_ebpf_capable(nn) ||
	    cls_bpf->common.protocol != htons(ETH_P_ALL) ||
	    cls_bpf->common.chain_index)
		return -EOPNOTSUPP;
	if (nn->dp.bpf_offload_xdp)
		return -EBUSY;
99

J
Jakub Kicinski 已提交
100 101 102 103
	/* Only support TC direct action */
	if (!cls_bpf->exts_integrated ||
	    tcf_exts_has_actions(cls_bpf->exts)) {
		nn_err(nn, "only direct action with no legacy actions supported\n");
104
		return -EOPNOTSUPP;
J
Jakub Kicinski 已提交
105 106 107 108
	}

	switch (cls_bpf->command) {
	case TC_CLSBPF_REPLACE:
109
		return nfp_net_bpf_offload(nn, cls_bpf->prog, true);
J
Jakub Kicinski 已提交
110
	case TC_CLSBPF_ADD:
111
		return nfp_net_bpf_offload(nn, cls_bpf->prog, false);
J
Jakub Kicinski 已提交
112
	case TC_CLSBPF_DESTROY:
113
		return nfp_net_bpf_offload(nn, NULL, true);
114 115 116 117 118 119 120 121
	default:
		return -EOPNOTSUPP;
	}
}

static int nfp_bpf_setup_tc_block(struct net_device *netdev,
				  struct tc_block_offload *f)
{
122 123
	struct nfp_net *nn = netdev_priv(netdev);

124
	if (f->binder_type != TCF_BLOCK_BINDER_TYPE_CLSACT_INGRESS)
125 126
		return -EOPNOTSUPP;

127 128 129 130 131 132 133 134 135 136 137 138 139 140
	switch (f->command) {
	case TC_BLOCK_BIND:
		return tcf_block_cb_register(f->block,
					     nfp_bpf_setup_tc_block_cb,
					     nn, nn);
	case TC_BLOCK_UNBIND:
		tcf_block_cb_unregister(f->block,
					nfp_bpf_setup_tc_block_cb,
					nn);
		return 0;
	default:
		return -EOPNOTSUPP;
	}
}
141

142 143 144 145 146 147 148 149 150
static int nfp_bpf_setup_tc(struct nfp_app *app, struct net_device *netdev,
			    enum tc_setup_type type, void *type_data)
{
	switch (type) {
	case TC_SETUP_BLOCK:
		return nfp_bpf_setup_tc_block(netdev, type_data);
	default:
		return -EOPNOTSUPP;
	}
151 152 153 154 155 156 157
}

static bool nfp_bpf_tc_busy(struct nfp_app *app, struct nfp_net *nn)
{
	return nn->dp.ctrl & NFP_NET_CFG_CTRL_BPF;
}

J
Jakub Kicinski 已提交
158 159
const struct nfp_app_type app_bpf = {
	.id		= NFP_APP_BPF_NIC,
160
	.name		= "ebpf",
J
Jakub Kicinski 已提交
161

162 163
	.extra_cap	= nfp_bpf_extra_cap,

164
	.vnic_alloc	= nfp_app_nic_vnic_alloc,
165 166 167 168

	.setup_tc	= nfp_bpf_setup_tc,
	.tc_busy	= nfp_bpf_tc_busy,
	.xdp_offload	= nfp_bpf_xdp_offload,
169 170 171 172

	.bpf_verifier_prep	= nfp_bpf_verifier_prep,
	.bpf_translate		= nfp_bpf_translate,
	.bpf_destroy		= nfp_bpf_destroy,
J
Jakub Kicinski 已提交
173
};