Move label generation to global commons
[platform/core/test/security-tests.git] / src / security-manager-tests / common / app_install_helper.h
1 /*
2  * Copyright (c) 2014-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 #pragma once
17
18 #include <fcntl.h>
19 #include <functional>
20 #include <sys/types.h>
21 #include <unistd.h>
22
23 #include <map>
24 #include <string>
25 #include <utility>
26 #include <vector>
27
28 #include <security-manager-types.h>
29 #include <app_def_privilege.h>
30
31 struct AppInstallHelper {
32
33     using TypePathsMap = std::map<app_install_path_type, std::vector<std::string>>;
34     AppInstallHelper(const std::string &appNamePrefix,
35                      const std::string &pkgNamePrefix,
36                      bool isLocal,
37                      uid_t uid,
38                      std::string version = std::string())
39       : m_appName(appNamePrefix), m_pkgName(pkgNamePrefix), m_isLocal(isLocal), m_uidGid(uid), m_version(version),
40         m_installType(SM_APP_INSTALL_NONE), m_isHybrid(false), m_isInstallDirCreated(false), m_creatorPid(getpid())
41     {
42         setInstallPath();
43     }
44
45     AppInstallHelper(const std::string &appNamePrefix,
46                      const std::string &pkgNamePrefix,
47                      uid_t uid)
48       : AppInstallHelper(appNamePrefix, pkgNamePrefix, false, uid)
49     {}
50
51     AppInstallHelper(const std::string &namePrefix)
52       : AppInstallHelper(namePrefix, namePrefix, false, geteuid())
53     {}
54
55     AppInstallHelper(const std::string &appNamePrefix, const std::string &pkgNamePrefix)
56       : AppInstallHelper(appNamePrefix, pkgNamePrefix, false, geteuid())
57     {}
58
59     AppInstallHelper(const std::string &namePrefix, uid_t uid)
60       : AppInstallHelper(namePrefix, namePrefix, true, uid)
61     {}
62
63     AppInstallHelper(const std::string &appNamePrefix, const std::string &pkgNamePrefix, uid_t uid,
64                      const std::string &version)
65       : AppInstallHelper(appNamePrefix, pkgNamePrefix, true, uid, version)
66     {}
67
68     AppInstallHelper(const std::string &namePrefix, uid_t uid, const std::string &version)
69       : AppInstallHelper(namePrefix, namePrefix, true, uid, version)
70     {}
71
72     AppInstallHelper(const AppInstallHelper &other) = default;
73     AppInstallHelper& operator=(const AppInstallHelper &other) = delete;
74     AppInstallHelper(AppInstallHelper &&other);
75
76     // App info getters and setters
77     std::string getAppId() const;
78     std::string getPkgId() const;
79     int getUID() const;
80     int getGID() const;
81     void setVersion(const std::string &version);
82     std::string getVersion() const;
83     void setAuthor(const std::string &author);
84     std::string getAuthor() const;
85     void setInstallType(app_install_type type);
86     app_install_type getInstallType() const;
87     void setHybrid();
88     bool getIsHybrid() const;
89
90     // Path types creation and removal on file system
91     void createInstallDir();
92     void createTrustedDir(int i = 0);
93     void createPrivateDir(int i = 0);
94     void createPublicDir();
95     void createPrivateFile(int i = 0);
96     void createSharedRODir(int i = 0);
97     void createPrivateRODir(int i = 0);
98     void removePaths();
99
100     // Path getters
101     std::string getInstallDir() const;
102     std::string getTrustedDir(int i = 0) const;
103     std::string getPrivateDir(int i = 0) const;
104     std::string getPrivateRODir(int i = 0) const;
105     std::string getPublicDir() const;
106     std::string getPrivatePath(int i = 0) const;
107     std::string getSharedRODir(int i = 0) const;
108     const TypePathsMap& getDirsMap() const;
109     const TypePathsMap& getFilesMap() const;
110
111     // Privileges
112     std::vector<std::string> getPrivilegesNames() const;             // deprecated
113     void addPrivileges(const std::vector<std::string> &privileges);  // deprecated
114     void addPrivilege(Privilege privilege);
115     void addPrivileges(const PrivilegeVector &privileges);
116     const PrivilegeVector& getPrivileges() const;
117
118     void addAppDefinedPrivilege(Privilege privilege);
119     const PrivilegeVector& getAppDefinedPrivileges() const;
120
121     // Smack
122     std::string generateAppLabel() const;
123     std::string generatePkgLabel() const;
124     void revokeRules() const;
125     virtual ~AppInstallHelper() {
126         if (m_creatorPid == getpid())
127             removePaths();
128     }
129
130 protected:
131     void setInstallPath();
132     bool create(std::function<int(const char*, mode_t)> &&creatFun, const std::string &path);
133     std::string m_appName;
134     std::string m_pkgName;
135     bool m_isLocal;
136     int m_uidGid;
137     std::string m_version;
138     app_install_type m_installType;
139     bool m_isHybrid;
140     std::string m_installDir;
141     bool m_isInstallDirCreated;
142     TypePathsMap m_dirTypeMap;
143     TypePathsMap m_fileTypeMap;
144     PrivilegeVector m_privileges;
145     PrivilegeVector m_appDefinedPrivileges;
146     std::string m_author;
147
148     pid_t m_creatorPid;
149 };