nsjail/nsjail.c
Yoshisato Yanagisawa 1389da4c91 Use 0xff as nsjail error code.
For ease of distinguishing errors coming from a program executed by
nsjail and errors from nsjail, let me change nsjail error exit
status code to 0xff instead of 1.
I think most of programs use EXIT_FAILURE (i.e. 1) as a default
error exit status code.
2017-09-25 14:08:22 +09:00

201 lines
4.2 KiB
C

/*
nsjail
-----------------------------------------
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 "nsjail.h"
#include <errno.h>
#include <signal.h>
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/time.h>
#include <unistd.h>
#include "caps.h"
#include "cmdline.h"
#include "log.h"
#include "net.h"
#include "subproc.h"
#include "util.h"
static __thread int nsjailSigFatal = 0;
static __thread bool nsjailShowProc = false;
static void nsjailSig(int sig)
{
if (sig == SIGALRM) {
return;
}
if (sig == SIGCHLD) {
return;
}
if (sig == SIGUSR1) {
nsjailShowProc = true;
return;
}
nsjailSigFatal = sig;
}
static bool nsjailSetSigHandler(int sig)
{
LOG_D("Setting sighandler for signal %s (%d)", utilSigName(sig), sig);
sigset_t smask;
sigemptyset(&smask);
struct sigaction sa = {
.sa_handler = nsjailSig,
.sa_mask = smask,
.sa_flags = 0,
.sa_restorer = NULL,
};
if (sigaction(sig, &sa, NULL) == -1) {
PLOG_E("sigaction(%d)", sig);
return false;
}
return true;
}
static bool nsjailSetSigHandlers(void)
{
if (nsjailSetSigHandler(SIGINT) == false) {
return false;
}
if (nsjailSetSigHandler(SIGUSR1) == false) {
return false;
}
if (nsjailSetSigHandler(SIGALRM) == false) {
return false;
}
if (nsjailSetSigHandler(SIGCHLD) == false) {
return false;
}
if (nsjailSetSigHandler(SIGTERM) == false) {
return false;
}
return true;
}
static bool nsjailSetTimer(struct nsjconf_t *nsjconf)
{
if (nsjconf->mode == MODE_STANDALONE_EXECVE) {
return true;
}
struct itimerval it = {
.it_value = {.tv_sec = 1,.tv_usec = 0},
.it_interval = {.tv_sec = 1,.tv_usec = 0},
};
if (setitimer(ITIMER_REAL, &it, NULL) == -1) {
PLOG_E("setitimer(ITIMER_REAL)");
return false;
}
return true;
}
static void nsjailListenMode(struct nsjconf_t *nsjconf)
{
int listenfd = netGetRecvSocket(nsjconf->bindhost, nsjconf->port);
if (listenfd == -1) {
return;
}
for (;;) {
if (nsjailSigFatal > 0) {
subprocKillAll(nsjconf);
logStop(nsjailSigFatal);
close(listenfd);
return;
}
if (nsjailShowProc == true) {
nsjailShowProc = false;
subprocDisplay(nsjconf);
}
int connfd = netAcceptConn(listenfd);
if (connfd >= 0) {
subprocRunChild(nsjconf, connfd, connfd, connfd);
close(connfd);
}
subprocReap(nsjconf);
}
}
static int nsjailStandaloneMode(struct nsjconf_t *nsjconf)
{
subprocRunChild(nsjconf, STDIN_FILENO, STDOUT_FILENO, STDERR_FILENO);
for (;;) {
int child_status = subprocReap(nsjconf);
if (subprocCount(nsjconf) == 0) {
if (nsjconf->mode == MODE_STANDALONE_ONCE) {
return child_status;
}
subprocRunChild(nsjconf, STDIN_FILENO, STDOUT_FILENO, STDERR_FILENO);
continue;
}
if (nsjailShowProc == true) {
nsjailShowProc = false;
subprocDisplay(nsjconf);
}
if (nsjailSigFatal > 0) {
subprocKillAll(nsjconf);
logStop(nsjailSigFatal);
return -1;
}
pause();
}
// not reached
}
int main(int argc, char *argv[])
{
struct nsjconf_t nsjconf;
if (!cmdlineParse(argc, argv, &nsjconf)) {
LOG_E("Couldn't parse cmdline options");
exit(0xff);
}
if (nsjconf.clone_newuser == false && geteuid() != 0) {
LOG_W("--disable_clone_newuser requires root() privs");
}
if (nsjconf.daemonize && (daemon(0, 0) == -1)) {
PLOG_F("daemon");
}
cmdlineLogParams(&nsjconf);
if (nsjailSetSigHandlers() == false) {
exit(0xff);
}
if (nsjailSetTimer(&nsjconf) == false) {
exit(0xff);
}
if (nsjconf.mode == MODE_LISTEN_TCP) {
nsjailListenMode(&nsjconf);
} else {
return nsjailStandaloneMode(&nsjconf);
}
return 0;
}
/*
* To satisfy requirement for BlocksRuntime in clang -fblocks
*/
void *_NSConcreteStackBlock[32] = { 0 };