11b93a5f89b483d1850aa6fa47c021c75a797bf5
[platform/core/security/security-manager.git] / src / common / include / protocols.h
1 /*
2  *  Copyright (c) 2000 - 2014 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  *  Contact: Rafal Krypa <r.krypa@samsung.com>
5  *
6  *  Licensed under the Apache License, Version 2.0 (the "License");
7  *  you may not use this file except in compliance with the License.
8  *  You may obtain a copy of the License at
9  *
10  *      http://www.apache.org/licenses/LICENSE-2.0
11  *
12  *  Unless required by applicable law or agreed to in writing, software
13  *  distributed under the License is distributed on an "AS IS" BASIS,
14  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  *  See the License for the specific language governing permissions and
16  *  limitations under the License
17  */
18 /*
19  * @file        protocols.h
20  * @author      Bartlomiej Grzelewski (b.grzelewski@samsung.com)
21  * @version     1.0
22  * @brief       This file contains list of all protocols suported by security-manager.
23  */
24
25 #ifndef _SECURITY_MANAGER_PROTOCOLS_
26 #define _SECURITY_MANAGER_PROTOCOLS_
27
28 #include <sys/types.h>
29 #include <vector>
30 #include <string>
31
32 /**
33  * \name Return Codes
34  * exported by the foundation API.
35  * result codes begin with the start error code and extend into negative direction.
36  * @{
37 */
38
39 /*! \brief   indicating the result of the one specific API is successful */
40 #define SECURITY_MANAGER_API_SUCCESS 0
41
42 /*! \brief   indicating the socket between client and Security Manager has been failed  */
43 #define SECURITY_MANAGER_API_ERROR_SOCKET -1
44
45 /*! \brief   indicating the request to Security Manager is malformed */
46 #define SECURITY_MANAGER_API_ERROR_BAD_REQUEST -2
47
48 /*! \brief   indicating the response from Security Manager is malformed */
49 #define SECURITY_MANAGER_API_ERROR_BAD_RESPONSE -3
50
51 /*! \brief   indicating the requested service does not exist */
52 #define SECURITY_MANAGER_API_ERROR_NO_SUCH_SERVICE -4
53
54 /*! \brief   indicating requesting object is not exist */
55 #define SECURITY_MANAGER_API_ERROR_NO_SUCH_OBJECT -6
56
57 /*! \brief   indicating the authentication between client and server has been failed */
58 #define SECURITY_MANAGER_API_ERROR_AUTHENTICATION_FAILED -7
59
60 /*! \brief   indicating the API's input parameter is malformed */
61 #define SECURITY_MANAGER_API_ERROR_INPUT_PARAM -8
62
63 /*! \brief   indicating the output buffer size which is passed as parameter is too small */
64 #define SECURITY_MANAGER_API_ERROR_BUFFER_TOO_SMALL -9
65
66 /*! \brief   indicating system  is running out of memory state */
67 #define SECURITY_MANAGER_API_ERROR_OUT_OF_MEMORY -10
68
69 /*! \brief   indicating the access has been denied by Security Manager */
70 #define SECURITY_MANAGER_API_ERROR_ACCESS_DENIED -11
71
72 /*! \brief   indicating Security Manager has been failed for some reason */
73 #define SECURITY_MANAGER_API_ERROR_SERVER_ERROR -12
74
75 /*! \brief   indicating getting smack label from socket failed  */
76 #define SECURITY_MANAGER_API_ERROR_GETTING_SOCKET_LABEL_FAILED -21
77
78 /*! \brief   indicating getting smack label from file failed  */
79 #define SECURITY_MANAGER_API_ERROR_GETTING_FILE_LABEL_FAILED -22
80
81 /*! \brief   indicating setting smack label for file failed  */
82 #define SECURITY_MANAGER_API_ERROR_SETTING_FILE_LABEL_FAILED -23
83
84 /*! \brief   indicating file already exists  */
85 #define SECURITY_MANAGER_API_ERROR_FILE_EXIST -24
86
87 /*! \brief   indicating file does not exist  */
88 #define SECURITY_MANAGER_API_ERROR_FILE_NOT_EXIST -25
89
90 /*! \brief   indicating file open error  */
91 #define SECURITY_MANAGER_API_ERROR_FILE_OPEN_FAILED -26
92
93 /*! \brief   indicating file creation error  */
94 #define SECURITY_MANAGER_API_ERROR_FILE_CREATION_FAILED -27
95
96 /*! \brief   indicating file deletion error  */
97 #define SECURITY_MANAGER_API_ERROR_FILE_DELETION_FAILED -28
98
99 /*! \brief   indicating the error with unknown reason */
100 #define SECURITY_MANAGER_API_ERROR_UNKNOWN -255
101 /** @}*/
102
103
104 struct app_inst_req {
105     std::string appId;
106     std::string pkgId;
107     std::vector<std::string> privileges;
108     std::vector<std::pair<std::string, int>> appPaths;
109     uid_t uid;
110 };
111
112 struct user_req {
113     uid_t uid;
114     int utype;
115 };
116
117 namespace SecurityManager {
118
119 extern char const * const SERVICE_SOCKET;
120
121 enum class SecurityModuleCall
122 {
123     APP_INSTALL,
124     APP_UNINSTALL,
125     APP_GET_PKGID,
126     APP_GET_GROUPS,
127     USER_ADD,
128     USER_DELETE,
129 };
130
131 } // namespace SecurityManager
132
133 #endif // _SECURITY_MANAGER_PROTOCOLS_