Update parameter list API
[platform/core/security/key-manager.git] / src / manager / common / protocols.cpp
1 /*
2  *  Copyright (c) 2000 - 2013 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  *  Contact: Bumjin Im <bj.im@samsung.com>
5  *
6  *  Licensed under the Apache License, Version 2.0 (the "License");
7  *  you may not use this file except in compliance with the License.
8  *  You may obtain a copy of the License at
9  *
10  *      http://www.apache.org/licenses/LICENSE-2.0
11  *
12  *  Unless required by applicable law or agreed to in writing, software
13  *  distributed under the License is distributed on an "AS IS" BASIS,
14  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  *  See the License for the specific language governing permissions and
16  *  limitations under the License
17  *
18  * @file        protocols.cpp
19  * @author      Bartlomiej Grzelewski (b.grzelewski@samsung.com)
20  * @author      Zofia Abramowska (z.abramowska@samsung.com)
21  * @version     1.0
22  * @brief       List of all protocols supported by Central Key Manager.
23  */
24
25 #include <protocols.h>
26
27 #include <dpl/serialization.h>
28 #include <ckm/ckm-type.h>
29
30 namespace CKM {
31
32 char const * const SERVICE_SOCKET_ECHO = "/tmp/.central-key-manager-echo.sock";
33 char const * const SERVICE_SOCKET_CKM_CONTROL = "/tmp/.central-key-manager-api-control.sock";
34 char const * const SERVICE_SOCKET_CKM_STORAGE = "/tmp/.central-key-manager-api-storage.sock";
35 char const * const SERVICE_SOCKET_OCSP = "/tmp/.central-key-manager-api-ocsp.sock";
36 char const * const SERVICE_SOCKET_ENCRYPTION = "/tmp/.central-key-manager-api-encryption.sock";
37 char const * const LABEL_NAME_SEPARATOR = " ";
38 char const * const LABEL_SYSTEM_DB = "/";
39
40
41 PKCS12Serializable::PKCS12Serializable() {}
42 PKCS12Serializable::PKCS12Serializable(const PKCS12 &pkcs)
43     : PKCS12Impl(pkcs)
44 {}
45
46 PKCS12Serializable::PKCS12Serializable(IStream &stream)
47 {
48     // key
49     size_t numKeys;
50     Deserialization::Deserialize(stream, numKeys);
51     if(numKeys > 0) {
52         int keyType;
53         RawBuffer keyData;
54         Deserialization::Deserialize(stream, keyType);
55         Deserialization::Deserialize(stream, keyData);
56         m_pkey = CKM::Key::create(keyData);
57     }
58
59     // cert
60     size_t numCerts;
61     Deserialization::Deserialize(stream, numCerts);
62     if(numCerts > 0) {
63         RawBuffer certData;
64         Deserialization::Deserialize(stream, certData);
65         m_cert = CKM::Certificate::create(certData, DataFormat::FORM_DER);
66     }
67
68     // CA chain
69     size_t num_CA;
70     Deserialization::Deserialize(stream, num_CA);
71     for(size_t i=0; i<num_CA; i++)
72     {
73         RawBuffer CAcertData;
74         Deserialization::Deserialize(stream, CAcertData);
75         m_ca.push_back(CKM::Certificate::create(CAcertData, DataFormat::FORM_DER));
76     }
77 }
78 PKCS12Serializable::PKCS12Serializable(const KeyShPtr &privKey, const CertificateShPtr &cert, const CertificateShPtrVector &chainCerts)
79 {
80     m_pkey = privKey;
81     m_cert = cert;
82     m_ca = chainCerts;
83 }
84
85 void PKCS12Serializable::Serialize(IStream &stream) const
86 {
87     // key
88     Key *keyPtr = getKey().get();
89     bool isAnyKeyPresent = (getKey().get()!=NULL);
90
91     // logics if PKCS is correct or not is on the service side.
92     // sending number of keys and certificates to allow proper parsing on the service side.
93     // (what if no key or cert present? attempt to deserialize a not present key/cert would
94     // throw an error and close the connection).
95     Serialization::Serialize(stream, static_cast<size_t>(isAnyKeyPresent?1:0));
96     if(keyPtr) {
97         Serialization::Serialize(stream, DataType(keyPtr->getType()));
98         Serialization::Serialize(stream, keyPtr->getDER());
99     }
100
101     bool isAnyCertPresent = (getCertificate().get()!=NULL);
102     Serialization::Serialize(stream, static_cast<size_t>(isAnyCertPresent?1:0));
103     if(isAnyCertPresent) {
104         Serialization::Serialize(stream, getCertificate().get()->getDER());
105     }
106
107     // CA chain
108     Serialization::Serialize(stream, getCaCertificateShPtrVector().size());
109     for(auto it : getCaCertificateShPtrVector())
110         Serialization::Serialize(stream, it->getDER());
111 };
112
113
114 CryptoAlgorithmSerializable::CryptoAlgorithmSerializable() {}
115 CryptoAlgorithmSerializable::CryptoAlgorithmSerializable(const CryptoAlgorithm &algo) :
116         CryptoAlgorithm(algo)
117 {
118 }
119
120 CryptoAlgorithmSerializable::CryptoAlgorithmSerializable(IStream &stream)
121 {
122     size_t plen = 0;
123     Deserializer<size_t>::Deserialize(stream, plen);
124     while(plen) {
125         ParamName name;
126         uint64_t integer;
127         RawBuffer buffer;
128         int tmpName;
129         Deserializer<int>::Deserialize(stream, tmpName);
130         name = static_cast<ParamName>(tmpName);
131         switch (name) {
132         case ParamName::ED_IV:
133         case ParamName::ED_AAD:
134         case ParamName::ED_LABEL:
135             Deserializer<RawBuffer>::Deserialize(stream, buffer);
136             setParam(name, buffer);
137             break;
138
139         case ParamName::ALGO_TYPE:
140         case ParamName::ED_CTR_LEN:
141         case ParamName::ED_TAG_LEN:
142         case ParamName::GEN_KEY_LEN:
143         case ParamName::GEN_EC:
144         case ParamName::SV_HASH_ALGO:
145         case ParamName::SV_RSA_PADDING:
146             Deserializer<uint64_t>::Deserialize(stream, integer);
147             setParam(name, integer);
148             break;
149
150         default:
151             ThrowMsg(UnsupportedParam, "Unsupported param name");
152         }
153         plen--;
154     }
155 }
156
157 void CryptoAlgorithmSerializable::Serialize(IStream &stream) const
158 {
159     Serializer<size_t>::Serialize(stream, m_params.size());
160     for(const auto& it : m_params) {
161         Serializer<int>::Serialize(stream, static_cast<int>(it.first));
162         uint64_t integer;
163         RawBuffer buffer;
164         if (it.second->getInt(integer))
165             Serializer<uint64_t>::Serialize(stream, integer);
166         else if (it.second->getBuffer(buffer))
167             Serializer<RawBuffer>::Serialize(stream, buffer);
168         else
169             ThrowMsg(UnsupportedParam, "Unsupported param type");
170     }
171
172 }
173
174 } // namespace CKM
175