Reformatting wrt-installer debug logs
[framework/web/wrt-installer.git] / src / jobs / widget_install / widget_unzip.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    widget_unzip.cpp
18  * @author  Przemyslaw Dobrowolski (p.dobrowolsk@samsung.com)
19  * @version 1.0
20  * @brief   Implementation file for installer widget unzip
21  */
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>
26 #include <dpl/copy.h>
27 #include <dpl/file_output.h>
28 #include <dpl/abstract_waitable_input_adapter.h>
29 #include <dpl/wrt-dao-ro/global_config.h>
30 #include <task_commons.h>
31 #include <sys/stat.h>
32 #include <dlfcn.h>
33 #include <installer_log.h>
34
35 using namespace WrtDB;
36
37 namespace {
38 const char *const DRM_LIB_PATH = "/usr/lib/libdrm-service-core-tizen.so";
39
40 struct PathAndFilePair
41 {
42     std::string path;
43     std::string file;
44
45     PathAndFilePair(const std::string &p,
46                     const std::string &f) :
47         path(p),
48         file(f)
49     {}
50 };
51
52 PathAndFilePair SplitFileAndPath(const std::string &filePath)
53 {
54     std::string::size_type position = filePath.rfind('/');
55
56     // Is this only a file without a path ?
57     if (position == std::string::npos) {
58         return PathAndFilePair(std::string(), filePath);
59     }
60
61     // This is full file-path pair
62     return PathAndFilePair(filePath.substr(0,
63                                            position),
64                            filePath.substr(position + 1));
65 }
66 }
67
68 namespace Jobs {
69 namespace WidgetInstall {
70 void WidgetUnzip::ExtractFile(DPL::ZipInput::File *input,
71                             const std::string &destFileName)
72 {
73     Try
74     {
75         DPL::AbstractWaitableInputAdapter inputAdapter(input);
76         DPL::FileOutput output(destFileName);
77
78         DPL::Copy(&inputAdapter, &output);
79     }
80     Catch(DPL::FileOutput::Exception::OpenFailed)
81     {
82         ReThrowMsg(Exceptions::ExtractFileFailed, destFileName);
83     }
84     Catch(DPL::CopyFailed)
85     {
86         ReThrowMsg(Exceptions::ExtractFileFailed, destFileName);
87     }
88 }
89
90 void WidgetUnzip::unzipProgress(const std::string &destination)
91 {
92     // Show file info
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);
95
96     // Normalize file paths
97     // FIXME: Implement checking for invalid characters
98
99     // Extract file or path
100     std::string fileName = m_zipIterator->name;
101
102     if (fileName[fileName.size() - 1] == '/') {
103         // This is path
104         std::string newPath = destination + "/" +
105             fileName.substr(0, fileName.size() - 1);
106         _D("Path to extract: %s", newPath.c_str());
107
108         // Create path in case of it is empty
109         createTempPath(newPath);
110     } else {
111         // This is regular file
112         std::string fileExtractPath = destination + "/" + fileName;
113
114         _D("File to extract: %s", fileExtractPath.c_str());
115
116         // Split into pat & file pair
117         PathAndFilePair pathAndFile = SplitFileAndPath(fileExtractPath);
118
119         _D("Path and file: %s : %s", pathAndFile.path.c_str(), pathAndFile.file.c_str());
120
121         // First, ensure that path exists
122         createTempPath(pathAndFile.path);
123
124         Try
125         {
126             // Open file
127             std::unique_ptr<DPL::ZipInput::File> file(
128                 m_zip->OpenFile(fileName));
129
130             // Extract single file
131             ExtractFile(file.get(), fileExtractPath);
132         }
133         Catch(DPL::ZipInput::Exception::OpenFileFailed)
134         {
135             ThrowMsg(Exceptions::ExtractFileFailed, fileName);
136         }
137     }
138
139     // Check whether there are more files to extract
140     if (++m_zipIterator == m_zip->end()) {
141         _D("Unzip progress finished successfuly");
142     } else {
143         unzipProgress(destination);
144     }
145 }
146
147 bool WidgetUnzip::isDRMPackage(const std::string &source)
148 {
149     _D("Enter : isDRMPackage()");
150     int ret = 0;
151     void* pHandle = NULL;
152     char* pErrorMsg = NULL;
153     int (*drm_oem_sapps_is_drm_file)(const char* pDcfPath, int dcfPathLen);
154
155     pHandle = dlopen(DRM_LIB_PATH, RTLD_LAZY | RTLD_GLOBAL);
156     if (!pHandle) {
157         _E("dlopen failed : %s [%s]", source.c_str(), dlerror());
158         return false;
159     }
160
161     drm_oem_sapps_is_drm_file = reinterpret_cast <int (*)(const char*, int)>
162         (dlsym(pHandle, "drm_oem_sapps_is_drm_file"));
163     pErrorMsg = dlerror();
164     if ((pErrorMsg != NULL) || (drm_oem_sapps_is_drm_file == NULL)) {
165         _E("dlopen failed : %s [%s]", source.c_str(), dlerror());
166         dlclose(pHandle);
167         return false;
168     }
169
170     ret = drm_oem_sapps_is_drm_file(source.c_str(), source.length());
171     dlclose(pHandle);
172     if (1 == ret) {
173         _D("%s is DRM file", source.c_str());
174         return true;
175     }
176     _D("%s isn't DRM file", source.c_str());
177     return false;
178 }
179
180 bool WidgetUnzip::decryptDRMPackage(const std::string &source, const std::string
181         &decryptedSource)
182 {
183     _D("Enter : decryptDRMPackage()");
184     int ret = 0;
185     void* pHandle = NULL;
186     char* pErrorMsg = NULL;
187     int (*drm_oem_sapps_decrypt_package)(const char* pDcfPath, int dcfPathLen,
188             const char* pDecryptedFile, int decryptedFileLen);
189
190     pHandle = dlopen(DRM_LIB_PATH, RTLD_LAZY | RTLD_GLOBAL);
191     if (!pHandle) {
192         _E("dlopen failed : %s [%s]", source.c_str(), dlerror());
193         return false;
194     }
195
196     drm_oem_sapps_decrypt_package = reinterpret_cast <int (*)(const char*, int,
197             const char*, int)>
198         (dlsym(pHandle, "drm_oem_sapps_decrypt_package"));
199     pErrorMsg = dlerror();
200     if ((pErrorMsg != NULL) || (drm_oem_sapps_decrypt_package == NULL)) {
201         _E("dlopen failed : %s [%s]", source.c_str(), dlerror());
202         dlclose(pHandle);
203         return false;
204     }
205
206     ret = drm_oem_sapps_decrypt_package(source.c_str(), source.length(),
207             decryptedSource.c_str(), decryptedSource.length());
208     dlclose(pHandle);
209     if (1 == ret) {
210         _D("%s is decrypted : %s", source.c_str(), decryptedSource.c_str());
211         return true;
212     }
213     return false;
214 }
215
216 std::string WidgetUnzip::getDecryptedPackage(const std::string &source)
217 {
218     _D("Check DRM...");
219     if (isDRMPackage(source)) {
220         std::string decryptedFile;
221         size_t found = source.find_last_of(".wgt");
222         if (found == std::string::npos) {
223             decryptedFile += source + "_tmp.wgt";
224         } else {
225             decryptedFile += source.substr(0, source.find_last_not_of(".wgt") +
226                     1) + "_tmp.wgt";
227         }
228
229         _D("decrypted file name : %s", decryptedFile.c_str());
230         if (!decryptDRMPackage(source, decryptedFile)) {
231             _E("Failed decrypt drm file");
232             ThrowMsg(Exceptions::DrmDecryptFailed, source);
233         }
234         return decryptedFile;
235     }
236     return source;
237 }
238
239 void WidgetUnzip::unzipWgtFile(const std::string &source, const std::string &destination)
240 {
241     _D("Prepare to unzip...");
242     std::string wgtFile;
243     Try
244     {
245         wgtFile = getDecryptedPackage(source);
246         _D("wgtFile : %s", wgtFile.c_str());
247
248         m_zip.reset(new DPL::ZipInput(wgtFile));
249         _D("Widget package comment: %s", m_zip->GetGlobalComment().c_str());
250
251
252         // Widget package must not be empty
253         if (m_zip->empty()) {
254             ThrowMsg(Exceptions::ZipEmpty, wgtFile);
255         }
256
257         // Set iterator to first file
258         m_zipIterator = m_zip->begin();
259
260         unzipProgress(destination);
261
262         // Unzip finished, close internal structures
263         m_zip.reset();
264
265         // Done
266         _D("Unzip finished");
267     }
268     Catch(DPL::ZipInput::Exception::OpenFailed)
269     {
270         ReThrowMsg(Exceptions::OpenZipFailed, wgtFile);
271     }
272     Catch(DPL::ZipInput::Exception::SeekFileFailed)
273     {
274         ThrowMsg(Exceptions::ExtractFileFailed, wgtFile);
275     }
276     Catch(Exceptions::DrmDecryptFailed)
277     {
278         ReThrowMsg(Exceptions::ExtractFileFailed, wgtFile);
279     }
280 }
281
282 } //namespace WidgetInstall
283 } //namespace Jobs