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
|
/*
* Copyright 2014 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 "native_client/src/public/irt_core.h"
#include "native_client/src/untrusted/irt/irt.h"
#include "native_client/src/untrusted/irt/irt_private.h"
#include "ppapi/nacl_irt/irt_ppapi.h"
#include "ppapi/native_client/src/shared/ppapi_proxy/ppruntime.h"
struct PP_StartFunctions g_pp_functions;
static int irt_ppapi_start(const struct PP_StartFunctions* funcs) {
/* Disable NaCl's open_resource() interface on this thread. */
g_is_main_thread = 1;
g_pp_functions = *funcs;
return PpapiPluginMain();
}
int32_t PPP_InitializeModule(PP_Module module_id,
PPB_GetInterface get_browser_interface) {
return g_pp_functions.PPP_InitializeModule(module_id, get_browser_interface);
}
void PPP_ShutdownModule(void) {
g_pp_functions.PPP_ShutdownModule();
}
const void* PPP_GetInterface(const char* interface_name) {
return g_pp_functions.PPP_GetInterface(interface_name);
}
/*
* TODO(mseaborn): This can be made static when the NaCl side no
* longer refers to it.
*/
const struct nacl_irt_ppapihook nacl_irt_ppapihook = {
irt_ppapi_start,
PpapiPluginRegisterThreadCreator,
};
static const struct nacl_irt_interface irt_interfaces[] = {
{ NACL_IRT_PPAPIHOOK_v0_1, &nacl_irt_ppapihook, sizeof(nacl_irt_ppapihook),
NULL },
};
static size_t chrome_irt_query(const char* interface_ident,
void* table, size_t tablesize) {
size_t result = nacl_irt_query_core(interface_ident, table, tablesize);
if (result != 0)
return result;
return nacl_irt_query_list(interface_ident, table, tablesize,
irt_interfaces, sizeof(irt_interfaces));
}
void nacl_irt_start(uint32_t* info) {
nacl_irt_init(info);
nacl_irt_enter_user_code(info, chrome_irt_query);
}
|