seccomp.h 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. #ifndef _UAPI_LINUX_SECCOMP_H
  2. #define _UAPI_LINUX_SECCOMP_H
  3. #include <linux/compiler.h>
  4. #include <linux/types.h>
  5. /* Valid values for seccomp.mode and prctl(PR_SET_SECCOMP, <mode>) */
  6. #define SECCOMP_MODE_DISABLED 0 /* seccomp is not in use. */
  7. #define SECCOMP_MODE_STRICT 1 /* uses hard-coded filter. */
  8. #define SECCOMP_MODE_FILTER 2 /* uses user-supplied filter. */
  9. /*
  10. * All BPF programs must return a 32-bit value.
  11. * The bottom 16-bits are for optional return data.
  12. * The upper 16-bits are ordered from least permissive values to most.
  13. *
  14. * The ordering ensures that a min_t() over composed return values always
  15. * selects the least permissive choice.
  16. */
  17. #define SECCOMP_RET_KILL 0x00000000U /* kill the task immediately */
  18. #define SECCOMP_RET_TRAP 0x00030000U /* disallow and force a SIGSYS */
  19. #define SECCOMP_RET_ERRNO 0x00050000U /* returns an errno */
  20. #define SECCOMP_RET_TRACE 0x7ff00000U /* pass to a tracer or disallow */
  21. #define SECCOMP_RET_ALLOW 0x7fff0000U /* allow */
  22. /* Masks for the return value sections. */
  23. #define SECCOMP_RET_ACTION 0x7fff0000U
  24. #define SECCOMP_RET_DATA 0x0000ffffU
  25. /**
  26. * struct seccomp_data - the format the BPF program executes over.
  27. * @nr: the system call number
  28. * @arch: indicates system call convention as an AUDIT_ARCH_* value
  29. * as defined in <linux/audit.h>.
  30. * @instruction_pointer: at the time of the system call.
  31. * @args: up to 6 system call arguments always stored as 64-bit values
  32. * regardless of the architecture.
  33. */
  34. struct seccomp_data {
  35. int nr;
  36. __u32 arch;
  37. __u64 instruction_pointer;
  38. __u64 args[6];
  39. };
  40. #endif /* _UAPI_LINUX_SECCOMP_H */