1
0
mirror of https://passt.top/passt synced 2024-07-01 23:42:41 +00:00

passt: Don't refuse to run if UID is 0 in non-init namespace

Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
This commit is contained in:
Stefano Brivio 2021-10-14 18:01:00 +02:00
parent 54a65e3693
commit 388435542e

15
passt.c
View File

@ -189,15 +189,28 @@ static void seccomp(struct ctx *c)
}
/**
* check_root() - Warn if we're running as root, exit if we can't drop to nobody
* check_root() - Warn if root in init, exit if we can't drop to nobody
*/
static void check_root(void)
{
struct passwd *pw;
char buf[BUFSIZ];
int fd;
if (getuid() && geteuid())
return;
if ((fd = open("/proc/self/uid_map", O_RDONLY)) < 0)
return;
if (read(fd, buf, BUFSIZ) > 0 &&
strcmp(buf, " 0 0 4294967295")) {
close(fd);
return;
}
close(fd);
fprintf(stderr, "Don't run this as root. Changing to nobody...\n");
pw = getpwnam("nobody");
if (!pw) {