mscoree: Always call mono_thread_attach before invoking managed code.
[wine/multimedia.git] / dlls / mscoree / metahost.c
blob1296e37342a9f46c44e0121d3eeed796bc8bb6d1
1 /*
2 * ICLRMetaHost - discovery and management of available .NET runtimes
4 * Copyright 2010 Vincent Povirk for CodeWeavers
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
21 #include <stdio.h>
22 #include <stdarg.h>
23 #include <assert.h>
25 #define COBJMACROS
27 #include "wine/unicode.h"
28 #include "wine/library.h"
29 #include "windef.h"
30 #include "winbase.h"
31 #include "winreg.h"
32 #include "ole2.h"
34 #include "corerror.h"
35 #include "cor.h"
36 #include "mscoree.h"
37 #include "corhdr.h"
38 #include "cordebug.h"
39 #include "metahost.h"
40 #include "fusion.h"
41 #include "wine/list.h"
42 #include "mscoree_private.h"
44 #include "wine/debug.h"
46 WINE_DEFAULT_DEBUG_CHANNEL( mscoree );
48 static const WCHAR net_11_subdir[] = {'1','.','0',0};
49 static const WCHAR net_20_subdir[] = {'2','.','0',0};
50 static const WCHAR net_40_subdir[] = {'4','.','0',0};
52 static const struct ICLRRuntimeInfoVtbl CLRRuntimeInfoVtbl;
54 #define NUM_RUNTIMES 3
56 static struct CLRRuntimeInfo runtimes[NUM_RUNTIMES] = {
57 {{&CLRRuntimeInfoVtbl}, net_11_subdir, 1, 1, 4322, 0},
58 {{&CLRRuntimeInfoVtbl}, net_20_subdir, 2, 0, 50727, 0},
59 {{&CLRRuntimeInfoVtbl}, net_40_subdir, 4, 0, 30319, 0}
62 static int runtimes_initialized;
64 static CRITICAL_SECTION runtime_list_cs;
65 static CRITICAL_SECTION_DEBUG runtime_list_cs_debug =
67 0, 0, &runtime_list_cs,
68 { &runtime_list_cs_debug.ProcessLocksList,
69 &runtime_list_cs_debug.ProcessLocksList },
70 0, 0, { (DWORD_PTR)(__FILE__ ": runtime_list_cs") }
72 static CRITICAL_SECTION runtime_list_cs = { &runtime_list_cs_debug, -1, 0, 0, 0, 0 };
74 #define NUM_ABI_VERSIONS 2
76 static loaded_mono loaded_monos[NUM_ABI_VERSIONS];
78 static BOOL find_mono_dll(LPCWSTR path, LPWSTR dll_path, int abi_version);
80 static MonoAssembly* mono_assembly_search_hook_fn(MonoAssemblyName *aname, char **assemblies_path, void *user_data);
82 static void mono_shutdown_callback_fn(MonoProfiler *prof);
84 static void set_environment(LPCWSTR bin_path)
86 WCHAR path_env[MAX_PATH];
87 int len;
89 static const WCHAR pathW[] = {'P','A','T','H',0};
91 /* We have to modify PATH as Mono loads other DLLs from this directory. */
92 GetEnvironmentVariableW(pathW, path_env, sizeof(path_env)/sizeof(WCHAR));
93 len = strlenW(path_env);
94 path_env[len++] = ';';
95 strcpyW(path_env+len, bin_path);
96 SetEnvironmentVariableW(pathW, path_env);
99 static void CDECL do_nothing(void)
103 static void missing_runtime_message(const CLRRuntimeInfo *This)
105 if (This->major == 1)
106 MESSAGE("wine: Install Mono 2.6 for Windows to run .NET 1.1 applications.\n");
107 else if (This->major == 2)
108 MESSAGE("wine: Install Mono for Windows to run .NET 2.0 applications.\n");
109 else if (This->major == 4)
110 MESSAGE("wine: Install Mono 2.8 or greater for Windows to run .NET 4.0 applications.\n");
113 static HRESULT load_mono(CLRRuntimeInfo *This, loaded_mono **result)
115 static const WCHAR bin[] = {'\\','b','i','n',0};
116 static const WCHAR lib[] = {'\\','l','i','b',0};
117 static const WCHAR etc[] = {'\\','e','t','c',0};
118 static const WCHAR glibdll[] = {'l','i','b','g','l','i','b','-','2','.','0','-','0','.','d','l','l',0};
119 WCHAR mono_dll_path[MAX_PATH+16], mono_bin_path[MAX_PATH+4];
120 WCHAR mono_lib_path[MAX_PATH+4], mono_etc_path[MAX_PATH+4];
121 char mono_lib_path_a[MAX_PATH], mono_etc_path_a[MAX_PATH];
122 int trace_size;
123 char trace_setting[256];
125 if (This->mono_abi_version <= 0 || This->mono_abi_version > NUM_ABI_VERSIONS)
127 missing_runtime_message(This);
128 return E_FAIL;
131 *result = &loaded_monos[This->mono_abi_version-1];
133 if ((*result)->is_shutdown)
135 ERR("Cannot load Mono after it has been shut down.\n");
136 *result = NULL;
137 return E_FAIL;
140 if (!(*result)->mono_handle)
142 strcpyW(mono_bin_path, This->mono_path);
143 strcatW(mono_bin_path, bin);
144 set_environment(mono_bin_path);
146 strcpyW(mono_lib_path, This->mono_path);
147 strcatW(mono_lib_path, lib);
148 WideCharToMultiByte(CP_UTF8, 0, mono_lib_path, -1, mono_lib_path_a, MAX_PATH, NULL, NULL);
150 strcpyW(mono_etc_path, This->mono_path);
151 strcatW(mono_etc_path, etc);
152 WideCharToMultiByte(CP_UTF8, 0, mono_etc_path, -1, mono_etc_path_a, MAX_PATH, NULL, NULL);
154 if (!find_mono_dll(This->mono_path, mono_dll_path, This->mono_abi_version)) goto fail;
156 (*result)->mono_handle = LoadLibraryW(mono_dll_path);
158 if (!(*result)->mono_handle) goto fail;
160 #define LOAD_MONO_FUNCTION(x) do { \
161 (*result)->x = (void*)GetProcAddress((*result)->mono_handle, #x); \
162 if (!(*result)->x) { \
163 goto fail; \
165 } while (0);
167 LOAD_MONO_FUNCTION(mono_assembly_get_image);
168 LOAD_MONO_FUNCTION(mono_assembly_open);
169 LOAD_MONO_FUNCTION(mono_config_parse);
170 LOAD_MONO_FUNCTION(mono_class_from_mono_type);
171 LOAD_MONO_FUNCTION(mono_class_from_name);
172 LOAD_MONO_FUNCTION(mono_class_get_method_from_name);
173 LOAD_MONO_FUNCTION(mono_domain_assembly_open);
174 LOAD_MONO_FUNCTION(mono_install_assembly_preload_hook);
175 LOAD_MONO_FUNCTION(mono_jit_exec);
176 LOAD_MONO_FUNCTION(mono_jit_init);
177 LOAD_MONO_FUNCTION(mono_jit_set_trace_options);
178 LOAD_MONO_FUNCTION(mono_object_get_domain);
179 LOAD_MONO_FUNCTION(mono_object_new);
180 LOAD_MONO_FUNCTION(mono_object_unbox);
181 LOAD_MONO_FUNCTION(mono_profiler_install);
182 LOAD_MONO_FUNCTION(mono_reflection_type_from_name);
183 LOAD_MONO_FUNCTION(mono_runtime_invoke);
184 LOAD_MONO_FUNCTION(mono_runtime_object_init);
185 LOAD_MONO_FUNCTION(mono_runtime_quit);
186 LOAD_MONO_FUNCTION(mono_set_dirs);
187 LOAD_MONO_FUNCTION(mono_stringify_assembly_name);
188 LOAD_MONO_FUNCTION(mono_string_new);
189 LOAD_MONO_FUNCTION(mono_thread_attach);
191 /* GLib imports obsoleted by the 2.0 ABI */
192 if (This->mono_abi_version == 1)
194 (*result)->glib_handle = LoadLibraryW(glibdll);
195 if (!(*result)->glib_handle) goto fail;
197 (*result)->mono_free = (void*)GetProcAddress((*result)->glib_handle, "g_free");
198 if (!(*result)->mono_free) goto fail;
200 else
202 LOAD_MONO_FUNCTION(mono_free);
205 #undef LOAD_MONO_FUNCTION
207 #define LOAD_OPT_VOID_MONO_FUNCTION(x) do { \
208 (*result)->x = (void*)GetProcAddress((*result)->mono_handle, #x); \
209 if (!(*result)->x) { \
210 (*result)->x = do_nothing; \
212 } while (0);
214 LOAD_OPT_VOID_MONO_FUNCTION(mono_runtime_set_shutting_down);
215 LOAD_OPT_VOID_MONO_FUNCTION(mono_thread_pool_cleanup);
216 LOAD_OPT_VOID_MONO_FUNCTION(mono_thread_suspend_all_other_threads);
217 LOAD_OPT_VOID_MONO_FUNCTION(mono_threads_set_shutting_down);
219 #undef LOAD_OPT_VOID_MONO_FUNCTION
221 (*result)->mono_profiler_install((MonoProfiler*)*result, mono_shutdown_callback_fn);
223 (*result)->mono_set_dirs(mono_lib_path_a, mono_etc_path_a);
225 (*result)->mono_config_parse(NULL);
227 (*result)->mono_install_assembly_preload_hook(mono_assembly_search_hook_fn, *result);
229 trace_size = GetEnvironmentVariableA("WINE_MONO_TRACE", trace_setting, sizeof(trace_setting));
231 if (trace_size)
233 (*result)->mono_jit_set_trace_options(trace_setting);
237 return S_OK;
239 fail:
240 ERR("Could not load Mono into this process\n");
241 FreeLibrary((*result)->mono_handle);
242 FreeLibrary((*result)->glib_handle);
243 (*result)->mono_handle = NULL;
244 (*result)->glib_handle = NULL;
245 return E_FAIL;
248 static void mono_shutdown_callback_fn(MonoProfiler *prof)
250 loaded_mono *mono = (loaded_mono*)prof;
252 mono->is_shutdown = TRUE;
255 static HRESULT CLRRuntimeInfo_GetRuntimeHost(CLRRuntimeInfo *This, RuntimeHost **result)
257 HRESULT hr = S_OK;
258 loaded_mono *ploaded_mono;
260 if (This->loaded_runtime)
262 *result = This->loaded_runtime;
263 return hr;
266 EnterCriticalSection(&runtime_list_cs);
268 hr = load_mono(This, &ploaded_mono);
270 if (SUCCEEDED(hr))
271 hr = RuntimeHost_Construct(This, ploaded_mono, &This->loaded_runtime);
273 LeaveCriticalSection(&runtime_list_cs);
275 if (SUCCEEDED(hr))
276 *result = This->loaded_runtime;
278 return hr;
281 void unload_all_runtimes(void)
283 int i;
285 for (i=0; i<NUM_ABI_VERSIONS; i++)
287 loaded_mono *mono = &loaded_monos[i];
288 if (mono->mono_handle && mono->is_started && !mono->is_shutdown)
290 /* Copied from Mono's ves_icall_System_Environment_Exit */
291 mono->mono_threads_set_shutting_down();
292 mono->mono_runtime_set_shutting_down();
293 mono->mono_thread_pool_cleanup();
294 mono->mono_thread_suspend_all_other_threads();
295 mono->mono_runtime_quit();
299 for (i=0; i<NUM_RUNTIMES; i++)
300 if (runtimes[i].loaded_runtime)
301 RuntimeHost_Destroy(runtimes[i].loaded_runtime);
304 void expect_no_runtimes(void)
306 int i;
308 for (i=0; i<NUM_ABI_VERSIONS; i++)
310 loaded_mono *mono = &loaded_monos[i];
311 if (mono->mono_handle && mono->is_started && !mono->is_shutdown)
313 ERR("Process exited with a Mono runtime loaded.\n");
314 return;
319 static inline CLRRuntimeInfo *impl_from_ICLRRuntimeInfo(ICLRRuntimeInfo *iface)
321 return CONTAINING_RECORD(iface, CLRRuntimeInfo, ICLRRuntimeInfo_iface);
324 static HRESULT WINAPI CLRRuntimeInfo_QueryInterface(ICLRRuntimeInfo* iface,
325 REFIID riid,
326 void **ppvObject)
328 TRACE("%p %s %p\n", iface, debugstr_guid(riid), ppvObject);
330 if ( IsEqualGUID( riid, &IID_ICLRRuntimeInfo ) ||
331 IsEqualGUID( riid, &IID_IUnknown ) )
333 *ppvObject = iface;
335 else
337 FIXME("Unsupported interface %s\n", debugstr_guid(riid));
338 return E_NOINTERFACE;
341 ICLRRuntimeInfo_AddRef( iface );
343 return S_OK;
346 static ULONG WINAPI CLRRuntimeInfo_AddRef(ICLRRuntimeInfo* iface)
348 return 2;
351 static ULONG WINAPI CLRRuntimeInfo_Release(ICLRRuntimeInfo* iface)
353 return 1;
356 static HRESULT WINAPI CLRRuntimeInfo_GetVersionString(ICLRRuntimeInfo* iface,
357 LPWSTR pwzBuffer, DWORD *pcchBuffer)
359 struct CLRRuntimeInfo *This = impl_from_ICLRRuntimeInfo(iface);
360 DWORD buffer_size = *pcchBuffer;
361 HRESULT hr = S_OK;
362 char version[11];
363 DWORD size;
365 TRACE("%p %p %p\n", iface, pwzBuffer, pcchBuffer);
367 size = snprintf(version, sizeof(version), "v%u.%u.%u", This->major, This->minor, This->build);
369 assert(size <= sizeof(version));
371 *pcchBuffer = MultiByteToWideChar(CP_UTF8, 0, version, -1, NULL, 0);
373 if (pwzBuffer)
375 if (buffer_size >= *pcchBuffer)
376 MultiByteToWideChar(CP_UTF8, 0, version, -1, pwzBuffer, buffer_size);
377 else
378 hr = HRESULT_FROM_WIN32(ERROR_INSUFFICIENT_BUFFER);
381 return hr;
384 static BOOL get_install_root(LPWSTR install_dir)
386 const WCHAR dotnet_key[] = {'S','O','F','T','W','A','R','E','\\','M','i','c','r','o','s','o','f','t','\\','.','N','E','T','F','r','a','m','e','w','o','r','k','\\',0};
387 const WCHAR install_root[] = {'I','n','s','t','a','l','l','R','o','o','t',0};
389 DWORD len;
390 HKEY key;
392 if (RegOpenKeyExW(HKEY_LOCAL_MACHINE, dotnet_key, 0, KEY_READ, &key))
393 return FALSE;
395 len = MAX_PATH;
396 if (RegQueryValueExW(key, install_root, 0, NULL, (LPBYTE)install_dir, &len))
398 RegCloseKey(key);
399 return FALSE;
401 RegCloseKey(key);
403 return TRUE;
406 static HRESULT WINAPI CLRRuntimeInfo_GetRuntimeDirectory(ICLRRuntimeInfo* iface,
407 LPWSTR pwzBuffer, DWORD *pcchBuffer)
409 static const WCHAR slash[] = {'\\',0};
410 DWORD buffer_size = *pcchBuffer;
411 WCHAR system_dir[MAX_PATH];
412 WCHAR version[MAX_PATH];
413 DWORD version_size, size;
414 HRESULT hr = S_OK;
416 TRACE("%p %p %p\n", iface, pwzBuffer, pcchBuffer);
418 if (!get_install_root(system_dir))
420 ERR("error reading registry key for installroot\n");
421 return E_FAIL;
423 else
425 version_size = MAX_PATH;
426 ICLRRuntimeInfo_GetVersionString(iface, version, &version_size);
427 lstrcatW(system_dir, version);
428 lstrcatW(system_dir, slash);
429 size = lstrlenW(system_dir) + 1;
432 *pcchBuffer = size;
434 if (pwzBuffer)
436 if (buffer_size >= size)
437 strcpyW(pwzBuffer, system_dir);
438 else
439 hr = HRESULT_FROM_WIN32(ERROR_INSUFFICIENT_BUFFER);
442 return hr;
445 static HRESULT WINAPI CLRRuntimeInfo_IsLoaded(ICLRRuntimeInfo* iface,
446 HANDLE hndProcess, BOOL *pbLoaded)
448 FIXME("%p %p %p\n", iface, hndProcess, pbLoaded);
450 return E_NOTIMPL;
453 static HRESULT WINAPI CLRRuntimeInfo_LoadErrorString(ICLRRuntimeInfo* iface,
454 UINT iResourceID, LPWSTR pwzBuffer, DWORD *pcchBuffer, LONG iLocaleid)
456 FIXME("%p %u %p %p %x\n", iface, iResourceID, pwzBuffer, pcchBuffer, iLocaleid);
458 return E_NOTIMPL;
461 static HRESULT WINAPI CLRRuntimeInfo_LoadLibrary(ICLRRuntimeInfo* iface,
462 LPCWSTR pwzDllName, HMODULE *phndModule)
464 WCHAR version[MAX_PATH];
465 HRESULT hr;
466 DWORD cchBuffer;
468 TRACE("%p %s %p\n", iface, debugstr_w(pwzDllName), phndModule);
470 cchBuffer = MAX_PATH;
471 hr = ICLRRuntimeInfo_GetVersionString(iface, version, &cchBuffer);
472 if (FAILED(hr)) return hr;
474 return LoadLibraryShim(pwzDllName, version, NULL, phndModule);
477 static HRESULT WINAPI CLRRuntimeInfo_GetProcAddress(ICLRRuntimeInfo* iface,
478 LPCSTR pszProcName, LPVOID *ppProc)
480 FIXME("%p %s %p\n", iface, debugstr_a(pszProcName), ppProc);
482 return E_NOTIMPL;
485 static HRESULT WINAPI CLRRuntimeInfo_GetInterface(ICLRRuntimeInfo* iface,
486 REFCLSID rclsid, REFIID riid, LPVOID *ppUnk)
488 struct CLRRuntimeInfo *This = impl_from_ICLRRuntimeInfo(iface);
489 RuntimeHost *host;
490 HRESULT hr;
492 TRACE("%p %s %s %p\n", iface, debugstr_guid(rclsid), debugstr_guid(riid), ppUnk);
494 hr = CLRRuntimeInfo_GetRuntimeHost(This, &host);
496 if (SUCCEEDED(hr))
497 hr = RuntimeHost_GetInterface(host, rclsid, riid, ppUnk);
499 return hr;
502 static HRESULT WINAPI CLRRuntimeInfo_IsLoadable(ICLRRuntimeInfo* iface,
503 BOOL *pbLoadable)
505 FIXME("%p %p\n", iface, pbLoadable);
507 return E_NOTIMPL;
510 static HRESULT WINAPI CLRRuntimeInfo_SetDefaultStartupFlags(ICLRRuntimeInfo* iface,
511 DWORD dwStartupFlags, LPCWSTR pwzHostConfigFile)
513 FIXME("%p %x %s\n", iface, dwStartupFlags, debugstr_w(pwzHostConfigFile));
515 return E_NOTIMPL;
518 static HRESULT WINAPI CLRRuntimeInfo_GetDefaultStartupFlags(ICLRRuntimeInfo* iface,
519 DWORD *pdwStartupFlags, LPWSTR pwzHostConfigFile, DWORD *pcchHostConfigFile)
521 FIXME("%p %p %p %p\n", iface, pdwStartupFlags, pwzHostConfigFile, pcchHostConfigFile);
523 return E_NOTIMPL;
526 static HRESULT WINAPI CLRRuntimeInfo_BindAsLegacyV2Runtime(ICLRRuntimeInfo* iface)
528 FIXME("%p\n", iface);
530 return E_NOTIMPL;
533 static HRESULT WINAPI CLRRuntimeInfo_IsStarted(ICLRRuntimeInfo* iface,
534 BOOL *pbStarted, DWORD *pdwStartupFlags)
536 FIXME("%p %p %p\n", iface, pbStarted, pdwStartupFlags);
538 return E_NOTIMPL;
541 static const struct ICLRRuntimeInfoVtbl CLRRuntimeInfoVtbl = {
542 CLRRuntimeInfo_QueryInterface,
543 CLRRuntimeInfo_AddRef,
544 CLRRuntimeInfo_Release,
545 CLRRuntimeInfo_GetVersionString,
546 CLRRuntimeInfo_GetRuntimeDirectory,
547 CLRRuntimeInfo_IsLoaded,
548 CLRRuntimeInfo_LoadErrorString,
549 CLRRuntimeInfo_LoadLibrary,
550 CLRRuntimeInfo_GetProcAddress,
551 CLRRuntimeInfo_GetInterface,
552 CLRRuntimeInfo_IsLoadable,
553 CLRRuntimeInfo_SetDefaultStartupFlags,
554 CLRRuntimeInfo_GetDefaultStartupFlags,
555 CLRRuntimeInfo_BindAsLegacyV2Runtime,
556 CLRRuntimeInfo_IsStarted
559 HRESULT ICLRRuntimeInfo_GetRuntimeHost(ICLRRuntimeInfo *iface, RuntimeHost **result)
561 struct CLRRuntimeInfo *This = impl_from_ICLRRuntimeInfo(iface);
563 assert(This->ICLRRuntimeInfo_iface.lpVtbl == &CLRRuntimeInfoVtbl);
565 return CLRRuntimeInfo_GetRuntimeHost(This, result);
568 #ifdef __i386__
569 static const WCHAR libmono2_arch_dll[] = {'\\','b','i','n','\\','l','i','b','m','o','n','o','-','2','.','0','-','x','8','6','.','d','l','l',0};
570 #elif defined(__x86_64__)
571 static const WCHAR libmono2_arch_dll[] = {'\\','b','i','n','\\','l','i','b','m','o','n','o','-','2','.','0','-','x','8','6','_','6','4','.','d','l','l',0};
572 #else
573 static const WCHAR libmono2_arch_dll[] = {'\\','b','i','n','\\','l','i','b','m','o','n','o','-','2','.','0','.','d','l','l',0};
574 #endif
576 static BOOL find_mono_dll(LPCWSTR path, LPWSTR dll_path, int abi_version)
578 static const WCHAR mono_dll[] = {'\\','b','i','n','\\','m','o','n','o','.','d','l','l',0};
579 static const WCHAR libmono_dll[] = {'\\','b','i','n','\\','l','i','b','m','o','n','o','.','d','l','l',0};
580 static const WCHAR mono2_dll[] = {'\\','b','i','n','\\','m','o','n','o','-','2','.','0','.','d','l','l',0};
581 static const WCHAR libmono2_dll[] = {'\\','b','i','n','\\','l','i','b','m','o','n','o','-','2','.','0','.','d','l','l',0};
582 DWORD attributes=INVALID_FILE_ATTRIBUTES;
584 if (abi_version == 1)
586 strcpyW(dll_path, path);
587 strcatW(dll_path, mono_dll);
588 attributes = GetFileAttributesW(dll_path);
590 if (attributes == INVALID_FILE_ATTRIBUTES)
592 strcpyW(dll_path, path);
593 strcatW(dll_path, libmono_dll);
594 attributes = GetFileAttributesW(dll_path);
597 else if (abi_version == 2)
599 strcpyW(dll_path, path);
600 strcatW(dll_path, libmono2_arch_dll);
601 attributes = GetFileAttributesW(dll_path);
603 if (attributes == INVALID_FILE_ATTRIBUTES)
605 strcpyW(dll_path, path);
606 strcatW(dll_path, mono2_dll);
607 attributes = GetFileAttributesW(dll_path);
610 if (attributes == INVALID_FILE_ATTRIBUTES)
612 strcpyW(dll_path, path);
613 strcatW(dll_path, libmono2_dll);
614 attributes = GetFileAttributesW(dll_path);
618 return (attributes != INVALID_FILE_ATTRIBUTES);
621 static BOOL get_mono_path_from_registry(LPWSTR path, int abi_version)
623 static const WCHAR mono_key[] = {'S','o','f','t','w','a','r','e','\\','N','o','v','e','l','l','\\','M','o','n','o',0};
624 static const WCHAR defaul_clr[] = {'D','e','f','a','u','l','t','C','L','R',0};
625 static const WCHAR install_root[] = {'S','d','k','I','n','s','t','a','l','l','R','o','o','t',0};
626 static const WCHAR slash[] = {'\\',0};
628 WCHAR version[64], version_key[MAX_PATH];
629 DWORD len;
630 HKEY key;
631 WCHAR dll_path[MAX_PATH];
633 if (RegOpenKeyExW(HKEY_LOCAL_MACHINE, mono_key, 0, KEY_READ, &key))
634 return FALSE;
636 len = sizeof(version);
637 if (RegQueryValueExW(key, defaul_clr, 0, NULL, (LPBYTE)version, &len))
639 RegCloseKey(key);
640 return FALSE;
642 RegCloseKey(key);
644 lstrcpyW(version_key, mono_key);
645 lstrcatW(version_key, slash);
646 lstrcatW(version_key, version);
648 if (RegOpenKeyExW(HKEY_LOCAL_MACHINE, version_key, 0, KEY_READ, &key))
649 return FALSE;
651 len = sizeof(WCHAR) * MAX_PATH;
652 if (RegQueryValueExW(key, install_root, 0, NULL, (LPBYTE)path, &len))
654 RegCloseKey(key);
655 return FALSE;
657 RegCloseKey(key);
659 return find_mono_dll(path, dll_path, abi_version);
662 static BOOL get_mono_path_from_folder(LPCWSTR folder, LPWSTR mono_path, int abi_version)
664 static const WCHAR mono_one_dot_zero[] = {'\\','m','o','n','o','-','1','.','0', 0};
665 static const WCHAR mono_two_dot_zero[] = {'\\','m','o','n','o','-','2','.','0', 0};
666 WCHAR mono_dll_path[MAX_PATH];
667 BOOL found = FALSE;
669 strcpyW(mono_path, folder);
671 if (abi_version == 1)
672 strcatW(mono_path, mono_one_dot_zero);
673 else if (abi_version == 2)
674 strcatW(mono_path, mono_two_dot_zero);
676 found = find_mono_dll(mono_path, mono_dll_path, abi_version);
678 return found;
681 static BOOL get_mono_path(LPWSTR path, int abi_version)
683 static const WCHAR subdir_mono[] = {'\\','m','o','n','o',0};
684 static const WCHAR sibling_mono[] = {'\\','.','.','\\','m','o','n','o',0};
685 WCHAR base_path[MAX_PATH];
686 const char *unix_data_dir;
687 WCHAR *dos_data_dir;
688 int build_tree=0;
689 static WCHAR* (CDECL *wine_get_dos_file_name)(const char*);
691 /* First try c:\windows\mono */
692 GetWindowsDirectoryW(base_path, MAX_PATH);
693 strcatW(base_path, subdir_mono);
695 if (get_mono_path_from_folder(base_path, path, abi_version))
696 return TRUE;
698 /* Next: /usr/share/wine/mono */
699 unix_data_dir = wine_get_data_dir();
701 if (!unix_data_dir)
703 unix_data_dir = wine_get_build_dir();
704 build_tree = 1;
707 if (unix_data_dir)
709 if (!wine_get_dos_file_name)
710 wine_get_dos_file_name = (void*)GetProcAddress(GetModuleHandleA("kernel32"), "wine_get_dos_file_name");
712 if (wine_get_dos_file_name)
714 dos_data_dir = wine_get_dos_file_name(unix_data_dir);
716 if (dos_data_dir)
718 strcpyW(base_path, dos_data_dir);
719 strcatW(base_path, build_tree ? sibling_mono : subdir_mono);
721 HeapFree(GetProcessHeap(), 0, dos_data_dir);
723 if (get_mono_path_from_folder(base_path, path, abi_version))
724 return TRUE;
729 /* Last: the registry */
730 return get_mono_path_from_registry(path, abi_version);
733 static void find_runtimes(void)
735 int abi_version, i;
736 static const WCHAR libmono[] = {'\\','l','i','b','\\','m','o','n','o','\\',0};
737 static const WCHAR mscorlib[] = {'\\','m','s','c','o','r','l','i','b','.','d','l','l',0};
738 WCHAR mono_path[MAX_PATH], lib_path[MAX_PATH];
739 BOOL any_runtimes_found = FALSE;
741 if (runtimes_initialized) return;
743 EnterCriticalSection(&runtime_list_cs);
745 if (runtimes_initialized) goto end;
747 for (abi_version=NUM_ABI_VERSIONS; abi_version>0; abi_version--)
749 if (!get_mono_path(mono_path, abi_version))
750 continue;
752 for (i=0; i<NUM_RUNTIMES; i++)
754 if (runtimes[i].mono_abi_version == 0)
756 strcpyW(lib_path, mono_path);
757 strcatW(lib_path, libmono);
758 strcatW(lib_path, runtimes[i].mono_libdir);
759 strcatW(lib_path, mscorlib);
761 if (GetFileAttributesW(lib_path) != INVALID_FILE_ATTRIBUTES)
763 runtimes[i].mono_abi_version = abi_version;
765 strcpyW(runtimes[i].mono_path, mono_path);
766 strcpyW(runtimes[i].mscorlib_path, lib_path);
768 any_runtimes_found = TRUE;
774 if (!any_runtimes_found)
776 /* Report all runtimes are available if Mono isn't installed.
777 * FIXME: Remove this when Mono is properly packaged. */
778 for (i=0; i<NUM_RUNTIMES; i++)
779 runtimes[i].mono_abi_version = -1;
782 runtimes_initialized = 1;
784 end:
785 LeaveCriticalSection(&runtime_list_cs);
788 struct InstalledRuntimeEnum
790 IEnumUnknown IEnumUnknown_iface;
791 LONG ref;
792 ULONG pos;
795 static const struct IEnumUnknownVtbl InstalledRuntimeEnum_Vtbl;
797 static inline struct InstalledRuntimeEnum *impl_from_IEnumUnknown(IEnumUnknown *iface)
799 return CONTAINING_RECORD(iface, struct InstalledRuntimeEnum, IEnumUnknown_iface);
802 static HRESULT WINAPI InstalledRuntimeEnum_QueryInterface(IEnumUnknown* iface, REFIID riid,
803 void **ppvObject)
805 TRACE("%p %s %p\n", iface, debugstr_guid(riid), ppvObject);
807 if ( IsEqualGUID( riid, &IID_IEnumUnknown ) ||
808 IsEqualGUID( riid, &IID_IUnknown ) )
810 *ppvObject = iface;
812 else
814 FIXME("Unsupported interface %s\n", debugstr_guid(riid));
815 return E_NOINTERFACE;
818 IEnumUnknown_AddRef( iface );
820 return S_OK;
823 static ULONG WINAPI InstalledRuntimeEnum_AddRef(IEnumUnknown* iface)
825 struct InstalledRuntimeEnum *This = impl_from_IEnumUnknown(iface);
826 ULONG ref = InterlockedIncrement(&This->ref);
828 TRACE("(%p) refcount=%u\n", iface, ref);
830 return ref;
833 static ULONG WINAPI InstalledRuntimeEnum_Release(IEnumUnknown* iface)
835 struct InstalledRuntimeEnum *This = impl_from_IEnumUnknown(iface);
836 ULONG ref = InterlockedDecrement(&This->ref);
838 TRACE("(%p) refcount=%u\n", iface, ref);
840 if (ref == 0)
842 HeapFree(GetProcessHeap(), 0, This);
845 return ref;
848 static HRESULT WINAPI InstalledRuntimeEnum_Next(IEnumUnknown *iface, ULONG celt,
849 IUnknown **rgelt, ULONG *pceltFetched)
851 struct InstalledRuntimeEnum *This = impl_from_IEnumUnknown(iface);
852 int num_fetched = 0;
853 HRESULT hr=S_OK;
854 IUnknown *item;
856 TRACE("(%p,%u,%p,%p)\n", iface, celt, rgelt, pceltFetched);
858 while (num_fetched < celt)
860 if (This->pos >= NUM_RUNTIMES)
862 hr = S_FALSE;
863 break;
865 if (runtimes[This->pos].mono_abi_version)
867 item = (IUnknown*)&runtimes[This->pos].ICLRRuntimeInfo_iface;
868 IUnknown_AddRef(item);
869 rgelt[num_fetched] = item;
870 num_fetched++;
872 This->pos++;
875 if (pceltFetched)
876 *pceltFetched = num_fetched;
878 return hr;
881 static HRESULT WINAPI InstalledRuntimeEnum_Skip(IEnumUnknown *iface, ULONG celt)
883 struct InstalledRuntimeEnum *This = impl_from_IEnumUnknown(iface);
884 int num_fetched = 0;
885 HRESULT hr=S_OK;
887 TRACE("(%p,%u)\n", iface, celt);
889 while (num_fetched < celt)
891 if (This->pos >= NUM_RUNTIMES)
893 hr = S_FALSE;
894 break;
896 if (runtimes[This->pos].mono_abi_version)
898 num_fetched++;
900 This->pos++;
903 return hr;
906 static HRESULT WINAPI InstalledRuntimeEnum_Reset(IEnumUnknown *iface)
908 struct InstalledRuntimeEnum *This = impl_from_IEnumUnknown(iface);
910 TRACE("(%p)\n", iface);
912 This->pos = 0;
914 return S_OK;
917 static HRESULT WINAPI InstalledRuntimeEnum_Clone(IEnumUnknown *iface, IEnumUnknown **ppenum)
919 struct InstalledRuntimeEnum *This = impl_from_IEnumUnknown(iface);
920 struct InstalledRuntimeEnum *new_enum;
922 TRACE("(%p)\n", iface);
924 new_enum = HeapAlloc(GetProcessHeap(), 0, sizeof(*new_enum));
925 if (!new_enum)
926 return E_OUTOFMEMORY;
928 new_enum->IEnumUnknown_iface.lpVtbl = &InstalledRuntimeEnum_Vtbl;
929 new_enum->ref = 1;
930 new_enum->pos = This->pos;
932 *ppenum = &new_enum->IEnumUnknown_iface;
934 return S_OK;
937 static const struct IEnumUnknownVtbl InstalledRuntimeEnum_Vtbl = {
938 InstalledRuntimeEnum_QueryInterface,
939 InstalledRuntimeEnum_AddRef,
940 InstalledRuntimeEnum_Release,
941 InstalledRuntimeEnum_Next,
942 InstalledRuntimeEnum_Skip,
943 InstalledRuntimeEnum_Reset,
944 InstalledRuntimeEnum_Clone
947 struct CLRMetaHost
949 ICLRMetaHost ICLRMetaHost_iface;
952 static struct CLRMetaHost GlobalCLRMetaHost;
954 static HRESULT WINAPI CLRMetaHost_QueryInterface(ICLRMetaHost* iface,
955 REFIID riid,
956 void **ppvObject)
958 TRACE("%s %p\n", debugstr_guid(riid), ppvObject);
960 if ( IsEqualGUID( riid, &IID_ICLRMetaHost ) ||
961 IsEqualGUID( riid, &IID_IUnknown ) )
963 *ppvObject = iface;
965 else
967 FIXME("Unsupported interface %s\n", debugstr_guid(riid));
968 return E_NOINTERFACE;
971 ICLRMetaHost_AddRef( iface );
973 return S_OK;
976 static ULONG WINAPI CLRMetaHost_AddRef(ICLRMetaHost* iface)
978 return 2;
981 static ULONG WINAPI CLRMetaHost_Release(ICLRMetaHost* iface)
983 return 1;
986 static BOOL parse_runtime_version(LPCWSTR version, DWORD *major, DWORD *minor, DWORD *build)
988 *major = 0;
989 *minor = 0;
990 *build = 0;
992 if (version[0] == 'v' || version[0] == 'V')
994 version++;
995 if (!isdigit(*version))
996 return FALSE;
998 while (isdigit(*version))
999 *major = *major * 10 + (*version++ - '0');
1001 if (*version == 0)
1002 return TRUE;
1004 if (*version++ != '.' || !isdigit(*version))
1005 return FALSE;
1007 while (isdigit(*version))
1008 *minor = *minor * 10 + (*version++ - '0');
1010 if (*version == 0)
1011 return TRUE;
1013 if (*version++ != '.' || !isdigit(*version))
1014 return FALSE;
1016 while (isdigit(*version))
1017 *build = *build * 10 + (*version++ - '0');
1019 return *version == 0;
1021 else
1022 return FALSE;
1025 HRESULT WINAPI CLRMetaHost_GetRuntime(ICLRMetaHost* iface,
1026 LPCWSTR pwzVersion, REFIID iid, LPVOID *ppRuntime)
1028 int i;
1029 DWORD major, minor, build;
1031 TRACE("%s %s %p\n", debugstr_w(pwzVersion), debugstr_guid(iid), ppRuntime);
1033 if (!pwzVersion)
1034 return E_POINTER;
1036 if (!parse_runtime_version(pwzVersion, &major, &minor, &build))
1038 ERR("Cannot parse %s\n", debugstr_w(pwzVersion));
1039 return CLR_E_SHIM_RUNTIME;
1042 find_runtimes();
1044 for (i=0; i<NUM_RUNTIMES; i++)
1046 if (runtimes[i].major == major && runtimes[i].minor == minor &&
1047 runtimes[i].build == build)
1049 if (runtimes[i].mono_abi_version)
1050 return ICLRRuntimeInfo_QueryInterface(&runtimes[i].ICLRRuntimeInfo_iface, iid,
1051 ppRuntime);
1052 else
1054 missing_runtime_message(&runtimes[i]);
1055 return CLR_E_SHIM_RUNTIME;
1060 FIXME("Unrecognized version %s\n", debugstr_w(pwzVersion));
1061 return CLR_E_SHIM_RUNTIME;
1064 HRESULT WINAPI CLRMetaHost_GetVersionFromFile(ICLRMetaHost* iface,
1065 LPCWSTR pwzFilePath, LPWSTR pwzBuffer, DWORD *pcchBuffer)
1067 ASSEMBLY *assembly;
1068 HRESULT hr;
1069 LPSTR version;
1070 ULONG buffer_size=*pcchBuffer;
1072 TRACE("%s %p %p\n", debugstr_w(pwzFilePath), pwzBuffer, pcchBuffer);
1074 hr = assembly_create(&assembly, pwzFilePath);
1076 if (SUCCEEDED(hr))
1078 hr = assembly_get_runtime_version(assembly, &version);
1080 if (SUCCEEDED(hr))
1082 *pcchBuffer = MultiByteToWideChar(CP_UTF8, 0, version, -1, NULL, 0);
1084 if (pwzBuffer)
1086 if (buffer_size >= *pcchBuffer)
1087 MultiByteToWideChar(CP_UTF8, 0, version, -1, pwzBuffer, buffer_size);
1088 else
1089 hr = HRESULT_FROM_WIN32(ERROR_INSUFFICIENT_BUFFER);
1093 assembly_release(assembly);
1096 return hr;
1099 static HRESULT WINAPI CLRMetaHost_EnumerateInstalledRuntimes(ICLRMetaHost* iface,
1100 IEnumUnknown **ppEnumerator)
1102 struct InstalledRuntimeEnum *new_enum;
1104 TRACE("%p\n", ppEnumerator);
1106 find_runtimes();
1108 new_enum = HeapAlloc(GetProcessHeap(), 0, sizeof(*new_enum));
1109 if (!new_enum)
1110 return E_OUTOFMEMORY;
1112 new_enum->IEnumUnknown_iface.lpVtbl = &InstalledRuntimeEnum_Vtbl;
1113 new_enum->ref = 1;
1114 new_enum->pos = 0;
1116 *ppEnumerator = &new_enum->IEnumUnknown_iface;
1118 return S_OK;
1121 static HRESULT WINAPI CLRMetaHost_EnumerateLoadedRuntimes(ICLRMetaHost* iface,
1122 HANDLE hndProcess, IEnumUnknown **ppEnumerator)
1124 FIXME("%p %p\n", hndProcess, ppEnumerator);
1126 return E_NOTIMPL;
1129 static HRESULT WINAPI CLRMetaHost_RequestRuntimeLoadedNotification(ICLRMetaHost* iface,
1130 RuntimeLoadedCallbackFnPtr pCallbackFunction)
1132 FIXME("%p\n", pCallbackFunction);
1134 return E_NOTIMPL;
1137 static HRESULT WINAPI CLRMetaHost_QueryLegacyV2RuntimeBinding(ICLRMetaHost* iface,
1138 REFIID riid, LPVOID *ppUnk)
1140 FIXME("%s %p\n", debugstr_guid(riid), ppUnk);
1142 return E_NOTIMPL;
1145 static HRESULT WINAPI CLRMetaHost_ExitProcess(ICLRMetaHost* iface, INT32 iExitCode)
1147 FIXME("%i: stub\n", iExitCode);
1149 ExitProcess(iExitCode);
1152 static const struct ICLRMetaHostVtbl CLRMetaHost_vtbl =
1154 CLRMetaHost_QueryInterface,
1155 CLRMetaHost_AddRef,
1156 CLRMetaHost_Release,
1157 CLRMetaHost_GetRuntime,
1158 CLRMetaHost_GetVersionFromFile,
1159 CLRMetaHost_EnumerateInstalledRuntimes,
1160 CLRMetaHost_EnumerateLoadedRuntimes,
1161 CLRMetaHost_RequestRuntimeLoadedNotification,
1162 CLRMetaHost_QueryLegacyV2RuntimeBinding,
1163 CLRMetaHost_ExitProcess
1166 static struct CLRMetaHost GlobalCLRMetaHost = {
1167 { &CLRMetaHost_vtbl }
1170 HRESULT CLRMetaHost_CreateInstance(REFIID riid, void **ppobj)
1172 return ICLRMetaHost_QueryInterface(&GlobalCLRMetaHost.ICLRMetaHost_iface, riid, ppobj);
1175 static MonoAssembly* mono_assembly_search_hook_fn(MonoAssemblyName *aname, char **assemblies_path, void *user_data)
1177 loaded_mono *mono = user_data;
1178 HRESULT hr=S_OK;
1179 MonoAssembly *result=NULL;
1180 char *stringname=NULL;
1181 LPWSTR stringnameW;
1182 int stringnameW_size;
1183 IAssemblyCache *asmcache;
1184 ASSEMBLY_INFO info;
1185 WCHAR path[MAX_PATH];
1186 char *pathA;
1187 MonoImageOpenStatus stat;
1188 static WCHAR fusiondll[] = {'f','u','s','i','o','n',0};
1189 HMODULE hfusion=NULL;
1190 static HRESULT (WINAPI *pCreateAssemblyCache)(IAssemblyCache**,DWORD);
1192 stringname = mono->mono_stringify_assembly_name(aname);
1194 TRACE("%s\n", debugstr_a(stringname));
1196 if (!stringname) return NULL;
1198 /* FIXME: We should search the given paths before the GAC. */
1200 if (!pCreateAssemblyCache)
1202 hr = LoadLibraryShim(fusiondll, NULL, NULL, &hfusion);
1204 if (SUCCEEDED(hr))
1206 pCreateAssemblyCache = (void*)GetProcAddress(hfusion, "CreateAssemblyCache");
1207 if (!pCreateAssemblyCache)
1208 hr = E_FAIL;
1212 if (SUCCEEDED(hr))
1213 hr = pCreateAssemblyCache(&asmcache, 0);
1215 if (SUCCEEDED(hr))
1217 stringnameW_size = MultiByteToWideChar(CP_UTF8, 0, stringname, -1, NULL, 0);
1219 stringnameW = HeapAlloc(GetProcessHeap(), 0, stringnameW_size * sizeof(WCHAR));
1220 if (stringnameW)
1221 MultiByteToWideChar(CP_UTF8, 0, stringname, -1, stringnameW, stringnameW_size);
1222 else
1223 hr = E_OUTOFMEMORY;
1225 if (SUCCEEDED(hr))
1227 info.cbAssemblyInfo = sizeof(info);
1228 info.pszCurrentAssemblyPathBuf = path;
1229 info.cchBuf = MAX_PATH;
1230 path[0] = 0;
1232 hr = IAssemblyCache_QueryAssemblyInfo(asmcache, 0, stringnameW, &info);
1235 HeapFree(GetProcessHeap(), 0, stringnameW);
1237 IAssemblyCache_Release(asmcache);
1240 if (SUCCEEDED(hr))
1242 TRACE("found: %s\n", debugstr_w(path));
1244 pathA = WtoA(path);
1246 if (pathA)
1248 result = mono->mono_assembly_open(pathA, &stat);
1250 if (!result)
1251 ERR("Failed to load %s, status=%u\n", debugstr_w(path), stat);
1253 HeapFree(GetProcessHeap(), 0, pathA);
1257 mono->mono_free(stringname);
1259 return result;
1262 HRESULT get_runtime_info(LPCWSTR exefile, LPCWSTR version, LPCWSTR config_file,
1263 DWORD startup_flags, DWORD runtimeinfo_flags, BOOL legacy, ICLRRuntimeInfo **result)
1265 static const WCHAR dotconfig[] = {'.','c','o','n','f','i','g',0};
1266 static const DWORD supported_startup_flags = 0;
1267 static const DWORD supported_runtime_flags = RUNTIME_INFO_UPGRADE_VERSION;
1268 int i;
1269 WCHAR local_version[MAX_PATH];
1270 ULONG local_version_size = MAX_PATH;
1271 WCHAR local_config_file[MAX_PATH];
1272 HRESULT hr;
1273 parsed_config_file parsed_config;
1275 if (startup_flags & ~supported_startup_flags)
1276 FIXME("unsupported startup flags %x\n", startup_flags & ~supported_startup_flags);
1278 if (runtimeinfo_flags & ~supported_runtime_flags)
1279 FIXME("unsupported runtimeinfo flags %x\n", runtimeinfo_flags & ~supported_runtime_flags);
1281 if (exefile && !config_file)
1283 strcpyW(local_config_file, exefile);
1284 strcatW(local_config_file, dotconfig);
1286 config_file = local_config_file;
1289 if (config_file)
1291 int found=0;
1292 hr = parse_config_file(config_file, &parsed_config);
1294 if (SUCCEEDED(hr))
1296 supported_runtime *entry;
1297 LIST_FOR_EACH_ENTRY(entry, &parsed_config.supported_runtimes, supported_runtime, entry)
1299 hr = CLRMetaHost_GetRuntime(0, entry->version, &IID_ICLRRuntimeInfo, (void**)result);
1300 if (SUCCEEDED(hr))
1302 found = 1;
1303 break;
1307 else
1309 WARN("failed to parse config file %s, hr=%x\n", debugstr_w(config_file), hr);
1312 free_parsed_config_file(&parsed_config);
1314 if (found)
1315 return S_OK;
1318 if (exefile && !version)
1320 hr = CLRMetaHost_GetVersionFromFile(0, exefile, local_version, &local_version_size);
1322 version = local_version;
1324 if (FAILED(hr)) return hr;
1327 if (version)
1329 hr = CLRMetaHost_GetRuntime(0, version, &IID_ICLRRuntimeInfo, (void**)result);
1330 if(SUCCEEDED(hr))
1331 return hr;
1334 if (runtimeinfo_flags & RUNTIME_INFO_UPGRADE_VERSION)
1336 DWORD major, minor, build;
1338 if (version && !parse_runtime_version(version, &major, &minor, &build))
1340 ERR("Cannot parse %s\n", debugstr_w(version));
1341 return CLR_E_SHIM_RUNTIME;
1344 find_runtimes();
1346 if (legacy)
1347 i = 2;
1348 else
1349 i = NUM_RUNTIMES;
1351 while (i--)
1353 if (runtimes[i].mono_abi_version)
1355 /* Must be greater or equal to the version passed in. */
1356 if (!version || ((runtimes[i].major >= major && runtimes[i].minor >= minor && runtimes[i].build >= build) ||
1357 (runtimes[i].major >= major && runtimes[i].minor > minor) ||
1358 (runtimes[i].major > major)))
1360 return ICLRRuntimeInfo_QueryInterface(&runtimes[i].ICLRRuntimeInfo_iface,
1361 &IID_ICLRRuntimeInfo, (void **)result);
1366 if (legacy)
1367 missing_runtime_message(&runtimes[1]);
1368 else
1369 missing_runtime_message(&runtimes[NUM_RUNTIMES-1]);
1371 return CLR_E_SHIM_RUNTIME;
1374 return CLR_E_SHIM_RUNTIME;