blob: bf5accd431d7dcc51ab88aec686a7180cc3ddee9 [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>
Mathias Agopian1f5762e2013-05-06 20:20:34 -070023#include <androidfw/ZipFileRO.h>
Kenny Root66269ea2011-07-12 14:14:01 -070024#include <ScopedUtfChars.h>
Kenny Root66269ea2011-07-12 14:14:01 -070025
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)) {
Steve Block5baa3a62011-12-20 16:23:08 +0000177 ALOGD("Couldn't read zip entry info\n");
Kenny Root1ebd74a2011-08-03 15:09:44 -0700178 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()) {
Steve Block5baa3a62011-12-20 16:23:08 +0000190 ALOGD("Couldn't allocate local file name for library");
Kenny Root1ebd74a2011-08-03 15:09:44 -0700191 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) {
Steve Block5baa3a62011-12-20 16:23:08 +0000198 ALOGD("Couldn't allocate local file name for library");
Kenny Root1ebd74a2011-08-03 15:09:44 -0700199 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()) {
Steve Block5baa3a62011-12-20 16:23:08 +0000211 ALOGD("Couldn't allocate local file name for library");
Kenny Root1ebd74a2011-08-03 15:09:44 -0700212 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) {
Steve Block6215d3f2012-01-04 20:05:49 +0000219 ALOGI("Couldn't allocate temporary file name for library");
Kenny Root1ebd74a2011-08-03 15:09:44 -0700220 return INSTALL_FAILED_INTERNAL_ERROR;
Kenny Root66269ea2011-07-12 14:14:01 -0700221 }
222
223 int fd = mkstemp(localTmpFileName);
224 if (fd < 0) {
Steve Block6215d3f2012-01-04 20:05:49 +0000225 ALOGI("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)) {
Steve Block6215d3f2012-01-04 20:05:49 +0000230 ALOGI("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) {
Steve Block6215d3f2012-01-04 20:05:49 +0000244 ALOGI("Couldn't change modification time on %s: %s\n", localTmpFileName, strerror(errno));
Kenny Root66269ea2011-07-12 14:14:01 -0700245 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) {
Steve Block6215d3f2012-01-04 20:05:49 +0000252 ALOGI("Couldn't change permissions on %s: %s\n", localTmpFileName, strerror(errno));
Kenny Root66269ea2011-07-12 14:14:01 -0700253 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) {
Steve Block6215d3f2012-01-04 20:05:49 +0000259 ALOGI("Couldn't rename %s to %s: %s\n", localTmpFileName, localFileName, strerror(errno));
Kenny Root66269ea2011-07-12 14:14:01 -0700260 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) {
Steve Block6215d3f2012-01-04 20:05:49 +0000279 ALOGI("Couldn't open APK %s\n", filePath.c_str());
Kenny Root66269ea2011-07-12 14:14:01 -0700280 return INSTALL_FAILED_INVALID_APK;
281 }
282
283 const int N = zipFile.getNumEntries();
284
285 char fileName[PATH_MAX];
Anthony Mazzola10410fc2011-12-20 13:49:09 -0800286 bool hasPrimaryAbi = false;
Kenny Root66269ea2011-07-12 14:14:01 -0700287
288 for (int i = 0; i < N; i++) {
289 const ZipEntryRO entry = zipFile.findEntryByIndex(i);
290 if (entry == NULL) {
291 continue;
292 }
293
294 // Make sure this entry has a filename.
295 if (zipFile.getEntryFileName(entry, fileName, sizeof(fileName))) {
296 continue;
297 }
298
299 // Make sure we're in the lib directory of the ZIP.
300 if (strncmp(fileName, APK_LIB, APK_LIB_LEN)) {
301 continue;
302 }
303
304 // Make sure the filename is at least to the minimum library name size.
305 const size_t fileNameLen = strlen(fileName);
306 static const size_t minLength = APK_LIB_LEN + 2 + LIB_PREFIX_LEN + 1 + LIB_SUFFIX_LEN;
307 if (fileNameLen < minLength) {
308 continue;
309 }
310
311 const char* lastSlash = strrchr(fileName, '/');
Steve Blockec193de2012-01-09 18:35:44 +0000312 ALOG_ASSERT(lastSlash != NULL, "last slash was null somehow for %s\n", fileName);
Kenny Root66269ea2011-07-12 14:14:01 -0700313
314 // Check to make sure the CPU ABI of this file is one we support.
315 const char* cpuAbiOffset = fileName + APK_LIB_LEN;
316 const size_t cpuAbiRegionSize = lastSlash - cpuAbiOffset;
317
Steve Block71f2cf12011-10-20 11:56:00 +0100318 ALOGV("Comparing ABIs %s and %s versus %s\n", cpuAbi.c_str(), cpuAbi2.c_str(), cpuAbiOffset);
Kenny Root66269ea2011-07-12 14:14:01 -0700319 if (cpuAbi.size() == cpuAbiRegionSize
320 && *(cpuAbiOffset + cpuAbi.size()) == '/'
321 && !strncmp(cpuAbiOffset, cpuAbi.c_str(), cpuAbiRegionSize)) {
Kenny Rootfcbbaf12012-01-13 13:39:28 -0800322 ALOGV("Using primary ABI %s\n", cpuAbi.c_str());
Anthony Mazzola10410fc2011-12-20 13:49:09 -0800323 hasPrimaryAbi = true;
Kenny Root66269ea2011-07-12 14:14:01 -0700324 } else if (cpuAbi2.size() == cpuAbiRegionSize
325 && *(cpuAbiOffset + cpuAbi2.size()) == '/'
326 && !strncmp(cpuAbiOffset, cpuAbi2.c_str(), cpuAbiRegionSize)) {
Anthony Mazzola10410fc2011-12-20 13:49:09 -0800327
328 /*
329 * If this library matches both the primary and secondary ABIs,
330 * only use the primary ABI.
331 */
332 if (hasPrimaryAbi) {
Kenny Rootfcbbaf12012-01-13 13:39:28 -0800333 ALOGV("Already saw primary ABI, skipping secondary ABI %s\n", cpuAbi2.c_str());
Anthony Mazzola10410fc2011-12-20 13:49:09 -0800334 continue;
335 } else {
Kenny Rootfcbbaf12012-01-13 13:39:28 -0800336 ALOGV("Using secondary ABI %s\n", cpuAbi2.c_str());
Anthony Mazzola10410fc2011-12-20 13:49:09 -0800337 }
Kenny Root66269ea2011-07-12 14:14:01 -0700338 } else {
Steve Block71f2cf12011-10-20 11:56:00 +0100339 ALOGV("abi didn't match anything: %s (end at %zd)\n", cpuAbiOffset, cpuAbiRegionSize);
Kenny Root66269ea2011-07-12 14:14:01 -0700340 continue;
341 }
342
343 // If this is a .so file, check to see if we need to copy it.
Kenny Root1ebd74a2011-08-03 15:09:44 -0700344 if ((!strncmp(fileName + fileNameLen - LIB_SUFFIX_LEN, LIB_SUFFIX, LIB_SUFFIX_LEN)
345 && !strncmp(lastSlash, LIB_PREFIX, LIB_PREFIX_LEN)
346 && isFilenameSafe(lastSlash + 1))
347 || !strncmp(lastSlash + 1, GDBSERVER, GDBSERVER_LEN)) {
348
349 install_status_t ret = callFunc(env, callArg, &zipFile, entry, lastSlash + 1);
350
351 if (ret != INSTALL_SUCCEEDED) {
Steve Block71f2cf12011-10-20 11:56:00 +0100352 ALOGV("Failure for entry %s", lastSlash + 1);
Kenny Root1ebd74a2011-08-03 15:09:44 -0700353 return ret;
354 }
Kenny Root66269ea2011-07-12 14:14:01 -0700355 }
356 }
357
358 return INSTALL_SUCCEEDED;
359}
360
361static jint
362com_android_internal_content_NativeLibraryHelper_copyNativeBinaries(JNIEnv *env, jclass clazz,
363 jstring javaFilePath, jstring javaNativeLibPath, jstring javaCpuAbi, jstring javaCpuAbi2)
364{
Kenny Root1ebd74a2011-08-03 15:09:44 -0700365 return (jint) iterateOverNativeFiles(env, javaFilePath, javaCpuAbi, javaCpuAbi2,
Kenny Root66269ea2011-07-12 14:14:01 -0700366 copyFileIfChanged, &javaNativeLibPath);
367}
368
369static jlong
370com_android_internal_content_NativeLibraryHelper_sumNativeBinaries(JNIEnv *env, jclass clazz,
371 jstring javaFilePath, jstring javaCpuAbi, jstring javaCpuAbi2)
372{
373 size_t totalSize = 0;
374
375 iterateOverNativeFiles(env, javaFilePath, javaCpuAbi, javaCpuAbi2, sumFiles, &totalSize);
376
377 return totalSize;
378}
379
380static JNINativeMethod gMethods[] = {
381 {"nativeCopyNativeBinaries",
382 "(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)I",
383 (void *)com_android_internal_content_NativeLibraryHelper_copyNativeBinaries},
384 {"nativeSumNativeBinaries",
385 "(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)J",
386 (void *)com_android_internal_content_NativeLibraryHelper_sumNativeBinaries},
387};
388
389
390int register_com_android_internal_content_NativeLibraryHelper(JNIEnv *env)
391{
392 return AndroidRuntime::registerNativeMethods(env,
393 "com/android/internal/content/NativeLibraryHelper", gMethods, NELEM(gMethods));
394}
395
396};