Fix compiler warning in Subprocess
[folly.git] / folly / Subprocess.cpp
1 /*
2  * Copyright 2014 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 #ifndef _GNU_SOURCE
18 #define _GNU_SOURCE
19 #endif
20
21 #include <folly/Subprocess.h>
22
23 #if __linux__
24 #include <sys/prctl.h>
25 #endif
26 #include <fcntl.h>
27 #include <poll.h>
28
29 #include <unistd.h>
30
31 #include <array>
32 #include <algorithm>
33 #include <system_error>
34
35 #include <boost/container/flat_set.hpp>
36 #include <boost/range/adaptors.hpp>
37
38 #include <glog/logging.h>
39
40 #include <folly/Conv.h>
41 #include <folly/Exception.h>
42 #include <folly/ScopeGuard.h>
43 #include <folly/String.h>
44 #include <folly/io/Cursor.h>
45
46 extern char** environ;
47
48 constexpr int kExecFailure = 127;
49 constexpr int kChildFailure = 126;
50
51 namespace folly {
52
53 ProcessReturnCode::State ProcessReturnCode::state() const {
54   if (rawStatus_ == RV_NOT_STARTED) return NOT_STARTED;
55   if (rawStatus_ == RV_RUNNING) return RUNNING;
56   if (WIFEXITED(rawStatus_)) return EXITED;
57   if (WIFSIGNALED(rawStatus_)) return KILLED;
58   throw std::runtime_error(to<std::string>(
59       "Invalid ProcessReturnCode: ", rawStatus_));
60 }
61
62 void ProcessReturnCode::enforce(State expected) const {
63   State s = state();
64   if (s != expected) {
65     throw std::logic_error(to<std::string>(
66       "Bad use of ProcessReturnCode; state is ", s, " expected ", expected
67     ));
68   }
69 }
70
71 int ProcessReturnCode::exitStatus() const {
72   enforce(EXITED);
73   return WEXITSTATUS(rawStatus_);
74 }
75
76 int ProcessReturnCode::killSignal() const {
77   enforce(KILLED);
78   return WTERMSIG(rawStatus_);
79 }
80
81 bool ProcessReturnCode::coreDumped() const {
82   enforce(KILLED);
83   return WCOREDUMP(rawStatus_);
84 }
85
86 std::string ProcessReturnCode::str() const {
87   switch (state()) {
88   case NOT_STARTED:
89     return "not started";
90   case RUNNING:
91     return "running";
92   case EXITED:
93     return to<std::string>("exited with status ", exitStatus());
94   case KILLED:
95     return to<std::string>("killed by signal ", killSignal(),
96                            (coreDumped() ? " (core dumped)" : ""));
97   }
98   CHECK(false);  // unreached
99 }
100
101 CalledProcessError::CalledProcessError(ProcessReturnCode rc)
102   : returnCode_(rc),
103     what_(returnCode_.str()) {
104 }
105
106 SubprocessSpawnError::SubprocessSpawnError(const char* executable,
107                                            int errCode,
108                                            int errnoValue)
109   : errnoValue_(errnoValue),
110     what_(to<std::string>(errCode == kExecFailure ?
111                             "failed to execute " :
112                             "error preparing to execute ",
113                           executable, ": ", errnoStr(errnoValue))) {
114 }
115
116 namespace {
117
118 // Copy pointers to the given strings in a format suitable for posix_spawn
119 std::unique_ptr<const char*[]> cloneStrings(const std::vector<std::string>& s) {
120   std::unique_ptr<const char*[]> d(new const char*[s.size() + 1]);
121   for (int i = 0; i < s.size(); i++) {
122     d[i] = s[i].c_str();
123   }
124   d[s.size()] = nullptr;
125   return d;
126 }
127
128 // Check a wait() status, throw on non-successful
129 void checkStatus(ProcessReturnCode returnCode) {
130   if (returnCode.state() != ProcessReturnCode::EXITED ||
131       returnCode.exitStatus() != 0) {
132     throw CalledProcessError(returnCode);
133   }
134 }
135
136 }  // namespace
137
138 Subprocess::Options& Subprocess::Options::fd(int fd, int action) {
139   if (action == Subprocess::PIPE) {
140     if (fd == 0) {
141       action = Subprocess::PIPE_IN;
142     } else if (fd == 1 || fd == 2) {
143       action = Subprocess::PIPE_OUT;
144     } else {
145       throw std::invalid_argument(
146           to<std::string>("Only fds 0, 1, 2 are valid for action=PIPE: ", fd));
147     }
148   }
149   fdActions_[fd] = action;
150   return *this;
151 }
152
153 Subprocess::Subprocess(
154     const std::vector<std::string>& argv,
155     const Options& options,
156     const char* executable,
157     const std::vector<std::string>* env)
158   : pid_(-1),
159     returnCode_(RV_NOT_STARTED) {
160   if (argv.empty()) {
161     throw std::invalid_argument("argv must not be empty");
162   }
163   if (!executable) executable = argv[0].c_str();
164   spawn(cloneStrings(argv), executable, options, env);
165 }
166
167 Subprocess::Subprocess(
168     const std::string& cmd,
169     const Options& options,
170     const std::vector<std::string>* env)
171   : pid_(-1),
172     returnCode_(RV_NOT_STARTED) {
173   if (options.usePath_) {
174     throw std::invalid_argument("usePath() not allowed when running in shell");
175   }
176   const char* shell = getenv("SHELL");
177   if (!shell) {
178     shell = "/bin/sh";
179   }
180
181   std::unique_ptr<const char*[]> argv(new const char*[4]);
182   argv[0] = shell;
183   argv[1] = "-c";
184   argv[2] = cmd.c_str();
185   argv[3] = nullptr;
186   spawn(std::move(argv), shell, options, env);
187 }
188
189 Subprocess::~Subprocess() {
190   CHECK_NE(returnCode_.state(), ProcessReturnCode::RUNNING)
191     << "Subprocess destroyed without reaping child";
192   closeAll();
193 }
194
195 namespace {
196 void closeChecked(int fd) {
197   checkUnixError(::close(fd), "close");
198 }
199
200 struct ChildErrorInfo {
201   int errCode;
202   int errnoValue;
203 };
204
205 FOLLY_NORETURN void childError(int errFd, int errCode, int errnoValue);
206 void childError(int errFd, int errCode, int errnoValue) {
207   ChildErrorInfo info = {errCode, errnoValue};
208   // Write the error information over the pipe to our parent process.
209   // We can't really do anything else if this write call fails.
210   writeNoInt(errFd, &info, sizeof(info));
211   // exit
212   _exit(errCode);
213 }
214
215 }  // namespace
216
217 void Subprocess::closeAll() {
218   for (auto& p : pipes_) {
219     closeChecked(p.parentFd);
220   }
221   pipes_.clear();
222 }
223
224 void Subprocess::setAllNonBlocking() {
225   for (auto& p : pipes_) {
226     int fd = p.parentFd;
227     int flags = ::fcntl(fd, F_GETFL);
228     checkUnixError(flags, "fcntl");
229     int r = ::fcntl(fd, F_SETFL, flags | O_NONBLOCK);
230     checkUnixError(r, "fcntl");
231   }
232 }
233
234 void Subprocess::spawn(
235     std::unique_ptr<const char*[]> argv,
236     const char* executable,
237     const Options& optionsIn,
238     const std::vector<std::string>* env) {
239   if (optionsIn.usePath_ && env) {
240     throw std::invalid_argument(
241         "usePath() not allowed when overriding environment");
242   }
243
244   // Make a copy, we'll mutate options
245   Options options(optionsIn);
246
247   // On error, close all of the pipes_
248   auto pipesGuard = makeGuard([&] {
249     for (auto& p : this->pipes_) {
250       CHECK_ERR(::close(p.parentFd));
251     }
252   });
253
254   // Create a pipe to use to receive error information from the child,
255   // in case it fails before calling exec()
256   int errFds[2];
257 #if FOLLY_HAVE_PIPE2
258   checkUnixError(::pipe2(errFds, O_CLOEXEC), "pipe2");
259 #else
260   checkUnixError(::pipe(errFds), "pipe");
261 #endif
262   SCOPE_EXIT {
263     CHECK_ERR(::close(errFds[0]));
264     if (errFds[1] >= 0) {
265       CHECK_ERR(::close(errFds[1]));
266     }
267   };
268
269 #if !FOLLY_HAVE_PIPE2
270   // Ask the child to close the read end of the error pipe.
271   checkUnixError(fcntl(errFds[0], F_SETFD, FD_CLOEXEC), "set FD_CLOEXEC");
272   // Set the close-on-exec flag on the write side of the pipe.
273   // This way the pipe will be closed automatically in the child if execve()
274   // succeeds.  If the exec fails the child can write error information to the
275   // pipe.
276   checkUnixError(fcntl(errFds[1], F_SETFD, FD_CLOEXEC), "set FD_CLOEXEC");
277 #endif
278
279   // Perform the actual work of setting up pipes then forking and
280   // executing the child.
281   spawnInternal(std::move(argv), executable, options, env, errFds[1]);
282
283   // After spawnInternal() returns the child is alive.  We have to be very
284   // careful about throwing after this point.  We are inside the constructor,
285   // so if we throw the Subprocess object will have never existed, and the
286   // destructor will never be called.
287   //
288   // We should only throw if we got an error via the errFd, and we know the
289   // child has exited and can be immediately waited for.  In all other cases,
290   // we have no way of cleaning up the child.
291
292   // Close writable side of the errFd pipe in the parent process
293   CHECK_ERR(::close(errFds[1]));
294   errFds[1] = -1;
295
296   // Read from the errFd pipe, to tell if the child ran into any errors before
297   // calling exec()
298   readChildErrorPipe(errFds[0], executable);
299
300   // We have fully succeeded now, so release the guard on pipes_
301   pipesGuard.dismiss();
302 }
303
304 void Subprocess::spawnInternal(
305     std::unique_ptr<const char*[]> argv,
306     const char* executable,
307     Options& options,
308     const std::vector<std::string>* env,
309     int errFd) {
310   // Parent work, pre-fork: create pipes
311   std::vector<int> childFds;
312   // Close all of the childFds as we leave this scope
313   SCOPE_EXIT {
314     // These are only pipes, closing them shouldn't fail
315     for (int cfd : childFds) {
316       CHECK_ERR(::close(cfd));
317     }
318   };
319
320   int r;
321   for (auto& p : options.fdActions_) {
322     if (p.second == PIPE_IN || p.second == PIPE_OUT) {
323       int fds[2];
324       // We're setting both ends of the pipe as close-on-exec. The child
325       // doesn't need to reset the flag on its end, as we always dup2() the fd,
326       // and dup2() fds don't share the close-on-exec flag.
327 #if FOLLY_HAVE_PIPE2
328       r = ::pipe2(fds, O_CLOEXEC);
329       checkUnixError(r, "pipe2");
330 #else
331       r = ::pipe(fds);
332       checkUnixError(r, "pipe");
333       r = fcntl(fds[0], F_SETFD, FD_CLOEXEC);
334       checkUnixError(r, "set FD_CLOEXEC");
335       r = fcntl(fds[1], F_SETFD, FD_CLOEXEC);
336       checkUnixError(r, "set FD_CLOEXEC");
337 #endif
338       PipeInfo pinfo;
339       pinfo.direction = p.second;
340       int cfd;
341       if (p.second == PIPE_IN) {
342         // Child gets reading end
343         pinfo.parentFd = fds[1];
344         cfd = fds[0];
345       } else {
346         pinfo.parentFd = fds[0];
347         cfd = fds[1];
348       }
349       p.second = cfd;  // ensure it gets dup2()ed
350       pinfo.childFd = p.first;
351       childFds.push_back(cfd);
352       pipes_.push_back(pinfo);
353     }
354   }
355
356   // This should already be sorted, as options.fdActions_ is
357   DCHECK(std::is_sorted(pipes_.begin(), pipes_.end()));
358
359   // Note that the const casts below are legit, per
360   // http://pubs.opengroup.org/onlinepubs/009695399/functions/exec.html
361
362   char** argVec = const_cast<char**>(argv.get());
363
364   // Set up environment
365   std::unique_ptr<const char*[]> envHolder;
366   char** envVec;
367   if (env) {
368     envHolder = cloneStrings(*env);
369     envVec = const_cast<char**>(envHolder.get());
370   } else {
371     envVec = environ;
372   }
373
374   // Block all signals around vfork; see http://ewontfix.com/7/.
375   //
376   // As the child may run in the same address space as the parent until
377   // the actual execve() system call, any (custom) signal handlers that
378   // the parent has might alter parent's memory if invoked in the child,
379   // with undefined results.  So we block all signals in the parent before
380   // vfork(), which will cause them to be blocked in the child as well (we
381   // rely on the fact that Linux, just like all sane implementations, only
382   // clones the calling thread).  Then, in the child, we reset all signals
383   // to their default dispositions (while still blocked), and unblock them
384   // (so the exec()ed process inherits the parent's signal mask)
385   //
386   // The parent also unblocks all signals as soon as vfork() returns.
387   sigset_t allBlocked;
388   r = sigfillset(&allBlocked);
389   checkUnixError(r, "sigfillset");
390   sigset_t oldSignals;
391
392   r = pthread_sigmask(SIG_SETMASK, &allBlocked, &oldSignals);
393   checkPosixError(r, "pthread_sigmask");
394   SCOPE_EXIT {
395     // Restore signal mask
396     r = pthread_sigmask(SIG_SETMASK, &oldSignals, nullptr);
397     CHECK_EQ(r, 0) << "pthread_sigmask: " << errnoStr(r);  // shouldn't fail
398   };
399
400   // Call c_str() here, as it's not necessarily safe after fork.
401   const char* childDir =
402     options.childDir_.empty() ? nullptr : options.childDir_.c_str();
403   pid_t pid = vfork();
404   if (pid == 0) {
405     int errnoValue = prepareChild(options, &oldSignals, childDir);
406     if (errnoValue != 0) {
407       childError(errFd, kChildFailure, errnoValue);
408     }
409
410     errnoValue = runChild(executable, argVec, envVec, options);
411     // If we get here, exec() failed.
412     childError(errFd, kExecFailure, errnoValue);
413   }
414   // In parent.  Make sure vfork() succeeded.
415   checkUnixError(pid, errno, "vfork");
416
417   // Child is alive.  We have to be very careful about throwing after this
418   // point.  We are inside the constructor, so if we throw the Subprocess
419   // object will have never existed, and the destructor will never be called.
420   //
421   // We should only throw if we got an error via the errFd, and we know the
422   // child has exited and can be immediately waited for.  In all other cases,
423   // we have no way of cleaning up the child.
424   pid_ = pid;
425   returnCode_ = ProcessReturnCode(RV_RUNNING);
426 }
427
428 int Subprocess::prepareChild(const Options& options,
429                              const sigset_t* sigmask,
430                              const char* childDir) const {
431   // While all signals are blocked, we must reset their
432   // dispositions to default.
433   for (int sig = 1; sig < NSIG; ++sig) {
434     ::signal(sig, SIG_DFL);
435   }
436
437   {
438     // Unblock signals; restore signal mask.
439     int r = pthread_sigmask(SIG_SETMASK, sigmask, nullptr);
440     if (r != 0) {
441       return r;  // pthread_sigmask() returns an errno value
442     }
443   }
444
445   // Change the working directory, if one is given
446   if (childDir) {
447     if (::chdir(childDir) == -1) {
448       return errno;
449     }
450   }
451
452   // We don't have to explicitly close the parent's end of all pipes,
453   // as they all have the FD_CLOEXEC flag set and will be closed at
454   // exec time.
455
456   // Close all fds that we're supposed to close.
457   for (auto& p : options.fdActions_) {
458     if (p.second == CLOSE) {
459       if (::close(p.first) == -1) {
460         return errno;
461       }
462     } else if (p.second != p.first) {
463       if (::dup2(p.second, p.first) == -1) {
464         return errno;
465       }
466     }
467   }
468
469   // If requested, close all other file descriptors.  Don't close
470   // any fds in options.fdActions_, and don't touch stdin, stdout, stderr.
471   // Ignore errors.
472   if (options.closeOtherFds_) {
473     for (int fd = getdtablesize() - 1; fd >= 3; --fd) {
474       if (options.fdActions_.count(fd) == 0) {
475         ::close(fd);
476       }
477     }
478   }
479
480 #if __linux__
481   // Opt to receive signal on parent death, if requested
482   if (options.parentDeathSignal_ != 0) {
483     if (prctl(PR_SET_PDEATHSIG, options.parentDeathSignal_, 0, 0, 0) == -1) {
484       return errno;
485     }
486   }
487 #endif
488
489   return 0;
490 }
491
492 int Subprocess::runChild(const char* executable,
493                          char** argv, char** env,
494                          const Options& options) const {
495   // Now, finally, exec.
496   if (options.usePath_) {
497     ::execvp(executable, argv);
498   } else {
499     ::execve(executable, argv, env);
500   }
501   return errno;
502 }
503
504 void Subprocess::readChildErrorPipe(int pfd, const char* executable) {
505   ChildErrorInfo info;
506   auto rc = readNoInt(pfd, &info, sizeof(info));
507   if (rc == 0) {
508     // No data means the child executed successfully, and the pipe
509     // was closed due to the close-on-exec flag being set.
510     return;
511   } else if (rc != sizeof(ChildErrorInfo)) {
512     // An error occurred trying to read from the pipe, or we got a partial read.
513     // Neither of these cases should really occur in practice.
514     //
515     // We can't get any error data from the child in this case, and we don't
516     // know if it is successfully running or not.  All we can do is to return
517     // normally, as if the child executed successfully.  If something bad
518     // happened the caller should at least get a non-normal exit status from
519     // the child.
520     LOG(ERROR) << "unexpected error trying to read from child error pipe " <<
521       "rc=" << rc << ", errno=" << errno;
522     return;
523   }
524
525   // We got error data from the child.  The child should exit immediately in
526   // this case, so wait on it to clean up.
527   wait();
528
529   // Throw to signal the error
530   throw SubprocessSpawnError(executable, info.errCode, info.errnoValue);
531 }
532
533 ProcessReturnCode Subprocess::poll() {
534   returnCode_.enforce(ProcessReturnCode::RUNNING);
535   DCHECK_GT(pid_, 0);
536   int status;
537   pid_t found = ::waitpid(pid_, &status, WNOHANG);
538   checkUnixError(found, "waitpid");
539   if (found != 0) {
540     returnCode_ = ProcessReturnCode(status);
541     pid_ = -1;
542   }
543   return returnCode_;
544 }
545
546 bool Subprocess::pollChecked() {
547   if (poll().state() == ProcessReturnCode::RUNNING) {
548     return false;
549   }
550   checkStatus(returnCode_);
551   return true;
552 }
553
554 ProcessReturnCode Subprocess::wait() {
555   returnCode_.enforce(ProcessReturnCode::RUNNING);
556   DCHECK_GT(pid_, 0);
557   int status;
558   pid_t found;
559   do {
560     found = ::waitpid(pid_, &status, 0);
561   } while (found == -1 && errno == EINTR);
562   checkUnixError(found, "waitpid");
563   DCHECK_EQ(found, pid_);
564   returnCode_ = ProcessReturnCode(status);
565   pid_ = -1;
566   return returnCode_;
567 }
568
569 void Subprocess::waitChecked() {
570   wait();
571   checkStatus(returnCode_);
572 }
573
574 void Subprocess::sendSignal(int signal) {
575   returnCode_.enforce(ProcessReturnCode::RUNNING);
576   int r = ::kill(pid_, signal);
577   checkUnixError(r, "kill");
578 }
579
580 pid_t Subprocess::pid() const {
581   return pid_;
582 }
583
584 namespace {
585
586 std::pair<const uint8_t*, size_t> queueFront(const IOBufQueue& queue) {
587   auto* p = queue.front();
588   if (!p) return std::make_pair(nullptr, 0);
589   return io::Cursor(p).peek();
590 }
591
592 // fd write
593 bool handleWrite(int fd, IOBufQueue& queue) {
594   for (;;) {
595     auto p = queueFront(queue);
596     if (p.second == 0) {
597       return true;  // EOF
598     }
599
600     ssize_t n = writeNoInt(fd, p.first, p.second);
601     if (n == -1 && errno == EAGAIN) {
602       return false;
603     }
604     checkUnixError(n, "write");
605     queue.trimStart(n);
606   }
607 }
608
609 // fd read
610 bool handleRead(int fd, IOBufQueue& queue) {
611   for (;;) {
612     auto p = queue.preallocate(100, 65000);
613     ssize_t n = readNoInt(fd, p.first, p.second);
614     if (n == -1 && errno == EAGAIN) {
615       return false;
616     }
617     checkUnixError(n, "read");
618     if (n == 0) {
619       return true;
620     }
621     queue.postallocate(n);
622   }
623 }
624
625 bool discardRead(int fd) {
626   static const size_t bufSize = 65000;
627   // Thread unsafe, but it doesn't matter.
628   static std::unique_ptr<char[]> buf(new char[bufSize]);
629
630   for (;;) {
631     ssize_t n = readNoInt(fd, buf.get(), bufSize);
632     if (n == -1 && errno == EAGAIN) {
633       return false;
634     }
635     checkUnixError(n, "read");
636     if (n == 0) {
637       return true;
638     }
639   }
640 }
641
642 }  // namespace
643
644 std::pair<std::string, std::string> Subprocess::communicate(
645     StringPiece input) {
646   IOBufQueue inputQueue;
647   inputQueue.wrapBuffer(input.data(), input.size());
648
649   auto outQueues = communicateIOBuf(std::move(inputQueue));
650   auto outBufs = std::make_pair(outQueues.first.move(),
651                                 outQueues.second.move());
652   std::pair<std::string, std::string> out;
653   if (outBufs.first) {
654     outBufs.first->coalesce();
655     out.first.assign(reinterpret_cast<const char*>(outBufs.first->data()),
656                      outBufs.first->length());
657   }
658   if (outBufs.second) {
659     outBufs.second->coalesce();
660     out.second.assign(reinterpret_cast<const char*>(outBufs.second->data()),
661                      outBufs.second->length());
662   }
663   return out;
664 }
665
666 std::pair<IOBufQueue, IOBufQueue> Subprocess::communicateIOBuf(
667     IOBufQueue input) {
668   // If the user supplied a non-empty input buffer, make sure
669   // that stdin is a pipe so we can write the data.
670   if (!input.empty()) {
671     // findByChildFd() will throw std::invalid_argument if no pipe for
672     // STDIN_FILENO exists
673     findByChildFd(STDIN_FILENO);
674   }
675
676   std::pair<IOBufQueue, IOBufQueue> out;
677
678   auto readCallback = [&] (int pfd, int cfd) -> bool {
679     if (cfd == STDOUT_FILENO) {
680       return handleRead(pfd, out.first);
681     } else if (cfd == STDERR_FILENO) {
682       return handleRead(pfd, out.second);
683     } else {
684       // Don't close the file descriptor, the child might not like SIGPIPE,
685       // just read and throw the data away.
686       return discardRead(pfd);
687     }
688   };
689
690   auto writeCallback = [&] (int pfd, int cfd) -> bool {
691     if (cfd == STDIN_FILENO) {
692       return handleWrite(pfd, input);
693     } else {
694       // If we don't want to write to this fd, just close it.
695       return true;
696     }
697   };
698
699   communicate(std::move(readCallback), std::move(writeCallback));
700
701   return out;
702 }
703
704 void Subprocess::communicate(FdCallback readCallback,
705                              FdCallback writeCallback) {
706   returnCode_.enforce(ProcessReturnCode::RUNNING);
707   setAllNonBlocking();
708
709   std::vector<pollfd> fds;
710   fds.reserve(pipes_.size());
711   std::vector<int> toClose;
712   toClose.reserve(pipes_.size());
713
714   while (!pipes_.empty()) {
715     fds.clear();
716     toClose.clear();
717
718     for (auto& p : pipes_) {
719       pollfd pfd;
720       pfd.fd = p.parentFd;
721       // Yes, backwards, PIPE_IN / PIPE_OUT are defined from the
722       // child's point of view.
723       if (!p.enabled) {
724         // Still keeping fd in watched set so we get notified of POLLHUP /
725         // POLLERR
726         pfd.events = 0;
727       } else if (p.direction == PIPE_IN) {
728         pfd.events = POLLOUT;
729       } else {
730         pfd.events = POLLIN;
731       }
732       fds.push_back(pfd);
733     }
734
735     int r;
736     do {
737       r = ::poll(fds.data(), fds.size(), -1);
738     } while (r == -1 && errno == EINTR);
739     checkUnixError(r, "poll");
740
741     for (int i = 0; i < pipes_.size(); ++i) {
742       auto& p = pipes_[i];
743       DCHECK_EQ(fds[i].fd, p.parentFd);
744       short events = fds[i].revents;
745
746       bool closed = false;
747       if (events & POLLOUT) {
748         DCHECK(!(events & POLLIN));
749         if (writeCallback(p.parentFd, p.childFd)) {
750           toClose.push_back(i);
751           closed = true;
752         }
753       }
754
755       // Call read callback on POLLHUP, to give it a chance to read (and act
756       // on) end of file
757       if (events & (POLLIN | POLLHUP)) {
758         DCHECK(!(events & POLLOUT));
759         if (readCallback(p.parentFd, p.childFd)) {
760           toClose.push_back(i);
761           closed = true;
762         }
763       }
764
765       if ((events & (POLLHUP | POLLERR)) && !closed) {
766         toClose.push_back(i);
767         closed = true;
768       }
769     }
770
771     // Close the fds in reverse order so the indexes hold after erase()
772     for (int idx : boost::adaptors::reverse(toClose)) {
773       auto pos = pipes_.begin() + idx;
774       closeChecked(pos->parentFd);
775       pipes_.erase(pos);
776     }
777   }
778 }
779
780 void Subprocess::enableNotifications(int childFd, bool enabled) {
781   pipes_[findByChildFd(childFd)].enabled = enabled;
782 }
783
784 bool Subprocess::notificationsEnabled(int childFd) const {
785   return pipes_[findByChildFd(childFd)].enabled;
786 }
787
788 int Subprocess::findByChildFd(int childFd) const {
789   auto pos = std::lower_bound(
790       pipes_.begin(), pipes_.end(), childFd,
791       [] (const PipeInfo& info, int fd) { return info.childFd < fd; });
792   if (pos == pipes_.end() || pos->childFd != childFd) {
793     throw std::invalid_argument(folly::to<std::string>(
794         "child fd not found ", childFd));
795   }
796   return pos - pipes_.begin();
797 }
798
799 void Subprocess::closeParentFd(int childFd) {
800   int idx = findByChildFd(childFd);
801   closeChecked(pipes_[idx].parentFd);
802   pipes_.erase(pipes_.begin() + idx);
803 }
804
805 namespace {
806
807 class Initializer {
808  public:
809   Initializer() {
810     // We like EPIPE, thanks.
811     ::signal(SIGPIPE, SIG_IGN);
812   }
813 };
814
815 Initializer initializer;
816
817 }  // namespace
818
819 }  // namespace folly