2 * Copyright (c) 2019 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.
18 #include <json/json.h>
19 #include <pkgmgr-info.h>
20 #include <pkgmgr_installer_info.h>
24 #include "tac_common.h"
25 #include "db_manager.h"
26 #include "path_manager.h"
31 #define LOG_TAG "DOTNET_INSTALLER_PLUGIN"
34 #define __STR(x) __XSTR(x)
35 static const char* __TAC_DIR = __STR(TAC_DIR);
39 static sqlite3 *tac_db = NULL;
40 std::vector<std::string> restore_nuget;
42 static void cleanupDirectory()
44 std::vector<std::string> removeNuget;
46 for (auto& nuget : bf::recursive_directory_iterator(__TAC_DIR)) {
48 std::string nugetPath = nuget.path().string();
49 for (auto& restore : restore_nuget) {
50 if (!bf::is_directory(nugetPath)) {
53 if (!strcmp(nugetPath.c_str(), restore.c_str()) ||
54 !strcmp(nugetPath.c_str(), restore.substr(0, restore.rfind('/')).c_str())) {
60 removeNuget.push_back(nugetPath);
64 for (auto& rm : removeNuget) {
66 fprintf(stderr, "Failed to remove of %s\n", rm.c_str());
70 } catch (const bf::filesystem_error& error) {
71 fprintf(stderr, "Failed to recursive directory: %s\n", error.what());
76 // callback function of "pkgmgrinfo_appinfo_metadata_filter_foreach"
77 static int restoreDBCb(pkgmgrinfo_appinfo_h handle, void *userData)
85 int ret = pkgmgrinfo_appinfo_get_pkgid(handle, &pkgId);
86 if (ret != PMINFO_R_OK) {
87 fprintf(stderr, "Failed to get pkgid\n");
91 enableTACPackage(std::string(pkgId));
93 ret = pkgmgrinfo_appinfo_get_root_path(handle, &root);
94 if (ret != PMINFO_R_OK) {
95 fprintf(stderr, "Failed to get root path\n");
100 ret = pkgmgrinfo_appinfo_get_exec(handle, &exec);
101 if (ret != PMINFO_R_OK) {
102 fprintf(stderr, "Failed to get exec name\n");
105 execName = std::string(exec).substr(std::string(exec).rfind('/') + 1);
107 std::vector<std::string> parserData;
108 std::string binDir = concatPath(rootPath, "bin");
109 std::string tacDir = concatPath(binDir, TAC_SYMLINK_SUB_DIR);
110 for (auto& npAssembly : depsJsonParser(rootPath, execName, getTPA())) {
111 std::string nugetPackage = npAssembly.substr(0, npAssembly.rfind(':'));
112 std::string assemblyName = npAssembly.substr(npAssembly.rfind(':') + 1);
113 if (bf::exists(tacDir) && bf::exists(concatPath(tacDir, assemblyName))) {
114 parserData.push_back(nugetPackage);
117 std::sort(parserData.begin(), parserData.end());
118 parserData.erase(unique(parserData.begin(), parserData.end()), parserData.end());
120 for (auto& nuget : parserData) {
122 std::string name = nuget.substr(0, nuget.find('/'));
123 std::string version = nuget.substr(nuget.rfind('/') + 1);
124 char *sql = sqlite3_mprintf(
125 "INSERT INTO TAC (PKGID, NUGET, NAME, VERSION) " \
126 "VALUES (%Q, %Q, %Q, %Q);", pkgId, nuget.c_str(), name.c_str(), version.c_str());
127 dbInsert(tac_db, TAC_APP_LIST_RESTORE_DB, sql);
128 restore_nuget.push_back(concatPath(__TAC_DIR, nuget));
136 tac_error_e restoreTACDB()
138 if (!removeFile(TAC_APP_LIST_RESTORE_DB)) {
139 fprintf(stderr, "Failed to remove of %s\n", TAC_APP_LIST_RESTORE_DB);
140 return TAC_ERROR_UNKNOWN;
143 std::string dbRestoreJournal = TAC_APP_LIST_RESTORE_DB + std::string("-journal");
144 if (!removeFile(dbRestoreJournal)) {
145 fprintf(stderr, "Failed to remove of %s\n", dbRestoreJournal.c_str());
146 return TAC_ERROR_UNKNOWN;
149 if (initializePathManager(std::string(), std::string(), std::string())) {
150 fprintf(stderr, "Fail to initialize PathManger\n");
151 return TAC_ERROR_UNKNOWN;
154 tac_db = dbCreate(TAC_APP_LIST_RESTORE_DB, CREATE_TAC_DB_TABLE);
156 fprintf(stderr, "Sqlite create error\n");
157 return TAC_ERROR_UNKNOWN;
160 pkgmgrinfo_appinfo_metadata_filter_h handle;
161 int ret = pkgmgrinfo_appinfo_metadata_filter_create(&handle);
162 if (ret != PMINFO_R_OK) {
163 return TAC_ERROR_UNKNOWN;
166 ret = pkgmgrinfo_appinfo_metadata_filter_add(handle, TAC_METADATA_KEY, METADATA_VALUE);
167 if (ret != PMINFO_R_OK) {
168 pkgmgrinfo_appinfo_metadata_filter_destroy(handle);
169 return TAC_ERROR_UNKNOWN;
172 ret = pkgmgrinfo_appinfo_metadata_filter_foreach(handle, restoreDBCb, NULL);
173 if (ret != PMINFO_R_OK) {
174 fprintf(stderr, "Failed pkgmgrinfo_appinfo_metadata_filter_foreach\n");
175 pkgmgrinfo_appinfo_metadata_filter_destroy(handle);
176 return TAC_ERROR_UNKNOWN;
178 fprintf(stderr, "Success pkgmgrinfo_appinfo_metadata_filter_foreach\n");
180 pkgmgrinfo_appinfo_metadata_filter_destroy(handle);
187 uid_t g_uid = 301; // app_fw
188 gid_t g_gid = 301; // app_fw
190 if (!copyFile(TAC_APP_LIST_RESTORE_DB, TAC_APP_LIST_DB)) {
191 fprintf(stderr, "Failed to copy of %s\n", TAC_APP_LIST_DB);
192 return TAC_ERROR_UNKNOWN;
194 if (!removeFile(TAC_APP_LIST_RESTORE_DB)) {
195 fprintf(stderr, "Failed to remove of %s\n", TAC_APP_LIST_RESTORE_DB);
196 return TAC_ERROR_UNKNOWN;
198 if (chown(TAC_APP_LIST_DB, g_uid, g_gid) == -1) {
199 fprintf(stderr, "Failed to change owner and group name\n");
202 std::string dbJournal = TAC_APP_LIST_DB + std::string("-journal");
203 if (!copyFile(dbRestoreJournal, dbJournal)) {
204 fprintf(stderr, "Failed to copy of %s\n", dbJournal.c_str());
205 return TAC_ERROR_UNKNOWN;
207 if (!removeFile(dbRestoreJournal)) {
208 fprintf(stderr, "Failed to remove of %s\n", dbRestoreJournal.c_str());
209 return TAC_ERROR_UNKNOWN;
211 if (chown(dbJournal.c_str(), g_uid, g_gid) == -1) {
212 fprintf(stderr, "Failed to change owner and group name\n");
217 return TAC_ERROR_NONE;
220 tac_error_e resetTACPackage(const std::string& pkgId)
223 if (getRootPath(pkgId, pkgRoot) < 0) {
224 return TAC_ERROR_INVALID_PACKAGE;
227 std::vector<std::string> tacNativeImage;
228 std::string binDir = concatPath(pkgRoot, "bin");
229 std::string tacDir = concatPath(binDir, TAC_SYMLINK_SUB_DIR);
230 if (bf::exists(tacDir)) {
232 for (auto& symlinkAssembly : bf::recursive_directory_iterator(tacDir)) {
233 std::string symPath = symlinkAssembly.path().string();
234 if (bf::is_symlink(symPath)) {
235 if (isNativeImage(symPath)) {
236 tacNativeImage.push_back(symPath);
240 for (auto& path : tacNativeImage) {
241 if (!removeFile(path)) {
242 fprintf(stderr, "Failed to remove of %s\n", path.c_str());
243 return TAC_ERROR_UNKNOWN;
246 tacNativeImage.clear();
247 } catch (const bf::filesystem_error& error) {
248 fprintf(stderr, "Failed to recursive directory: %s\n", error.what());
249 return TAC_ERROR_UNKNOWN;
252 return TAC_ERROR_NONE;
255 tac_error_e disableTACPackage(const std::string& pkgId)
258 if (getRootPath(pkgId, pkgRoot) < 0) {
259 return TAC_ERROR_INVALID_PACKAGE;
262 std::string binDir = concatPath(pkgRoot, "bin");
263 std::string tacDir = concatPath(binDir, TAC_SYMLINK_SUB_DIR);
264 std::string binNIDir = concatPath(binDir, APP_NI_SUB_DIR);
265 if (bf::exists(tacDir)) {
267 for (auto& symlinkAssembly : bf::recursive_directory_iterator(tacDir)) {
268 std::string symPath = symlinkAssembly.path().string();
269 std::string fileName = symlinkAssembly.path().filename().string();
270 if (bf::is_symlink(symPath)) {
271 std::string originPath = bf::read_symlink(symPath).string();
272 if (!isNativeImage(symPath)) {
273 std::string dllPath = concatPath(binDir, fileName);
274 if (!copyFile(originPath, dllPath)) {
275 fprintf(stderr, "Failed to copy of %s\n", dllPath.c_str());
276 return TAC_ERROR_UNKNOWN;
278 updateAssemblyInfo(binDir.c_str(), concatPath(binDir, fileName).c_str());
280 std::string niPath = concatPath(binNIDir, fileName);
281 if (!copyFile(originPath, niPath)) {
282 fprintf(stderr, "Failed to copy of %s\n", niPath.c_str());
283 return TAC_ERROR_UNKNOWN;
285 updateAssemblyInfo(binDir.c_str(), niPath.c_str());
289 if (!removeAll(tacDir)) {
290 fprintf(stderr, "Failed to remove of %s\n", tacDir.c_str());
291 return TAC_ERROR_UNKNOWN;
293 } catch (const bf::filesystem_error& error) {
294 fprintf(stderr, "Failed to recursive directory: %s\n", error.what());
295 return TAC_ERROR_UNKNOWN;
298 return TAC_ERROR_NONE;
301 tac_error_e enableTACPackage(const std::string& pkgId)
303 std::string rootPath;
304 if (getRootPath(pkgId, rootPath) < 0) {
305 return TAC_ERROR_INVALID_PACKAGE;
308 std::string execName;
309 if (getExecName(pkgId, execName) < 0) {
310 return TAC_ERROR_INVALID_PACKAGE;
313 std::string metaValue;
314 if (getMetadataValue(pkgId, TAC_METADATA_KEY, metaValue) < 0) {
315 return TAC_ERROR_INVALID_PACKAGE;
318 if (initializePathManager(std::string(), std::string(), std::string())) {
319 fprintf(stderr, "Fail to initialize PathManger\n");
320 return TAC_ERROR_UNKNOWN;
323 if (!strcmp(metaValue.c_str(), "true")) {
324 std::string binDir = concatPath(rootPath, "bin");
325 std::string tacDir = concatPath(binDir, TAC_SYMLINK_SUB_DIR);
326 std::string binNIDir = concatPath(binDir, APP_NI_SUB_DIR);
327 if (!bf::exists(tacDir)) {
328 if (!createDir(tacDir)) {
329 fprintf(stderr, "Cannot create directory: %s\n", tacDir.c_str());
330 return TAC_ERROR_UNKNOWN;
332 updateAssemblyInfo(binDir.c_str(), tacDir.c_str());
334 std::vector<std::string> enableNuget;
335 for (auto& npAssembly : depsJsonParser(rootPath, execName, getTPA())) {
336 std::string nugetPackage = npAssembly.substr(0, npAssembly.rfind(':'));
337 std::string assemblyName = npAssembly.substr(npAssembly.rfind(':') + 1);
338 std::string nugetPath = concatPath(__TAC_DIR, nugetPackage);
339 if (bf::exists(nugetPath)) {
340 std::string originPath = concatPath(nugetPath, assemblyName);
341 if (bf::exists(originPath)) {
342 enableNuget.push_back(originPath);
347 for (auto& originPath : enableNuget) {
348 if (bf::exists(originPath)) {
349 std::string fileName = originPath.substr(originPath.rfind('/') + 1);
350 std::string NIFileName = fileName.substr(0, fileName.rfind(".dll")) + ".ni.dll";
351 if (bf::exists(binNIDir)) {
352 std::string originNIPath = originPath.substr(0, originPath.rfind(".dll")) + ".ni.dll";
353 if (bf::exists(originNIPath)) {
354 bf::create_symlink(originNIPath, concatPath(tacDir, NIFileName));
355 fprintf(stderr, "%s symbolic link file generated successfully.\n", concatPath(tacDir, NIFileName).c_str());
356 updateAssemblyInfo(tacDir.c_str(), concatPath(tacDir, NIFileName).c_str(), true);
358 if (!removeFile(concatPath(binNIDir, NIFileName))) {
359 fprintf(stderr, "Failed to remove of %s\n", concatPath(binNIDir, NIFileName).c_str());
360 return TAC_ERROR_UNKNOWN;
364 bf::create_symlink(originPath, concatPath(tacDir, fileName));
365 fprintf(stderr, "%s symbolic link file generated successfully.\n", concatPath(tacDir, fileName).c_str());
366 updateAssemblyInfo(tacDir.c_str(), concatPath(tacDir, fileName).c_str(), true);
368 if (!removeFile(concatPath(binDir, fileName))) {
369 fprintf(stderr, "Failed to remove of %s\n", concatPath(binDir, fileName).c_str());
370 return TAC_ERROR_UNKNOWN;
374 if (enableNuget.empty()) {
375 if (!removeAll(tacDir)) {
376 fprintf(stderr, "Failed to remove of %s\n", tacDir.c_str());
382 fprintf(stderr, "The metadata key is missing or the metadata value is false of [%s]\n", pkgId.c_str());
384 return TAC_ERROR_NONE;
387 //Parser the .deps.json file to get nuget information.
388 std::vector<std::string> depsJsonParser(std::string rootPath, std::string execName, std::string tpaList)
390 std::vector<std::string> tpaAssemblies;
391 splitPath(tpaList, tpaAssemblies);
393 std::vector<std::string> parserData;
394 std::string depsJsonName = execName.substr(0, execName.rfind(".dll")) + ".deps.json";
395 std::string depsJsonPath = concatPath(rootPath, depsJsonName);
397 if (bf::exists(depsJsonPath)) {
398 std::ifstream ifs(depsJsonPath);
399 Json::CharReaderBuilder reader;
403 if (!Json::parseFromStream(reader, ifs, &root, &error)) {
404 _ERR("Failed to parse of deps.json");
406 tpaAssemblies.clear();
409 const Json::Value runtimeTargetName = root["runtimeTarget"]["name"];
410 const Json::Value nugetPackages = root["targets"][runtimeTargetName.asString().c_str()];
411 std::vector<std::string> appDependencies;
412 for (auto& nuget : nugetPackages.getMemberNames()) {
413 if (strstr(nuget.c_str(), (execName.substr(0, execName.find(".Tizen."))).c_str()) != NULL ||
414 strstr(nuget.c_str(), (execName.substr(0, execName.find(".dll"))).c_str()) != NULL) {
415 const Json::Value assemblies = nugetPackages[nuget.c_str()]["runtime"];
416 if (assemblies != Json::nullValue) {
417 const Json::Value dependencies = nugetPackages[nuget.c_str()]["dependencies"];
418 for (auto& dependency : dependencies.getMemberNames()) {
419 appDependencies.push_back(dependency);
424 for (auto& nuget : nugetPackages.getMemberNames()) {
425 //Skip the nuget package related to Tizen
426 if (strstr(nuget.c_str(), TIZEN_DOTNET_NUGET) == NULL &&
427 strstr(nuget.c_str(), TIZEN_DOTNET_SDK_NUGET) == NULL &&
428 strstr(nuget.c_str(), (execName.substr(0, execName.find(".Tizen."))).c_str()) == NULL &&
429 strstr(nuget.c_str(), (execName.substr(0, execName.find(".dll"))).c_str()) == NULL) {
430 const Json::Value assemblies = nugetPackages[nuget.c_str()]["runtime"];
431 if (assemblies != Json::nullValue) {
432 const Json::Value dependencies = nugetPackages[nuget.c_str()]["dependencies"];
433 bool hasDependency = false;
434 for (auto& dependency : dependencies.getMemberNames()) {
435 //Skip the nugget package that is dependent on another nuget package
436 if (strstr(dependency.c_str(), TIZEN_DOTNET_NUGET) == NULL &&
437 strstr(dependency.c_str(), NET_STANDARD_LIBRARY_NUGET) == NULL) {
438 hasDependency = true;
439 for (auto& ad : appDependencies) {
440 if (!strcmp(ad.c_str(), dependency.c_str())) {
441 hasDependency = true;
444 hasDependency = false;
447 if (hasDependency) break;
450 if (!hasDependency) {
451 bool isExistTpaAssembly = false;
452 for (auto& assembly : assemblies.getMemberNames()) {
453 std::string assemblyName = assembly.substr(assembly.rfind('/') + 1);
454 //Skip the assembly present in the TPA list
455 for (auto& tpaPath : tpaAssemblies) {
456 std::string tpaName = replaceAll(tpaPath.substr(tpaPath.rfind('/') + 1), ".ni.dll", ".dll");
457 if (!strcmp(tpaName.c_str(), assemblyName.c_str())) {
458 isExistTpaAssembly = true;
462 if (isExistTpaAssembly) break;
464 if (!isExistTpaAssembly) {
465 for (auto& assembly : assemblies.getMemberNames()) {
466 std::string assemblyName = assembly.substr(assembly.rfind('/') + 1);
467 parserData.push_back(nuget + ":" + assemblyName);
468 _INFO("Nuget : [%s] / Assembly : [%s]", nuget.c_str(), assemblyName.c_str());
475 appDependencies.clear();
479 } catch (const Json::LogicError& error) {
480 _ERR("Failed to parse Json: %s", error.what());
482 tpaAssemblies.clear();