diff options
author | Taru Karttunen <taruti@taruti.net> | 2011-03-30 15:46:40 +0300 |
---|---|---|
committer | Taru Karttunen <taruti@taruti.net> | 2011-03-30 15:46:40 +0300 |
commit | e5888a1ffdae813d7575f5fb02275c6bb07e5199 (patch) | |
tree | d8d51eac403f07814b9e936eed0c9a79195e2450 /sys/src/libauth/auth_chuid.c |
Import sources from 2011-03-30 iso image
Diffstat (limited to 'sys/src/libauth/auth_chuid.c')
-rwxr-xr-x | sys/src/libauth/auth_chuid.c | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/sys/src/libauth/auth_chuid.c b/sys/src/libauth/auth_chuid.c new file mode 100755 index 000000000..1bfbfff92 --- /dev/null +++ b/sys/src/libauth/auth_chuid.c @@ -0,0 +1,38 @@ +#include <u.h> +#include <libc.h> +#include <auth.h> + +/* + * become the authenticated user + */ +int +auth_chuid(AuthInfo *ai, char *ns) +{ + int rv, fd; + + if(ai == nil || ai->cap == nil){ + werrstr("no capability"); + return -1; + } + + /* change uid */ + fd = open("#¤/capuse", OWRITE); + if(fd < 0){ + werrstr("opening #¤/capuse: %r"); + return -1; + } + rv = write(fd, ai->cap, strlen(ai->cap)); + close(fd); + if(rv < 0){ + werrstr("writing %s to #¤/capuse: %r", ai->cap); + return -1; + } + + /* get a link to factotum as new user */ + fd = open("/srv/factotum", ORDWR); + if(fd >= 0) + mount(fd, -1, "/mnt", MREPL, ""); + + /* set up new namespace */ + return newns(ai->cuid, ns); +} |