blob: 3b6fdae3b295f09f2ddc4bb951b02f39ef65b15a [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 Andersen2b69c401999-10-05 22:58:32 +000036 fprintf(stderr, "Usage: %s %s", *argv, chroot_usage);
Eric Andersen2ce1edc1999-10-12 15:42:48 +000037 exit( FALSE);
Eric Andersen2b69c401999-10-05 22:58:32 +000038 }
39 argc--;
40 argv++;
Eric Andersencc8ed391999-10-05 16:24:54 +000041
Eric Andersen2b69c401999-10-05 22:58:32 +000042 if (chroot (*argv) || (chdir ("/"))) {
Eric Andersen2ce1edc1999-10-12 15:42:48 +000043 fprintf(stderr, "chroot: cannot change root directory to %s: %s\n",
44 *argv, strerror(errno));
45 exit( FALSE);
Eric Andersencc8ed391999-10-05 16:24:54 +000046 }
Eric Andersen2b69c401999-10-05 22:58:32 +000047
48 argc--;
49 argv++;
50 if (argc >= 1) {
51 fprintf(stderr, "command: %s\n", *argv);
52 execvp (*argv, argv);
Eric Andersencc8ed391999-10-05 16:24:54 +000053 }
Eric Andersen2b69c401999-10-05 22:58:32 +000054 else {
55 char *prog;
56 prog = getenv ("SHELL");
57 if (!prog)
58 prog = "/bin/sh";
Eric Andersen2b69c401999-10-05 22:58:32 +000059 execlp (prog, prog, NULL);
Eric Andersencc8ed391999-10-05 16:24:54 +000060 }
Eric Andersen2ce1edc1999-10-12 15:42:48 +000061 fprintf(stderr, "chroot: cannot execute %s: %s\n",
62 *argv, strerror(errno));
63 exit( FALSE);
Eric Andersencc8ed391999-10-05 16:24:54 +000064}
Eric Andersen2b69c401999-10-05 22:58:32 +000065