logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

PR_GET_SECCOMP - get the secure computing mode

Description

Return the secure computing mode of the calling thread. If the caller is not in secure computing mode, this operation returns 0; if the caller is in strict secure computing mode, then the prctl() call will cause a SIGKILL signal to be sent to the process. If the caller is in filter mode, and this system call is allowed by the seccomp filters, it returns 2; otherwise, the process is killed with a SIGKILL signal. This operation is available only if the kernel is configured with CONFIG_SECCOMP enabled.

Errors

EINVAL The kernel was not configured with CONFIG_SECCOMP. SIGKILL The caller is in strict secure computing mode. SIGKILL The caller is in filter mode, and this system call is not allowed by the seccomp filters.

Files

/proc/pid/status Since Linux 3.8, the Seccomp field of this file provides a method of obtaining the same information, without the risk that the process is killed; see proc_pid_status(5).

History

Linux 2.6.23.

Library

Standard C library (libc, -lc)

Name

PR_GET_SECCOMP - get the secure computing mode

Return Value

On success, this call returns the nonnegative value described above. On error, -1 is returned, and errno is set to indicate the error; or the process is killed.

See Also

prctl(2), PR_SET_SECCOMP(2const), seccomp(2) Linux man-pages 6.9.1 2024-06-02 PR_GET_SECCOMP(2)

Standards

Linux.

Synopsis

#include<linux/prctl.h> /* Definition of PR_* constants */ #include<sys/prctl.h>intprctl(PR_GET_SECCOMP);

See Also