This source file includes following definitions.
- plugin_
- RunTranslate
- PutBytes
- StartSubprocess
- DoTranslateThread
- DoTranslate
- RunLdSubprocess
- TranslateFailed
- AbortSubprocesses
#include "ppapi/native_client/src/trusted/plugin/pnacl_translate_thread.h"
#include <iterator>
#include "native_client/src/trusted/desc/nacl_desc_wrapper.h"
#include "ppapi/native_client/src/trusted/plugin/plugin.h"
#include "ppapi/native_client/src/trusted/plugin/plugin_error.h"
#include "ppapi/native_client/src/trusted/plugin/pnacl_resources.h"
#include "ppapi/native_client/src/trusted/plugin/srpc_params.h"
#include "ppapi/native_client/src/trusted/plugin/temporary_file.h"
#include "ppapi/native_client/src/trusted/plugin/utility.h"
namespace plugin {
PnaclTranslateThread::PnaclTranslateThread() : llc_subprocess_active_(false),
ld_subprocess_active_(false),
done_(false),
compile_time_(0),
manifest_(NULL),
obj_files_(NULL),
nexe_file_(NULL),
coordinator_error_info_(NULL),
resources_(NULL),
coordinator_(NULL),
plugin_(NULL) {
NaClXMutexCtor(&subprocess_mu_);
NaClXMutexCtor(&cond_mu_);
NaClXCondVarCtor(&buffer_cond_);
}
void PnaclTranslateThread::RunTranslate(
const pp::CompletionCallback& finish_callback,
const Manifest* manifest,
const std::vector<TempFile*>* obj_files,
TempFile* nexe_file,
nacl::DescWrapper* invalid_desc_wrapper,
ErrorInfo* error_info,
PnaclResources* resources,
PnaclOptions* pnacl_options,
PnaclCoordinator* coordinator,
Plugin* plugin) {
PLUGIN_PRINTF(("PnaclStreamingTranslateThread::RunTranslate)\n"));
manifest_ = manifest;
obj_files_ = obj_files;
nexe_file_ = nexe_file;
invalid_desc_wrapper_ = invalid_desc_wrapper;
coordinator_error_info_ = error_info;
resources_ = resources;
pnacl_options_ = pnacl_options;
coordinator_ = coordinator;
plugin_ = plugin;
report_translate_finished_ = finish_callback;
translate_thread_.reset(new NaClThread);
if (translate_thread_ == NULL) {
TranslateFailed(PP_NACL_ERROR_PNACL_THREAD_CREATE,
"could not allocate thread struct.");
return;
}
const int32_t kArbitraryStackSize = 128 * 1024;
if (!NaClThreadCreateJoinable(translate_thread_.get(),
DoTranslateThread,
this,
kArbitraryStackSize)) {
TranslateFailed(PP_NACL_ERROR_PNACL_THREAD_CREATE,
"could not create thread.");
translate_thread_.reset(NULL);
}
}
void PnaclTranslateThread::PutBytes(std::vector<char>* bytes,
int count) {
PLUGIN_PRINTF(("PutBytes (this=%p, bytes=%p, size=%" NACL_PRIuS
", count=%d)\n",
this, bytes, bytes ? bytes->size() : 0, count));
size_t buffer_size = 0;
if (count <= PP_OK) {
NaClXMutexLock(&cond_mu_);
done_ = true;
NaClXCondVarSignal(&buffer_cond_);
NaClXMutexUnlock(&cond_mu_);
return;
}
CHECK(bytes != NULL);
buffer_size = bytes->size();
bytes->resize(count);
NaClXMutexLock(&cond_mu_);
data_buffers_.push_back(std::vector<char>());
bytes->swap(data_buffers_.back());
NaClXCondVarSignal(&buffer_cond_);
NaClXMutexUnlock(&cond_mu_);
bytes->resize(buffer_size);
}
NaClSubprocess* PnaclTranslateThread::StartSubprocess(
const nacl::string& url_for_nexe,
const Manifest* manifest,
ErrorInfo* error_info) {
PLUGIN_PRINTF(("PnaclTranslateThread::StartSubprocess (url_for_nexe=%s)\n",
url_for_nexe.c_str()));
nacl::DescWrapper* wrapper = resources_->WrapperForUrl(url_for_nexe);
nacl::string full_url = resources_->GetFullUrl(
url_for_nexe, plugin_->nacl_interface()->GetSandboxArch());
nacl::scoped_ptr<NaClSubprocess> subprocess(
plugin_->LoadHelperNaClModule(full_url, wrapper, manifest, error_info));
if (subprocess.get() == NULL) {
PLUGIN_PRINTF((
"PnaclTranslateThread::StartSubprocess: subprocess creation failed\n"));
return NULL;
}
return subprocess.release();
}
void WINAPI PnaclTranslateThread::DoTranslateThread(void* arg) {
PnaclTranslateThread* translator =
reinterpret_cast<PnaclTranslateThread*>(arg);
translator->DoTranslate();
}
void PnaclTranslateThread::DoTranslate() {
ErrorInfo error_info;
SrpcParams params;
std::vector<nacl::DescWrapper*> llc_out_files;
size_t i;
for (i = 0; i < obj_files_->size(); i++) {
llc_out_files.push_back((*obj_files_)[i]->write_wrapper());
}
for (; i < PnaclCoordinator::kMaxTranslatorObjectFiles; i++) {
llc_out_files.push_back(invalid_desc_wrapper_);
}
pp::Core* core = pp::Module::Get()->core();
{
nacl::MutexLocker ml(&subprocess_mu_);
int64_t llc_start_time = NaClGetTimeOfDayMicroseconds();
llc_subprocess_.reset(
StartSubprocess(resources_->GetLlcUrl(), manifest_, &error_info));
if (llc_subprocess_ == NULL) {
TranslateFailed(PP_NACL_ERROR_PNACL_LLC_SETUP,
"Compile process could not be created: " +
error_info.message());
return;
}
llc_subprocess_active_ = true;
core->CallOnMainThread(0,
coordinator_->GetUMATimeCallback(
"NaCl.Perf.PNaClLoadTime.LoadCompiler",
NaClGetTimeOfDayMicroseconds() - llc_start_time),
PP_OK);
PluginReverseInterface* llc_reverse =
llc_subprocess_->service_runtime()->rev_interface();
for (size_t i = 0; i < obj_files_->size(); i++) {
llc_reverse->AddTempQuotaManagedFile((*obj_files_)[i]->identifier());
}
}
int64_t compile_start_time = NaClGetTimeOfDayMicroseconds();
bool init_success;
std::vector<char> split_args;
nacl::stringstream ss;
ss << "-split-module=" << obj_files_->size();
nacl::string split_arg = ss.str();
std::copy(split_arg.begin(), split_arg.end(), std::back_inserter(split_args));
split_args.push_back('\x00');
std::vector<char> options = pnacl_options_->GetOptCommandline();
std::copy(options.begin(), options.end(), std::back_inserter(split_args));
init_success = llc_subprocess_->InvokeSrpcMethod(
"StreamInitWithSplit",
"ihhhhhhhhhhhhhhhhC",
¶ms,
static_cast<int>(obj_files_->size()),
llc_out_files[0]->desc(),
llc_out_files[1]->desc(),
llc_out_files[2]->desc(),
llc_out_files[3]->desc(),
llc_out_files[4]->desc(),
llc_out_files[5]->desc(),
llc_out_files[6]->desc(),
llc_out_files[7]->desc(),
llc_out_files[8]->desc(),
llc_out_files[9]->desc(),
llc_out_files[10]->desc(),
llc_out_files[11]->desc(),
llc_out_files[12]->desc(),
llc_out_files[13]->desc(),
llc_out_files[14]->desc(),
llc_out_files[15]->desc(),
&split_args[0],
split_args.size());
if (!init_success) {
if (llc_subprocess_->srpc_client()->GetLastError() ==
NACL_SRPC_RESULT_APP_ERROR) {
TranslateFailed(PP_NACL_ERROR_PNACL_LLC_INTERNAL,
nacl::string("Stream init failed: ") +
nacl::string(params.outs()[0]->arrays.str));
} else {
TranslateFailed(PP_NACL_ERROR_PNACL_LLC_INTERNAL,
"Stream init internal error");
}
return;
}
PLUGIN_PRINTF(("PnaclCoordinator: StreamInit successful\n"));
while(!done_ || data_buffers_.size() > 0) {
NaClXMutexLock(&cond_mu_);
while(!done_ && data_buffers_.size() == 0) {
NaClXCondVarWait(&buffer_cond_, &cond_mu_);
}
PLUGIN_PRINTF(("PnaclTranslateThread awake (done=%d, size=%" NACL_PRIuS
")\n",
done_, data_buffers_.size()));
if (data_buffers_.size() > 0) {
std::vector<char> data;
data.swap(data_buffers_.front());
data_buffers_.pop_front();
NaClXMutexUnlock(&cond_mu_);
PLUGIN_PRINTF(("StreamChunk\n"));
if (!llc_subprocess_->InvokeSrpcMethod("StreamChunk",
"C",
¶ms,
&data[0],
data.size())) {
if (llc_subprocess_->srpc_client()->GetLastError() !=
NACL_SRPC_RESULT_APP_ERROR) {
TranslateFailed(PP_NACL_ERROR_PNACL_LLC_INTERNAL,
"Compile stream chunk failed. "
"The PNaCl translator has probably crashed.");
return;
}
break;
} else {
PLUGIN_PRINTF(("StreamChunk Successful\n"));
core->CallOnMainThread(
0,
coordinator_->GetCompileProgressCallback(data.size()),
PP_OK);
}
} else {
NaClXMutexUnlock(&cond_mu_);
}
}
PLUGIN_PRINTF(("PnaclTranslateThread done with chunks\n"));
if (!llc_subprocess_->InvokeSrpcMethod("StreamEnd", std::string(), ¶ms)) {
PLUGIN_PRINTF(("PnaclTranslateThread StreamEnd failed\n"));
if (llc_subprocess_->srpc_client()->GetLastError() ==
NACL_SRPC_RESULT_APP_ERROR) {
TranslateFailed(PP_NACL_ERROR_PNACL_LLC_INTERNAL,
params.outs()[3]->arrays.str);
} else {
TranslateFailed(PP_NACL_ERROR_PNACL_LLC_INTERNAL,
"Compile StreamEnd internal error");
}
return;
}
compile_time_ = NaClGetTimeOfDayMicroseconds() - compile_start_time;
core->CallOnMainThread(0,
coordinator_->GetUMATimeCallback(
"NaCl.Perf.PNaClLoadTime.CompileTime",
compile_time_),
PP_OK);
NaClXMutexLock(&subprocess_mu_);
llc_subprocess_active_ = false;
llc_subprocess_.reset(NULL);
NaClXMutexUnlock(&subprocess_mu_);
if(!RunLdSubprocess()) {
return;
}
core->CallOnMainThread(0, report_translate_finished_, PP_OK);
}
bool PnaclTranslateThread::RunLdSubprocess() {
ErrorInfo error_info;
SrpcParams params;
std::vector<nacl::DescWrapper*> ld_in_files;
size_t i;
for (i = 0; i < obj_files_->size(); i++) {
if (!(*obj_files_)[i]->Reset()) {
TranslateFailed(PP_NACL_ERROR_PNACL_LD_SETUP,
"Link process could not reset object file");
return false;
}
ld_in_files.push_back((*obj_files_)[i]->read_wrapper());
}
for (; i < PnaclCoordinator::kMaxTranslatorObjectFiles; i++) {
ld_in_files.push_back(invalid_desc_wrapper_);
}
nacl::DescWrapper* ld_out_file = nexe_file_->write_wrapper();
pp::Core* core = pp::Module::Get()->core();
{
nacl::MutexLocker ml(&subprocess_mu_);
int64_t ld_start_time = NaClGetTimeOfDayMicroseconds();
ld_subprocess_.reset(
StartSubprocess(resources_->GetLdUrl(), manifest_, &error_info));
if (ld_subprocess_ == NULL) {
TranslateFailed(PP_NACL_ERROR_PNACL_LD_SETUP,
"Link process could not be created: " +
error_info.message());
return false;
}
ld_subprocess_active_ = true;
core->CallOnMainThread(0,
coordinator_->GetUMATimeCallback(
"NaCl.Perf.PNaClLoadTime.LoadLinker",
NaClGetTimeOfDayMicroseconds() - ld_start_time),
PP_OK);
PluginReverseInterface* ld_reverse =
ld_subprocess_->service_runtime()->rev_interface();
ld_reverse->AddTempQuotaManagedFile(nexe_file_->identifier());
}
int64_t link_start_time = NaClGetTimeOfDayMicroseconds();
bool success = ld_subprocess_->InvokeSrpcMethod(
"RunWithSplit",
"ihhhhhhhhhhhhhhhhh",
¶ms,
static_cast<int>(obj_files_->size()),
ld_in_files[0]->desc(),
ld_in_files[1]->desc(),
ld_in_files[2]->desc(),
ld_in_files[3]->desc(),
ld_in_files[4]->desc(),
ld_in_files[5]->desc(),
ld_in_files[6]->desc(),
ld_in_files[7]->desc(),
ld_in_files[8]->desc(),
ld_in_files[9]->desc(),
ld_in_files[10]->desc(),
ld_in_files[11]->desc(),
ld_in_files[12]->desc(),
ld_in_files[13]->desc(),
ld_in_files[14]->desc(),
ld_in_files[15]->desc(),
ld_out_file->desc());
if (!success) {
TranslateFailed(PP_NACL_ERROR_PNACL_LD_INTERNAL,
"link failed.");
return false;
}
core->CallOnMainThread(0,
coordinator_->GetUMATimeCallback(
"NaCl.Perf.PNaClLoadTime.LinkTime",
NaClGetTimeOfDayMicroseconds() - link_start_time),
PP_OK);
PLUGIN_PRINTF(("PnaclCoordinator: link (translator=%p) succeeded\n",
this));
NaClXMutexLock(&subprocess_mu_);
ld_subprocess_active_ = false;
ld_subprocess_.reset(NULL);
NaClXMutexUnlock(&subprocess_mu_);
return true;
}
void PnaclTranslateThread::TranslateFailed(
PP_NaClError err_code,
const nacl::string& error_string) {
PLUGIN_PRINTF(("PnaclTranslateThread::TranslateFailed (error_string='%s')\n",
error_string.c_str()));
pp::Core* core = pp::Module::Get()->core();
if (coordinator_error_info_->message().empty()) {
coordinator_error_info_->SetReport(err_code,
nacl::string("PnaclCoordinator: ") +
error_string);
}
core->CallOnMainThread(0, report_translate_finished_, PP_ERROR_FAILED);
}
void PnaclTranslateThread::AbortSubprocesses() {
PLUGIN_PRINTF(("PnaclTranslateThread::AbortSubprocesses\n"));
NaClXMutexLock(&subprocess_mu_);
if (llc_subprocess_ != NULL && llc_subprocess_active_) {
llc_subprocess_->service_runtime()->Shutdown();
llc_subprocess_active_ = false;
}
if (ld_subprocess_ != NULL && ld_subprocess_active_) {
ld_subprocess_->service_runtime()->Shutdown();
ld_subprocess_active_ = false;
}
NaClXMutexUnlock(&subprocess_mu_);
nacl::MutexLocker ml(&cond_mu_);
done_ = true;
data_buffers_.clear();
NaClXCondVarSignal(&buffer_cond_);
}
PnaclTranslateThread::~PnaclTranslateThread() {
PLUGIN_PRINTF(("~PnaclTranslateThread (translate_thread=%p)\n", this));
AbortSubprocesses();
if (translate_thread_ != NULL)
NaClThreadJoin(translate_thread_.get());
PLUGIN_PRINTF(("~PnaclTranslateThread joined\n"));
NaClCondVarDtor(&buffer_cond_);
NaClMutexDtor(&cond_mu_);
NaClMutexDtor(&subprocess_mu_);
}
}