tools/testing/selftests/bpf/progs/exhandler_kern.c
Source file repositories/reference/linux-study-clean/tools/testing/selftests/bpf/progs/exhandler_kern.c
File Facts
- System
- Linux kernel
- Corpus path
tools/testing/selftests/bpf/progs/exhandler_kern.c- Extension
.c- Size
- 1422 bytes
- Lines
- 53
- 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
vmlinux.hbpf/bpf_helpers.hbpf/bpf_tracing.hbpf/bpf_core_read.h
Detected Declarations
function TP_PROTO
Annotated Snippet
// SPDX-License-Identifier: GPL-2.0
/* Copyright (c) 2021, Oracle and/or its affiliates. */
#include "vmlinux.h"
#include <bpf/bpf_helpers.h>
#include <bpf/bpf_tracing.h>
#include <bpf/bpf_core_read.h>
char _license[] SEC("license") = "GPL";
unsigned int exception_triggered;
int test_pid;
/* TRACE_EVENT(task_newtask,
* TP_PROTO(struct task_struct *p, u64 clone_flags)
*/
SEC("tp_btf/task_newtask")
int BPF_PROG(trace_task_newtask, struct task_struct *task, u64 clone_flags)
{
int pid = bpf_get_current_pid_tgid() >> 32;
struct callback_head *work;
void *func;
if (test_pid != pid)
return 0;
/* To verify we hit an exception we dereference task->task_works->func.
* If task work has been added,
* - task->task_works is non-NULL; and
* - task->task_works->func is non-NULL also (the callback function
* must be specified for the task work.
*
* However, for a newly-created task, task->task_works is NULLed,
* so we know the exception handler triggered if task_works is
* NULL and func is NULL.
*/
work = task->task_works;
func = work->func;
/* Currently verifier will fail for `btf_ptr |= btf_ptr` * instruction.
* To workaround the issue, use barrier_var() and rewrite as below to
* prevent compiler from generating verifier-unfriendly code.
*/
barrier_var(work);
if (work)
return 0;
barrier_var(func);
if (func)
return 0;
exception_triggered++;
return 0;
}
Annotation
- Immediate include surface: `vmlinux.h`, `bpf/bpf_helpers.h`, `bpf/bpf_tracing.h`, `bpf/bpf_core_read.h`.
- Detected declarations: `function TP_PROTO`.
- 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.