blob: d51654b511565d1a165b9d43fef7a32800920bf6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
|
// Copyright (c) 2010 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/common/service_process_util_posix.h"
#include <signal.h>
#include <unistd.h>
#include "base/command_line.h"
#include "base/file_util.h"
#include "base/logging.h"
#include "base/threading/platform_thread.h"
#include "chrome/common/auto_start_linux.h"
#include "chrome/common/multi_process_lock.h"
namespace {
// Attempts to take a lock named |name|. If |waiting| is true then this will
// make multiple attempts to acquire the lock.
// Caller is responsible for ownership of the MultiProcessLock.
MultiProcessLock* TakeNamedLock(const std::string& name, bool waiting) {
scoped_ptr<MultiProcessLock> lock(MultiProcessLock::Create(name));
if (lock == NULL) return NULL;
bool got_lock = false;
for (int i = 0; i < 10; ++i) {
if (lock->TryLock()) {
got_lock = true;
break;
}
if (!waiting) break;
base::PlatformThread::Sleep(100 * i);
}
if (!got_lock) {
lock.reset();
}
return lock.release();
}
MultiProcessLock* TakeServiceInitializingLock(bool waiting) {
std::string lock_name =
GetServiceProcessScopedName("_service_initializing");
return TakeNamedLock(lock_name, waiting);
}
std::string GetBaseDesktopName() {
#if defined(GOOGLE_CHROME_BUILD)
return "google-chrome-service.desktop";
#else // CHROMIUM_BUILD
return "chromium-service.desktop";
#endif
}
} // namespace
MultiProcessLock* TakeServiceRunningLock(bool waiting) {
std::string lock_name =
GetServiceProcessScopedName("_service_running");
return TakeNamedLock(lock_name, waiting);
}
bool ForceServiceProcessShutdown(const std::string& version,
base::ProcessId process_id) {
if (kill(process_id, SIGTERM) < 0) {
PLOG(ERROR) << "kill";
return false;
}
return true;
}
bool CheckServiceProcessReady() {
scoped_ptr<MultiProcessLock> running_lock(TakeServiceRunningLock(false));
return running_lock.get() == NULL;
}
bool ServiceProcessState::TakeSingletonLock() {
state_->initializing_lock_.reset(TakeServiceInitializingLock(true));
return state_->initializing_lock_.get();
}
bool ServiceProcessState::AddToAutoRun() {
DCHECK(autorun_command_line_.get());
#if defined(GOOGLE_CHROME_BUILD)
std::string app_name = "Google Chrome Service";
#else // CHROMIUM_BUILD
std::string app_name = "Chromium Service";
#endif
return AutoStart::AddApplication(
GetServiceProcessScopedName(GetBaseDesktopName()),
app_name,
autorun_command_line_->command_line_string(),
false);
}
bool ServiceProcessState::RemoveFromAutoRun() {
return AutoStart::Remove(
GetServiceProcessScopedName(GetBaseDesktopName()));
}
|