c03d37a09a5b9a2cb04583ca707d1bd32af34a46
[platform/core/test/security-tests.git] / tests / common / tests_common.h
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 /*
18  * @file        tests_common.h
19  * @author      Lukasz Kostyra (l.kostyra@partner.samsung.com)
20  * @version     1.0
21  * @brief       Common functions and macros used in security-tests package.
22  */
23
24 #ifndef _TESTS_COMMON_H_
25 #define _TESTS_COMMON_H_
26
27 #include <sys/smack.h>
28 #include <dpl/test/test_runner.h>
29 #include <dpl/test/test_runner_child.h>
30 #include <dpl/test/test_runner_multiprocess.h>
31 #include <privilege-control.h>
32 #include <sys/smack.h>
33 #include <string>
34 #include <errno.h>
35 #include <string.h>
36
37 const uid_t APP_UID = 5000;
38 const gid_t APP_GID = 5000;
39 const uid_t DB_ALARM_UID = 6001;
40 const gid_t DB_ALARM_GID = 6001;
41 const std::string TMP_DIR("/tmp");
42
43 int smack_runtime_check(void);
44 int smack_check(void);
45 int drop_root_privileges(uid_t appUid = APP_UID, gid_t appGid = APP_GID);
46 void setLabelForSelf(const int line, const char *label);
47 void add_process_group(const char* group_name);
48 void remove_process_group(const char* group_name);
49 std::string formatCstr(const char *cstr);
50 int files_compare(int fd1, int fd2);
51
52 #define RUNNER_TEST_SMACK(Proc)                                                     \
53     void Proc();                                                                    \
54     static int Static##Proc##Init()                                                 \
55     {                                                                               \
56         if(smack_check())                                                           \
57             DPL::Test::TestRunnerSingleton::Instance().RegisterTest(#Proc, &Proc);  \
58                                                                                     \
59         return 0;                                                                   \
60     }                                                                               \
61     const int DPL_UNUSED Static##Proc##InitVar = Static##Proc##Init();              \
62     void Proc()
63
64 #define RUNNER_TEST_NOSMACK(Proc)                                                   \
65     void Proc();                                                                    \
66     static int Static##Proc##Init()                                                 \
67     {                                                                               \
68         if(!(smack_check()))                                                        \
69             DPL::Test::TestRunnerSingleton::Instance().RegisterTest(#Proc, &Proc);  \
70                                                                                     \
71         return 0;                                                                   \
72     }                                                                               \
73     const int DPL_UNUSED Static##Proc##InitVar = Static##Proc##Init();              \
74     void Proc()
75
76 #define RUNNER_CHILD_TEST_SMACK(Proc)                                                \
77     void Proc();                                                                     \
78     void Proc##Child();                                                              \
79     static int Static##Proc##Init()                                                  \
80     {                                                                                \
81         if(smack_check())                                                            \
82             DPL::Test::TestRunnerSingleton::Instance().RegisterTest(#Proc, &Proc);   \
83         return 0;                                                                    \
84     }                                                                                \
85     const int DPL_UNUSED Static##Proc##InitVar = Static##Proc##Init();               \
86     void Proc(){                                                                     \
87             DPL::Test::RunChildProc(&Proc##Child);                                   \
88     }                                                                                \
89     void Proc##Child()
90
91 #define RUNNER_CHILD_TEST_NOSMACK(Proc)                                              \
92     void Proc();                                                                     \
93     void Proc##Child();                                                              \
94     static int Static##Proc##Init()                                                  \
95     {                                                                                \
96         if(!(smack_check()))                                                         \
97             DPL::Test::TestRunnerSingleton::Instance().RegisterTest(#Proc, &Proc);   \
98         return 0;                                                                    \
99     }                                                                                \
100     const int DPL_UNUSED Static##Proc##InitVar = Static##Proc##Init();               \
101     void Proc(){                                                                     \
102             DPL::Test::RunChildProc(&Proc##Child);                                   \
103     }                                                                                \
104     void Proc##Child()
105
106 #define RUNNER_MULTIPROCESS_TEST_SMACK(Proc)                                         \
107     void Proc();                                                                     \
108     void Proc##Multi();                                                              \
109     static int Static##Proc##Init()                                                  \
110     {                                                                                \
111         if(smack_check())                                                            \
112             DPL::Test::TestRunnerSingleton::Instance().RegisterTest(#Proc, &Proc);   \
113         return 0;                                                                    \
114     }                                                                                \
115     const int DPL_UNUSED Static##Proc##InitVar = Static##Proc##Init();               \
116     void Proc(){                                                                     \
117             DPL::Test::RunMultiProc(&Proc##Multi);                                   \
118     }                                                                                \
119     void Proc##Multi()
120
121 #define RUNNER_MULTIPROCESS_TEST_NOSMACK(Proc)                                       \
122     void Proc();                                                                     \
123     void Proc##Multi();                                                              \
124     static int Static##Proc##Init()                                                  \
125     {                                                                                \
126         if(!(smack_check()))                                                         \
127             DPL::Test::TestRunnerSingleton::Instance().RegisterTest(#Proc, &Proc);   \
128         return 0;                                                                    \
129     }                                                                                \
130     const int DPL_UNUSED Static##Proc##InitVar = Static##Proc##Init();               \
131     void Proc(){                                                                     \
132             DPL::Test::RunMultiProc(&Proc##Multi);                                   \
133     }                                                                                \
134     void Proc##Multi()
135
136 namespace DB {
137
138     class Transaction
139     {
140     public:
141
142         static int db_result;
143
144         Transaction() {
145             db_result = perm_begin();
146             RUNNER_ASSERT_MSG(PC_OPERATION_SUCCESS == db_result,
147                               "perm_begin returned: " << db_result);
148         }
149
150         ~Transaction() {
151             db_result = perm_end();
152         }
153     };
154 } // namespace DB
155
156 // Database Transaction macros
157 // PLEASE NOTE Both DB_BEGIN and DB_END need to be called in the same scope.
158 // They are used to prevent developer from forgetting to close transaction.
159 // Also note that variables defined between these macros will not be visible
160 // after DB_END.
161 #define DB_BEGIN                       \
162         {                              \
163         DB::Transaction db_transaction;
164
165 #define DB_END }                                                                   \
166         RUNNER_ASSERT_MSG(PC_OPERATION_SUCCESS == DB::Transaction::db_result,      \
167         "perm_end returned: " << DB::Transaction::db_result);
168
169 // Common macros and labels used in tests
170 extern const char *WGT_APP_ID;
171
172 #endif