我正在使用Clone()隔离一个恰好是执行简单命令(ls,echo ..)的个性化外壳的进程。 在我的主机中,我使用将名称空间标志传递给的Clone()函数。现在,它可以编译,但在我编写的代码输出的shell中却给了我这个错误。 :
克隆:不允许操作。
这是代码:
#include <sched.h>
#include <stdio.h>
#include <stdlib.h>
#include <signal.h>
#include <sched.h>
#include <sys/types.h>
#include <errno.h>
#include <sys/wait.h>
#include <unistd.h>
#include <sys/fcntl.h>
#include <sys/mount.h>
int child(void *args)
{
printf("pid as seen in the child: %lu\n", (unsigned long)getpid());
// unmount all
// chroot (bind mount/pivot root dance)
// mount /proc (make /dev?)
// remove capabilities? or switch user
spawn_bash();
}
int spawn_bash(void)
{
char *newargv[] = { "/bin/bash", NULL };
execv("/bin/bash", newargv);
perror("exec");
exit(EXIT_FAILURE);
}
int main()
{
int namespaces = CLONE_NEWUTS|CLONE_NEWPID|CLONE_NEWIPC|CLONE_NEWNS|CLONE_NEWNET;
pid_t p = clone(child, malloc(4096) + 4096, SIGCHLD|namespaces, NULL);
if (p == -1) {
perror("clone");
exit(1);
}
printf("child pid: %lu\n", p);
waitpid(p, NULL, 0);
return 0;
}
我已经搜索过,但是我发现的只是这里的另一个正在使用Docker的用户,这不是我的情况。 任何帮助,将不胜感激。谢谢!