| // Copyright (c) 2011 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 <algorithm> |
| |
| #include "base/command_line.h" |
| #include "base/file_util.h" |
| #include "base/logging.h" |
| #include "base/mac/scoped_nsautorelease_pool.h" |
| #include "base/memory/singleton.h" |
| #include "base/path_service.h" |
| #include "base/process_util.h" |
| #include "base/sha1.h" |
| #include "base/string16.h" |
| #include "base/string_number_conversions.h" |
| #include "base/string_util.h" |
| #include "base/utf_string_conversions.h" |
| #include "base/version.h" |
| #include "chrome/common/chrome_constants.h" |
| #include "chrome/common/chrome_paths.h" |
| #include "chrome/common/chrome_switches.h" |
| #include "chrome/common/chrome_version_info.h" |
| #include "chrome/common/service_process_util.h" |
| #include "content/common/child_process_host.h" |
| |
| #if !defined(OS_MACOSX) |
| |
| namespace { |
| |
| // This should be more than enough to hold a version string assuming each part |
| // of the version string is an int64. |
| const uint32 kMaxVersionStringLength = 256; |
| |
| // The structure that gets written to shared memory. |
| struct ServiceProcessSharedData { |
| char service_process_version[kMaxVersionStringLength]; |
| base::ProcessId service_process_pid; |
| }; |
| |
| // Gets the name of the shared memory used by the service process to write its |
| // version. The name is not versioned. |
| std::string GetServiceProcessSharedMemName() { |
| return GetServiceProcessScopedName("_service_shmem"); |
| } |
| |
| enum ServiceProcessRunningState { |
| SERVICE_NOT_RUNNING, |
| SERVICE_OLDER_VERSION_RUNNING, |
| SERVICE_SAME_VERSION_RUNNING, |
| SERVICE_NEWER_VERSION_RUNNING, |
| }; |
| |
| ServiceProcessRunningState GetServiceProcessRunningState( |
| std::string* service_version_out, base::ProcessId* pid_out) { |
| std::string version; |
| if (!GetServiceProcessData(&version, pid_out)) |
| return SERVICE_NOT_RUNNING; |
| |
| #if defined(OS_POSIX) |
| // We only need to check for service running on POSIX because Windows cleans |
| // up shared memory files when an app crashes, so there isn't a chance of |
| // us reading bogus data from shared memory for an app that has died. |
| if (!CheckServiceProcessReady()) { |
| return SERVICE_NOT_RUNNING; |
| } |
| #endif // defined(OS_POSIX) |
| |
| // At this time we have a version string. Set the out param if it exists. |
| if (service_version_out) |
| *service_version_out = version; |
| |
| scoped_ptr<Version> service_version(Version::GetVersionFromString(version)); |
| // If the version string is invalid, treat it like an older version. |
| if (!service_version.get()) |
| return SERVICE_OLDER_VERSION_RUNNING; |
| |
| // Get the version of the currently *running* instance of Chrome. |
| chrome::VersionInfo version_info; |
| if (!version_info.is_valid()) { |
| NOTREACHED() << "Failed to get current file version"; |
| // Our own version is invalid. This is an error case. Pretend that we |
| // are out of date. |
| return SERVICE_NEWER_VERSION_RUNNING; |
| } |
| scoped_ptr<Version> running_version(Version::GetVersionFromString( |
| version_info.Version())); |
| if (!running_version.get()) { |
| NOTREACHED() << "Failed to parse version info"; |
| // Our own version is invalid. This is an error case. Pretend that we |
| // are out of date. |
| return SERVICE_NEWER_VERSION_RUNNING; |
| } |
| |
| if (running_version->CompareTo(*service_version) > 0) { |
| return SERVICE_OLDER_VERSION_RUNNING; |
| } else if (service_version->CompareTo(*running_version) > 0) { |
| return SERVICE_NEWER_VERSION_RUNNING; |
| } |
| return SERVICE_SAME_VERSION_RUNNING; |
| } |
| |
| } // namespace |
| |
| // Return a name that is scoped to this instance of the service process. We |
| // use the hash of the user-data-dir as a scoping prefix. We can't use |
| // the user-data-dir itself as we have limits on the size of the lock names. |
| std::string GetServiceProcessScopedName(const std::string& append_str) { |
| FilePath user_data_dir; |
| PathService::Get(chrome::DIR_USER_DATA, &user_data_dir); |
| #if defined(OS_WIN) |
| std::string user_data_dir_path = WideToUTF8(user_data_dir.value()); |
| #elif defined(OS_POSIX) |
| std::string user_data_dir_path = user_data_dir.value(); |
| #endif // defined(OS_WIN) |
| std::string hash = base::SHA1HashString(user_data_dir_path); |
| std::string hex_hash = base::HexEncode(hash.c_str(), hash.length()); |
| return hex_hash + "." + append_str; |
| } |
| |
| // Return a name that is scoped to this instance of the service process. We |
| // use the user-data-dir and the version as a scoping prefix. |
| std::string GetServiceProcessScopedVersionedName( |
| const std::string& append_str) { |
| std::string versioned_str; |
| chrome::VersionInfo version_info; |
| DCHECK(version_info.is_valid()); |
| versioned_str.append(version_info.Version()); |
| versioned_str.append(append_str); |
| return GetServiceProcessScopedName(versioned_str); |
| } |
| |
| // Reads the named shared memory to get the shared data. Returns false if no |
| // matching shared memory was found. |
| bool GetServiceProcessData(std::string* version, base::ProcessId* pid) { |
| scoped_ptr<base::SharedMemory> shared_mem_service_data; |
| shared_mem_service_data.reset(new base::SharedMemory()); |
| ServiceProcessSharedData* service_data = NULL; |
| if (shared_mem_service_data.get() && |
| shared_mem_service_data->Open(GetServiceProcessSharedMemName(), true) && |
| shared_mem_service_data->Map(sizeof(ServiceProcessSharedData))) { |
| service_data = reinterpret_cast<ServiceProcessSharedData*>( |
| shared_mem_service_data->memory()); |
| // Make sure the version in shared memory is null-terminated. If it is not, |
| // treat it as invalid. |
| if (version && memchr(service_data->service_process_version, '\0', |
| sizeof(service_data->service_process_version))) |
| *version = service_data->service_process_version; |
| if (pid) |
| *pid = service_data->service_process_pid; |
| return true; |
| } |
| return false; |
| } |
| |
| // Gets the name of the service process IPC channel. |
| IPC::ChannelHandle GetServiceProcessChannel() { |
| return GetServiceProcessScopedVersionedName("_service_ipc"); |
| } |
| |
| #endif // !OS_MACOSX |
| |
| ServiceProcessState::ServiceProcessState() : state_(NULL) { |
| CreateAutoRunCommandLine(); |
| CreateState(); |
| } |
| |
| ServiceProcessState::~ServiceProcessState() { |
| #if !defined(OS_MACOSX) |
| if (shared_mem_service_data_.get()) { |
| shared_mem_service_data_->Delete(GetServiceProcessSharedMemName()); |
| } |
| #endif // !OS_MACOSX |
| TearDownState(); |
| } |
| |
| void ServiceProcessState::SignalStopped() { |
| TearDownState(); |
| shared_mem_service_data_.reset(); |
| } |
| |
| #if !defined(OS_MACOSX) |
| bool ServiceProcessState::Initialize() { |
| if (!TakeSingletonLock()) { |
| return false; |
| } |
| // Now that we have the singleton, take care of killing an older version, if |
| // it exists. |
| if (!HandleOtherVersion()) |
| return false; |
| |
| // Write the version we are using to shared memory. This can be used by a |
| // newer service to signal us to exit. |
| return CreateSharedData(); |
| } |
| |
| bool ServiceProcessState::HandleOtherVersion() { |
| std::string running_version; |
| base::ProcessId process_id = 0; |
| ServiceProcessRunningState state = |
| GetServiceProcessRunningState(&running_version, &process_id); |
| switch (state) { |
| case SERVICE_SAME_VERSION_RUNNING: |
| case SERVICE_NEWER_VERSION_RUNNING: |
| return false; |
| case SERVICE_OLDER_VERSION_RUNNING: |
| // If an older version is running, kill it. |
| ForceServiceProcessShutdown(running_version, process_id); |
| break; |
| case SERVICE_NOT_RUNNING: |
| break; |
| } |
| return true; |
| } |
| |
| bool ServiceProcessState::CreateSharedData() { |
| chrome::VersionInfo version_info; |
| if (!version_info.is_valid()) { |
| NOTREACHED() << "Failed to get current file version"; |
| return false; |
| } |
| if (version_info.Version().length() >= kMaxVersionStringLength) { |
| NOTREACHED() << "Version string length is << " << |
| version_info.Version().length() << "which is longer than" << |
| kMaxVersionStringLength; |
| return false; |
| } |
| |
| scoped_ptr<base::SharedMemory> shared_mem_service_data( |
| new base::SharedMemory()); |
| if (!shared_mem_service_data.get()) |
| return false; |
| |
| uint32 alloc_size = sizeof(ServiceProcessSharedData); |
| if (!shared_mem_service_data->CreateNamed(GetServiceProcessSharedMemName(), |
| true, alloc_size)) |
| return false; |
| |
| if (!shared_mem_service_data->Map(alloc_size)) |
| return false; |
| |
| memset(shared_mem_service_data->memory(), 0, alloc_size); |
| ServiceProcessSharedData* shared_data = |
| reinterpret_cast<ServiceProcessSharedData*>( |
| shared_mem_service_data->memory()); |
| memcpy(shared_data->service_process_version, version_info.Version().c_str(), |
| version_info.Version().length()); |
| shared_data->service_process_pid = base::GetCurrentProcId(); |
| shared_mem_service_data_.reset(shared_mem_service_data.release()); |
| return true; |
| } |
| |
| IPC::ChannelHandle ServiceProcessState::GetServiceProcessChannel() { |
| return ::GetServiceProcessChannel(); |
| } |
| |
| #endif // !OS_MACOSX |
| |
| void ServiceProcessState::CreateAutoRunCommandLine() { |
| FilePath exe_path = ChildProcessHost::GetChildPath(false); |
| if (exe_path.empty()) { |
| NOTREACHED() << "Unable to get service process binary name."; |
| } |
| autorun_command_line_.reset(new CommandLine(exe_path)); |
| autorun_command_line_->AppendSwitchASCII(switches::kProcessType, |
| switches::kServiceProcess); |
| |
| // The user data directory is the only other flag we currently want to |
| // possibly store. |
| const CommandLine& browser_command_line = *CommandLine::ForCurrentProcess(); |
| FilePath user_data_dir = |
| browser_command_line.GetSwitchValuePath(switches::kUserDataDir); |
| if (!user_data_dir.empty()) |
| autorun_command_line_->AppendSwitchPath(switches::kUserDataDir, |
| user_data_dir); |
| } |