Fix static analysis issue
[platform/core/security/ode.git] / server / internal-encryption.cpp
1 /*
2  *  Copyright (c) 2015-2023 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 <fstream>
24 #include <fcntl.h>
25 #include <signal.h>
26 #include <unistd.h>
27 #include <sys/mount.h>
28 #include <sys/reboot.h>
29 #include <sys/wait.h>
30 #include <limits.h>
31 #include <stdlib.h>
32 #include <string.h>
33
34 #include <vconf.h>
35 #include <tzplatform_config.h>
36 #include <device/power.h>
37 #include <klay/process.h>
38 #include <klay/file-user.h>
39 #include <klay/filesystem.h>
40 #include <klay/dbus/connection.h>
41 #include <klay/dbus/signal.h>
42 #include <klay/error.h>
43 #include <systemd/sd-bus.h>
44
45 #include "misc.h"
46 #include "logger.h"
47 #include "progress-bar.h"
48 #include "rmi/common.h"
49
50 #include "ext4-tool.h"
51 #include "internal-encryption.h"
52 #include "internal-encryption-common.h"
53 #include "upgrade-support.h"
54 #include "file-footer.h"
55
56 namespace ode {
57
58 namespace {
59
60 const char *PRIVILEGE_PLATFORM  = "http://tizen.org/privilege/internal/default/platform";
61 const mode_t MODE_0640 = S_IRUSR | S_IWUSR | S_IRGRP;
62 const std::string ODE_OBJECT_PATH = "/Org/Tizen/OnDeviceEncryption";
63 const std::string ODE_INTERFACE_EVENT = "org.tizen.OnDeviceEncryption.Event";
64 const std::string ODE_SIGNAL_NAME = "unmount";
65 const std::string manifest =
66         "<node>"
67         "       <interface name='" + ODE_INTERFACE_EVENT + "'>"
68         "       <signal name='" + ODE_SIGNAL_NAME + "'>"
69         "       </signal>"
70         "       </interface>"
71         "</node>";
72
73 // watches systemd jobs
74 class JobWatch {
75 public:
76         explicit JobWatch(dbus::Connection& systemDBus);
77         ~JobWatch();
78
79         bool waitForJob(const std::string& job);
80
81 private:
82         void jobRemoved(const dbus::Variant& parameters);
83
84         struct Job {
85                 Job(uint32_t id,
86                         const std::string& job,
87                         const std::string& unit,
88                         const std::string& result) : id(id), job(job), unit(unit), result(result) {}
89                 uint32_t id;
90                 std::string job;
91                 std::string unit;
92                 std::string result;
93         };
94
95         dbus::Connection::SubscriptionId id;
96         dbus::Connection& systemDBus;
97         std::list<Job> removedJobs;
98         std::mutex jobsMutex;
99         std::condition_variable jobsCv;
100 };
101
102 JobWatch::JobWatch(dbus::Connection& systemDBus) : systemDBus(systemDBus) {
103         auto callback = [this](dbus::Variant parameters) {
104                 this->jobRemoved(parameters);
105         };
106
107         id = systemDBus.subscribeSignal("",
108                                                                         "/org/freedesktop/systemd1",
109                                                                         "org.freedesktop.systemd1.Manager",
110                                                                         "JobRemoved",
111                                                                         callback);
112 }
113
114 JobWatch::~JobWatch() {
115         systemDBus.unsubscribeSignal(id);
116 }
117
118 bool JobWatch::waitForJob(const std::string& job) {
119         while(true) {
120                 std::unique_lock<std::mutex> lock(jobsMutex);
121                 bool timeout = true;
122                 auto sec = std::chrono::seconds(1);
123                 jobsCv.wait_for(lock, 5*sec, [this, &timeout]{
124                                 if (!removedJobs.empty()) {
125                                         timeout = false;
126                                         return true;
127                                 }
128                                 return false;});
129
130                 if (timeout) {
131                         ERROR(SINK, "job: " + job + ", result: time out");
132                         return false;
133                 }
134
135                 while(!removedJobs.empty()) {
136                         bool match = (removedJobs.front().job == job);
137                         bool done = (removedJobs.front().result == "done");
138                         removedJobs.pop_front();
139                         if (match)
140                                 return done;
141                 }
142         };
143 }
144
145 void JobWatch::jobRemoved(const dbus::Variant& parameters)
146 {
147         uint32_t id;
148         const char* job;
149         const char* unit;
150         const char* result;
151         parameters.get("(uoss)", &id, &job, &unit, &result);
152         WARN(SINK, "id:" + std::to_string(id) + " job:" + job + " unit:" + unit + " result:" + result);
153
154         {
155                 std::lock_guard<std::mutex> guard(jobsMutex);
156                 removedJobs.emplace_back(id, job, unit, result);
157         }
158         jobsCv.notify_one();
159 }
160
161 void stopSystemdUnits()
162 {
163         dbus::Connection& systemDBus = dbus::Connection::getSystem();
164         dbus::VariantIterator iter;
165         std::vector<std::string> preprocessUnits;
166         std::set<std::string> unitsToStop;
167
168         try {
169                 systemDBus.emitSignal("",
170                                                 ODE_OBJECT_PATH,
171                                                 ODE_INTERFACE_EVENT,
172                                                 ODE_SIGNAL_NAME, "()", nullptr);
173         } catch (runtime::Exception &e) {
174                 ERROR(SINK, "Failed to emit signal : " + std::string(e.what()));
175         }
176
177         auto stopUnit = [&systemDBus](const std::string &unit) {
178                 JobWatch watch(systemDBus);
179                 WARN(SINK, "Stopping unit: " + unit);
180                 const char* job = NULL;
181                 try {
182                         systemDBus.methodcall("org.freedesktop.systemd1",
183                                                                         "/org/freedesktop/systemd1",
184                                                                         "org.freedesktop.systemd1.Manager",
185                                                                         "StopUnit",
186                                                                         -1, "(o)", "(ss)", unit.c_str(), "flush").get("(o)", &job);
187                         WARN(SINK, "Waiting for job: " + std::string(job));
188                         if (!watch.waitForJob(job))
189                                 ERROR(SINK, "Stopping unit: " + unit + " failed");
190                 } catch (runtime::Exception &e) {
191                         ERROR(SINK, std::string(e.what()));
192                 }
193         };
194
195         try {
196                 systemDBus.methodcall("org.freedesktop.systemd1",
197                                                                 "/org/freedesktop/systemd1",
198                                                                 "org.freedesktop.systemd1.Manager",
199                                                                 "ListUnits",
200                                                                 -1, "(a(ssssssouso))", "").get("(a(ssssssouso))", &iter);
201         } catch (runtime::Exception &e) {
202                 ERROR(SINK, "Get list of systemd unit : " + std::string(e.what()));
203         }
204
205         while (1) {
206                 unsigned int dataUnit;
207                 char *dataStr[9];
208                 int ret;
209                 ret = iter.get("(ssssssouso)", dataStr, dataStr + 1, dataStr + 2,
210                                                 dataStr + 3, dataStr + 4, dataStr + 5,
211                                                 dataStr + 6, &dataUnit, dataStr + 7, dataStr + 8);
212                 if (!ret)
213                         break;
214
215                 std::string unitName(dataStr[0]);
216                 if (unitName == "security-manager.socket" ||
217                                 unitName == "connman.socket" ||
218                                 unitName == "msg-server.socket") {
219                         preprocessUnits.insert(preprocessUnits.begin(), unitName);
220                 } else if (unitName.compare(0, 5, "user@") == 0 ||
221                                 unitName == "tlm.service" ||
222                                 unitName == "resourced.service" ||
223                                 unitName == "security-manager.service") {
224                         preprocessUnits.push_back(unitName);
225                 }
226         }
227
228         for (auto &unit : preprocessUnits) {
229                 stopUnit(unit);
230         }
231
232         for (pid_t pid : runtime::FileUser::getList(INTERNAL_PATH, true)) {
233                 auto pgid = ::getpgid(pid);
234                 if (pgid > 0 && pid != pgid) {
235                         WARN(SINK, "PGID doesn't match - pgid : " + std::to_string(pgid) + ", pid : " + std::to_string(pid));
236                         continue;
237                 }
238
239                 try {
240                         char *unit = nullptr;
241                         systemDBus.methodcall("org.freedesktop.systemd1",
242                                                                         "/org/freedesktop/systemd1",
243                                                                         "org.freedesktop.systemd1.Manager",
244                                                                         "GetUnitByPID",
245                                                                         -1, "(o)", "(u)", (unsigned int)pid)
246                                                                                 .get("(o)", &unit);
247
248                         char* tmp  = NULL;
249                         int err = sd_bus_path_decode(unit, "/org/freedesktop/systemd1/unit", &tmp);
250                         if (err <= 0 || tmp == NULL) {
251                                 ERROR(SINK, "Failed to decode unit name: " + std::string(unit) + " error: " +
252                                             std::to_string(err));
253                                 continue;
254                         }
255                         std::string unescapedName(tmp);
256                         free(tmp);
257
258                         unitsToStop.insert(unescapedName);
259                 } catch (runtime::Exception &e) {
260                         ERROR(SINK, "Killing process: " + std::to_string(pid));
261                         ::kill(pid, SIGKILL);
262                 }
263         }
264
265         for (auto unit : unitsToStop) {
266                 stopUnit(unit);
267         }
268 }
269
270 void showProgressUI(const std::string type)
271 {
272         dbus::Connection& systemDBus = dbus::Connection::getSystem();
273         std::string unit("ode-progress-ui@"+type+".service");
274
275         JobWatch watch(systemDBus);
276         INFO(SINK, "Start unit: " + unit);
277
278         const char* job = NULL;
279         systemDBus.methodcall("org.freedesktop.systemd1",
280                                                         "/org/freedesktop/systemd1",
281                                                         "org.freedesktop.systemd1.Manager",
282                                                         "StartUnit",
283                                                         -1, "(o)", "(ss)", unit.c_str(), "replace").get("(o)", &job);
284
285         INFO(SINK, "Waiting for job: " + std::string(job));
286         if (!watch.waitForJob(job))
287                 ERROR(SINK, "Starting unit: " + unit + " failed");
288 }
289
290 unsigned int getOptions()
291 {
292         unsigned int result = 0;
293         int value;
294
295         value = 0;
296         ::vconf_get_bool(VCONFKEY_ODE_FAST_ENCRYPTION, &value);
297         if (value) {
298                 result |= InternalEncryption::Option::IncludeUnusedRegion;
299         }
300
301         return result;
302 }
303
304 void setOptions(unsigned int options)
305 {
306         bool value;
307
308         if (options & InternalEncryption::Option::IncludeUnusedRegion) {
309                 value = true;
310         } else {
311                 value = false;
312         }
313         ::vconf_set_bool(VCONFKEY_ODE_FAST_ENCRYPTION, value);
314 }
315
316 void killProcesses(std::vector<const char*> &args)
317 {
318         int pipeFd[2] = {0, };
319         pid_t pid = 0;
320
321         if (::pipe(pipeFd) < 0)
322                 throw runtime::Exception("Failed to create pipe");
323
324         pid = ::fork();
325         if (pid < 0) {
326                 ::close(pipeFd[0]);
327                 ::close(pipeFd[1]);
328                 throw runtime::Exception("Failed to fork");
329         }
330
331         if (pid == 0) {
332                 ::close(pipeFd[0]);
333                 if (::dup2(pipeFd[1], STDOUT_FILENO) < 0)
334                         ERROR(SINK, "Failed to copy STDOUT_FILENO");
335
336                 if (::dup2(STDOUT_FILENO, STDERR_FILENO) < 0)
337                         ERROR(SINK, "Failed to copy STDERR_FILENO");
338
339                 ::close(pipeFd[1]);
340
341                 if (::execv(args[0], const_cast<char* const*>(args.data())) < 0)
342                         ERROR(SINK, "Failed to execute : " + std::to_string(errno));
343
344                 std::quick_exit(EXIT_FAILURE);
345         }
346
347         ::close(pipeFd[1]);
348
349         for (int status = 0; ::waitpid(pid, &status, 0) == -1;) {
350                 if (errno != EINTR) {
351                         ::close(pipeFd[0]);
352                         throw runtime::Exception("Failed to wait child process");
353                 }
354         }
355
356         auto closeFile = [](FILE *fp) { ::fclose(fp); };
357         std::unique_ptr<FILE, decltype(closeFile)> fp(::fdopen(pipeFd[0], "r"), closeFile);
358         if (fp == nullptr) {
359                 ::close(pipeFd[0]);
360                 throw runtime::Exception("Failed to open pipe descriptor");
361         }
362
363         char *line = nullptr;
364         size_t len = 0;
365         try {
366                 while ((::getline(&line, &len, fp.get())) != -1) {
367                         std::string log(line);
368                         log.erase(std::find_if(log.rbegin(), log.rend(),
369                                                 [](unsigned char c){ return std::isgraph(c); }).base(), log.end());
370                         WARN(SINK, log);
371                 }
372         } catch (std::exception &e) {
373                 ERROR(SINK, e.what());
374         }
375         ::free(line);
376         ::close(pipeFd[0]);
377 }
378
379 bool isPartitionTerminated(const std::string &partition)
380 {
381         bool ret = true;
382         const std::string cmd("fuser -m " + partition + " | grep -o '[0-9]*'");
383         char *line = nullptr;
384         size_t len = 0;
385
386         FILE *fp = ::popen(cmd.c_str(), "r");
387         if (fp == nullptr) {
388                 ERROR(SINK, "Failed to get processes on partition");
389                 return false;
390         }
391
392         if (::getline(&line, &len, fp) != -1)
393                 ret = false;
394
395         ::free(line);
396         ::pclose(fp);
397
398         return ret;
399 }
400
401 void unmountInternalStorage(const std::string& source)
402 {
403         if (::umount2("/opt/usr", MNT_DETACH) == -1) {
404                 if (errno != EBUSY && errno != EINVAL) {
405                         throw runtime::Exception("umount() error : " + runtime::GetSystemErrorMessage());
406                 }
407         }
408
409         do {
410                 ::sync();
411                 std::vector<const char*> args = {
412                         "/usr/bin/fuser", "-m", "-k", "-v", "-SIGTERM", source.c_str(), nullptr
413                 };
414                 try {
415                         killProcesses(args);
416                         ::usleep((useconds_t)((unsigned int)(500)*1000));
417
418                         args[4] = "-SIGKILL";
419                         killProcesses(args);
420                         ::usleep((useconds_t)((unsigned int)(200)*1000));
421                 } catch (runtime::Exception &e) {
422                         ERROR(e.what());
423                 }
424         } while (!isPartitionTerminated(source));
425 }
426
427 }
428
429 InternalEncryptionServer::InternalEncryptionServer(ServerContext& srv,
430                                                                                                    KeyServer& key) :
431         server(srv),
432         keyServer(key)
433 {
434         server.expose(this, PRIVILEGE_PLATFORM, (int)(InternalEncryptionServer::setMountPassword)(std::string));
435         server.expose(this, PRIVILEGE_PLATFORM, (int)(InternalEncryptionServer::mount)(std::vector<unsigned char>, unsigned int));
436         server.expose(this, PRIVILEGE_PLATFORM, (int)(InternalEncryptionServer::umount)());
437         server.expose(this, PRIVILEGE_PLATFORM, (int)(InternalEncryptionServer::isMounted)());
438         server.expose(this, PRIVILEGE_PLATFORM, (int)(InternalEncryptionServer::prepareEncryption)(unsigned int));
439         server.expose(this, PRIVILEGE_PLATFORM, (int)(InternalEncryptionServer::prepareDecryption)());
440         server.expose(this, PRIVILEGE_PLATFORM, (int)(InternalEncryptionServer::encrypt)(std::string, unsigned int));
441         server.expose(this, PRIVILEGE_PLATFORM, (int)(InternalEncryptionServer::decrypt)(std::string));
442         server.expose(this, "", (int)(InternalEncryptionServer::isPasswordInitialized)());
443         server.expose(this, PRIVILEGE_PLATFORM, (int)(InternalEncryptionServer::recovery)());
444         server.expose(this, PRIVILEGE_PLATFORM, (int)(InternalEncryptionServer::initPassword)(std::string));
445         server.expose(this, PRIVILEGE_PLATFORM, (int)(InternalEncryptionServer::cleanPassword)(std::string));
446         server.expose(this, PRIVILEGE_PLATFORM, (int)(InternalEncryptionServer::changePassword)(std::string, std::string));
447         server.expose(this, PRIVILEGE_PLATFORM, (int)(InternalEncryptionServer::verifyPassword)(std::string));
448         server.expose(this, "", (int)(InternalEncryptionServer::getState)());
449         server.expose(this, "", (unsigned int)(InternalEncryptionServer::getSupportedOptions)());
450         server.expose(this, "", (std::string)(InternalEncryptionServer::getDevicePath)());
451
452         server.createNotification("InternalEncryptionServer::mount");
453
454         std::string source = findDevPath();
455
456         if (getStateInternal() == State::Encrypted) {
457                 //"error_partially_encrypted"
458                 if (!FileFooter::exist(source) && !UpgradeSupport::checkUpgradeFlag()) {
459                         // Trigger key migration process
460                         UpgradeSupport::createUpgradeFlag();
461                 }
462         }
463
464         engine.reset(new INTERNAL_ENGINE(source,
465                                          INTERNAL_PATH,
466                                          ProgressBar(VCONFKEY_ODE_ENCRYPT_PROGRESS)));
467
468         try {
469                 dbus::Connection &systemDBus = dbus::Connection::getSystem();
470                 systemDBus.registerObject(ODE_OBJECT_PATH, manifest, nullptr, nullptr);
471         } catch (runtime::Exception &e) {
472                 ERROR(SINK, e.what());
473         }
474 }
475
476 InternalEncryptionServer::~InternalEncryptionServer()
477 {
478 }
479
480 int InternalEncryptionServer::migrateMasterKey(const std::string& dev, const std::string& password)
481 {
482         try {
483                 BinaryData masterKey = UpgradeSupport::loadMasterKey(dev);
484
485                 // encrypt the master key with given password
486                 return keyServer.changePassword2(dev, masterKey, password);
487         } catch (const runtime::Exception&) {
488                 ERROR(SINK, "Failed to load the master key stored during upgrade.");
489         }
490
491         return error::Unknown;
492 }
493
494 int InternalEncryptionServer::setMountPassword(const std::string& password)
495 {
496         RequestLifetime rl(server);
497
498         const std::string& dev = engine->getSource();
499
500         // check if upgrade flag exists
501         if (UpgradeSupport::checkUpgradeFlag()) {
502                 INFO(SINK, "Upgrade flag detected.");
503
504                 int rc = migrateMasterKey(dev, password);
505                 if (rc != error::None)
506                         return rc;
507                 UpgradeSupport::removeUpgradeFlag();
508         }
509
510         return keyServer.get(dev, password, mountKey);
511 }
512
513 int InternalEncryptionServer::mount(const std::vector<unsigned char> &mk, unsigned int options)
514 {
515         RequestLifetime rl(server);
516
517         if (mountKey.empty() && mk.empty()) {
518                 ERROR(SINK, "You need to set master key first.");
519                 return error::NoData;
520         }
521
522         BinaryData key = mk.empty() ? mountKey : mk;
523         mountKey.clear();
524
525         if (getStateInternal() != State::Encrypted) {
526                 ERROR(SINK, "Cannot mount, SD partition's state incorrect.");
527                 return error::NoSuchDevice;
528         }
529
530         if (engine->isMounted()) {
531                 ERROR(SINK, "Partition already mounted.");
532                 return error::None;
533         }
534
535         INFO(SINK, "Mounting internal storage.");
536         try {
537                 engine->mount(key, getOptions());
538
539                 server.notify("InternalEncryptionServer::mount");
540
541                 runtime::File("/tmp/.lazy_mount").create(O_WRONLY);
542                 runtime::File("/tmp/.unlock_mnt").create(O_WRONLY);
543         } catch (runtime::Exception &e) {
544                 ERROR(SINK, "Mount failed: " + std::string(e.what()));
545                 return error::Unknown;
546         }
547
548         return error::None;
549 }
550
551 int InternalEncryptionServer::isMounted()
552 {
553         RequestLifetime rl(server);
554
555         int ret = 0;
556         try {
557                 ret = engine->isMounted() ? 1 : 0;
558         } catch (runtime::Exception &e) {
559                 ERROR(SINK, "Failed to access the mount flag");
560                 return error::Unknown;
561         }
562         return ret;
563 }
564
565 int InternalEncryptionServer::umount()
566 {
567         RequestLifetime rl(server);
568
569         if (getStateInternal() != State::Encrypted) {
570                 ERROR(SINK, "Cannot umount, partition's state incorrect.");
571                 return error::NoSuchDevice;
572         }
573
574         if (!engine->isMounted()) {
575                 ERROR(SINK, "Partition already umounted.");
576                 return error::None;
577         }
578
579         INFO(SINK, "Closing all processes using internal storage.");
580         try {
581                 stopSystemdUnits();
582                 INFO(SINK, "Umounting internal storage.");
583                 unmountInternalStorage("/dev/mapper/userdata");
584                 engine->umount();
585         } catch (runtime::Exception &e) {
586                 ERROR(SINK, "Umount failed: " + std::string(e.what()));
587                 return error::Unknown;
588         }
589
590         return error::None;
591 }
592
593 int InternalEncryptionServer::prepareEncryption(unsigned int options)
594 {
595         RequestLifetime rl(server);
596
597         if (getStateInternal() != State::Unencrypted) {
598                 ERROR(SINK, "Cannot encrypt, partition's state incorrect.");
599                 return error::NoSuchDevice;
600         }
601
602         try {
603                 runtime::File file("/opt/etc/.odeprogress");
604                 file.create(MODE_0640);
605         } catch (runtime::Exception &e) {
606                 ERROR(SINK, "Failed to create the flag file: " + std::string(e.what()));
607                 return error::Unknown;
608         }
609
610         setOptions(options & engine->getSupportedOptions());
611
612         ::vconf_set_str(VCONFKEY_ODE_CRYPTO_STATE, "prepared_encryption");
613         ::sync();
614         ::reboot(RB_AUTOBOOT);
615
616         return error::None;
617 }
618
619 int InternalEncryptionServer::prepareDecryption()
620 {
621         RequestLifetime rl(server);
622
623         if (getStateInternal() != State::Encrypted) {
624                 ERROR(SINK, "Cannot decrypt, partition's state incorrect.");
625                 return error::NoSuchDevice;
626         }
627
628         try {
629                 runtime::File file("/opt/etc/.odeprogress");
630                 file.create(MODE_0640);
631         } catch (runtime::Exception &e) {
632                 ERROR(SINK, "Failed to create the flag file: " + std::string(e.what()));
633                 return error::Unknown;
634         }
635
636         ::vconf_set_str(VCONFKEY_ODE_CRYPTO_STATE, "prepared_decryption");
637         ::sync();
638         ::reboot(RB_AUTOBOOT);
639
640         return error::None;
641 }
642
643 int InternalEncryptionServer::encrypt(const std::string& password, unsigned int options)
644 {
645         RequestLifetime rl(server);
646
647         int state = getStateInternal();
648         if (state != State::Unencrypted && state != State::PreparedEncryption) {
649                 ERROR(SINK, "Cannot encrypt, partition's state incorrect.");
650                 return error::NoSuchDevice;
651         }
652
653         BinaryData masterKey;
654         int ret = keyServer.get(engine->getSource(), password, masterKey);
655         if (ret != error::None)
656                 return ret;
657
658         auto encryptWorker = [masterKey, options, this](RequestLifetime&& rl) {
659                 try {
660                         if (::device_power_request_lock(POWER_LOCK_DISPLAY, 0) != 0)
661                                 ERROR(SINK, "Failed to request to lock display");
662
663                         showProgressUI("encrypt");
664                         ::sleep(1);
665
666                         runtime::File file("/opt/etc/.odeprogress");
667                         if (getStateInternal() == State::Unencrypted) {
668                                 /* For backward compatibility */
669                                 file.create(MODE_0640);
670                                 std::string source = engine->getSource();
671                                 auto mntPaths = findMountPointsByDevice(source);
672
673                                 if (!mntPaths.empty()) {
674                                         INFO(SINK, "Closing all processes using internal storage.");
675                                         stopSystemdUnits();
676
677                                         INFO(SINK, "Unmounting internal storage.");
678                                         unmountInternalStorage(source);
679                                 }
680                                 setOptions(options & engine->getSupportedOptions());
681                         }
682
683                         INFO(SINK, "Encryption started.");
684                         ::vconf_set_str(VCONFKEY_ODE_CRYPTO_STATE, "error_partially_encrypted");
685                         try {
686                                 engine->encrypt(masterKey, getOptions());
687                         } catch (runtime::Exception &e) {
688                                 ERROR(SINK, e.what());
689                                 if (!engine->isStarted()) {
690                                         ::vconf_set_str(VCONFKEY_ODE_CRYPTO_STATE, "unencrypted");
691                                         file.remove();
692                                 }
693                                 ::sync();
694                                 ::reboot(RB_AUTOBOOT);
695                         }
696
697                         INFO(SINK, "Encryption completed.");
698                         ::vconf_set_str(VCONFKEY_ODE_CRYPTO_STATE, "encrypted");
699                         server.notify("InternalEncryptionServer::mount");
700
701                         file.remove();
702
703                         INFO(SINK, "Syncing disk and rebooting.");
704                         ::sync();
705                         ::reboot(RB_AUTOBOOT);
706                 } catch (runtime::Exception &e) {
707                         ERROR(SINK, "Encryption failed: " + std::string(e.what()));
708                 }
709         };
710
711         std::thread asyncWork(encryptWorker, std::move(rl));
712         asyncWork.detach();
713
714         return error::None;
715 }
716
717 int InternalEncryptionServer::decrypt(const std::string& password)
718 {
719         RequestLifetime rl(server);
720
721         int state = getStateInternal();
722         if (state != State::Encrypted && state != State::PreparedDecryption) {
723                 ERROR(SINK, "Cannot decrypt, partition's state incorrect.");
724                 return error::NoSuchDevice;
725         }
726
727         // check if key migration is needed
728         if (UpgradeSupport::checkUpgradeFlag()) {
729                 INFO(SINK, "Upgrade flag detected.");
730                 const std::string& dev = engine->getSource();
731                 int rc = migrateMasterKey(dev, password);
732                 if (rc == error::None)
733                         UpgradeSupport::removeUpgradeFlag();
734         }
735
736         BinaryData masterKey;
737         int ret = keyServer.get(engine->getSource(), password, masterKey);
738         if (ret != error::None)
739                 return ret;
740
741         auto decryptWorker = [masterKey, this](RequestLifetime&& rl) {
742                 try {
743                         if (::device_power_request_lock(POWER_LOCK_DISPLAY, 0) != 0)
744                                 ERROR(SINK, "Failed to request to lock display");
745
746                         showProgressUI("decrypt");
747                         ::sleep(1);
748
749                         runtime::File file("/opt/etc/.odeprogress");
750                         if (getStateInternal() == State::Encrypted) {
751                                 /* For backward compatibility */
752                                 file.create(MODE_0640);
753
754                                 if (engine->isMounted()) {
755                                         INFO(SINK, "Closing all processes using internal storage.");
756                                         stopSystemdUnits();
757
758                                         INFO(SINK, "Unmounting internal storage.");
759                                         unmountInternalStorage("/dev/mapper/userdata");
760                                         engine->umount();
761                                 }
762                         }
763
764                         INFO(SINK, "Decryption started.");
765                         ::vconf_set_str(VCONFKEY_ODE_CRYPTO_STATE, "error_partially_decrypted");
766                         try {
767                                 engine->decrypt(masterKey, getOptions());
768                         } catch (runtime::Exception &e) {
769                                 ERROR(SINK, e.what());
770                                 if (!engine->isStarted()) {
771                                         ::vconf_set_str(VCONFKEY_ODE_CRYPTO_STATE, "encrypted");
772                                         file.remove();
773                                 }
774                                 ::sync();
775                                 ::reboot(RB_AUTOBOOT);
776                         }
777
778                         INFO(SINK, "Decryption complete.");
779                         ::vconf_set_str(VCONFKEY_ODE_CRYPTO_STATE, "unencrypted");
780
781                         file.remove();
782
783                         INFO(SINK, "Syncing disk and rebooting.");
784                         ::sync();
785                         ::reboot(RB_AUTOBOOT);
786                 } catch (runtime::Exception &e) {
787                         ERROR(SINK, "Decryption failed: " + std::string(e.what()));
788                 }
789         };
790
791         std::thread asyncWork(decryptWorker, std::move(rl));
792         asyncWork.detach();
793
794         return error::None;
795 }
796
797 int InternalEncryptionServer::recovery()
798 {
799         RequestLifetime rl(server);
800
801         int state = getStateInternal();
802
803         if (state == State::Unencrypted)
804                 return error::NoSuchDevice;
805         if (state == State::PreparedEncryption) {
806                 ::vconf_set_str(VCONFKEY_ODE_CRYPTO_STATE, "unencrypted");
807                 ::sync();
808                 return error::None;
809         }
810         if (state == State::PreparedDecryption) {
811                 ::vconf_set_str(VCONFKEY_ODE_CRYPTO_STATE, "encrypted");
812                 ::sync();
813                 return error::None;
814         }
815
816         runtime::File file("/opt/.factoryreset");
817         file.create(MODE_0640);
818
819         ::sync();
820         try {
821                 dbus::Connection& systemDBus = dbus::Connection::getSystem();
822                 systemDBus.methodcall("org.tizen.system.deviced",
823                                                                 "/Org/Tizen/System/DeviceD/Power",
824                                                                 "org.tizen.system.deviced.power",
825                                                                 "reboot",
826                                                                 -1, "()", "(si)", "reboot", 0);
827         } catch (runtime::Exception &e) {
828                 ::reboot(RB_AUTOBOOT);
829         }
830         return error::None;
831 }
832
833 int InternalEncryptionServer::isPasswordInitialized()
834 {
835         return keyServer.isInitialized(engine->getSource());
836 }
837
838 int InternalEncryptionServer::initPassword(const std::string& password)
839 {
840         return keyServer.init(engine->getSource(), password, Key::DEFAULT_256BIT);
841 }
842
843 int InternalEncryptionServer::cleanPassword(const std::string& password)
844 {
845         return keyServer.remove(engine->getSource(), password);
846 }
847
848 int InternalEncryptionServer::changePassword(const std::string& oldPassword,
849                                                                                 const std::string& newPassword)
850 {
851         return keyServer.changePassword(engine->getSource(), oldPassword, newPassword);
852 }
853
854 int InternalEncryptionServer::verifyPassword(const std::string& password)
855 {
856         return keyServer.verifyPassword(engine->getSource(), password);
857 }
858
859 int InternalEncryptionServer::getState()
860 {
861         RequestLifetime rl(server);
862
863         return getStateInternal();
864 }
865
866 unsigned int InternalEncryptionServer::getSupportedOptions()
867 {
868         RequestLifetime rl(server);
869
870         return engine->getSupportedOptions();
871 }
872
873 std::string InternalEncryptionServer::getDevicePath() const
874 {
875         RequestLifetime rl(server);
876
877         return engine->getSource();
878 }
879
880 int InternalEncryptionServer::getStateInternal() const
881 {
882         char *value = ::vconf_get_str(VCONFKEY_ODE_CRYPTO_STATE);
883         if (value == NULL) {
884                 throw runtime::Exception("Failed to get vconf value.");
885         }
886
887         std::string valueStr(value);
888         free(value);
889
890         if (valueStr == "encrypted")
891                 return State::Encrypted;
892         else if (valueStr == "unencrypted")
893                 return State::Unencrypted;
894         else if (valueStr == "prepared_encryption")
895                 return State::PreparedEncryption;
896         else if (valueStr == "prepared_decryption")
897                 return State::PreparedDecryption;
898         else if (valueStr == "error_partially_encrypted" || valueStr == "error_partially_decrypted")
899                 return State::Corrupted;
900
901         return State::NotSupported;
902 }
903
904 } // namespace ode