seccomp.h 1.7 KB

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