folly copyright 2015 -> copyright 2016
[folly.git] / folly / test / SubprocessTestParentDeathHelper.cpp
1 /*
2  * Copyright 2016 Facebook, Inc.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *   http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 // This is a helper for the parentDeathSignal test in SubprocessTest.cpp.
18 //
19 // Basically, we create two processes, a parent and a child, and set the
20 // child to receive SIGUSR1 when the parent exits.  We set the child to
21 // create a file when that happens.  The child then kills the parent; the test
22 // will verify that the file actually gets created, which means that everything
23 // worked as intended.
24
25 #include <sys/types.h>
26 #include <sys/stat.h>
27 #include <fcntl.h>
28 #include <signal.h>
29 #include <unistd.h>
30
31 #include <gflags/gflags.h>
32 #include <glog/logging.h>
33
34 #include <folly/Conv.h>
35 #include <folly/Subprocess.h>
36
37 using folly::Subprocess;
38
39 DEFINE_bool(child, false, "");
40
41 namespace {
42 constexpr int kSignal = SIGUSR1;
43 }  // namespace
44
45 void runChild(const char* file) {
46   // Block SIGUSR1 so it's queued
47   sigset_t sigs;
48   CHECK_ERR(sigemptyset(&sigs));
49   CHECK_ERR(sigaddset(&sigs, kSignal));
50   CHECK_ERR(sigprocmask(SIG_BLOCK, &sigs, nullptr));
51
52   // Kill the parent, wait for our signal.
53   CHECK_ERR(kill(getppid(), SIGKILL));
54
55   int sig = 0;
56   CHECK_ERR(sigwait(&sigs, &sig));
57   CHECK_EQ(sig, kSignal);
58
59   // Signal completion by creating the file
60   CHECK_ERR(creat(file, 0600));
61 }
62
63 void runParent(const char* file) {
64   std::vector<std::string> args {"/proc/self/exe", "--child", file};
65   Subprocess proc(
66       args,
67       Subprocess::Options().parentDeathSignal(kSignal));
68   CHECK(proc.poll().running());
69
70   // The child will kill us.
71   for (;;) {
72     pause();
73   }
74 }
75
76 int main(int argc, char *argv[]) {
77   gflags::ParseCommandLineFlags(&argc, &argv, true);
78   CHECK_EQ(argc, 2);
79   if (FLAGS_child) {
80     runChild(argv[1]);
81   } else {
82     runParent(argv[1]);
83   }
84   return 0;
85 }