Alias is not unique user-wide: modified test set.
[platform/core/test/security-tests.git] / tests / ckm / ckm-common.cpp
1 /*
2  *  Copyright (c) 2000 - 2014 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  * @file       ckm-common.cpp
18  * @author     Krzysztof Jackiewicz (k.jackiewicz@samsung.com)
19  * @version    1.0
20  */
21
22 #include <sys/smack.h>
23 #include <ckmc/ckmc-type.h>
24 #include <ckm-common.h>
25 #include <tests_common.h>
26 #include <access_provider2.h>
27 #include <ckm/ckm-manager.h>
28
29 void switch_to_storage_user(const char* label)
30 {
31     AccessProvider ap(label);
32     ap.allowAPI("key-manager::api-storage", "rw");
33     ap.applyAndSwithToUser(APP_UID, APP_GID);
34 }
35
36 void switch_to_storage_ocsp_user(const char* label)
37 {
38     AccessProvider ap(label);
39     ap.allowAPI("key-manager::api-storage", "rw");
40     ap.allowAPI("key-manager::api-ocsp", "rw");
41     ap.applyAndSwithToUser(APP_UID, APP_GID);
42 }
43
44 DBCleanup::~DBCleanup()
45 {
46     // Let it throw. If db can't be cleared further tests are unreliable
47     CKM::ManagerShPtr mgr = CKM::Manager::create();
48     for(const auto& it:m_keys)
49         mgr->removeKey(it);
50     m_keys.clear();
51     for(const auto& it:m_certs)
52         mgr->removeCertificate(it);
53     m_certs.clear();
54     for(const auto& it:m_data)
55         mgr->removeData(it);
56     m_data.clear();
57 }
58
59 // returns process label
60 CharPtr get_label()
61 {
62     int ret;
63     char* my_label = NULL;
64     RUNNER_ASSERT_MSG(0 <= (ret = smack_new_label_from_self(&my_label)),
65                          "Failed to get smack label for self. Error: " << ret);
66
67     return CharPtr(my_label, free);
68 }
69
70 std::string aliasWithLabel(const char *label, const char *alias)
71 {
72     if(label)
73     {
74         std::stringstream ss;
75         ss << label << std::string(ckmc_label_name_separator) << alias;
76         return ss.str();
77     }
78     return std::string(alias);
79 }
80
81 // changes process label
82 void change_label(const char* label)
83 {
84     int ret = smack_set_label_for_self(label);
85     RUNNER_ASSERT_MSG(0 == ret, "Error in smack_set_label_for_self. Error: " << ret);
86 }
87
88 ScopedLabel::ScopedLabel(const char* label) : m_original_label(get_label())
89 {
90     change_label(label);
91 }
92
93 ScopedLabel::~ScopedLabel()
94 {
95     /*
96      * Let it throw. If we can't restore label then remaining tests results will be
97      * unreliable anyway.
98      */
99     change_label(m_original_label.get());
100 }