sbase/chroot.c

39 lines
569 B
C
Raw Normal View History

#include <stdlib.h>
#include <unistd.h>
#include "util.h"
static void usage(void);
int
main(int argc, char **argv)
{
2013-07-20 07:19:32 -04:00
char *shell[] = {"/bin/sh", "-i", NULL}, *aux;
if((aux = getenv("SHELL")))
2013-07-20 07:19:32 -04:00
shell[0] = aux;
if(argc < 2)
usage();
if(chroot(argv[1]) == -1)
eprintf("chroot: '%s':", argv[1]);
if(chdir("/") == -1)
eprintf("chroot:");
if(argc == 2) {
execvp(*shell, shell);
} else {
execvp(argv[2], argv+2);
}
eprintf("chroot: '%s':", argv[2]);
return EXIT_FAILURE;
}
void
usage(void)
{
eprintf("usage: chroot dir [command [arg...]]\n");
}