summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWonYoung Choi <wy80.choi@samsung.com>2015-09-11 23:38:11 +0900
committerWonYoung Choi <wy80.choi@samsung.com>2015-09-11 23:38:11 +0900
commit1e2d9407f3823ced36e84aadb1cb635ebfde8595 (patch)
tree8b07563a37df0447ebf043798aca475c1e376d60
parent134f0cdc623c2ad36aff65305d7daafae53fcabe (diff)
downloadapp-installers-tizen_3.0.m1_tv.tar.gz
app-installers-tizen_3.0.m1_tv.tar.bz2
app-installers-tizen_3.0.m1_tv.zip
SecurityManager considers the privilege list is always sorted. Change-Id: Ib5a9632e3d1d310d49aa55d29acca16ea4e3d670
-rw-r--r--src/common/security_registration.cc12
1 files changed, 11 insertions, 1 deletions
diff --git a/src/common/security_registration.cc b/src/common/security_registration.cc
index aab8a670..fe0a1b12 100644
--- a/src/common/security_registration.cc
+++ b/src/common/security_registration.cc
@@ -9,6 +9,7 @@
#include <utility>
#include <vector>
+#include <algorithm>
#include "common/utils/clist_helpers.h"
#include "common/utils/logging.h"
@@ -63,16 +64,25 @@ bool PrepareRequest(const std::string& app_id, const std::string& pkg_id,
}
if (manifest) {
+ std::vector<std::string> priv_vec;
+
privileges_x *privileges = nullptr;
PKGMGR_LIST_MOVE_NODE_TO_HEAD(manifest->privileges, privileges);
for (; privileges != nullptr; privileges = privileges->next) {
privilege_x* priv = nullptr;
PKGMGR_LIST_MOVE_NODE_TO_HEAD(privileges->privilege, priv);
for (; priv != nullptr; priv = priv->next) {
- security_manager_app_inst_req_add_privilege(req, priv->text);
+ priv_vec.push_back(priv->text);
}
}
+
+ // privileges should be sorted.
+ std::sort(priv_vec.begin(), priv_vec.end());
+ for (auto& priv : priv_vec) {
+ security_manager_app_inst_req_add_privilege(req, priv.c_str());
+ }
}
+
return true;
}