C++ API change: common method for removing Alias.
[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 std::string &e) {
99         LogError("String exception(" << e << "). Closing socket");
100     } catch (...) {
101         LogError("Unknown exception. Closing socket.");
102     }
103
104     m_serviceManager->Close(conn);
105     return false;
106 }
107
108 RawBuffer CKMService::processControl(MessageBuffer &buffer) {
109     int command = 0;
110     uid_t user = 0;
111     ControlCommand cc;
112     Password newPass, oldPass;
113     Label smackLabel;
114
115     buffer.Deserialize(command);
116
117     LogDebug("Process control. Command: " << command);
118
119     cc = static_cast<ControlCommand>(command);
120
121     switch(cc) {
122     case ControlCommand::UNLOCK_USER_KEY:
123         buffer.Deserialize(user, newPass);
124         return m_logic->unlockUserKey(user, newPass);
125     case ControlCommand::LOCK_USER_KEY:
126         buffer.Deserialize(user);
127         return m_logic->lockUserKey(user);
128     case ControlCommand::REMOVE_USER_DATA:
129         buffer.Deserialize(user);
130         return m_logic->removeUserData(user);
131     case ControlCommand::CHANGE_USER_PASSWORD:
132         buffer.Deserialize(user, oldPass, newPass);
133         return m_logic->changeUserPassword(user, oldPass, newPass);
134     case ControlCommand::RESET_USER_PASSWORD:
135         buffer.Deserialize(user, newPass);
136         return m_logic->resetUserPassword(user, newPass);
137     case ControlCommand::REMOVE_APP_DATA:
138         buffer.Deserialize(smackLabel);
139         return m_logic->removeApplicationData(smackLabel);
140     case ControlCommand::UPDATE_CC_MODE:
141         return m_logic->updateCCMode();
142     case ControlCommand::SET_PERMISSION:
143     {
144         Name name;
145         Label label;
146         Label accessorLabel;
147         int accessorPermissions = 0;
148
149         buffer.Deserialize(user, name, label, accessorLabel, accessorPermissions);
150         Credentials cred = { user, label };
151         return m_logic->setPermission(
152             cred,
153             command,
154             0, // dummy
155             name,
156             label,
157             accessorLabel,
158             static_cast<Permission>(accessorPermissions));
159     }
160     default:
161         Throw(Exception::BrokenProtocol);
162     }
163 }
164
165 RawBuffer CKMService::processStorage(Credentials &cred, MessageBuffer &buffer)
166 {
167     int command = 0;
168     int msgID = 0;
169     int tmpDataType = 0;
170     Name name;
171     Label label, accessorLabel;
172     std::string user;
173
174     buffer.Deserialize(command);
175     buffer.Deserialize(msgID);
176
177     // This is a workaround solution for locktype=None in Tizen 2.2.1
178     // When locktype is None, lockscreen app doesn't interfere with unlocking process.
179     // Therefor lockscreen app cannot notify unlock events to key-manager when locktype is None.
180     // So, to unlock user data when lock type is None, key-manager always try to unlock user data with null password.
181     // Even if the result is fail, it will be ignored.
182     Password nullPassword("");
183     m_logic->unlockUserKey(cred.uid, nullPassword);
184
185     LogDebug("Process storage. Command: " << command);
186
187     switch(static_cast<LogicCommand>(command)) {
188         case LogicCommand::SAVE:
189         {
190             RawBuffer rawData;
191             PolicySerializable policy;
192             buffer.Deserialize(tmpDataType, name, label, rawData, policy);
193             return m_logic->saveData(
194                 cred,
195                 msgID,
196                 static_cast<DBDataType>(tmpDataType),
197                 name,
198                 label,
199                 rawData,
200                 policy);
201         }
202         case LogicCommand::REMOVE:
203         {
204             buffer.Deserialize(name, label);
205             return m_logic->removeData(
206                 cred,
207                 msgID,
208                 name,
209                 label);
210         }
211         case LogicCommand::GET:
212         {
213             Password password;
214             buffer.Deserialize(tmpDataType, name, label, password);
215             return m_logic->getData(
216                 cred,
217                 msgID,
218                 static_cast<DBDataType>(tmpDataType),
219                 name,
220                 label,
221                 password);
222         }
223         case LogicCommand::GET_LIST:
224         {
225             buffer.Deserialize(tmpDataType);
226             return m_logic->getDataList(
227                 cred,
228                 msgID,
229                 static_cast<DBDataType>(tmpDataType));
230         }
231         case LogicCommand::CREATE_KEY_PAIR_RSA:
232         case LogicCommand::CREATE_KEY_PAIR_DSA:
233         case LogicCommand::CREATE_KEY_PAIR_ECDSA:
234         {
235             int additional_param = 0;
236             Name privateKeyName;
237             Label privateKeyLabel;
238             Name publicKeyName;
239             Label publicKeyLabel;
240             PolicySerializable policyPrivateKey;
241             PolicySerializable policyPublicKey;
242             buffer.Deserialize(additional_param,
243                                policyPrivateKey,
244                                policyPublicKey,
245                                privateKeyName,
246                                privateKeyLabel,
247                                publicKeyName,
248                                publicKeyLabel);
249             return m_logic->createKeyPair(
250                 cred,
251                 static_cast<LogicCommand>(command),
252                 msgID,
253                 additional_param,
254                 privateKeyName,
255                 privateKeyLabel,
256                 publicKeyName,
257                 publicKeyLabel,
258                 policyPrivateKey,
259                 policyPublicKey);
260         }
261         case LogicCommand::GET_CHAIN_CERT:
262         {
263             RawBuffer certificate;
264             RawBufferVector rawBufferVector;
265             buffer.Deserialize(certificate, rawBufferVector);
266             return m_logic->getCertificateChain(
267                 cred,
268                 msgID,
269                 certificate,
270                 rawBufferVector);
271         }
272         case LogicCommand::GET_CHAIN_ALIAS:
273         {
274             RawBuffer certificate;
275             LabelNameVector untrusted_certs;
276             buffer.Deserialize(certificate, untrusted_certs);
277             return m_logic->getCertificateChain(
278                 cred,
279                 msgID,
280                 certificate,
281                 untrusted_certs);
282         }
283         case LogicCommand::CREATE_SIGNATURE:
284         {
285             Password password;        // password for private_key
286             RawBuffer message;
287             int padding = 0, hash = 0;
288             buffer.Deserialize(name, label, password, message, hash, padding);
289             return m_logic->createSignature(
290                   cred,
291                   msgID,
292                   name,
293                   label,
294                   password,           // password for private_key
295                   message,
296                   static_cast<HashAlgorithm>(hash),
297                   static_cast<RSAPaddingAlgorithm>(padding));
298         }
299         case LogicCommand::VERIFY_SIGNATURE:
300         {
301             Password password;           // password for public_key (optional)
302             RawBuffer message;
303             RawBuffer signature;
304             //HashAlgorithm hash;
305             //RSAPaddingAlgorithm padding;
306             int padding = 0, hash = 0;
307             buffer.Deserialize(name,
308                                label,
309                                password,
310                                message,
311                                signature,
312                                hash,
313                                padding);
314             return m_logic->verifySignature(
315                 cred,
316                 msgID,
317                 name,
318                 label,
319                 password,           // password for public_key (optional)
320                 message,
321                 signature,
322                 static_cast<const HashAlgorithm>(hash),
323                 static_cast<const RSAPaddingAlgorithm>(padding));
324         }
325         case LogicCommand::SET_PERMISSION:
326         {
327             int accessorPermissions = 0;
328             buffer.Deserialize(name, label, accessorLabel, accessorPermissions);
329             return m_logic->setPermission(
330                 cred,
331                 command,
332                 msgID,
333                 name,
334                 label,
335                 accessorLabel,
336                 static_cast<Permission>(accessorPermissions));
337         }
338         default:
339             Throw(Exception::BrokenProtocol);
340     }
341 }
342
343
344 void CKMService::close(const CloseEvent &event) {
345     LogDebug("Close event");
346     m_connectionInfoMap.erase(event.connectionID.counter);
347 }
348
349 } // namespace CKM
350