blob: b3e83d5760c7cae4154efa16f147771979369970 (
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
|
// 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 "chrome/renderer/chrome_ppapi_interfaces.h"
#include "base/logging.h"
#include "base/rand_util_c.h"
#include "base/utf_string_conversions.h"
#include "chrome/common/render_messages.h"
#include "chrome/renderer/chrome_ppb_pdf_impl.h"
#include "content/renderer/render_thread.h"
#include "ppapi/c/private/ppb_nacl_private.h"
#include "ppapi/c/private/ppb_pdf.h"
#include "webkit/plugins/ppapi/ppapi_interface_factory.h"
#if !defined(DISABLE_NACL)
#include "native_client/src/shared/imc/nacl_imc.h"
#include "native_client/src/trusted/plugin/nacl_entry_points.h"
#endif
namespace chrome {
// Launch NaCl's sel_ldr process.
bool LaunchSelLdr(const char* alleged_url, int socket_count,
void* imc_handles, void* nacl_process_handle,
int* nacl_process_id) {
#if !defined(DISABLE_NACL)
std::vector<nacl::FileDescriptor> sockets;
base::ProcessHandle nacl_process;
if (!RenderThread::current()->Send(
new ViewHostMsg_LaunchNaCl(
ASCIIToWide(alleged_url),
socket_count,
&sockets,
&nacl_process,
reinterpret_cast<base::ProcessId*>(nacl_process_id)))) {
return false;
}
CHECK(static_cast<int>(sockets.size()) == socket_count);
for (int i = 0; i < socket_count; i++) {
static_cast<nacl::Handle*>(imc_handles)[i] =
nacl::ToNativeHandle(sockets[i]);
}
*static_cast<nacl::Handle*>(nacl_process_handle) = nacl_process;
return true;
#else
return false;
#endif
}
int UrandomFD(void) {
#if defined(OS_POSIX)
return GetUrandomFD();
#else
return 0;
#endif
}
const PPB_NaCl_Private ppb_nacl = {
&LaunchSelLdr,
&UrandomFD,
};
class PPB_NaCl_Impl {
public:
// Returns a pointer to the interface implementing PPB_NaCl_Private that is
// exposed to the plugin.
static const PPB_NaCl_Private* GetInterface() {
return &ppb_nacl;
}
};
const void* ChromePPAPIInterfaceFactory(const std::string& interface_name) {
if (interface_name == PPB_NACL_PRIVATE_INTERFACE)
return chrome::PPB_NaCl_Impl::GetInterface();
if (interface_name == PPB_PDF_INTERFACE)
return chrome::PPB_PDF_Impl::GetInterface();
return NULL;
}
void InitializePPAPI() {
webkit::ppapi::PpapiInterfaceFactoryManager* factory_manager =
webkit::ppapi::PpapiInterfaceFactoryManager::GetInstance();
factory_manager->RegisterFactory(ChromePPAPIInterfaceFactory);
}
void UninitializePPAPI() {
webkit::ppapi::PpapiInterfaceFactoryManager* factory_manager =
webkit::ppapi::PpapiInterfaceFactoryManager::GetInstance();
factory_manager->UnregisterFactory(ChromePPAPIInterfaceFactory);
}
} // namespace chrome
|