blob: 77bf67daa478911e6e36203cd7d8dd67002b81a2 [file] [log] [blame]
Fyodor Kupolov74876572015-02-23 17:14:45 -08001/*
2 * Copyright (C) 2015 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
17package com.android.server.pm;
18
Fyodor Kupolovb94c1652015-03-03 12:25:30 -080019import android.annotation.Nullable;
Fyodor Kupolova627c092015-05-05 18:44:39 -070020import android.content.Context;
Fyodor Kupolov74876572015-02-23 17:14:45 -080021import android.content.pm.ApplicationInfo;
22import android.content.pm.PackageParser;
Calin Juravle6ae39fc2018-01-19 20:32:47 -080023import android.content.pm.dex.ArtManager;
Calin Juravlecc651942018-02-01 17:20:51 +000024import android.content.pm.dex.DexMetadataHelper;
Calin Juravleadbadd52017-03-28 18:19:15 -070025import android.os.FileUtils;
Fyodor Kupolova627c092015-05-05 18:44:39 -070026import android.os.PowerManager;
Fyodor Kupolov28f28552017-05-02 12:11:02 -070027import android.os.SystemClock;
Nicolas Geoffray20a894e2017-09-08 13:01:40 +010028import android.os.SystemProperties;
Fyodor Kupolov74876572015-02-23 17:14:45 -080029import android.os.UserHandle;
Fyodor Kupolova627c092015-05-05 18:44:39 -070030import android.os.WorkSource;
Fyodor Kupolov74876572015-02-23 17:14:45 -080031import android.util.Log;
32import android.util.Slog;
33
Calin Juravle2d4b6ad72017-01-04 13:22:14 -080034import com.android.internal.annotations.GuardedBy;
Narayan Kamath88eea9e2016-05-02 14:44:31 +010035import com.android.internal.util.IndentingPrintWriter;
Jeff Sharkey740f5232016-12-09 14:31:26 -070036import com.android.server.pm.Installer.InstallerException;
Calin Juravle1d0e83d2017-07-17 15:12:01 -070037import com.android.server.pm.dex.DexoptOptions;
Calin Juravle19da1cf2017-07-12 18:52:49 -070038import com.android.server.pm.dex.DexoptUtils;
Calin Juravlef1ff36f2017-07-22 12:33:41 -070039import com.android.server.pm.dex.PackageDexUsage;
Jeff Sharkeyfdeeeea2016-01-11 17:34:24 -070040
Fyodor Kupolovb94c1652015-03-03 12:25:30 -080041import java.io.File;
Fyodor Kupolov74876572015-02-23 17:14:45 -080042import java.io.IOException;
Calin Juravle2d4b6ad72017-01-04 13:22:14 -080043import java.util.ArrayList;
Calin Juravle4c2b9552017-08-10 17:23:00 -070044import java.util.Arrays;
Fyodor Kupolov74876572015-02-23 17:14:45 -080045import java.util.List;
Calin Juravle41a57a62017-08-06 19:20:19 -070046import java.util.Map;
Fyodor Kupolov74876572015-02-23 17:14:45 -080047
48import dalvik.system.DexFile;
Fyodor Kupolov74876572015-02-23 17:14:45 -080049
Todd Kennedyfa54ab72015-09-25 07:46:12 -070050import static com.android.server.pm.Installer.DEXOPT_BOOTCOMPLETE;
51import static com.android.server.pm.Installer.DEXOPT_DEBUGGABLE;
Andreas Gampebdd30d82016-03-20 11:32:11 -070052import static com.android.server.pm.Installer.DEXOPT_PROFILE_GUIDED;
Todd Kennedyfa54ab72015-09-25 07:46:12 -070053import static com.android.server.pm.Installer.DEXOPT_PUBLIC;
Calin Juravlec22c30e2017-01-16 19:18:48 -080054import static com.android.server.pm.Installer.DEXOPT_SECONDARY_DEX;
55import static com.android.server.pm.Installer.DEXOPT_FORCE;
56import static com.android.server.pm.Installer.DEXOPT_STORAGE_CE;
57import static com.android.server.pm.Installer.DEXOPT_STORAGE_DE;
David Sehr2118ec42017-10-25 14:28:29 -070058import static com.android.server.pm.Installer.DEXOPT_IDLE_BACKGROUND_JOB;
David Brazdilf7e31c02018-02-13 17:04:26 +000059import static com.android.server.pm.Installer.DEXOPT_ENABLE_HIDDEN_API_CHECKS;
Fyodor Kupolov74876572015-02-23 17:14:45 -080060import static com.android.server.pm.InstructionSets.getAppDexInstructionSets;
61import static com.android.server.pm.InstructionSets.getDexCodeInstructionSets;
Calin Juravle2d4b6ad72017-01-04 13:22:14 -080062
Fyodor Kupolov28f28552017-05-02 12:11:02 -070063import static com.android.server.pm.PackageManagerService.WATCHDOG_TIMEOUT;
Nicolas Geoffrayb0818e82017-05-05 10:23:19 +010064
Calin Juravle4bc8f4d2018-02-12 12:00:44 -080065import static com.android.server.pm.PackageManagerServiceCompilerMapping.getReasonName;
66
Nicolas Geoffrayd093b202017-05-03 13:11:58 +010067import static dalvik.system.DexFile.getSafeModeCompilerFilter;
Calin Juravle2d4b6ad72017-01-04 13:22:14 -080068import static dalvik.system.DexFile.isProfileGuidedCompilerFilter;
Fyodor Kupolov74876572015-02-23 17:14:45 -080069
70/**
71 * Helper class for running dexopt command on packages.
72 */
Calin Juravlec22c30e2017-01-16 19:18:48 -080073public class PackageDexOptimizer {
Fyodor Kupolovb94c1652015-03-03 12:25:30 -080074 private static final String TAG = "PackageManager.DexOptimizer";
75 static final String OAT_DIR_NAME = "oat";
76 // TODO b/19550105 Remove error codes and use exceptions
Calin Juravlec22c30e2017-01-16 19:18:48 -080077 public static final int DEX_OPT_SKIPPED = 0;
78 public static final int DEX_OPT_PERFORMED = 1;
79 public static final int DEX_OPT_FAILED = -1;
Fyodor Kupolov28f28552017-05-02 12:11:02 -070080 // One minute over PM WATCHDOG_TIMEOUT
81 private static final long WAKELOCK_TIMEOUT_MS = WATCHDOG_TIMEOUT + 1000 * 60;
Fyodor Kupolov74876572015-02-23 17:14:45 -080082
Calin Juravleaae35762017-02-14 17:53:13 -080083 /** Special library name that skips shared libraries check during compilation. */
84 public static final String SKIP_SHARED_LIBRARY_CHECK = "&";
85
Fyodor Kupolov28f28552017-05-02 12:11:02 -070086 @GuardedBy("mInstallLock")
Andreas Gampea8908752015-11-10 08:58:14 -080087 private final Installer mInstaller;
88 private final Object mInstallLock;
Fyodor Kupolov74876572015-02-23 17:14:45 -080089
Fyodor Kupolov28f28552017-05-02 12:11:02 -070090 @GuardedBy("mInstallLock")
Fyodor Kupolova627c092015-05-05 18:44:39 -070091 private final PowerManager.WakeLock mDexoptWakeLock;
92 private volatile boolean mSystemReady;
93
Andreas Gampea8908752015-11-10 08:58:14 -080094 PackageDexOptimizer(Installer installer, Object installLock, Context context,
95 String wakeLockTag) {
96 this.mInstaller = installer;
97 this.mInstallLock = installLock;
98
99 PowerManager powerManager = (PowerManager)context.getSystemService(Context.POWER_SERVICE);
100 mDexoptWakeLock = powerManager.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK, wakeLockTag);
101 }
102
103 protected PackageDexOptimizer(PackageDexOptimizer from) {
104 this.mInstaller = from.mInstaller;
105 this.mInstallLock = from.mInstallLock;
106 this.mDexoptWakeLock = from.mDexoptWakeLock;
107 this.mSystemReady = from.mSystemReady;
Fyodor Kupolov74876572015-02-23 17:14:45 -0800108 }
109
Calin Juravledb4a79a2015-12-23 18:55:08 +0200110 static boolean canOptimizePackage(PackageParser.Package pkg) {
Nicolas Geoffray20a894e2017-09-08 13:01:40 +0100111 // We do not dexopt a package with no code.
112 if ((pkg.applicationInfo.flags & ApplicationInfo.FLAG_HAS_CODE) == 0) {
113 return false;
114 }
115
Nicolas Geoffray20a894e2017-09-08 13:01:40 +0100116 return true;
Calin Juravledb4a79a2015-12-23 18:55:08 +0200117 }
118
Fyodor Kupolov74876572015-02-23 17:14:45 -0800119 /**
120 * Performs dexopt on all code paths and libraries of the specified package for specified
121 * instruction sets.
122 *
Andreas Gampea8908752015-11-10 08:58:14 -0800123 * <p>Calls to {@link com.android.server.pm.Installer#dexopt} on {@link #mInstaller} are
124 * synchronized on {@link #mInstallLock}.
Fyodor Kupolov74876572015-02-23 17:14:45 -0800125 */
Jeff Haoc7b94822016-03-16 15:56:07 -0700126 int performDexOpt(PackageParser.Package pkg, String[] sharedLibraries,
Calin Juravle1d0e83d2017-07-17 15:12:01 -0700127 String[] instructionSets, CompilerStats.PackageStats packageStats,
Calin Juravle3b74c412017-08-03 19:48:37 -0700128 PackageDexUsage.PackageUseInfo packageUseInfo, DexoptOptions options) {
Calin Juravlec6540da2017-11-15 16:28:01 -0800129 if (pkg.applicationInfo.uid == -1) {
130 throw new IllegalArgumentException("Dexopt for " + pkg.packageName
131 + " has invalid uid.");
132 }
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800133 if (!canOptimizePackage(pkg)) {
134 return DEX_OPT_SKIPPED;
135 }
Andreas Gampea8908752015-11-10 08:58:14 -0800136 synchronized (mInstallLock) {
Fyodor Kupolov28f28552017-05-02 12:11:02 -0700137 final long acquireTime = acquireWakeLockLI(pkg.applicationInfo.uid);
Fyodor Kupolova627c092015-05-05 18:44:39 -0700138 try {
Calin Juravle1d0e83d2017-07-17 15:12:01 -0700139 return performDexOptLI(pkg, sharedLibraries, instructionSets,
Calin Juravle3b74c412017-08-03 19:48:37 -0700140 packageStats, packageUseInfo, options);
Fyodor Kupolova627c092015-05-05 18:44:39 -0700141 } finally {
Fyodor Kupolov28f28552017-05-02 12:11:02 -0700142 releaseWakeLockLI(acquireTime);
Fyodor Kupolova627c092015-05-05 18:44:39 -0700143 }
Fyodor Kupolov74876572015-02-23 17:14:45 -0800144 }
145 }
146
Andreas Gampea8908752015-11-10 08:58:14 -0800147 /**
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800148 * Performs dexopt on all code paths of the given package.
149 * It assumes the install lock is held.
150 */
151 @GuardedBy("mInstallLock")
152 private int performDexOptLI(PackageParser.Package pkg, String[] sharedLibraries,
Calin Juravle1d0e83d2017-07-17 15:12:01 -0700153 String[] targetInstructionSets, CompilerStats.PackageStats packageStats,
Calin Juravle3b74c412017-08-03 19:48:37 -0700154 PackageDexUsage.PackageUseInfo packageUseInfo, DexoptOptions options) {
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800155 final String[] instructionSets = targetInstructionSets != null ?
156 targetInstructionSets : getAppDexInstructionSets(pkg.applicationInfo);
157 final String[] dexCodeInstructionSets = getDexCodeInstructionSets(instructionSets);
Jeff Hao5def5e52017-04-19 14:42:16 -0700158 final List<String> paths = pkg.getAllCodePaths();
Jeff Sharkeya73e1652017-11-15 19:07:14 -0700159
160 int sharedGid = UserHandle.getSharedAppGid(pkg.applicationInfo.uid);
161 if (sharedGid == -1) {
162 Slog.wtf(TAG, "Well this is awkward; package " + pkg.applicationInfo.name + " had UID "
163 + pkg.applicationInfo.uid, new Throwable());
164 sharedGid = android.os.Process.NOBODY_UID;
165 }
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800166
Calin Juravle19da1cf2017-07-12 18:52:49 -0700167 // Get the class loader context dependencies.
168 // For each code path in the package, this array contains the class loader context that
169 // needs to be passed to dexopt in order to ensure correct optimizations.
Calin Juravleda098152017-09-01 17:30:01 -0700170 boolean[] pathsWithCode = new boolean[paths.size()];
171 pathsWithCode[0] = (pkg.applicationInfo.flags & ApplicationInfo.FLAG_HAS_CODE) != 0;
172 for (int i = 1; i < paths.size(); i++) {
173 pathsWithCode[i] = (pkg.splitFlags[i - 1] & ApplicationInfo.FLAG_HAS_CODE) != 0;
174 }
Calin Juravle19da1cf2017-07-12 18:52:49 -0700175 String[] classLoaderContexts = DexoptUtils.getClassLoaderContexts(
Calin Juravleda098152017-09-01 17:30:01 -0700176 pkg.applicationInfo, sharedLibraries, pathsWithCode);
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800177
Calin Juravle4c2b9552017-08-10 17:23:00 -0700178 // Sanity check that we do not call dexopt with inconsistent data.
179 if (paths.size() != classLoaderContexts.length) {
180 String[] splitCodePaths = pkg.applicationInfo.getSplitCodePaths();
181 throw new IllegalStateException("Inconsistent information "
182 + "between PackageParser.Package and its ApplicationInfo. "
183 + "pkg.getAllCodePaths=" + paths
184 + " pkg.applicationInfo.getBaseCodePath=" + pkg.applicationInfo.getBaseCodePath()
185 + " pkg.applicationInfo.getSplitCodePaths="
186 + (splitCodePaths == null ? "null" : Arrays.toString(splitCodePaths)));
187 }
188
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800189 int result = DEX_OPT_SKIPPED;
Jeff Hao5def5e52017-04-19 14:42:16 -0700190 for (int i = 0; i < paths.size(); i++) {
191 // Skip paths that have no code.
Calin Juravleda098152017-09-01 17:30:01 -0700192 if (!pathsWithCode[i]) {
Jeff Hao5def5e52017-04-19 14:42:16 -0700193 continue;
194 }
Calin Juravleda098152017-09-01 17:30:01 -0700195 if (classLoaderContexts[i] == null) {
196 throw new IllegalStateException("Inconsistent information in the "
197 + "package structure. A split is marked to contain code "
198 + "but has no dependency listed. Index=" + i + " path=" + paths.get(i));
199 }
200
Jeff Hao5def5e52017-04-19 14:42:16 -0700201 // Append shared libraries with split dependencies for this split.
202 String path = paths.get(i);
Calin Juravleb6f844d2017-07-17 15:23:21 -0700203 if (options.getSplitName() != null) {
204 // We are asked to compile only a specific split. Check that the current path is
205 // what we are looking for.
206 if (!options.getSplitName().equals(new File(path).getName())) {
207 continue;
208 }
209 }
210
Calin Juravle6ae39fc2018-01-19 20:32:47 -0800211 String profileName = ArtManager.getProfileName(i == 0 ? null : pkg.splitNames[i - 1]);
212
Calin Juravlecc651942018-02-01 17:20:51 +0000213 String dexMetadataPath = null;
214 if (options.isDexoptInstallWithDexMetadata()) {
215 File dexMetadataFile = DexMetadataHelper.findDexMetadataForFile(new File(path));
216 dexMetadataPath = dexMetadataFile == null
217 ? null : dexMetadataFile.getAbsolutePath();
218 }
219
Calin Juravle3b74c412017-08-03 19:48:37 -0700220 final boolean isUsedByOtherApps = options.isDexoptAsSharedLibrary()
Calin Juravle52a452c2017-08-04 01:42:17 -0700221 || packageUseInfo.isUsedByOtherApps(path);
Calin Juravle3b74c412017-08-03 19:48:37 -0700222 final String compilerFilter = getRealCompilerFilter(pkg.applicationInfo,
223 options.getCompilerFilter(), isUsedByOtherApps);
224 final boolean profileUpdated = options.isCheckForProfileUpdates() &&
Calin Juravle6ae39fc2018-01-19 20:32:47 -0800225 isProfileUpdated(pkg, sharedGid, profileName, compilerFilter);
Calin Juravle3b74c412017-08-03 19:48:37 -0700226
227 // Get the dexopt flags after getRealCompilerFilter to make sure we get the correct
228 // flags.
Andreas Gampec041c332017-11-01 17:05:53 -0700229 final int dexoptFlags = getDexFlags(pkg, compilerFilter, options);
Calin Juravle3b74c412017-08-03 19:48:37 -0700230
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800231 for (String dexCodeIsa : dexCodeInstructionSets) {
Calin Juravle19da1cf2017-07-12 18:52:49 -0700232 int newResult = dexOptPath(pkg, path, dexCodeIsa, compilerFilter,
233 profileUpdated, classLoaderContexts[i], dexoptFlags, sharedGid,
Calin Juravle4bc8f4d2018-02-12 12:00:44 -0800234 packageStats, options.isDowngrade(), profileName, dexMetadataPath,
235 options.getCompilationReason());
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800236 // The end result is:
237 // - FAILED if any path failed,
238 // - PERFORMED if at least one path needed compilation,
239 // - SKIPPED when all paths are up to date
240 if ((result != DEX_OPT_FAILED) && (newResult != DEX_OPT_SKIPPED)) {
241 result = newResult;
242 }
243 }
244 }
245 return result;
246 }
247
248 /**
249 * Performs dexopt on the {@code path} belonging to the package {@code pkg}.
250 *
251 * @return
252 * DEX_OPT_FAILED if there was any exception during dexopt
253 * DEX_OPT_PERFORMED if dexopt was performed successfully on the given path.
254 * DEX_OPT_SKIPPED if the path does not need to be deopt-ed.
255 */
256 @GuardedBy("mInstallLock")
257 private int dexOptPath(PackageParser.Package pkg, String path, String isa,
Calin Juravle576e6c02017-09-12 00:58:33 -0700258 String compilerFilter, boolean profileUpdated, String classLoaderContext,
Calin Juravle6ae39fc2018-01-19 20:32:47 -0800259 int dexoptFlags, int uid, CompilerStats.PackageStats packageStats, boolean downgrade,
Calin Juravle4bc8f4d2018-02-12 12:00:44 -0800260 String profileName, String dexMetadataPath, int compilationReason) {
Calin Juravle576e6c02017-09-12 00:58:33 -0700261 int dexoptNeeded = getDexoptNeeded(path, isa, compilerFilter, classLoaderContext,
262 profileUpdated, downgrade);
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800263 if (Math.abs(dexoptNeeded) == DexFile.NO_DEXOPT_NEEDED) {
264 return DEX_OPT_SKIPPED;
265 }
266
267 // TODO(calin): there's no need to try to create the oat dir over and over again,
268 // especially since it involve an extra installd call. We should create
269 // if (if supported) on the fly during the dexopt call.
270 String oatDir = createOatDirIfSupported(pkg, isa);
271
272 Log.i(TAG, "Running dexopt (dexoptNeeded=" + dexoptNeeded + ") on: " + path
273 + " pkg=" + pkg.applicationInfo.packageName + " isa=" + isa
274 + " dexoptFlags=" + printDexoptFlags(dexoptFlags)
Calin Juravle576e6c02017-09-12 00:58:33 -0700275 + " targetFilter=" + compilerFilter + " oatDir=" + oatDir
276 + " classLoaderContext=" + classLoaderContext);
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800277
278 try {
279 long startTime = System.currentTimeMillis();
280
Shubham Ajmera246dccf2017-05-24 17:46:36 -0700281 // TODO: Consider adding 2 different APIs for primary and secondary dexopt.
282 // installd only uses downgrade flag for secondary dex files and ignores it for
283 // primary dex files.
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800284 mInstaller.dexopt(path, uid, pkg.packageName, isa, dexoptNeeded, oatDir, dexoptFlags,
Calin Juravle576e6c02017-09-12 00:58:33 -0700285 compilerFilter, pkg.volumeUuid, classLoaderContext, pkg.applicationInfo.seInfo,
Calin Juravle6ae39fc2018-01-19 20:32:47 -0800286 false /* downgrade*/, pkg.applicationInfo.targetSdkVersion,
Calin Juravle4bc8f4d2018-02-12 12:00:44 -0800287 profileName, dexMetadataPath, getReasonName(compilationReason));
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800288
289 if (packageStats != null) {
290 long endTime = System.currentTimeMillis();
291 packageStats.setCompileTime(path, (int)(endTime - startTime));
292 }
293 return DEX_OPT_PERFORMED;
294 } catch (InstallerException e) {
295 Slog.w(TAG, "Failed to dexopt", e);
296 return DEX_OPT_FAILED;
297 }
298 }
299
300 /**
Calin Juravlec22c30e2017-01-16 19:18:48 -0800301 * Performs dexopt on the secondary dex {@code path} belonging to the app {@code info}.
302 *
303 * @return
304 * DEX_OPT_FAILED if there was any exception during dexopt
305 * DEX_OPT_PERFORMED if dexopt was performed successfully on the given path.
306 * NOTE that DEX_OPT_PERFORMED for secondary dex files includes the case when the dex file
307 * didn't need an update. That's because at the moment we don't get more than success/failure
308 * from installd.
309 *
310 * TODO(calin): Consider adding return codes to installd dexopt invocation (rather than
311 * throwing exceptions). Or maybe make a separate call to installd to get DexOptNeeded, though
312 * that seems wasteful.
313 */
Calin Juravlef1ff36f2017-07-22 12:33:41 -0700314 public int dexOptSecondaryDexPath(ApplicationInfo info, String path,
315 PackageDexUsage.DexUseInfo dexUseInfo, DexoptOptions options) {
Calin Juravlec6540da2017-11-15 16:28:01 -0800316 if (info.uid == -1) {
317 throw new IllegalArgumentException("Dexopt for path " + path + " has invalid uid.");
318 }
Calin Juravlec22c30e2017-01-16 19:18:48 -0800319 synchronized (mInstallLock) {
Fyodor Kupolov28f28552017-05-02 12:11:02 -0700320 final long acquireTime = acquireWakeLockLI(info.uid);
Calin Juravlec22c30e2017-01-16 19:18:48 -0800321 try {
Calin Juravlef1ff36f2017-07-22 12:33:41 -0700322 return dexOptSecondaryDexPathLI(info, path, dexUseInfo, options);
Calin Juravlec22c30e2017-01-16 19:18:48 -0800323 } finally {
Fyodor Kupolov28f28552017-05-02 12:11:02 -0700324 releaseWakeLockLI(acquireTime);
Calin Juravlec22c30e2017-01-16 19:18:48 -0800325 }
326 }
327 }
328
329 @GuardedBy("mInstallLock")
Fyodor Kupolov28f28552017-05-02 12:11:02 -0700330 private long acquireWakeLockLI(final int uid) {
331 // During boot the system doesn't need to instantiate and obtain a wake lock.
332 // PowerManager might not be ready, but that doesn't mean that we can't proceed with
333 // dexopt.
334 if (!mSystemReady) {
335 return -1;
336 }
337 mDexoptWakeLock.setWorkSource(new WorkSource(uid));
338 mDexoptWakeLock.acquire(WAKELOCK_TIMEOUT_MS);
339 return SystemClock.elapsedRealtime();
340 }
341
342 @GuardedBy("mInstallLock")
343 private void releaseWakeLockLI(final long acquireTime) {
344 if (acquireTime < 0) {
345 return;
346 }
347 try {
348 if (mDexoptWakeLock.isHeld()) {
349 mDexoptWakeLock.release();
350 }
351 final long duration = SystemClock.elapsedRealtime() - acquireTime;
352 if (duration >= WAKELOCK_TIMEOUT_MS) {
353 Slog.wtf(TAG, "WakeLock " + mDexoptWakeLock.getTag()
354 + " time out. Operation took " + duration + " ms. Thread: "
355 + Thread.currentThread().getName());
356 }
357 } catch (Exception e) {
358 Slog.wtf(TAG, "Error while releasing " + mDexoptWakeLock.getTag() + " lock", e);
359 }
360 }
361
362 @GuardedBy("mInstallLock")
Calin Juravlef1ff36f2017-07-22 12:33:41 -0700363 private int dexOptSecondaryDexPathLI(ApplicationInfo info, String path,
364 PackageDexUsage.DexUseInfo dexUseInfo, DexoptOptions options) {
365 if (options.isDexoptOnlySharedDex() && !dexUseInfo.isUsedByOtherApps()) {
366 // We are asked to optimize only the dex files used by other apps and this is not
367 // on of them: skip it.
368 return DEX_OPT_SKIPPED;
369 }
370
371 String compilerFilter = getRealCompilerFilter(info, options.getCompilerFilter(),
372 dexUseInfo.isUsedByOtherApps());
Calin Juravleefb1c942017-04-04 20:31:44 -0700373 // Get the dexopt flags after getRealCompilerFilter to make sure we get the correct flags.
Nicolas Geoffray3b4359a2017-05-25 13:53:22 +0100374 // Secondary dex files are currently not compiled at boot.
Andreas Gampec041c332017-11-01 17:05:53 -0700375 int dexoptFlags = getDexFlags(info, compilerFilter, options) | DEXOPT_SECONDARY_DEX;
Calin Juravlec22c30e2017-01-16 19:18:48 -0800376 // Check the app storage and add the appropriate flags.
Calin Juravleadbadd52017-03-28 18:19:15 -0700377 if (info.deviceProtectedDataDir != null &&
378 FileUtils.contains(info.deviceProtectedDataDir, path)) {
Calin Juravlec22c30e2017-01-16 19:18:48 -0800379 dexoptFlags |= DEXOPT_STORAGE_DE;
Calin Juravleadbadd52017-03-28 18:19:15 -0700380 } else if (info.credentialProtectedDataDir != null &&
381 FileUtils.contains(info.credentialProtectedDataDir, path)) {
Calin Juravlec22c30e2017-01-16 19:18:48 -0800382 dexoptFlags |= DEXOPT_STORAGE_CE;
383 } else {
384 Slog.e(TAG, "Could not infer CE/DE storage for package " + info.packageName);
385 return DEX_OPT_FAILED;
386 }
Calin Juravlec22c30e2017-01-16 19:18:48 -0800387 Log.d(TAG, "Running dexopt on: " + path
Calin Juravlef1ff36f2017-07-22 12:33:41 -0700388 + " pkg=" + info.packageName + " isa=" + dexUseInfo.getLoaderIsas()
Calin Juravlec22c30e2017-01-16 19:18:48 -0800389 + " dexoptFlags=" + printDexoptFlags(dexoptFlags)
390 + " target-filter=" + compilerFilter);
391
Calin Juravle27f92622017-10-04 10:53:09 -0700392 // TODO(calin): b/64530081 b/66984396. Use SKIP_SHARED_LIBRARY_CHECK for the context
393 // (instead of dexUseInfo.getClassLoaderContext()) in order to compile secondary dex files
394 // in isolation (and avoid to extract/verify the main apk if it's in the class path).
395 // Note this trades correctness for performance since the resulting slow down is
396 // unacceptable in some cases until b/64530081 is fixed.
397 String classLoaderContext = SKIP_SHARED_LIBRARY_CHECK;
Calin Juravle4bc8f4d2018-02-12 12:00:44 -0800398 int reason = options.getCompilationReason();
Calin Juravlec22c30e2017-01-16 19:18:48 -0800399 try {
Calin Juravlef1ff36f2017-07-22 12:33:41 -0700400 for (String isa : dexUseInfo.getLoaderIsas()) {
Calin Juravlec22c30e2017-01-16 19:18:48 -0800401 // Reuse the same dexopt path as for the primary apks. We don't need all the
402 // arguments as some (dexopNeeded and oatDir) will be computed by installd because
403 // system server cannot read untrusted app content.
404 // TODO(calin): maybe add a separate call.
405 mInstaller.dexopt(path, info.uid, info.packageName, isa, /*dexoptNeeded*/ 0,
406 /*oatDir*/ null, dexoptFlags,
Calin Juravlef1ff36f2017-07-22 12:33:41 -0700407 compilerFilter, info.volumeUuid, classLoaderContext, info.seInfoUser,
Calin Juravlecc651942018-02-01 17:20:51 +0000408 options.isDowngrade(), info.targetSdkVersion, /*profileName*/ null,
Calin Juravle4bc8f4d2018-02-12 12:00:44 -0800409 /*dexMetadataPath*/ null, getReasonName(reason));
Calin Juravlec22c30e2017-01-16 19:18:48 -0800410 }
411
412 return DEX_OPT_PERFORMED;
413 } catch (InstallerException e) {
414 Slog.w(TAG, "Failed to dexopt", e);
415 return DEX_OPT_FAILED;
416 }
417 }
418
419 /**
Andreas Gampea8908752015-11-10 08:58:14 -0800420 * Adjust the given dexopt-needed value. Can be overridden to influence the decision to
421 * optimize or not (and in what way).
422 */
423 protected int adjustDexoptNeeded(int dexoptNeeded) {
424 return dexoptNeeded;
425 }
426
427 /**
428 * Adjust the given dexopt flags that will be passed to the installer.
429 */
430 protected int adjustDexoptFlags(int dexoptFlags) {
431 return dexoptFlags;
432 }
433
Narayan Kamath88eea9e2016-05-02 14:44:31 +0100434 /**
435 * Dumps the dexopt state of the given package {@code pkg} to the given {@code PrintWriter}.
436 */
Calin Juravle41a57a62017-08-06 19:20:19 -0700437 void dumpDexoptState(IndentingPrintWriter pw, PackageParser.Package pkg,
438 PackageDexUsage.PackageUseInfo useInfo) {
Narayan Kamath88eea9e2016-05-02 14:44:31 +0100439 final String[] instructionSets = getAppDexInstructionSets(pkg.applicationInfo);
440 final String[] dexCodeInstructionSets = getDexCodeInstructionSets(instructionSets);
441
442 final List<String> paths = pkg.getAllCodePathsExcludingResourceOnly();
443
Calin Juravle41a57a62017-08-06 19:20:19 -0700444 for (String path : paths) {
445 pw.println("path: " + path);
446 pw.increaseIndent();
447
448 for (String isa : dexCodeInstructionSets) {
449 String status = null;
450 try {
451 status = DexFile.getDexFileStatus(path, isa);
452 } catch (IOException ioe) {
453 status = "[Exception]: " + ioe.getMessage();
454 }
455 pw.println(isa + ": " + status);
456 }
457
458 if (useInfo.isUsedByOtherApps(path)) {
Calin Juravle94837e32017-09-26 13:23:00 -0700459 pw.println("used by other apps: " + useInfo.getLoadingPackages(path));
Calin Juravle41a57a62017-08-06 19:20:19 -0700460 }
461
462 Map<String, PackageDexUsage.DexUseInfo> dexUseInfoMap = useInfo.getDexUseInfoMap();
463
464 if (!dexUseInfoMap.isEmpty()) {
465 pw.println("known secondary dex files:");
466 pw.increaseIndent();
467 for (Map.Entry<String, PackageDexUsage.DexUseInfo> e : dexUseInfoMap.entrySet()) {
468 String dex = e.getKey();
469 PackageDexUsage.DexUseInfo dexUseInfo = e.getValue();
470 pw.println(dex);
471 pw.increaseIndent();
Calin Juravlecf722222017-09-18 17:40:48 -0700472 // TODO(calin): get the status of the oat file (needs installd call)
Calin Juravle41a57a62017-08-06 19:20:19 -0700473 pw.println("class loader context: " + dexUseInfo.getClassLoaderContext());
474 if (dexUseInfo.isUsedByOtherApps()) {
Calin Juravle94837e32017-09-26 13:23:00 -0700475 pw.println("used by other apps: " + dexUseInfo.getLoadingPackages());
Calin Juravle41a57a62017-08-06 19:20:19 -0700476 }
477 pw.decreaseIndent();
478 }
479 pw.decreaseIndent();
480 }
481 pw.decreaseIndent();
Narayan Kamath88eea9e2016-05-02 14:44:31 +0100482 }
483 }
484
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800485 /**
486 * Returns the compiler filter that should be used to optimize the package code.
487 * The target filter will be updated if the package code is used by other apps
488 * or if it has the safe mode flag set.
489 */
Calin Juravlec22c30e2017-01-16 19:18:48 -0800490 private String getRealCompilerFilter(ApplicationInfo info, String targetCompilerFilter,
491 boolean isUsedByOtherApps) {
492 int flags = info.flags;
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800493 boolean vmSafeMode = (flags & ApplicationInfo.FLAG_VM_SAFE_MODE) != 0;
Nicolas Geoffray11d21a292018-01-24 14:07:14 +0000494 // When pm.dexopt.priv-apps-oob is true, we only verify privileged apps.
495 if (info.isPrivilegedApp() &&
496 SystemProperties.getBoolean("pm.dexopt.priv-apps-oob", false)) {
497 return "verify";
498 }
Mathieu Chartier41e4a372016-09-02 16:36:42 -0700499 if (vmSafeMode) {
Nicolas Geoffrayd093b202017-05-03 13:11:58 +0100500 return getSafeModeCompilerFilter(targetCompilerFilter);
Mathieu Chartier41e4a372016-09-02 16:36:42 -0700501 }
502
Calin Juravlec22c30e2017-01-16 19:18:48 -0800503 if (isProfileGuidedCompilerFilter(targetCompilerFilter) && isUsedByOtherApps) {
Calin Juravlef53201f2017-09-15 11:09:29 -0700504 // If the dex files is used by other apps, apply the shared filter.
505 return PackageManagerServiceCompilerMapping.getCompilerFilterForReason(
506 PackageManagerService.REASON_SHARED);
Andreas Gampebdd30d82016-03-20 11:32:11 -0700507 }
508
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800509 return targetCompilerFilter;
Fyodor Kupolov74876572015-02-23 17:14:45 -0800510 }
511
Fyodor Kupolovb94c1652015-03-03 12:25:30 -0800512 /**
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800513 * Computes the dex flags that needs to be pass to installd for the given package and compiler
514 * filter.
515 */
Nicolas Geoffray3b4359a2017-05-25 13:53:22 +0100516 private int getDexFlags(PackageParser.Package pkg, String compilerFilter,
Andreas Gampec041c332017-11-01 17:05:53 -0700517 DexoptOptions options) {
518 return getDexFlags(pkg.applicationInfo, compilerFilter, options);
Calin Juravlec22c30e2017-01-16 19:18:48 -0800519 }
520
Andreas Gampec041c332017-11-01 17:05:53 -0700521 private int getDexFlags(ApplicationInfo info, String compilerFilter, DexoptOptions options) {
Calin Juravlec22c30e2017-01-16 19:18:48 -0800522 int flags = info.flags;
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800523 boolean debuggable = (flags & ApplicationInfo.FLAG_DEBUGGABLE) != 0;
Calin Juravleff3e4a12018-02-01 17:23:13 +0000524 // Profile guide compiled oat files should not be public unles they are based
525 // on profiles from dex metadata archives.
526 // The flag isDexoptInstallWithDexMetadata applies only on installs when we know that
527 // the user does not have an existing profile.
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800528 boolean isProfileGuidedFilter = isProfileGuidedCompilerFilter(compilerFilter);
Calin Juravleff3e4a12018-02-01 17:23:13 +0000529 boolean isPublic = !info.isForwardLocked() &&
530 (!isProfileGuidedFilter || options.isDexoptInstallWithDexMetadata());
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800531 int profileFlag = isProfileGuidedFilter ? DEXOPT_PROFILE_GUIDED : 0;
David Brazdilf7e31c02018-02-13 17:04:26 +0000532 // Some apps are executed with restrictions on hidden API usage. If this app is one
533 // of them, pass a flag to dexopt to enable the same restrictions during compilation.
534 int hiddenApiFlag = info.isAllowedToUseHiddenApi() ? 0 : DEXOPT_ENABLE_HIDDEN_API_CHECKS;
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800535 int dexFlags =
536 (isPublic ? DEXOPT_PUBLIC : 0)
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800537 | (debuggable ? DEXOPT_DEBUGGABLE : 0)
538 | profileFlag
Andreas Gampec041c332017-11-01 17:05:53 -0700539 | (options.isBootComplete() ? DEXOPT_BOOTCOMPLETE : 0)
David Brazdil464ed3d2018-01-18 15:25:18 +0000540 | (options.isDexoptIdleBackgroundJob() ? DEXOPT_IDLE_BACKGROUND_JOB : 0)
541 | hiddenApiFlag;
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800542 return adjustDexoptFlags(dexFlags);
543 }
544
545 /**
546 * Assesses if there's a need to perform dexopt on {@code path} for the given
547 * configuration (isa, compiler filter, profile).
548 */
549 private int getDexoptNeeded(String path, String isa, String compilerFilter,
Calin Juravle576e6c02017-09-12 00:58:33 -0700550 String classLoaderContext, boolean newProfile, boolean downgrade) {
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800551 int dexoptNeeded;
552 try {
Calin Juravle576e6c02017-09-12 00:58:33 -0700553 dexoptNeeded = DexFile.getDexOptNeeded(path, isa, compilerFilter, classLoaderContext,
554 newProfile, downgrade);
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800555 } catch (IOException ioe) {
556 Slog.w(TAG, "IOException reading apk: " + path, ioe);
557 return DEX_OPT_FAILED;
558 }
559 return adjustDexoptNeeded(dexoptNeeded);
560 }
561
562 /**
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800563 * Checks if there is an update on the profile information of the {@code pkg}.
564 * If the compiler filter is not profile guided the method returns false.
565 *
566 * Note that this is a "destructive" operation with side effects. Under the hood the
567 * current profile and the reference profile will be merged and subsequent calls
568 * may return a different result.
569 */
Calin Juravle6ae39fc2018-01-19 20:32:47 -0800570 private boolean isProfileUpdated(PackageParser.Package pkg, int uid, String profileName,
571 String compilerFilter) {
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800572 // Check if we are allowed to merge and if the compiler filter is profile guided.
573 if (!isProfileGuidedCompilerFilter(compilerFilter)) {
574 return false;
575 }
576 // Merge profiles. It returns whether or not there was an updated in the profile info.
577 try {
Calin Juravle6ae39fc2018-01-19 20:32:47 -0800578 return mInstaller.mergeProfiles(uid, pkg.packageName, profileName);
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800579 } catch (InstallerException e) {
580 Slog.w(TAG, "Failed to merge profiles", e);
581 }
582 return false;
583 }
584
585 /**
586 * Creates oat dir for the specified package if needed and supported.
587 * In certain cases oat directory
Fyodor Kupolovb94c1652015-03-03 12:25:30 -0800588 * <strong>cannot</strong> be created:
589 * <ul>
590 * <li>{@code pkg} is a system app, which is not updated.</li>
591 * <li>Package location is not a directory, i.e. monolithic install.</li>
592 * </ul>
593 *
Richard Uhler7b08b352015-03-25 16:25:57 -0700594 * @return Absolute path to the oat directory or null, if oat directory
595 * cannot be created.
Fyodor Kupolovb94c1652015-03-03 12:25:30 -0800596 */
597 @Nullable
Todd Kennedy27c24fb2015-09-17 16:49:25 -0700598 private String createOatDirIfSupported(PackageParser.Package pkg, String dexInstructionSet) {
Fyodor Kupolovebcac162015-09-09 15:56:45 -0700599 if (!pkg.canHaveOatDir()) {
Fyodor Kupolovb94c1652015-03-03 12:25:30 -0800600 return null;
601 }
602 File codePath = new File(pkg.codePath);
603 if (codePath.isDirectory()) {
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800604 // TODO(calin): why do we create this only if the codePath is a directory? (i.e for
605 // cluster packages). It seems that the logic for the folder creation is
606 // split between installd and here.
Fyodor Kupolovb94c1652015-03-03 12:25:30 -0800607 File oatDir = getOatDir(codePath);
Jeff Sharkeyfdeeeea2016-01-11 17:34:24 -0700608 try {
Andreas Gampea8908752015-11-10 08:58:14 -0800609 mInstaller.createOatDir(oatDir.getAbsolutePath(), dexInstructionSet);
Jeff Sharkeyfdeeeea2016-01-11 17:34:24 -0700610 } catch (InstallerException e) {
611 Slog.w(TAG, "Failed to create oat dir", e);
612 return null;
613 }
Richard Uhler7b08b352015-03-25 16:25:57 -0700614 return oatDir.getAbsolutePath();
Fyodor Kupolovb94c1652015-03-03 12:25:30 -0800615 }
616 return null;
617 }
618
619 static File getOatDir(File codePath) {
620 return new File(codePath, OAT_DIR_NAME);
621 }
622
Fyodor Kupolova627c092015-05-05 18:44:39 -0700623 void systemReady() {
624 mSystemReady = true;
625 }
Andreas Gampea8908752015-11-10 08:58:14 -0800626
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800627 private String printDexoptFlags(int flags) {
628 ArrayList<String> flagsList = new ArrayList<>();
629
630 if ((flags & DEXOPT_BOOTCOMPLETE) == DEXOPT_BOOTCOMPLETE) {
631 flagsList.add("boot_complete");
632 }
633 if ((flags & DEXOPT_DEBUGGABLE) == DEXOPT_DEBUGGABLE) {
634 flagsList.add("debuggable");
635 }
636 if ((flags & DEXOPT_PROFILE_GUIDED) == DEXOPT_PROFILE_GUIDED) {
637 flagsList.add("profile_guided");
638 }
639 if ((flags & DEXOPT_PUBLIC) == DEXOPT_PUBLIC) {
640 flagsList.add("public");
641 }
Calin Juravlec22c30e2017-01-16 19:18:48 -0800642 if ((flags & DEXOPT_SECONDARY_DEX) == DEXOPT_SECONDARY_DEX) {
643 flagsList.add("secondary");
644 }
645 if ((flags & DEXOPT_FORCE) == DEXOPT_FORCE) {
646 flagsList.add("force");
647 }
648 if ((flags & DEXOPT_STORAGE_CE) == DEXOPT_STORAGE_CE) {
649 flagsList.add("storage_ce");
650 }
651 if ((flags & DEXOPT_STORAGE_DE) == DEXOPT_STORAGE_DE) {
652 flagsList.add("storage_de");
653 }
David Sehr2118ec42017-10-25 14:28:29 -0700654 if ((flags & DEXOPT_IDLE_BACKGROUND_JOB) == DEXOPT_IDLE_BACKGROUND_JOB) {
655 flagsList.add("idle_background_job");
656 }
David Brazdilf7e31c02018-02-13 17:04:26 +0000657 if ((flags & DEXOPT_ENABLE_HIDDEN_API_CHECKS) == DEXOPT_ENABLE_HIDDEN_API_CHECKS) {
658 flagsList.add("enable_hidden_api_checks");
David Brazdil464ed3d2018-01-18 15:25:18 +0000659 }
Calin Juravlec22c30e2017-01-16 19:18:48 -0800660
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800661 return String.join(",", flagsList);
662 }
663
Andreas Gampea8908752015-11-10 08:58:14 -0800664 /**
665 * A specialized PackageDexOptimizer that overrides already-installed checks, forcing a
666 * dexopt path.
667 */
668 public static class ForcedUpdatePackageDexOptimizer extends PackageDexOptimizer {
669
670 public ForcedUpdatePackageDexOptimizer(Installer installer, Object installLock,
671 Context context, String wakeLockTag) {
672 super(installer, installLock, context, wakeLockTag);
673 }
674
675 public ForcedUpdatePackageDexOptimizer(PackageDexOptimizer from) {
676 super(from);
677 }
678
679 @Override
Andreas Gampea8908752015-11-10 08:58:14 -0800680 protected int adjustDexoptNeeded(int dexoptNeeded) {
Nicolas Geoffray96d12a92017-05-03 11:51:53 +0100681 if (dexoptNeeded == DexFile.NO_DEXOPT_NEEDED) {
682 // Ensure compilation by pretending a compiler filter change on the
683 // apk/odex location (the reason for the '-'. A positive value means
684 // the 'oat' location).
685 return -DexFile.DEX2OAT_FOR_FILTER;
686 }
687 return dexoptNeeded;
Andreas Gampea8908752015-11-10 08:58:14 -0800688 }
Calin Juravlec22c30e2017-01-16 19:18:48 -0800689
690 @Override
691 protected int adjustDexoptFlags(int flags) {
692 // Add DEXOPT_FORCE flag to signal installd that it should force compilation
693 // and discard dexoptanalyzer result.
694 return flags | DEXOPT_FORCE;
695 }
Andreas Gampea8908752015-11-10 08:58:14 -0800696 }
Fyodor Kupolov74876572015-02-23 17:14:45 -0800697}