Generic solution for onlycap issues
[platform/core/test/security-tests.git] / src / security-manager-tests / common / sm_commons.h
1 /*
2  * Copyright (c) 2016-2017 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 #pragma once
18
19 #include <ftw.h>
20 #include <string>
21 #include <sys/capability.h>
22 #include <sys/stat.h>
23 #include <sys/types.h>
24 #include <vector>
25 #include <functional>
26
27 #include <security-manager-types.h>
28
29 #include <app_install_helper.h>
30 #include <memory.h>
31 #include <temp_test_user.h>
32 #include <tzplatform.h>
33
34 DEFINE_SMARTPTR(cap_free, _cap_struct, CapsSetsUniquePtr);
35
36 const int FTW_MAX_FDS = 16;
37
38 typedef std::vector<std::string> privileges_t;
39
40 int nftw_remove_labels(const char *fpath, const struct stat* /*sb*/,
41                        int /*typeflag*/, struct FTW* /*ftwbuf*/);
42 void check_app_permissions(const std::string &app_id, const std::string &pkg_id,
43                            const std::string &user, const privileges_t &allowed_privs,
44                            const privileges_t &denied_privs, bool isHybrid = false);
45 void sm_app_has_privileges(const AppInstallHelper &app,
46                            const std::vector<std::string> &privileges,
47                            int result);
48 void check_app_after_install(const std::string &app_id, const std::string &pkg_id);
49 void check_app_after_install(const std::string &app_id, const std::string &pkg_id,
50                              const privileges_t &allowed_privs,
51                              const privileges_t &denied_privs,
52                              bool isHybrid = false);
53 void check_path(const std::string &path, const std::string &label,
54                 bool transmute = true, bool execute = false);
55 void check_app_after_uninstall(const std::string &app_id, const std::string &pkg_id);
56 void check_app_after_uninstall(const std::string &app_id, const std::string &pkg_id,
57                                const privileges_t &privileges, bool isHybrid = false);
58
59 std::string access_opposite(std::string &access);
60 void check_exact_smack_accesses(const std::string &subject,
61                                 const std::string &object,
62                                 const std::string &access);
63
64 CapsSetsUniquePtr setCaps(const char *cap_string);
65
66 void runAccessTest(const std::string &label, uid_t uid, gid_t gid,
67                    const std::string &testPath, int accessType);
68 void runAccessTest(const AppInstallHelper &app, const std::string &testPath, int accessType);
69 void runSystemAccessTest(uid_t uid, gid_t gid, const std::string &testPath, int accessType);
70
71 bool isAskuserDisabled();
72 bool isPrivilegePrivacy(const std::string &priv);
73 int countPrivacyPrivileges(const PrivilegeVector &privs);
74 int countPrivacyPrivileges(const std::vector<std::string> &privs);