Simple interface for set up rules.
[platform/core/test/security-tests.git] / tests / common / smack_access.cpp
1 /*
2  * Copyright (c) 2013 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 <dpl/test/test_runner.h>
26
27 #include <smack_access.h>
28
29 SmackAccess::SmackAccess()
30   : m_handle(NULL)
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     const Tracker &tracker)
41 {
42     RUNNER_ASSERT_MSG(0 == smack_accesses_add(m_handle,
43             subject.c_str(),
44             object.c_str(),
45             rights.c_str()),
46         tracker.str() << "Error in smack_accesses_add.");
47 }
48
49 void SmackAccess::apply(const Tracker &tracker) {
50     RUNNER_ASSERT_MSG(0 == smack_accesses_apply(m_handle),
51         tracker.str() << "Error in smack_accessses_apply.");
52 }
53
54 SmackAccess::~SmackAccess() {
55     if (m_handle)
56         smack_accesses_free(m_handle);
57 }
58