Fix only partial rollback of Smack rules
[platform/core/test/security-tests.git] / src / common / smack_access.cpp
1 /*
2  * Copyright (c) 2013 - 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  * @file        smack_access.cpp
18  * @author      Bartlomiej Grzelewski (b.grzelewski@samsung.com)
19  * @version     1.0
20  * @brief       Common functions and macros used in security-tests package.
21  */
22
23 #include <sys/smack.h>
24
25 #include <tests_common.h>
26
27 #include <smack_access.h>
28
29 SmackAccess::SmackAccess()
30   : m_handle(nullptr)
31 {
32     RUNNER_ASSERT_MSG(0 == smack_accesses_new(&m_handle),
33         "Error in smack_accesses_new");
34 }
35
36 void SmackAccess::add(
37     const std::string &subject,
38     const std::string &object,
39     const std::string &rights)
40 {
41     RUNNER_ASSERT_MSG(0 == smack_accesses_add(m_handle,
42             subject.c_str(),
43             object.c_str(),
44             rights.c_str()),
45         "Error in smack_accesses_add.");
46 }
47
48 void SmackAccess::apply() {
49     RUNNER_ASSERT_MSG(0 == smack_accesses_apply(m_handle),
50         "Error in smack_accessses_apply.");
51 }
52
53 void SmackAccess::clear() {
54     RUNNER_ASSERT_MSG(0 == smack_accesses_clear(m_handle),
55         "Error in smack_accesses_clear.");
56 }
57
58 SmackAccess::~SmackAccess() {
59     if (m_handle)
60         smack_accesses_free(m_handle);
61 }
62