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.
17 #include <pkgmgr-info.h>
18 #include <pkgmgr_installer_info.h>
23 #include "pkgmgr_parser_plugin_interface.h"
39 #include <sys/smack.h>
41 #include "ni_common.h"
42 #include "path_manager.h"
43 #include "plugin_manager.h"
48 #define LOG_TAG "NETCORE_INSTALLER_PLUGIN"
51 #error "CROSSGEN_PATH is missed"
55 #define __STR(x) __XSTR(x)
56 static const char* __CROSSGEN_PATH = __STR(CROSSGEN_PATH);
60 static int __interval = 0;
61 static std::string __tpa;
63 static void waitInterval()
65 // by the recommand, ignore small value for performance.
66 if (__interval > 10000) {
67 fprintf(stderr, "sleep %d usec\n", __interval);
72 static void updateNiFileInfo(const std::string& dllPath, const std::string& niPath)
77 if (smack_getlabel(dllPath.c_str(), &label, SMACK_LABEL_ACCESS) == 0) {
78 if (smack_setlabel(niPath.c_str(), label, SMACK_LABEL_ACCESS) < 0) {
79 fprintf(stderr, "Fail to set smack label\n");
84 // change owner and groups for generated ni file.
86 if (!stat(dllPath.c_str(), &info)) {
87 if (chown(niPath.c_str(), info.st_uid, info.st_gid) == -1)
88 fprintf(stderr, "Failed to change owner and group name\n");
92 static std::string getNiFilePath(const std::string& dllPath)
94 size_t index = dllPath.find_last_of(".");
95 if (index == std::string::npos) {
96 fprintf(stderr, "File doesnot contain extension. fail to get NI file name\n");
99 std::string fName = dllPath.substr(0, index);
100 std::string fExt = dllPath.substr(index, dllPath.length());
102 // crossgen generate file with lower case extension only
103 std::transform(fExt.begin(), fExt.end(), fExt.begin(), ::tolower);
104 std::string niPath = fName + ".ni" + fExt;
109 static std::string getAppNIPath(const std::string& niPath)
111 size_t index = niPath.find_last_of("/");
112 if (index == std::string::npos) {
113 fprintf(stderr, "dllPath doesnot contains path info\n");
117 std::string prevPath = niPath.substr(0, index);
118 std::string fileName = niPath.substr(index, niPath.length());
119 std::string niDirPath = concatPath(prevPath, APP_NI_SUB_DIR);
121 if (!isFileExist(niDirPath)) {
122 if (mkdir(niDirPath.c_str(), 0755) == 0) {
123 updateNiFileInfo(prevPath, niDirPath);
125 fprintf(stderr, "Fail to create app ni directory (%s)\n", niDirPath.c_str());
129 return niDirPath + fileName;
132 static bool niExist(const std::string& path)
134 std::string f = getNiFilePath(path);
139 if (isFileExist(f)) {
143 // native image of System.Private.CoreLib.dll should have to overwrite
144 // original file to support new coreclr
145 if (path.find("System.Private.CoreLib.dll") != std::string::npos) {
146 std::string coreLibBackup = path + ".Backup";
147 if (isFileExist(coreLibBackup)) {
155 static ni_error_e crossgen(const std::string& dllPath, const std::string& appPath, bool enableR2R, bool isAppNI = false)
157 if (!isFileExist(dllPath)) {
158 fprintf(stderr, "dll file is not exist : %s\n", dllPath.c_str());
159 return NI_ERROR_NO_SUCH_FILE;
162 if (!isManagedAssembly(dllPath)) {
163 fprintf(stderr, "Input file is not a dll file : %s\n", dllPath.c_str());
164 return NI_ERROR_INVALID_PARAMETER;
167 if (niExist(dllPath)) {
168 fprintf(stderr, "Already ni file is exist for %s\n", dllPath.c_str());
169 return NI_ERROR_ALREADY_EXIST;
172 std::string absDllPath = absolutePath(dllPath);
173 std::string absNiPath = getNiFilePath(dllPath);
174 if (absNiPath.empty()) {
175 fprintf(stderr, "Fail to get ni file name\n");
176 return NI_ERROR_UNKNOWN;
180 absNiPath = getAppNIPath(absNiPath);
185 return NI_ERROR_UNKNOWN;
189 waitpid(pid, &status, 0);
190 if (WIFEXITED(status)) {
191 // Do not use niExist() function to check whether ni file created or not.
192 // niEixst() return false for System.Private.Corelib.dll
193 if (isFileExist(absNiPath)) {
194 updateNiFileInfo(absDllPath, absNiPath);
195 return NI_ERROR_NONE;
197 fprintf(stderr, "Fail to create native image for %s\n", dllPath.c_str());
198 return NI_ERROR_NO_SUCH_FILE;
202 std::string jitPath = getRuntimeDir() + "/libclrjit.so";
203 std::vector<const char*> argv = {
206 "/Trusted_Platform_Assemblies", __tpa.c_str(),
207 "/JITPath", jitPath.c_str()
211 argv.push_back("/FragileNonVersionable");
214 argv.push_back("/App_Paths");
215 std::string absAppPath;
216 if (!appPath.empty()) {
217 absAppPath = appPath;
219 absAppPath = baseName(absDllPath);
221 argv.push_back(absAppPath.c_str());
223 argv.push_back("/out");
224 argv.push_back(absNiPath.c_str());
226 argv.push_back(absDllPath.c_str());
227 argv.push_back(nullptr);
229 fprintf(stderr, "+ %s (%s)\n", absDllPath.c_str(), enableR2R ? "R2R" : "FNV");
231 execv(__CROSSGEN_PATH, const_cast<char* const*>(argv.data()));
235 return NI_ERROR_NONE;
238 // callback function of "pkgmgrinfo_appinfo_metadata_filter_foreach"
239 static int appAotCb(pkgmgrinfo_appinfo_h handle, void *userData)
243 bool* enableR2R = (bool*)userData;
245 ret = pkgmgrinfo_appinfo_get_pkgid(handle, &pkgId);
246 if (ret != PMINFO_R_OK) {
247 fprintf(stderr, "Failed to get pkgid\n");
251 if (removeNiUnderPkgRoot(pkgId) != 0) {
252 fprintf(stderr, "Failed to remove previous dlls from [%s]\n", pkgId);
256 // Regenerate ni files with R2R mode forcibiliy. (there is no way to now which option is used)
257 if (createNiUnderPkgRoot(pkgId, *enableR2R) != 0) {
258 fprintf(stderr, "Failed to get root path from [%s]\n", pkgId);
261 fprintf(stderr, "Complete make application to native image\n");
267 static void createCoreLibNI(bool enableR2R)
269 std::string coreLib = concatPath(getRuntimeDir(), "System.Private.CoreLib.dll");
270 std::string niCoreLib = concatPath(getRuntimeDir(), "System.Private.CoreLib.ni.dll");
271 std::string coreLibBackup = concatPath(getRuntimeDir(), "System.Private.CoreLib.dll.Backup");
273 if (!isFileExist(coreLibBackup)) {
274 if (!crossgen(coreLib, std::string(), enableR2R)) {
275 if (rename(coreLib.c_str(), coreLibBackup.c_str())) {
276 fprintf(stderr, "Failed to rename System.Private.CoreLib.dll\n");
278 if (rename(niCoreLib.c_str(), coreLib.c_str())) {
279 fprintf(stderr, "Failed to rename System.Private.CoreLib.ni.dll\n");
282 fprintf(stderr, "Failed to create native image for %s\n", coreLib.c_str());
287 ni_error_e initNICommon(NiCommonOption* option)
290 // get interval value
291 const char* intervalFile = "/usr/share/dotnet.tizen/lib/crossgen_interval.txt";
292 std::ifstream inFile(intervalFile);
294 fprintf(stderr, "crossgen_interval.txt is found\n");
295 inFile >> __interval;
298 if (initializePluginManager("normal")) {
299 fprintf(stderr, "Fail to initialize plugin manager\n");
300 return NI_ERROR_UNKNOWN;
302 if (initializePathManager(option->runtimeDir, option->tizenFXDir, option->extraDirs)) {
303 fprintf(stderr, "Fail to initialize path manager\n");
304 return NI_ERROR_UNKNOWN;
309 return NI_ERROR_NONE;
311 fprintf(stderr, "crossgen supports arm architecture only. skip ni file generation\n");
312 return NI_ERROR_NOT_SUPPORTED;
316 void finalizeNICommon()
320 finalizePluginManager();
321 finalizePathManager();
327 void createNiPlatform(bool enableR2R)
329 const std::string platformDirs[] = {getRuntimeDir(), getTizenFXDir()};
330 createNiUnderDirs(platformDirs, 2, enableR2R);
333 ni_error_e createNiDll(const std::string& dllPath, bool enableR2R)
335 createCoreLibNI(enableR2R);
336 // System.Private.CoreLib.dll is generated in the createCoreLibNI function.
337 // Skip if input dll is System.Private.CoreLib.dll
338 if (dllPath.find("System.Private.CoreLib.dll") != std::string::npos) {
339 return NI_ERROR_NONE;
342 return crossgen(dllPath, std::string(), enableR2R);
345 void createNiUnderDirs(const std::string rootPaths[], int count, bool enableR2R, bool isAppNI)
347 createCoreLibNI(enableR2R);
349 std::string appPaths;
350 for (int i = 0; i < count; i++) {
351 appPaths += rootPaths[i];
355 if (appPaths.back() == ':')
358 auto convert = [&appPaths, enableR2R, isAppNI](const std::string& path, const char* name) {
359 if (!crossgen(path, appPaths.c_str(), enableR2R, isAppNI)) {
364 for (int i = 0; i < count; i++) {
365 scanFilesInDir(rootPaths[i], convert, 1);
369 ni_error_e createNiUnderPkgRoot(const std::string& pkgId, bool enableR2R)
372 if (getRootPath(pkgId, pkgRoot) != NI_ERROR_NONE) {
373 fprintf(stderr, "Failed to get root path from [%s]\n", pkgId.c_str());
374 return NI_ERROR_INVALID_PACKAGE;
377 std::string binDir = concatPath(pkgRoot, "bin");
378 std::string libDir = concatPath(pkgRoot, "lib");
379 std::string appTAC = concatPath(binDir, ".TAC.Release");
380 std::string paths[] = {binDir, libDir, appTAC};
382 createNiUnderDirs(paths, 3, enableR2R, true);
384 return NI_ERROR_NONE;
387 ni_error_e createNiDllUnderPkgRoot(const std::string& pkgId, const std::string& dllPath, bool enableR2R)
390 if (getRootPath(pkgId, pkgRoot) < 0) {
391 fprintf(stderr, "Failed to get root path from [%s]\n", pkgId.c_str());
392 return NI_ERROR_INVALID_PACKAGE;
395 std::string binDir = concatPath(pkgRoot, "bin");
396 std::string libDir = concatPath(pkgRoot, "lib");
397 std::string paths = binDir + ":" + libDir;
399 return crossgen(dllPath, paths, enableR2R, true);
402 void removeNiPlatform()
404 std::string coreLib = concatPath(getRuntimeDir(), "System.Private.CoreLib.dll");
405 std::string coreLibBackup = concatPath(getRuntimeDir(), "System.Private.CoreLib.dll.Backup");
407 if (!isFileExist(coreLibBackup)) {
411 if (remove(coreLib.c_str())) {
412 fprintf(stderr, "Failed to remove System.Private.CoreLib native image file\n");
415 if (rename(coreLibBackup.c_str(), coreLib.c_str())) {
416 fprintf(stderr, "Failed to rename System.Private.CoreLib.Backup to origin\n");
419 const std::string platformDirs[] = {getRuntimeDir(), getTizenFXDir()};
421 removeNiUnderDirs(platformDirs, 2);
424 void removeNiUnderDirs(const std::string rootPaths[], int count)
426 auto convert = [](const std::string& path, std::string name) {
427 if (isNativeImage(path)) {
428 if (remove(path.c_str())) {
429 fprintf(stderr, "Failed to remove %s\n", path.c_str());
434 for (int i = 0; i < count; i++)
435 scanFilesInDir(rootPaths[i], convert, -1);
438 ni_error_e removeNiUnderPkgRoot(const std::string& pkgId)
441 if (getRootPath(pkgId, pkgRoot) < 0) {
442 fprintf(stderr, "Failed to get root path from [%s]\n", pkgId.c_str());
443 return NI_ERROR_INVALID_PACKAGE;
446 std::string binDir = concatPath(pkgRoot, "bin");
447 std::string libDir = concatPath(pkgRoot, "lib");
448 std::string paths[] = {binDir, libDir};
450 removeNiUnderDirs(paths, 2);
452 std::string binNIDir = concatPath(binDir, APP_NI_SUB_DIR);
453 if (isFileExist(binNIDir)) {
454 if (rmdir(binNIDir.c_str()) != 0) {
455 fprintf(stderr, "Failed to remove app ni dir [%s]\n", binNIDir.c_str());
459 std::string libNIDir = concatPath(libDir, APP_NI_SUB_DIR);
460 if (isFileExist(libNIDir)) {
461 if (rmdir(libNIDir.c_str()) != 0) {
462 fprintf(stderr, "Failed to remove app ni dir [%s]\n", libNIDir.c_str());
466 return NI_ERROR_NONE;
469 ni_error_e regenerateAppNI(bool enableR2R)
472 pkgmgrinfo_appinfo_metadata_filter_h handle;
474 ret = pkgmgrinfo_appinfo_metadata_filter_create(&handle);
475 if (ret != PMINFO_R_OK)
476 return NI_ERROR_UNKNOWN;
478 ret = pkgmgrinfo_appinfo_metadata_filter_add(handle, AOT_METADATA_KEY, AOT_METADATA_VALUE);
479 if (ret != PMINFO_R_OK) {
480 pkgmgrinfo_appinfo_metadata_filter_destroy(handle);
481 return NI_ERROR_UNKNOWN;
484 ret = pkgmgrinfo_appinfo_metadata_filter_foreach(handle, appAotCb, &enableR2R);
485 if (ret != PMINFO_R_OK) {
486 fprintf(stderr, "Failed pkgmgrinfo_appinfo_metadata_filter_foreach\n");
487 pkgmgrinfo_appinfo_metadata_filter_destroy(handle);
488 return NI_ERROR_UNKNOWN;
491 fprintf(stderr, "Success pkgmgrinfo_appinfo_metadata_filter_foreach\n");
493 pkgmgrinfo_appinfo_metadata_filter_destroy(handle);
494 return NI_ERROR_NONE;