Apply encryption progress UI service
[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 #include <mutex>
20 #include <condition_variable>
21 #include <list>
22
23 #include <fcntl.h>
24 #include <signal.h>
25 #include <unistd.h>
26 #include <sys/mount.h>
27 #include <sys/reboot.h>
28 #include <limits.h>
29 #include <stdlib.h>
30 #include <string.h>
31
32 #include <vconf.h>
33 #include <tzplatform_config.h>
34 #include <klay/process.h>
35 #include <klay/file-user.h>
36 #include <klay/filesystem.h>
37 #include <klay/dbus/connection.h>
38 #include <klay/error.h>
39
40 #include "misc.h"
41 #include "logger.h"
42 #include "progress-bar.h"
43 #include "rmi/common.h"
44
45 #include "internal-encryption.h"
46 #include "internal-encryption-common.h"
47
48 namespace ode {
49
50 namespace {
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
67 // watches systemd jobs
68 class JobWatch {
69 public:
70         explicit JobWatch(dbus::Connection& systemDBus);
71         ~JobWatch();
72
73         bool waitForJob(const std::string& job);
74
75 private:
76         void jobRemoved(const dbus::Variant& parameters);
77
78         struct Job {
79                 Job(uint32_t id,
80                         const std::string& job,
81                         const std::string& unit,
82                         const std::string& result) : id(id), job(job), unit(unit), result(result) {}
83                 uint32_t id;
84                 std::string job;
85                 std::string unit;
86                 std::string result;
87         };
88
89         dbus::Connection::SubscriptionId id;
90         dbus::Connection& systemDBus;
91         std::list<Job> removedJobs;
92         std::mutex jobsMutex;
93         std::condition_variable jobsCv;
94 };
95
96 JobWatch::JobWatch(dbus::Connection& systemDBus) : systemDBus(systemDBus) {
97         auto callback = [this](dbus::Variant parameters) {
98                 this->jobRemoved(parameters);
99         };
100
101         id = systemDBus.subscribeSignal("",
102                                                                         "/org/freedesktop/systemd1",
103                                                                         "org.freedesktop.systemd1.Manager",
104                                                                         "JobRemoved",
105                                                                         callback);
106 }
107
108 JobWatch::~JobWatch() {
109         systemDBus.unsubscribeSignal(id);
110 }
111
112 bool JobWatch::waitForJob(const std::string& job) {
113         while(true) {
114                 std::unique_lock<std::mutex> lock(jobsMutex);
115                 jobsCv.wait(lock, [this]{ return !removedJobs.empty(); });
116
117                 while(!removedJobs.empty()) {
118                         bool match = (removedJobs.front().job == job);
119                         bool done = (removedJobs.front().result == "done");
120                         removedJobs.pop_front();
121                         if (match)
122                                 return done;
123                 }
124         };
125 }
126
127 void JobWatch::jobRemoved(const dbus::Variant& parameters)
128 {
129         uint32_t id;
130         const char* job;
131         const char* unit;
132         const char* result;
133         parameters.get("(uoss)", &id, &job, &unit, &result);
134         INFO(SINK, "id:" + std::to_string(id) + " job:" + job + " unit:" + unit + " result:" + result);
135
136         {
137                 std::lock_guard<std::mutex> guard(jobsMutex);
138                 removedJobs.emplace_back(id, job, unit, result);
139         }
140         jobsCv.notify_one();
141 }
142
143 void stopKnownSystemdUnits()
144 {
145         std::vector<std::string> knownSystemdUnits;
146         dbus::Connection& systemDBus = dbus::Connection::getSystem();
147         dbus::VariantIterator iter;
148
149         systemDBus.methodcall("org.freedesktop.systemd1",
150                                                         "/org/freedesktop/systemd1",
151                                                         "org.freedesktop.systemd1.Manager",
152                                                         "ListUnits",
153                                                         -1, "(a(ssssssouso))", "")
154                                                                 .get("(a(ssssssouso))", &iter);
155
156         while (1) {
157                 unsigned int dataUint;
158                 char *dataStr[9];
159                 int ret;
160
161                 ret = iter.get("(ssssssouso)", dataStr, dataStr + 1, dataStr + 2,
162                                                 dataStr + 3, dataStr + 4, dataStr + 5,
163                                                 dataStr + 6, &dataUint, dataStr + 7,
164                                                 dataStr + 8);
165
166                 if (!ret) {
167                         break;
168                 }
169
170                 std::string unit(dataStr[0]);
171                 if (unit == "security-manager.socket") {
172                         knownSystemdUnits.insert(knownSystemdUnits.begin(), unit);
173                 } else if (unit.compare(0, 5, "user@") == 0 ||
174                         unit == "tlm.service" ||
175                         unit == "resourced.service" ||
176                         unit == "security-manager.service") {
177                         knownSystemdUnits.push_back(unit);
178                 }
179         }
180
181         JobWatch watch(systemDBus);
182
183         for (const std::string& unit : knownSystemdUnits) {
184                 INFO(SINK, "Stopping unit: " + unit);
185                 const char* job = NULL;
186                 systemDBus.methodcall("org.freedesktop.systemd1",
187                                                                 "/org/freedesktop/systemd1",
188                                                                 "org.freedesktop.systemd1.Manager",
189                                                                 "StopUnit",
190                                                                 -1, "(o)", "(ss)", unit.c_str(), "flush").get("(o)", &job);
191                 INFO(SINK, "Waiting for job: " + std::string(job));
192                 if (!watch.waitForJob(job))
193                         throw runtime::Exception("Stopping unit: " + unit + " failed");
194         }
195 }
196
197 void stopDependedSystemdUnits()
198 {
199         dbus::Connection& systemDBus = dbus::Connection::getSystem();
200         std::set<std::string> unitsToStop;
201
202         for (pid_t pid : runtime::FileUser::getList(INTERNAL_PATH, true)) {
203                 try {
204                         char *unit;
205                         systemDBus.methodcall("org.freedesktop.systemd1",
206                                                                         "/org/freedesktop/systemd1",
207                                                                         "org.freedesktop.systemd1.Manager",
208                                                                         "GetUnitByPID",
209                                                                         -1, "(o)", "(u)", (unsigned int)pid)
210                                                                                 .get("(o)", &unit);
211                         unitsToStop.insert(unit);
212                 } catch (runtime::Exception &e) {
213                         INFO(SINK, "Killing process: " + std::to_string(pid));
214                         ::kill(pid, SIGKILL);
215                 }
216         }
217
218         JobWatch watch(systemDBus);
219
220         for (const std::string& unit : unitsToStop) {
221                 INFO(SINK, "Stopping unit: " + unit);
222                 const char* job = NULL;
223                 systemDBus.methodcall("org.freedesktop.systemd1",
224                                                                 unit,
225                                                                 "org.freedesktop.systemd1.Unit",
226                                                                 "Stop",
227                                                                 -1, "(o)", "(s)", "flush").get("(o)", &job);
228                 INFO(SINK, "Waiting for job: " + std::string(job));
229                 if (!watch.waitForJob(job))
230                         throw runtime::Exception("Stopping unit: " + unit + " failed");
231         }
232 }
233
234 void showProgressUI(const std::string type)
235 {
236         dbus::Connection& systemDBus = dbus::Connection::getSystem();
237         std::string unit("ode-progress-ui@"+type+".service");
238
239         JobWatch watch(systemDBus);
240         INFO(SINK, "Start unit: " + unit);
241
242         const char* job = NULL;
243         systemDBus.methodcall("org.freedesktop.systemd1",
244                                                         "/org/freedesktop/systemd1",
245                                                         "org.freedesktop.systemd1.Manager",
246                                                         "StartUnit",
247                                                         -1, "(o)", "(ss)", unit.c_str(), "replace").get("(o)", &job);
248
249         INFO(SINK, "Waiting for job: " + std::string(job));
250         if (!watch.waitForJob(job))
251                 throw runtime::Exception("Starting unit: " + unit + " failed");
252 }
253
254 unsigned int getOptions()
255 {
256         unsigned int result = 0;
257         int value;
258
259         value = 0;
260         ::vconf_get_bool(VCONFKEY_ODE_FAST_ENCRYPTION, &value);
261         if (value) {
262                 result |= InternalEncryption::Option::IncludeUnusedRegion;
263         }
264
265         return result;
266 }
267
268 void setOptions(unsigned int options)
269 {
270         bool value;
271
272         if (options & InternalEncryption::Option::IncludeUnusedRegion) {
273                 value = true;
274         } else {
275                 value = false;
276         }
277         ::vconf_set_bool(VCONFKEY_ODE_FAST_ENCRYPTION, value);
278 }
279
280 void unmountInternalStorage(const std::string& source)
281 {
282         while(true) {
283                 auto mntPaths = findMountPointsByDevice(source);
284                 if(mntPaths.empty())
285                         break;
286
287                 bool unmounted = true;
288                 for(const auto& path : mntPaths) {
289                         INFO(SINK, "Unmounting " + path);
290                         if (::umount(path.c_str()) == -1) {
291                                 // If it's busy or was already unmounted ignore the error
292                                 if (errno != EBUSY && errno != EINVAL) {
293                                         throw runtime::Exception("umount() error: " + runtime::GetSystemErrorMessage());
294                                 }
295                                 unmounted = false;
296                         }
297                 }
298                 if (!unmounted)
299                         stopDependedSystemdUnits();
300         }
301 }
302
303 }
304
305 InternalEncryptionServer::InternalEncryptionServer(ServerContext& srv,
306                                                                                                    KeyServer& key) :
307         server(srv),
308         keyServer(key)
309 {
310         server.expose(this, PRIVILEGE_PLATFORM, (int)(InternalEncryptionServer::setMountPassword)(std::string));
311         server.expose(this, PRIVILEGE_PLATFORM, (int)(InternalEncryptionServer::mount)());
312         server.expose(this, PRIVILEGE_PLATFORM, (int)(InternalEncryptionServer::umount)());
313         server.expose(this, PRIVILEGE_PLATFORM, (int)(InternalEncryptionServer::encrypt)(std::string, unsigned int));
314         server.expose(this, PRIVILEGE_PLATFORM, (int)(InternalEncryptionServer::decrypt)(std::string));
315         server.expose(this, "", (int)(InternalEncryptionServer::isPasswordInitialized)());
316         server.expose(this, PRIVILEGE_PLATFORM, (int)(InternalEncryptionServer::initPassword)(std::string));
317         server.expose(this, PRIVILEGE_PLATFORM, (int)(InternalEncryptionServer::cleanPassword)(std::string));
318         server.expose(this, PRIVILEGE_PLATFORM, (int)(InternalEncryptionServer::changePassword)(std::string, std::string));
319         server.expose(this, PRIVILEGE_PLATFORM, (int)(InternalEncryptionServer::verifyPassword)(std::string));
320         server.expose(this, "", (int)(InternalEncryptionServer::getState)());
321         server.expose(this, "", (unsigned int)(InternalEncryptionServer::getSupportedOptions)());
322         server.expose(this, "", (std::string)(InternalEncryptionServer::getDevicePath)());
323
324         server.createNotification("InternalEncryptionServer::mount");
325
326         std::string source = findDevPath();
327
328         engine.reset(new INTERNAL_ENGINE(
329                 source, INTERNAL_PATH,
330                 ProgressBar([](int v) {
331                         ::vconf_set_str(VCONFKEY_ODE_ENCRYPT_PROGRESS,
332                                                         std::to_string(v).c_str());
333                 })
334         ));
335 }
336
337 InternalEncryptionServer::~InternalEncryptionServer()
338 {
339 }
340
341 int InternalEncryptionServer::setMountPassword(const std::string& password)
342 {
343         return keyServer.get(engine->getSource(), password, mountKey);
344 }
345
346 int InternalEncryptionServer::mount()
347 {
348         if (mountKey.empty()) {
349                 ERROR(SINK, "You need to call set_mount_password() first.");
350                 return error::NoData;
351         }
352
353         BinaryData key = mountKey;
354         mountKey.clear();
355
356         if (getState() != State::Encrypted) {
357                 INFO(SINK, "Cannot mount, SD partition's state incorrect.");
358                 return error::NoSuchDevice;
359         }
360
361         if (engine->isMounted()) {
362                 INFO(SINK, "Partition already mounted.");
363                 return error::None;
364         }
365
366         INFO(SINK, "Mounting internal storage.");
367         try {
368                 engine->mount(key, getOptions());
369
370                 server.notify("InternalEncryptionServer::mount");
371
372                 runtime::File("/tmp/.lazy_mount").create(O_WRONLY);
373                 runtime::File("/tmp/.unlock_mnt").create(O_WRONLY);
374         } catch (runtime::Exception &e) {
375                 ERROR(SINK, "Mount failed: " + std::string(e.what()));
376                 return error::Unknown;
377         }
378
379         return error::None;
380 }
381
382 int InternalEncryptionServer::umount()
383 {
384         if (getState() != State::Encrypted) {
385                 ERROR(SINK, "Cannot umount, partition's state incorrect.");
386                 return error::NoSuchDevice;
387         }
388
389         if (!engine->isMounted()) {
390                 INFO(SINK, "Partition already umounted.");
391                 return error::None;
392         }
393
394         INFO(SINK, "Closing all processes using internal storage.");
395         try {
396                 stopDependedSystemdUnits();
397                 INFO(SINK, "Umounting internal storage.");
398                 engine->umount();
399         } catch (runtime::Exception &e) {
400                 ERROR(SINK, "Umount failed: " + std::string(e.what()));
401                 return error::Unknown;
402         }
403
404         return error::None;
405 }
406
407 int InternalEncryptionServer::encrypt(const std::string& password, unsigned int options)
408 {
409         if (getState() != State::Unencrypted) {
410                 ERROR(SINK, "Cannot encrypt, partition's state incorrect.");
411                 return error::NoSuchDevice;
412         }
413
414         BinaryData masterKey;
415         int ret = keyServer.get(engine->getSource(), password, masterKey);
416         if (ret != error::None)
417                 return ret;
418
419         auto encryptWorker = [masterKey, options, this]() {
420                 try {
421                         showProgressUI("Encrypting");
422                         ::sleep(1);
423
424                         INFO(SINK, "Closing all known systemd services that might be using internal storage.");
425                         stopKnownSystemdUnits();
426
427                         std::string source = engine->getSource();
428                         auto mntPaths = findMountPointsByDevice(source);
429
430                         if (!mntPaths.empty()) {
431                                 INFO(SINK, "Closing all processes using internal storage.");
432                                 stopDependedSystemdUnits();
433
434                                 INFO(SINK, "Unmounting internal storage.");
435                                 unmountInternalStorage(source);
436                         }
437
438                         INFO(SINK, "Encryption started.");
439                         ::vconf_set_str(VCONFKEY_ODE_CRYPTO_STATE, "error_partially_encrypted");
440                         engine->encrypt(masterKey, options);
441                         setOptions(options & getSupportedOptions());
442
443                         INFO(SINK, "Encryption completed.");
444                         ::vconf_set_str(VCONFKEY_ODE_CRYPTO_STATE, "encrypted");
445                         server.notify("InternalEncryptionServer::mount");
446
447                         INFO(SINK, "Syncing disk and rebooting.");
448                         ::sync();
449                         ::reboot(RB_AUTOBOOT);
450                 } catch (runtime::Exception &e) {
451                         ERROR(SINK, "Encryption failed: " + std::string(e.what()));
452                 }
453         };
454
455         std::thread asyncWork(encryptWorker);
456         asyncWork.detach();
457
458         return error::None;
459 }
460
461 int InternalEncryptionServer::decrypt(const std::string& password)
462 {
463         if (getState() != State::Encrypted) {
464                 ERROR(SINK, "Cannot decrypt, partition's state incorrect.");
465                 return error::NoSuchDevice;
466         }
467
468         BinaryData masterKey;
469         int ret = keyServer.get(engine->getSource(), password, masterKey);
470         if (ret != error::None)
471                 return ret;
472
473         auto decryptWorker = [masterKey, this]() {
474                 try {
475                         showProgressUI("Decrypting");
476                         ::sleep(1);
477
478                         if (engine->isMounted()) {
479                                 INFO(SINK, "Closing all known systemd services that might be using internal storage.");
480                                 stopKnownSystemdUnits();
481                                 INFO(SINK, "Closing all processes using internal storage.");
482                                 stopDependedSystemdUnits();
483
484                                 INFO(SINK, "Umounting internal storage.");
485                                 while (1) {
486                                         try {
487                                                 engine->umount();
488                                                 break;
489                                         } catch (runtime::Exception& e) {
490                                                 stopDependedSystemdUnits();
491                                         }
492                                 }
493                         }
494
495                         INFO(SINK, "Decryption started.");
496                         ::vconf_set_str(VCONFKEY_ODE_CRYPTO_STATE, "error_partially_encrypted");
497                         engine->decrypt(masterKey, getOptions());
498
499                         INFO(SINK, "Decryption complete.");
500                         ::vconf_set_str(VCONFKEY_ODE_CRYPTO_STATE, "unencrypted");
501
502                         INFO(SINK, "Syncing disk and rebooting.");
503                         ::sync();
504                         ::reboot(RB_AUTOBOOT);
505                 } catch (runtime::Exception &e) {
506                         ERROR(SINK, "Decryption failed: " + std::string(e.what()));
507                 }
508         };
509
510         std::thread asyncWork(decryptWorker);
511         asyncWork.detach();
512
513         return error::None;
514 }
515
516 int InternalEncryptionServer::recovery()
517 {
518         if (getState() == State::Unencrypted) {
519                 return error::NoSuchDevice;
520         }
521
522         //TODO
523         runtime::Process proc(PROG_FACTORY_RESET, wipeCommand);
524         if (proc.execute() == -1) {
525                 ERROR(SINK, "Failed to launch factory-reset");
526                 return error::WrongPassword;
527         }
528
529         return error::None;
530 }
531
532 int InternalEncryptionServer::isPasswordInitialized()
533 {
534         return keyServer.isInitialized(engine->getSource());
535 }
536
537 int InternalEncryptionServer::initPassword(const std::string& password)
538 {
539         return keyServer.init(engine->getSource(), password, Key::DEFAULT_256BIT);
540 }
541
542 int InternalEncryptionServer::cleanPassword(const std::string& password)
543 {
544         return keyServer.remove(engine->getSource(), password);
545 }
546
547 int InternalEncryptionServer::changePassword(const std::string& oldPassword,
548                                                                                 const std::string& newPassword)
549 {
550         return keyServer.changePassword(engine->getSource(), oldPassword, newPassword);
551 }
552
553 int InternalEncryptionServer::verifyPassword(const std::string& password)
554 {
555         return keyServer.verifyPassword(engine->getSource(), password);
556 }
557
558 int InternalEncryptionServer::getState()
559 {
560         char *value = ::vconf_get_str(VCONFKEY_ODE_CRYPTO_STATE);
561         if (value == NULL) {
562                 throw runtime::Exception("Failed to get vconf value.");
563         }
564
565         std::string valueStr(value);
566         free(value);
567
568         if (valueStr == "encrypted") {
569                 return State::Encrypted;
570         } else if (valueStr == "unencrypted") {
571                 return State::Unencrypted;
572         } else {
573                 return State::Corrupted;
574         }
575 }
576
577 unsigned int InternalEncryptionServer::getSupportedOptions()
578 {
579         return engine->getSupportedOptions();
580 }
581
582 std::string InternalEncryptionServer::getDevicePath() const
583 {
584         return engine->getSource();
585 }
586
587 } // namespace ode