b88211ce171525b5eaa529dd9a4f91407cdb998c
[framework/web/wrt-installer.git] / src / jobs / widget_install / task_private_storage.cpp
1 /*
2  * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  *    Licensed under the Apache License, Version 2.0 (the "License");
5  *    you may not use this file except in compliance with the License.
6  *    You may obtain a copy of the License at
7  *
8  *        http://www.apache.org/licenses/LICENSE-2.0
9  *
10  *    Unless required by applicable law or agreed to in writing, software
11  *    distributed under the License is distributed on an "AS IS" BASIS,
12  *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  *    See the License for the specific language governing permissions and
14  *    limitations under the License.
15  */
16 /**
17  * @file    installer_task_private_storage.cpp
18  * @author  Zbigniew Kostrzewa (z.kostrzewa@samsung.com)
19  * @version 1.0
20  * @brief   Implementation file for installer task private storage.
21  */
22 #include "task_private_storage.h"
23
24 #include <pwd.h>
25 #include <grp.h>
26 #include <unistd.h>
27 #include <sys/types.h>
28 #include <sys/stat.h>
29 #include <unistd.h>
30 #include <string>
31
32 #include <dpl/log/log.h>
33 #include <dpl/errno_string.h>
34
35 #include <dpl/wrt-dao-ro/widget_config.h>
36 #include <dpl/utils/file_utils.h>
37 #include <widget_install/job_widget_install.h>
38 #include <widget_install/widget_install_context.h>
39 #include <widget_install/widget_install_errors.h>
40
41 #define WEBAPP_DEFAULT_UID  5000
42 #define WEBAPP_DEFAULT_GID  5000
43
44 namespace {
45 const mode_t PRIVATE_STORAGE_MODE = 0700;
46 }
47
48 namespace Jobs {
49 namespace WidgetInstall {
50 TaskPrivateStorage::TaskPrivateStorage(InstallerContext& context) :
51     DPL::TaskDecl<TaskPrivateStorage>(this),
52     m_context(context)
53 {
54     AddStep(&TaskPrivateStorage::StepCreateDirectory);
55 }
56
57 void TaskPrivateStorage::StepCreateDirectory()
58 {
59     using namespace WrtDB;
60
61     LogInfo("Step: Creating private storage directory.");
62
63     m_context.installStep =
64         InstallerContext::INSTALL_CREATE_PRIVATE_STORAGE;
65
66     std::ostringstream widgetPath;
67     DPL::OptionalString pkgname = m_context.widgetConfig.pkgname;
68     if(!pkgname.IsNull()) {
69         widgetPath << GlobalConfig::GetUserInstalledWidgetPath() << "/";
70         widgetPath << pkgname << "/";
71     } else {
72         ThrowMsg(Exceptions::InternalError, "No Package name exists.");
73     }
74
75     if (access(widgetPath.str().c_str(), W_OK | X_OK) != 0) {
76         ThrowMsg(Exceptions::InternalError, DPL::GetErrnoString());
77     }
78
79     std::ostringstream storagePath;
80     storagePath << widgetPath.str().c_str()
81                 << GlobalConfig::GetWidgetPrivateStoragePath();
82
83     if (access(storagePath.str().c_str(), F_OK) != 0) {
84         FileUtils::MakePath(storagePath.str(), PRIVATE_STORAGE_MODE);
85         // '5000' is default uid, gid for applications.
86         // So installed applications should be launched as process of uid '5000'.
87         // the process can access private directory 'data' of itself.
88         if(chown(storagePath.str().c_str(),
89                  WEBAPP_DEFAULT_UID,
90                  WEBAPP_DEFAULT_GID) != 0)
91         {
92             ThrowMsg(Exceptions::InternalError,
93                  "Chown to invaild user");
94         }
95     } else if (access(storagePath.str().c_str(), W_OK | R_OK | X_OK) == 0) {
96         LogInfo("Private storage already exists.");
97         // Even if private directory already is created, private dircetory
98         // should change owner.
99         if(chown(storagePath.str().c_str(),
100                  WEBAPP_DEFAULT_UID,
101                  WEBAPP_DEFAULT_GID) != 0)
102         {
103             ThrowMsg(Exceptions::InternalError,
104                  "Chown to invaild user");
105         }
106         if(chmod(storagePath.str().c_str(), PRIVATE_STORAGE_MODE) != 0) {
107             ThrowMsg(Exceptions::InternalError,
108                  "chmod to 0700");
109         }
110
111     } else {
112         ThrowMsg(Exceptions::InternalError,
113                  "No access to private storage.");
114     }
115
116     m_context.job->UpdateProgress(
117         InstallerContext::INSTALL_CREATE_PRIVATE_STORAGE,
118         "Private storage created."
119         );
120 }
121 } //namespace WidgetInstall
122 } //namespace Jobs