2 * Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved
4 * Licensed under the Apache License, Version 2.0 (the License);
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
8 * http://www.apache.org/licenses/LICENSE-2.0
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an AS IS BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
31 #include <sys/types.h>
34 #include <linux/limits.h>
37 #include <app_common.h>
39 #include "injection.h"
43 #include "dotnet_launcher.h"
44 #include "plugin_manager.h"
45 #include "path_manager.h"
46 #include "log_manager.h"
50 namespace dotnetcore {
52 #if defined (__aarch64__)
53 #define ARCHITECTURE_IDENTIFIER "arm64"
54 const static std::vector<std::string> RID_FALLBACK_GRAPH =
55 {"linux-arm64", "linux", "unix-arm64", "unix", "any", "base"};
57 #elif defined (__arm__)
58 #define ARCHITECTURE_IDENTIFIER "arm"
59 const static std::vector<std::string> RID_FALLBACK_GRAPH =
60 {"tizen.5.0.0-armel", "tizen.5.0.0", "tizen.4.0.0-armel", "tizen.4.0.0", "tizen-armel", "tizen", "linux-armel", "linux", "unix-armel", "unix", "any", "base"};
62 #elif defined (__x86_64__)
63 #define ARCHITECTURE_IDENTIFIER "x64"
64 const static std::vector<std::string> RID_FALLBACK_GRAPH =
65 {"linux-x64", "linux", "unix-x64", "unix", "any", "base"};
67 #elif defined (__i386__)
68 #define ARCHITECTURE_IDENTIFIER "x86"
69 const static std::vector<std::string> RID_FALLBACK_GRAPH =
70 {"tizen.5.0.0-x86", "tizen.5.0.0", "tizen.4.0.0-x86", "tizen.4.0.0", "tizen-x86", "tizen", "linux-x86", "linux", "unix-x86", "unix", "any", "base"};
73 #error "Unknown target"
76 static std::string getExtraNativeLibDirs(const std::string& appRoot)
78 std::string candidate;
79 for (unsigned int i = 0; i < RID_FALLBACK_GRAPH.size(); i++) {
80 if(!candidate.empty()) {
83 candidate += concatPath(appRoot, "bin/runtimes/" + RID_FALLBACK_GRAPH[i] + "/native");
86 candidate = candidate + ":" + concatPath(appRoot, "lib/" ARCHITECTURE_IDENTIFIER);
87 if (!strncmp(ARCHITECTURE_IDENTIFIER, "arm64", 5)) {
88 candidate = candidate + ":" + concatPath(appRoot, "lib/aarch64");
95 static std::vector<std::string> __envList;
97 static void setEnvFromFile()
100 std::ifstream inFile(ENV_FILE_PATH);
105 _INFO("coreclr_env.list is found");
108 std::istringstream ss(envList);
111 while (std::getline(ss, token, ':')) {
112 if (!token.empty()) {
113 __envList.push_back(token);
117 for (unsigned int i = 0; i < __envList.size(); i++) {
118 putenv(const_cast<char *>(__envList[i].c_str()));
121 _INFO("coreclr_env.list file is not found. skip");
125 #define _unused(x) ((void)(x))
127 struct sigaction sig_abrt_new;
128 struct sigaction sig_abrt_old;
130 static bool checkOnSigabrt = false;
131 static bool checkOnTerminate = false;
133 static void onSigabrt(int signum)
135 // use unused variable to avoid build warning
136 ssize_t ret = write(STDERR_FILENO, "onSigabrt called\n", 17);
138 if (checkOnTerminate) {
139 ret = write(STDERR_FILENO, "onSigabrt called while terminate. go to exit\n", 45);
144 if (checkOnSigabrt) {
145 ret = write(STDERR_FILENO, "onSigabrt called again. go to exit\n", 35);
150 if (hasException()) {
151 ret = write(STDERR_FILENO, "******************************************************\n", 55);
152 ret = write(STDERR_FILENO, "Unhandled exception is occured. check application code\n", 55);
153 ret = write(STDERR_FILENO, "******************************************************\n", 55);
156 checkOnSigabrt = true;
157 if (sigaction(SIGABRT, &sig_abrt_old, NULL) == 0) {
158 if (raise(signum) < 0) {
159 ret = write(STDERR_FILENO, "Fail to raise SIGABRT\n", 22);
162 ret = write(STDERR_FILENO, "Fail to set original SIGABRT handler\n", 37);
167 static void registerSigHandler()
169 sig_abrt_new.sa_handler = onSigabrt;
170 if (sigemptyset(&sig_abrt_new.sa_mask) != 0) {
171 _ERR("Fail to sigemptyset");
174 if (sigaction(SIGABRT, &sig_abrt_new, &sig_abrt_old) < 0) {
175 _ERR("Fail to add sig handler");
179 static bool storage_cb(int id, storage_type_e type, storage_state_e state, const char *path, void *user_data)
181 int* tmp = (int*)user_data;
182 if (type == STORAGE_TYPE_INTERNAL)
191 static void initEnvForSpecialFolder()
197 error = storage_foreach_device_supported(storage_cb, &storageId);
198 if (error != STORAGE_ERROR_NONE) {
202 error = storage_get_directory(storageId, STORAGE_DIRECTORY_IMAGES, &path);
203 if (error == STORAGE_ERROR_NONE && path != NULL) {
204 setenv("XDG_PICTURES_DIR", const_cast<char *>(path), 1);
209 error = storage_get_directory(storageId, STORAGE_DIRECTORY_MUSIC, &path);
210 if (error == STORAGE_ERROR_NONE && path != NULL) {
211 setenv("XDG_MUSIC_DIR", const_cast<char *>(path), 1);
216 error = storage_get_directory(storageId, STORAGE_DIRECTORY_VIDEOS, &path);
217 if (error == STORAGE_ERROR_NONE && path != NULL) {
218 setenv("XDG_VIDEOS_DIR", const_cast<char *>(path), 1);
224 static std::u16string utf8ToUtf16(char* str)
226 std::wstring_convert<std::codecvt_utf8_utf16<char16_t>, char16_t> convert;
227 return convert.from_bytes(str);
230 void CoreRuntime::preloadTypes()
232 const static std::string initDllPath = "/usr/share/dotnet.tizen/framework/Tizen.Init.dll";
233 if (!isFileExist(initDllPath)) {
234 _ERR("Failed to locate Tizen.Init.dll");
238 typedef void (*InitDelegate)();
239 InitDelegate initDelegate;
241 int ret = createDelegate(__hostHandle,
244 "Tizen.Init.TypeLoader",
246 (void**)&initDelegate);
249 _ERR("Failed to create delegate for PreloadTypes (0x%08x)", ret);
255 CoreRuntime::CoreRuntime(const char* mode) :
256 initializeClr(nullptr),
257 executeAssembly(nullptr),
259 createDelegate(nullptr),
260 setEnvironmentVariable(nullptr),
261 __coreclrLib(nullptr),
262 __hostHandle(nullptr),
267 _INFO("Constructor called!!");
269 // plugin initialize should be called before start loader mainloop.
270 // In case of VD plugins, attaching secure zone is done in the plugin_initialize().
271 // When attaching to a secure zone, if there is a created thread, it will failed.
272 // So, plugin initialize should be called before mainloop start.
273 if (initializePluginManager(mode) < 0) {
274 _ERR("Failed to initialize PluginManager");
277 if (pluginHasLogControl()) {
278 __enableLogManager = false;
280 __enableLogManager = true;
284 CoreRuntime::~CoreRuntime()
289 int CoreRuntime::initialize(bool standalone)
291 // checkInjection checks dotnet-launcher run mode
292 // At the moment, this mechanism is used only when the Memory Profiler is started.
293 int res = checkInjection();
295 _ERR("Failed to initnialize Memory Profiler");
299 #define __STR(x) __XSTR(x)
301 #ifdef NATIVE_LIB_DIR
302 __nativeLibDirectory = __STR(NATIVE_LIB_DIR);
309 // libunwind library is used to unwind stack frame, but libunwind for ARM
310 // does not support ARM vfpv3/NEON registers in DWARF format correctly.
311 // Therefore let's disable stack unwinding using DWARF information
312 // See https://github.com/dotnet/coreclr/issues/6698
314 // libunwind use following methods to unwind stack frame.
315 // UNW_ARM_METHOD_ALL 0xFF
316 // UNW_ARM_METHOD_DWARF 0x01
317 // UNW_ARM_METHOD_FRAME 0x02
318 // UNW_ARM_METHOD_EXIDX 0x04
319 putenv(const_cast<char *>("UNW_ARM_UNWIND_METHOD=6"));
322 // Disable debug pipes and semaphores creation in case of non-standlone mode
324 putenv(const_cast<char *>("COMPlus_EnableDiagnostics=0"));
326 // Write Debug.WriteLine to stderr
327 putenv(const_cast<char *>("COMPlus_DebugWriteToStdErr=1"));
329 // read string from external file and set them to environment value.
332 // Set environment for System.Environment.SpecialFolder
333 initEnvForSpecialFolder();
335 if (initializePathManager(std::string(), std::string(), std::string()) < 0) {
336 _ERR("Failed to initialize PathManager");
340 if (__enableLogManager) {
341 if (initializeLogManager() < 0) {
342 _ERR("Failed to initnialize LogManager");
346 if (redirectFD() < 0) {
347 _ERR("Failed to redirect FD");
351 if (runLoggingThread() < 0) {
352 _ERR("Failed to create and run logging thread to redicrect log");
357 std::string libCoreclr(concatPath(getRuntimeDir(), "libcoreclr.so"));
359 __coreclrLib = dlopen(libCoreclr.c_str(), RTLD_NOW | RTLD_LOCAL);
360 if (__coreclrLib == nullptr) {
361 char *err = dlerror();
362 _ERR("dlopen failed to open libcoreclr.so with error %s", err);
366 #define CORELIB_RETURN_IF_NOSYM(type, variable, name) \
368 variable = (type)dlsym(__coreclrLib, name); \
369 if (variable == nullptr) { \
370 _ERR(name " is not found in the libcoreclr.so"); \
375 CORELIB_RETURN_IF_NOSYM(coreclr_initialize_ptr, initializeClr, "coreclr_initialize");
376 CORELIB_RETURN_IF_NOSYM(coreclr_execute_assembly_ptr, executeAssembly, "coreclr_execute_assembly");
377 CORELIB_RETURN_IF_NOSYM(coreclr_shutdown_ptr, shutdown, "coreclr_shutdown");
378 CORELIB_RETURN_IF_NOSYM(coreclr_create_delegate_ptr, createDelegate, "coreclr_create_delegate");
379 CORELIB_RETURN_IF_NOSYM(set_environment_variable_ptr, setEnvironmentVariable, "SetEnvironmentVariableW");
381 #undef CORELIB_RETURN_IF_NOSYM
383 _INFO("libcoreclr dlopen and dlsym success");
388 fd = open("/proc/self", O_DIRECTORY);
389 std::string appRoot = std::string("/proc/self/fd/") + std::to_string(fd);
390 std::string appBin = concatPath(appRoot, "bin");
391 std::string appLib = concatPath(appRoot, "lib");
392 std::string appTac = concatPath(appBin, TAC_SYMLINK_SUB_DIR);
393 std::string probePath = appBin + ":" + appLib + ":" + appTac;
394 std::string NIprobePath = concatPath(appBin, APP_NI_SUB_DIR) + ":" + concatPath(appLib, APP_NI_SUB_DIR) + ":" + appTac;
395 std::string tpa = getTPA();
396 std::string nativeLibPath = getExtraNativeLibDirs(appRoot) + ":" + appBin + ":" + appLib + ":" + __nativeLibDirectory;
397 std::string appName = std::string("dotnet-launcher-") + std::to_string(getpid());
399 if (!initializeCoreClr(appName.c_str(), probePath.c_str(), NIprobePath.c_str(), nativeLibPath.c_str(), tpa.c_str())) {
400 _ERR("Failed to initialize coreclr");
404 __initialized = true;
408 preloadTypes(); // Preload common managed code
411 _INFO("CoreRuntime initialize success");
416 bool CoreRuntime::initializeCoreClr(const char* appId,
417 const char* assemblyProbePaths,
418 const char* NIProbePaths,
419 const char* pinvokeProbePaths,
422 const char *propertyKeys[] = {
423 "TRUSTED_PLATFORM_ASSEMBLIES",
426 "NATIVE_DLL_SEARCH_DIRECTORIES",
427 "AppDomainCompatSwitch"
430 const char *propertyValues[] = {
435 "UseLatestBehaviorWhenTFMNotSpecified"
438 std::string selfPath = readSelfPath();
440 int st = initializeClr(selfPath.c_str(),
442 sizeof(propertyKeys) / sizeof(propertyKeys[0]),
449 _ERR("initialize core clr fail! (0x%08x)", st);
453 pluginSetCoreclrInfo(__hostHandle, __domainId, createDelegate);
455 _INFO("Initialize core clr success");
459 void CoreRuntime::dispose()
461 // call plugin finalize function to notify finalize to plugin
462 // dlclose shoud be done after coreclr shutdown to avoid breaking signal chain
465 // ignore the signal generated by an exception that occurred during shutdown
466 checkOnTerminate = true;
468 if (__hostHandle != nullptr) {
469 int st = shutdown(__hostHandle, __domainId);
471 _ERR("shutdown core clr fail! (0x%08x)", st);
472 __hostHandle = nullptr;
475 if (__coreclrLib != nullptr) {
476 if (dlclose(__coreclrLib) != 0) {
477 _ERR("libcoreclr.so close failed");
480 __coreclrLib = nullptr;
483 finalizePluginManager();
484 finalizePathManager();
488 _INFO("Dotnet runtime disposed");
491 int CoreRuntime::launch(const char* appId, const char* root, const char* path, int argc, char* argv[])
493 if (!__initialized) {
494 _ERR("Runtime is not initialized");
498 if (path == nullptr) {
499 _ERR("executable path is null");
503 if (!isFileExist(path)) {
504 _ERR("File not exist : %s", path);
508 if (__enableLogManager) {
509 // launchpad override stdout and stderr to journalctl before launch application.
510 // we have to re-override that to input pipe for logging thread.
511 if (redirectFD() < 0) {
512 _ERR("Failed to redirect FD");
516 registerSigHandler();
519 pluginSetAppInfo(appId, path);
521 int fd2 = open(root, O_DIRECTORY);
522 dup3(fd2, fd, O_CLOEXEC);
526 // set application data path to coreclr environment.
527 // application data path can be changed by owner. So, we have to set data path just before launching.
528 char* localDataPath = app_get_data_path();
529 if (localDataPath != nullptr) {
530 std::u16string envval = utf8ToUtf16(localDataPath);
532 if (!setEnvironmentVariable(u"XDG_DATA_HOME", envval.c_str())) {
533 _ERR("Failed to set XDG_DATA_HOME");
539 pluginBeforeExecute();
541 _INFO("execute assembly : %s", path);
543 unsigned int ret = 0;
544 int st = executeAssembly(__hostHandle, __domainId, argc, (const char**)argv, path, &ret);
546 _ERR("Failed to Execute Assembly %s (0x%08x)", path, st);
550 } // namespace dotnetcore
551 } // namespace runtime