chroot.c revision 1.17 1 /* $NetBSD: chroot.c,v 1.17 2011/08/27 22:32:44 joerg Exp $ */
2
3 /*
4 * Copyright (c) 1988, 1993
5 * The Regents of the University of California. All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * 3. Neither the name of the University nor the names of its contributors
16 * may be used to endorse or promote products derived from this software
17 * without specific prior written permission.
18 *
19 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
20 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
23 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29 * SUCH DAMAGE.
30 */
31
32 #include <sys/cdefs.h>
33 #ifndef lint
34 __COPYRIGHT("@(#) Copyright (c) 1988, 1993\
35 The Regents of the University of California. All rights reserved.");
36 #endif /* not lint */
37
38 #ifndef lint
39 #if 0
40 static char sccsid[] = "@(#)chroot.c 8.1 (Berkeley) 6/9/93";
41 #else
42 __RCSID("$NetBSD: chroot.c,v 1.17 2011/08/27 22:32:44 joerg Exp $");
43 #endif
44 #endif /* not lint */
45
46 #include <sys/param.h>
47
48 #include <ctype.h>
49 #include <err.h>
50 #include <errno.h>
51 #include <grp.h>
52 #include <paths.h>
53 #include <pwd.h>
54 #include <stdio.h>
55 #include <stdlib.h>
56 #include <string.h>
57 #include <unistd.h>
58
59 static void usage(void) __dead;
60
61 int
62 main(int argc, char *argv[])
63 {
64 char *user; /* user to switch to before running program */
65 char *group; /* group to switch to ... */
66 char *grouplist; /* group list to switch to ... */
67 struct group *gp;
68 struct passwd *pw;
69 char *endp, *p;
70 const char *shell;
71 gid_t gid, gidlist[NGROUPS_MAX];
72 uid_t uid;
73 int ch, gids;
74
75 gid = 0;
76 uid = 0;
77 while ((ch = getopt(argc, argv, "G:g:u:")) != -1) {
78 switch(ch) {
79 case 'u':
80 user = optarg;
81 if (*user == '\0')
82 usage();
83 break;
84 case 'g':
85 group = optarg;
86 if (*group == '\0')
87 usage();
88 break;
89 case 'G':
90 grouplist = optarg;
91 if (*grouplist == '\0')
92 usage();
93 break;
94 case '?':
95 default:
96 usage();
97 }
98 }
99 argc -= optind;
100 argv += optind;
101
102 if (argc < 1)
103 usage();
104
105 if (group != NULL) {
106 if (isdigit((unsigned char)*group)) {
107 gid = (gid_t)strtoul(group, &endp, 0);
108 if (*endp != '\0')
109 goto getgroup;
110 } else {
111 getgroup:
112 if ((gp = getgrnam(group)) != NULL)
113 gid = gp->gr_gid;
114 else
115 errx(1, "no such group `%s'", group);
116 }
117 }
118
119 for (gids = 0;
120 (p = strsep(&grouplist, ",")) != NULL && gids < NGROUPS_MAX; ) {
121 if (*p == '\0')
122 continue;
123
124 if (isdigit((unsigned char)*p)) {
125 gidlist[gids] = (gid_t)strtoul(p, &endp, 0);
126 if (*endp != '\0')
127 goto getglist;
128 } else {
129 getglist:
130 if ((gp = getgrnam(p)) != NULL)
131 gidlist[gids] = gp->gr_gid;
132 else
133 errx(1, "no such group `%s'", p);
134 }
135 gids++;
136 }
137 if (p != NULL && gids == NGROUPS_MAX)
138 errx(1, "too many supplementary groups provided");
139
140 if (user != NULL) {
141 if (isdigit((unsigned char)*user)) {
142 uid = (uid_t)strtoul(user, &endp, 0);
143 if (*endp != '\0')
144 goto getuser;
145 } else {
146 getuser:
147 if ((pw = getpwnam(user)) != NULL)
148 uid = pw->pw_uid;
149 else
150 errx(1, "no such user `%s'", user);
151 }
152 }
153
154 if (chdir(argv[0]) == -1 || chroot(".") == -1)
155 err(1, "%s", argv[0]);
156
157 if (gids && setgroups(gids, gidlist) == -1)
158 err(1, "setgroups");
159 if (group && setgid(gid) == -1)
160 err(1, "setgid");
161 if (user && setuid(uid) == -1)
162 err(1, "setuid");
163
164 if (argv[1]) {
165 execvp(argv[1], &argv[1]);
166 err(1, "%s", argv[1]);
167 }
168
169 if ((shell = getenv("SHELL")) == NULL)
170 shell = _PATH_BSHELL;
171 execlp(shell, shell, "-i", NULL);
172 err(1, "%s", shell);
173 /* NOTREACHED */
174 }
175
176 static void
177 usage(void)
178 {
179
180 (void)fprintf(stderr, "usage: chroot [-G group,group,...] [-g group] "
181 "[-u user] newroot [command]\n");
182 exit(1);
183 }
184