tools/testing/selftests/bpf/prog_tests/skb_load_bytes.c
Source file repositories/reference/linux-study-clean/tools/testing/selftests/bpf/prog_tests/skb_load_bytes.c
File Facts
- System
- Linux kernel
- Corpus path
tools/testing/selftests/bpf/prog_tests/skb_load_bytes.c- Extension
.c- Size
- 1144 bytes
- Lines
- 46
- Domain
- Support Tooling And Documentation
- Bucket
- tools
- Inferred role
- Support Tooling And Documentation: implementation source
- Status
- source implementation candidate
Why This File Exists
Repository support layer: documentation, build tooling, samples, user-space helper tools, generated initramfs support, licenses, and validation utilities.
- Repository support layer: documentation, build tooling, samples, user-space helper tools, generated initramfs support, licenses, and validation utilities.
- Defines or uses C structs; map object ownership, embedded links, reference counts, and lock ownership.
Dependency Surface
test_progs.hnetwork_helpers.hskb_load_bytes.skel.h
Detected Declarations
function test_skb_load_bytes
Annotated Snippet
// SPDX-License-Identifier: GPL-2.0
#include <test_progs.h>
#include <network_helpers.h>
#include "skb_load_bytes.skel.h"
void test_skb_load_bytes(void)
{
struct skb_load_bytes *skel;
int err, prog_fd, test_result;
struct __sk_buff skb = { 0 };
LIBBPF_OPTS(bpf_test_run_opts, tattr,
.data_in = &pkt_v4,
.data_size_in = sizeof(pkt_v4),
.ctx_in = &skb,
.ctx_size_in = sizeof(skb),
);
skel = skb_load_bytes__open_and_load();
if (!ASSERT_OK_PTR(skel, "skel_open_and_load"))
return;
prog_fd = bpf_program__fd(skel->progs.skb_process);
if (!ASSERT_GE(prog_fd, 0, "prog_fd"))
goto out;
skel->bss->load_offset = (uint32_t)(-1);
err = bpf_prog_test_run_opts(prog_fd, &tattr);
if (!ASSERT_OK(err, "bpf_prog_test_run_opts"))
goto out;
test_result = skel->bss->test_result;
if (!ASSERT_EQ(test_result, -EFAULT, "offset -1"))
goto out;
skel->bss->load_offset = (uint32_t)10;
err = bpf_prog_test_run_opts(prog_fd, &tattr);
if (!ASSERT_OK(err, "bpf_prog_test_run_opts"))
goto out;
test_result = skel->bss->test_result;
if (!ASSERT_EQ(test_result, 0, "offset 10"))
goto out;
out:
skb_load_bytes__destroy(skel);
}
Annotation
- Immediate include surface: `test_progs.h`, `network_helpers.h`, `skb_load_bytes.skel.h`.
- Detected declarations: `function test_skb_load_bytes`.
- Atlas domain: Support Tooling And Documentation / tools.
- Implementation status: source implementation candidate.
Implementation Notes
- This generated page is the file-by-file coverage layer; curated subsystem chapters should link here when they synthesize a multi-file control flow.
- Core OS pages should be promoted from atlas-only to deep-reviewed when they explain data structures, invariants, locking, lifecycle, and C implementation snippets.
- Driver-family pages are intentionally pattern-oriented unless they are part of the selected PCIe/NVMe representative device path.