From patchwork Fri Oct 22 07:55:07 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Hou Tao X-Patchwork-Id: 12577227 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 48C08C433EF for ; Fri, 22 Oct 2021 07:39:57 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 33D5D610E7 for ; Fri, 22 Oct 2021 07:39:57 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232343AbhJVHmN (ORCPT ); Fri, 22 Oct 2021 03:42:13 -0400 Received: from szxga08-in.huawei.com ([45.249.212.255]:26113 "EHLO szxga08-in.huawei.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231778AbhJVHmL (ORCPT ); Fri, 22 Oct 2021 03:42:11 -0400 Received: from dggemv704-chm.china.huawei.com (unknown [172.30.72.56]) by szxga08-in.huawei.com (SkyGuard) with ESMTP id 4HbGRJ0RV7z1DHnv; Fri, 22 Oct 2021 15:38:04 +0800 (CST) Received: from dggpeml500025.china.huawei.com (7.185.36.35) by dggemv704-chm.china.huawei.com (10.3.19.47) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.2308.15; Fri, 22 Oct 2021 15:39:52 +0800 Received: from huawei.com (10.175.124.27) by dggpeml500025.china.huawei.com (7.185.36.35) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.2308.15; Fri, 22 Oct 2021 15:39:52 +0800 From: Hou Tao To: Alexei Starovoitov , Martin KaFai Lau CC: Yonghong Song , Daniel Borkmann , "Andrii Nakryiko" , , , Subject: [PATCH bpf-next v3 0/4] introduce dummy BPF STRUCT_OPS Date: Fri, 22 Oct 2021 15:55:07 +0800 Message-ID: <20211022075511.1682588-1-houtao1@huawei.com> X-Mailer: git-send-email 2.29.2 MIME-Version: 1.0 X-Originating-IP: [10.175.124.27] X-ClientProxiedBy: dggems704-chm.china.huawei.com (10.3.19.181) To dggpeml500025.china.huawei.com (7.185.36.35) X-CFilter-Loop: Reflected Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org X-Patchwork-Delegate: bpf@iogearbox.net Hi, Currently the test of BPF STRUCT_OPS depends on the specific bpf implementation (e.g, tcp_congestion_ops), but it can not cover all basic functionalities (e.g, return value handling), so introduce a dummy BPF STRUCT_OPS for test purpose. Instead of loading a userspace-implemeted bpf_dummy_ops map into kernel and calling the specific function by writing to sysfs provided by bpf_testmode.ko, only loading bpf_dummy_ops related prog into kernel and calling these prog by bpf_prog_test_run(). The latter is more flexible and has no dependency on extra kernel module. Now the return value handling is supported by test_1(...) ops, and passing multiple arguments is supported by test_2(...) ops. If more is needed, test_x(...) ops can be added afterwards. Comments are always welcome. Regards, Hou Change Log: v3: * rebase on bpf-next * address comments for Martin, mainly include: merge patch 3 & patch 4 in v2, fix names of btf ctx access check helpers, handle CONFIG_NET, fix leak in dummy_ops_init_args(), simplify bpf_dummy_init() * patch 4: use a loop to check args in test_dummy_multiple_args() v2: https://www.spinics.net/lists/bpf/msg47948.html * rebase on bpf-next * add test_2(...) ops to test the passing of multiple arguments * a new patch (patch #2) is added to factor out ctx access helpers * address comments from Martin & Andrii v1: https://www.spinics.net/lists/bpf/msg46787.html RFC: https://www.spinics.net/lists/bpf/msg46117.html Hou Tao (4): bpf: factor out a helper to prepare trampoline for struct_ops prog bpf: factor out helpers to check ctx access for BTF function bpf: add dummy BPF STRUCT_OPS for test purpose selftests/bpf: add test cases for struct_ops prog include/linux/bpf.h | 47 ++++ kernel/bpf/bpf_struct_ops.c | 32 ++- kernel/bpf/bpf_struct_ops_types.h | 3 + kernel/trace/bpf_trace.c | 16 +- net/bpf/Makefile | 3 + net/bpf/bpf_dummy_struct_ops.c | 203 ++++++++++++++++++ net/ipv4/bpf_tcp_ca.c | 9 +- .../selftests/bpf/prog_tests/dummy_st_ops.c | 115 ++++++++++ .../selftests/bpf/progs/dummy_st_ops.c | 50 +++++ 9 files changed, 446 insertions(+), 32 deletions(-) create mode 100644 net/bpf/bpf_dummy_struct_ops.c create mode 100644 tools/testing/selftests/bpf/prog_tests/dummy_st_ops.c create mode 100644 tools/testing/selftests/bpf/progs/dummy_st_ops.c