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