| OLD | NEW | 
|---|
| (Empty) |  | 
|  | 1 // Copyright 2014 The Crashpad 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 #include "util/posix/close_stdio.h" | 
|  | 16 | 
|  | 17 #include <fcntl.h> | 
|  | 18 #include <paths.h> | 
|  | 19 #include <unistd.h> | 
|  | 20 | 
|  | 21 #include "base/basictypes.h" | 
|  | 22 #include "base/files/scoped_file.h" | 
|  | 23 #include "base/logging.h" | 
|  | 24 #include "base/posix/eintr_wrapper.h" | 
|  | 25 | 
|  | 26 namespace crashpad { | 
|  | 27 | 
|  | 28 namespace { | 
|  | 29 | 
|  | 30 void CloseStdioStream(int desired_fd, int oflag) { | 
|  | 31   base::ScopedFD fd(HANDLE_EINTR(open(_PATH_DEVNULL, oflag))); | 
|  | 32   if (fd == desired_fd) { | 
|  | 33     // Weird, but play along. | 
|  | 34     ignore_result(fd.release()); | 
|  | 35   } else { | 
|  | 36     PCHECK(fd.get() >= 0) << "open"; | 
|  | 37     PCHECK(HANDLE_EINTR(dup2(fd.get(), desired_fd)) != -1) << "dup2"; | 
|  | 38     fd.reset(); | 
|  | 39   } | 
|  | 40 } | 
|  | 41 | 
|  | 42 }  // namespace | 
|  | 43 | 
|  | 44 void CloseStdinAndStdout() { | 
|  | 45   // Open /dev/null for stdin and stdout separately, so that it can be opened | 
|  | 46   // with the correct mode each time. This ensures that attempts to write to | 
|  | 47   // stdin or read from stdout fail with EBADF. | 
|  | 48   CloseStdioStream(STDIN_FILENO, O_RDONLY); | 
|  | 49   CloseStdioStream(STDOUT_FILENO, O_WRONLY); | 
|  | 50 } | 
|  | 51 | 
|  | 52 }  // namespace crashpad | 
| OLD | NEW | 
|---|