676b5b03a0567d55549cc287b81ff1a8c345030b
[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_aliases)
49         mgr->removeAlias(it);
50     m_aliases.clear();
51 }
52
53 // returns process label
54 CharPtr get_label()
55 {
56     int ret;
57     char* my_label = NULL;
58     RUNNER_ASSERT_MSG(0 <= (ret = smack_new_label_from_self(&my_label)),
59                          "Failed to get smack label for self. Error: " << ret);
60
61     return CharPtr(my_label, free);
62 }
63
64 std::string aliasWithLabel(const char *label, const char *alias)
65 {
66     if(label)
67     {
68         std::stringstream ss;
69         ss << label << std::string(ckmc_label_name_separator) << alias;
70         return ss.str();
71     }
72     return std::string(alias);
73 }
74
75 // changes process label
76 void change_label(const char* label)
77 {
78     int ret = smack_set_label_for_self(label);
79     RUNNER_ASSERT_MSG(0 == ret, "Error in smack_set_label_for_self. Error: " << ret);
80 }
81
82 ScopedLabel::ScopedLabel(const char* label) : m_original_label(get_label())
83 {
84     change_label(label);
85 }
86
87 ScopedLabel::~ScopedLabel()
88 {
89     /*
90      * Let it throw. If we can't restore label then remaining tests results will be
91      * unreliable anyway.
92      */
93     change_label(m_original_label.get());
94 }