This source file includes following definitions.
- ThreadMain
- CreateWaitAndExitThread
- OnChannelError
- QuitMainThreadMessageLoop
- Send
- in_browser_process_
- in_browser_process_
- Init
- Shutdown
- OnChannelConnected
- OnChannelError
- Send
- GetRouter
- CreateBridge
- AllocateSharedMemory
- AllocateSharedMemory
- OnMessageReceived
- OnControlMessageReceived
- OnShutdown
- OnSetIPCLoggingEnabled
- OnSetProfilerStatus
- OnGetChildProfilerData
- OnDumpHandles
- OnGetTcmallocStats
- current
- ShutdownThread
- OnProcessFinalRelease
- EnsureConnected
#include "content/child/child_thread.h"
#include <signal.h>
#include <string>
#include "base/allocator/allocator_extension.h"
#include "base/base_switches.h"
#include "base/basictypes.h"
#include "base/command_line.h"
#include "base/debug/leak_annotations.h"
#include "base/lazy_instance.h"
#include "base/logging.h"
#include "base/message_loop/message_loop.h"
#include "base/process/kill.h"
#include "base/process/process_handle.h"
#include "base/strings/string_util.h"
#include "base/synchronization/condition_variable.h"
#include "base/synchronization/lock.h"
#include "base/threading/thread_local.h"
#include "base/tracked_objects.h"
#include "components/tracing/child_trace_message_filter.h"
#include "content/child/child_histogram_message_filter.h"
#include "content/child/child_process.h"
#include "content/child/child_resource_message_filter.h"
#include "content/child/child_shared_bitmap_manager.h"
#include "content/child/fileapi/file_system_dispatcher.h"
#include "content/child/power_monitor_broadcast_source.h"
#include "content/child/quota_dispatcher.h"
#include "content/child/quota_message_filter.h"
#include "content/child/resource_dispatcher.h"
#include "content/child/service_worker/service_worker_dispatcher.h"
#include "content/child/service_worker/service_worker_message_filter.h"
#include "content/child/socket_stream_dispatcher.h"
#include "content/child/thread_safe_sender.h"
#include "content/child/websocket_dispatcher.h"
#include "content/common/child_process_messages.h"
#include "content/public/common/content_switches.h"
#include "ipc/ipc_logging.h"
#include "ipc/ipc_switches.h"
#include "ipc/ipc_sync_channel.h"
#include "ipc/ipc_sync_message_filter.h"
#include "webkit/child/resource_loader_bridge.h"
#if defined(OS_WIN)
#include "content/common/handle_enumerator_win.h"
#endif
#if defined(TCMALLOC_TRACE_MEMORY_SUPPORTED)
#include "third_party/tcmalloc/chromium/src/gperftools/heap-profiler.h"
#endif
using tracked_objects::ThreadData;
namespace content {
namespace {
const int kConnectionTimeoutS = 15;
base::LazyInstance<base::ThreadLocalPointer<ChildThread> > g_lazy_tls =
LAZY_INSTANCE_INITIALIZER;
#if defined(OS_POSIX)
#if defined(ADDRESS_SANITIZER) || defined(LEAK_SANITIZER) || \
defined(THREAD_SANITIZER)
class WaitAndExitDelegate : public base::PlatformThread::Delegate {
public:
explicit WaitAndExitDelegate(base::TimeDelta duration)
: duration_(duration) {}
virtual ~WaitAndExitDelegate() OVERRIDE {}
virtual void ThreadMain() OVERRIDE {
base::PlatformThread::Sleep(duration_);
_exit(0);
}
private:
const base::TimeDelta duration_;
DISALLOW_COPY_AND_ASSIGN(WaitAndExitDelegate);
};
bool CreateWaitAndExitThread(base::TimeDelta duration) {
scoped_ptr<WaitAndExitDelegate> delegate(new WaitAndExitDelegate(duration));
const bool thread_created =
base::PlatformThread::CreateNonJoinable(0, delegate.get());
if (!thread_created)
return false;
WaitAndExitDelegate* leaking_delegate = delegate.release();
ANNOTATE_LEAKING_OBJECT_PTR(leaking_delegate);
ignore_result(leaking_delegate);
return true;
}
#endif
class SuicideOnChannelErrorFilter : public IPC::ChannelProxy::MessageFilter {
public:
virtual void OnChannelError() OVERRIDE {
#if defined(ADDRESS_SANITIZER) || defined(LEAK_SANITIZER) || \
defined(THREAD_SANITIZER)
CHECK(CreateWaitAndExitThread(base::TimeDelta::FromSeconds(60)));
#if defined(LEAK_SANITIZER)
__lsan_do_leak_check();
#endif
#else
_exit(0);
#endif
}
protected:
virtual ~SuicideOnChannelErrorFilter() {}
};
#endif
#if defined(OS_ANDROID)
ChildThread* g_child_thread = NULL;
base::LazyInstance<base::Lock> g_lazy_child_thread_lock =
LAZY_INSTANCE_INITIALIZER;
struct CondVarLazyInstanceTraits {
static const bool kRegisterOnExit = true;
#ifndef NDEBUG
static const bool kAllowedToAccessOnNonjoinableThread = false;
#endif
static base::ConditionVariable* New(void* instance) {
return new (instance) base::ConditionVariable(
g_lazy_child_thread_lock.Pointer());
}
static void Delete(base::ConditionVariable* instance) {
instance->~ConditionVariable();
}
};
base::LazyInstance<base::ConditionVariable, CondVarLazyInstanceTraits>
g_lazy_child_thread_cv = LAZY_INSTANCE_INITIALIZER;
void QuitMainThreadMessageLoop() {
base::MessageLoop::current()->Quit();
}
#endif
}
ChildThread::ChildThreadMessageRouter::ChildThreadMessageRouter(
IPC::Sender* sender)
: sender_(sender) {}
bool ChildThread::ChildThreadMessageRouter::Send(IPC::Message* msg) {
return sender_->Send(msg);
}
ChildThread::ChildThread()
: router_(this),
channel_connected_factory_(this),
in_browser_process_(false) {
channel_name_ = CommandLine::ForCurrentProcess()->GetSwitchValueASCII(
switches::kProcessChannelID);
Init();
}
ChildThread::ChildThread(const std::string& channel_name)
: channel_name_(channel_name),
router_(this),
channel_connected_factory_(this),
in_browser_process_(true) {
Init();
}
void ChildThread::Init() {
g_lazy_tls.Pointer()->Set(this);
on_channel_error_called_ = false;
message_loop_ = base::MessageLoop::current();
#ifdef IPC_MESSAGE_LOG_ENABLED
IPC::Logging::GetInstance();
#endif
channel_.reset(
new IPC::SyncChannel(channel_name_,
IPC::Channel::MODE_CLIENT,
this,
ChildProcess::current()->io_message_loop_proxy(),
true,
ChildProcess::current()->GetShutDownEvent()));
#ifdef IPC_MESSAGE_LOG_ENABLED
if (!in_browser_process_)
IPC::Logging::GetInstance()->SetIPCSender(this);
#endif
sync_message_filter_ =
new IPC::SyncMessageFilter(ChildProcess::current()->GetShutDownEvent());
thread_safe_sender_ = new ThreadSafeSender(
base::MessageLoopProxy::current().get(), sync_message_filter_.get());
resource_dispatcher_.reset(new ResourceDispatcher(this));
socket_stream_dispatcher_.reset(new SocketStreamDispatcher());
websocket_dispatcher_.reset(new WebSocketDispatcher);
file_system_dispatcher_.reset(new FileSystemDispatcher());
histogram_message_filter_ = new ChildHistogramMessageFilter();
resource_message_filter_ =
new ChildResourceMessageFilter(resource_dispatcher());
service_worker_message_filter_ =
new ServiceWorkerMessageFilter(thread_safe_sender_.get());
service_worker_dispatcher_.reset(
new ServiceWorkerDispatcher(thread_safe_sender_.get()));
quota_message_filter_ =
new QuotaMessageFilter(thread_safe_sender_.get());
quota_dispatcher_.reset(new QuotaDispatcher(thread_safe_sender_.get(),
quota_message_filter_.get()));
channel_->AddFilter(histogram_message_filter_.get());
channel_->AddFilter(sync_message_filter_.get());
channel_->AddFilter(new tracing::ChildTraceMessageFilter(
ChildProcess::current()->io_message_loop_proxy()));
channel_->AddFilter(resource_message_filter_.get());
channel_->AddFilter(quota_message_filter_->GetFilter());
channel_->AddFilter(service_worker_message_filter_->GetFilter());
if (!base::PowerMonitor::Get()) {
scoped_ptr<PowerMonitorBroadcastSource> power_monitor_source(
new PowerMonitorBroadcastSource());
channel_->AddFilter(power_monitor_source->GetMessageFilter());
power_monitor_.reset(new base::PowerMonitor(
power_monitor_source.PassAs<base::PowerMonitorSource>()));
}
#if defined(OS_POSIX)
if (CommandLine::ForCurrentProcess()->HasSwitch(switches::kProcessType))
channel_->AddFilter(new SuicideOnChannelErrorFilter());
#endif
base::MessageLoop::current()->PostDelayedTask(
FROM_HERE,
base::Bind(&ChildThread::EnsureConnected,
channel_connected_factory_.GetWeakPtr()),
base::TimeDelta::FromSeconds(kConnectionTimeoutS));
#if defined(OS_ANDROID)
{
base::AutoLock lock(g_lazy_child_thread_lock.Get());
g_child_thread = this;
}
g_lazy_child_thread_cv.Get().Signal();
#endif
#if defined(TCMALLOC_TRACE_MEMORY_SUPPORTED)
trace_memory_controller_.reset(new base::debug::TraceMemoryController(
message_loop_->message_loop_proxy(),
::HeapProfilerWithPseudoStackStart,
::HeapProfilerStop,
::GetHeapProfile));
#endif
shared_bitmap_manager_.reset(
new ChildSharedBitmapManager(thread_safe_sender()));
}
ChildThread::~ChildThread() {
#ifdef IPC_MESSAGE_LOG_ENABLED
IPC::Logging::GetInstance()->SetIPCSender(NULL);
#endif
channel_->RemoveFilter(histogram_message_filter_.get());
channel_->RemoveFilter(sync_message_filter_.get());
channel_->ClearIPCTaskRunner();
g_lazy_tls.Pointer()->Set(NULL);
}
void ChildThread::Shutdown() {
file_system_dispatcher_.reset();
quota_dispatcher_.reset();
}
void ChildThread::OnChannelConnected(int32 peer_pid) {
channel_connected_factory_.InvalidateWeakPtrs();
}
void ChildThread::OnChannelError() {
set_on_channel_error_called(true);
base::MessageLoop::current()->Quit();
}
bool ChildThread::Send(IPC::Message* msg) {
DCHECK(base::MessageLoop::current() == message_loop());
if (!channel_) {
delete msg;
return false;
}
return channel_->Send(msg);
}
MessageRouter* ChildThread::GetRouter() {
DCHECK(base::MessageLoop::current() == message_loop());
return &router_;
}
webkit_glue::ResourceLoaderBridge* ChildThread::CreateBridge(
const RequestInfo& request_info) {
return resource_dispatcher()->CreateBridge(request_info);
}
base::SharedMemory* ChildThread::AllocateSharedMemory(size_t buf_size) {
return AllocateSharedMemory(buf_size, this);
}
base::SharedMemory* ChildThread::AllocateSharedMemory(
size_t buf_size,
IPC::Sender* sender) {
scoped_ptr<base::SharedMemory> shared_buf;
#if defined(OS_WIN)
shared_buf.reset(new base::SharedMemory);
if (!shared_buf->CreateAndMapAnonymous(buf_size)) {
NOTREACHED();
return NULL;
}
#else
base::SharedMemoryHandle shared_mem_handle;
if (sender->Send(new ChildProcessHostMsg_SyncAllocateSharedMemory(
buf_size, &shared_mem_handle))) {
if (base::SharedMemory::IsHandleValid(shared_mem_handle)) {
shared_buf.reset(new base::SharedMemory(shared_mem_handle, false));
if (!shared_buf->Map(buf_size)) {
NOTREACHED() << "Map failed";
return NULL;
}
} else {
NOTREACHED() << "Browser failed to allocate shared memory";
return NULL;
}
} else {
NOTREACHED() << "Browser allocation request message failed";
return NULL;
}
#endif
return shared_buf.release();
}
bool ChildThread::OnMessageReceived(const IPC::Message& msg) {
if (resource_dispatcher_->OnMessageReceived(msg))
return true;
if (socket_stream_dispatcher_->OnMessageReceived(msg))
return true;
if (websocket_dispatcher_->OnMessageReceived(msg))
return true;
if (file_system_dispatcher_->OnMessageReceived(msg))
return true;
bool handled = true;
IPC_BEGIN_MESSAGE_MAP(ChildThread, msg)
IPC_MESSAGE_HANDLER(ChildProcessMsg_Shutdown, OnShutdown)
#if defined(IPC_MESSAGE_LOG_ENABLED)
IPC_MESSAGE_HANDLER(ChildProcessMsg_SetIPCLoggingEnabled,
OnSetIPCLoggingEnabled)
#endif
IPC_MESSAGE_HANDLER(ChildProcessMsg_SetProfilerStatus,
OnSetProfilerStatus)
IPC_MESSAGE_HANDLER(ChildProcessMsg_GetChildProfilerData,
OnGetChildProfilerData)
IPC_MESSAGE_HANDLER(ChildProcessMsg_DumpHandles, OnDumpHandles)
#if defined(USE_TCMALLOC)
IPC_MESSAGE_HANDLER(ChildProcessMsg_GetTcmallocStats, OnGetTcmallocStats)
#endif
IPC_MESSAGE_UNHANDLED(handled = false)
IPC_END_MESSAGE_MAP()
if (handled)
return true;
if (msg.routing_id() == MSG_ROUTING_CONTROL)
return OnControlMessageReceived(msg);
return router_.OnMessageReceived(msg);
}
bool ChildThread::OnControlMessageReceived(const IPC::Message& msg) {
return false;
}
void ChildThread::OnShutdown() {
base::MessageLoop::current()->Quit();
}
#if defined(IPC_MESSAGE_LOG_ENABLED)
void ChildThread::OnSetIPCLoggingEnabled(bool enable) {
if (enable)
IPC::Logging::GetInstance()->Enable();
else
IPC::Logging::GetInstance()->Disable();
}
#endif
void ChildThread::OnSetProfilerStatus(ThreadData::Status status) {
ThreadData::InitializeAndSetTrackingStatus(status);
}
void ChildThread::OnGetChildProfilerData(int sequence_number) {
tracked_objects::ProcessDataSnapshot process_data;
ThreadData::Snapshot(false, &process_data);
Send(new ChildProcessHostMsg_ChildProfilerData(sequence_number,
process_data));
}
void ChildThread::OnDumpHandles() {
#if defined(OS_WIN)
scoped_refptr<HandleEnumerator> handle_enum(
new HandleEnumerator(
CommandLine::ForCurrentProcess()->HasSwitch(
switches::kAuditAllHandles)));
handle_enum->EnumerateHandles();
Send(new ChildProcessHostMsg_DumpHandlesDone);
#else
NOTIMPLEMENTED();
#endif
}
#if defined(USE_TCMALLOC)
void ChildThread::OnGetTcmallocStats() {
std::string result;
char buffer[1024 * 32];
base::allocator::GetStats(buffer, sizeof(buffer));
result.append(buffer);
Send(new ChildProcessHostMsg_TcmallocStats(result));
}
#endif
ChildThread* ChildThread::current() {
return g_lazy_tls.Pointer()->Get();
}
#if defined(OS_ANDROID)
void ChildThread::ShutdownThread() {
DCHECK(!ChildThread::current()) <<
"this method should NOT be called from child thread itself";
{
base::AutoLock lock(g_lazy_child_thread_lock.Get());
while (!g_child_thread)
g_lazy_child_thread_cv.Get().Wait();
}
DCHECK_NE(base::MessageLoop::current(), g_child_thread->message_loop());
g_child_thread->message_loop()->PostTask(
FROM_HERE, base::Bind(&QuitMainThreadMessageLoop));
}
#endif
void ChildThread::OnProcessFinalRelease() {
if (on_channel_error_called_) {
base::MessageLoop::current()->Quit();
return;
}
Send(new ChildProcessHostMsg_ShutdownRequest);
}
void ChildThread::EnsureConnected() {
VLOG(0) << "ChildThread::EnsureConnected()";
base::KillProcess(base::GetCurrentProcessHandle(), 0, false);
}
}