blob: cde8cb7405905c5b4143fb397fe6cf3c1c87afb0 [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 Juravleadbadd52017-03-28 18:19:15 -070024import android.os.FileUtils;
Fyodor Kupolova627c092015-05-05 18:44:39 -070025import android.os.PowerManager;
Fyodor Kupolov28f28552017-05-02 12:11:02 -070026import android.os.SystemClock;
Nicolas Geoffray20a894e2017-09-08 13:01:40 +010027import android.os.SystemProperties;
Fyodor Kupolov74876572015-02-23 17:14:45 -080028import android.os.UserHandle;
Fyodor Kupolova627c092015-05-05 18:44:39 -070029import android.os.WorkSource;
Fyodor Kupolov74876572015-02-23 17:14:45 -080030import android.util.Log;
31import android.util.Slog;
32
Calin Juravle2d4b6ad72017-01-04 13:22:14 -080033import com.android.internal.annotations.GuardedBy;
Narayan Kamath88eea9e2016-05-02 14:44:31 +010034import com.android.internal.util.IndentingPrintWriter;
Jeff Sharkey740f5232016-12-09 14:31:26 -070035import com.android.server.pm.Installer.InstallerException;
Calin Juravle3b74c412017-08-03 19:48:37 -070036import com.android.server.pm.dex.DexManager;
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 Brazdil464ed3d2018-01-18 15:25:18 +000059import static com.android.server.pm.Installer.DEXOPT_DISABLE_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
Nicolas Geoffrayd093b202017-05-03 13:11:58 +010065import static dalvik.system.DexFile.getNonProfileGuidedCompilerFilter;
66import static dalvik.system.DexFile.getSafeModeCompilerFilter;
Calin Juravle2d4b6ad72017-01-04 13:22:14 -080067import static dalvik.system.DexFile.isProfileGuidedCompilerFilter;
Fyodor Kupolov74876572015-02-23 17:14:45 -080068
69/**
70 * Helper class for running dexopt command on packages.
71 */
Calin Juravlec22c30e2017-01-16 19:18:48 -080072public class PackageDexOptimizer {
Fyodor Kupolovb94c1652015-03-03 12:25:30 -080073 private static final String TAG = "PackageManager.DexOptimizer";
74 static final String OAT_DIR_NAME = "oat";
75 // TODO b/19550105 Remove error codes and use exceptions
Calin Juravlec22c30e2017-01-16 19:18:48 -080076 public static final int DEX_OPT_SKIPPED = 0;
77 public static final int DEX_OPT_PERFORMED = 1;
78 public static final int DEX_OPT_FAILED = -1;
Fyodor Kupolov28f28552017-05-02 12:11:02 -070079 // One minute over PM WATCHDOG_TIMEOUT
80 private static final long WAKELOCK_TIMEOUT_MS = WATCHDOG_TIMEOUT + 1000 * 60;
Fyodor Kupolov74876572015-02-23 17:14:45 -080081
Calin Juravleaae35762017-02-14 17:53:13 -080082 /** Special library name that skips shared libraries check during compilation. */
83 public static final String SKIP_SHARED_LIBRARY_CHECK = "&";
84
Fyodor Kupolov28f28552017-05-02 12:11:02 -070085 @GuardedBy("mInstallLock")
Andreas Gampea8908752015-11-10 08:58:14 -080086 private final Installer mInstaller;
87 private final Object mInstallLock;
Fyodor Kupolov74876572015-02-23 17:14:45 -080088
Fyodor Kupolov28f28552017-05-02 12:11:02 -070089 @GuardedBy("mInstallLock")
Fyodor Kupolova627c092015-05-05 18:44:39 -070090 private final PowerManager.WakeLock mDexoptWakeLock;
91 private volatile boolean mSystemReady;
92
Andreas Gampea8908752015-11-10 08:58:14 -080093 PackageDexOptimizer(Installer installer, Object installLock, Context context,
94 String wakeLockTag) {
95 this.mInstaller = installer;
96 this.mInstallLock = installLock;
97
98 PowerManager powerManager = (PowerManager)context.getSystemService(Context.POWER_SERVICE);
99 mDexoptWakeLock = powerManager.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK, wakeLockTag);
100 }
101
102 protected PackageDexOptimizer(PackageDexOptimizer from) {
103 this.mInstaller = from.mInstaller;
104 this.mInstallLock = from.mInstallLock;
105 this.mDexoptWakeLock = from.mDexoptWakeLock;
106 this.mSystemReady = from.mSystemReady;
Fyodor Kupolov74876572015-02-23 17:14:45 -0800107 }
108
Calin Juravledb4a79a2015-12-23 18:55:08 +0200109 static boolean canOptimizePackage(PackageParser.Package pkg) {
Nicolas Geoffray20a894e2017-09-08 13:01:40 +0100110 // We do not dexopt a package with no code.
111 if ((pkg.applicationInfo.flags & ApplicationInfo.FLAG_HAS_CODE) == 0) {
112 return false;
113 }
114
Nicolas Geoffray20a894e2017-09-08 13:01:40 +0100115 return true;
Calin Juravledb4a79a2015-12-23 18:55:08 +0200116 }
117
Fyodor Kupolov74876572015-02-23 17:14:45 -0800118 /**
119 * Performs dexopt on all code paths and libraries of the specified package for specified
120 * instruction sets.
121 *
Andreas Gampea8908752015-11-10 08:58:14 -0800122 * <p>Calls to {@link com.android.server.pm.Installer#dexopt} on {@link #mInstaller} are
123 * synchronized on {@link #mInstallLock}.
Fyodor Kupolov74876572015-02-23 17:14:45 -0800124 */
Jeff Haoc7b94822016-03-16 15:56:07 -0700125 int performDexOpt(PackageParser.Package pkg, String[] sharedLibraries,
Calin Juravle1d0e83d2017-07-17 15:12:01 -0700126 String[] instructionSets, CompilerStats.PackageStats packageStats,
Calin Juravle3b74c412017-08-03 19:48:37 -0700127 PackageDexUsage.PackageUseInfo packageUseInfo, DexoptOptions options) {
Calin Juravlec6540da2017-11-15 16:28:01 -0800128 if (pkg.applicationInfo.uid == -1) {
129 throw new IllegalArgumentException("Dexopt for " + pkg.packageName
130 + " has invalid uid.");
131 }
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800132 if (!canOptimizePackage(pkg)) {
133 return DEX_OPT_SKIPPED;
134 }
Andreas Gampea8908752015-11-10 08:58:14 -0800135 synchronized (mInstallLock) {
Fyodor Kupolov28f28552017-05-02 12:11:02 -0700136 final long acquireTime = acquireWakeLockLI(pkg.applicationInfo.uid);
Fyodor Kupolova627c092015-05-05 18:44:39 -0700137 try {
Calin Juravle1d0e83d2017-07-17 15:12:01 -0700138 return performDexOptLI(pkg, sharedLibraries, instructionSets,
Calin Juravle3b74c412017-08-03 19:48:37 -0700139 packageStats, packageUseInfo, options);
Fyodor Kupolova627c092015-05-05 18:44:39 -0700140 } finally {
Fyodor Kupolov28f28552017-05-02 12:11:02 -0700141 releaseWakeLockLI(acquireTime);
Fyodor Kupolova627c092015-05-05 18:44:39 -0700142 }
Fyodor Kupolov74876572015-02-23 17:14:45 -0800143 }
144 }
145
Andreas Gampea8908752015-11-10 08:58:14 -0800146 /**
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800147 * Performs dexopt on all code paths of the given package.
148 * It assumes the install lock is held.
149 */
150 @GuardedBy("mInstallLock")
151 private int performDexOptLI(PackageParser.Package pkg, String[] sharedLibraries,
Calin Juravle1d0e83d2017-07-17 15:12:01 -0700152 String[] targetInstructionSets, CompilerStats.PackageStats packageStats,
Calin Juravle3b74c412017-08-03 19:48:37 -0700153 PackageDexUsage.PackageUseInfo packageUseInfo, DexoptOptions options) {
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800154 final String[] instructionSets = targetInstructionSets != null ?
155 targetInstructionSets : getAppDexInstructionSets(pkg.applicationInfo);
156 final String[] dexCodeInstructionSets = getDexCodeInstructionSets(instructionSets);
Jeff Hao5def5e52017-04-19 14:42:16 -0700157 final List<String> paths = pkg.getAllCodePaths();
Jeff Sharkeya73e1652017-11-15 19:07:14 -0700158
159 int sharedGid = UserHandle.getSharedAppGid(pkg.applicationInfo.uid);
160 if (sharedGid == -1) {
161 Slog.wtf(TAG, "Well this is awkward; package " + pkg.applicationInfo.name + " had UID "
162 + pkg.applicationInfo.uid, new Throwable());
163 sharedGid = android.os.Process.NOBODY_UID;
164 }
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800165
Calin Juravle19da1cf2017-07-12 18:52:49 -0700166 // Get the class loader context dependencies.
167 // For each code path in the package, this array contains the class loader context that
168 // needs to be passed to dexopt in order to ensure correct optimizations.
Calin Juravleda098152017-09-01 17:30:01 -0700169 boolean[] pathsWithCode = new boolean[paths.size()];
170 pathsWithCode[0] = (pkg.applicationInfo.flags & ApplicationInfo.FLAG_HAS_CODE) != 0;
171 for (int i = 1; i < paths.size(); i++) {
172 pathsWithCode[i] = (pkg.splitFlags[i - 1] & ApplicationInfo.FLAG_HAS_CODE) != 0;
173 }
Calin Juravle19da1cf2017-07-12 18:52:49 -0700174 String[] classLoaderContexts = DexoptUtils.getClassLoaderContexts(
Calin Juravleda098152017-09-01 17:30:01 -0700175 pkg.applicationInfo, sharedLibraries, pathsWithCode);
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800176
Calin Juravle4c2b9552017-08-10 17:23:00 -0700177 // Sanity check that we do not call dexopt with inconsistent data.
178 if (paths.size() != classLoaderContexts.length) {
179 String[] splitCodePaths = pkg.applicationInfo.getSplitCodePaths();
180 throw new IllegalStateException("Inconsistent information "
181 + "between PackageParser.Package and its ApplicationInfo. "
182 + "pkg.getAllCodePaths=" + paths
183 + " pkg.applicationInfo.getBaseCodePath=" + pkg.applicationInfo.getBaseCodePath()
184 + " pkg.applicationInfo.getSplitCodePaths="
185 + (splitCodePaths == null ? "null" : Arrays.toString(splitCodePaths)));
186 }
187
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800188 int result = DEX_OPT_SKIPPED;
Jeff Hao5def5e52017-04-19 14:42:16 -0700189 for (int i = 0; i < paths.size(); i++) {
190 // Skip paths that have no code.
Calin Juravleda098152017-09-01 17:30:01 -0700191 if (!pathsWithCode[i]) {
Jeff Hao5def5e52017-04-19 14:42:16 -0700192 continue;
193 }
Calin Juravleda098152017-09-01 17:30:01 -0700194 if (classLoaderContexts[i] == null) {
195 throw new IllegalStateException("Inconsistent information in the "
196 + "package structure. A split is marked to contain code "
197 + "but has no dependency listed. Index=" + i + " path=" + paths.get(i));
198 }
199
Jeff Hao5def5e52017-04-19 14:42:16 -0700200 // Append shared libraries with split dependencies for this split.
201 String path = paths.get(i);
Calin Juravleb6f844d2017-07-17 15:23:21 -0700202 if (options.getSplitName() != null) {
203 // We are asked to compile only a specific split. Check that the current path is
204 // what we are looking for.
205 if (!options.getSplitName().equals(new File(path).getName())) {
206 continue;
207 }
208 }
209
Calin Juravle6ae39fc2018-01-19 20:32:47 -0800210 String profileName = ArtManager.getProfileName(i == 0 ? null : pkg.splitNames[i - 1]);
211
Calin Juravle3b74c412017-08-03 19:48:37 -0700212 final boolean isUsedByOtherApps = options.isDexoptAsSharedLibrary()
Calin Juravle52a452c2017-08-04 01:42:17 -0700213 || packageUseInfo.isUsedByOtherApps(path);
Calin Juravle3b74c412017-08-03 19:48:37 -0700214 final String compilerFilter = getRealCompilerFilter(pkg.applicationInfo,
215 options.getCompilerFilter(), isUsedByOtherApps);
216 final boolean profileUpdated = options.isCheckForProfileUpdates() &&
Calin Juravle6ae39fc2018-01-19 20:32:47 -0800217 isProfileUpdated(pkg, sharedGid, profileName, compilerFilter);
Calin Juravle3b74c412017-08-03 19:48:37 -0700218
219 // Get the dexopt flags after getRealCompilerFilter to make sure we get the correct
220 // flags.
Andreas Gampec041c332017-11-01 17:05:53 -0700221 final int dexoptFlags = getDexFlags(pkg, compilerFilter, options);
Calin Juravle3b74c412017-08-03 19:48:37 -0700222
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800223 for (String dexCodeIsa : dexCodeInstructionSets) {
Calin Juravle19da1cf2017-07-12 18:52:49 -0700224 int newResult = dexOptPath(pkg, path, dexCodeIsa, compilerFilter,
225 profileUpdated, classLoaderContexts[i], dexoptFlags, sharedGid,
Calin Juravle6ae39fc2018-01-19 20:32:47 -0800226 packageStats, options.isDowngrade(), profileName);
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800227 // The end result is:
228 // - FAILED if any path failed,
229 // - PERFORMED if at least one path needed compilation,
230 // - SKIPPED when all paths are up to date
231 if ((result != DEX_OPT_FAILED) && (newResult != DEX_OPT_SKIPPED)) {
232 result = newResult;
233 }
234 }
235 }
236 return result;
237 }
238
239 /**
240 * Performs dexopt on the {@code path} belonging to the package {@code pkg}.
241 *
242 * @return
243 * DEX_OPT_FAILED if there was any exception during dexopt
244 * DEX_OPT_PERFORMED if dexopt was performed successfully on the given path.
245 * DEX_OPT_SKIPPED if the path does not need to be deopt-ed.
246 */
247 @GuardedBy("mInstallLock")
248 private int dexOptPath(PackageParser.Package pkg, String path, String isa,
Calin Juravle576e6c02017-09-12 00:58:33 -0700249 String compilerFilter, boolean profileUpdated, String classLoaderContext,
Calin Juravle6ae39fc2018-01-19 20:32:47 -0800250 int dexoptFlags, int uid, CompilerStats.PackageStats packageStats, boolean downgrade,
251 String profileName) {
Calin Juravle576e6c02017-09-12 00:58:33 -0700252 int dexoptNeeded = getDexoptNeeded(path, isa, compilerFilter, classLoaderContext,
253 profileUpdated, downgrade);
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800254 if (Math.abs(dexoptNeeded) == DexFile.NO_DEXOPT_NEEDED) {
255 return DEX_OPT_SKIPPED;
256 }
257
258 // TODO(calin): there's no need to try to create the oat dir over and over again,
259 // especially since it involve an extra installd call. We should create
260 // if (if supported) on the fly during the dexopt call.
261 String oatDir = createOatDirIfSupported(pkg, isa);
262
263 Log.i(TAG, "Running dexopt (dexoptNeeded=" + dexoptNeeded + ") on: " + path
264 + " pkg=" + pkg.applicationInfo.packageName + " isa=" + isa
265 + " dexoptFlags=" + printDexoptFlags(dexoptFlags)
Calin Juravle576e6c02017-09-12 00:58:33 -0700266 + " targetFilter=" + compilerFilter + " oatDir=" + oatDir
267 + " classLoaderContext=" + classLoaderContext);
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800268
269 try {
270 long startTime = System.currentTimeMillis();
271
Shubham Ajmera246dccf2017-05-24 17:46:36 -0700272 // TODO: Consider adding 2 different APIs for primary and secondary dexopt.
273 // installd only uses downgrade flag for secondary dex files and ignores it for
274 // primary dex files.
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800275 mInstaller.dexopt(path, uid, pkg.packageName, isa, dexoptNeeded, oatDir, dexoptFlags,
Calin Juravle576e6c02017-09-12 00:58:33 -0700276 compilerFilter, pkg.volumeUuid, classLoaderContext, pkg.applicationInfo.seInfo,
Calin Juravle6ae39fc2018-01-19 20:32:47 -0800277 false /* downgrade*/, pkg.applicationInfo.targetSdkVersion,
278 profileName);
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800279
280 if (packageStats != null) {
281 long endTime = System.currentTimeMillis();
282 packageStats.setCompileTime(path, (int)(endTime - startTime));
283 }
284 return DEX_OPT_PERFORMED;
285 } catch (InstallerException e) {
286 Slog.w(TAG, "Failed to dexopt", e);
287 return DEX_OPT_FAILED;
288 }
289 }
290
291 /**
Calin Juravlec22c30e2017-01-16 19:18:48 -0800292 * Performs dexopt on the secondary dex {@code path} belonging to the app {@code info}.
293 *
294 * @return
295 * DEX_OPT_FAILED if there was any exception during dexopt
296 * DEX_OPT_PERFORMED if dexopt was performed successfully on the given path.
297 * NOTE that DEX_OPT_PERFORMED for secondary dex files includes the case when the dex file
298 * didn't need an update. That's because at the moment we don't get more than success/failure
299 * from installd.
300 *
301 * TODO(calin): Consider adding return codes to installd dexopt invocation (rather than
302 * throwing exceptions). Or maybe make a separate call to installd to get DexOptNeeded, though
303 * that seems wasteful.
304 */
Calin Juravlef1ff36f2017-07-22 12:33:41 -0700305 public int dexOptSecondaryDexPath(ApplicationInfo info, String path,
306 PackageDexUsage.DexUseInfo dexUseInfo, DexoptOptions options) {
Calin Juravlec6540da2017-11-15 16:28:01 -0800307 if (info.uid == -1) {
308 throw new IllegalArgumentException("Dexopt for path " + path + " has invalid uid.");
309 }
Calin Juravlec22c30e2017-01-16 19:18:48 -0800310 synchronized (mInstallLock) {
Fyodor Kupolov28f28552017-05-02 12:11:02 -0700311 final long acquireTime = acquireWakeLockLI(info.uid);
Calin Juravlec22c30e2017-01-16 19:18:48 -0800312 try {
Calin Juravlef1ff36f2017-07-22 12:33:41 -0700313 return dexOptSecondaryDexPathLI(info, path, dexUseInfo, options);
Calin Juravlec22c30e2017-01-16 19:18:48 -0800314 } finally {
Fyodor Kupolov28f28552017-05-02 12:11:02 -0700315 releaseWakeLockLI(acquireTime);
Calin Juravlec22c30e2017-01-16 19:18:48 -0800316 }
317 }
318 }
319
320 @GuardedBy("mInstallLock")
Fyodor Kupolov28f28552017-05-02 12:11:02 -0700321 private long acquireWakeLockLI(final int uid) {
322 // During boot the system doesn't need to instantiate and obtain a wake lock.
323 // PowerManager might not be ready, but that doesn't mean that we can't proceed with
324 // dexopt.
325 if (!mSystemReady) {
326 return -1;
327 }
328 mDexoptWakeLock.setWorkSource(new WorkSource(uid));
329 mDexoptWakeLock.acquire(WAKELOCK_TIMEOUT_MS);
330 return SystemClock.elapsedRealtime();
331 }
332
333 @GuardedBy("mInstallLock")
334 private void releaseWakeLockLI(final long acquireTime) {
335 if (acquireTime < 0) {
336 return;
337 }
338 try {
339 if (mDexoptWakeLock.isHeld()) {
340 mDexoptWakeLock.release();
341 }
342 final long duration = SystemClock.elapsedRealtime() - acquireTime;
343 if (duration >= WAKELOCK_TIMEOUT_MS) {
344 Slog.wtf(TAG, "WakeLock " + mDexoptWakeLock.getTag()
345 + " time out. Operation took " + duration + " ms. Thread: "
346 + Thread.currentThread().getName());
347 }
348 } catch (Exception e) {
349 Slog.wtf(TAG, "Error while releasing " + mDexoptWakeLock.getTag() + " lock", e);
350 }
351 }
352
353 @GuardedBy("mInstallLock")
Calin Juravlef1ff36f2017-07-22 12:33:41 -0700354 private int dexOptSecondaryDexPathLI(ApplicationInfo info, String path,
355 PackageDexUsage.DexUseInfo dexUseInfo, DexoptOptions options) {
356 if (options.isDexoptOnlySharedDex() && !dexUseInfo.isUsedByOtherApps()) {
357 // We are asked to optimize only the dex files used by other apps and this is not
358 // on of them: skip it.
359 return DEX_OPT_SKIPPED;
360 }
361
362 String compilerFilter = getRealCompilerFilter(info, options.getCompilerFilter(),
363 dexUseInfo.isUsedByOtherApps());
Calin Juravleefb1c942017-04-04 20:31:44 -0700364 // Get the dexopt flags after getRealCompilerFilter to make sure we get the correct flags.
Nicolas Geoffray3b4359a2017-05-25 13:53:22 +0100365 // Secondary dex files are currently not compiled at boot.
Andreas Gampec041c332017-11-01 17:05:53 -0700366 int dexoptFlags = getDexFlags(info, compilerFilter, options) | DEXOPT_SECONDARY_DEX;
Calin Juravlec22c30e2017-01-16 19:18:48 -0800367 // Check the app storage and add the appropriate flags.
Calin Juravleadbadd52017-03-28 18:19:15 -0700368 if (info.deviceProtectedDataDir != null &&
369 FileUtils.contains(info.deviceProtectedDataDir, path)) {
Calin Juravlec22c30e2017-01-16 19:18:48 -0800370 dexoptFlags |= DEXOPT_STORAGE_DE;
Calin Juravleadbadd52017-03-28 18:19:15 -0700371 } else if (info.credentialProtectedDataDir != null &&
372 FileUtils.contains(info.credentialProtectedDataDir, path)) {
Calin Juravlec22c30e2017-01-16 19:18:48 -0800373 dexoptFlags |= DEXOPT_STORAGE_CE;
374 } else {
375 Slog.e(TAG, "Could not infer CE/DE storage for package " + info.packageName);
376 return DEX_OPT_FAILED;
377 }
Calin Juravlec22c30e2017-01-16 19:18:48 -0800378 Log.d(TAG, "Running dexopt on: " + path
Calin Juravlef1ff36f2017-07-22 12:33:41 -0700379 + " pkg=" + info.packageName + " isa=" + dexUseInfo.getLoaderIsas()
Calin Juravlec22c30e2017-01-16 19:18:48 -0800380 + " dexoptFlags=" + printDexoptFlags(dexoptFlags)
381 + " target-filter=" + compilerFilter);
382
Calin Juravle27f92622017-10-04 10:53:09 -0700383 // TODO(calin): b/64530081 b/66984396. Use SKIP_SHARED_LIBRARY_CHECK for the context
384 // (instead of dexUseInfo.getClassLoaderContext()) in order to compile secondary dex files
385 // in isolation (and avoid to extract/verify the main apk if it's in the class path).
386 // Note this trades correctness for performance since the resulting slow down is
387 // unacceptable in some cases until b/64530081 is fixed.
388 String classLoaderContext = SKIP_SHARED_LIBRARY_CHECK;
389
Calin Juravlec22c30e2017-01-16 19:18:48 -0800390 try {
Calin Juravlef1ff36f2017-07-22 12:33:41 -0700391 for (String isa : dexUseInfo.getLoaderIsas()) {
Calin Juravlec22c30e2017-01-16 19:18:48 -0800392 // Reuse the same dexopt path as for the primary apks. We don't need all the
393 // arguments as some (dexopNeeded and oatDir) will be computed by installd because
394 // system server cannot read untrusted app content.
395 // TODO(calin): maybe add a separate call.
396 mInstaller.dexopt(path, info.uid, info.packageName, isa, /*dexoptNeeded*/ 0,
397 /*oatDir*/ null, dexoptFlags,
Calin Juravlef1ff36f2017-07-22 12:33:41 -0700398 compilerFilter, info.volumeUuid, classLoaderContext, info.seInfoUser,
Calin Juravle6ae39fc2018-01-19 20:32:47 -0800399 options.isDowngrade(), info.targetSdkVersion, /*profileName*/ null);
Calin Juravlec22c30e2017-01-16 19:18:48 -0800400 }
401
402 return DEX_OPT_PERFORMED;
403 } catch (InstallerException e) {
404 Slog.w(TAG, "Failed to dexopt", e);
405 return DEX_OPT_FAILED;
406 }
407 }
408
409 /**
Andreas Gampea8908752015-11-10 08:58:14 -0800410 * Adjust the given dexopt-needed value. Can be overridden to influence the decision to
411 * optimize or not (and in what way).
412 */
413 protected int adjustDexoptNeeded(int dexoptNeeded) {
414 return dexoptNeeded;
415 }
416
417 /**
418 * Adjust the given dexopt flags that will be passed to the installer.
419 */
420 protected int adjustDexoptFlags(int dexoptFlags) {
421 return dexoptFlags;
422 }
423
Narayan Kamath88eea9e2016-05-02 14:44:31 +0100424 /**
425 * Dumps the dexopt state of the given package {@code pkg} to the given {@code PrintWriter}.
426 */
Calin Juravle41a57a62017-08-06 19:20:19 -0700427 void dumpDexoptState(IndentingPrintWriter pw, PackageParser.Package pkg,
428 PackageDexUsage.PackageUseInfo useInfo) {
Narayan Kamath88eea9e2016-05-02 14:44:31 +0100429 final String[] instructionSets = getAppDexInstructionSets(pkg.applicationInfo);
430 final String[] dexCodeInstructionSets = getDexCodeInstructionSets(instructionSets);
431
432 final List<String> paths = pkg.getAllCodePathsExcludingResourceOnly();
433
Calin Juravle41a57a62017-08-06 19:20:19 -0700434 for (String path : paths) {
435 pw.println("path: " + path);
436 pw.increaseIndent();
437
438 for (String isa : dexCodeInstructionSets) {
439 String status = null;
440 try {
441 status = DexFile.getDexFileStatus(path, isa);
442 } catch (IOException ioe) {
443 status = "[Exception]: " + ioe.getMessage();
444 }
445 pw.println(isa + ": " + status);
446 }
447
448 if (useInfo.isUsedByOtherApps(path)) {
Calin Juravle94837e32017-09-26 13:23:00 -0700449 pw.println("used by other apps: " + useInfo.getLoadingPackages(path));
Calin Juravle41a57a62017-08-06 19:20:19 -0700450 }
451
452 Map<String, PackageDexUsage.DexUseInfo> dexUseInfoMap = useInfo.getDexUseInfoMap();
453
454 if (!dexUseInfoMap.isEmpty()) {
455 pw.println("known secondary dex files:");
456 pw.increaseIndent();
457 for (Map.Entry<String, PackageDexUsage.DexUseInfo> e : dexUseInfoMap.entrySet()) {
458 String dex = e.getKey();
459 PackageDexUsage.DexUseInfo dexUseInfo = e.getValue();
460 pw.println(dex);
461 pw.increaseIndent();
Calin Juravlecf722222017-09-18 17:40:48 -0700462 // TODO(calin): get the status of the oat file (needs installd call)
Calin Juravle41a57a62017-08-06 19:20:19 -0700463 pw.println("class loader context: " + dexUseInfo.getClassLoaderContext());
464 if (dexUseInfo.isUsedByOtherApps()) {
Calin Juravle94837e32017-09-26 13:23:00 -0700465 pw.println("used by other apps: " + dexUseInfo.getLoadingPackages());
Calin Juravle41a57a62017-08-06 19:20:19 -0700466 }
467 pw.decreaseIndent();
468 }
469 pw.decreaseIndent();
470 }
471 pw.decreaseIndent();
Narayan Kamath88eea9e2016-05-02 14:44:31 +0100472 }
473 }
474
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800475 /**
476 * Returns the compiler filter that should be used to optimize the package code.
477 * The target filter will be updated if the package code is used by other apps
478 * or if it has the safe mode flag set.
479 */
Calin Juravlec22c30e2017-01-16 19:18:48 -0800480 private String getRealCompilerFilter(ApplicationInfo info, String targetCompilerFilter,
481 boolean isUsedByOtherApps) {
482 int flags = info.flags;
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800483 boolean vmSafeMode = (flags & ApplicationInfo.FLAG_VM_SAFE_MODE) != 0;
Nicolas Geoffray11d21a292018-01-24 14:07:14 +0000484 // When pm.dexopt.priv-apps-oob is true, we only verify privileged apps.
485 if (info.isPrivilegedApp() &&
486 SystemProperties.getBoolean("pm.dexopt.priv-apps-oob", false)) {
487 return "verify";
488 }
Mathieu Chartier41e4a372016-09-02 16:36:42 -0700489 if (vmSafeMode) {
Nicolas Geoffrayd093b202017-05-03 13:11:58 +0100490 return getSafeModeCompilerFilter(targetCompilerFilter);
Mathieu Chartier41e4a372016-09-02 16:36:42 -0700491 }
492
Calin Juravlec22c30e2017-01-16 19:18:48 -0800493 if (isProfileGuidedCompilerFilter(targetCompilerFilter) && isUsedByOtherApps) {
Calin Juravlef53201f2017-09-15 11:09:29 -0700494 // If the dex files is used by other apps, apply the shared filter.
495 return PackageManagerServiceCompilerMapping.getCompilerFilterForReason(
496 PackageManagerService.REASON_SHARED);
Andreas Gampebdd30d82016-03-20 11:32:11 -0700497 }
498
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800499 return targetCompilerFilter;
Fyodor Kupolov74876572015-02-23 17:14:45 -0800500 }
501
Fyodor Kupolovb94c1652015-03-03 12:25:30 -0800502 /**
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800503 * Computes the dex flags that needs to be pass to installd for the given package and compiler
504 * filter.
505 */
Nicolas Geoffray3b4359a2017-05-25 13:53:22 +0100506 private int getDexFlags(PackageParser.Package pkg, String compilerFilter,
Andreas Gampec041c332017-11-01 17:05:53 -0700507 DexoptOptions options) {
508 return getDexFlags(pkg.applicationInfo, compilerFilter, options);
Calin Juravlec22c30e2017-01-16 19:18:48 -0800509 }
510
Andreas Gampec041c332017-11-01 17:05:53 -0700511 private int getDexFlags(ApplicationInfo info, String compilerFilter, DexoptOptions options) {
Calin Juravlec22c30e2017-01-16 19:18:48 -0800512 int flags = info.flags;
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800513 boolean debuggable = (flags & ApplicationInfo.FLAG_DEBUGGABLE) != 0;
514 // Profile guide compiled oat files should not be public.
515 boolean isProfileGuidedFilter = isProfileGuidedCompilerFilter(compilerFilter);
Calin Juravlec22c30e2017-01-16 19:18:48 -0800516 boolean isPublic = !info.isForwardLocked() && !isProfileGuidedFilter;
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800517 int profileFlag = isProfileGuidedFilter ? DEXOPT_PROFILE_GUIDED : 0;
David Brazdil464ed3d2018-01-18 15:25:18 +0000518 // System apps are invoked with a runtime flag which exempts them from
519 // restrictions on hidden API usage. We dexopt with the same runtime flag
520 // otherwise offending methods would have to be re-verified at runtime
521 // and we want to avoid the performance overhead of that.
522 int hiddenApiFlag = info.isAllowedToUseHiddenApi() ? DEXOPT_DISABLE_HIDDEN_API_CHECKS : 0;
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800523 int dexFlags =
524 (isPublic ? DEXOPT_PUBLIC : 0)
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800525 | (debuggable ? DEXOPT_DEBUGGABLE : 0)
526 | profileFlag
Andreas Gampec041c332017-11-01 17:05:53 -0700527 | (options.isBootComplete() ? DEXOPT_BOOTCOMPLETE : 0)
David Brazdil464ed3d2018-01-18 15:25:18 +0000528 | (options.isDexoptIdleBackgroundJob() ? DEXOPT_IDLE_BACKGROUND_JOB : 0)
529 | hiddenApiFlag;
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800530 return adjustDexoptFlags(dexFlags);
531 }
532
533 /**
534 * Assesses if there's a need to perform dexopt on {@code path} for the given
535 * configuration (isa, compiler filter, profile).
536 */
537 private int getDexoptNeeded(String path, String isa, String compilerFilter,
Calin Juravle576e6c02017-09-12 00:58:33 -0700538 String classLoaderContext, boolean newProfile, boolean downgrade) {
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800539 int dexoptNeeded;
540 try {
Calin Juravle576e6c02017-09-12 00:58:33 -0700541 dexoptNeeded = DexFile.getDexOptNeeded(path, isa, compilerFilter, classLoaderContext,
542 newProfile, downgrade);
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800543 } catch (IOException ioe) {
544 Slog.w(TAG, "IOException reading apk: " + path, ioe);
545 return DEX_OPT_FAILED;
546 }
547 return adjustDexoptNeeded(dexoptNeeded);
548 }
549
550 /**
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800551 * Checks if there is an update on the profile information of the {@code pkg}.
552 * If the compiler filter is not profile guided the method returns false.
553 *
554 * Note that this is a "destructive" operation with side effects. Under the hood the
555 * current profile and the reference profile will be merged and subsequent calls
556 * may return a different result.
557 */
Calin Juravle6ae39fc2018-01-19 20:32:47 -0800558 private boolean isProfileUpdated(PackageParser.Package pkg, int uid, String profileName,
559 String compilerFilter) {
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800560 // Check if we are allowed to merge and if the compiler filter is profile guided.
561 if (!isProfileGuidedCompilerFilter(compilerFilter)) {
562 return false;
563 }
564 // Merge profiles. It returns whether or not there was an updated in the profile info.
565 try {
Calin Juravle6ae39fc2018-01-19 20:32:47 -0800566 return mInstaller.mergeProfiles(uid, pkg.packageName, profileName);
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800567 } catch (InstallerException e) {
568 Slog.w(TAG, "Failed to merge profiles", e);
569 }
570 return false;
571 }
572
573 /**
574 * Creates oat dir for the specified package if needed and supported.
575 * In certain cases oat directory
Fyodor Kupolovb94c1652015-03-03 12:25:30 -0800576 * <strong>cannot</strong> be created:
577 * <ul>
578 * <li>{@code pkg} is a system app, which is not updated.</li>
579 * <li>Package location is not a directory, i.e. monolithic install.</li>
580 * </ul>
581 *
Richard Uhler7b08b352015-03-25 16:25:57 -0700582 * @return Absolute path to the oat directory or null, if oat directory
583 * cannot be created.
Fyodor Kupolovb94c1652015-03-03 12:25:30 -0800584 */
585 @Nullable
Todd Kennedy27c24fb2015-09-17 16:49:25 -0700586 private String createOatDirIfSupported(PackageParser.Package pkg, String dexInstructionSet) {
Fyodor Kupolovebcac162015-09-09 15:56:45 -0700587 if (!pkg.canHaveOatDir()) {
Fyodor Kupolovb94c1652015-03-03 12:25:30 -0800588 return null;
589 }
590 File codePath = new File(pkg.codePath);
591 if (codePath.isDirectory()) {
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800592 // TODO(calin): why do we create this only if the codePath is a directory? (i.e for
593 // cluster packages). It seems that the logic for the folder creation is
594 // split between installd and here.
Fyodor Kupolovb94c1652015-03-03 12:25:30 -0800595 File oatDir = getOatDir(codePath);
Jeff Sharkeyfdeeeea2016-01-11 17:34:24 -0700596 try {
Andreas Gampea8908752015-11-10 08:58:14 -0800597 mInstaller.createOatDir(oatDir.getAbsolutePath(), dexInstructionSet);
Jeff Sharkeyfdeeeea2016-01-11 17:34:24 -0700598 } catch (InstallerException e) {
599 Slog.w(TAG, "Failed to create oat dir", e);
600 return null;
601 }
Richard Uhler7b08b352015-03-25 16:25:57 -0700602 return oatDir.getAbsolutePath();
Fyodor Kupolovb94c1652015-03-03 12:25:30 -0800603 }
604 return null;
605 }
606
607 static File getOatDir(File codePath) {
608 return new File(codePath, OAT_DIR_NAME);
609 }
610
Fyodor Kupolova627c092015-05-05 18:44:39 -0700611 void systemReady() {
612 mSystemReady = true;
613 }
Andreas Gampea8908752015-11-10 08:58:14 -0800614
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800615 private String printDexoptFlags(int flags) {
616 ArrayList<String> flagsList = new ArrayList<>();
617
618 if ((flags & DEXOPT_BOOTCOMPLETE) == DEXOPT_BOOTCOMPLETE) {
619 flagsList.add("boot_complete");
620 }
621 if ((flags & DEXOPT_DEBUGGABLE) == DEXOPT_DEBUGGABLE) {
622 flagsList.add("debuggable");
623 }
624 if ((flags & DEXOPT_PROFILE_GUIDED) == DEXOPT_PROFILE_GUIDED) {
625 flagsList.add("profile_guided");
626 }
627 if ((flags & DEXOPT_PUBLIC) == DEXOPT_PUBLIC) {
628 flagsList.add("public");
629 }
Calin Juravlec22c30e2017-01-16 19:18:48 -0800630 if ((flags & DEXOPT_SECONDARY_DEX) == DEXOPT_SECONDARY_DEX) {
631 flagsList.add("secondary");
632 }
633 if ((flags & DEXOPT_FORCE) == DEXOPT_FORCE) {
634 flagsList.add("force");
635 }
636 if ((flags & DEXOPT_STORAGE_CE) == DEXOPT_STORAGE_CE) {
637 flagsList.add("storage_ce");
638 }
639 if ((flags & DEXOPT_STORAGE_DE) == DEXOPT_STORAGE_DE) {
640 flagsList.add("storage_de");
641 }
David Sehr2118ec42017-10-25 14:28:29 -0700642 if ((flags & DEXOPT_IDLE_BACKGROUND_JOB) == DEXOPT_IDLE_BACKGROUND_JOB) {
643 flagsList.add("idle_background_job");
644 }
David Brazdil464ed3d2018-01-18 15:25:18 +0000645 if ((flags & DEXOPT_DISABLE_HIDDEN_API_CHECKS) == DEXOPT_DISABLE_HIDDEN_API_CHECKS) {
646 flagsList.add("disable_hidden_api_checks");
647 }
Calin Juravlec22c30e2017-01-16 19:18:48 -0800648
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800649 return String.join(",", flagsList);
650 }
651
Andreas Gampea8908752015-11-10 08:58:14 -0800652 /**
653 * A specialized PackageDexOptimizer that overrides already-installed checks, forcing a
654 * dexopt path.
655 */
656 public static class ForcedUpdatePackageDexOptimizer extends PackageDexOptimizer {
657
658 public ForcedUpdatePackageDexOptimizer(Installer installer, Object installLock,
659 Context context, String wakeLockTag) {
660 super(installer, installLock, context, wakeLockTag);
661 }
662
663 public ForcedUpdatePackageDexOptimizer(PackageDexOptimizer from) {
664 super(from);
665 }
666
667 @Override
Andreas Gampea8908752015-11-10 08:58:14 -0800668 protected int adjustDexoptNeeded(int dexoptNeeded) {
Nicolas Geoffray96d12a92017-05-03 11:51:53 +0100669 if (dexoptNeeded == DexFile.NO_DEXOPT_NEEDED) {
670 // Ensure compilation by pretending a compiler filter change on the
671 // apk/odex location (the reason for the '-'. A positive value means
672 // the 'oat' location).
673 return -DexFile.DEX2OAT_FOR_FILTER;
674 }
675 return dexoptNeeded;
Andreas Gampea8908752015-11-10 08:58:14 -0800676 }
Calin Juravlec22c30e2017-01-16 19:18:48 -0800677
678 @Override
679 protected int adjustDexoptFlags(int flags) {
680 // Add DEXOPT_FORCE flag to signal installd that it should force compilation
681 // and discard dexoptanalyzer result.
682 return flags | DEXOPT_FORCE;
683 }
Andreas Gampea8908752015-11-10 08:58:14 -0800684 }
Fyodor Kupolov74876572015-02-23 17:14:45 -0800685}