Add checking return value
[platform/core/security/ode.git] / server / internal-encryption.h
1 /*
2  *  Copyright (c) 2015 - 2019 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(const std::vector<unsigned char> &mk, unsigned int options);
40         int umount();
41         int isMounted();
42
43         int prepareEncryption(unsigned int options);
44         int prepareDecryption();
45
46         int encrypt(const std::string& password, unsigned int options = 0);
47         int decrypt(const std::string& password);
48
49         int recovery();
50
51         int isPasswordInitialized();
52         int initPassword(const std::string& password);
53         int cleanPassword(const std::string& password);
54         int changePassword(const std::string& oldPW, const std::string& newPW);
55         int verifyPassword(const std::string& password);
56
57         int getState();
58
59         unsigned int getSupportedOptions();
60
61         std::string getDevicePath() const;
62
63 private:
64         int migrateMasterKey(const std::string& dev, const std::string& password);
65         int getStateInternal() const;
66
67 private:
68         ServerContext& server;
69
70         std::unique_ptr<INTERNAL_ENGINE> engine;
71         BinaryData mountKey;
72         KeyServer& keyServer;
73 };
74
75 } // namespace ode
76
77 #endif // __INTERNAL_ENCRYPTION_SERVER_H__