Encryption service calls proper encryption/decryption methods
[platform/core/security/key-manager.git] / src / manager / service / encryption-logic.cpp
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       encryption-logic.cpp
18  * @author     Krzysztof Jackiewicz (k.jackiewicz@samsung.com)
19  * @version    1.0
20  */
21
22 #include <encryption-logic.h>
23 #include <ckm/ckm-error.h>
24 #include <dpl/log/log.h>
25
26 namespace CKM {
27
28 void EncryptionLogic::Crypt(const CryptoRequest& request)
29 {
30     // check arguments
31     if(request.input.empty()) {
32         LogError("No input data");
33         m_service.RespondToClient(request, CKM_API_ERROR_INPUT_PARAM);
34         return;
35     }
36
37     // store request in the map
38     auto ret = m_requests.insert(std::make_pair(request.msgId, request));
39     if (!ret.second) {
40         LogError("Request with id " << request.msgId << " already exists");
41         m_service.RespondToClient(request, CKM_API_ERROR_INPUT_PARAM);
42         return;
43     }
44
45     // request key
46     try {
47         m_service.RequestKey(request);
48     } catch (...) {
49         LogError("Key request failed");
50         m_requests.erase(request.msgId);
51         m_service.RespondToClient(request, CKM_API_ERROR_SERVER_ERROR);
52     }
53 }
54
55 void EncryptionLogic::KeyRetrieved(MsgKeyResponse response)
56 {
57     auto it = m_requests.find(response.id);
58     if (it == m_requests.end()) {
59         LogError("No matching request found"); // nothing we can do
60         return;
61     }
62     CryptoRequest req = std::move(it->second);
63     m_requests.erase(it);
64
65     if (response.error != CKM_API_SUCCESS) {
66         LogError("Attempt to retrieve key failed with error: " << response.error);
67         m_service.RespondToClient(req, response.error);
68         return;
69     }
70
71     if (!response.key) {
72         LogError("Retrieved key is empty");
73         m_service.RespondToClient(req, CKM_API_ERROR_SERVER_ERROR);
74         return;
75     }
76
77     // encrypt/decrypt
78     try {
79         RawBuffer output;
80         if (req.command == EncryptionCommand::ENCRYPT)
81             output = response.key->encrypt(req.cas, req.input);
82         else
83             output = response.key->decrypt(req.cas, req.input);
84         m_service.RespondToClient(req, CKM_API_SUCCESS, output);
85     } catch (const Exc::Exception& ex) {
86         m_service.RespondToClient(req, ex.error());
87     } catch (...) {
88         LogError("Uncaught exception from encrypt/decrypt.");
89         m_service.RespondToClient(req, CKM_API_ERROR_SERVER_ERROR);
90     }
91 }
92
93 } /* namespace CKM */