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

Side by Side Diff: src/untrusted/irt/irt_ppapi.c

Issue 10826171: Incorporate shimming into the irt (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client/
Patch Set: Created 8 years, 3 months 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2012 The Native Client Authors. All rights reserved. 2 * Copyright (c) 2012 The Native Client Authors. All rights reserved.
3 * Use of this source code is governed by a BSD-style license that can be 3 * Use of this source code is governed by a BSD-style license that can be
4 * found in the LICENSE file. 4 * found in the LICENSE file.
5 */ 5 */
6 6
7 #include "native_client/src/shared/ppapi_proxy/ppruntime.h" 7 #include "native_client/src/shared/ppapi_proxy/ppruntime.h"
8 #include "native_client/src/untrusted/irt/irt.h" 8 #include "native_client/src/untrusted/irt/irt.h"
9 #include "native_client/src/untrusted/irt/irt_interfaces.h"
9 #include "native_client/src/untrusted/irt/irt_ppapi.h" 10 #include "native_client/src/untrusted/irt/irt_ppapi.h"
10 #include "native_client/src/untrusted/irt/irt_private.h" 11 #include "native_client/src/untrusted/irt/irt_private.h"
11 12
13 #include "ppapi/generators/pnacl_shim.h"
14
12 struct PP_StartFunctions g_pp_functions; 15 struct PP_StartFunctions g_pp_functions;
13 16
17 /* register entry points to untrusted pepper plugin */
14 static int irt_ppapi_start(const struct PP_StartFunctions *funcs) { 18 static int irt_ppapi_start(const struct PP_StartFunctions *funcs) {
15 g_pp_functions = *funcs; 19 g_pp_functions = *funcs;
16 g_is_main_thread = 1; 20 g_is_main_thread = 1;
17 return PpapiPluginMain(); 21 return PpapiPluginMain();
18 } 22 }
19 23
20 int32_t PPP_InitializeModule(PP_Module module_id, 24 int32_t PPP_InitializeModule(PP_Module module_id,
21 PPB_GetInterface get_browser_interface) { 25 PPB_GetInterface get_browser_interface) {
22 return g_pp_functions.PPP_InitializeModule(module_id, get_browser_interface); 26 return g_pp_functions.PPP_InitializeModule(module_id, get_browser_interface);
23 } 27 }
(...skipping 11 matching lines...) Expand all
35 * TODO(mseaborn): Remove this when PPAPI is only supported via the IRT. 39 * TODO(mseaborn): Remove this when PPAPI is only supported via the IRT.
36 * See http://code.google.com/p/nativeclient/issues/detail?id=1691 40 * See http://code.google.com/p/nativeclient/issues/detail?id=1691
37 */ 41 */
38 void PpapiPluginRegisterDefaultThreadCreator() { 42 void PpapiPluginRegisterDefaultThreadCreator() {
39 } 43 }
40 44
41 const struct nacl_irt_ppapihook nacl_irt_ppapihook = { 45 const struct nacl_irt_ppapihook nacl_irt_ppapihook = {
42 irt_ppapi_start, 46 irt_ppapi_start,
43 PpapiPluginRegisterThreadCreator, 47 PpapiPluginRegisterThreadCreator,
44 }; 48 };
49
50
51 /*
52 * PNaCl Shimming magic
53 * ====================
54 * Note: this could be simplified by changing the actual
55 * GetInterface functions but for now we rely on some autogenerated files.
56 *
57 * Some background:
58 * PNaCl has calling conventions which are slightly different from nacl-gcc.
59 * This affects structure passing on x86-64 which is only used by PPAPI
60 * functions.
61 * There are two functions which are relevant:
62 * PPP_GetInterface and PPB_GetInterface.
63 * We intercept those functions, store the old version and then redirect
64 * to __Pnacl_PPPGetInterface and __Pnacl_PPBGetInterface.
65 */
66
67 /* Holds the orginial PP_StartFunctions data if shimming is enabled. */
68 static struct PP_StartFunctions g_pp_functions_non_shim;
69
70 static int32_t PPP_InitializeModule_cc_shim(
71 PP_Module module_id,
72 PPB_GetInterface get_browser_intface) {
73 /* save old version of PPB_GetInterface */
74 __set_real_Pnacl_PPBGetInterface(get_browser_intface);
75 /* redirect to new version of PPB_GetInterface */
76 return g_pp_functions_non_shim.PPP_InitializeModule(
77 module_id, &__Pnacl_PPBGetInterface);
78 }
79
80 static void PPP_ShutdownModule_cc_shim() {
81 /* redirect to non-shimmed version */
Mark Seaborn 2012/08/28 18:57:07 My earlier comment that sentences should start wit
Robert Muth (chromium) 2012/08/28 20:22:46 Done.
82 g_pp_functions_non_shim.PPP_ShutdownModule();
83 }
84
85 static const void *PPP_GetInterface_cc_shim(const char *interface_name) {
86 /* redirect to new version of PPP_GetInterface */
87 return __Pnacl_PPPGetInterface(interface_name);
88 }
89
90 static struct PP_StartFunctions g_pp_functions_cc_shim = {
91 PPP_InitializeModule_cc_shim,
92 PPP_ShutdownModule_cc_shim,
93 PPP_GetInterface_cc_shim
94 };
95
96 /*
97 * This function is called by nexe module to advertise its API
98 * to Chrome.
99 * We need to shim all these functions and *also* do some extra bookeeping
100 * work so we sneak in our own replacements g_pp_functions_cc_shim
101 * which in turn call the original functions.
102 */
103 static int irt_ppapi_start_shimmed(const struct PP_StartFunctions *funcs) {
104 /* save old version of PPP_GetInterface */
105 __set_real_Pnacl_PPPGetInterface(funcs->PPP_GetInterface);
106 g_pp_functions_non_shim = *funcs;
107 return irt_ppapi_start(g_pp_functions_cc_shim);
Mark Seaborn 2012/08/28 18:57:07 This line has a compile failure
Robert Muth (chromium) 2012/08/28 20:22:46 Done.
108 }
109
110 const struct nacl_irt_ppapihook nacl_irt_ppapihook_shimmed = {
111 irt_ppapi_start_shimmed,
112 PpapiPluginRegisterThreadCreator,
113 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698