6f4ab5aa49b80ac23a40887c2d9a284687ebde9d
[platform/core/dotnet/launcher.git] / NativeLauncher / launcher / lib / core_runtime.cc
1 /*
2  * Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved
3  *
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
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
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.
15  */
16
17
18 #include <dlfcn.h>
19 #include <signal.h>
20 #include <dirent.h>
21
22 #include <string>
23 #include <fstream>
24 #include <vector>
25 #include <sstream>
26
27 #include <locale>
28 #include <codecvt>
29
30 #include <fcntl.h>
31 #include <sys/stat.h>
32 #include <sys/types.h>
33 #include <sys/wait.h>
34 #include <unistd.h>
35 #include <linux/limits.h>
36 #include <pthread.h>
37
38 #include <storage.h>
39 #include <vconf.h>
40 #include <app_common.h>
41
42 #include <Ecore.h>
43
44 #include "injection.h"
45 #include "utils.h"
46 #include "log.h"
47 #include "core_runtime.h"
48 #include "plugin_manager.h"
49 #include "path_manager.h"
50
51 namespace tizen {
52 namespace runtime {
53 namespace dotnetcore {
54
55 static coreclr_initialize_ptr initializeClr = nullptr;
56 static coreclr_execute_assembly_ptr executeAssembly = nullptr;
57 static coreclr_shutdown_ptr shutdown = nullptr;
58 static coreclr_create_delegate_ptr createDelegate = nullptr;
59 static set_environment_variable_ptr setEnvironmentVariable = nullptr;
60 static stop_profile_after_delay_ptr stopProfileAfterDelay = nullptr;
61 static set_switch_ptr setSwitch = nullptr;
62 static void* __coreclrLib = nullptr;
63 static void* __hostHandle = nullptr;
64 static unsigned int __domainId = -1;
65 static bool __initialized = false;
66 static bool __isProfileMode = false;
67 PathManager* CoreRuntime::__pm = nullptr;
68
69 #define MAX_DELAY_SEC 100
70
71 static std::vector<std::string> __envList;
72
73 static void setEnvFromFile()
74 {
75         std::string envList;
76         std::ifstream inFile(ENV_FILE_PATH);
77
78         __envList.clear();
79
80         if (inFile) {
81                 _INFO("coreclr_env.list is found");
82
83                 std::string token;
84                 while (std::getline(inFile, token, '\n')) {
85                         if (!token.empty()) {
86                                 __envList.push_back(token);
87                         }
88                 }
89
90                 for (unsigned int i = 0; i < __envList.size(); i++) {
91                         putenv(const_cast<char *>(__envList[i].c_str()));
92                 }
93         } else {
94                 _INFO("coreclr_env.list file is not found. skip");
95         }
96 }
97
98 #define _unused(x) ((void)(x))
99
100 struct sigaction sig_abrt_new;
101 struct sigaction sig_abrt_old;
102
103 static bool checkOnSigabrt = false;
104 static bool checkOnTerminate = false;
105
106 static void onSigabrt(int signum)
107 {
108         // use unused variable to avoid build warning
109         ssize_t ret = write(STDERR_FILENO, "onSigabrt called\n", 17);
110
111         if (checkOnTerminate) {
112                 ret = write(STDERR_FILENO, "onSigabrt called while terminate. go to exit\n", 45);
113                 _unused(ret);
114                 exit(0);
115         }
116
117         if (checkOnSigabrt) {
118                 ret = write(STDERR_FILENO, "onSigabrt called again. go to exit\n", 35);
119                 _unused(ret);
120                 exit(0);
121         }
122
123         checkOnSigabrt = true;
124         if (sigaction(SIGABRT, &sig_abrt_old, NULL) == 0) {
125                 if (raise(signum) < 0) {
126                         ret = write(STDERR_FILENO, "Fail to raise SIGABRT\n", 22);
127                 }
128         } else {
129                 ret = write(STDERR_FILENO, "Fail to set original SIGABRT handler\n", 37);
130         }
131         _unused(ret);
132 }
133
134 static void registerSigHandler()
135 {
136         sig_abrt_new.sa_handler = onSigabrt;
137         if (sigemptyset(&sig_abrt_new.sa_mask) != 0) {
138                 _ERR("Fail to sigemptyset");
139         }
140
141         if (sigaction(SIGABRT, &sig_abrt_new, &sig_abrt_old) < 0) {
142                 _ERR("Fail to add sig handler");
143         }
144 }
145
146 static bool storage_cb(int id, storage_type_e type, storage_state_e state, const char *path, void *user_data)
147 {
148         int* tmp = (int*)user_data;
149         if (type == STORAGE_TYPE_INTERNAL)
150         {
151                 *tmp = id;
152                 return false;
153         }
154
155         return true;
156 }
157
158 static void setSpecialFolder(storage_directory_e type, const char* key)
159 {
160         int error;
161         char* path = NULL;
162         static int __storageId = -1;
163
164         if (__storageId < 0) {
165                 error = storage_foreach_device_supported(storage_cb, &__storageId);
166                 if (error != STORAGE_ERROR_NONE) {
167                         return;
168                 }
169         }
170
171         error = storage_get_directory(__storageId, type, &path);
172         if (error == STORAGE_ERROR_NONE && path != NULL) {
173                 setenv(key, const_cast<char *>(path), 1);
174                 free(path);
175         }
176 }
177
178 static void initEnvForSpecialFolder()
179 {
180         if (getenv("XDG_PICTURES_DIR") == NULL) {
181                 setSpecialFolder(STORAGE_DIRECTORY_IMAGES, "XDG_PICTURES_DIR");
182         }
183
184         if (getenv("XDG_MUSIC_DIR") == NULL) {
185                 setSpecialFolder(STORAGE_DIRECTORY_MUSIC, "XDG_MUSIC_DIR");
186         }
187
188         if (getenv("XDG_VIDEOS_DIR") == NULL) {
189                 setSpecialFolder(STORAGE_DIRECTORY_VIDEOS, "XDG_VIDEOS_DIR");
190         }
191 }
192
193 static void setLang()
194 {
195         //To reduce search overhead of libicuuc.so.xx
196         setenv("CLR_ICU_VERSION_OVERRIDE", "build", 1);
197
198         char* lang = vconf_get_str(VCONFKEY_LANGSET);
199         if (!lang) {
200                 _ERR("Fail to get language from vconf");
201                 return;
202         }
203
204         // In order to operate ICU (used for globalization) normally, the following
205         // environment variables must be set before using ICU API.
206         // When running Applicaiton, the following environment variables are set by AppFW.
207         // But when preloading the dll in the candidate process, the following environment variables are not set
208         // As a result, CultureInfo is incorrectly generated and malfunctions.
209         // For example, uloc_getDefault() returns en_US_POSIX, CultureInfo is set to invariant mode.
210         setenv("LANG", const_cast<char *>(lang), 1);
211         setlocale(LC_ALL, const_cast<char *>(lang));
212
213         free(lang);
214 }
215
216 static std::string readSelfPath()
217 {
218         char buff[PATH_MAX];
219         ssize_t len = ::readlink("/proc/self/exe", buff, sizeof(buff)-1);
220         if (len != -1) {
221                 buff[len] = '\0';
222                 return std::string(buff);
223         }
224
225         return "";
226 }
227
228 static void removeDebugPipe()
229 {
230         DIR *dir;
231         struct dirent* entry;
232         char debugPipeFiles[PATH_MAX];;
233         sprintf(debugPipeFiles, "/tmp/clr-debug-pipe-%d-", getpid());
234
235         dir = opendir("/tmp");
236         if (dir == nullptr) {
237                 _ERR("Fail to open /tmp directory");
238                 return;
239         }
240
241         while ((entry = readdir(dir)) != nullptr) {
242                 std::string path = concatPath("/tmp", entry->d_name);
243                 if (path.find(debugPipeFiles) != std::string::npos) {
244                         if (!removeFile(path)) {
245                                 _ERR("Fail to remove file (%s)", path.c_str());
246                         }
247                 }
248         }
249
250         closedir(dir);
251 }
252
253 void preload()
254 {
255         typedef void (*PreloadDelegate)();
256         PreloadDelegate preloadDelegate;
257
258         int ret = createDelegate(__hostHandle,
259                 __domainId,
260                 "Tizen.Runtime",
261                 "Tizen.Runtime.Preloader",
262                 "Preload",
263                 (void**)&preloadDelegate);
264
265         if (ret < 0) {
266                 _ERR("Failed to create delegate for Tizen.Runtime Preload (0x%08x)", ret);
267         } else {
268                 preloadDelegate();
269         }
270
271         pluginPreload();
272 }
273
274 bool initializeCoreClr(PathManager* pm, const std::string& tpa)
275 {
276         bool ncdbStartupHook = isNCDBStartupHookProvided();
277
278         const char *propertyKeys[] = {
279                 "TRUSTED_PLATFORM_ASSEMBLIES",
280                 "APP_PATHS",
281                 "APP_NI_PATHS",
282                 "NATIVE_DLL_SEARCH_DIRECTORIES",
283                 "AppDomainCompatSwitch",
284                 ncdbStartupHook ? "STARTUP_HOOKS" : "" // must be the last one
285         };
286
287         const char *propertyValues[] = {
288                 tpa.c_str(),
289                 pm->getAppPaths().c_str(),
290                 pm->getAppNIPaths().c_str(),
291                 pm->getNativeDllSearchingPaths().c_str(),
292                 "UseLatestBehaviorWhenTFMNotSpecified",
293                 ncdbStartupHook ? getNCDBStartupHook() : "" // must be the last one
294         };
295
296         std::string selfPath = readSelfPath();
297
298         int st = initializeClr(selfPath.c_str(),
299                                                         "TizenDotnetApp",
300                                                         sizeof(propertyKeys) / sizeof(propertyKeys[0]) - (ncdbStartupHook ? 0 : 1),
301                                                         propertyKeys,
302                                                         propertyValues,
303                                                         &__hostHandle,
304                                                         &__domainId);
305
306         if (st < 0) {
307                 _ERR("initialize core clr fail! (0x%08x)", st);
308                 return false;
309         }
310
311         pluginSetCoreclrInfo(__hostHandle, __domainId, createDelegate);
312
313         _INFO("Initialize core clr success");
314         return true;
315 }
316
317 int CoreRuntime::initialize(const char* appType, LaunchMode launchMode)
318 {
319         if (__initialized) {
320                 _ERR("CoreRuntime is already initialized");
321                 return -1;
322         }
323
324         // set language environment to support ICU
325         setLang();
326
327         char *env = nullptr;
328         env = getenv("CORECLR_ENABLE_PROFILING");
329         if (env != nullptr && !strcmp(env, "1")) {
330                 _INFO("profiling mode on");
331                 __isProfileMode = true;
332         }
333
334         // plugin initialize should be called before creating threads.
335         // In case of VD plugins, attaching secure zone is done in the plugin_initialize().
336         // When attaching to a secure zone, if there is a created thread, it will failed.
337         // So, plugin initialize should be called before creating threads.
338         if (initializePluginManager(appType) < 0) {
339                 _ERR("Failed to initialize PluginManager");
340                 return -1;
341         }
342
343         // checkInjection checks dotnet-launcher run mode
344         // At the moment, this mechanism is used only when the Memory Profiler is started.
345         int res = checkInjection();
346         if (res != 0) {
347                 _ERR("Failed to initnialize Memory Profiler");
348                 return -1;
349         }
350
351 #ifdef __arm__
352         // libunwind library is used to unwind stack frame, but libunwind for ARM
353         // does not support ARM vfpv3/NEON registers in DWARF format correctly.
354         // Therefore let's disable stack unwinding using DWARF information
355         // See https://github.com/dotnet/coreclr/issues/6698
356         //
357         // libunwind use following methods to unwind stack frame.
358         // UNW_ARM_METHOD_ALL           0xFF
359         // UNW_ARM_METHOD_DWARF         0x01
360         // UNW_ARM_METHOD_FRAME         0x02
361         // UNW_ARM_METHOD_EXIDX         0x04
362         putenv(const_cast<char *>("UNW_ARM_UNWIND_METHOD=6"));
363 #endif // __arm__
364
365         // Enable diagnostics.
366         // clr create clr-debug-pipe-xxx and dotnet-diagnostics-xxx file under /tmp dir.
367         putenv(const_cast<char *>("COMPlus_EnableDiagnostics=1"));
368
369         // Write Debug.WriteLine to stderr
370         putenv(const_cast<char *>("COMPlus_DebugWriteToStdErr=1"));
371
372 #ifdef USE_DEFAULT_BASE_ADDR
373         putenv(const_cast<char *>("COMPlus_UseDefaultBaseAddr=1"));
374 #endif // USE_DEFAULT_BASE_ADDR
375
376         // Disable config cache to set environment after coreclr_initialize()
377         putenv(const_cast<char *>("COMPlus_DisableConfigCache=1"));
378
379         // read string from external file and set them to environment value.
380         setEnvFromFile();
381
382         try {
383                 __pm = new PathManager();
384         } catch (const std::exception& e) {
385                 _ERR("Failed to create PathManager");
386                 return -1;
387         }
388
389         char* pluginDllPaths = pluginGetDllPath();
390         if (pluginDllPaths && pluginDllPaths[0] != '\0') {
391                 __pm->addPlatformAssembliesPaths(pluginDllPaths, true);
392         }
393
394         char* pluginNativePaths = pluginGetNativeDllSearchingPath();
395         if (pluginNativePaths && pluginNativePaths[0] != '\0') {
396                 __pm->addNativeDllSearchingPaths(pluginNativePaths, true);
397         }
398
399         char* pluginExtraDllPaths = pluginGetExtraDllPath();
400         if (pluginExtraDllPaths && pluginExtraDllPaths[0] != '\0') {
401                 __pm->setExtraDllPaths(pluginExtraDllPaths);
402         }
403
404         std::string libCoreclr(concatPath(__pm->getRuntimePath(), "libcoreclr.so"));
405
406         __coreclrLib = dlopen(libCoreclr.c_str(), RTLD_NOW | RTLD_LOCAL);
407         if (__coreclrLib == nullptr) {
408                 char *err = dlerror();
409                 _ERR("dlopen failed to open libcoreclr.so with error %s", err);
410                 return -1;
411         }
412
413 #define CORELIB_RETURN_IF_NOSYM(type, variable, name) \
414         do { \
415                 variable = (type)dlsym(__coreclrLib, name); \
416                 if (variable == nullptr) { \
417                         _ERR(name " is not found in the libcoreclr.so"); \
418                         return -1; \
419                 } \
420         } while (0)
421
422         CORELIB_RETURN_IF_NOSYM(coreclr_initialize_ptr, initializeClr, "coreclr_initialize");
423         CORELIB_RETURN_IF_NOSYM(coreclr_execute_assembly_ptr, executeAssembly, "coreclr_execute_assembly");
424         CORELIB_RETURN_IF_NOSYM(coreclr_shutdown_ptr, shutdown, "coreclr_shutdown");
425         CORELIB_RETURN_IF_NOSYM(coreclr_create_delegate_ptr, createDelegate, "coreclr_create_delegate");
426
427 #undef CORELIB_RETURN_IF_NOSYM
428
429         _INFO("libcoreclr dlopen and dlsym success");
430
431         // Set environment for System.Environment.SpecialFolder
432         // Below function creates dbus connection by callging storage API.
433         // If dbus connection is created bofere fork(), forked process cannot use dbus.
434         // To avoid gdbus blocking issue, below function should be called after fork()
435         initEnvForSpecialFolder();
436
437         std::string tpa;
438         char* pluginTPA = pluginGetTPA();
439         if (pluginTPA && pluginTPA[0] != '\0') {
440                 tpa = std::string(pluginTPA);
441         } else {
442                 addAssembliesFromDirectories(__pm->getPlatformAssembliesPaths(), tpa);
443         }
444
445         if (!initializeCoreClr(__pm, tpa)) {
446                 _ERR("Failed to initialize coreclr");
447                 return -1;
448         }
449
450         int st = createDelegate(__hostHandle, __domainId, "Tizen.Runtime", "Tizen.Runtime.Environment", "SetEnvironmentVariable", (void**)&setEnvironmentVariable);
451         if (st < 0 || setEnvironmentVariable == nullptr) {
452                 _ERR("Create delegate for Tizen.Runtime.dll -> Tizen.Runtime.Environment -> SetEnvironmentVariable failed (0x%08x)", st);
453                 return -1;
454         }
455
456         st = createDelegate(__hostHandle, __domainId, "Tizen.Runtime", "Tizen.Runtime.Profiler", "StopProfileAfterDelay", (void**)&stopProfileAfterDelay);
457         if (st < 0 || stopProfileAfterDelay == nullptr) {
458                 _ERR("Create delegate for Tizen.Runtime.dll -> Tizen.Runtime.Profiler -> StopProfileAfterDelay failed (0x%08x)", st);
459                 return -1;
460         }
461
462         st = createDelegate(__hostHandle, __domainId, "Tizen.Runtime", "Tizen.Runtime.AppSetting", "SetSwitch", (void**)&setSwitch);
463         if (st < 0 || setSwitch == nullptr) {
464                 _ERR("Create delegate for Tizen.Runtime.dll -> Tizen.Runtime.AppSetting -> SetSwitch failed (0x%08x)", st);
465                 return -1;
466         }
467
468         if (launchMode == LaunchMode::loader) {
469                 // preload libraries and manage dlls for optimizing startup time
470                 preload();
471
472                 // The debug pipe created in the candidate process has a "User" label.
473                 // As a result, smack deny occurs when app process try to access the debug pipe.
474                 // Also, since debugging is performed only in standalone mode,
475                 // the debug pipe doesnot be used in the candidate process.
476                 // So, to avoid smack deny error, delete unused debug pipe files.
477                 removeDebugPipe();
478         }
479
480         __initialized = true;
481
482         _INFO("CoreRuntime initialize success");
483
484         return 0;
485 }
486
487 void CoreRuntime::finalize()
488 {
489         // call plugin finalize function to notify finalize to plugin
490         // dlclose shoud be done after coreclr shutdown to avoid breaking signal chain
491         pluginFinalize();
492
493         // ignore the signal generated by an exception that occurred during shutdown
494         checkOnTerminate = true;
495
496         // workaround : to prevent crash while process terminate on profiling mode,
497         //                              kill process immediately.
498         // see https://github.com/dotnet/coreclr/issues/26687
499         if (__isProfileMode) {
500                 _INFO("shutdown process immediately.");
501                 _exit(0);
502         }
503
504         if (__hostHandle != nullptr) {
505                 int st = shutdown(__hostHandle, __domainId);
506                 if (st < 0)
507                         _ERR("shutdown core clr fail! (0x%08x)", st);
508                 __hostHandle = nullptr;
509         }
510
511         if (__coreclrLib != nullptr) {
512                 if (dlclose(__coreclrLib) != 0) {
513                         _ERR("libcoreclr.so close failed");
514                 }
515
516                 __coreclrLib = nullptr;
517         }
518
519         finalizePluginManager();
520
521         delete __pm;
522         __pm = NULL;
523
524         __envList.clear();
525
526         _INFO("CoreRuntime finalized");
527 }
528
529 int CoreRuntime::launch(const char* appId, const char* root, const char* path, int argc, char* argv[], bool profile)
530 {
531         if (!__initialized) {
532                 _ERR("Runtime is not initialized");
533                 return -1;
534         }
535
536         if (path == nullptr) {
537                 _ERR("executable path is null");
538                 return -1;
539         }
540
541         if (!isFile(path)) {
542                 _ERR("File not exist : %s", path);
543                 return -1;
544         }
545
546         // VD has their own signal handler.
547         if (!pluginHasLogControl()) {
548                 registerSigHandler();
549         }
550
551         pluginSetAppInfo(appId, path);
552
553         // temporal root path is overrided to real application root path
554         __pm->setAppRootPath(root);
555
556         // set application data path to coreclr environment.
557         // application data path can be changed by owner. So, we have to set data path just before launching.
558         char* localDataPath = app_get_data_path();
559         if (localDataPath != nullptr) {
560                 setEnvironmentVariable("XDG_DATA_HOME", localDataPath);
561
562                 // set profile.data path and collect/use it if it non-exists/exists.
563                 if (profile) {
564                         char multiCoreJitProfile[strlen(localDataPath) + strlen(PROFILE_BASENAME) + 1];
565                         memcpy(multiCoreJitProfile, localDataPath, strlen(localDataPath) + 1);
566                         strncat(multiCoreJitProfile, PROFILE_BASENAME, strlen(PROFILE_BASENAME));
567
568                         setEnvironmentVariable("COMPlus_MultiCoreJitProfile", multiCoreJitProfile);
569                         setEnvironmentVariable("COMPlus_MultiCoreJitMinNumCpus", "1");
570
571                         if (exist(multiCoreJitProfile)) {
572                                 setEnvironmentVariable("COMPlus_MultiCoreJitNoProfileGather", "1");
573                                 _INFO("MCJ playing start for %s", appId);
574                         } else {
575                                 setEnvironmentVariable("COMPlus_MultiCoreJitNoProfileGather", "0");
576                                 // stop profiling and write collected data after delay if env value is set.
577                                 char *env = getenv("CLR_MCJ_PROFILE_WRITE_DELAY");
578                                 if (env != nullptr) {
579                                         int delay = std::atoi(env);
580                                         // To avoid undefined behavior by out-of-range input(atoi), set max delay value to 100.
581                                         if (delay > 0) {
582                                                 if (delay > MAX_DELAY_SEC) delay = MAX_DELAY_SEC;
583                                                 stopProfileAfterDelay(delay);
584                                         }
585                                 }
586                                 _INFO("MCJ recording start for %s", appId);
587                         }
588                 }
589                 free(localDataPath);
590         }
591
592         if (exist(__pm->getAppRootPath() + "/bin/" + DISABLE_IPV6_FILE)) {
593                 setSwitch("System.Net.DisableIPv6", true);
594         }
595
596         setSwitch("Switch.System.Diagnostics.StackTrace.ShowILOffsets", true);
597
598         pluginBeforeExecute();
599
600         _INFO("execute assembly : %s", path);
601
602         unsigned int ret = 0;
603         int st = executeAssembly(__hostHandle, __domainId, argc, (const char**)argv, path, &ret);
604         if (st < 0)
605                 _ERR("Failed to Execute Assembly %s (0x%08x)", path, st);
606         return ret;
607 }
608
609 }  // namespace dotnetcore
610 }  // namespace runtime
611 }  // namespace tizen