From: Suchang Woo Date: Wed, 14 Jan 2015 08:42:18 +0000 (-0800) Subject: Merge "Fix coretpk upgrade" into tizen X-Git-Tag: accepted/tizen/common/20150609.084418^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=900bf01f072a4b15e60a028fea1b7395a8bfffcb;hp=450432cb76b8c5bb1eaf969c42e15ad230db13c8;p=platform%2Fcore%2Fbase%2Frpm-installer.git Merge "Fix coretpk upgrade" into tizen --- diff --git a/backend/src/coretpk/coretpk-installer.c b/backend/src/coretpk/coretpk-installer.c index 9804156..277329b 100755 --- a/backend/src/coretpk/coretpk-installer.c +++ b/backend/src/coretpk/coretpk-installer.c @@ -490,7 +490,7 @@ static int __check_updated_system_package(const char *pkgid) bool is_system = false; pkgmgrinfo_pkginfo_h pkghandle = NULL; - ret = pkgmgrinfo_pkginfo_get_pkginfo(pkgid, &pkghandle); + ret = pkgmgrinfo_pkginfo_get_usr_pkginfo(pkgid, getuid(), &pkghandle); retvm_if(ret < 0, -1, "pkgmgrinfo_pkginfo_get_pkginfo(%s) failed.", pkgid); ret = pkgmgrinfo_pkginfo_is_system(pkghandle, &is_system); @@ -2339,13 +2339,13 @@ int _coretpk_installer_package_upgrade(char *pkgfile, char *pkgid, char *clienti _ri_broadcast_status_notification(pkgid, "coretpk", "start", "update"); /*terminate running app*/ - ret = pkgmgrinfo_pkginfo_get_pkginfo(pkgid, &pkghandle); + ret = pkgmgrinfo_pkginfo_get_usr_pkginfo(pkgid, getuid(), &pkghandle); if (ret < 0) { _LOGE("failed to get the pkginfo handle."); ret = RPM_INSTALLER_ERR_PKG_NOT_FOUND; goto err; } - pkgmgrinfo_appinfo_get_list(pkghandle, PMINFO_UI_APP, __ri_check_running_app, NULL); + pkgmgrinfo_appinfo_get_usr_list(pkghandle, PMINFO_UI_APP, __ri_check_running_app, NULL, getuid()); pkgmgrinfo_pkginfo_destroy_pkginfo(pkghandle); /*remove dir for clean*/ @@ -2441,7 +2441,7 @@ int _coretpk_installer_package_upgrade(char *pkgfile, char *pkgid, char *clienti _ri_broadcast_status_notification(pkgid, "coretpk", "install_percent", "60"); /*Parse the manifest to get install location and size. If fails, remove manifest info from DB.*/ - ret = pkgmgr_parser_parse_manifest_for_upgrade(manifest, NULL); + ret = pkgmgr_parser_parse_usr_manifest_for_upgrade(manifest, getuid(), NULL); if (ret < 0) { _LOGE("@parsing manifest failed."); ret = RPM_INSTALLER_ERR_INTERNAL; @@ -2491,7 +2491,6 @@ int _coretpk_installer_package_upgrade(char *pkgfile, char *pkgid, char *clienti _LOGD("_coretpk_installer_verify_privilege_list(PRVMGR_PACKAGE_TYPE_CORE) is ok."); } } - #if 0 /*reload smack*/ ret = _ri_smack_reload(pkgid, REQUEST_TYPE_UPGRADE); diff --git a/backend/src/rpm/rpm-installer.c b/backend/src/rpm/rpm-installer.c index 37ccc19..181b193 100755 --- a/backend/src/rpm/rpm-installer.c +++ b/backend/src/rpm/rpm-installer.c @@ -3387,7 +3387,6 @@ int _rpm_uninstall_pkg_with_dbpath(const char *pkgid, bool is_system) } goto end; } else { - // del manifest memset(buff, '\0', BUF_SIZE); snprintf(buff, BUF_SIZE, "%s/%s.xml", OPT_SHARE_PACKAGES, pkgid); @@ -3397,8 +3396,8 @@ int _rpm_uninstall_pkg_with_dbpath(const char *pkgid, bool is_system) _LOGE("pkgmgr_parser_parse_manifest_for_uninstallation() failed, pkgid=[%s]", pkgid); } + // del manifest (void)remove(buff); - } // execute privilege APIs