tools/testing/selftests/bpf/prog_tests/test_bprm_opts.c
Source file repositories/reference/linux-study-clean/tools/testing/selftests/bpf/prog_tests/test_bprm_opts.c
File Facts
- System
- Linux kernel
- Corpus path
tools/testing/selftests/bpf/prog_tests/test_bprm_opts.c- Extension
.c- Size
- 2780 bytes
- Lines
- 109
- 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.hlinux/limits.hbprm_opts.skel.hnetwork_helpers.htask_local_storage_helpers.h
Detected Declarations
function update_storagefunction run_set_secureexecfunction test_test_bprm_opts
Annotated Snippet
// SPDX-License-Identifier: GPL-2.0
/*
* Copyright (C) 2020 Google LLC.
*/
#include <test_progs.h>
#include <linux/limits.h>
#include "bprm_opts.skel.h"
#include "network_helpers.h"
#include "task_local_storage_helpers.h"
static const char * const bash_envp[] = { "TMPDIR=shouldnotbeset", NULL };
static int update_storage(int map_fd, int secureexec)
{
int task_fd, ret = 0;
task_fd = sys_pidfd_open(getpid(), 0);
if (task_fd < 0)
return errno;
ret = bpf_map_update_elem(map_fd, &task_fd, &secureexec, BPF_NOEXIST);
if (ret)
ret = errno;
close(task_fd);
return ret;
}
static int run_set_secureexec(int map_fd, int secureexec)
{
int child_pid, child_status, ret, null_fd;
child_pid = fork();
if (child_pid == 0) {
null_fd = open("/dev/null", O_WRONLY);
if (null_fd == -1)
exit(errno);
dup2(null_fd, STDOUT_FILENO);
dup2(null_fd, STDERR_FILENO);
close(null_fd);
/* Ensure that all executions from hereon are
* secure by setting a local storage which is read by
* the bprm_creds_for_exec hook and sets bprm->secureexec.
*/
ret = update_storage(map_fd, secureexec);
if (ret)
exit(ret);
/* If the binary is executed with securexec=1, the dynamic
* loader ignores and unsets certain variables like LD_PRELOAD,
* TMPDIR etc. TMPDIR is used here to simplify the example, as
* LD_PRELOAD requires a real .so file.
*
* If the value of TMPDIR is set, the bash command returns 10
* and if the value is unset, it returns 20.
*/
execle("/bin/bash", "bash", "-c",
"[[ -z \"${TMPDIR}\" ]] || exit 10 && exit 20", NULL,
bash_envp);
exit(errno);
} else if (child_pid > 0) {
waitpid(child_pid, &child_status, 0);
ret = WEXITSTATUS(child_status);
/* If a secureexec occurred, the exit status should be 20 */
if (secureexec && ret == 20)
return 0;
/* If normal execution happened, the exit code should be 10 */
if (!secureexec && ret == 10)
return 0;
}
return -EINVAL;
}
void test_test_bprm_opts(void)
{
int err, duration = 0;
struct bprm_opts *skel = NULL;
skel = bprm_opts__open_and_load();
if (CHECK(!skel, "skel_load", "skeleton failed\n"))
goto close_prog;
err = bprm_opts__attach(skel);
Annotation
- Immediate include surface: `test_progs.h`, `linux/limits.h`, `bprm_opts.skel.h`, `network_helpers.h`, `task_local_storage_helpers.h`.
- Detected declarations: `function update_storage`, `function run_set_secureexec`, `function test_test_bprm_opts`.
- 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.