Split service implementation logic away from the Service class
[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
65     /**
66      * Handle request from a client
67      *
68      * @param  conn        Socket connection information
69      * @param  buffer      Raw received data buffer
70      * @param  interfaceID identifier used to distinguish source socket
71      * @return             true on success
72      */
73     bool processOne(const ConnectionID &conn, MessageBuffer &buffer, InterfaceID interfaceID);
74
75     /**
76      * Process application installation
77      *
78      * @param  buffer Raw received data buffer
79      * @param  send   Raw data buffer to be sent
80      * @param  uid    User's identifier for whom application will be installed
81      */
82     void processAppInstall(MessageBuffer &buffer, MessageBuffer &send, uid_t uid);
83
84     /**
85      * Process application uninstallation
86      *
87      * @param  buffer Raw received data buffer
88      * @param  send   Raw data buffer to be sent
89      * @param  uid    User's identifier for whom application will be uninstalled
90      */
91     void processAppUninstall(MessageBuffer &buffer, MessageBuffer &send, uid_t uid);
92
93     /**
94      * Process getting package id from app id
95      *
96      * @param  buffer Raw received data buffer
97      * @param  send   Raw data buffer to be sent
98      */
99     void processGetPkgId(MessageBuffer &buffer, MessageBuffer &send);
100
101     /**
102      * Process getting permitted group ids for app id
103      *
104      * @param  buffer Raw received data buffer
105      * @param  send   Raw data buffer to be sent
106      * @param  uid    User's identifier for whom application will be launched
107      * @param  pid    Process id in which application will be launched
108      */
109     void processGetAppGroups(MessageBuffer &buffer, MessageBuffer &send, uid_t uid, pid_t pid);
110 };
111
112 } // namespace SecurityManager
113
114 #endif // _SECURITY_MANAGER_SERVICE_