aboutsummaryrefslogtreecommitdiff
path: root/src/dnchost
diff options
context:
space:
mode:
Diffstat (limited to 'src/dnchost')
-rw-r--r--src/dnchost/dnchost.cpp87
-rw-r--r--src/dnchost/dnchost.h8
2 files changed, 87 insertions, 8 deletions
diff --git a/src/dnchost/dnchost.cpp b/src/dnchost/dnchost.cpp
index c4b0d222..0fad58c1 100644
--- a/src/dnchost/dnchost.cpp
+++ b/src/dnchost/dnchost.cpp
@@ -20,6 +20,13 @@ static HRESULT LoadRuntime(
20static HRESULT LoadManagedBootstrapperApplicationFactory( 20static HRESULT LoadManagedBootstrapperApplicationFactory(
21 __in DNCSTATE* pState 21 __in DNCSTATE* pState
22 ); 22 );
23static HRESULT CreatePrerequisiteBA(
24 __in HRESULT hrHostInitialization,
25 __in IBootstrapperEngine* pEngine,
26 __in LPCWSTR wzAppBase,
27 __in const BOOTSTRAPPER_CREATE_ARGS* pArgs,
28 __inout BOOTSTRAPPER_CREATE_RESULTS* pResults
29 );
23 30
24 31
25// function definitions 32// function definitions
@@ -51,6 +58,7 @@ extern "C" HRESULT WINAPI BootstrapperApplicationCreate(
51 ) 58 )
52{ 59{
53 HRESULT hr = S_OK; 60 HRESULT hr = S_OK;
61 HRESULT hrHostInitialization = S_OK;
54 IBootstrapperEngine* pEngine = NULL; 62 IBootstrapperEngine* pEngine = NULL;
55 63
56 // coreclr.dll doesn't support unloading, so the rest of the .NET Core hosting stack doesn't support it either. 64 // coreclr.dll doesn't support unloading, so the rest of the .NET Core hosting stack doesn't support it either.
@@ -77,18 +85,32 @@ extern "C" HRESULT WINAPI BootstrapperApplicationCreate(
77 if (!vstate.fInitializedRuntime) 85 if (!vstate.fInitializedRuntime)
78 { 86 {
79 hr = LoadRuntime(&vstate); 87 hr = LoadRuntime(&vstate);
80 BalExitOnFailure(hr, "Failed to load .NET Core runtime.");
81
82 vstate.fInitializedRuntime = TRUE;
83 88
84 hr = LoadManagedBootstrapperApplicationFactory(&vstate); 89 vstate.fInitializedRuntime = SUCCEEDED(hr);
85 BalExitOnFailure(hr, "Failed to create the .NET Core bootstrapper application factory.");
86 } 90 }
87 91
88 BalLog(BOOTSTRAPPER_LOG_LEVEL_STANDARD, "Loading .NET Core SCD bootstrapper application."); 92 if (vstate.fInitializedRuntime)
93 {
94 if (!vstate.pAppFactory)
95 {
96 hr = LoadManagedBootstrapperApplicationFactory(&vstate);
97 BalExitOnFailure(hr, "Failed to create the .NET Core bootstrapper application factory.");
98 }
99
100 BalLog(BOOTSTRAPPER_LOG_LEVEL_STANDARD, "Loading .NET Core SCD bootstrapper application.");
101
102 hr = vstate.pAppFactory->Create(pArgs, pResults);
103 BalExitOnFailure(hr, "Failed to create the .NET Core bootstrapper application.");
104 }
105 else // fallback to the prerequisite BA.
106 {
107 hrHostInitialization = E_DNCHOST_SCD_RUNTIME_FAILURE;
108 BalLogError(hr, "The self-contained .NET Core runtime failed to load. This is an unrecoverable error.");
109 BalLog(BOOTSTRAPPER_LOG_LEVEL_STANDARD, "Loading prerequisite bootstrapper application because .NET Core host could not be loaded, error: 0x%08x.", hr);
89 110
90 hr = vstate.pAppFactory->Create(pArgs, pResults); 111 hr = CreatePrerequisiteBA(hrHostInitialization, pEngine, vstate.sczAppBase, pArgs, pResults);
91 BalExitOnFailure(hr, "Failed to create the .NET Core bootstrapper application."); 112 BalExitOnFailure(hr, "Failed to create the pre-requisite bootstrapper application.");
113 }
92 114
93LExit: 115LExit:
94 ReleaseNullObject(pEngine); 116 ReleaseNullObject(pEngine);
@@ -98,6 +120,18 @@ LExit:
98 120
99extern "C" void WINAPI BootstrapperApplicationDestroy() 121extern "C" void WINAPI BootstrapperApplicationDestroy()
100{ 122{
123 if (vstate.hMbapreqModule)
124 {
125 PFN_BOOTSTRAPPER_APPLICATION_DESTROY pfnDestroy = reinterpret_cast<PFN_BOOTSTRAPPER_APPLICATION_DESTROY>(::GetProcAddress(vstate.hMbapreqModule, "DncPrereqBootstrapperApplicationDestroy"));
126 if (pfnDestroy)
127 {
128 (*pfnDestroy)();
129 }
130
131 ::FreeLibrary(vstate.hMbapreqModule);
132 vstate.hMbapreqModule = NULL;
133 }
134
101 BalUninitialize(); 135 BalUninitialize();
102} 136}
103 137
@@ -227,3 +261,40 @@ static HRESULT LoadManagedBootstrapperApplicationFactory(
227 261
228 return hr; 262 return hr;
229} 263}
264
265static HRESULT CreatePrerequisiteBA(
266 __in HRESULT hrHostInitialization,
267 __in IBootstrapperEngine* pEngine,
268 __in LPCWSTR wzAppBase,
269 __in const BOOTSTRAPPER_CREATE_ARGS* pArgs,
270 __inout BOOTSTRAPPER_CREATE_RESULTS* pResults
271 )
272{
273 HRESULT hr = S_OK;
274 LPWSTR sczDncpreqPath = NULL;
275 HMODULE hModule = NULL;
276
277 hr = PathConcat(wzAppBase, L"dncpreq.dll", &sczDncpreqPath);
278 BalExitOnFailure(hr, "Failed to get path to pre-requisite BA.");
279
280 hModule = ::LoadLibraryW(sczDncpreqPath);
281 BalExitOnNullWithLastError(hModule, hr, "Failed to load pre-requisite BA DLL.");
282
283 PFN_DNCPREQ_BOOTSTRAPPER_APPLICATION_CREATE pfnCreate = reinterpret_cast<PFN_DNCPREQ_BOOTSTRAPPER_APPLICATION_CREATE>(::GetProcAddress(hModule, "DncPrereqBootstrapperApplicationCreate"));
284 BalExitOnNullWithLastError(pfnCreate, hr, "Failed to get DncPrereqBootstrapperApplicationCreate entry-point from: %ls", sczDncpreqPath);
285
286 hr = pfnCreate(hrHostInitialization, pEngine, pArgs, pResults);
287 BalExitOnFailure(hr, "Failed to create prequisite bootstrapper app.");
288
289 vstate.hMbapreqModule = hModule;
290 hModule = NULL;
291
292LExit:
293 if (hModule)
294 {
295 ::FreeLibrary(hModule);
296 }
297 ReleaseStr(sczDncpreqPath);
298
299 return hr;
300}
diff --git a/src/dnchost/dnchost.h b/src/dnchost/dnchost.h
index e498edaf..40c506fc 100644
--- a/src/dnchost/dnchost.h
+++ b/src/dnchost/dnchost.h
@@ -2,6 +2,13 @@
2// Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. 2// Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information.
3 3
4 4
5extern "C" typedef HRESULT(WINAPI* PFN_DNCPREQ_BOOTSTRAPPER_APPLICATION_CREATE)(
6 __in HRESULT hrHostInitialization,
7 __in IBootstrapperEngine* pEngine,
8 __in const BOOTSTRAPPER_CREATE_ARGS* pArgs,
9 __inout BOOTSTRAPPER_CREATE_RESULTS* pResults
10 );
11
5struct DNCSTATE 12struct DNCSTATE
6{ 13{
7 BOOL fInitialized; 14 BOOL fInitialized;
@@ -16,4 +23,5 @@ struct DNCSTATE
16 LPWSTR sczBaFactoryRuntimeConfigPath; 23 LPWSTR sczBaFactoryRuntimeConfigPath;
17 HOSTFXR_STATE hostfxrState; 24 HOSTFXR_STATE hostfxrState;
18 IBootstrapperApplicationFactory* pAppFactory; 25 IBootstrapperApplicationFactory* pAppFactory;
26 HMODULE hMbapreqModule;
19}; 27};