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