Add smack-privilege checkers to AppInstallHelperExt
[platform/core/test/security-tests.git] / src / security-manager-tests / common / app_install_helper_ext.cpp
1 /*
2  * Copyright (c) 2020 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 #include "app_install_helper_ext.h"
18
19 #include <grp.h>
20 #include <unistd.h>
21 #include <sys/smack.h>
22
23 #include <utility>
24 #include <string>
25 #include <unordered_set>
26 #include <algorithm>
27
28 #include <security-manager-types.h>
29
30 #include <sm_api.h>
31 #include <label_generator.h>
32 #include <cynara_test_client.h>
33 #include <policy_configuration.h>
34
35 namespace {
36 constexpr char SMACK_RULES_PATH[] = "/sys/fs/smackfs/load2";
37 constexpr char ANY_USER_REPRESENTATION[] = "anyuser";/*this may be actually any string*/
38
39 void assertNoLabelInRule(const AccessRequest &rule, const std::string &label)
40 {
41     RUNNER_ASSERT_MSG(rule.object != label && rule.subject != label,
42                       "Smack rule left after uninstallation process." <<
43                       " Subject: " << rule.subject <<
44                       " object: " << rule.object <<
45                       " access: " << rule.access);
46 }
47
48 std::string accessOpposite(std::string &access)
49 {
50     static const std::map<char, int> accessMapping = {{'r', 0}, {'w', 1}, {'x', 2}, {'a', 3},
51                                                       {'t', 4}, {'l', 5}};
52     // May write implies may lock
53     if (access.find('w') != std::string::npos && access.find('l') == std::string::npos) {
54         access.append("l");
55     }
56     std::string oppositeAccess = "rwxatl";
57     for (char c : access) {
58         oppositeAccess[accessMapping.at(c)] = '-';
59     }
60     auto it = std::remove_if(oppositeAccess.begin(), oppositeAccess.end(), [](char c) {return c == '-';});
61     oppositeAccess.erase(it, oppositeAccess.end());
62     return oppositeAccess;
63 }
64
65 void checkExactSmackAccesses(const std::string &subject, const std::string &object,
66                              const std::string &access)
67 {
68     std::string access_str(access);
69     auto no_access = accessOpposite(access_str);
70     for (char c : access_str) {
71         int ret = smack_have_access(subject.c_str(), object.c_str(), std::string(1, c).c_str());
72         RUNNER_ASSERT_MSG(ret >= 0, "smack_have_access failed: <" << subject << ">, <" << object
73                           << ">, <" << c << "> errno=" << strerror(errno));
74         RUNNER_ASSERT_MSG(ret == 1, "Access " << c << " from " << subject << " to "
75                           << object << " not given");
76     }
77
78     for (char c : no_access) {
79         int ret = smack_have_access(subject.c_str(), object.c_str(), std::string(1, c).c_str());
80         RUNNER_ASSERT_MSG(ret >= 0, "smack_have_access failed: <" << subject << ">, <" << object
81                           << ">, <" << c << "> errno=" << strerror(errno));
82         RUNNER_ASSERT_MSG(ret == 0, "Access " << c << " from " << subject << " to "
83                           << object << " unnecessarily given");
84     }
85 }
86
87 } // namespace anonymous
88
89 namespace SecurityManagerTest
90 {
91
92 void AppInstallHelperExt::checkPrivileges(const PrivilegeVector &allowedPrivs,
93                                           const PrivilegeVector &deniedPrivs) const
94 {
95     /* Privileges should be granted to all users if root installs app */
96     auto user = (m_uidGid == 0 ? ANY_USER_REPRESENTATION : std::to_string(m_uidGid));
97
98     std::string smackLabel = generateProcessLabel(m_appName, m_pkgName, m_isHybrid);
99
100     CynaraTestClient::Client ctc;
101     int result;
102
103     for (auto &priv : allowedPrivs) {
104         ctc.check(smackLabel.c_str(), "", user, priv.getName().c_str(), CYNARA_API_ACCESS_ALLOWED);
105
106         Api::appHasPrivilege(m_appName, priv, m_uidGid, result);
107         RUNNER_ASSERT_MSG(result == 1,
108                           "Application " << m_appName << " has no access to " << priv);
109     }
110
111     for (auto &priv : deniedPrivs) {
112         ctc.check(smackLabel.c_str(), "", user, priv.getName().c_str(), CYNARA_API_ACCESS_DENIED);
113
114         Api::appHasPrivilege(m_appName, priv, m_uidGid, result);
115         RUNNER_ASSERT_MSG(result == 0,
116                           "Application " << m_appName << " has unexpected access to " << priv);
117     }
118 }
119
120 void AppInstallHelperExt::checkDeniedPrivileges(const PrivilegeVector &deniedPrivs) const
121 {
122     checkPrivileges({}, deniedPrivs);
123 }
124
125 void AppInstallHelperExt::checkPrivilegeGroups(const PrivilegeVector &allowedPrivs) const
126 {
127     static PolicyConfiguration policy;
128     const auto allowed_groups = policy.privToGroup(allowedPrivs);
129     RUNNER_ASSERT_MSG(allowed_groups.size() == allowedPrivs.size(),
130                       "Some privileges given were not found in the policy");
131
132     std::vector<gid_t> allowed_gids;
133     for (const auto &groupName : allowed_groups) {
134         errno = 0;
135         struct group* grp = getgrnam(groupName.c_str());
136         RUNNER_ASSERT_ERRNO_MSG(grp, "Group: " << groupName << " not found");
137         allowed_gids.push_back(grp->gr_gid);
138     }
139
140     checkGids(allowed_gids);
141 }
142
143 void AppInstallHelperExt:: checkSmackPrivileges(const PrivilegeVector &allowedPrivs,
144                                                 const PrivilegeVector &deniedPrivs) const
145 {
146     auto& smackPrivilegeRules = PolicyConfiguration::getSmackPrivRulesMap();
147
148     auto getPrivilegeRules = [&](const PrivilegeVector &privs) {
149         std::vector<AccessRequest> rules;
150
151         for (auto &priv : privs) {
152             auto it = smackPrivilegeRules.find(priv);
153             RUNNER_ASSERT_MSG(it != smackPrivilegeRules.end(), priv << " is not a smack privilege");
154
155             rules.insert(rules.end(), it->second.begin(), it->second.end());
156         }
157         return rules;
158     };
159
160     checkSmackAccesses(getPrivilegeRules(allowedPrivs));
161     checkSmackAccesses(getPrivilegeRules(deniedPrivs), false);
162 }
163
164 void AppInstallHelperExt::checkAfterInstall() const
165 {
166     static const std::vector<AccessRequest> staticRules[] =
167         {parseSmackRulesFile(PolicyConfiguration::getPkgRulesFilePath()),
168          parseSmackRulesFile(PolicyConfiguration::getAppRulesFilePath())};
169
170     checkAppIdExistence(true);
171
172     checkSmackAccesses(staticRules[m_isHybrid]);
173
174     checkPrivileges(m_privileges, {});
175 }
176
177 void AppInstallHelperExt::checkAfterUninstall(bool removePkg) const
178 {
179     checkAppIdExistence(false);
180
181     if (removePkg) {
182         checkPkgSmackRulesAfterUninstall();
183     }
184     // there should be no hybrid rules regardless of the app type
185     checkHybridAppSmackRulesAterUninstall();
186
187     checkDeniedPrivileges(m_privileges);
188 }
189
190 void AppInstallHelperExt::checkSmackAccesses(std::vector<AccessRequest> rules, bool hasAccess) const
191 {
192     const std::pair<std::string, std::string> switchAliases[] = {
193         {"~PATH_RW~", generatePathRWLabel(m_pkgName)},
194         {"~PATH_RO~", generatePathROLabel(m_pkgName)},
195         {"~PROCESS~", generateProcessLabel(m_appName, m_pkgName, m_isHybrid)}
196     };
197
198     for (auto& rule : rules) {
199         if (rule.object == "~PATH_TRUSTED~") {
200             continue;
201         }
202
203         for (const auto &alias : switchAliases) {
204             if (rule.subject == alias.first) {
205                 rule.subject = alias.second;
206             }
207             if (rule.object == alias.first) {
208                 rule.object = alias.second;
209             }
210         }
211
212         if (!hasAccess)
213             rule.access = "";
214
215         // Special label that may occur in the template. Other special labels will not be used.
216         if (rule.object == "_") {
217             rule.access = "rx" + rule.access;
218         }
219
220         checkExactSmackAccesses(rule.subject, rule.object, rule.access);
221     }
222 }
223
224 void AppInstallHelperExt::checkPkgSmackRulesAfterUninstall() const
225 {
226     const std::vector<AccessRequest> rules(std::move(parseSmackRulesFile(SMACK_RULES_PATH)));
227     const std::string labels[] = {generatePathRWLabel(m_pkgName),
228                                   generatePathROLabel(m_pkgName),
229                                   generateProcessLabel(m_appName, m_pkgName, true),
230                                   generateProcessLabel(m_appName, m_pkgName)};
231
232     for (const auto &rule : rules) {
233         for (const auto &label : labels) {
234             assertNoLabelInRule(rule, label);
235         }
236     }
237 }
238
239 void AppInstallHelperExt::checkHybridAppSmackRulesAterUninstall() const
240 {
241     const std::vector<AccessRequest> rules(parseSmackRulesFile(SMACK_RULES_PATH));
242     const std::string appLabel = generateProcessLabel(m_appName, m_pkgName, true);
243
244     for (const auto &rule : rules) {
245         assertNoLabelInRule(rule, appLabel);
246     }
247 }
248
249 void AppInstallHelperExt::checkAppIdExistence(bool expected) const
250 {
251     lib_retcode ret = expected ? SECURITY_MANAGER_SUCCESS : SECURITY_MANAGER_ERROR_NO_SUCH_OBJECT;
252     std::string retPkgId = Api::getPkgId(m_appName, ret);
253
254     if (expected) {
255         RUNNER_ASSERT_MSG(m_pkgName == retPkgId,
256                           "The given appId does not belong to the given pkgId.");
257     }
258 }
259
260 void AppInstallHelperExt::checkGids(const std::vector<gid_t> &allowedGids) const
261 {
262     int ret;
263     std::unordered_set<gid_t> referenceGids(allowedGids.begin(), allowedGids.end());
264
265     // Reset supplementary groups
266     ret = setgroups(0, NULL);
267     RUNNER_ASSERT_MSG(ret != -1, "Unable to set supplementary groups");
268
269     Api::setProcessGroups(m_appName);
270
271     ret = getgroups(0, nullptr);
272     RUNNER_ASSERT_MSG(ret != -1, "Unable to get supplementary groups");
273
274     std::vector<gid_t> actualGids(ret);
275     ret = getgroups(ret, actualGids.data());
276     RUNNER_ASSERT_MSG(ret != -1, "Unable to get supplementary groups");
277
278     for (const auto &gid : actualGids) {
279         RUNNER_ASSERT_MSG(referenceGids.count(gid) > 0,
280                           "Application shouldn't get access to group " << gid);
281         referenceGids.erase(gid);
282     }
283
284     RUNNER_ASSERT_MSG(referenceGids.empty(), "Application didn't get access to some groups");
285 }
286
287 } // namespace SecurityManagerTest