blob: 25765db8336b3f915adae772d16f693bf65638f7 [file] [log] [blame]
philwoc4f271d2017-05-15 19:10:21 +02001// Copyright 2014 The Bazel Authors. All rights reserved.
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15// process-wrapper runs a subprocess with a given timeout (optional),
16// redirecting stdout and stderr to given files. Upon exit, whether
17// from normal termination or timeout, the subprocess (and any of its children)
18// is killed.
19//
20// The exit status of this program is whatever the child process returned,
21// unless process-wrapper receives a signal. ie, on SIGTERM this program will
22// die with raise(SIGTERM) even if the child process handles SIGTERM with
23// exit(0).
24
philwo75b58db2017-06-06 09:20:37 -040025#include "src/main/tools/process-wrapper.h"
26
philwoc4f271d2017-05-15 19:10:21 +020027#include <err.h>
28#include <errno.h>
29#include <signal.h>
30#include <stdbool.h>
31#include <stdio.h>
32#include <stdlib.h>
33#include <string.h>
philwoc4f271d2017-05-15 19:10:21 +020034#include <sys/stat.h>
Philipp Wollermannef32c6a2017-05-16 18:05:14 +020035#include <sys/types.h>
philwoc4f271d2017-05-15 19:10:21 +020036#include <sys/wait.h>
37#include <unistd.h>
Philipp Wollermannef32c6a2017-05-16 18:05:14 +020038#include <string>
39#include <vector>
philwoc4f271d2017-05-15 19:10:21 +020040
philwo67cea8f2017-05-17 20:36:58 +020041#include "src/main/tools/logging.h"
Philipp Wollermannef32c6a2017-05-16 18:05:14 +020042#include "src/main/tools/process-tools.h"
philwo75b58db2017-06-06 09:20:37 -040043#include "src/main/tools/process-wrapper-legacy.h"
philwo9d9ac152017-06-21 15:25:10 +020044#include "src/main/tools/process-wrapper-options.h"
philwoc4f271d2017-05-15 19:10:21 +020045
philwoc4f271d2017-05-15 19:10:21 +020046int main(int argc, char *argv[]) {
philwo9d9ac152017-06-21 15:25:10 +020047 ParseOptions(argc, argv);
philwoc4f271d2017-05-15 19:10:21 +020048
49 SwitchToEuid();
50 SwitchToEgid();
51
Philipp Wollermannef32c6a2017-05-16 18:05:14 +020052 Redirect(opt.stdout_path, STDOUT_FILENO);
53 Redirect(opt.stderr_path, STDERR_FILENO);
philwoc4f271d2017-05-15 19:10:21 +020054
philwo75b58db2017-06-06 09:20:37 -040055 LegacyProcessWrapper::RunCommand();
philwoc4f271d2017-05-15 19:10:21 +020056
57 return 0;
58}