• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (c) 2020 Huawei Device Co., Ltd.
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at
6  *
7  *     http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15 
16 #include "gt_bundle_extractor.h"
17 #include "app_verify_pub.h"
18 
19 #ifdef __cplusplus
20 extern "C" {
21 #endif
22 #ifdef __cplusplus
23 }
24 #endif
25 #include "adapter.h"
26 #include "appexecfwk_errors.h"
27 #include "bundle_util.h"
28 #include "bundlems_log.h"
29 #include "fcntl.h"
30 #include "gt_bundle_manager_service.h"
31 #include "gt_bundle_parser.h"
32 #include "gt_extractor_util.h"
33 #include "sys/stat.h"
34 #include "unistd.h"
35 #include "utils.h"
36 
37 namespace OHOS {
ExtractFileDataPos(int32_t fp,uint64_t & filePos)38 uint8_t GtBundleExtractor::ExtractFileDataPos(int32_t fp, uint64_t &filePos)
39 {
40     char *bundleName = nullptr;
41 
42     int32_t ret = lseek(fp, 0, SEEK_SET);
43     if (ret < 0) {
44         return ERR_APPEXECFWK_INSTALL_FAILED_INTERNAL_ERROR;
45     }
46 
47     uint8_t errorCode = GtExtractorUtil::ExtractFileHeaderInfo(fp, &bundleName);
48     if (errorCode != ERR_OK) {
49         return errorCode;
50     }
51 
52     filePos = MAGIC_NUMBER_LEN + INT_LENGTH + strlen(bundleName);
53     UI_Free(bundleName);
54     return ERR_OK;
55 }
56 
ExtractHap(const char * codePath,const char * bundleName,int32_t fp,uint32_t totalFileSize,uint8_t bundleStyle)57 uint8_t GtBundleExtractor::ExtractHap(const char *codePath, const char *bundleName, int32_t fp, uint32_t totalFileSize,
58     uint8_t bundleStyle)
59 {
60     char *relativeFilePath = nullptr;
61     char *fileName = nullptr;
62     uint64_t fileSize = 0;
63     uint64_t index = 0;
64 
65     if (codePath == nullptr || bundleName == nullptr) {
66         return ERR_APPEXECFWK_INSTALL_FAILED_INTERNAL_ERROR;
67     }
68 
69     uint8_t errorCode = ExtractFileDataPos(fp, index);
70     if (errorCode != ERR_OK) {
71         return errorCode;
72     }
73 
74     while (index < totalFileSize) {
75         errorCode = GtExtractorUtil::ExtractFileToPath(codePath, fp, fileSize, &fileName, &relativeFilePath);
76         if (errorCode != ERR_OK) {
77             UI_Free(relativeFilePath);
78             UI_Free(fileName);
79             return errorCode;
80         }
81         index = index + INT_LENGTH + strlen(fileName) + INT_LENGTH + strlen(relativeFilePath) + LONG_LENGTH + fileSize;
82         UI_Free(relativeFilePath);
83         UI_Free(fileName);
84         relativeFilePath = nullptr;
85         fileName = nullptr;
86     }
87     return errorCode;
88 }
89 
ExtractHapProfile(int32_t fp,uint32_t totalFileSize)90 char *GtBundleExtractor::ExtractHapProfile(int32_t fp, uint32_t totalFileSize)
91 {
92     char *fileName = nullptr;
93     char *fileData = nullptr;
94     uint64_t fileSize = 0;
95     uint64_t index = 0;
96     uint32_t pathLen = 0;
97 
98     uint8_t errorCode = ExtractFileDataPos(fp, index);
99     if (errorCode != ERR_OK) {
100         HILOG_ERROR(HILOG_MODULE_AAFWK, "[BMS] get file data pos failed!");
101         return nullptr;
102     }
103 
104     while (index < totalFileSize) {
105         if (GtExtractorUtil::ExtractFileAttr(fp, &fileName, pathLen, fileSize) != ERR_OK) {
106             HILOG_ERROR(HILOG_MODULE_AAFWK, "[BMS] get file attr failed!");
107             UI_Free(fileName);
108             return nullptr;
109         }
110 
111         int32_t fileNameLen = strlen(fileName);
112         if (pathLen == 0 && (fileName != nullptr && strcmp(fileName, PROFILE_NAME) == 0)) {
113             UI_Free(fileName);
114             fileName = nullptr;
115             fileData = reinterpret_cast<char *>(AdapterMalloc(fileSize * sizeof(char)));
116             if (fileData == nullptr || read(fp, fileData, fileSize) != fileSize) {
117                 HILOG_ERROR(HILOG_MODULE_AAFWK, "[BMS] get profile data failed!");
118                 AdapterFree(fileData);
119                 return nullptr;
120             }
121             return fileData;
122         } else {
123             UI_Free(fileName);
124             fileName = nullptr;
125             int32_t ret = lseek(fp, fileSize, SEEK_CUR);
126             if (ret < 0) {
127                 return nullptr;
128             }
129         }
130 
131         index = index + INT_LENGTH + fileNameLen + INT_LENGTH + pathLen + LONG_LENGTH + fileSize;
132     }
133     return nullptr;
134 }
135 
ExtractResourceFile(const char * path,int32_t fp,uint32_t totalFileSize)136 bool GtBundleExtractor::ExtractResourceFile(const char *path, int32_t fp, uint32_t totalFileSize)
137 {
138     char *fileName = nullptr;
139     char *relativeFilePath = nullptr;
140     uint64_t fileSize = 0;
141     uint64_t index = 0;
142 
143     uint8_t errorCode = ExtractFileDataPos(fp, index);
144     if (errorCode != ERR_OK) {
145         return false;
146     }
147 
148     while (index < totalFileSize) {
149         if (GtExtractorUtil::ExtractFileAttr(fp, &fileName, &relativeFilePath, fileSize) != ERR_OK) {
150             HILOG_ERROR(HILOG_MODULE_AAFWK, "[BMS] get file attr failed!");
151             UI_Free(fileName);
152             UI_Free(relativeFilePath);
153             return false;
154         }
155 
156         int32_t fileNameLen = strlen(fileName);
157         if ((strlen(relativeFilePath) == 0 && (fileName != nullptr && strcmp(fileName, PROFILE_NAME) == 0)) ||
158             !BundleUtil::StartWith(relativeFilePath, ASSET_JS_PATH)) {
159             if (!GtExtractorUtil::HasWrittenFile(path, relativeFilePath, fileName, fp, fileSize)) {
160                 UI_Free(fileName);
161                 UI_Free(relativeFilePath);
162                 return false;
163             }
164         } else {
165             int32_t ret = lseek(fp, fileSize, SEEK_CUR);
166             if (ret < 0) {
167                 UI_Free(fileName);
168                 UI_Free(relativeFilePath);
169                 return false;
170             }
171         }
172 
173         index = index + INT_LENGTH + fileNameLen + INT_LENGTH + strlen(relativeFilePath) + LONG_LENGTH + fileSize;
174         UI_Free(fileName);
175         UI_Free(relativeFilePath);
176         fileName = nullptr;
177         relativeFilePath = nullptr;
178     }
179     return true;
180 }
181 
ExtractInstallMsg(const char * path,char ** bundleName,char ** label,char ** smallIconPath,char ** bigIconPath)182 uint8_t GtBundleExtractor::ExtractInstallMsg(const char *path, char **bundleName, char **label, char **smallIconPath,
183     char **bigIconPath)
184 {
185     if (!BundleUtil::CheckRealPath(path)) {
186         return ERR_APPEXECFWK_INSTALL_FAILED_PARAM_ERROR;
187     }
188 #ifndef __LITEOS_M__
189     int32_t totalFileSize = APPVERI_GetUnsignedFileLength(path);
190     if (totalFileSize == V_ERR) {
191         return ERR_APPEXECFWK_INSTALL_FAILED_INTERNAL_ERROR;
192     }
193 #else
194     int32_t totalFileSize = 0;
195 #endif
196     char *emptyJsPathComp[] = {const_cast<char *>(TMP_RESOURCE_DIR), const_cast<char *>(ASSET_JS_PATH)};
197     char *emptyJsPath = BundleUtil::Strscat(emptyJsPathComp, sizeof(emptyJsPathComp) / sizeof(char *));
198     if (emptyJsPath == nullptr) {
199         return ERR_APPEXECFWK_INSTALL_FAILED_INTERNAL_ERROR;
200     }
201 
202     if (!BundleUtil::MkDirs(emptyJsPath)) {
203         AdapterFree(emptyJsPath);
204         return ERR_APPEXECFWK_INSTALL_FAILED_CREATE_DATA_DIR_ERROR;
205     }
206     AdapterFree(emptyJsPath);
207 
208     int32_t fp = open(path, O_RDONLY, S_IREAD | S_IWRITE);
209     if (fp < 0) {
210         return ERR_APPEXECFWK_INSTALL_FAILED_FILE_NOT_EXISTS;
211     }
212     // extractor config.json、 resources dir and resources.index in TMP_RESOURCE_DIR
213     if (!ExtractResourceFile(TMP_RESOURCE_DIR, fp, static_cast<uint32_t>(totalFileSize))) {
214         close(fp);
215         return ERR_APPEXECFWK_INSTALL_FAILED_PARSE_PROFILE_ERROR;
216     }
217     close(fp);
218     // get bundleName、 label、 smallIconPath and bigIconPath from bundleInfo
219     BundleRes bundleRes = { 0 };
220     BundleInfo *bundleInfo = GtBundleParser::ParseHapProfile(TMP_RESOURCE_DIR, &bundleRes);
221     if (bundleInfo == nullptr) {
222         return ERR_APPEXECFWK_INSTALL_FAILED_PARSE_PROFILE_ERROR;
223     }
224     if (bundleRes.abilityRes != nullptr) {
225         AdapterFree(bundleRes.abilityRes);
226     }
227     *bundleName = Utils::Strdup(bundleInfo->bundleName);
228     *label = Utils::Strdup(bundleInfo->label);
229     *smallIconPath = Utils::Strdup(bundleInfo->smallIconPath);
230     *bigIconPath = Utils::Strdup(bundleInfo->bigIconPath);
231     if (*bundleName == nullptr || *label == nullptr || *smallIconPath == nullptr || *bigIconPath == nullptr) {
232         BundleInfoUtils::FreeBundleInfo(bundleInfo);
233         return ERR_APPEXECFWK_INSTALL_FAILED_PARSE_ABILITIES_ERROR;
234     }
235     BundleInfoUtils::FreeBundleInfo(bundleInfo);
236     return ERR_OK;
237 }
238 
ExtractBundleParam(const char * path,int32_t & fpStart,char ** bundleName)239 uint8_t GtBundleExtractor::ExtractBundleParam(const char *path, int32_t &fpStart, char **bundleName)
240 {
241     if (!BundleUtil::CheckRealPath(path)) {
242         return ERR_APPEXECFWK_INSTALL_FAILED_PARAM_ERROR;
243     }
244 
245     int32_t fp = open(path, O_RDONLY, S_IREAD);
246     if (fp < 0) {
247         return ERR_APPEXECFWK_INSTALL_FAILED_FILE_NOT_EXISTS;
248     }
249     fpStart = fp;
250 
251     uint8_t errorCode = GtExtractorUtil::ExtractFileHeaderInfo(fp, bundleName);
252     if (errorCode != ERR_OK) {
253         return errorCode;
254     }
255 #ifdef __LITEOS_M__
256     close(fp);
257 #endif
258     if (strlen(*bundleName) > MAX_BUNDLE_NAME_LEN || strlen(*bundleName) < MIN_BUNDLE_NAME_LEN) {
259         return ERR_APPEXECFWK_INSTALL_FAILED_PARSE_INVALID_BUNDLENAME_LENGTH;
260     }
261 
262     if (strstr(*bundleName, "../") != nullptr) {
263         return ERR_APPEXECFWK_INSTALL_FAILED_PARSE_INVALID_BUNDLENAME;
264     }
265     return ERR_OK;
266 }
267 } // namespace OHOS