Call import & destroy on store
[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 <generic-backend/exception.h>
28 #include <sw-backend/store.h>
29 #include <tz-backend/store.h>
30
31 namespace CKM {
32 namespace Crypto {
33
34 namespace {
35 CryptoBackend chooseCryptoBackend(DataType dataType, bool exportable) {
36 // The list of items that MUST be support by OpenSSL
37     if (dataType.isCertificate())
38         return CryptoBackend::OpenSSL;
39
40     if (dataType.isBinaryData())
41         return CryptoBackend::OpenSSL;
42
43     if (exportable)
44         return CryptoBackend::OpenSSL;
45
46 //  This is the place where we can use trust zone backend
47 //  Examples:
48 //
49 //  if (dataType.isKeyPrivate())
50 //      return CryptoBackend::TrustZone;
51
52 // This item does not met Trust Zone requirements. Let's use software backend
53     return CryptoBackend::OpenSSL;
54 }
55 } // namespace
56
57 Decider::Decider()
58   : m_swStore(new SW::Store(CryptoBackend::OpenSSL))
59   , m_tzStore(new TZ::Store(CryptoBackend::TrustZone))
60 {}
61
62 GStore& Decider::getStore(const Token &token) const {
63     return getStore(token.backendId);
64 };
65
66 GStore& Decider::getStore(CryptoBackend cryptoBackend) const {
67     GStore *gStore = NULL;
68     if (cryptoBackend == CryptoBackend::OpenSSL)
69         gStore = m_swStore.get();
70     if (cryptoBackend == CryptoBackend::TrustZone)
71         gStore = m_tzStore.get();
72
73     if (gStore)
74         return *gStore;
75
76     ThrowErr(Exc::Crypto::InternalError,
77              "Backend not available. BackendId: ", (int)cryptoBackend);
78 }
79
80 GStore& Decider::getStore(DataType data, bool exportable) const {
81     return getStore(chooseCryptoBackend(data, exportable));
82 }
83
84 } // namespace Crypto
85 } // namespace CKM
86