jehanne/sys/src/cmd/auth/newns.c

75 lines
1.6 KiB
C

/*
* This file is part of the UCB release of Plan 9. It is subject to the license
* terms in the LICENSE file found in the top-level directory of this
* distribution and at http://akaros.cs.berkeley.edu/files/Plan9License. No
* part of the UCB release of Plan 9, including this file, may be copied,
* modified, propagated, or distributed except according to the terms contained
* in the LICENSE file.
*/
/* Portions of this file are Copyright (C) 9front's team.
* See /doc/license/9front-mit for details about the licensing.
* See http://git.9front.org/plan9front/plan9front/HEAD/info.html for a list of authors.
*/
#include <u.h>
#include <lib9.h>
#include <auth.h>
void
usage(void)
{
fprint(2, "usage: newns [-ad] [-n namespace] [cmd [args...]]\n");
exits("usage");
}
static int
rooted(char *s)
{
if(s[0] == '/')
return 1;
if(s[0] == '.' && s[1] == '/')
return 1;
if(s[0] == '.' && s[1] == '.' && s[2] == '/')
return 1;
return 0;
}
void
main(int argc, char **argv)
{
extern int newnsdebug;
char *defargv[] = { "/cmd/rc", "-i", nil };
char *nsfile, err[ERRMAX];
int add;
sys_rfork(RFNAMEG);
add = 0;
nsfile = "/lib/namespace";
ARGBEGIN{
case 'a':
add = 1;
break;
case 'd':
newnsdebug = 1;
break;
case 'n':
nsfile = ARGF();
break;
default:
usage();
break;
}ARGEND
if(argc == 0)
argv = defargv;
if (add)
addns(getuser(), nsfile);
else
newns(getuser(), nsfile);
sys_exec(argv[0], (const char **)argv);
if(!rooted(argv[0])){
rerrstr(err, sizeof err);
sys_exec(smprint("/cmd/%s", argv[0]), (const char **)argv);
sys_errstr(err, sizeof err);
}
sysfatal("exec: %s: %r", argv[0]);
}