Server code no longer needs to include cynara and privilege-db headers
[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
33 namespace SecurityManager {
34
35 class ServiceException
36 {
37 public:
38     DECLARE_EXCEPTION_TYPE(SecurityManager::Exception, Base)
39     DECLARE_EXCEPTION_TYPE(Base, InvalidAction)
40 };
41
42 class Service :
43     public SecurityManager::GenericSocketService,
44     public SecurityManager::ServiceThread<Service>
45 {
46 public:
47     Service();
48     ServiceDescriptionVector GetServiceDescription();
49
50     DECLARE_THREAD_EVENT(AcceptEvent, accept)
51     DECLARE_THREAD_EVENT(WriteEvent, write)
52     DECLARE_THREAD_EVENT(ReadEvent, process)
53     DECLARE_THREAD_EVENT(CloseEvent, close)
54
55     void accept(const AcceptEvent &event);
56     void write(const WriteEvent &event);
57     void process(const ReadEvent &event);
58     void close(const CloseEvent &event);
59
60 private:
61     ConnectionInfoMap m_connectionInfoMap;
62
63     /**
64      * Handle request from a client
65      *
66      * @param  conn        Socket connection information
67      * @param  buffer      Raw received data buffer
68      * @param  interfaceID identifier used to distinguish source socket
69      * @return             true on success
70      */
71     bool processOne(const ConnectionID &conn, MessageBuffer &buffer, InterfaceID interfaceID);
72
73     /**
74      * Process application installation
75      *
76      * @param  buffer Raw received data buffer
77      * @param  send   Raw data buffer to be sent
78      * @param  uid    User's identifier for whom application will be installed
79      */
80     void processAppInstall(MessageBuffer &buffer, MessageBuffer &send, uid_t uid);
81
82     /**
83      * Process application uninstallation
84      *
85      * @param  buffer Raw received data buffer
86      * @param  send   Raw data buffer to be sent
87      * @param  uid    User's identifier for whom application will be uninstalled
88      */
89     void processAppUninstall(MessageBuffer &buffer, MessageBuffer &send, uid_t uid);
90
91     /**
92      * Process getting package id from app id
93      *
94      * @param  buffer Raw received data buffer
95      * @param  send   Raw data buffer to be sent
96      */
97     void processGetPkgId(MessageBuffer &buffer, MessageBuffer &send);
98
99     /**
100      * Process getting permitted group ids for app id
101      *
102      * @param  buffer Raw received data buffer
103      * @param  send   Raw data buffer to be sent
104      * @param  uid    User's identifier for whom application will be launched
105      * @param  pid    Process id in which application will be launched
106      */
107     void processGetAppGroups(MessageBuffer &buffer, MessageBuffer &send, uid_t uid, pid_t pid);
108 };
109
110 } // namespace SecurityManager
111
112 #endif // _SECURITY_MANAGER_SERVICE_