crypto-service key generation contents moved into SW backend.
[platform/core/security/key-manager.git] / src / manager / crypto / platform / decider.cpp
1 /*
2  *  Copyright (c) 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       decider.cpp
18  * @author     BartÅ‚omiej Grzelewski (b.grzelewski@samsung.com)
19  * @version    1.0
20  */
21 #include <dpl/log/log.h>
22
23 #include <crypto-backend.h>
24
25 #include <platform/decider.h>
26
27 #include <sw-backend/store.h>
28 #include <tz-backend/store.h>
29
30 namespace CKM {
31 namespace Crypto {
32
33 Decider::Decider()
34   : m_swStore(new SW::Store(CryptoBackend::OpenSSL))
35   , m_tzStore(new TZ::Store(CryptoBackend::TrustZone))
36 {}
37
38 GStore& Decider::getStore(const Token &token) {
39     return getStore(token.backendId);
40 };
41
42 GStore& Decider::getStore(CryptoBackend cryptoBackend) {
43     GStore *gStore = NULL;
44     if (cryptoBackend == CryptoBackend::OpenSSL)
45         gStore = m_swStore.get();
46     if (cryptoBackend == CryptoBackend::TrustZone)
47         gStore = m_tzStore.get();
48
49     if (gStore)
50         return *gStore;
51
52     LogError("Backend not available. BackendId: " << (int)cryptoBackend);
53     ThrowMsg(CKM::Crypto::Exception::Base,
54              "Backend not available. BackendId: " << (int)cryptoBackend);
55 }
56
57 GStore& Decider::getStore(DataType data, bool exportable) {
58     return getStore(chooseCryptoBackend(data, exportable));
59 }
60
61 CryptoBackend Decider::chooseCryptoBackend(DataType dataType, bool exportable) const {
62 // The list of items that MUST be support by OpenSSL
63     if (dataType.isCertificate())
64         return CryptoBackend::OpenSSL;
65
66     if (dataType.isBinaryData())
67         return CryptoBackend::OpenSSL;
68
69     if (exportable)
70         return CryptoBackend::OpenSSL;
71
72 //  This is the place where we can use trust zone backend
73 //  Examples:
74 //
75 //  if (dataType.isKeyPrivate())
76 //      return CryptoBackend::TrustZone;
77
78 // This item does not met Trust Zone requirements. Let's use software backend
79     return CryptoBackend::OpenSSL;
80 }
81
82 } // namespace Crypto
83 } // namespace CKM
84