Implement client API for launcher adding process to supplementary groups
[platform/core/security/security-manager.git] / src / server / service / include / service.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        service.h
20  * @author      Michal Witanowski <m.witanowski@samsung.com>
21  * @author      Rafal Krypa <r.krypa@samsung.com>
22  * @brief       Implementation of security-manager service
23  */
24
25 #ifndef _SECURITY_MANAGER_SERVICE_
26 #define _SECURITY_MANAGER_SERVICE_
27
28 #include <service-thread.h>
29 #include <generic-socket-manager.h>
30 #include <message-buffer.h>
31 #include <connection-info.h>
32 #include <privilege_db.h>
33 #include <cynara.h>
34
35 namespace SecurityManager {
36
37 class ServiceException
38 {
39 public:
40     DECLARE_EXCEPTION_TYPE(SecurityManager::Exception, Base)
41     DECLARE_EXCEPTION_TYPE(Base, InvalidAction)
42 };
43
44 class Service :
45     public SecurityManager::GenericSocketService,
46     public SecurityManager::ServiceThread<Service>
47 {
48 public:
49     Service();
50     ServiceDescriptionVector GetServiceDescription();
51
52     DECLARE_THREAD_EVENT(AcceptEvent, accept)
53     DECLARE_THREAD_EVENT(WriteEvent, write)
54     DECLARE_THREAD_EVENT(ReadEvent, process)
55     DECLARE_THREAD_EVENT(CloseEvent, close)
56
57     void accept(const AcceptEvent &event);
58     void write(const WriteEvent &event);
59     void process(const ReadEvent &event);
60     void close(const CloseEvent &event);
61
62 private:
63     ConnectionInfoMap m_connectionInfoMap;
64     PrivilegeDb m_privilegeDb;
65     Cynara m_cynara;
66
67     /**
68      * Handle request from a client
69      *
70      * @param  conn        Socket connection information
71      * @param  buffer      Raw received data buffer
72      * @param  interfaceID identifier used to distinguish source socket
73      * @return             true on success
74      */
75     bool processOne(const ConnectionID &conn, MessageBuffer &buffer, InterfaceID interfaceID);
76
77     /**
78      * Process application installation
79      *
80      * @param  buffer Raw received data buffer
81      * @param  send   Raw data buffer to be sent
82      * @param  uid    User's identifier for whom application will be installed
83      * @return        true on success
84      */
85     bool processAppInstall(MessageBuffer &buffer, MessageBuffer &send, uid_t uid);
86
87     /**
88      * Process application uninstallation
89      *
90      * @param  buffer Raw received data buffer
91      * @param  send   Raw data buffer to be sent
92      * @param  uid    User's identifier for whom application will be uninstalled
93      * @return        true on success
94      */
95     bool processAppUninstall(MessageBuffer &buffer, MessageBuffer &send, uid_t uid);
96
97     /**
98      * Process getting package id from app id
99      *
100      * @param  buffer Raw received data buffer
101      * @param  send   Raw data buffer to be sent
102      * @return        true on success
103      */
104     bool processGetPkgId(MessageBuffer &buffer, MessageBuffer &send);
105
106     /**
107      * Process getting permitted group ids for app id
108      *
109      * @param  buffer Raw received data buffer
110      * @param  send   Raw data buffer to be sent
111      * @param  uid    User's identifier for whom application will be launched
112      * @param  pid    Process id in which application will be launched
113      * @return        true on success
114      */
115     bool processGetAppGroups(MessageBuffer &buffer, MessageBuffer &send, uid_t uid, pid_t pid);
116 };
117
118 } // namespace SecurityManager
119
120 #endif // _SECURITY_MANAGER_SERVICE_