view toys/other/chroot.c @ 1701:83c14a9cd0fe draft

Patch from Isaac Dunham to add -r, fixed up so it doesn't try to include two flag contexts simultaneously.
author Rob Landley <rob@landley.net>
date Wed, 18 Feb 2015 15:19:15 -0600
parents cbb1aca81eca
children
line wrap: on
line source

/* chroot.c - Run command in new root directory.
 *
 * Copyright 2007 Rob Landley <rob@landley.net>

USE_CHROOT(NEWTOY(chroot, "^<1", TOYFLAG_USR|TOYFLAG_SBIN))

config CHROOT
  bool "chroot"
  default y
  help
    usage: chroot NEWPATH [commandline...]

    Run command within a new root directory. If no command, run /bin/sh.
*/

#include "toys.h"

void chroot_main(void)
{
  char *binsh[] = {"/bin/sh", "-i", 0};

  if (chdir(*toys.optargs) || chroot(".")) perror_exit("%s", *toys.optargs);
  if (toys.optargs[1]) xexec(toys.optargs+1);
  else xexec(binsh);
}