我收到编译错误:error: ‘scmp_filter_ctx’ was not declared in this scope
。
我已经声明了seccomp过滤器。
scmp_filter_ctx ctx;
我已经包含了图书馆#include <linux/seccomp.h>
并已使用以下命令安装了库libseccomp-dev
sudo apt-get install libseccomp-dev
。
#include <stdlib.h>
#include <fcntl.h>
#include <sys/shm.h>
#include <unistd.h>
#include <sys/un.h>
#include <sys/wait.h>
#include <linux/seccomp.h>
#include <sys/prctl.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <bits/stdc++.h>
void create_sandbox(){
scmp_filter_ctx ctx;
ctx = seccomp_init(SCMP_ACT_KILL); // default action: kill
seccomp_load(ctx);
}
答案 0 :(得分:0)
我设法使用以下方法解决了该错误:
将#include <linux/seccomp.h>
替换为#include <seccomp.h>
而在编译时,则使用g++ filename.cpp -lseccomp
。
这对我有用。