More stuff.
[oweals/busybox.git] / coreutils / chroot.c
1 /*
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
22 #include "internal.h"
23 #include <stdlib.h>
24 #include <stdio.h>
25 #include <errno.h>
26
27
28 static const char chroot_usage[] = "NEWROOT [COMMAND...]\n"
29 "Run COMMAND with root directory set to NEWROOT.\n";
30
31
32
33 int chroot_main(int argc, char **argv)
34 {
35     if ( (argc < 2) || (**(argv+1) == '-') ) {
36         usage( chroot_usage);
37     }
38     argc--;
39     argv++;
40
41     if (chroot (*argv) || (chdir ("/"))) {
42         fprintf(stderr, "chroot: cannot change root directory to %s: %s\n",
43                 *argv, strerror(errno));
44         exit( FALSE);
45     }
46
47     argc--;
48     argv++;
49     if (argc >= 1) {
50         fprintf(stderr, "command: %s\n", *argv);
51         execvp (*argv, argv);
52     }
53     else {
54         char *prog;
55         prog = getenv ("SHELL");
56         if (!prog)
57             prog = "/bin/sh";
58         execlp (prog, prog, NULL);
59     }
60     fprintf(stderr, "chroot: cannot execute %s: %s\n",
61                 *argv, strerror(errno));
62     exit( FALSE);
63 }
64