1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228
|
/*
* Copyright (C) 2008 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/*
* Some utility functions for use with command-line utilities.
*/
#include "DexFile.h"
#include "ZipArchive.h"
#include "CmdUtils.h"
#include <stdlib.h>
#include <string.h>
#include <strings.h>
#include <fcntl.h>
#include <errno.h>
#ifndef O_BINARY
#define O_BINARY 0
#endif
/*
* Extract "classes.dex" from archive file.
*
* If "quiet" is set, don't report common errors.
*/
UnzipToFileResult dexUnzipToFile(const char* zipFileName,
const char* outFileName, bool quiet)
{
UnzipToFileResult result = kUTFRSuccess;
static const char* kFileToExtract = "classes.dex";
ZipArchiveHandle archive;
ZipEntry entry;
bool unlinkOnFailure = false;
int fd = -1;
if (dexZipOpenArchive(zipFileName, &archive) != 0) {
if (!quiet) {
fprintf(stderr, "Unable to open '%s' as zip archive\n",
zipFileName);
}
result = kUTFRNotZip;
goto bail;
}
fd = open(outFileName, O_RDWR | O_CREAT | O_EXCL | O_BINARY, 0600);
if (fd < 0) {
fprintf(stderr, "Unable to create output file '%s': %s\n",
outFileName, strerror(errno));
result = kUTFROutputFileProblem;
goto bail;
}
unlinkOnFailure = true;
if (dexZipFindEntry(archive, kFileToExtract, &entry) != 0) {
if (!quiet) {
fprintf(stderr, "Unable to find '%s' in '%s'\n",
kFileToExtract, zipFileName);
}
result = kUTFRNoClassesDex;
goto bail;
}
if (dexZipExtractEntryToFile(archive, &entry, fd) != 0) {
fprintf(stderr, "Extract of '%s' from '%s' failed\n",
kFileToExtract, zipFileName);
result = kUTFRBadZip;
goto bail;
}
bail:
if (fd >= 0)
close(fd);
if (unlinkOnFailure && result != kUTFRSuccess)
unlink(outFileName);
dexZipCloseArchive(archive);
return result;
}
/*
* Map the specified DEX file read-only (possibly after expanding it into a
* temp file from a Jar). Pass in a MemMapping struct to hold the info.
* If the file is an unoptimized DEX file, then byte-swapping and structural
* verification are performed on it before the memory is made read-only.
*
* The temp file is deleted after the map succeeds.
*
* This is intended for use by tools (e.g. dexdump) that need to get a
* read-only copy of a DEX file that could be in a number of different states.
*
* If "tempFileName" is NULL, a default value is used. The temp file is
* deleted after the map succeeds.
*
* If "quiet" is set, don't report common errors.
*
* Returns 0 (kUTFRSuccess) on success.
*/
UnzipToFileResult dexOpenAndMap(const char* fileName, const char* tempFileName,
MemMapping* pMap, bool quiet)
{
UnzipToFileResult result = kUTFRGenericFailure;
int len = strlen(fileName);
char tempNameBuf[32];
bool removeTemp = false;
int fd = -1;
if (len < 5) {
if (!quiet) {
fprintf(stderr,
"ERROR: filename must end in .dex, .zip, .jar, or .apk\n");
}
result = kUTFRBadArgs;
goto bail;
}
if (strcasecmp(fileName + len -3, "dex") != 0) {
if (tempFileName == NULL) {
/*
* Try .zip/.jar/.apk, all of which are Zip archives with
* "classes.dex" inside. We need to extract the compressed
* data to a temp file, the location of which varies.
*
* On the device we must use /sdcard because most other
* directories aren't writable (either because of permissions
* or because the volume is mounted read-only). On desktop
* it's nice to use the designated temp directory.
*/
if (access("/tmp", W_OK) == 0) {
sprintf(tempNameBuf, "/tmp/dex-temp-%d", getpid());
} else if (access("/sdcard", W_OK) == 0) {
sprintf(tempNameBuf, "/sdcard/dex-temp-%d", getpid());
} else {
fprintf(stderr,
"NOTE: /tmp and /sdcard unavailable for temp files\n");
sprintf(tempNameBuf, "dex-temp-%d", getpid());
}
tempFileName = tempNameBuf;
}
result = dexUnzipToFile(fileName, tempFileName, quiet);
if (result == kUTFRSuccess) {
//printf("+++ Good unzip to '%s'\n", tempFileName);
fileName = tempFileName;
removeTemp = true;
} else if (result == kUTFRNotZip) {
if (!quiet) {
fprintf(stderr, "Not Zip, retrying as DEX\n");
}
} else {
if (!quiet && result == kUTFRNoClassesDex) {
fprintf(stderr, "Zip has no classes.dex\n");
}
goto bail;
}
}
result = kUTFRGenericFailure;
/*
* Pop open the (presumed) DEX file.
*/
fd = open(fileName, O_RDONLY | O_BINARY);
if (fd < 0) {
if (!quiet) {
fprintf(stderr, "ERROR: unable to open '%s': %s\n",
fileName, strerror(errno));
}
goto bail;
}
if (sysMapFileInShmemWritableReadOnly(fd, pMap) != 0) {
fprintf(stderr, "ERROR: Unable to map '%s'\n", fileName);
goto bail;
}
/*
* This call will fail if the file exists on a filesystem that
* doesn't support mprotect(). If that's the case, then the file
* will have already been mapped private-writable by the previous
* call, so we don't need to do anything special if this call
* returns non-zero.
*/
sysChangeMapAccess(pMap->addr, pMap->length, true, pMap);
if (dexSwapAndVerifyIfNecessary((u1*) pMap->addr, pMap->length)) {
fprintf(stderr, "ERROR: Failed structural verification of '%s'\n",
fileName);
goto bail;
}
/*
* Similar to above, this call will fail if the file wasn't ever
* read-only to begin with. This is innocuous, though it is
* undesirable from a memory hygiene perspective.
*/
sysChangeMapAccess(pMap->addr, pMap->length, false, pMap);
/*
* Success! Close the file and return with the start/length in pMap.
*/
result = kUTFRSuccess;
bail:
if (fd >= 0)
close(fd);
if (removeTemp) {
/* this will fail if the OS doesn't allow removal of a mapped file */
if (unlink(tempFileName) != 0) {
fprintf(stderr, "WARNING: unable to remove temp '%s'\n",
tempFileName);
}
}
return result;
}
|