blob: 9d2ab280b339e1926e81db1db16af0eb6a587eb8 [file] [log] [blame]
Kenny Root66269ea2011-07-12 14:14:01 -07001/*
2 * Copyright (C) 2011 The Android Open Source Project
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#define LOG_TAG "NativeLibraryHelper"
18//#define LOG_NDEBUG 0
19
20#include <android_runtime/AndroidRuntime.h>
21
22#include <utils/Log.h>
23#include <ScopedUtfChars.h>
24#include <utils/ZipFileRO.h>
25
26#include <zlib.h>
27
28#include <fcntl.h>
29#include <stdlib.h>
30#include <string.h>
31#include <time.h>
32#include <unistd.h>
33#include <sys/stat.h>
34#include <sys/types.h>
35
36
37#define APK_LIB "lib/"
38#define APK_LIB_LEN (sizeof(APK_LIB) - 1)
39
40#define LIB_PREFIX "/lib"
41#define LIB_PREFIX_LEN (sizeof(LIB_PREFIX) - 1)
42
43#define LIB_SUFFIX ".so"
44#define LIB_SUFFIX_LEN (sizeof(LIB_SUFFIX) - 1)
45
46#define GDBSERVER "gdbserver"
47#define GDBSERVER_LEN (sizeof(GDBSERVER) - 1)
48
49#define TMP_FILE_PATTERN "/tmp.XXXXXX"
50#define TMP_FILE_PATTERN_LEN (sizeof(TMP_FILE_PATTERN) - 1)
51
52namespace android {
53
Kenny Root66269ea2011-07-12 14:14:01 -070054// These match PackageManager.java install codes
55typedef enum {
Kenny Root1ebd74a2011-08-03 15:09:44 -070056 INSTALL_SUCCEEDED = 1,
Kenny Root66269ea2011-07-12 14:14:01 -070057 INSTALL_FAILED_INVALID_APK = -2,
58 INSTALL_FAILED_INSUFFICIENT_STORAGE = -4,
Kenny Root1ebd74a2011-08-03 15:09:44 -070059 INSTALL_FAILED_CONTAINER_ERROR = -18,
60 INSTALL_FAILED_INTERNAL_ERROR = -110,
Kenny Root66269ea2011-07-12 14:14:01 -070061} install_status_t;
62
Kenny Root1ebd74a2011-08-03 15:09:44 -070063typedef install_status_t (*iterFunc)(JNIEnv*, void*, ZipFileRO*, ZipEntryRO, const char*);
64
Kenny Root66269ea2011-07-12 14:14:01 -070065// Equivalent to isFilenameSafe
66static bool
67isFilenameSafe(const char* filename)
68{
69 off_t offset = 0;
70 for (;;) {
71 switch (*(filename + offset)) {
72 case 0:
73 // Null.
74 // If we've reached the end, all the other characters are good.
75 return true;
76
77 case 'A' ... 'Z':
78 case 'a' ... 'z':
79 case '0' ... '9':
80 case '+':
81 case ',':
82 case '-':
83 case '.':
84 case '/':
85 case '=':
86 case '_':
87 offset++;
88 break;
89
90 default:
91 // We found something that is not good.
92 return false;
93 }
94 }
95 // Should not reach here.
96}
97
98static bool
99isFileDifferent(const char* filePath, size_t fileSize, time_t modifiedTime,
100 long zipCrc, struct stat64* st)
101{
102 if (lstat64(filePath, st) < 0) {
103 // File is not found or cannot be read.
Steve Block71f2cf12011-10-20 11:56:00 +0100104 ALOGV("Couldn't stat %s, copying: %s\n", filePath, strerror(errno));
Kenny Root66269ea2011-07-12 14:14:01 -0700105 return true;
106 }
107
108 if (!S_ISREG(st->st_mode)) {
109 return true;
110 }
111
112 if (st->st_size != fileSize) {
113 return true;
114 }
115
116 // For some reason, bionic doesn't define st_mtime as time_t
117 if (time_t(st->st_mtime) != modifiedTime) {
Steve Block71f2cf12011-10-20 11:56:00 +0100118 ALOGV("mod time doesn't match: %ld vs. %ld\n", st->st_mtime, modifiedTime);
Kenny Root66269ea2011-07-12 14:14:01 -0700119 return true;
120 }
121
122 int fd = TEMP_FAILURE_RETRY(open(filePath, O_RDONLY));
123 if (fd < 0) {
Steve Block71f2cf12011-10-20 11:56:00 +0100124 ALOGV("Couldn't open file %s: %s", filePath, strerror(errno));
Kenny Root66269ea2011-07-12 14:14:01 -0700125 return true;
126 }
127
128 long crc = crc32(0L, Z_NULL, 0);
129 unsigned char crcBuffer[16384];
130 ssize_t numBytes;
131 while ((numBytes = TEMP_FAILURE_RETRY(read(fd, crcBuffer, sizeof(crcBuffer)))) > 0) {
132 crc = crc32(crc, crcBuffer, numBytes);
133 }
134 close(fd);
135
Steve Block71f2cf12011-10-20 11:56:00 +0100136 ALOGV("%s: crc = %lx, zipCrc = %lx\n", filePath, crc, zipCrc);
Kenny Root66269ea2011-07-12 14:14:01 -0700137
138 if (crc != zipCrc) {
139 return true;
140 }
141
142 return false;
143}
144
Kenny Root1ebd74a2011-08-03 15:09:44 -0700145static install_status_t
Kenny Root66269ea2011-07-12 14:14:01 -0700146sumFiles(JNIEnv* env, void* arg, ZipFileRO* zipFile, ZipEntryRO zipEntry, const char* fileName)
147{
148 size_t* total = (size_t*) arg;
149 size_t uncompLen;
150
151 if (!zipFile->getEntryInfo(zipEntry, NULL, &uncompLen, NULL, NULL, NULL, NULL)) {
Kenny Root1ebd74a2011-08-03 15:09:44 -0700152 return INSTALL_FAILED_INVALID_APK;
Kenny Root66269ea2011-07-12 14:14:01 -0700153 }
154
155 *total += uncompLen;
Kenny Root1ebd74a2011-08-03 15:09:44 -0700156
157 return INSTALL_SUCCEEDED;
Kenny Root66269ea2011-07-12 14:14:01 -0700158}
159
160/*
161 * Copy the native library if needed.
162 *
163 * This function assumes the library and path names passed in are considered safe.
164 */
Kenny Root1ebd74a2011-08-03 15:09:44 -0700165static install_status_t
Kenny Root66269ea2011-07-12 14:14:01 -0700166copyFileIfChanged(JNIEnv *env, void* arg, ZipFileRO* zipFile, ZipEntryRO zipEntry, const char* fileName)
167{
168 jstring* javaNativeLibPath = (jstring*) arg;
169 ScopedUtfChars nativeLibPath(env, *javaNativeLibPath);
170
171 size_t uncompLen;
172 long when;
173 long crc;
174 time_t modTime;
175
176 if (!zipFile->getEntryInfo(zipEntry, NULL, &uncompLen, NULL, NULL, &when, &crc)) {
Kenny Root1ebd74a2011-08-03 15:09:44 -0700177 LOGD("Couldn't read zip entry info\n");
178 return INSTALL_FAILED_INVALID_APK;
Kenny Root66269ea2011-07-12 14:14:01 -0700179 } else {
180 struct tm t;
181 ZipFileRO::zipTimeToTimespec(when, &t);
182 modTime = mktime(&t);
183 }
184
185 // Build local file path
186 const size_t fileNameLen = strlen(fileName);
187 char localFileName[nativeLibPath.size() + fileNameLen + 2];
188
189 if (strlcpy(localFileName, nativeLibPath.c_str(), sizeof(localFileName)) != nativeLibPath.size()) {
Kenny Root1ebd74a2011-08-03 15:09:44 -0700190 LOGD("Couldn't allocate local file name for library");
191 return INSTALL_FAILED_INTERNAL_ERROR;
Kenny Root66269ea2011-07-12 14:14:01 -0700192 }
193
194 *(localFileName + nativeLibPath.size()) = '/';
195
196 if (strlcpy(localFileName + nativeLibPath.size() + 1, fileName, sizeof(localFileName)
197 - nativeLibPath.size() - 1) != fileNameLen) {
Kenny Root1ebd74a2011-08-03 15:09:44 -0700198 LOGD("Couldn't allocate local file name for library");
199 return INSTALL_FAILED_INTERNAL_ERROR;
Kenny Root66269ea2011-07-12 14:14:01 -0700200 }
201
202 // Only copy out the native file if it's different.
203 struct stat st;
204 if (!isFileDifferent(localFileName, uncompLen, modTime, crc, &st)) {
Kenny Root1ebd74a2011-08-03 15:09:44 -0700205 return INSTALL_SUCCEEDED;
Kenny Root66269ea2011-07-12 14:14:01 -0700206 }
207
208 char localTmpFileName[nativeLibPath.size() + TMP_FILE_PATTERN_LEN + 2];
209 if (strlcpy(localTmpFileName, nativeLibPath.c_str(), sizeof(localTmpFileName))
210 != nativeLibPath.size()) {
Kenny Root1ebd74a2011-08-03 15:09:44 -0700211 LOGD("Couldn't allocate local file name for library");
212 return INSTALL_FAILED_INTERNAL_ERROR;
Kenny Root66269ea2011-07-12 14:14:01 -0700213 }
214
215 *(localFileName + nativeLibPath.size()) = '/';
216
217 if (strlcpy(localTmpFileName + nativeLibPath.size(), TMP_FILE_PATTERN,
218 TMP_FILE_PATTERN_LEN - nativeLibPath.size()) != TMP_FILE_PATTERN_LEN) {
Kenny Root1ebd74a2011-08-03 15:09:44 -0700219 LOGI("Couldn't allocate temporary file name for library");
220 return INSTALL_FAILED_INTERNAL_ERROR;
Kenny Root66269ea2011-07-12 14:14:01 -0700221 }
222
223 int fd = mkstemp(localTmpFileName);
224 if (fd < 0) {
225 LOGI("Couldn't open temporary file name: %s: %s\n", localTmpFileName, strerror(errno));
Kenny Root1ebd74a2011-08-03 15:09:44 -0700226 return INSTALL_FAILED_CONTAINER_ERROR;
Kenny Root66269ea2011-07-12 14:14:01 -0700227 }
228
229 if (!zipFile->uncompressEntry(zipEntry, fd)) {
Kenny Root1ebd74a2011-08-03 15:09:44 -0700230 LOGI("Failed uncompressing %s to %s\n", fileName, localTmpFileName);
Kenny Root66269ea2011-07-12 14:14:01 -0700231 close(fd);
232 unlink(localTmpFileName);
Kenny Root1ebd74a2011-08-03 15:09:44 -0700233 return INSTALL_FAILED_CONTAINER_ERROR;
Kenny Root66269ea2011-07-12 14:14:01 -0700234 }
235
236 close(fd);
237
238 // Set the modification time for this file to the ZIP's mod time.
239 struct timeval times[2];
240 times[0].tv_sec = st.st_atime;
241 times[1].tv_sec = modTime;
242 times[0].tv_usec = times[1].tv_usec = 0;
243 if (utimes(localTmpFileName, times) < 0) {
244 LOGI("Couldn't change modification time on %s: %s\n", localTmpFileName, strerror(errno));
245 unlink(localTmpFileName);
Kenny Root1ebd74a2011-08-03 15:09:44 -0700246 return INSTALL_FAILED_CONTAINER_ERROR;
Kenny Root66269ea2011-07-12 14:14:01 -0700247 }
248
249 // Set the mode to 755
250 static const mode_t mode = S_IRUSR | S_IWUSR | S_IXUSR | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH;
251 if (chmod(localTmpFileName, mode) < 0) {
252 LOGI("Couldn't change permissions on %s: %s\n", localTmpFileName, strerror(errno));
253 unlink(localTmpFileName);
Kenny Root1ebd74a2011-08-03 15:09:44 -0700254 return INSTALL_FAILED_CONTAINER_ERROR;
Kenny Root66269ea2011-07-12 14:14:01 -0700255 }
256
257 // Finally, rename it to the final name.
258 if (rename(localTmpFileName, localFileName) < 0) {
259 LOGI("Couldn't rename %s to %s: %s\n", localTmpFileName, localFileName, strerror(errno));
260 unlink(localTmpFileName);
Kenny Root1ebd74a2011-08-03 15:09:44 -0700261 return INSTALL_FAILED_CONTAINER_ERROR;
Kenny Root66269ea2011-07-12 14:14:01 -0700262 }
263
Steve Block71f2cf12011-10-20 11:56:00 +0100264 ALOGV("Successfully moved %s to %s\n", localTmpFileName, localFileName);
Kenny Root1ebd74a2011-08-03 15:09:44 -0700265
266 return INSTALL_SUCCEEDED;
Kenny Root66269ea2011-07-12 14:14:01 -0700267}
268
269static install_status_t
270iterateOverNativeFiles(JNIEnv *env, jstring javaFilePath, jstring javaCpuAbi, jstring javaCpuAbi2,
271 iterFunc callFunc, void* callArg) {
272 ScopedUtfChars filePath(env, javaFilePath);
273 ScopedUtfChars cpuAbi(env, javaCpuAbi);
274 ScopedUtfChars cpuAbi2(env, javaCpuAbi2);
275
276 ZipFileRO zipFile;
277
278 if (zipFile.open(filePath.c_str()) != NO_ERROR) {
279 LOGI("Couldn't open APK %s\n", filePath.c_str());
280 return INSTALL_FAILED_INVALID_APK;
281 }
282
283 const int N = zipFile.getNumEntries();
284
285 char fileName[PATH_MAX];
286
287 for (int i = 0; i < N; i++) {
288 const ZipEntryRO entry = zipFile.findEntryByIndex(i);
289 if (entry == NULL) {
290 continue;
291 }
292
293 // Make sure this entry has a filename.
294 if (zipFile.getEntryFileName(entry, fileName, sizeof(fileName))) {
295 continue;
296 }
297
298 // Make sure we're in the lib directory of the ZIP.
299 if (strncmp(fileName, APK_LIB, APK_LIB_LEN)) {
300 continue;
301 }
302
303 // Make sure the filename is at least to the minimum library name size.
304 const size_t fileNameLen = strlen(fileName);
305 static const size_t minLength = APK_LIB_LEN + 2 + LIB_PREFIX_LEN + 1 + LIB_SUFFIX_LEN;
306 if (fileNameLen < minLength) {
307 continue;
308 }
309
310 const char* lastSlash = strrchr(fileName, '/');
Kenny Root1ebd74a2011-08-03 15:09:44 -0700311 LOG_ASSERT(lastSlash != NULL, "last slash was null somehow for %s\n", fileName);
Kenny Root66269ea2011-07-12 14:14:01 -0700312
313 // Check to make sure the CPU ABI of this file is one we support.
314 const char* cpuAbiOffset = fileName + APK_LIB_LEN;
315 const size_t cpuAbiRegionSize = lastSlash - cpuAbiOffset;
316
Steve Block71f2cf12011-10-20 11:56:00 +0100317 ALOGV("Comparing ABIs %s and %s versus %s\n", cpuAbi.c_str(), cpuAbi2.c_str(), cpuAbiOffset);
Kenny Root66269ea2011-07-12 14:14:01 -0700318 if (cpuAbi.size() == cpuAbiRegionSize
319 && *(cpuAbiOffset + cpuAbi.size()) == '/'
320 && !strncmp(cpuAbiOffset, cpuAbi.c_str(), cpuAbiRegionSize)) {
Steve Block71f2cf12011-10-20 11:56:00 +0100321 ALOGV("Using ABI %s\n", cpuAbi.c_str());
Kenny Root66269ea2011-07-12 14:14:01 -0700322 } else if (cpuAbi2.size() == cpuAbiRegionSize
323 && *(cpuAbiOffset + cpuAbi2.size()) == '/'
324 && !strncmp(cpuAbiOffset, cpuAbi2.c_str(), cpuAbiRegionSize)) {
Steve Block71f2cf12011-10-20 11:56:00 +0100325 ALOGV("Using ABI %s\n", cpuAbi2.c_str());
Kenny Root66269ea2011-07-12 14:14:01 -0700326 } else {
Steve Block71f2cf12011-10-20 11:56:00 +0100327 ALOGV("abi didn't match anything: %s (end at %zd)\n", cpuAbiOffset, cpuAbiRegionSize);
Kenny Root66269ea2011-07-12 14:14:01 -0700328 continue;
329 }
330
331 // If this is a .so file, check to see if we need to copy it.
Kenny Root1ebd74a2011-08-03 15:09:44 -0700332 if ((!strncmp(fileName + fileNameLen - LIB_SUFFIX_LEN, LIB_SUFFIX, LIB_SUFFIX_LEN)
333 && !strncmp(lastSlash, LIB_PREFIX, LIB_PREFIX_LEN)
334 && isFilenameSafe(lastSlash + 1))
335 || !strncmp(lastSlash + 1, GDBSERVER, GDBSERVER_LEN)) {
336
337 install_status_t ret = callFunc(env, callArg, &zipFile, entry, lastSlash + 1);
338
339 if (ret != INSTALL_SUCCEEDED) {
Steve Block71f2cf12011-10-20 11:56:00 +0100340 ALOGV("Failure for entry %s", lastSlash + 1);
Kenny Root1ebd74a2011-08-03 15:09:44 -0700341 return ret;
342 }
Kenny Root66269ea2011-07-12 14:14:01 -0700343 }
344 }
345
346 return INSTALL_SUCCEEDED;
347}
348
349static jint
350com_android_internal_content_NativeLibraryHelper_copyNativeBinaries(JNIEnv *env, jclass clazz,
351 jstring javaFilePath, jstring javaNativeLibPath, jstring javaCpuAbi, jstring javaCpuAbi2)
352{
Kenny Root1ebd74a2011-08-03 15:09:44 -0700353 return (jint) iterateOverNativeFiles(env, javaFilePath, javaCpuAbi, javaCpuAbi2,
Kenny Root66269ea2011-07-12 14:14:01 -0700354 copyFileIfChanged, &javaNativeLibPath);
355}
356
357static jlong
358com_android_internal_content_NativeLibraryHelper_sumNativeBinaries(JNIEnv *env, jclass clazz,
359 jstring javaFilePath, jstring javaCpuAbi, jstring javaCpuAbi2)
360{
361 size_t totalSize = 0;
362
363 iterateOverNativeFiles(env, javaFilePath, javaCpuAbi, javaCpuAbi2, sumFiles, &totalSize);
364
365 return totalSize;
366}
367
368static JNINativeMethod gMethods[] = {
369 {"nativeCopyNativeBinaries",
370 "(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)I",
371 (void *)com_android_internal_content_NativeLibraryHelper_copyNativeBinaries},
372 {"nativeSumNativeBinaries",
373 "(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)J",
374 (void *)com_android_internal_content_NativeLibraryHelper_sumNativeBinaries},
375};
376
377
378int register_com_android_internal_content_NativeLibraryHelper(JNIEnv *env)
379{
380 return AndroidRuntime::registerNativeMethods(env,
381 "com/android/internal/content/NativeLibraryHelper", gMethods, NELEM(gMethods));
382}
383
384};