blob: 15f44688103c73fe880a21a533ddf85e3f578fbe [file] [log] [blame]
Eric Andersen2b69c401999-10-05 22:58:32 +00001/*
2 * Mini chroot implementation for busybox
3 *
4 * Copyright (C) 1998 by Erik Andersen <andersee@debian.org>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 *
20 */
21
Eric Andersencc8ed391999-10-05 16:24:54 +000022#include "internal.h"
Eric Andersen2ce1edc1999-10-12 15:42:48 +000023#include <stdlib.h>
Eric Andersencc8ed391999-10-05 16:24:54 +000024#include <stdio.h>
Eric Andersen2ce1edc1999-10-12 15:42:48 +000025#include <errno.h>
Eric Andersencc8ed391999-10-05 16:24:54 +000026
27
Eric Andersen2b69c401999-10-05 22:58:32 +000028static const char chroot_usage[] = "NEWROOT [COMMAND...]\n"
29"Run COMMAND with root directory set to NEWROOT.\n";
Eric Andersencc8ed391999-10-05 16:24:54 +000030
Eric Andersen2b69c401999-10-05 22:58:32 +000031
32
33int chroot_main(int argc, char **argv)
Eric Andersencc8ed391999-10-05 16:24:54 +000034{
Eric Andersen2ce1edc1999-10-12 15:42:48 +000035 if ( (argc < 2) || (**(argv+1) == '-') ) {
Eric Andersenb0e9a701999-10-18 22:28:26 +000036 usage( chroot_usage);
Eric Andersen2b69c401999-10-05 22:58:32 +000037 }
38 argc--;
39 argv++;
Eric Andersencc8ed391999-10-05 16:24:54 +000040
Eric Andersen2b69c401999-10-05 22:58:32 +000041 if (chroot (*argv) || (chdir ("/"))) {
Eric Andersen2ce1edc1999-10-12 15:42:48 +000042 fprintf(stderr, "chroot: cannot change root directory to %s: %s\n",
43 *argv, strerror(errno));
44 exit( FALSE);
Eric Andersencc8ed391999-10-05 16:24:54 +000045 }
Eric Andersen2b69c401999-10-05 22:58:32 +000046
47 argc--;
48 argv++;
49 if (argc >= 1) {
50 fprintf(stderr, "command: %s\n", *argv);
51 execvp (*argv, argv);
Eric Andersencc8ed391999-10-05 16:24:54 +000052 }
Eric Andersen2b69c401999-10-05 22:58:32 +000053 else {
54 char *prog;
55 prog = getenv ("SHELL");
56 if (!prog)
57 prog = "/bin/sh";
Eric Andersen2b69c401999-10-05 22:58:32 +000058 execlp (prog, prog, NULL);
Eric Andersencc8ed391999-10-05 16:24:54 +000059 }
Eric Andersen2ce1edc1999-10-12 15:42:48 +000060 fprintf(stderr, "chroot: cannot execute %s: %s\n",
61 *argv, strerror(errno));
62 exit( FALSE);
Eric Andersencc8ed391999-10-05 16:24:54 +000063}
Eric Andersen2b69c401999-10-05 22:58:32 +000064