Add device path getters
[platform/core/security/ode.git] / server / external-encryption.h
1 /*
2  *  Copyright (c) 2015-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 __EXTERNAL_ENCRYPTION_SERVER_H__
18 #define __EXTERNAL_ENCRYPTION_SERVER_H__
19
20 #include <string>
21 #include <mutex>
22 #include <memory>
23
24 #include <klay/dbus/connection.h>
25
26 #include "rmi/external-encryption.h"
27 #include "key-server.h"
28 #include "engine/encryption/ecryptfs-engine.h"
29 #include "server.h"
30
31 namespace ode {
32
33 typedef EcryptfsEngine EXTERNAL_ENGINE;
34
35 class ExternalEncryptionServer final: public ExternalEncryption {
36 public:
37         ExternalEncryptionServer(ServerContext& srv, KeyServer& key);
38         ~ExternalEncryptionServer();
39
40         int setMountPassword(const std::string& password);
41
42         int mount();
43         int umount();
44
45         int encrypt(const std::string& password, unsigned int options);
46         int decrypt(const std::string& password);
47
48         int recovery();
49
50         int isPasswordInitialized();
51         int initPassword(const std::string& password);
52         int cleanPassword(const std::string& password);
53         int changePassword(const std::string& oldPW, const std::string& newPW);
54         int verifyPassword(const std::string& password);
55
56         int getState();
57
58         unsigned int getSupportedOptions();
59
60         std::string getDevicePath() const;
61
62 private:
63         ServerContext& server;
64
65         std::unique_ptr<EXTERNAL_ENGINE> engine;
66         BinaryData mountKey;
67         KeyServer& keyServer;
68 };
69
70 } // namespace ode
71
72 #endif // __EXTERNAL_ENCRYPTION_SERVER_H__