Old privileges restored
[platform/core/security/key-manager.git] / src / manager / service / ckm-service.h
1 /*
2  *  Copyright (c) 2000 - 2015 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  *
17  * @file        ckm-service.h
18  * @author      Bartlomiej Grzelewski (b.grzelewski@samsung.com)
19  * @version     1.0
20  * @brief       CKM service implementation.
21  */
22 #pragma once
23
24 #include <mutex>
25 #include <message-service.h>
26 #include <message-buffer.h>
27 #include <dpl/exception.h>
28
29 namespace CKM {
30
31 class CKMLogic;
32
33 class CKMService : public ThreadMessageService<MsgKeyRequest>
34 {
35 public:
36     CKMService();
37     CKMService(const CKMService &) = delete;
38     CKMService(CKMService &&) = delete;
39     CKMService& operator=(const CKMService &) = delete;
40     CKMService& operator=(CKMService &&) = delete;
41
42     virtual void Start(void);
43     virtual void Stop(void);
44
45     virtual ~CKMService();
46
47     ServiceDescriptionVector GetServiceDescription();
48
49 private:
50     virtual void SetCommManager(CommMgr *manager);
51
52     class Exception {
53     public:
54         DECLARE_EXCEPTION_TYPE(CKM::Exception, Base)
55         DECLARE_EXCEPTION_TYPE(Base, BrokenProtocol)
56     };
57
58     bool ProcessOne(
59         const ConnectionID &conn,
60         ConnectionInfo &info,
61         bool allowed);
62
63     RawBuffer ProcessControl(
64         MessageBuffer &buffer);
65
66     RawBuffer ProcessStorage(
67         Credentials &cred,
68         MessageBuffer &buffer,
69         bool allowed);
70
71     virtual void ProcessMessage(MsgKeyRequest msg);
72
73     CKMLogic *m_logic;
74 };
75
76 } // namespace CKM
77