revert
[util-vserver.git] / src / vsh.c
1 /*
2  * Marc E. Fiuczynski <mef@cs.princeton.edu>
3  *
4  * Copyright (c) 2004 The Trustees of Princeton University (Trustees).
5  *
6  * vsh is free software; you can redistribute it and/or modify it
7  * under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2, or (at your option)
9  * any later version.
10  *
11  * vsh is distributed in the hope that it will be useful, but WITHOUT
12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
13  * or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public
14  * License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with Poptop; see the file COPYING.  If not, write to the Free
18  * Software Foundation, 59 Temple Place - Suite 330, Boston, MA
19  * 02111-1307, USA.
20  */
21
22 #ifdef HAVE_CONFIG_H
23 #  include <config.h>
24 #endif
25 #include "compat.h"
26
27 #include <stdio.h>
28 #include <stdlib.h>
29 #include <string.h>
30 #include <errno.h>
31 #include <limits.h>
32 #include <pwd.h>
33 #include <unistd.h>
34 #include <syscall.h>
35 #include <sys/syscall.h>
36 #include <asm/unistd.h>
37 #include <sys/mount.h>
38 #include <sys/types.h>
39 #include <sys/stat.h>
40 #include <sys/resource.h>
41 #include <fcntl.h>
42 #include <ctype.h>
43 #include <stdarg.h>
44
45 //--------------------------------------------------------------------
46 #include "vserver.h"
47 #include "planetlab.h"
48
49 #undef CONFIG_VSERVER_LEGACY
50
51 /* Base for all vserver roots for chroot */
52 #define VSERVER_ROOT_BASE       "/vservers"
53
54 /* Change to root:root (before entering new context) */
55 static int setuidgid_root()
56 {
57         if (setgid(0) < 0) {
58                 PERROR("setgid(0)");
59                 return -1;
60         }
61         if (setuid(0) < 0) {
62                 PERROR("setuid(0)");
63                 return -1;
64         }
65         return 0;
66 }
67
68 static void compute_new_root(char *base, char **root, uid_t uid)
69 {
70         int             root_len;
71         struct passwd   *pwd;
72
73         if ((pwd = getpwuid(uid)) == NULL) {
74                 PERROR("getpwuid(%d)", uid);
75                 exit(1);
76         }
77
78         root_len = 
79                 strlen(base) + strlen("/") +
80                 strlen(pwd->pw_name)      + NULLBYTE_SIZE;
81         (*root) = (char *)malloc(root_len);
82         if ((*root) == NULL) {
83                 PERROR("malloc(%d)", root_len);
84                 exit(1);
85         }
86     
87         sprintf((*root), "%s/%s", base, pwd->pw_name);
88         (*root)[root_len - 1] = '\0';
89 }
90
91 /* Example: sandbox_root = /vservers/bnc, relpath = /proc/1 */
92 static int sandbox_file_exists(char *sandbox_root, char *relpath)
93 {
94         struct stat stat_buf;
95         char   *file;
96         int    len, exists = 0;
97
98         len = strlen(sandbox_root) + strlen(relpath) + NULLBYTE_SIZE;
99         if ((file = (char *)malloc(len)) == NULL) {
100                 PERROR("malloc(%d)", len);
101                 exit(1);
102         }
103         sprintf(file, "%s%s", sandbox_root, relpath);
104         file[len - 1] = '\0';
105         if (stat(file, &stat_buf) == 0) {
106                 exists = 1;
107         }
108
109
110         free(file);
111         return exists;
112 }
113
114 static int proc_mounted(char *sandbox_root)
115 {
116         return sandbox_file_exists(sandbox_root, "/proc/1");
117 }
118
119 static int devpts_mounted(char *sandbox_root)
120 {
121         return sandbox_file_exists(sandbox_root, "/dev/pts/0");
122 }
123
124 static void mount_proc(char *sandbox_root)
125 {
126         char        *source = "/proc";
127         char        *target;
128         int         len;
129
130         len = strlen(sandbox_root) + strlen("/") + strlen("proc") + NULLBYTE_SIZE;
131         if ((target = (char *)malloc(len)) == NULL) {
132                 PERROR("malloc(%d)", len);
133                 exit(1);
134         }
135
136         sprintf(target, "%s/proc", sandbox_root);
137         target[len - 1] = '\0';
138         if (!proc_mounted(sandbox_root))
139                 mount(source, target, "proc", MS_BIND | MS_RDONLY, NULL);
140
141         free(target);
142 }
143
144 static void mount_devpts(char *sandbox_root)
145 {
146         char        *source = "/dev/pts";
147         char        *target;
148         int         len;
149     
150         len = strlen(sandbox_root) + strlen("/") + strlen("dev/pts") + NULLBYTE_SIZE;
151         if ((target = (char *)malloc(len)) == NULL) {
152                 PERROR("malloc(%d)", len);
153                 exit(1);
154         }
155
156         sprintf(target, "%s/dev/pts", sandbox_root);
157         target[len - 1] = '\0';
158         if (!devpts_mounted(sandbox_root))
159                 mount(source, target, "devpts", 0, NULL);
160
161         free(target);
162 }
163
164 static int sandbox_chroot(uid_t uid)
165 {
166         char *sandbox_root = NULL;
167
168         compute_new_root(VSERVER_ROOT_BASE,&sandbox_root, uid);
169         mount_proc(sandbox_root);
170         mount_devpts(sandbox_root);
171         if (chroot(sandbox_root) < 0) {
172                 PERROR("chroot(%s)", sandbox_root);
173                 exit(1);
174         }
175         if (chdir("/") < 0) {
176                 PERROR("chdir(/)");
177                 exit(1);
178         }
179         return 0;
180 }
181
182 static int sandbox_processes(xid_t ctx, char *context)
183 {
184 #ifdef CONFIG_VSERVER_LEGACY
185         int     flags;
186
187         flags = 0;
188         flags |= 1; /* VX_INFO_LOCK -- cannot request a new vx_id */
189         /* flags |= 4; VX_INFO_NPROC -- limit number of procs in a context */
190
191         (void) vc_new_s_context(ctx, 0, flags);
192
193         /* use legacy dirty hack for capremove */
194         if (vc_new_s_context(VC_SAMECTX, vc_get_insecurebcaps(), flags) == VC_NOCTX) {
195                 PERROR("vc_new_s_context(%u, 0x%16ullx, 0x%08x)",
196                        VC_SAMECTX, vc_get_insecurebcaps(), flags);
197                 exit(1);
198         }
199 #else
200         int  ctx_is_new;
201         struct sliver_resources slr;
202         char hostname[HOST_NAME_MAX+1];
203         pl_get_limits(context,&slr);
204
205         if (gethostname(hostname, sizeof hostname) == -1)
206           {
207             PERROR("gethostname(...)");
208             exit(1);
209           }
210
211         /* check whether the slice has been suspended */
212         if (slr.vs_cpu==0)
213           {
214             fprintf(stderr, "*** %s: %s has zero cpu resources and presumably it has been disabled/suspended ***\n", hostname, context);
215             exit(0);
216           }
217
218         (void) (sandbox_chroot(ctx));
219
220         if ((ctx_is_new = pl_chcontext(ctx, ~vc_get_insecurebcaps(),&slr)) < 0)
221           {
222             PERROR("pl_chcontext(%u)", ctx);
223             exit(1);
224           }
225         if (ctx_is_new)
226           {
227             pl_set_limits(ctx,&slr);
228             pl_setup_done(ctx);
229           }
230 #endif
231         return 0;
232 }
233
234
235 void runas_slice_user(char *username)
236 {
237         struct passwd pwdd, *pwd = &pwdd, *result;
238         char          *pwdBuffer;
239         char          *home_env, *logname_env, *mail_env, *shell_env, *user_env;
240         int           home_len, logname_len, mail_len, shell_len, user_len;
241         long          pwdBuffer_len;
242         static char   *envp[10];
243
244
245         pwdBuffer_len = sysconf(_SC_GETPW_R_SIZE_MAX);
246         if (pwdBuffer_len == -1) {
247                 PERROR("sysconf(_SC_GETPW_R_SIZE_MAX)");
248                 exit(1);
249         }
250
251         pwdBuffer = (char*)malloc(pwdBuffer_len);
252         if (pwdBuffer == NULL) {
253                 PERROR("malloc(%d)", pwdBuffer_len);
254                 exit(1);
255         }
256
257         errno = 0;
258         if ((getpwnam_r(username,pwd,pwdBuffer,pwdBuffer_len, &result) != 0) || (errno != 0)) {
259                 PERROR("getpwnam_r(%s)", username);
260                 exit(1);
261         }
262
263         if (setgid(pwd->pw_gid) < 0) {
264                 PERROR("setgid(%d)", pwd->pw_gid);
265                 exit(1);
266         }
267
268         if (setuid(pwd->pw_uid) < 0) {
269                 PERROR("setuid(%d)", pwd->pw_uid);
270                 exit(1);
271         }
272
273         if (chdir(pwd->pw_dir) < 0) {
274                 PERROR("chdir(%s)", pwd->pw_dir);
275                 exit(1);
276         }
277
278         home_len    = strlen("HOME=") + strlen(pwd->pw_dir) + NULLBYTE_SIZE;
279         logname_len = strlen("LOGNAME=") + strlen(username) + NULLBYTE_SIZE;
280         mail_len    = strlen("MAIL=/var/spool/mail/") + strlen(username) 
281                 + NULLBYTE_SIZE;
282         shell_len   = strlen("SHELL=") + strlen(pwd->pw_shell) + NULLBYTE_SIZE;
283         user_len    = strlen("USER=") + strlen(username) + NULLBYTE_SIZE;
284
285         home_env    = (char *)malloc(home_len);
286         logname_env = (char *)malloc(logname_len);
287         mail_env    = (char *)malloc(mail_len);
288         shell_env   = (char *)malloc(shell_len);
289         user_env    = (char *)malloc(user_len);
290
291         if ((home_env    == NULL)  || 
292             (logname_env == NULL)  ||
293             (mail_env    == NULL)  ||
294             (shell_env   == NULL)  ||
295             (user_env    == NULL)) {
296                 PERROR("malloc");
297                 exit(1);
298         }
299
300         sprintf(home_env, "HOME=%s", pwd->pw_dir);
301         sprintf(logname_env, "LOGNAME=%s", username);
302         sprintf(mail_env, "MAIL=/var/spool/mail/%s", username);
303         sprintf(shell_env, "SHELL=%s", pwd->pw_shell);
304         sprintf(user_env, "USER=%s", username);
305     
306         home_env[home_len - 1]       = '\0';
307         logname_env[logname_len - 1] = '\0';
308         mail_env[mail_len - 1]       = '\0';
309         shell_env[shell_len - 1]     = '\0';
310         user_env[user_len - 1]       = '\0';
311
312         envp[0] = home_env;
313         envp[1] = logname_env;
314         envp[2] = mail_env;
315         envp[3] = shell_env;
316         envp[4] = user_env;
317         envp[5] = 0;
318
319         if ((putenv(home_env)    < 0) ||
320             (putenv(logname_env) < 0) ||
321             (putenv(mail_env)    < 0) ||
322             (putenv(shell_env)   < 0) ||
323             (putenv(user_env)    < 0)) {
324                 PERROR("vserver: putenv error ");
325                 exit(1);
326         }
327 }
328
329 void slice_enter(char *context)
330 {
331         struct passwd pwdd, *pwd = &pwdd, *result;
332         char          *pwdBuffer;
333         long          pwdBuffer_len;
334         uid_t uid;
335
336         pwdBuffer_len = sysconf(_SC_GETPW_R_SIZE_MAX);
337         if (pwdBuffer_len == -1) {
338                 PERROR("sysconf(_SC_GETPW_R_SIZE_MAX)");
339                 exit(1);
340         }
341
342         pwdBuffer = (char*)malloc(pwdBuffer_len);
343         if (pwdBuffer == NULL) {
344                 PERROR("malloc(%d)", pwdBuffer_len);
345                 exit(1);
346         }
347
348         errno = 0;
349         if ((getpwnam_r(context,pwd,pwdBuffer,pwdBuffer_len, &result) != 0) || (errno != 0)) {
350                 PERROR("getpwnam_r(%s)", context);
351                 exit(2);
352         }
353         uid = pwd->pw_uid;
354
355         if (setuidgid_root() < 0) { /* For chroot, new_s_context */
356                 fprintf(stderr, "vsh: Could not become root, check that SUID flag is set on binary\n");
357                 exit(2);
358         }
359
360 #ifdef CONFIG_VSERVER_LEGACY
361         (void) (sandbox_chroot(uid));
362 #endif
363
364         if (sandbox_processes((xid_t) uid, context) < 0) {
365                 fprintf(stderr, "vsh: Could not change context to %d\n", uid);
366                 exit(2);
367         }
368 }
369
370 //--------------------------------------------------------------------
371
372 #define DEFAULT_SHELL "/bin/sh"
373
374 /* Exit statuses for programs like 'env' that exec other programs.
375    EXIT_FAILURE might not be 1, so use EXIT_FAIL in such programs.  */
376 enum
377 {
378   EXIT_CANNOT_INVOKE = 126,
379   EXIT_ENOENT = 127
380 };
381
382 int main(int argc, char **argv)
383 {
384     struct passwd   pwdd, *pwd = &pwdd, *result;
385     char            *context, *username, *shell, *pwdBuffer;
386     long            pwdBuffer_len;
387     uid_t           uid;
388     int             index, i;
389
390     if (argv[0][0]=='-') 
391       index = 1;
392     else
393       index = 0;
394
395     uid = getuid();
396     if ((pwd = getpwuid(uid)) == NULL) {
397       PERROR("getpwuid(%d)", uid);
398       exit(1);
399     }
400
401     context = (char*)strdup(pwd->pw_name);
402     if (!context) {
403       PERROR("strdup");
404       exit(2);
405     }
406
407     /* enter vserver "context" */
408     slice_enter(context);
409
410     /* Now run as username in this context. Note that for PlanetLab's
411        vserver configuration the context name also happens to be the
412        "default" username within the vserver context.
413     */
414     username = context;
415     runas_slice_user(username);
416
417     /* With the uid/gid appropriately set. Let's figure out what the
418      * shell in the vserver's /etc/passwd is for the given username.
419      */
420
421     pwdBuffer_len = sysconf(_SC_GETPW_R_SIZE_MAX);
422     if (pwdBuffer_len == -1) {
423             PERROR("sysconf(_SC_GETPW_R_SIZE_MAX");
424             exit(1);
425     }
426     pwdBuffer = (char*)malloc(pwdBuffer_len);
427     if (pwdBuffer == NULL) {
428             PERROR("malloc(%d)", pwdBuffer_len);
429             exit(1);
430     }
431
432     errno = 0;
433     if ((getpwnam_r(username,pwd,pwdBuffer,pwdBuffer_len, &result) != 0) || (errno != 0)) {
434         PERROR("getpwnam_r(%s)", username);
435         exit(1);
436     }
437
438     /* Make sure pw->pw_shell is non-NULL.*/
439     if (pwd->pw_shell == NULL || pwd->pw_shell[0] == '\0') {
440       pwd->pw_shell = (char *) DEFAULT_SHELL;
441     }
442
443     shell = (char *)strdup(pwd->pw_shell);
444     if (!shell) {
445       PERROR("strdup");
446       exit(2);
447     }
448
449     /* Check whether 'su' or 'sshd' invoked us as a login shell or
450        not; did this above when testing argv[0]=='-'.
451     */
452     argv[0] = shell;
453     if (index == 1) {
454       char **args;
455       args = (char**)malloc(sizeof(char*)*(argc+2));
456       if (!args) {
457         PERROR("malloc(%d)", sizeof(char*)*(argc+2));
458         exit(1);
459       }
460       args[0] = argv[0];
461       args[1] = "-l";
462       for(i=1;i<argc+1;i++) {
463         args[i+1] = argv[i];
464       }
465       argv = args;
466     }
467     (void) execvp(shell,argv);
468     {
469       int exit_status = (errno == ENOENT ? EXIT_ENOENT : EXIT_CANNOT_INVOKE);
470       exit (exit_status);
471     }
472
473     return 0; /* shutup compiler */
474 }