nsjail/subproc.c

277 lines
7.4 KiB
C
Raw Normal View History

2015-05-15 05:44:48 +08:00
/*
nsjail - subprocess management
-----------------------------------------
Copyright 2014 Google Inc. All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
#include "subproc.h"
#include <arpa/inet.h>
#include <errno.h>
#include <fcntl.h>
2015-05-15 05:44:48 +08:00
#include <netinet/in.h>
#include <sched.h>
#include <signal.h>
#include <stdio.h>
#include <stdint.h>
#include <stdlib.h>
#include <string.h>
#include <sys/prctl.h>
#include <sys/queue.h>
#include <sys/syscall.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <time.h>
#include <unistd.h>
#include "common.h"
#include "contain.h"
#include "log.h"
#include "net.h"
#include "sandbox.h"
#include "user.h"
2016-01-17 11:14:09 +08:00
#include "util.h"
2015-05-15 05:44:48 +08:00
const char subprocDoneChar = 'D';
static int subprocNewProc(struct nsjconf_t *nsjconf, int fd_in, int fd_out, int fd_err, int pipefd)
2015-05-15 05:44:48 +08:00
{
2016-03-16 03:42:03 +08:00
if (containSetupFD(nsjconf, fd_in, fd_out, fd_err) == false) {
2015-08-16 02:48:48 +08:00
exit(1);
}
char doneChar;
if (utilReadFromFd(pipefd, &doneChar, sizeof(doneChar)) != sizeof(doneChar)) {
2015-05-15 05:44:48 +08:00
exit(1);
}
if (doneChar != subprocDoneChar) {
exit(1);
}
2016-03-08 22:57:09 +08:00
if (containContain(nsjconf) == false) {
2015-05-15 05:44:48 +08:00
exit(1);
}
2016-01-27 00:42:10 +08:00
if (nsjconf->keep_env == false) {
clearenv();
}
struct charptr_t *p;
TAILQ_FOREACH(p, &nsjconf->envs, pointers) {
putenv(p->val);
2015-05-15 05:44:48 +08:00
}
LOG_D("Trying to execve('%s')", nsjconf->argv[0]);
2016-03-04 08:39:21 +08:00
for (size_t i = 0; nsjconf->argv[i]; i++) {
LOG_D(" Arg[%zu]: '%s'", i, nsjconf->argv[i]);
2015-05-15 05:44:48 +08:00
}
2016-03-08 22:57:09 +08:00
/* Should be the last one in the sequence */
if (sandboxApply(nsjconf) == false) {
exit(1);
}
2016-01-27 00:42:10 +08:00
execv(nsjconf->argv[0], &nsjconf->argv[0]);
PLOG_E("execve('%s') failed", nsjconf->argv[0]);
_exit(1);
2015-05-15 05:44:48 +08:00
}
static void subprocAdd(struct nsjconf_t *nsjconf, pid_t pid, int sock)
{
struct pids_t *p = utilMalloc(sizeof(struct pids_t));
2015-05-15 05:44:48 +08:00
p->pid = pid;
p->start = time(NULL);
netConnToText(sock, true /* remote */ , p->remote_txt, sizeof(p->remote_txt),
&p->remote_addr);
TAILQ_INSERT_HEAD(&nsjconf->pids, p, pointers);
2015-05-15 05:44:48 +08:00
LOG_D("Added pid '%d' with start time '%u' to the queue for IP: '%s'", pid,
(unsigned int)p->start, p->remote_txt);
}
static void subprocRemove(struct nsjconf_t *nsjconf, pid_t pid)
{
struct pids_t *p;
TAILQ_FOREACH(p, &nsjconf->pids, pointers) {
2015-05-15 05:44:48 +08:00
if (p->pid == pid) {
LOG_D("Removing pid '%d' from the queue (IP:'%s', start time:'%u')", p->pid,
p->remote_txt, (unsigned int)p->start);
TAILQ_REMOVE(&nsjconf->pids, p, pointers);
2015-05-15 05:44:48 +08:00
free(p);
return;
}
}
LOG_W("PID: %d not found (?)", pid);
}
int subprocCount(struct nsjconf_t *nsjconf)
{
int cnt = 0;
struct pids_t *p;
TAILQ_FOREACH(p, &nsjconf->pids, pointers) {
2015-05-15 05:44:48 +08:00
cnt++;
}
return cnt;
}
void subprocDisplay(struct nsjconf_t *nsjconf)
{
LOG_I("Total number of spawned namespaces: %d", subprocCount(nsjconf));
time_t now = time(NULL);
struct pids_t *p;
TAILQ_FOREACH(p, &nsjconf->pids, pointers) {
2015-05-15 05:44:48 +08:00
time_t diff = now - p->start;
time_t left = nsjconf->tlimit ? nsjconf->tlimit - diff : 0;
2015-08-16 02:10:07 +08:00
LOG_I("PID: %d, Remote host: %s, Run time: %ld sec. (time left: %ld sec.)", p->pid,
p->remote_txt, (long)diff, (long)left);
2015-05-15 05:44:48 +08:00
}
}
int subprocReap(struct nsjconf_t *nsjconf)
2015-05-15 05:44:48 +08:00
{
int status;
int rv = 0;
2015-05-15 05:44:48 +08:00
pid_t pid;
while ((pid = waitpid(-1, &status, WNOHANG)) > 0) {
if (WIFEXITED(status)) {
subprocRemove(nsjconf, pid);
LOG_I("PID: %d exited with status: %d, (PIDs left: %d)", pid,
WEXITSTATUS(status), subprocCount(nsjconf));
if (rv == 0) {
rv = WEXITSTATUS(status);
}
2015-05-15 05:44:48 +08:00
}
if (WIFSIGNALED(status)) {
subprocRemove(nsjconf, pid);
LOG_I("PID: %d terminated with signal: %d, (PIDs left: %d)", pid,
WTERMSIG(status), subprocCount(nsjconf));
}
}
time_t now = time(NULL);
struct pids_t *p;
TAILQ_FOREACH(p, &nsjconf->pids, pointers) {
2015-05-15 05:44:48 +08:00
if (nsjconf->tlimit == 0) {
continue;
}
pid = p->pid;
time_t diff = now - p->start;
if (diff >= nsjconf->tlimit) {
LOG_I("PID: %d run time >= time limit (%ld >= %ld) (%s). Killing it", pid,
(long)diff, (long)nsjconf->tlimit, p->remote_txt);
/* Probably a kernel bug - some processes cannot be killed with KILL if
* they're namespaced, and in a stopped state */
kill(pid, SIGCONT);
PLOG_D("Sent SIGCONT to PID: %d", pid);
kill(pid, SIGKILL);
PLOG_D("Sent SIGKILL to PID: %d", pid);
2015-07-08 04:08:54 +08:00
if (rv == 0) {
rv = -1;
}
2015-05-15 05:44:48 +08:00
}
}
return rv;
2015-05-15 05:44:48 +08:00
}
void subprocKillAll(struct nsjconf_t *nsjconf)
{
struct pids_t *p;
TAILQ_FOREACH(p, &nsjconf->pids, pointers) {
2015-05-15 05:44:48 +08:00
kill(p->pid, SIGKILL);
}
}
2016-02-29 06:23:24 +08:00
static bool subprocInitParent(struct nsjconf_t *nsjconf, pid_t pid, int pipefd)
{
2016-03-03 22:43:40 +08:00
if (netInitNsFromParent(nsjconf, pid) == false) {
2016-02-29 06:23:24 +08:00
LOG_E("Couldn't create and put MACVTAP interface into NS of PID '%d'", pid);
return false;
}
if (userInitNsFromParent(nsjconf, pid) == false) {
2016-02-29 06:23:24 +08:00
LOG_E("Couldn't initialize user namespaces for pid %d", pid);
return false;
}
if (utilWriteToFd(pipefd, &subprocDoneChar, sizeof(subprocDoneChar)) !=
sizeof(subprocDoneChar)) {
LOG_E("Couldn't signal the new process via a socketpair");
return false;
}
return true;
}
2015-05-15 05:44:48 +08:00
void subprocRunChild(struct nsjconf_t *nsjconf, int fd_in, int fd_out, int fd_err)
{
if (netLimitConns(nsjconf, fd_in) == false) {
return;
}
2016-03-04 08:39:21 +08:00
unsigned long flags = 0UL;
2015-05-15 05:44:48 +08:00
flags |= (nsjconf->clone_newnet ? CLONE_NEWNET : 0);
flags |= (nsjconf->clone_newuser ? CLONE_NEWUSER : 0);
flags |= (nsjconf->clone_newns ? CLONE_NEWNS : 0);
flags |= (nsjconf->clone_newpid ? CLONE_NEWPID : 0);
flags |= (nsjconf->clone_newipc ? CLONE_NEWIPC : 0);
flags |= (nsjconf->clone_newuts ? CLONE_NEWUTS : 0);
if (nsjconf->mode == MODE_STANDALONE_EXECVE) {
if (nsjconf->clone_newpid) {
2015-08-16 02:48:48 +08:00
LOG_D("CLONE_NEWPID requested. It causes troubles with unshare() "
"[ENOMEM with clone/fork/vfork]. Disabling it");
flags &= ~(CLONE_NEWPID);
}
2016-03-04 08:39:21 +08:00
LOG_D("Entering namespace with flags: %#lx", flags);
if (unshare(flags) == -1) {
2016-03-04 08:39:21 +08:00
PLOG_E("unshare(%#lx)", flags);
_exit(EXIT_FAILURE);
}
subprocNewProc(nsjconf, fd_in, fd_out, fd_err, -1);
}
flags |= SIGCHLD;
2016-03-04 08:39:21 +08:00
LOG_D("Creating new process with clone flags: %#lx", flags);
2015-05-15 05:44:48 +08:00
int sv[2];
if (socketpair(AF_UNIX, SOCK_STREAM | SOCK_CLOEXEC, 0, sv) == -1) {
PLOG_E("socketpair(AF_UNIX, SOCK_STREAM | SOCK_CLOEXEC) failed");
return;
}
2015-11-25 01:34:05 +08:00
pid_t pid = syscall(__NR_clone, (uintptr_t) flags, NULL, NULL, NULL, (uintptr_t) 0);
2015-05-15 05:44:48 +08:00
if (pid == 0) {
close(sv[1]);
subprocNewProc(nsjconf, fd_in, fd_out, fd_err, sv[0]);
2015-05-15 05:44:48 +08:00
}
defer {
close(sv[1]);
}
close(sv[0]);
2015-05-15 05:44:48 +08:00
if (pid == -1) {
2016-03-04 08:39:21 +08:00
PLOG_E("clone(flags=%#lx) failed. You probably need root privileges if your system "
2015-05-15 05:44:48 +08:00
"doesn't support CLONE_NEWUSER. Alternatively, you might want to recompile your "
2015-08-12 10:32:34 +08:00
"kernel with support for namespaces or check the setting of the "
"kernel.unprivileged_userns_clone sysctl", flags);
2015-05-15 05:44:48 +08:00
return;
}
subprocAdd(nsjconf, pid, fd_in);
2015-05-15 05:44:48 +08:00
2016-02-29 06:23:24 +08:00
if (subprocInitParent(nsjconf, pid, sv[1]) == false) {
return;
}
2015-10-18 01:11:48 +08:00
char cs_addr[64];
netConnToText(fd_in, true /* remote */ , cs_addr, sizeof(cs_addr), NULL);
LOG_I("PID: %d about to execute '%s' for %s", pid, nsjconf->argv[0], cs_addr);
2015-05-15 05:44:48 +08:00
}