gpt4 book ai didi

c - 如何从C进入chroot环境?

转载 作者:IT王子 更新时间:2023-10-29 01:12:41 28 4
gpt4 key购买 nike

我想做的是让我的程序进入 chroot 环境并执行一些命令然后退出。

例如

#include <stdlib.h>
#include <stdio.h>
#include <string.h>

#define ChRoot "sudo chroot \"/\" /usr/bin/env -i HOME=/root TERM=\"$TERM\" PATH=/bin:/usr/bin:/sbin:/usr/sbin:/bin /bin/bash --login +h"


void func1(){
//enter the chroot environment
char line[130]; FILE *fp;
fp = popen(ChRoot, "r");
while(fgets( line, sizeof line, fp)){
printf ("%s\n",line);
}
pclose(fp);
}
void func2(){
//run a command in the chroot environment
char line[130]; FILE *fp;
fp = popen("ls", "r");
while(fgets( line, sizeof line, fp)){
printf ("%s\n",line);
}
pclose(fp);

}
int main() {
func1();
func2();
return 0;
}

这段代码的问题是,它会让我进入 chroot 环境,但是在我退出 chroot 环境之前它不会触发 func2。我需要的是让我的代码在 chroot 环境中执行 func1,然后执行 func2,然后退出。我知道我在我的代码中所做的是非常错误的,但是,我希望我能得到一些指导。

如有任何帮助,我们将不胜感激。

最佳答案

如果你在 C 中并且你想进入一个 chroot,你可以直接使用 chroot() 函数:

#include <stdio.h>
#include <unistd.h>

int main(void) {
FILE *f;

/* chroot */
chdir("/tmp");
if (chroot("/tmp") != 0) {
perror("chroot /tmp");
return 1;
}

/* do something after chrooting */
f = fopen("/etc/passwd", "r");
if (f == NULL) {
perror("/etc/passwd");
return 1;
} else {
char buf[100];
while (fgets(buf, sizeof(buf), f)) {
printf("%s", buf);
}
}
return 0;
}

请注意,如果您在 chroot 之前未设置当前目录,则可能会脱离 chroot。

关于c - 如何从C进入chroot环境?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3946063/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com