Add PKCS12 support.
[platform/core/security/key-manager.git] / src / manager / service / ckm-service.cpp
1 /*
2  *  Copyright (c) 2000 - 2014 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        ckm-service.cpp
18  * @author      Bartlomiej Grzelewski (b.grzelewski@samsung.com)
19  * @version     1.0
20  * @brief       CKM service implementation.
21  */
22 #include <service-thread.h>
23 #include <generic-socket-manager.h>
24 #include <connection-info.h>
25 #include <message-buffer.h>
26 #include <protocols.h>
27
28 #include <dpl/serialization.h>
29 #include <dpl/log/log.h>
30
31 #include <ckm-service.h>
32 #include <ckm-logic.h>
33
34 namespace {
35 const CKM::InterfaceID SOCKET_ID_CONTROL = 0;
36 const CKM::InterfaceID SOCKET_ID_STORAGE = 1;
37 } // namespace anonymous
38
39 namespace CKM {
40
41 CKMService::CKMService()
42   : m_logic(new CKMLogic)
43 {}
44
45 CKMService::~CKMService() {
46     delete m_logic;
47 }
48
49 GenericSocketService::ServiceDescriptionVector CKMService::GetServiceDescription()
50 {
51     return ServiceDescriptionVector {
52         {SERVICE_SOCKET_CKM_CONTROL, "key-manager::api-control", SOCKET_ID_CONTROL},
53         {SERVICE_SOCKET_CKM_STORAGE, "key-manager::api-storage", SOCKET_ID_STORAGE}
54     };
55 }
56
57 void CKMService::accept(const AcceptEvent &event) {
58     LogDebug("Accept event");
59     auto &info = m_connectionInfoMap[event.connectionID.counter];
60     info.interfaceID = event.interfaceID;
61     info.credentials = event.credentials;
62 }
63
64 void CKMService::write(const WriteEvent &event) {
65     LogDebug("Write event (" << event.size << " bytes)");
66 }
67
68 void CKMService::process(const ReadEvent &event) {
69     LogDebug("Read event");
70     auto &info = m_connectionInfoMap[event.connectionID.counter];
71     info.buffer.Push(event.rawBuffer);
72     while(processOne(event.connectionID, info));
73 }
74
75 bool CKMService::processOne(
76     const ConnectionID &conn,
77     ConnectionInfo &info)
78 {
79     LogDebug ("process One");
80     RawBuffer response;
81
82     Try {
83         if (!info.buffer.Ready())
84             return false;
85
86         if (info.interfaceID == SOCKET_ID_CONTROL)
87             response = processControl(info.buffer);
88         else
89             response = processStorage(info.credentials, info.buffer);
90
91         m_serviceManager->Write(conn, response);
92
93         return true;
94     } Catch (MessageBuffer::Exception::Base) {
95         LogError("Broken protocol. Closing socket.");
96     } Catch (Exception::BrokenProtocol) {
97         LogError("Broken protocol. Closing socket.");
98     } catch (const DBDataType::Exception::Base &e) {
99         LogError("Closing socket. DBDataType::Exception: " << e.DumpToString());
100     } catch (const std::string &e) {
101         LogError("String exception(" << e << "). Closing socket");
102     } catch (const std::exception &e) {
103         LogError("Std exception:: " << e.what());
104     } catch (...) {
105         LogError("Unknown exception. Closing socket.");
106     }
107
108     m_serviceManager->Close(conn);
109     return false;
110 }
111
112 RawBuffer CKMService::processControl(MessageBuffer &buffer) {
113     int command = 0;
114     uid_t user = 0;
115     ControlCommand cc;
116     Password newPass, oldPass;
117     Label smackLabel;
118
119     buffer.Deserialize(command);
120
121     LogDebug("Process control. Command: " << command);
122
123     cc = static_cast<ControlCommand>(command);
124
125     switch(cc) {
126     case ControlCommand::UNLOCK_USER_KEY:
127         buffer.Deserialize(user, newPass);
128         return m_logic->unlockUserKey(user, newPass);
129     case ControlCommand::LOCK_USER_KEY:
130         buffer.Deserialize(user);
131         return m_logic->lockUserKey(user);
132     case ControlCommand::REMOVE_USER_DATA:
133         buffer.Deserialize(user);
134         return m_logic->removeUserData(user);
135     case ControlCommand::CHANGE_USER_PASSWORD:
136         buffer.Deserialize(user, oldPass, newPass);
137         return m_logic->changeUserPassword(user, oldPass, newPass);
138     case ControlCommand::RESET_USER_PASSWORD:
139         buffer.Deserialize(user, newPass);
140         return m_logic->resetUserPassword(user, newPass);
141     case ControlCommand::REMOVE_APP_DATA:
142         buffer.Deserialize(smackLabel);
143         return m_logic->removeApplicationData(smackLabel);
144     case ControlCommand::UPDATE_CC_MODE:
145         return m_logic->updateCCMode();
146     case ControlCommand::SET_PERMISSION:
147     {
148         Name name;
149         Label label;
150         Label accessorLabel;
151         int accessorPermissions = 0;
152
153         buffer.Deserialize(user, name, label, accessorLabel, accessorPermissions);
154         Credentials cred = { user, label };
155         return m_logic->setPermission(
156             cred,
157             command,
158             0, // dummy
159             name,
160             label,
161             accessorLabel,
162             static_cast<Permission>(accessorPermissions));
163     }
164     default:
165         Throw(Exception::BrokenProtocol);
166     }
167 }
168
169 RawBuffer CKMService::processStorage(Credentials &cred, MessageBuffer &buffer)
170 {
171     int command = 0;
172     int msgID = 0;
173     int tmpDataType = 0;
174     Name name;
175     Label label, accessorLabel;
176     std::string user;
177
178     buffer.Deserialize(command);
179     buffer.Deserialize(msgID);
180
181     // This is a workaround solution for locktype=None in Tizen 2.2.1
182     // When locktype is None, lockscreen app doesn't interfere with unlocking process.
183     // Therefor lockscreen app cannot notify unlock events to key-manager when locktype is None.
184     // So, to unlock user data when lock type is None, key-manager always try to unlock user data with null password.
185     // Even if the result is fail, it will be ignored.
186     Password nullPassword("");
187     m_logic->unlockUserKey(cred.uid, nullPassword);
188
189     LogDebug("Process storage. Command: " << command);
190
191     switch(static_cast<LogicCommand>(command)) {
192         case LogicCommand::SAVE:
193         {
194             RawBuffer rawData;
195             PolicySerializable policy;
196             buffer.Deserialize(tmpDataType, name, label, rawData, policy);
197             return m_logic->saveData(
198                 cred,
199                 msgID,
200                 name,
201                 label,
202                 rawData,
203                 DBDataType(tmpDataType),
204                 policy);
205         }
206         case LogicCommand::SAVE_PKCS12:
207         {
208             RawBuffer rawData;
209             PKCS12Serializable pkcs;
210             PolicySerializable keyPolicy, certPolicy;
211             buffer.Deserialize(name, label, pkcs, keyPolicy, certPolicy);
212             return m_logic->savePKCS12(
213                 cred,
214                 msgID,
215                 name,
216                 label,
217                 pkcs,
218                 keyPolicy,
219                 certPolicy);
220         }
221         case LogicCommand::REMOVE:
222         {
223             buffer.Deserialize(name, label);
224             return m_logic->removeData(
225                 cred,
226                 msgID,
227                 name,
228                 label);
229         }
230         case LogicCommand::GET:
231         {
232             Password password;
233             buffer.Deserialize(tmpDataType, name, label, password);
234             return m_logic->getData(
235                 cred,
236                 msgID,
237                 DBDataType(tmpDataType),
238                 name,
239                 label,
240                 password);
241         }
242         case LogicCommand::GET_PKCS12:
243         {
244             buffer.Deserialize(name, label);
245             return m_logic->getPKCS12(
246                 cred,
247                 msgID,
248                 name,
249                 label);
250         }
251         case LogicCommand::GET_LIST:
252         {
253             buffer.Deserialize(tmpDataType);
254             return m_logic->getDataList(
255                 cred,
256                 msgID,
257                 DBDataType(tmpDataType));
258         }
259         case LogicCommand::CREATE_KEY_PAIR_RSA:
260         case LogicCommand::CREATE_KEY_PAIR_DSA:
261         case LogicCommand::CREATE_KEY_PAIR_ECDSA:
262         {
263             int additional_param = 0;
264             Name privateKeyName;
265             Label privateKeyLabel;
266             Name publicKeyName;
267             Label publicKeyLabel;
268             PolicySerializable policyPrivateKey;
269             PolicySerializable policyPublicKey;
270             buffer.Deserialize(additional_param,
271                                policyPrivateKey,
272                                policyPublicKey,
273                                privateKeyName,
274                                privateKeyLabel,
275                                publicKeyName,
276                                publicKeyLabel);
277             return m_logic->createKeyPair(
278                 cred,
279                 static_cast<LogicCommand>(command),
280                 msgID,
281                 additional_param,
282                 privateKeyName,
283                 privateKeyLabel,
284                 publicKeyName,
285                 publicKeyLabel,
286                 policyPrivateKey,
287                 policyPublicKey);
288         }
289         case LogicCommand::GET_CHAIN_CERT:
290         {
291             RawBuffer certificate;
292             RawBufferVector rawBufferVector;
293             buffer.Deserialize(certificate, rawBufferVector);
294             return m_logic->getCertificateChain(
295                 cred,
296                 msgID,
297                 certificate,
298                 rawBufferVector);
299         }
300         case LogicCommand::GET_CHAIN_ALIAS:
301         {
302             RawBuffer certificate;
303             LabelNameVector untrusted_certs;
304             buffer.Deserialize(certificate, untrusted_certs);
305             return m_logic->getCertificateChain(
306                 cred,
307                 msgID,
308                 certificate,
309                 untrusted_certs);
310         }
311         case LogicCommand::CREATE_SIGNATURE:
312         {
313             Password password;        // password for private_key
314             RawBuffer message;
315             int padding = 0, hash = 0;
316             buffer.Deserialize(name, label, password, message, hash, padding);
317             return m_logic->createSignature(
318                   cred,
319                   msgID,
320                   name,
321                   label,
322                   password,           // password for private_key
323                   message,
324                   static_cast<HashAlgorithm>(hash),
325                   static_cast<RSAPaddingAlgorithm>(padding));
326         }
327         case LogicCommand::VERIFY_SIGNATURE:
328         {
329             Password password;           // password for public_key (optional)
330             RawBuffer message;
331             RawBuffer signature;
332             //HashAlgorithm hash;
333             //RSAPaddingAlgorithm padding;
334             int padding = 0, hash = 0;
335             buffer.Deserialize(name,
336                                label,
337                                password,
338                                message,
339                                signature,
340                                hash,
341                                padding);
342             return m_logic->verifySignature(
343                 cred,
344                 msgID,
345                 name,
346                 label,
347                 password,           // password for public_key (optional)
348                 message,
349                 signature,
350                 static_cast<const HashAlgorithm>(hash),
351                 static_cast<const RSAPaddingAlgorithm>(padding));
352         }
353         case LogicCommand::SET_PERMISSION:
354         {
355             int accessorPermissions = 0;
356             buffer.Deserialize(name, label, accessorLabel, accessorPermissions);
357             return m_logic->setPermission(
358                 cred,
359                 command,
360                 msgID,
361                 name,
362                 label,
363                 accessorLabel,
364                 static_cast<Permission>(accessorPermissions));
365         }
366         default:
367             Throw(Exception::BrokenProtocol);
368     }
369 }
370
371
372 void CKMService::close(const CloseEvent &event) {
373     LogDebug("Close event");
374     m_connectionInfoMap.erase(event.connectionID.counter);
375 }
376
377 } // namespace CKM
378