Use KeyServer for server side key managent
[platform/core/security/ode.git] / server / internal-encryption.cpp
1 /*
2  *  Copyright (c) 2015-2017 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 #include <set>
17 #include <algorithm>
18 #include <memory>
19
20 #include <fcntl.h>
21 #include <signal.h>
22 #include <unistd.h>
23 #include <sys/mount.h>
24 #include <sys/reboot.h>
25 #include <limits.h>
26 #include <stdlib.h>
27 #include <string.h>
28
29 #include <vconf.h>
30 #include <tzplatform_config.h>
31 #include <klay/process.h>
32 #include <klay/file-user.h>
33 #include <klay/filesystem.h>
34 #include <klay/dbus/connection.h>
35 #include <klay/error.h>
36
37 #include "misc.h"
38 #include "logger.h"
39 #include "progress-bar.h"
40 #include "rmi/common.h"
41
42 #include "internal-encryption.h"
43
44 namespace ode {
45
46 namespace {
47
48 const char *INTERNAL_DEV_PATH   = "/dev/disk/by-partlabel";
49 const char *INTERNAL_DEV_NAME   = "USER";
50 const char *INTERNAL_PATH               = "/opt/usr";
51
52 const char *PRIVILEGE_PLATFORM  = "http://tizen.org/privilege/internal/default/platform";
53
54 // TODO: see recovery()
55 const std::string PROG_FACTORY_RESET = "/usr/bin/dbus-send";
56 const std::vector<std::string> wipeCommand = {
57     PROG_FACTORY_RESET,
58     "--system",
59     "--type=signal",
60     "--print-reply",
61     "--dest=com.samsung.factoryreset",
62     "/com/samsung/factoryreset",
63     "com.samsung.factoryreset.start.setting"
64 };
65
66 std::string findDevPath()
67 {
68         std::string source = INTERNAL_DEV_PATH + std::string("/") + INTERNAL_DEV_NAME;
69         try {
70                 runtime::DirectoryIterator iter(INTERNAL_DEV_PATH), end;
71
72                 while (iter != end) {
73                         const std::string& path = (*iter).getPath();
74                         std::string name = path.substr(path.rfind('/') + 1);
75                         std::string upper;
76                         upper.reserve(name.size());
77                         for (char c : name) {
78                                 upper += std::toupper(c);
79                         }
80                         if (upper.compare(0, strlen(INTERNAL_DEV_NAME), INTERNAL_DEV_NAME) == 0) {
81                                 source = path;
82                                 break;
83                         }
84                         ++iter;
85                 }
86         } catch (runtime::Exception &e) {}
87
88         char *dev = ::realpath(source.c_str(), NULL);
89         if (dev == NULL) {
90                 ERROR(SINK, "Failed to get device path.");
91                 return "";
92         }
93
94         std::string devPath(dev);
95         free(dev);
96
97         return devPath;
98 }
99
100 void stopKnownSystemdServices()
101 {
102         std::vector<std::string> knownSystemdServices;
103         dbus::Connection& systemDBus = dbus::Connection::getSystem();
104         dbus::VariantIterator iter;
105
106         systemDBus.methodcall("org.freedesktop.systemd1",
107                                                         "/org/freedesktop/systemd1",
108                                                         "org.freedesktop.systemd1.Manager",
109                                                         "ListUnits",
110                                                         -1, "(a(ssssssouso))", "")
111                                                                 .get("(a(ssssssouso))", &iter);
112
113         while (1) {
114                 unsigned int dataUint;
115                 char *dataStr[9];
116                 int ret;
117
118                 ret = iter.get("(ssssssouso)", dataStr, dataStr + 1, dataStr + 2,
119                                                 dataStr + 3, dataStr + 4, dataStr + 5,
120                                                 dataStr + 6, &dataUint, dataStr + 7,
121                                                 dataStr + 8);
122
123                 if (!ret) {
124                         break;
125                 }
126
127                 std::string service(dataStr[0]);
128                 if (service.compare(0, 5, "user@") == 0 ||
129                         service == "tlm.service" ||
130                         service == "resourced.service") {
131                         knownSystemdServices.push_back(service);
132                 }
133         }
134
135         for (const std::string& service : knownSystemdServices) {
136                 INFO(SINK, "Stopping service: " + service);
137                 systemDBus.methodcall("org.freedesktop.systemd1",
138                                                                 "/org/freedesktop/systemd1",
139                                                                 "org.freedesktop.systemd1.Manager",
140                                                                 "StopUnit",
141                                                                 -1, "", "(ss)", service.c_str(), "flush");
142         }
143
144         sleep(1);
145 }
146
147 void stopDependedSystemdServices()
148 {
149         dbus::Connection& systemDBus = dbus::Connection::getSystem();
150         std::set<std::string> servicesToStop;
151
152         for (pid_t pid : runtime::FileUser::getList(INTERNAL_PATH, true)) {
153                 try {
154                         char *service;
155                         systemDBus.methodcall("org.freedesktop.systemd1",
156                                                                         "/org/freedesktop/systemd1",
157                                                                         "org.freedesktop.systemd1.Manager",
158                                                                         "GetUnitByPID",
159                                                                         -1, "(o)", "(u)", (unsigned int)pid)
160                                                                                 .get("(o)", &service);
161                         servicesToStop.insert(service);
162                 } catch (runtime::Exception &e) {
163                         INFO(SINK, "Killing process: " + std::to_string(pid));
164                         ::kill(pid, SIGKILL);
165                 }
166         }
167
168         for (const std::string& service : servicesToStop) {
169                 INFO(SINK, "Stopping service: " + service);
170                 systemDBus.methodcall("org.freedesktop.systemd1",
171                                                                 service,
172                                                                 "org.freedesktop.systemd1.Unit",
173                                                                 "Stop",
174                                                                 -1, "", "(s)", "flush");
175         }
176 }
177
178 void showProgressUI(const std::string type)
179 {
180         ::tzplatform_set_user(::tzplatform_getuid(TZ_SYS_DEFAULT_USER));
181         std::string defaultUserHome(::tzplatform_getenv(TZ_USER_HOME));
182         ::tzplatform_reset_user();
183
184         try {
185                 runtime::File shareDirectory("/opt/home/root/share");
186                 if (!shareDirectory.exists()) {
187                         shareDirectory.makeDirectory(true);
188                 }
189
190                 runtime::File elmConfigDir(shareDirectory.getPath() + "/.elementary");
191                 if (!elmConfigDir.exists()) {
192                         runtime::File defaultElmConfigDir(defaultUserHome + "/share/.elementary");
193                         defaultElmConfigDir.copyTo(shareDirectory.getPath());
194                 }
195         } catch (runtime::Exception &e) {
196                 ERROR(SINK, "Failed to set up elm configuration: " + std::string(e.what()));
197         }
198
199         std::vector<std::string> args = {
200                 "ode", "progress", type, "Internal"
201         };
202
203         runtime::Process proc("/usr/bin/ode", args);
204         proc.execute();
205 }
206
207 unsigned int getOptions()
208 {
209         unsigned int result = 0;
210         int value;
211
212         value = 0;
213         ::vconf_get_bool(VCONFKEY_ODE_FAST_ENCRYPTION, &value);
214         if (value) {
215                 result |= InternalEncryption::Option::IncludeUnusedRegion;
216         }
217
218         return result;
219 }
220
221 void setOptions(unsigned int options)
222 {
223         bool value;
224
225         if (options & InternalEncryption::Option::IncludeUnusedRegion) {
226                 value = true;
227         } else {
228                 value = false;
229         }
230         ::vconf_set_bool(VCONFKEY_ODE_FAST_ENCRYPTION, value);
231 }
232
233 }
234
235 InternalEncryptionServer::InternalEncryptionServer(ServerContext& srv,
236                                                                                                    KeyServer& key) :
237         server(srv),
238         keyServer(key)
239 {
240         server.expose(this, PRIVILEGE_PLATFORM, (int)(InternalEncryptionServer::setMountPassword)(std::string));
241         server.expose(this, PRIVILEGE_PLATFORM, (int)(InternalEncryptionServer::mount)());
242         server.expose(this, PRIVILEGE_PLATFORM, (int)(InternalEncryptionServer::umount)());
243         server.expose(this, PRIVILEGE_PLATFORM, (int)(InternalEncryptionServer::encrypt)(std::string, unsigned int));
244         server.expose(this, PRIVILEGE_PLATFORM, (int)(InternalEncryptionServer::decrypt)(std::string));
245         server.expose(this, "", (int)(InternalEncryptionServer::isPasswordInitialized)());
246         server.expose(this, PRIVILEGE_PLATFORM, (int)(InternalEncryptionServer::initPassword)(std::string));
247         server.expose(this, PRIVILEGE_PLATFORM, (int)(InternalEncryptionServer::cleanPassword)(std::string));
248         server.expose(this, PRIVILEGE_PLATFORM, (int)(InternalEncryptionServer::changePassword)(std::string, std::string));
249         server.expose(this, PRIVILEGE_PLATFORM, (int)(InternalEncryptionServer::verifyPassword)(std::string));
250         server.expose(this, "", (int)(InternalEncryptionServer::getState)());
251         server.expose(this, "", (unsigned int)(InternalEncryptionServer::getSupportedOptions)());
252
253         server.createNotification("InternalEncryptionServer::mount");
254
255         std::string source = findDevPath();
256
257         engine.reset(new INTERNAL_ENGINE(
258                 source, INTERNAL_PATH,
259                 ProgressBar([](int v) {
260                         ::vconf_set_str(VCONFKEY_ODE_ENCRYPT_PROGRESS,
261                                                         std::to_string(v).c_str());
262                 })
263         ));
264 }
265
266 InternalEncryptionServer::~InternalEncryptionServer()
267 {
268 }
269
270 int InternalEncryptionServer::setMountPassword(const std::string& password)
271 {
272         return keyServer.get(engine->getSource(), password, mountKey);
273 }
274
275 int InternalEncryptionServer::mount()
276 {
277         if (mountKey.empty()) {
278                 ERROR(SINK, "You need to call set_mount_password() first.");
279                 return error::NoData;
280         }
281
282         Key::KeyData key = mountKey;
283         mountKey.clear();
284
285         if (getState() != State::Encrypted) {
286                 INFO(SINK, "Cannot mount, SD partition's state incorrect.");
287                 return error::NoSuchDevice;
288         }
289
290         if (engine->isMounted()) {
291                 INFO(SINK, "Partition already mounted.");
292                 return error::None;
293         }
294
295         INFO(SINK, "Mounting internal storage.");
296         try {
297                 engine->mount(key, getOptions());
298
299                 server.notify("InternalEncryptionServer::mount");
300
301                 runtime::File("/tmp/.lazy_mount").create(O_WRONLY);
302                 runtime::File("/tmp/.unlock_mnt").create(O_WRONLY);
303         } catch (runtime::Exception &e) {
304                 ERROR(SINK, "Mount failed: " + std::string(e.what()));
305                 return error::Unknown;
306         }
307
308         return error::None;
309 }
310
311 int InternalEncryptionServer::umount()
312 {
313         if (getState() != State::Encrypted) {
314                 ERROR(SINK, "Cannot umount, partition's state incorrect.");
315                 return error::NoSuchDevice;
316         }
317
318         if (!engine->isMounted()) {
319                 INFO(SINK, "Partition already umounted.");
320                 return error::None;
321         }
322
323         INFO(SINK, "Closing all processes using internal storage.");
324         try {
325                 stopDependedSystemdServices();
326                 INFO(SINK, "Umounting internal storage.");
327                 engine->umount();
328         } catch (runtime::Exception &e) {
329                 ERROR(SINK, "Umount failed: " + std::string(e.what()));
330                 return error::Unknown;
331         }
332
333         return error::None;
334 }
335
336 int InternalEncryptionServer::encrypt(const std::string& password, unsigned int options)
337 {
338         if (getState() != State::Unencrypted) {
339                 ERROR(SINK, "Cannot encrypt, partition's state incorrect.");
340                 return error::NoSuchDevice;
341         }
342
343         Key::KeyData masterKey;
344         int ret = keyServer.get(engine->getSource(), password, masterKey);
345         if (ret != error::None)
346                 return ret;
347
348         auto encryptWorker = [masterKey, options, this]() {
349                 try {
350                         std::string source = engine->getSource();
351                         std::string mntPath = findMountPointByDevice(source);
352
353                         if (!mntPath.empty()) {
354                                 INFO(SINK, "Closing all known systemd services that might be using internal storage.");
355                                 stopKnownSystemdServices();
356                                 INFO(SINK, "Closing all processes using internal storage.");
357                                 stopDependedSystemdServices();
358                         }
359
360                         while (!mntPath.empty()) {
361                                 INFO(SINK, "Umounting internal storage.");
362                                 while (::umount(mntPath.c_str()) == -1) {
363                                         if (errno != EBUSY) {
364                                                 throw runtime::Exception("Umount error: " + runtime::GetSystemErrorMessage());
365                                         }
366                                         stopDependedSystemdServices();
367                                 }
368                                 mntPath = findMountPointByDevice(source);
369                         }
370
371                         showProgressUI("Encrypting");
372
373                         INFO(SINK, "Encryption started.");
374                         ::vconf_set_str(VCONFKEY_ODE_CRYPTO_STATE, "error_partially_encrypted");
375                         engine->encrypt(masterKey, options);
376                         setOptions(options & getSupportedOptions());
377
378                         INFO(SINK, "Encryption completed.");
379                         ::vconf_set_str(VCONFKEY_ODE_CRYPTO_STATE, "encrypted");
380                         server.notify("InternalEncryptionServer::mount");
381
382                         INFO(SINK, "Syncing disk and rebooting.");
383                         ::sync();
384                         ::reboot(RB_AUTOBOOT);
385                 } catch (runtime::Exception &e) {
386                         ERROR(SINK, "Encryption failed: " + std::string(e.what()));
387                 }
388         };
389
390         std::thread asyncWork(encryptWorker);
391         asyncWork.detach();
392
393         return error::None;
394 }
395
396 int InternalEncryptionServer::decrypt(const std::string& password)
397 {
398         if (getState() != State::Encrypted) {
399                 ERROR(SINK, "Cannot decrypt, partition's state incorrect.");
400                 return error::NoSuchDevice;
401         }
402
403         Key::KeyData masterKey;
404         int ret = keyServer.get(engine->getSource(), password, masterKey);
405         if (ret != error::None)
406                 return ret;
407
408         auto decryptWorker = [masterKey, this]() {
409                 try {
410                         if (engine->isMounted()) {
411                                 INFO(SINK, "Closing all known systemd services that might be using internal storage.");
412                                 stopKnownSystemdServices();
413                                 INFO(SINK, "Closing all processes using internal storage.");
414                                 stopDependedSystemdServices();
415
416                                 INFO(SINK, "Umounting internal storage.");
417                                 while (1) {
418                                         try {
419                                                 engine->umount();
420                                                 break;
421                                         } catch (runtime::Exception& e) {
422                                                 stopDependedSystemdServices();
423                                         }
424                                 }
425                         }
426
427                         showProgressUI("Decrypting");
428
429                         INFO(SINK, "Decryption started.");
430                         ::vconf_set_str(VCONFKEY_ODE_CRYPTO_STATE, "error_partially_encrypted");
431                         engine->decrypt(masterKey, getOptions());
432
433                         INFO(SINK, "Decryption complete.");
434                         ::vconf_set_str(VCONFKEY_ODE_CRYPTO_STATE, "unencrypted");
435
436                         INFO(SINK, "Syncing disk and rebooting.");
437                         ::sync();
438                         ::reboot(RB_AUTOBOOT);
439                 } catch (runtime::Exception &e) {
440                         ERROR(SINK, "Decryption failed: " + std::string(e.what()));
441                 }
442         };
443
444         std::thread asyncWork(decryptWorker);
445         asyncWork.detach();
446
447         return error::None;
448 }
449
450 int InternalEncryptionServer::recovery()
451 {
452         if (getState() == State::Unencrypted) {
453                 return error::NoSuchDevice;
454         }
455
456         //TODO
457         runtime::Process proc(PROG_FACTORY_RESET, wipeCommand);
458         if (proc.execute() == -1) {
459                 ERROR(SINK, "Failed to launch factory-reset");
460                 return error::WrongPassword;
461         }
462
463         return error::None;
464 }
465
466 int InternalEncryptionServer::isPasswordInitialized()
467 {
468         return keyServer.isInitialized(engine->getSource());
469 }
470
471 int InternalEncryptionServer::initPassword(const std::string& password)
472 {
473         return keyServer.init(engine->getSource(), password, Key::DEFAULT_256BIT);
474 }
475
476 int InternalEncryptionServer::cleanPassword(const std::string& password)
477 {
478         return keyServer.remove(engine->getSource(), password);
479 }
480
481 int InternalEncryptionServer::changePassword(const std::string& oldPassword,
482                                                                                 const std::string& newPassword)
483 {
484         return keyServer.changePassword(engine->getSource(), oldPassword, newPassword);
485 }
486
487 int InternalEncryptionServer::verifyPassword(const std::string& password)
488 {
489         return keyServer.verifyPassword(engine->getSource(), password);
490 }
491
492 int InternalEncryptionServer::getState()
493 {
494         char *value = ::vconf_get_str(VCONFKEY_ODE_CRYPTO_STATE);
495         if (value == NULL) {
496                 throw runtime::Exception("Failed to get vconf value.");
497         }
498
499         std::string valueStr(value);
500         free(value);
501
502         if (valueStr == "encrypted") {
503                 return State::Encrypted;
504         } else if (valueStr == "unencrypted") {
505                 return State::Unencrypted;
506         } else {
507                 return State::Corrupted;
508         }
509 }
510
511 unsigned int InternalEncryptionServer::getSupportedOptions()
512 {
513         return engine->getSupportedOptions();
514 }
515
516 } // namespace ode