mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00

This adds the kernel side of the seccomp based process handling. Co-authored-by: Johannes Berg <johannes@sipsolutions.net> Signed-off-by: Benjamin Berg <benjamin@sipsolutions.net> Signed-off-by: Benjamin Berg <benjamin.berg@intel.com> Link: https://patch.msgid.link/20250602130052.545733-6-benjamin@sipsolutions.net Signed-off-by: Johannes Berg <johannes.berg@intel.com>
23 lines
419 B
C
23 lines
419 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef __UM_OS_LINUX_INTERNAL_H
|
|
#define __UM_OS_LINUX_INTERNAL_H
|
|
|
|
#include <mm_id.h>
|
|
#include <stub-data.h>
|
|
|
|
/*
|
|
* elf_aux.c
|
|
*/
|
|
void scan_elf_aux(char **envp);
|
|
|
|
/*
|
|
* mem.c
|
|
*/
|
|
void check_tmpexec(void);
|
|
|
|
/*
|
|
* skas/process.c
|
|
*/
|
|
void wait_stub_done(int pid);
|
|
void wait_stub_done_seccomp(struct mm_id *mm_idp, int running, int wait_sigsys);
|
|
#endif /* __UM_OS_LINUX_INTERNAL_H */
|