Fix coverity issue
[platform/core/security/ode.git] / server / luks.h
1 /*
2  *  Copyright (c) 2017 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 #ifndef __ODE_LUKS_SERVER_H__
18 #define __ODE_LUKS_SERVER_H__
19
20 #include <string>
21 #include <mutex>
22
23 #include "rmi/luks.h"
24 #include "key-server.h"
25 #include "server.h"
26
27 namespace ode {
28
29 class LuksServer final: public Luks {
30 public:
31         explicit LuksServer(ServerContext& srv, KeyServer& key);
32         ~LuksServer();
33
34         int format(bool sync,
35                            const std::string& device,
36                            const std::string& password);
37
38         int open(bool sync,
39                          const std::string& device,
40                          const std::string& password,
41                          const std::string& mapping);
42
43         int close(bool sync, const std::string& mapping);
44
45 private:
46         template <typename F>
47         int execute(bool sync, Luks::Operation op, const F& job);
48
49         ServerContext& server;
50         KeyServer& keyServer;
51
52         std::mutex opGuard;
53 };
54
55 } // namespace ode
56
57 #endif // __ODE_LUKS_SERVER_H__