tools/testing/selftests/bpf/prog_tests/kernel_flag.c
Source file repositories/reference/linux-study-clean/tools/testing/selftests/bpf/prog_tests/kernel_flag.c
File Facts
- System
- Linux kernel
- Corpus path
tools/testing/selftests/bpf/prog_tests/kernel_flag.c- Extension
.c- Size
- 1154 bytes
- Lines
- 44
- 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.hkfunc_call_test.skel.hkfunc_call_test.lskel.htest_kernel_flag.skel.h
Detected Declarations
function test_kernel_flag
Annotated Snippet
// SPDX-License-Identifier: GPL-2.0
/* Copyright (c) 2025 Microsoft */
#include <test_progs.h>
#include "kfunc_call_test.skel.h"
#include "kfunc_call_test.lskel.h"
#include "test_kernel_flag.skel.h"
void test_kernel_flag(void)
{
struct test_kernel_flag *lsm_skel;
struct kfunc_call_test *skel = NULL;
struct kfunc_call_test_lskel *lskel = NULL;
int ret;
lsm_skel = test_kernel_flag__open_and_load();
if (!ASSERT_OK_PTR(lsm_skel, "lsm_skel"))
return;
lsm_skel->bss->monitored_tid = sys_gettid();
ret = test_kernel_flag__attach(lsm_skel);
if (!ASSERT_OK(ret, "test_kernel_flag__attach"))
goto close_prog;
/* Test with skel. This should pass the gatekeeper */
skel = kfunc_call_test__open_and_load();
if (!ASSERT_OK_PTR(skel, "skel"))
goto close_prog;
/* Test with lskel. This should fail due to blocking kernel-based bpf() invocations */
lskel = kfunc_call_test_lskel__open_and_load();
if (!ASSERT_ERR_PTR(lskel, "lskel"))
goto close_prog;
close_prog:
if (skel)
kfunc_call_test__destroy(skel);
if (lskel)
kfunc_call_test_lskel__destroy(lskel);
lsm_skel->bss->monitored_tid = 0;
test_kernel_flag__destroy(lsm_skel);
}
Annotation
- Immediate include surface: `test_progs.h`, `kfunc_call_test.skel.h`, `kfunc_call_test.lskel.h`, `test_kernel_flag.skel.h`.
- Detected declarations: `function test_kernel_flag`.
- 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.