From: "Toke Høiland-Jørgensen" <toke@redhat.com>
To: Martin KaFai Lau <kafai@fb.com>
Cc: Alexei Starovoitov <ast@kernel.org>,
Daniel Borkmann <daniel@iogearbox.net>,
Andrii Nakryiko <andrii@kernel.org>,
Song Liu <songliubraving@fb.com>, Yonghong Song <yhs@fb.com>,
John Fastabend <john.fastabend@gmail.com>,
KP Singh <kpsingh@kernel.org>,
"David S. Miller" <davem@davemloft.net>,
Jakub Kicinski <kuba@kernel.org>,
Jesper Dangaard Brouer <hawk@kernel.org>,
netdev@vger.kernel.org, bpf@vger.kernel.org
Subject: Re: [PATCH bpf-next v10 1/5] bpf: Add "live packet" mode for XDP in BPF_PROG_RUN
Date: Wed, 09 Mar 2022 11:35:12 +0100 [thread overview]
Message-ID: <87h787wh0f.fsf@toke.dk> (raw)
In-Reply-To: <20220309061018.wn5tddiguywdeyra@kafai-mbp.dhcp.thefacebook.com>
Martin KaFai Lau <kafai@fb.com> writes:
> On Tue, Mar 08, 2022 at 03:57:57PM +0100, Toke Høiland-Jørgensen wrote:
>> +static int xdp_test_run_batch(struct xdp_test_data *xdp, struct bpf_prog *prog,
>> + u32 repeat)
>> +{
>> + struct bpf_redirect_info *ri = this_cpu_ptr(&bpf_redirect_info);
>> + int err = 0, act, ret, i, nframes = 0, batch_sz;
>> + struct xdp_frame **frames = xdp->frames;
>> + struct xdp_page_head *head;
>> + struct xdp_frame *frm;
>> + bool redirect = false;
>> + struct xdp_buff *ctx;
>> + struct page *page;
>> +
>> + batch_sz = min_t(u32, repeat, xdp->batch_size);
>> +
>> + local_bh_disable();
>> + xdp_set_return_frame_no_direct();
>> +
>> + for (i = 0; i < batch_sz; i++) {
>> + page = page_pool_dev_alloc_pages(xdp->pp);
>> + if (!page) {
>> + err = -ENOMEM;
>> + goto out;
>> + }
>> +
>> + head = phys_to_virt(page_to_phys(page));
>> + reset_ctx(head);
>> + ctx = &head->ctx;
>> + frm = &head->frm;
>> + xdp->frame_cnt++;
>> +
>> + act = bpf_prog_run_xdp(prog, ctx);
>> +
>> + /* if program changed pkt bounds we need to update the xdp_frame */
>> + if (unlikely(ctx_was_changed(head))) {
>> + ret = xdp_update_frame_from_buff(ctx, frm);
>> + if (ret) {
>> + xdp_return_buff(ctx);
>> + continue;
>> + }
>> + }
>> +
>> + switch (act) {
>> + case XDP_TX:
>> + /* we can't do a real XDP_TX since we're not in the
>> + * driver, so turn it into a REDIRECT back to the same
>> + * index
>> + */
>> + ri->tgt_index = xdp->dev->ifindex;
>> + ri->map_id = INT_MAX;
>> + ri->map_type = BPF_MAP_TYPE_UNSPEC;
>> + fallthrough;
>> + case XDP_REDIRECT:
>> + redirect = true;
>> + ret = xdp_do_redirect_frame(xdp->dev, ctx, frm, prog);
>> + if (ret)
>> + xdp_return_buff(ctx);
>> + break;
>> + case XDP_PASS:
>> + frames[nframes++] = frm;
>> + break;
>> + default:
>> + bpf_warn_invalid_xdp_action(NULL, prog, act);
>> + fallthrough;
>> + case XDP_DROP:
>> + xdp_return_buff(ctx);
>> + break;
>> + }
>> + }
>> +
>> +out:
>> + if (redirect)
>> + xdp_do_flush();
>> + if (nframes)
>> + err = xdp_recv_frames(frames, nframes, xdp->skbs, xdp->dev);
> This may overwrite the -ENOMEM with 0.
Argh, oops! And here I thought I was being clever by getting rid of the
indirection through 'ret'. Will fix, thanks!
-Toke
next prev parent reply other threads:[~2022-03-09 10:35 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-03-08 14:57 [PATCH bpf-next v10 0/5] Add support for transmitting packets using XDP in bpf_prog_run() Toke Høiland-Jørgensen
2022-03-08 14:57 ` [PATCH bpf-next v10 1/5] bpf: Add "live packet" mode for XDP in BPF_PROG_RUN Toke Høiland-Jørgensen
2022-03-09 6:10 ` Martin KaFai Lau
2022-03-09 10:35 ` Toke Høiland-Jørgensen [this message]
2022-03-08 14:57 ` [PATCH bpf-next v10 2/5] Documentation/bpf: Add documentation for BPF_PROG_RUN Toke Høiland-Jørgensen
2022-03-08 14:57 ` [PATCH bpf-next v10 3/5] libbpf: Support batch_size option to bpf_prog_test_run Toke Høiland-Jørgensen
2022-03-08 14:58 ` [PATCH bpf-next v10 4/5] selftests/bpf: Move open_netns() and close_netns() into network_helpers.c Toke Høiland-Jørgensen
2022-03-08 14:58 ` [PATCH bpf-next v10 5/5] selftests/bpf: Add selftest for XDP_REDIRECT in BPF_PROG_RUN Toke Høiland-Jørgensen
2022-03-09 6:12 ` [PATCH bpf-next v10 0/5] Add support for transmitting packets using XDP in bpf_prog_run() Martin KaFai Lau
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=87h787wh0f.fsf@toke.dk \
--to=toke@redhat.com \
--cc=andrii@kernel.org \
--cc=ast@kernel.org \
--cc=bpf@vger.kernel.org \
--cc=daniel@iogearbox.net \
--cc=davem@davemloft.net \
--cc=hawk@kernel.org \
--cc=john.fastabend@gmail.com \
--cc=kafai@fb.com \
--cc=kpsingh@kernel.org \
--cc=kuba@kernel.org \
--cc=netdev@vger.kernel.org \
--cc=songliubraving@fb.com \
--cc=yhs@fb.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).