| Alex Deymo | aea4c1c | 2015-08-19 20:24:43 -0700 | [diff] [blame] | 1 | // | 
 | 2 | // Copyright (C) 2012 The Android Open Source Project | 
 | 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 | // | 
| adlr@google.com | 3defe6a | 2009-12-04 20:57:17 +0000 | [diff] [blame] | 16 |  | 
| Alex Deymo | 39910dc | 2015-11-09 17:04:30 -0800 | [diff] [blame] | 17 | #include "update_engine/common/subprocess.h" | 
| Alex Deymo | aab50e3 | 2014-11-10 19:55:35 -0800 | [diff] [blame] | 18 |  | 
| Alex Deymo | 5d52780 | 2014-07-18 14:24:13 -0700 | [diff] [blame] | 19 | #include <fcntl.h> | 
| Gilad Arnold | b6c562a | 2013-07-01 02:19:26 -0700 | [diff] [blame] | 20 | #include <poll.h> | 
| adlr@google.com | 3defe6a | 2009-12-04 20:57:17 +0000 | [diff] [blame] | 21 | #include <sys/types.h> | 
 | 22 | #include <unistd.h> | 
| Gilad Arnold | 8e3f126 | 2013-01-08 14:59:54 -0800 | [diff] [blame] | 23 |  | 
| Alex Deymo | 461b259 | 2015-07-24 20:10:52 -0700 | [diff] [blame] | 24 | #include <set> | 
| adlr@google.com | 3defe6a | 2009-12-04 20:57:17 +0000 | [diff] [blame] | 25 | #include <string> | 
 | 26 | #include <vector> | 
| Gilad Arnold | 8e3f126 | 2013-01-08 14:59:54 -0800 | [diff] [blame] | 27 |  | 
| Alex Deymo | 60ca1a7 | 2015-06-18 18:19:15 -0700 | [diff] [blame] | 28 | #include <base/bind.h> | 
| Alex Deymo | 279bbab | 2016-02-12 16:26:17 -0800 | [diff] [blame] | 29 | #include <base/files/scoped_temp_dir.h> | 
| Alex Deymo | 60ca1a7 | 2015-06-18 18:19:15 -0700 | [diff] [blame] | 30 | #include <base/location.h> | 
| Qijiang Fan | b0b6cc2 | 2020-10-15 21:54:11 +0900 | [diff] [blame] | 31 | #if BASE_VER < 780000  // Android | 
| Alex Deymo | 0b3db6b | 2015-08-10 15:19:37 -0700 | [diff] [blame] | 32 | #include <base/message_loop/message_loop.h> | 
| Qijiang Fan | b0b6cc2 | 2020-10-15 21:54:11 +0900 | [diff] [blame] | 33 | #endif  // BASE_VER < 780000 | 
| Alex Vakulenko | 75039d7 | 2014-03-25 12:36:28 -0700 | [diff] [blame] | 34 | #include <base/strings/string_util.h> | 
 | 35 | #include <base/strings/stringprintf.h> | 
| Qijiang Fan | b0b6cc2 | 2020-10-15 21:54:11 +0900 | [diff] [blame] | 36 | #if BASE_VER >= 780000  // Chrome OS | 
 | 37 | #include <base/task/single_thread_task_executor.h> | 
 | 38 | #endif  // BASE_VER >= 780000 | 
| Alex Vakulenko | 75039d7 | 2014-03-25 12:36:28 -0700 | [diff] [blame] | 39 | #include <base/time/time.h> | 
| Alex Vakulenko | 3f39d5c | 2015-10-13 09:27:13 -0700 | [diff] [blame] | 40 | #include <brillo/message_loops/base_message_loop.h> | 
 | 41 | #include <brillo/message_loops/message_loop.h> | 
 | 42 | #include <brillo/message_loops/message_loop_utils.h> | 
 | 43 | #include <brillo/strings/string_utils.h> | 
| Alex Deymo | e384bb2 | 2016-03-29 17:23:33 -0700 | [diff] [blame] | 44 | #include <brillo/unittest_utils.h> | 
| adlr@google.com | 3defe6a | 2009-12-04 20:57:17 +0000 | [diff] [blame] | 45 | #include <gtest/gtest.h> | 
| Gilad Arnold | 8e3f126 | 2013-01-08 14:59:54 -0800 | [diff] [blame] | 46 |  | 
| Alex Deymo | 39910dc | 2015-11-09 17:04:30 -0800 | [diff] [blame] | 47 | #include "update_engine/common/test_utils.h" | 
 | 48 | #include "update_engine/common/utils.h" | 
| adlr@google.com | 3defe6a | 2009-12-04 20:57:17 +0000 | [diff] [blame] | 49 |  | 
| Gilad Arnold | 8e3f126 | 2013-01-08 14:59:54 -0800 | [diff] [blame] | 50 | using base::TimeDelta; | 
| Alex Vakulenko | 3f39d5c | 2015-10-13 09:27:13 -0700 | [diff] [blame] | 51 | using brillo::MessageLoop; | 
| adlr@google.com | 3defe6a | 2009-12-04 20:57:17 +0000 | [diff] [blame] | 52 | using std::string; | 
| Qijiang Fan | 6955bcc | 2019-11-19 20:33:43 +0900 | [diff] [blame] | 53 | using std::unique_ptr; | 
| adlr@google.com | 3defe6a | 2009-12-04 20:57:17 +0000 | [diff] [blame] | 54 | using std::vector; | 
 | 55 |  | 
| Alex Deymo | 279bbab | 2016-02-12 16:26:17 -0800 | [diff] [blame] | 56 | namespace { | 
 | 57 |  | 
 | 58 | #ifdef __ANDROID__ | 
 | 59 | #define kBinPath "/system/bin" | 
 | 60 | #define kUsrBinPath "/system/bin" | 
 | 61 | #else | 
 | 62 | #define kBinPath "/bin" | 
 | 63 | #define kUsrBinPath "/usr/bin" | 
 | 64 | #endif  // __ANDROID__ | 
 | 65 |  | 
 | 66 | }  // namespace | 
 | 67 |  | 
| adlr@google.com | 3defe6a | 2009-12-04 20:57:17 +0000 | [diff] [blame] | 68 | namespace chromeos_update_engine { | 
 | 69 |  | 
 | 70 | class SubprocessTest : public ::testing::Test { | 
 | 71 |  protected: | 
| Alex Deymo | 60ca1a7 | 2015-06-18 18:19:15 -0700 | [diff] [blame] | 72 |   void SetUp() override { | 
 | 73 |     loop_.SetAsCurrent(); | 
| Alex Deymo | b7ca096 | 2014-10-01 17:58:07 -0700 | [diff] [blame] | 74 |     async_signal_handler_.Init(); | 
 | 75 |     subprocess_.Init(&async_signal_handler_); | 
| Alex Deymo | 60ca1a7 | 2015-06-18 18:19:15 -0700 | [diff] [blame] | 76 |   } | 
 | 77 |  | 
| Qijiang Fan | b0b6cc2 | 2020-10-15 21:54:11 +0900 | [diff] [blame] | 78 | #if BASE_VER < 780000  // Android | 
| Alex Deymo | 0b3db6b | 2015-08-10 15:19:37 -0700 | [diff] [blame] | 79 |   base::MessageLoopForIO base_loop_; | 
| Alex Vakulenko | 3f39d5c | 2015-10-13 09:27:13 -0700 | [diff] [blame] | 80 |   brillo::BaseMessageLoop loop_{&base_loop_}; | 
| Qijiang Fan | b0b6cc2 | 2020-10-15 21:54:11 +0900 | [diff] [blame] | 81 | #else   // Chrome OS | 
 | 82 |   base::SingleThreadTaskExecutor base_loop_{base::MessagePumpType::IO}; | 
 | 83 |   brillo::BaseMessageLoop loop_{base_loop_.task_runner()}; | 
 | 84 | #endif  // BASE_VER < 780000 | 
| Alex Vakulenko | 3f39d5c | 2015-10-13 09:27:13 -0700 | [diff] [blame] | 85 |   brillo::AsynchronousSignalHandler async_signal_handler_; | 
| Alex Deymo | 461b259 | 2015-07-24 20:10:52 -0700 | [diff] [blame] | 86 |   Subprocess subprocess_; | 
| Qijiang Fan | 6955bcc | 2019-11-19 20:33:43 +0900 | [diff] [blame] | 87 |   unique_ptr<base::FileDescriptorWatcher::Controller> watcher_; | 
| adlr@google.com | 3defe6a | 2009-12-04 20:57:17 +0000 | [diff] [blame] | 88 | }; | 
 | 89 |  | 
 | 90 | namespace { | 
| Alex Deymo | 461b259 | 2015-07-24 20:10:52 -0700 | [diff] [blame] | 91 |  | 
| Amin Hassani | b268959 | 2019-01-13 17:04:28 -0800 | [diff] [blame] | 92 | void ExpectedResults(int expected_return_code, | 
 | 93 |                      const string& expected_output, | 
 | 94 |                      int return_code, | 
 | 95 |                      const string& output) { | 
| Alex Deymo | 461b259 | 2015-07-24 20:10:52 -0700 | [diff] [blame] | 96 |   EXPECT_EQ(expected_return_code, return_code); | 
 | 97 |   EXPECT_EQ(expected_output, output); | 
| Alex Deymo | 60ca1a7 | 2015-06-18 18:19:15 -0700 | [diff] [blame] | 98 |   MessageLoop::current()->BreakLoop(); | 
| adlr@google.com | 3defe6a | 2009-12-04 20:57:17 +0000 | [diff] [blame] | 99 | } | 
 | 100 |  | 
| Alex Deymo | 461b259 | 2015-07-24 20:10:52 -0700 | [diff] [blame] | 101 | void ExpectedEnvVars(int return_code, const string& output) { | 
| Darin Petkov | 6f03a3b | 2010-11-10 14:27:14 -0800 | [diff] [blame] | 102 |   EXPECT_EQ(0, return_code); | 
| Alex Deymo | 461b259 | 2015-07-24 20:10:52 -0700 | [diff] [blame] | 103 |   const std::set<string> allowed_envs = {"LD_LIBRARY_PATH", "PATH"}; | 
| Chih-Hung Hsieh | 5c6bb1d | 2016-07-27 13:33:15 -0700 | [diff] [blame] | 104 |   for (const string& key_value : brillo::string_utils::Split(output, "\n")) { | 
| Amin Hassani | b268959 | 2019-01-13 17:04:28 -0800 | [diff] [blame] | 105 |     auto key_value_pair = | 
 | 106 |         brillo::string_utils::SplitAtFirst(key_value, "=", true); | 
| Alex Deymo | 461b259 | 2015-07-24 20:10:52 -0700 | [diff] [blame] | 107 |     EXPECT_NE(allowed_envs.end(), allowed_envs.find(key_value_pair.first)); | 
 | 108 |   } | 
| Alex Deymo | 29b8153 | 2015-07-09 11:51:49 -0700 | [diff] [blame] | 109 |   MessageLoop::current()->BreakLoop(); | 
 | 110 | } | 
 | 111 |  | 
| Alex Deymo | e384bb2 | 2016-03-29 17:23:33 -0700 | [diff] [blame] | 112 | void ExpectedDataOnPipe(const Subprocess* subprocess, | 
 | 113 |                         pid_t* pid, | 
 | 114 |                         int child_fd, | 
 | 115 |                         const string& child_fd_data, | 
 | 116 |                         int expected_return_code, | 
 | 117 |                         int return_code, | 
 | 118 |                         const string& /* output */) { | 
 | 119 |   EXPECT_EQ(expected_return_code, return_code); | 
 | 120 |  | 
 | 121 |   // Verify that we can read the data from our end of |child_fd|. | 
 | 122 |   int fd = subprocess->GetPipeFd(*pid, child_fd); | 
 | 123 |   EXPECT_NE(-1, fd); | 
 | 124 |   vector<char> buf(child_fd_data.size() + 1); | 
 | 125 |   EXPECT_EQ(static_cast<ssize_t>(child_fd_data.size()), | 
 | 126 |             HANDLE_EINTR(read(fd, buf.data(), buf.size()))); | 
 | 127 |   EXPECT_EQ(child_fd_data, | 
 | 128 |             string(buf.begin(), buf.begin() + child_fd_data.size())); | 
 | 129 |  | 
 | 130 |   MessageLoop::current()->BreakLoop(); | 
 | 131 | } | 
 | 132 |  | 
| Alex Vakulenko | d2779df | 2014-06-16 13:19:00 -0700 | [diff] [blame] | 133 | }  // namespace | 
| adlr@google.com | 3defe6a | 2009-12-04 20:57:17 +0000 | [diff] [blame] | 134 |  | 
| Alex Deymo | 461b259 | 2015-07-24 20:10:52 -0700 | [diff] [blame] | 135 | TEST_F(SubprocessTest, IsASingleton) { | 
 | 136 |   EXPECT_EQ(&subprocess_, &Subprocess::Get()); | 
 | 137 | } | 
 | 138 |  | 
 | 139 | TEST_F(SubprocessTest, InactiveInstancesDontChangeTheSingleton) { | 
 | 140 |   std::unique_ptr<Subprocess> another_subprocess(new Subprocess()); | 
 | 141 |   EXPECT_EQ(&subprocess_, &Subprocess::Get()); | 
 | 142 |   another_subprocess.reset(); | 
 | 143 |   EXPECT_EQ(&subprocess_, &Subprocess::Get()); | 
 | 144 | } | 
 | 145 |  | 
| Alex Deymo | 60ca1a7 | 2015-06-18 18:19:15 -0700 | [diff] [blame] | 146 | TEST_F(SubprocessTest, SimpleTest) { | 
| Alex Deymo | 279bbab | 2016-02-12 16:26:17 -0800 | [diff] [blame] | 147 |   EXPECT_TRUE(subprocess_.Exec({kBinPath "/false"}, | 
| Alex Deymo | 461b259 | 2015-07-24 20:10:52 -0700 | [diff] [blame] | 148 |                                base::Bind(&ExpectedResults, 1, ""))); | 
| Alex Deymo | 60ca1a7 | 2015-06-18 18:19:15 -0700 | [diff] [blame] | 149 |   loop_.Run(); | 
| adlr@google.com | 3defe6a | 2009-12-04 20:57:17 +0000 | [diff] [blame] | 150 | } | 
 | 151 |  | 
| Alex Deymo | 60ca1a7 | 2015-06-18 18:19:15 -0700 | [diff] [blame] | 152 | TEST_F(SubprocessTest, EchoTest) { | 
| Alex Deymo | 461b259 | 2015-07-24 20:10:52 -0700 | [diff] [blame] | 153 |   EXPECT_TRUE(subprocess_.Exec( | 
| Alex Deymo | 279bbab | 2016-02-12 16:26:17 -0800 | [diff] [blame] | 154 |       {kBinPath "/sh", "-c", "echo this is stdout; echo this is stderr >&2"}, | 
| Alex Deymo | 461b259 | 2015-07-24 20:10:52 -0700 | [diff] [blame] | 155 |       base::Bind(&ExpectedResults, 0, "this is stdout\nthis is stderr\n"))); | 
| Alex Deymo | 29b8153 | 2015-07-09 11:51:49 -0700 | [diff] [blame] | 156 |   loop_.Run(); | 
 | 157 | } | 
 | 158 |  | 
 | 159 | TEST_F(SubprocessTest, StderrNotIncludedInOutputTest) { | 
| Alex Deymo | 461b259 | 2015-07-24 20:10:52 -0700 | [diff] [blame] | 160 |   EXPECT_TRUE(subprocess_.ExecFlags( | 
| Alex Deymo | 279bbab | 2016-02-12 16:26:17 -0800 | [diff] [blame] | 161 |       {kBinPath "/sh", "-c", "echo on stdout; echo on stderr >&2"}, | 
| Alex Deymo | 461b259 | 2015-07-24 20:10:52 -0700 | [diff] [blame] | 162 |       0, | 
| Alex Deymo | e384bb2 | 2016-03-29 17:23:33 -0700 | [diff] [blame] | 163 |       {}, | 
| Alex Deymo | 461b259 | 2015-07-24 20:10:52 -0700 | [diff] [blame] | 164 |       base::Bind(&ExpectedResults, 0, "on stdout\n"))); | 
| Alex Deymo | 60ca1a7 | 2015-06-18 18:19:15 -0700 | [diff] [blame] | 165 |   loop_.Run(); | 
| Darin Petkov | 6f03a3b | 2010-11-10 14:27:14 -0800 | [diff] [blame] | 166 | } | 
 | 167 |  | 
| Alex Deymo | e384bb2 | 2016-03-29 17:23:33 -0700 | [diff] [blame] | 168 | TEST_F(SubprocessTest, PipeRedirectFdTest) { | 
 | 169 |   pid_t pid; | 
 | 170 |   pid = subprocess_.ExecFlags( | 
 | 171 |       {kBinPath "/sh", "-c", "echo on pipe >&3"}, | 
 | 172 |       0, | 
 | 173 |       {3}, | 
 | 174 |       base::Bind(&ExpectedDataOnPipe, &subprocess_, &pid, 3, "on pipe\n", 0)); | 
 | 175 |   EXPECT_NE(0, pid); | 
 | 176 |  | 
 | 177 |   // Wrong file descriptor values should return -1. | 
 | 178 |   EXPECT_EQ(-1, subprocess_.GetPipeFd(pid, 123)); | 
 | 179 |   loop_.Run(); | 
 | 180 |   // Calling GetPipeFd() after the callback runs is invalid. | 
 | 181 |   EXPECT_EQ(-1, subprocess_.GetPipeFd(pid, 3)); | 
 | 182 | } | 
 | 183 |  | 
 | 184 | // Test that a pipe file descriptor open in the parent is not open in the child. | 
 | 185 | TEST_F(SubprocessTest, PipeClosedWhenNotRedirectedTest) { | 
 | 186 |   brillo::ScopedPipe pipe; | 
| Alex Deymo | 279d572 | 2016-04-07 16:22:13 -0700 | [diff] [blame] | 187 |  | 
 | 188 |   // test_subprocess will return with the errno of fstat, which should be EBADF | 
 | 189 |   // if the passed file descriptor is closed in the child. | 
 | 190 |   const vector<string> cmd = { | 
 | 191 |       test_utils::GetBuildArtifactsPath("test_subprocess"), | 
 | 192 |       "fstat", | 
 | 193 |       std::to_string(pipe.writer)}; | 
| Alex Deymo | e384bb2 | 2016-03-29 17:23:33 -0700 | [diff] [blame] | 194 |   EXPECT_TRUE(subprocess_.ExecFlags( | 
| Alex Deymo | 279d572 | 2016-04-07 16:22:13 -0700 | [diff] [blame] | 195 |       cmd, 0, {}, base::Bind(&ExpectedResults, EBADF, ""))); | 
| Alex Deymo | e384bb2 | 2016-03-29 17:23:33 -0700 | [diff] [blame] | 196 |   loop_.Run(); | 
 | 197 | } | 
 | 198 |  | 
| Alex Deymo | 461b259 | 2015-07-24 20:10:52 -0700 | [diff] [blame] | 199 | TEST_F(SubprocessTest, EnvVarsAreFiltered) { | 
| Alex Deymo | 279bbab | 2016-02-12 16:26:17 -0800 | [diff] [blame] | 200 |   EXPECT_TRUE( | 
 | 201 |       subprocess_.Exec({kUsrBinPath "/env"}, base::Bind(&ExpectedEnvVars))); | 
| Alex Deymo | 461b259 | 2015-07-24 20:10:52 -0700 | [diff] [blame] | 202 |   loop_.Run(); | 
 | 203 | } | 
 | 204 |  | 
 | 205 | TEST_F(SubprocessTest, SynchronousTrueSearchsOnPath) { | 
 | 206 |   int rc = -1; | 
 | 207 |   EXPECT_TRUE(Subprocess::SynchronousExecFlags( | 
| Amin Hassani | 3a4caa1 | 2019-11-06 11:12:28 -0800 | [diff] [blame] | 208 |       {"true"}, Subprocess::kSearchPath, &rc, nullptr, nullptr)); | 
| Alex Deymo | 461b259 | 2015-07-24 20:10:52 -0700 | [diff] [blame] | 209 |   EXPECT_EQ(0, rc); | 
 | 210 | } | 
 | 211 |  | 
| Alex Deymo | 60ca1a7 | 2015-06-18 18:19:15 -0700 | [diff] [blame] | 212 | TEST_F(SubprocessTest, SynchronousEchoTest) { | 
 | 213 |   vector<string> cmd = { | 
| Amin Hassani | b268959 | 2019-01-13 17:04:28 -0800 | [diff] [blame] | 214 |       kBinPath "/sh", "-c", "echo -n stdout-here; echo -n stderr-there >&2"}; | 
| Darin Petkov | 85d02b7 | 2011-05-17 13:25:51 -0700 | [diff] [blame] | 215 |   int rc = -1; | 
| Amin Hassani | 3a4caa1 | 2019-11-06 11:12:28 -0800 | [diff] [blame] | 216 |   string stdout, stderr; | 
 | 217 |   ASSERT_TRUE(Subprocess::SynchronousExec(cmd, &rc, &stdout, &stderr)); | 
| Darin Petkov | 85d02b7 | 2011-05-17 13:25:51 -0700 | [diff] [blame] | 218 |   EXPECT_EQ(0, rc); | 
| Amin Hassani | 3a4caa1 | 2019-11-06 11:12:28 -0800 | [diff] [blame] | 219 |   EXPECT_EQ("stdout-here", stdout); | 
 | 220 |   EXPECT_EQ("stderr-there", stderr); | 
| Darin Petkov | 85d02b7 | 2011-05-17 13:25:51 -0700 | [diff] [blame] | 221 | } | 
 | 222 |  | 
| Alex Deymo | 60ca1a7 | 2015-06-18 18:19:15 -0700 | [diff] [blame] | 223 | TEST_F(SubprocessTest, SynchronousEchoNoOutputTest) { | 
| Darin Petkov | 85d02b7 | 2011-05-17 13:25:51 -0700 | [diff] [blame] | 224 |   int rc = -1; | 
| Alex Deymo | 461b259 | 2015-07-24 20:10:52 -0700 | [diff] [blame] | 225 |   ASSERT_TRUE(Subprocess::SynchronousExec( | 
| Amin Hassani | 3a4caa1 | 2019-11-06 11:12:28 -0800 | [diff] [blame] | 226 |       {kBinPath "/sh", "-c", "echo test"}, &rc, nullptr, nullptr)); | 
| Darin Petkov | 85d02b7 | 2011-05-17 13:25:51 -0700 | [diff] [blame] | 227 |   EXPECT_EQ(0, rc); | 
 | 228 | } | 
 | 229 |  | 
| adlr@google.com | 3defe6a | 2009-12-04 20:57:17 +0000 | [diff] [blame] | 230 | namespace { | 
| Alex Deymo | 461b259 | 2015-07-24 20:10:52 -0700 | [diff] [blame] | 231 | void CallbackBad(int return_code, const string& output) { | 
 | 232 |   ADD_FAILURE() << "should never be called."; | 
| adlr@google.com | 3defe6a | 2009-12-04 20:57:17 +0000 | [diff] [blame] | 233 | } | 
| Alex Deymo | 60ca1a7 | 2015-06-18 18:19:15 -0700 | [diff] [blame] | 234 | }  // namespace | 
 | 235 |  | 
| Alex Deymo | 279bbab | 2016-02-12 16:26:17 -0800 | [diff] [blame] | 236 | // Test that you can cancel a program that's already running. | 
| Alex Deymo | 60ca1a7 | 2015-06-18 18:19:15 -0700 | [diff] [blame] | 237 | TEST_F(SubprocessTest, CancelTest) { | 
| Alex Deymo | 279bbab | 2016-02-12 16:26:17 -0800 | [diff] [blame] | 238 |   base::ScopedTempDir tempdir; | 
 | 239 |   ASSERT_TRUE(tempdir.CreateUniqueTempDir()); | 
| Hidehiko Abe | 2b9d241 | 2017-12-13 18:56:18 +0900 | [diff] [blame] | 240 |   string fifo_path = tempdir.GetPath().Append("fifo").value(); | 
| Alex Deymo | 279bbab | 2016-02-12 16:26:17 -0800 | [diff] [blame] | 241 |   EXPECT_EQ(0, mkfifo(fifo_path.c_str(), 0666)); | 
 | 242 |  | 
 | 243 |   // Start a process, make sure it is running and try to cancel it. We write | 
 | 244 |   // two bytes to the fifo, the first one marks that the program is running and | 
 | 245 |   // the second one marks that the process waited for a timeout and was not | 
 | 246 |   // killed. We should read the first byte but not the second one. | 
 | 247 |   vector<string> cmd = { | 
 | 248 |       kBinPath "/sh", | 
 | 249 |       "-c", | 
 | 250 |       base::StringPrintf( | 
| Ben Chan | 70a2119 | 2017-01-10 19:56:50 -0800 | [diff] [blame] | 251 |           // The 'sleep' launched below could be left behind as an orphaned | 
 | 252 |           // process when the 'sh' process is terminated by SIGTERM. As a | 
 | 253 |           // remedy, trap SIGTERM and kill the 'sleep' process, which requires | 
 | 254 |           // launching 'sleep' in background and then waiting for it. | 
 | 255 |           "cleanup() { kill \"${sleep_pid}\"; exit 0; }; " | 
 | 256 |           "trap cleanup TERM; " | 
 | 257 |           "sleep 60 & " | 
 | 258 |           "sleep_pid=$!; " | 
 | 259 |           "printf X >\"%s\"; " | 
 | 260 |           "wait; " | 
 | 261 |           "printf Y >\"%s\"; " | 
 | 262 |           "exit 1", | 
| Alex Deymo | 279bbab | 2016-02-12 16:26:17 -0800 | [diff] [blame] | 263 |           fifo_path.c_str(), | 
 | 264 |           fifo_path.c_str())}; | 
 | 265 |   uint32_t tag = Subprocess::Get().Exec(cmd, base::Bind(&CallbackBad)); | 
 | 266 |   EXPECT_NE(0U, tag); | 
 | 267 |  | 
 | 268 |   int fifo_fd = HANDLE_EINTR(open(fifo_path.c_str(), O_RDONLY)); | 
 | 269 |   EXPECT_GE(fifo_fd, 0); | 
 | 270 |  | 
| Qijiang Fan | 6955bcc | 2019-11-19 20:33:43 +0900 | [diff] [blame] | 271 |   watcher_ = base::FileDescriptorWatcher::WatchReadable( | 
 | 272 |       fifo_fd, | 
 | 273 |       base::Bind( | 
| Kelvin Zhang | 1e92631 | 2023-09-27 18:10:25 -0700 | [diff] [blame] | 274 |           [](brillo::BaseMessageLoop* loop, | 
 | 275 |              unique_ptr<base::FileDescriptorWatcher::Controller>* watcher, | 
| Qijiang Fan | 6955bcc | 2019-11-19 20:33:43 +0900 | [diff] [blame] | 276 |              int fifo_fd, | 
 | 277 |              uint32_t tag) { | 
| Kelvin Zhang | 1e92631 | 2023-09-27 18:10:25 -0700 | [diff] [blame] | 278 |             char c{}; | 
| Qijiang Fan | 6955bcc | 2019-11-19 20:33:43 +0900 | [diff] [blame] | 279 |             EXPECT_EQ(1, HANDLE_EINTR(read(fifo_fd, &c, 1))); | 
 | 280 |             EXPECT_EQ('X', c); | 
 | 281 |             LOG(INFO) << "Killing tag " << tag; | 
 | 282 |             Subprocess::Get().KillExec(tag); | 
| Kelvin Zhang | 1e92631 | 2023-09-27 18:10:25 -0700 | [diff] [blame] | 283 |             loop->BreakLoop(); | 
 | 284 |             ASSERT_TRUE(Subprocess::Get().subprocess_records_.empty()); | 
| Qijiang Fan | 6955bcc | 2019-11-19 20:33:43 +0900 | [diff] [blame] | 285 |             *watcher = nullptr; | 
 | 286 |           }, | 
| Kelvin Zhang | 1e92631 | 2023-09-27 18:10:25 -0700 | [diff] [blame] | 287 |           &loop_, | 
| Qijiang Fan | 6955bcc | 2019-11-19 20:33:43 +0900 | [diff] [blame] | 288 |           // watcher_ is no longer used outside the clousure. | 
 | 289 |           base::Unretained(&watcher_), | 
 | 290 |           fifo_fd, | 
 | 291 |           tag)); | 
| Alex Deymo | 279bbab | 2016-02-12 16:26:17 -0800 | [diff] [blame] | 292 |  | 
| Alex Deymo | 60ca1a7 | 2015-06-18 18:19:15 -0700 | [diff] [blame] | 293 |   // This test would leak a callback that runs when the child process exits | 
 | 294 |   // unless we wait for it to run. | 
| Alex Vakulenko | 3f39d5c | 2015-10-13 09:27:13 -0700 | [diff] [blame] | 295 |   brillo::MessageLoopRunUntil( | 
| Qijiang Fan | 15a6ead | 2020-07-25 17:19:49 +0900 | [diff] [blame] | 296 |       &loop_, TimeDelta::FromSeconds(20), base::Bind([] { | 
| Amin Hassani | b268959 | 2019-01-13 17:04:28 -0800 | [diff] [blame] | 297 |         return Subprocess::Get().subprocess_records_.empty(); | 
 | 298 |       })); | 
| Alex Deymo | 279bbab | 2016-02-12 16:26:17 -0800 | [diff] [blame] | 299 |   EXPECT_TRUE(Subprocess::Get().subprocess_records_.empty()); | 
 | 300 |   // Check that there isn't anything else to read from the pipe. | 
 | 301 |   char c; | 
 | 302 |   EXPECT_EQ(0, HANDLE_EINTR(read(fifo_fd, &c, 1))); | 
 | 303 |   IGNORE_EINTR(close(fifo_fd)); | 
| adlr@google.com | 3defe6a | 2009-12-04 20:57:17 +0000 | [diff] [blame] | 304 | } | 
 | 305 |  | 
 | 306 | }  // namespace chromeos_update_engine |