2 * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
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
8 * http://www.apache.org/licenses/LICENSE-2.0
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.
17 * @file widget_unzip.cpp
18 * @author Przemyslaw Dobrowolski (p.dobrowolsk@samsung.com)
20 * @brief Implementation file for installer widget unzip
22 #include <widget_install/widget_unzip.h>
23 #include <widget_install/widget_install_errors.h>
24 #include <widget_install/widget_install_context.h>
25 #include <widget_install/job_widget_install.h>
27 #include <dpl/file_output.h>
28 #include "dpl/utils/path.h"
29 #include <dpl/abstract_waitable_input_adapter.h>
30 #include <dpl/wrt-dao-ro/global_config.h>
33 #include <installer_log.h>
35 using namespace WrtDB;
38 const char *const DRM_LIB_PATH = "/usr/lib/libdrm-service-core-tizen.so";
40 struct PathAndFilePair
45 PathAndFilePair(const std::string &p,
46 const std::string &f) :
52 PathAndFilePair SplitFileAndPath(const std::string &filePath)
54 std::string::size_type position = filePath.rfind('/');
56 // Is this only a file without a path ?
57 if (position == std::string::npos) {
58 return PathAndFilePair(std::string(), filePath);
61 // This is full file-path pair
62 return PathAndFilePair(filePath.substr(0,
64 filePath.substr(position + 1));
69 namespace WidgetInstall {
70 void WidgetUnzip::ExtractFile(DPL::ZipInput::File *input,
71 const std::string &destFileName)
75 DPL::AbstractWaitableInputAdapter inputAdapter(input);
76 DPL::FileOutput output(destFileName);
78 DPL::Copy(&inputAdapter, &output);
80 Catch(DPL::FileOutput::Exception::OpenFailed)
82 ReThrowMsg(Exceptions::ExtractFileFailed, destFileName);
84 Catch(DPL::CopyFailed)
86 ReThrowMsg(Exceptions::ExtractFileFailed, destFileName);
90 void WidgetUnzip::unzipProgress(const std::string &destination)
93 _D("Unzipping: '%s', Comment: '%s', Compressed size: %lld, Uncompressed size: %lld",
94 m_zipIterator->name.c_str(), m_zipIterator->comment.c_str(), m_zipIterator->compressedSize, m_zipIterator->uncompressedSize);
96 // Normalize file paths
97 // FIXME: Implement checking for invalid characters
99 // Extract file or path
100 std::string fileName = m_zipIterator->name;
102 if (fileName[fileName.size() - 1] == '/') {
104 std::string newPath = destination + "/" +
105 fileName.substr(0, fileName.size() - 1);
106 _D("Path to extract: %s", newPath.c_str());
108 // Create path in case of it is empty
111 DPL::Utils::MakeDir(DPL::Utils::Path(newPath));
113 Catch(DPL::Utils::Path::BaseException)
115 ThrowMsg(Exceptions::FileOperationFailed, "Failed to create temporary directory");
118 // This is regular file
119 std::string fileExtractPath = destination + "/" + fileName;
121 _D("File to extract: %s", fileExtractPath.c_str());
123 // Split into pat & file pair
124 PathAndFilePair pathAndFile = SplitFileAndPath(fileExtractPath);
126 _D("Path and file: %s : %s", pathAndFile.path.c_str(), pathAndFile.file.c_str());
128 // First, ensure that path exists
131 DPL::Utils::MakeDir(DPL::Utils::Path(pathAndFile.path));
133 Catch(DPL::Utils::Path::BaseException)
135 ThrowMsg(Exceptions::FileOperationFailed, "Failed to create temporary directory");
141 std::unique_ptr<DPL::ZipInput::File> file(
142 m_zip->OpenFile(fileName));
144 // Extract single file
145 ExtractFile(file.get(), fileExtractPath);
147 Catch(DPL::ZipInput::Exception::OpenFileFailed)
149 ThrowMsg(Exceptions::ExtractFileFailed, fileName);
153 // Check whether there are more files to extract
154 if (++m_zipIterator == m_zip->end()) {
155 _D("Unzip progress finished successfuly");
157 unzipProgress(destination);
161 bool WidgetUnzip::isDRMPackage(const std::string &source)
163 _D("Enter : isDRMPackage()");
165 void* pHandle = NULL;
166 char* pErrorMsg = NULL;
167 int (*drm_oem_sapps_is_drm_file)(const char* pDcfPath, int dcfPathLen);
169 pHandle = dlopen(DRM_LIB_PATH, RTLD_LAZY | RTLD_GLOBAL);
171 _E("dlopen failed : %s [%s]", source.c_str(), dlerror());
175 // clear existing error
178 drm_oem_sapps_is_drm_file = reinterpret_cast <int (*)(const char*, int)>
179 (dlsym(pHandle, "drm_oem_sapps_is_drm_file"));
181 if ((pErrorMsg = dlerror()) != NULL) {
182 _E("dlsym failed : %s [%s]", source.c_str(), pErrorMsg);
187 if (drm_oem_sapps_is_drm_file == NULL) {
188 _E("drm_oem_sapps_is_drm_file is NULL : %s", source.c_str());
193 ret = drm_oem_sapps_is_drm_file(source.c_str(), source.length());
196 _D("%s is DRM file", source.c_str());
199 _D("%s isn't DRM file", source.c_str());
203 bool WidgetUnzip::decryptDRMPackage(const std::string &source, const std::string
206 _D("Enter : decryptDRMPackage()");
208 void* pHandle = NULL;
209 char* pErrorMsg = NULL;
210 int (*drm_oem_sapps_decrypt_package)(const char* pDcfPath, int dcfPathLen,
211 const char* pDecryptedFile, int decryptedFileLen);
213 pHandle = dlopen(DRM_LIB_PATH, RTLD_LAZY | RTLD_GLOBAL);
215 _E("dlopen failed : %s [%s]", source.c_str(), dlerror());
219 // clear existing error
222 drm_oem_sapps_decrypt_package = reinterpret_cast <int (*)(const char*, int,
224 (dlsym(pHandle, "drm_oem_sapps_decrypt_package"));
226 if ((pErrorMsg = dlerror()) != NULL) {
227 _E("dlsym failed : %s [%s]", source.c_str(), pErrorMsg);
232 if (drm_oem_sapps_decrypt_package == NULL) {
233 _E("drm_oem_sapps_decrypt_package is NULL : %s", source.c_str());
238 ret = drm_oem_sapps_decrypt_package(source.c_str(), source.length(),
239 decryptedSource.c_str(), decryptedSource.length());
242 _D("%s is decrypted : %s", source.c_str(), decryptedSource.c_str());
248 std::string WidgetUnzip::getDecryptedPackage(const std::string &source)
251 if (isDRMPackage(source)) {
252 std::string decryptedFile;
253 size_t found = source.find_last_of(".wgt");
254 if (found == std::string::npos) {
255 decryptedFile += source + "_tmp.wgt";
257 decryptedFile += source.substr(0, source.find_last_not_of(".wgt") +
261 _D("decrypted file name : %s", decryptedFile.c_str());
262 if (!decryptDRMPackage(source, decryptedFile)) {
263 _E("Failed decrypt drm file");
264 ThrowMsg(Exceptions::DrmDecryptFailed, source);
266 return decryptedFile;
271 void WidgetUnzip::unzipWgtFile(const std::string &source, const std::string &destination)
273 _D("Prepare to unzip...");
277 wgtFile = getDecryptedPackage(source);
278 _D("wgtFile : %s", wgtFile.c_str());
280 m_zip.reset(new DPL::ZipInput(wgtFile));
281 _D("Widget package comment: %s", m_zip->GetGlobalComment().c_str());
284 // Widget package must not be empty
285 if (m_zip->empty()) {
286 ThrowMsg(Exceptions::ZipEmpty, wgtFile);
289 // Set iterator to first file
290 m_zipIterator = m_zip->begin();
292 unzipProgress(destination);
294 // Unzip finished, close internal structures
298 _D("Unzip finished");
300 Catch(DPL::ZipInput::Exception::OpenFailed)
302 ReThrowMsg(Exceptions::OpenZipFailed, wgtFile);
304 Catch(DPL::ZipInput::Exception::SeekFileFailed)
306 ThrowMsg(Exceptions::ExtractFileFailed, wgtFile);
308 Catch(Exceptions::DrmDecryptFailed)
310 ReThrowMsg(Exceptions::ExtractFileFailed, wgtFile);
314 } //namespace WidgetInstall