Service denies attempt to add data using different label.
[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(tmpDataType, name, label);
205             return m_logic->removeData(
206                 cred,
207                 msgID,
208                 static_cast<DBDataType>(tmpDataType),
209                 name,
210                 label);
211         }
212         case LogicCommand::GET:
213         {
214             Password password;
215             buffer.Deserialize(tmpDataType, name, label, password);
216             return m_logic->getData(
217                 cred,
218                 msgID,
219                 static_cast<DBDataType>(tmpDataType),
220                 name,
221                 label,
222                 password);
223         }
224         case LogicCommand::GET_LIST:
225         {
226             buffer.Deserialize(tmpDataType);
227             return m_logic->getDataList(
228                 cred,
229                 msgID,
230                 static_cast<DBDataType>(tmpDataType));
231         }
232         case LogicCommand::CREATE_KEY_PAIR_RSA:
233         case LogicCommand::CREATE_KEY_PAIR_DSA:
234         case LogicCommand::CREATE_KEY_PAIR_ECDSA:
235         {
236             int additional_param = 0;
237             Name privateKeyName;
238             Label privateKeyLabel;
239             Name publicKeyName;
240             Label publicKeyLabel;
241             PolicySerializable policyPrivateKey;
242             PolicySerializable policyPublicKey;
243             buffer.Deserialize(additional_param,
244                                policyPrivateKey,
245                                policyPublicKey,
246                                privateKeyName,
247                                privateKeyLabel,
248                                publicKeyName,
249                                publicKeyLabel);
250             return m_logic->createKeyPair(
251                 cred,
252                 static_cast<LogicCommand>(command),
253                 msgID,
254                 additional_param,
255                 privateKeyName,
256                 privateKeyLabel,
257                 publicKeyName,
258                 publicKeyLabel,
259                 policyPrivateKey,
260                 policyPublicKey);
261         }
262         case LogicCommand::GET_CHAIN_CERT:
263         {
264             RawBuffer certificate;
265             RawBufferVector rawBufferVector;
266             buffer.Deserialize(certificate, rawBufferVector);
267             return m_logic->getCertificateChain(
268                 cred,
269                 msgID,
270                 certificate,
271                 rawBufferVector);
272         }
273         case LogicCommand::GET_CHAIN_ALIAS:
274         {
275             RawBuffer certificate;
276             LabelNameVector untrusted_certs;
277             buffer.Deserialize(certificate, untrusted_certs);
278             return m_logic->getCertificateChain(
279                 cred,
280                 msgID,
281                 certificate,
282                 untrusted_certs);
283         }
284         case LogicCommand::CREATE_SIGNATURE:
285         {
286             Password password;        // password for private_key
287             RawBuffer message;
288             int padding = 0, hash = 0;
289             buffer.Deserialize(name, label, password, message, hash, padding);
290             return m_logic->createSignature(
291                   cred,
292                   msgID,
293                   name,
294                   label,
295                   password,           // password for private_key
296                   message,
297                   static_cast<HashAlgorithm>(hash),
298                   static_cast<RSAPaddingAlgorithm>(padding));
299         }
300         case LogicCommand::VERIFY_SIGNATURE:
301         {
302             Password password;           // password for public_key (optional)
303             RawBuffer message;
304             RawBuffer signature;
305             //HashAlgorithm hash;
306             //RSAPaddingAlgorithm padding;
307             int padding = 0, hash = 0;
308             buffer.Deserialize(name,
309                                label,
310                                password,
311                                message,
312                                signature,
313                                hash,
314                                padding);
315             return m_logic->verifySignature(
316                 cred,
317                 msgID,
318                 name,
319                 label,
320                 password,           // password for public_key (optional)
321                 message,
322                 signature,
323                 static_cast<const HashAlgorithm>(hash),
324                 static_cast<const RSAPaddingAlgorithm>(padding));
325         }
326         case LogicCommand::SET_PERMISSION:
327         {
328             int accessorPermissions = 0;
329             buffer.Deserialize(name, label, accessorLabel, accessorPermissions);
330             return m_logic->setPermission(
331                 cred,
332                 command,
333                 msgID,
334                 name,
335                 label,
336                 accessorLabel,
337                 static_cast<Permission>(accessorPermissions));
338         }
339         default:
340             Throw(Exception::BrokenProtocol);
341     }
342 }
343
344
345 void CKMService::close(const CloseEvent &event) {
346     LogDebug("Close event");
347     m_connectionInfoMap.erase(event.connectionID.counter);
348 }
349
350 } // namespace CKM
351