1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "chrome/browser/process_singleton.h"
17 #include "base/bind.h"
18 #include "base/command_line.h"
19 #include "base/files/file_path.h"
20 #include "base/files/file_util.h"
21 #include "base/files/scoped_temp_dir.h"
22 #include "base/message_loop/message_loop.h"
23 #include "base/posix/eintr_wrapper.h"
24 #include "base/strings/stringprintf.h"
25 #include "base/synchronization/waitable_event.h"
26 #include "base/test/test_timeouts.h"
27 #include "base/test/thread_test_helper.h"
28 #include "base/threading/thread.h"
29 #include "chrome/common/chrome_constants.h"
30 #include "content/public/test/test_browser_thread.h"
31 #include "net/base/net_util.h"
32 #include "testing/gtest/include/gtest/gtest.h"
34 using content::BrowserThread
;
38 class ProcessSingletonPosixTest
: public testing::Test
{
40 // A ProcessSingleton exposing some protected methods for testing.
41 class TestableProcessSingleton
: public ProcessSingleton
{
43 explicit TestableProcessSingleton(const base::FilePath
& user_data_dir
)
46 base::Bind(&TestableProcessSingleton::NotificationCallback
,
47 base::Unretained(this))) {}
50 std::vector
<CommandLine::StringVector
> callback_command_lines_
;
52 using ProcessSingleton::NotifyOtherProcessWithTimeout
;
53 using ProcessSingleton::NotifyOtherProcessWithTimeoutOrCreate
;
54 using ProcessSingleton::OverrideCurrentPidForTesting
;
55 using ProcessSingleton::OverrideKillCallbackForTesting
;
58 bool NotificationCallback(const CommandLine
& command_line
,
59 const base::FilePath
& current_directory
) {
60 callback_command_lines_
.push_back(command_line
.argv());
65 ProcessSingletonPosixTest()
67 io_thread_(BrowserThread::IO
),
68 wait_event_(true, false),
69 signal_event_(true, false),
70 process_singleton_on_thread_(NULL
) {
71 io_thread_
.StartIOThread();
74 void SetUp() override
{
75 testing::Test::SetUp();
77 ProcessSingleton::DisablePromptForTesting();
78 // Put the lock in a temporary directory. Doesn't need to be a
79 // full profile to test this code.
80 ASSERT_TRUE(temp_dir_
.CreateUniqueTempDir());
81 // Use a long directory name to ensure that the socket isn't opened through
83 user_data_path_
= temp_dir_
.path().Append(
84 std::string(sizeof(sockaddr_un::sun_path
), 'a'));
85 ASSERT_TRUE(CreateDirectory(user_data_path_
));
87 lock_path_
= user_data_path_
.Append(chrome::kSingletonLockFilename
);
88 socket_path_
= user_data_path_
.Append(chrome::kSingletonSocketFilename
);
89 cookie_path_
= user_data_path_
.Append(chrome::kSingletonCookieFilename
);
92 void TearDown() override
{
93 scoped_refptr
<base::ThreadTestHelper
> io_helper(new base::ThreadTestHelper(
94 BrowserThread::GetMessageLoopProxyForThread(BrowserThread::IO
).get()));
95 ASSERT_TRUE(io_helper
->Run());
97 // Destruct the ProcessSingleton object before the IO thread so that its
98 // internals are destructed properly.
99 if (process_singleton_on_thread_
) {
100 worker_thread_
->message_loop()->PostTask(
102 base::Bind(&ProcessSingletonPosixTest::DestructProcessSingleton
,
103 base::Unretained(this)));
105 scoped_refptr
<base::ThreadTestHelper
> helper(new base::ThreadTestHelper(
106 worker_thread_
->message_loop_proxy().get()));
107 ASSERT_TRUE(helper
->Run());
111 testing::Test::TearDown();
114 void CreateProcessSingletonOnThread() {
115 ASSERT_EQ(NULL
, worker_thread_
.get());
116 worker_thread_
.reset(new base::Thread("BlockingThread"));
117 worker_thread_
->Start();
119 worker_thread_
->message_loop()->PostTask(
121 base::Bind(&ProcessSingletonPosixTest::
122 CreateProcessSingletonInternal
,
123 base::Unretained(this)));
125 scoped_refptr
<base::ThreadTestHelper
> helper(
126 new base::ThreadTestHelper(worker_thread_
->message_loop_proxy().get()));
127 ASSERT_TRUE(helper
->Run());
130 TestableProcessSingleton
* CreateProcessSingleton() {
131 return new TestableProcessSingleton(user_data_path_
);
136 ASSERT_EQ(0, lstat(lock_path_
.value().c_str(), &statbuf
));
137 ASSERT_TRUE(S_ISLNK(statbuf
.st_mode
));
139 ssize_t len
= readlink(lock_path_
.value().c_str(), buf
, PATH_MAX
);
142 ASSERT_EQ(0, lstat(socket_path_
.value().c_str(), &statbuf
));
143 ASSERT_TRUE(S_ISLNK(statbuf
.st_mode
));
145 len
= readlink(socket_path_
.value().c_str(), buf
, PATH_MAX
);
147 base::FilePath socket_target_path
= base::FilePath(std::string(buf
, len
));
149 ASSERT_EQ(0, lstat(socket_target_path
.value().c_str(), &statbuf
));
150 ASSERT_TRUE(S_ISSOCK(statbuf
.st_mode
));
152 len
= readlink(cookie_path_
.value().c_str(), buf
, PATH_MAX
);
154 std::string
cookie(buf
, len
);
156 base::FilePath remote_cookie_path
= socket_target_path
.DirName().
157 Append(chrome::kSingletonCookieFilename
);
158 len
= readlink(remote_cookie_path
.value().c_str(), buf
, PATH_MAX
);
160 EXPECT_EQ(cookie
, std::string(buf
, len
));
163 ProcessSingleton::NotifyResult
NotifyOtherProcess(bool override_kill
) {
164 scoped_ptr
<TestableProcessSingleton
> process_singleton(
165 CreateProcessSingleton());
166 CommandLine
command_line(CommandLine::ForCurrentProcess()->GetProgram());
167 command_line
.AppendArg("about:blank");
169 process_singleton
->OverrideCurrentPidForTesting(
170 base::GetCurrentProcId() + 1);
171 process_singleton
->OverrideKillCallbackForTesting(
172 base::Bind(&ProcessSingletonPosixTest::KillCallback
,
173 base::Unretained(this)));
176 return process_singleton
->NotifyOtherProcessWithTimeout(
177 command_line
, kRetryAttempts
, timeout(), true);
180 // A helper method to call ProcessSingleton::NotifyOtherProcessOrCreate().
181 ProcessSingleton::NotifyResult
NotifyOtherProcessOrCreate(
182 const std::string
& url
) {
183 scoped_ptr
<TestableProcessSingleton
> process_singleton(
184 CreateProcessSingleton());
185 CommandLine
command_line(CommandLine::ForCurrentProcess()->GetProgram());
186 command_line
.AppendArg(url
);
187 return process_singleton
->NotifyOtherProcessWithTimeoutOrCreate(
188 command_line
, kRetryAttempts
, timeout());
191 void CheckNotified() {
192 ASSERT_TRUE(process_singleton_on_thread_
!= NULL
);
193 ASSERT_EQ(1u, process_singleton_on_thread_
->callback_command_lines_
.size());
196 i
< process_singleton_on_thread_
->callback_command_lines_
[0].size();
198 if (process_singleton_on_thread_
->callback_command_lines_
[0][i
] ==
205 ASSERT_EQ(0, kill_callbacks_
);
208 void BlockWorkerThread() {
209 worker_thread_
->message_loop()->PostTask(
211 base::Bind(&ProcessSingletonPosixTest::BlockThread
,
212 base::Unretained(this)));
215 void UnblockWorkerThread() {
216 wait_event_
.Signal(); // Unblock the worker thread for shutdown.
217 signal_event_
.Wait(); // Ensure thread unblocks before continuing.
222 signal_event_
.Signal();
225 base::FilePath user_data_path_
;
226 base::FilePath lock_path_
;
227 base::FilePath socket_path_
;
228 base::FilePath cookie_path_
;
232 static const int kRetryAttempts
= 2;
234 base::TimeDelta
timeout() const {
235 return TestTimeouts::tiny_timeout() * kRetryAttempts
;
238 void CreateProcessSingletonInternal() {
239 ASSERT_TRUE(!process_singleton_on_thread_
);
240 process_singleton_on_thread_
= CreateProcessSingleton();
241 ASSERT_EQ(ProcessSingleton::PROCESS_NONE
,
242 process_singleton_on_thread_
->NotifyOtherProcessOrCreate());
245 void DestructProcessSingleton() {
246 ASSERT_TRUE(process_singleton_on_thread_
);
247 delete process_singleton_on_thread_
;
250 void KillCallback(int pid
) {
254 content::TestBrowserThread io_thread_
;
255 base::ScopedTempDir temp_dir_
;
256 base::WaitableEvent wait_event_
;
257 base::WaitableEvent signal_event_
;
259 scoped_ptr
<base::Thread
> worker_thread_
;
260 TestableProcessSingleton
* process_singleton_on_thread_
;
265 // Test if the socket file and symbol link created by ProcessSingletonPosix
267 // If this test flakes, use http://crbug.com/74554.
268 TEST_F(ProcessSingletonPosixTest
, CheckSocketFile
) {
269 CreateProcessSingletonOnThread();
273 // TODO(james.su@gmail.com): port following tests to Windows.
274 // Test success case of NotifyOtherProcess().
275 TEST_F(ProcessSingletonPosixTest
, NotifyOtherProcessSuccess
) {
276 CreateProcessSingletonOnThread();
277 EXPECT_EQ(ProcessSingleton::PROCESS_NOTIFIED
, NotifyOtherProcess(true));
281 // Test failure case of NotifyOtherProcess().
282 TEST_F(ProcessSingletonPosixTest
, NotifyOtherProcessFailure
) {
283 CreateProcessSingletonOnThread();
286 EXPECT_EQ(ProcessSingleton::PROCESS_NONE
, NotifyOtherProcess(true));
287 ASSERT_EQ(1, kill_callbacks_
);
288 UnblockWorkerThread();
291 // Test that we don't kill ourselves by accident if a lockfile with the same pid
293 TEST_F(ProcessSingletonPosixTest
, NotifyOtherProcessNoSuicide
) {
294 CreateProcessSingletonOnThread();
295 // Replace lockfile with one containing our own pid.
296 EXPECT_EQ(0, unlink(lock_path_
.value().c_str()));
297 std::string symlink_content
= base::StringPrintf(
299 net::GetHostName().c_str(),
301 base::GetCurrentProcId());
302 EXPECT_EQ(0, symlink(symlink_content
.c_str(), lock_path_
.value().c_str()));
304 // Remove socket so that we will not be able to notify the existing browser.
305 EXPECT_EQ(0, unlink(socket_path_
.value().c_str()));
307 EXPECT_EQ(ProcessSingleton::PROCESS_NONE
, NotifyOtherProcess(false));
308 // If we've gotten to this point without killing ourself, the test succeeded.
311 // Test that we can still notify a process on the same host even after the
313 TEST_F(ProcessSingletonPosixTest
, NotifyOtherProcessHostChanged
) {
314 CreateProcessSingletonOnThread();
315 EXPECT_EQ(0, unlink(lock_path_
.value().c_str()));
316 EXPECT_EQ(0, symlink("FAKEFOOHOST-1234", lock_path_
.value().c_str()));
318 EXPECT_EQ(ProcessSingleton::PROCESS_NOTIFIED
, NotifyOtherProcess(false));
322 // Test that we fail when lock says process is on another host and we can't
323 // notify it over the socket.
324 TEST_F(ProcessSingletonPosixTest
, NotifyOtherProcessDifferingHost
) {
325 CreateProcessSingletonOnThread();
329 EXPECT_EQ(0, unlink(lock_path_
.value().c_str()));
330 EXPECT_EQ(0, symlink("FAKEFOOHOST-1234", lock_path_
.value().c_str()));
332 EXPECT_EQ(ProcessSingleton::PROFILE_IN_USE
, NotifyOtherProcess(false));
334 ASSERT_EQ(0, unlink(lock_path_
.value().c_str()));
336 UnblockWorkerThread();
339 // Test that we fail when lock says process is on another host and we can't
340 // notify it over the socket.
341 TEST_F(ProcessSingletonPosixTest
, NotifyOtherProcessOrCreate_DifferingHost
) {
342 CreateProcessSingletonOnThread();
346 EXPECT_EQ(0, unlink(lock_path_
.value().c_str()));
347 EXPECT_EQ(0, symlink("FAKEFOOHOST-1234", lock_path_
.value().c_str()));
349 std::string
url("about:blank");
350 EXPECT_EQ(ProcessSingleton::PROFILE_IN_USE
, NotifyOtherProcessOrCreate(url
));
352 ASSERT_EQ(0, unlink(lock_path_
.value().c_str()));
354 UnblockWorkerThread();
357 // Test that Create fails when another browser is using the profile directory.
358 TEST_F(ProcessSingletonPosixTest
, CreateFailsWithExistingBrowser
) {
359 CreateProcessSingletonOnThread();
361 scoped_ptr
<TestableProcessSingleton
> process_singleton(
362 CreateProcessSingleton());
363 process_singleton
->OverrideCurrentPidForTesting(base::GetCurrentProcId() + 1);
364 EXPECT_FALSE(process_singleton
->Create());
367 // Test that Create fails when another browser is using the profile directory
368 // but with the old socket location.
369 TEST_F(ProcessSingletonPosixTest
, CreateChecksCompatibilitySocket
) {
370 CreateProcessSingletonOnThread();
371 scoped_ptr
<TestableProcessSingleton
> process_singleton(
372 CreateProcessSingleton());
373 process_singleton
->OverrideCurrentPidForTesting(base::GetCurrentProcId() + 1);
375 // Do some surgery so as to look like the old configuration.
377 ssize_t len
= readlink(socket_path_
.value().c_str(), buf
, sizeof(buf
));
379 base::FilePath socket_target_path
= base::FilePath(std::string(buf
, len
));
380 ASSERT_EQ(0, unlink(socket_path_
.value().c_str()));
381 ASSERT_EQ(0, rename(socket_target_path
.value().c_str(),
382 socket_path_
.value().c_str()));
383 ASSERT_EQ(0, unlink(cookie_path_
.value().c_str()));
385 EXPECT_FALSE(process_singleton
->Create());
388 // Test that we fail when lock says process is on another host and we can't
389 // notify it over the socket before of a bad cookie.
390 TEST_F(ProcessSingletonPosixTest
, NotifyOtherProcessOrCreate_BadCookie
) {
391 CreateProcessSingletonOnThread();
392 // Change the cookie.
393 EXPECT_EQ(0, unlink(cookie_path_
.value().c_str()));
394 EXPECT_EQ(0, symlink("INCORRECTCOOKIE", cookie_path_
.value().c_str()));
396 // Also change the hostname, so the remote does not retry.
397 EXPECT_EQ(0, unlink(lock_path_
.value().c_str()));
398 EXPECT_EQ(0, symlink("FAKEFOOHOST-1234", lock_path_
.value().c_str()));
400 std::string
url("about:blank");
401 EXPECT_EQ(ProcessSingleton::PROFILE_IN_USE
, NotifyOtherProcessOrCreate(url
));
404 #if defined(OS_MACOSX)
405 // Test that if there is an existing lock file, and we could not flock()
407 TEST_F(ProcessSingletonPosixTest
, CreateRespectsOldMacLock
) {
408 scoped_ptr
<TestableProcessSingleton
> process_singleton(
409 CreateProcessSingleton());
410 base::ScopedFD
lock_fd(HANDLE_EINTR(
411 open(lock_path_
.value().c_str(), O_RDWR
| O_CREAT
| O_EXLOCK
, 0644)));
412 ASSERT_TRUE(lock_fd
.is_valid());
413 EXPECT_FALSE(process_singleton
->Create());
414 base::File::Info info
;
415 EXPECT_TRUE(base::GetFileInfo(lock_path_
, &info
));
416 EXPECT_FALSE(info
.is_directory
);
417 EXPECT_FALSE(info
.is_symbolic_link
);
420 // Test that if there is an existing lock file, and it's not locked, we replace
422 TEST_F(ProcessSingletonPosixTest
, CreateReplacesOldMacLock
) {
423 scoped_ptr
<TestableProcessSingleton
> process_singleton(
424 CreateProcessSingleton());
425 EXPECT_EQ(0, base::WriteFile(lock_path_
, "", 0));
426 EXPECT_TRUE(process_singleton
->Create());
429 #endif // defined(OS_MACOSX)