tizen beta release
[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 <unistd.h>
29 #include <string>
30
31 #include <dpl/log/log.h>
32 #include <dpl/errno_string.h>
33
34 #include <dpl/wrt-dao-ro/widget_config.h>
35 #include <dpl/utils/file_utils.h>
36 #include <widget_install/job_widget_install.h>
37 #include <widget_install/widget_install_context.h>
38 #include <widget_install/widget_install_errors.h>
39
40 #define WEBAPP_DEFAULT_UID  5000
41 #define WEBAPP_DEFAULT_GID  5000
42
43 namespace {
44 const mode_t PRIVATE_STORAGE_MODE = 0700;
45 }
46
47 namespace Jobs {
48 namespace WidgetInstall {
49 TaskPrivateStorage::TaskPrivateStorage(InstallerContext& context) :
50     DPL::TaskDecl<TaskPrivateStorage>(this),
51     m_context(context)
52 {
53     AddStep(&TaskPrivateStorage::StepCreateDirectory);
54 }
55
56 void TaskPrivateStorage::StepCreateDirectory()
57 {
58     using namespace WrtDB;
59
60     LogInfo("Step: Creating private storage directory.");
61
62     m_context.installStep =
63         InstallerContext::INSTALL_CREATE_PRIVATE_STORAGE;
64
65     std::ostringstream widgetPath;
66     DPL::OptionalString pkgname = m_context.widgetConfig.pkgname;
67     if(!pkgname.IsNull()) {
68         widgetPath << GlobalConfig::GetUserInstalledWidgetPath() << "/";
69         widgetPath << pkgname << "/";
70     } else {
71         ThrowMsg(Exceptions::InternalError, "No Package name exists.");
72     }
73
74     if (access(widgetPath.str().c_str(), W_OK | X_OK) != 0) {
75         ThrowMsg(Exceptions::InternalError, DPL::GetErrnoString());
76     }
77
78     std::ostringstream storagePath;
79     storagePath << widgetPath.str().c_str()
80                 << GlobalConfig::GetWidgetPrivateStoragePath();
81
82     if (access(storagePath.str().c_str(), F_OK) != 0) {
83         FileUtils::MakePath(storagePath.str(), PRIVATE_STORAGE_MODE);
84         // '5000' is default uid, gid for applications.
85         // So installed applications should be launched as process of uid '5000'.
86         // the process can access private directory 'data' of itself.
87         if(chown(storagePath.str().c_str(),
88                  WEBAPP_DEFAULT_UID,
89                  WEBAPP_DEFAULT_GID) != 0)
90         {
91             ThrowMsg(Exceptions::InternalError,
92                  "Chown to invaild user");
93         }
94     } else if (access(storagePath.str().c_str(), W_OK | R_OK | X_OK) == 0) {
95         LogInfo("Private storage already exists.");
96     } else {
97         ThrowMsg(Exceptions::InternalError,
98                  "No access to private storage.");
99     }
100
101     m_context.job->UpdateProgress(
102         InstallerContext::INSTALL_CREATE_PRIVATE_STORAGE,
103         "Private storage created."
104         );
105 }
106 } //namespace WidgetInstall
107 } //namespace Jobs