#ifndef __CR_SECCOMP_H__ #define __CR_SECCOMP_H__ #include #include #include "protobuf/core.pb-c.h" #ifndef SECCOMP_MODE_DISABLED #define SECCOMP_MODE_DISABLED 0 #endif #ifndef SECCOMP_MODE_STRICT #define SECCOMP_MODE_STRICT 1 #endif #ifndef SECCOMP_MODE_FILTER #define SECCOMP_MODE_FILTER 2 #endif #ifndef SECCOMP_SET_MODE_FILTER #define SECCOMP_SET_MODE_FILTER 1 #endif #ifndef SECCOMP_FILTER_FLAG_TSYNC #define SECCOMP_FILTER_FLAG_TSYNC 1 #endif extern int collect_seccomp_filters(void); extern int prepare_seccomp_filters(void); extern int seccomp_filters_get_rst_pos(CoreEntry *item, int *count, unsigned long *pos); #endif