Rename invalid WRT_SMACK_LABEL macro to WRT_SMACK_ENABLED
[platform/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     // clear existing error
162     dlerror();
163
164     drm_oem_sapps_is_drm_file = reinterpret_cast <int (*)(const char*, int)>
165         (dlsym(pHandle, "drm_oem_sapps_is_drm_file"));
166
167     if ((pErrorMsg = dlerror()) != NULL) {
168         _E("dlsym failed : %s [%s]", source.c_str(), pErrorMsg);
169         dlclose(pHandle);
170         return false;
171     }
172
173     if (drm_oem_sapps_is_drm_file == NULL) {
174         _E("drm_oem_sapps_is_drm_file is NULL : %s", source.c_str());
175         dlclose(pHandle);
176         return false;
177     }
178
179     ret = drm_oem_sapps_is_drm_file(source.c_str(), source.length());
180     dlclose(pHandle);
181     if (1 == ret) {
182         _D("%s is DRM file", source.c_str());
183         return true;
184     }
185     _D("%s isn't DRM file", source.c_str());
186     return false;
187 }
188
189 bool WidgetUnzip::decryptDRMPackage(const std::string &source, const std::string
190         &decryptedSource)
191 {
192     _D("Enter : decryptDRMPackage()");
193     int ret = 0;
194     void* pHandle = NULL;
195     char* pErrorMsg = NULL;
196     int (*drm_oem_sapps_decrypt_package)(const char* pDcfPath, int dcfPathLen,
197             const char* pDecryptedFile, int decryptedFileLen);
198
199     pHandle = dlopen(DRM_LIB_PATH, RTLD_LAZY | RTLD_GLOBAL);
200     if (!pHandle) {
201         _E("dlopen failed : %s [%s]", source.c_str(), dlerror());
202         return false;
203     }
204
205     // clear existing error
206     dlerror();
207
208     drm_oem_sapps_decrypt_package = reinterpret_cast <int (*)(const char*, int,
209             const char*, int)>
210         (dlsym(pHandle, "drm_oem_sapps_decrypt_package"));
211
212     if ((pErrorMsg = dlerror()) != NULL) {
213         _E("dlsym failed : %s [%s]", source.c_str(), pErrorMsg);
214         dlclose(pHandle);
215         return false;
216     }
217
218     if (drm_oem_sapps_decrypt_package == NULL) {
219         _E("drm_oem_sapps_decrypt_package is NULL : %s", source.c_str());
220         dlclose(pHandle);
221         return false;
222     }
223
224     ret = drm_oem_sapps_decrypt_package(source.c_str(), source.length(),
225             decryptedSource.c_str(), decryptedSource.length());
226     dlclose(pHandle);
227     if (1 == ret) {
228         _D("%s is decrypted : %s", source.c_str(), decryptedSource.c_str());
229         return true;
230     }
231     return false;
232 }
233
234 std::string WidgetUnzip::getDecryptedPackage(const std::string &source)
235 {
236     _D("Check DRM...");
237     if (isDRMPackage(source)) {
238         std::string decryptedFile;
239         size_t found = source.find_last_of(".wgt");
240         if (found == std::string::npos) {
241             decryptedFile += source + "_tmp.wgt";
242         } else {
243             decryptedFile += source.substr(0, source.find_last_not_of(".wgt") +
244                     1) + "_tmp.wgt";
245         }
246
247         _D("decrypted file name : %s", decryptedFile.c_str());
248         if (!decryptDRMPackage(source, decryptedFile)) {
249             _E("Failed decrypt drm file");
250             ThrowMsg(Exceptions::DrmDecryptFailed, source);
251         }
252         return decryptedFile;
253     }
254     return source;
255 }
256
257 void WidgetUnzip::unzipWgtFile(const std::string &source, const std::string &destination)
258 {
259     _D("Prepare to unzip...");
260     std::string wgtFile;
261     Try
262     {
263         wgtFile = getDecryptedPackage(source);
264         _D("wgtFile : %s", wgtFile.c_str());
265
266         m_zip.reset(new DPL::ZipInput(wgtFile));
267         _D("Widget package comment: %s", m_zip->GetGlobalComment().c_str());
268
269
270         // Widget package must not be empty
271         if (m_zip->empty()) {
272             ThrowMsg(Exceptions::ZipEmpty, wgtFile);
273         }
274
275         // Set iterator to first file
276         m_zipIterator = m_zip->begin();
277
278         unzipProgress(destination);
279
280         // Unzip finished, close internal structures
281         m_zip.reset();
282
283         // Done
284         _D("Unzip finished");
285     }
286     Catch(DPL::ZipInput::Exception::OpenFailed)
287     {
288         ReThrowMsg(Exceptions::OpenZipFailed, wgtFile);
289     }
290     Catch(DPL::ZipInput::Exception::SeekFileFailed)
291     {
292         ThrowMsg(Exceptions::ExtractFileFailed, wgtFile);
293     }
294     Catch(Exceptions::DrmDecryptFailed)
295     {
296         ReThrowMsg(Exceptions::ExtractFileFailed, wgtFile);
297     }
298 }
299
300 } //namespace WidgetInstall
301 } //namespace Jobs