2 * Copyright (c) 2014 Samsung Electronics Co., Ltd All Rights Reserved
4 * Contact: Rafal Krypa <r.krypa@samsung.com>
6 * Licensed under the Apache License, Version 2.0 (the "License");
7 * you may not use this file except in compliance with the License.
8 * You may obtain a copy of the License at
10 * http://www.apache.org/licenses/LICENSE-2.0
12 * Unless required by applicable law or agreed to in writing, software
13 * distributed under the License is distributed on an "AS IS" BASIS,
14 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 * See the License for the specific language governing permissions and
16 * limitations under the License
20 * @author Rafal Krypa <r.krypa@samsung.com>
21 * @brief Wrapper class for Cynara interface
27 #include <dpl/log/log.h>
29 namespace SecurityManager {
32 * Rules for apps and users are organized into set of buckets stored in Cynara.
33 * Bucket is set of rules (app, uid, privilege) -> (DENY, ALLOW, BUCKET, ...).
34 * |------------------------|
37 * |------------------------|
39 * |------------------------|
40 * | app1 uid1 priv1 DENY |
41 * | * uid2 priv2 DENY |
42 * | * * * Bucket:MAIN|
43 * |------------------------|
45 * For details about buckets see Cynara documentation.
47 * Security Manager currently defines 8 buckets:
48 * - PRIVACY_MANAGER - first bucket during search (which is actually default bucket
49 * with empty string as id). If user specifies his preference then required rule
51 * - MAIN - holds rules denied by manufacturer, redirects to MANIFESTS
52 * bucket and holds entries for each user pointing to User Type
54 * - MANIFESTS - stores rules needed by installed apps (from package
59 * - USER_TYPE_GUEST - they store privileges from templates for apropriate
60 * user type. ALLOW rules only.
61 * - ADMIN - stores custom rules introduced by device administrator.
62 * Ignored if no matching rule found.
64 * Below is basic layout of buckets:
66 * |------------------------|
70 * | * * * Bucket:MAIN| |------------------|
71 * |------------------------| | <<deny>> |
73 * ----------------- | | |
74 * | | |------------------|
76 * |------------------------| |
79 * |---------------| | | |-------------------|
80 * | <<deny>> |<--| * * * Bucket:MANIFESTS|---->| <<deny>> |
81 * | USER_TYPE_SYST| |------------------------| | USER_TYPE_NORMAL |
83 * |---------------| | | |-------------------|
86 * | |---------------| |---------------| |
87 * | | <<deny>> | | <<deny>> | |
88 * | |USER_TYPE_GUEST| |USER_TYPE_ADMIN| |
90 * | |---------------| |---------------| |
95 * | |------------------| |
96 * |-------------> | <<none>> | <---------------|
99 * |------------------|
102 CynaraAdmin::BucketsMap CynaraAdmin::Buckets =
104 { Bucket::PRIVACY_MANAGER, std::string(CYNARA_ADMIN_DEFAULT_BUCKET)},
105 { Bucket::MAIN, std::string("MAIN")},
106 { Bucket::USER_TYPE_ADMIN, std::string("USER_TYPE_ADMIN")},
107 { Bucket::USER_TYPE_NORMAL, std::string("USER_TYPE_NORMAL")},
108 { Bucket::USER_TYPE_GUEST, std::string("USER_TYPE_GUEST") },
109 { Bucket::USER_TYPE_SYSTEM, std::string("USER_TYPE_SYSTEM")},
110 { Bucket::ADMIN, std::string("ADMIN")},
111 { Bucket::MANIFESTS, std::string("MANIFESTS")},
115 CynaraAdminPolicy::CynaraAdminPolicy(const std::string &client, const std::string &user,
116 const std::string &privilege, int operation,
117 const std::string &bucket)
119 this->client = strdup(client.c_str());
120 this->user = strdup(user.c_str());
121 this->privilege = strdup(privilege.c_str());
122 this->bucket = strdup(bucket.c_str());
124 if (this->bucket == nullptr || this->client == nullptr ||
125 this->user == nullptr || this->privilege == nullptr) {
129 free(this->privilege);
130 ThrowMsg(CynaraException::OutOfMemory,
131 std::string("Error in CynaraAdminPolicy allocation."));
134 this->result = operation;
135 this->result_extra = nullptr;
138 CynaraAdminPolicy::CynaraAdminPolicy(const std::string &client, const std::string &user,
139 const std::string &privilege, const std::string &goToBucket,
140 const std::string &bucket)
142 this->bucket = strdup(bucket.c_str());
143 this->client = strdup(client.c_str());
144 this->user = strdup(user.c_str());
145 this->privilege = strdup(privilege.c_str());
146 this->result_extra = strdup(goToBucket.c_str());
147 this->result = CYNARA_ADMIN_BUCKET;
149 if (this->bucket == nullptr || this->client == nullptr ||
150 this->user == nullptr || this->privilege == nullptr ||
151 this->result_extra == nullptr) {
155 free(this->privilege);
156 free(this->result_extra);
157 ThrowMsg(CynaraException::OutOfMemory,
158 std::string("Error in CynaraAdminPolicy allocation."));
162 CynaraAdminPolicy::CynaraAdminPolicy(CynaraAdminPolicy &&that)
164 bucket = that.bucket;
165 client = that.client;
167 privilege = that.privilege;
168 result_extra = that.result_extra;
169 result = that.result;
171 that.bucket = nullptr;
172 that.client = nullptr;
174 that.privilege = nullptr;
175 that.result_extra = nullptr;
178 CynaraAdminPolicy& CynaraAdminPolicy::operator=(CynaraAdminPolicy &&that)
181 bucket = that.bucket;
182 client = that.client;
184 privilege = that.privilege;
185 result_extra = that.result_extra;
186 result = that.result;
188 that.bucket = nullptr;
189 that.client = nullptr;
191 that.privilege = nullptr;
192 that.result_extra = nullptr;
198 CynaraAdminPolicy::~CynaraAdminPolicy()
203 free(this->privilege);
204 free(this->result_extra);
207 static bool checkCynaraError(int result, const std::string &msg)
210 case CYNARA_API_SUCCESS:
211 case CYNARA_API_ACCESS_ALLOWED:
213 case CYNARA_API_ACCESS_DENIED:
215 case CYNARA_API_OUT_OF_MEMORY:
216 ThrowMsg(CynaraException::OutOfMemory, msg);
217 case CYNARA_API_INVALID_PARAM:
218 ThrowMsg(CynaraException::InvalidParam, msg);
219 case CYNARA_API_SERVICE_NOT_AVAILABLE:
220 ThrowMsg(CynaraException::ServiceNotAvailable, msg);
221 case CYNARA_API_BUCKET_NOT_FOUND:
222 ThrowMsg(CynaraException::BucketNotFound, msg);
224 ThrowMsg(CynaraException::UnknownError, msg);
228 CynaraAdmin::TypeToDescriptionMap CynaraAdmin::TypeToDescription;
229 CynaraAdmin::DescriptionToTypeMap CynaraAdmin::DescriptionToType;
231 CynaraAdmin::CynaraAdmin()
232 : m_policyDescriptionsInitialized(false)
235 cynara_admin_initialize(&m_CynaraAdmin),
236 "Cannot connect to Cynara administrative interface.");
239 CynaraAdmin::~CynaraAdmin()
241 cynara_admin_finish(m_CynaraAdmin);
244 CynaraAdmin &CynaraAdmin::getInstance()
246 static CynaraAdmin cynaraAdmin;
250 void CynaraAdmin::SetPolicies(const std::vector<CynaraAdminPolicy> &policies)
252 std::vector<const struct cynara_admin_policy *> pp_policies(policies.size() + 1);
254 LogDebug("Sending " << policies.size() << " policies to Cynara");
255 for (std::size_t i = 0; i < policies.size(); ++i) {
256 pp_policies[i] = static_cast<const struct cynara_admin_policy *>(&policies[i]);
257 LogDebug("policies[" << i << "] = {" <<
258 ".bucket = " << pp_policies[i]->bucket << ", " <<
259 ".client = " << pp_policies[i]->client << ", " <<
260 ".user = " << pp_policies[i]->user << ", " <<
261 ".privilege = " << pp_policies[i]->privilege << ", " <<
262 ".result = " << pp_policies[i]->result << ", " <<
263 ".result_extra = " << pp_policies[i]->result_extra << "}");
266 pp_policies[policies.size()] = nullptr;
269 cynara_admin_set_policies(m_CynaraAdmin, pp_policies.data()),
270 "Error while updating Cynara policy.");
273 void CynaraAdmin::UpdateAppPolicy(
274 const std::string &label,
275 const std::string &user,
276 const std::vector<std::string> &oldPrivileges,
277 const std::vector<std::string> &newPrivileges)
279 std::vector<CynaraAdminPolicy> policies;
281 // Perform sort-merge join on oldPrivileges and newPrivileges.
282 // Assume that they are already sorted and without duplicates.
283 auto oldIter = oldPrivileges.begin();
284 auto newIter = newPrivileges.begin();
286 while (oldIter != oldPrivileges.end() && newIter != newPrivileges.end()) {
287 int compare = oldIter->compare(*newIter);
289 LogDebug("(user = " << user << " label = " << label << ") " <<
290 "keeping privilege " << *newIter);
294 } else if (compare < 0) {
295 LogDebug("(user = " << user << " label = " << label << ") " <<
296 "removing privilege " << *oldIter);
297 policies.push_back(CynaraAdminPolicy(label, user, *oldIter,
298 static_cast<int>(CynaraAdminPolicy::Operation::Delete),
299 Buckets.at(Bucket::MANIFESTS)));
302 LogDebug("(user = " << user << " label = " << label << ") " <<
303 "adding privilege " << *newIter);
304 policies.push_back(CynaraAdminPolicy(label, user, *newIter,
305 static_cast<int>(CynaraAdminPolicy::Operation::Allow),
306 Buckets.at(Bucket::MANIFESTS)));
311 for (; oldIter != oldPrivileges.end(); ++oldIter) {
312 LogDebug("(user = " << user << " label = " << label << ") " <<
313 "removing privilege " << *oldIter);
314 policies.push_back(CynaraAdminPolicy(label, user, *oldIter,
315 static_cast<int>(CynaraAdminPolicy::Operation::Delete),
316 Buckets.at(Bucket::MANIFESTS)));
319 for (; newIter != newPrivileges.end(); ++newIter) {
320 LogDebug("(user = " << user << " label = " << label << ") " <<
321 "adding privilege " << *newIter);
322 policies.push_back(CynaraAdminPolicy(label, user, *newIter,
323 static_cast<int>(CynaraAdminPolicy::Operation::Allow),
324 Buckets.at(Bucket::MANIFESTS)));
327 SetPolicies(policies);
330 void CynaraAdmin::UserInit(uid_t uid, security_manager_user_type userType)
333 std::vector<CynaraAdminPolicy> policies;
336 case SM_USER_TYPE_SYSTEM:
337 bucket = Bucket::USER_TYPE_SYSTEM;
339 case SM_USER_TYPE_ADMIN:
340 bucket = Bucket::USER_TYPE_ADMIN;
342 case SM_USER_TYPE_GUEST:
343 bucket = Bucket::USER_TYPE_GUEST;
345 case SM_USER_TYPE_NORMAL:
346 bucket = Bucket::USER_TYPE_NORMAL;
348 case SM_USER_TYPE_ANY:
349 case SM_USER_TYPE_NONE:
350 case SM_USER_TYPE_END:
352 ThrowMsg(CynaraException::InvalidParam, "User type incorrect");
355 policies.push_back(CynaraAdminPolicy(CYNARA_ADMIN_WILDCARD,
356 std::to_string(static_cast<unsigned int>(uid)),
357 CYNARA_ADMIN_WILDCARD,
359 Buckets.at(Bucket::MAIN)));
361 CynaraAdmin::getInstance().SetPolicies(policies);
364 void CynaraAdmin::UserRemove(uid_t uid)
366 std::vector<CynaraAdminPolicy> policies;
367 std::string user = std::to_string(static_cast<unsigned int>(uid));
369 EmptyBucket(Buckets.at(Bucket::PRIVACY_MANAGER),true,
370 CYNARA_ADMIN_ANY, user, CYNARA_ADMIN_ANY);
373 void CynaraAdmin::ListPolicies(
374 const std::string &bucketName,
375 const std::string &appId,
376 const std::string &user,
377 const std::string &privilege,
378 std::vector<CynaraAdminPolicy> &policies)
380 struct cynara_admin_policy ** pp_policies = nullptr;
383 cynara_admin_list_policies(m_CynaraAdmin, bucketName.c_str(), appId.c_str(),
384 user.c_str(), privilege.c_str(), &pp_policies),
385 "Error while getting list of policies for bucket: " + bucketName);
387 for (std::size_t i = 0; pp_policies[i] != nullptr; i++) {
388 policies.push_back(std::move(*static_cast<CynaraAdminPolicy*>(pp_policies[i])));
390 free(pp_policies[i]);
397 void CynaraAdmin::EmptyBucket(const std::string &bucketName, bool recursive, const std::string &client,
398 const std::string &user, const std::string &privilege)
401 cynara_admin_erase(m_CynaraAdmin, bucketName.c_str(), static_cast<int>(recursive),
402 client.c_str(), user.c_str(), privilege.c_str()),
403 "Error while emptying bucket: " + bucketName + ", filter (C, U, P): " +
404 client + ", " + user + ", " + privilege);
407 void CynaraAdmin::FetchCynaraPolicyDescriptions(bool forceRefresh)
409 struct cynara_admin_policy_descr **descriptions = nullptr;
411 if (!forceRefresh && m_policyDescriptionsInitialized)
416 cynara_admin_list_policies_descriptions(m_CynaraAdmin, &descriptions),
417 "Error while getting list of policies descriptions from Cynara.");
419 if (descriptions[0] == nullptr) {
420 LogError("Fetching policies levels descriptions from Cynara returned empty list. "
421 "There should be at least 2 entries - Allow and Deny");
426 m_policyDescriptionsInitialized = false;
427 DescriptionToType.clear();
428 TypeToDescription.clear();
431 for (int i = 0; descriptions[i] != nullptr; i++) {
432 std::string descriptionName(descriptions[i]->name);
434 DescriptionToType[descriptionName] = descriptions[i]->result;
435 TypeToDescription[descriptions[i]->result] = std::move(descriptionName);
437 free(descriptions[i]->name);
438 free(descriptions[i]);
443 m_policyDescriptionsInitialized = true;
446 void CynaraAdmin::ListPoliciesDescriptions(std::vector<std::string> &policiesDescriptions)
448 FetchCynaraPolicyDescriptions(false);
450 for (auto it = TypeToDescription.rbegin(); it != TypeToDescription.rend(); ++it)
451 policiesDescriptions.push_back(it->second);
454 std::string CynaraAdmin::convertToPolicyDescription(const int policyType, bool forceRefresh)
456 FetchCynaraPolicyDescriptions(forceRefresh);
458 return TypeToDescription.at(policyType);
461 int CynaraAdmin::convertToPolicyType(const std::string &policy, bool forceRefresh)
463 FetchCynaraPolicyDescriptions(forceRefresh);
465 return DescriptionToType.at(policy);
471 cynara_initialize(&m_Cynara, nullptr),
472 "Cannot connect to Cynara policy interface.");
477 cynara_finish(m_Cynara);
480 Cynara &Cynara::getInstance()
482 static Cynara cynara;
486 bool Cynara::check(const std::string &label, const std::string &privilege,
487 const std::string &user, const std::string &session)
489 return checkCynaraError(
490 cynara_check(m_Cynara,
491 label.c_str(), session.c_str(), user.c_str(), privilege.c_str()),
492 "Cannot check permission with Cynara.");
495 } // namespace SecurityManager