Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1899)

Unified Diff: base/metrics/field_trial.cc

Issue 2530573002: Share field trial allocator on zygote-using Linuxes (Closed)
Patch Set: fix ifdef Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: base/metrics/field_trial.cc
diff --git a/base/metrics/field_trial.cc b/base/metrics/field_trial.cc
index 7dc5cb454e55877d7e345bbe13c1a4acca4d2711..cb3f6b53a852362ed11a397cb93dbbef2c5d8002 100644
--- a/base/metrics/field_trial.cc
+++ b/base/metrics/field_trial.cc
@@ -2,6 +2,11 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
+#if defined(OS_POSIX) && !defined(OS_NACL) && !defined(OS_MACOSX) && \
+ !defined(OS_ANDROID)
+#define POSIX_WITH_ZYGOTE 1
+#endif
Alexei Svitkine (slow) 2016/11/24 17:44:34 Not At the top of the file - put it after all the
lawrencewu 2016/11/24 18:16:13 Done.
+
#include "base/metrics/field_trial.h"
#include <algorithm>
@@ -21,6 +26,10 @@
#include "base/strings/stringprintf.h"
#include "base/strings/utf_string_conversions.h"
+#if defined(POSIX_WITH_ZYGOTE)
+#include "base/posix/global_descriptors.h"
+#endif
+
namespace base {
namespace {
@@ -238,6 +247,15 @@ HANDLE CreateReadOnlyHandle(FieldTrialList::FieldTrialAllocator* allocator) {
}
#endif
+#if defined(POSIX_WITH_ZYGOTE)
+int CreateReadOnlyHandle(FieldTrialList::FieldTrialAllocator* allocator) {
+ SharedMemoryHandle new_handle;
+ allocator->shared_memory()->ShareReadOnlyToProcess(GetCurrentProcessHandle(),
+ &new_handle);
+ return SharedMemory::GetFdFromSharedMemoryHandle(new_handle);
+}
+#endif
+
} // namespace
// statics
@@ -740,15 +758,12 @@ void FieldTrialList::CreateTrialsFromCommandLine(
const char* field_trial_handle_switch) {
global_->create_trials_from_command_line_called_ = true;
-#if defined(OS_WIN) && !defined(OS_NACL)
if (cmd_line.HasSwitch(field_trial_handle_switch)) {
- std::string arg = cmd_line.GetSwitchValueASCII(field_trial_handle_switch);
- int field_trial_handle = std::stoi(arg);
- HANDLE handle = reinterpret_cast<HANDLE>(field_trial_handle);
- bool result = CreateTrialsFromWindowsHandle(handle);
+ std::string handle_switch =
+ cmd_line.GetSwitchValueASCII(field_trial_handle_switch);
+ bool result = CreateTrialsFromHandleSwitch(handle_switch);
DCHECK(result);
}
-#endif
if (cmd_line.HasSwitch(switches::kForceFieldTrials)) {
bool result = FieldTrialList::CreateTrialsFromString(
@@ -772,6 +787,20 @@ void FieldTrialList::AppendFieldTrialHandleIfNeeded(
}
#endif
+#if defined(OS_POSIX) && !defined(OS_NACL)
+// static
+int FieldTrialList::GetFieldTrialHandle() {
+ if (!global_)
+ return -1;
+ if (kUseSharedMemoryForFieldTrials) {
+ InstantiateFieldTrialAllocatorIfNeeded();
+ if (global_->readonly_allocator_handle_ != -1)
+ return global_->readonly_allocator_handle_;
+ }
+ return -1;
+}
+#endif
+
// static
void FieldTrialList::CopyFieldTrialStateToFlags(
const char* field_trial_handle_switch,
@@ -807,6 +836,26 @@ void FieldTrialList::CopyFieldTrialStateToFlags(
}
#endif
+#if defined(POSIX_WITH_ZYGOTE)
+ // Use shared memory to pass the state if the feature is enabled, otherwise
+ // fallback to passing it via the command line as a string.
+ if (kUseSharedMemoryForFieldTrials) {
+ InstantiateFieldTrialAllocatorIfNeeded();
+ // If the readonly handle didn't get duplicated properly, then fallback to
+ // original behavior.
+ if (global_->readonly_allocator_handle_ == -1) {
+ AddForceFieldTrialsFlag(cmd_line);
+ return;
+ }
+
+ std::string field_trial_handle =
+ std::to_string(global_->readonly_allocator_handle_);
+ cmd_line->AppendSwitchASCII(field_trial_handle_switch, field_trial_handle);
+ global_->field_trial_allocator_->UpdateTrackingHistograms();
+ return;
+ }
+#endif
+
AddForceFieldTrialsFlag(cmd_line);
}
@@ -893,11 +942,32 @@ size_t FieldTrialList::GetFieldTrialCount() {
return global_->registered_.size();
}
-#if defined(OS_WIN)
// static
-bool FieldTrialList::CreateTrialsFromWindowsHandle(HANDLE handle) {
+bool FieldTrialList::CreateTrialsFromHandleSwitch(
+ const std::string& handle_switch) {
+#if defined(OS_WIN)
+ int field_trial_handle = std::stoi(handle_switch);
+ HANDLE handle = reinterpret_cast<HANDLE>(field_trial_handle);
SharedMemoryHandle shm_handle(handle, GetCurrentProcId());
+ return FieldTrialList::CreateTrialsFromSharedMemoryHandle(shm_handle);
+#endif
+#if defined(POSIX_WITH_ZYGOTE)
+ int fd_key = std::stoi(handle_switch);
+ int fd = GlobalDescriptors::GetInstance()->Get(fd_key);
+ SharedMemoryHandle shm_handle(fd, true);
+ return FieldTrialList::CreateTrialsFromSharedMemoryHandle(shm_handle);
+#endif
+
+#if !defined(OS_WIN) && !defined(POSIX_WITH_ZYGOTE)
+ return false;
+#endif
+}
+
+#if !defined(OS_NACL)
+// static
+bool FieldTrialList::CreateTrialsFromSharedMemoryHandle(
+ SharedMemoryHandle shm_handle) {
// shm gets deleted when it gets out of scope, but that's OK because we need
// it only for the duration of this method.
std::unique_ptr<SharedMemory> shm(new SharedMemory(shm_handle, true));
@@ -987,8 +1057,15 @@ void FieldTrialList::InstantiateFieldTrialAllocatorIfNeeded() {
if (global_->field_trial_allocator_ != nullptr)
return;
+ SharedMemoryCreateOptions options;
+ options.size = kFieldTrialAllocationSize;
+ options.share_read_only = true;
+
std::unique_ptr<SharedMemory> shm(new SharedMemory());
- if (!shm->CreateAndMapAnonymous(kFieldTrialAllocationSize))
+ if (!shm->Create(options))
+ TerminateBecauseOutOfMemory(kFieldTrialAllocationSize);
+
+ if (!shm->Map(kFieldTrialAllocationSize))
TerminateBecauseOutOfMemory(kFieldTrialAllocationSize);
global_->field_trial_allocator_.reset(
@@ -1000,7 +1077,7 @@ void FieldTrialList::InstantiateFieldTrialAllocatorIfNeeded() {
AddToAllocatorWhileLocked(registered.second);
}
-#if defined(OS_WIN)
+#if defined(OS_WIN) || defined(POSIX_WITH_ZYGOTE)
// Set |readonly_allocator_handle_| so we can pass it to be inherited and
// via the command line.
global_->readonly_allocator_handle_ =

Powered by Google App Engine
This is Rietveld 408576698