blob: 730a9fdad420cc002a2038d83246e1c185b630a0 [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 Juravleadbadd52017-03-28 18:19:15 -070023import android.os.FileUtils;
Fyodor Kupolova627c092015-05-05 18:44:39 -070024import android.os.PowerManager;
Fyodor Kupolov28f28552017-05-02 12:11:02 -070025import android.os.SystemClock;
Nicolas Geoffray20a894e2017-09-08 13:01:40 +010026import android.os.SystemProperties;
Fyodor Kupolov74876572015-02-23 17:14:45 -080027import android.os.UserHandle;
Fyodor Kupolova627c092015-05-05 18:44:39 -070028import android.os.WorkSource;
Fyodor Kupolov74876572015-02-23 17:14:45 -080029import android.util.Log;
30import android.util.Slog;
31
Calin Juravle2d4b6ad72017-01-04 13:22:14 -080032import com.android.internal.annotations.GuardedBy;
Narayan Kamath88eea9e2016-05-02 14:44:31 +010033import com.android.internal.util.IndentingPrintWriter;
Jeff Sharkey740f5232016-12-09 14:31:26 -070034import com.android.server.pm.Installer.InstallerException;
Calin Juravle3b74c412017-08-03 19:48:37 -070035import com.android.server.pm.dex.DexManager;
Calin Juravle1d0e83d2017-07-17 15:12:01 -070036import com.android.server.pm.dex.DexoptOptions;
Calin Juravle19da1cf2017-07-12 18:52:49 -070037import com.android.server.pm.dex.DexoptUtils;
Calin Juravlef1ff36f2017-07-22 12:33:41 -070038import com.android.server.pm.dex.PackageDexUsage;
Jeff Sharkeyfdeeeea2016-01-11 17:34:24 -070039
Fyodor Kupolovb94c1652015-03-03 12:25:30 -080040import java.io.File;
Fyodor Kupolov74876572015-02-23 17:14:45 -080041import java.io.IOException;
Calin Juravle2d4b6ad72017-01-04 13:22:14 -080042import java.util.ArrayList;
Calin Juravle4c2b9552017-08-10 17:23:00 -070043import java.util.Arrays;
Fyodor Kupolov74876572015-02-23 17:14:45 -080044import java.util.List;
Calin Juravle41a57a62017-08-06 19:20:19 -070045import java.util.Map;
Fyodor Kupolov74876572015-02-23 17:14:45 -080046
47import dalvik.system.DexFile;
Fyodor Kupolov74876572015-02-23 17:14:45 -080048
Todd Kennedyfa54ab72015-09-25 07:46:12 -070049import static com.android.server.pm.Installer.DEXOPT_BOOTCOMPLETE;
50import static com.android.server.pm.Installer.DEXOPT_DEBUGGABLE;
Andreas Gampebdd30d82016-03-20 11:32:11 -070051import static com.android.server.pm.Installer.DEXOPT_PROFILE_GUIDED;
Todd Kennedyfa54ab72015-09-25 07:46:12 -070052import static com.android.server.pm.Installer.DEXOPT_PUBLIC;
Calin Juravlec22c30e2017-01-16 19:18:48 -080053import static com.android.server.pm.Installer.DEXOPT_SECONDARY_DEX;
54import static com.android.server.pm.Installer.DEXOPT_FORCE;
55import static com.android.server.pm.Installer.DEXOPT_STORAGE_CE;
56import static com.android.server.pm.Installer.DEXOPT_STORAGE_DE;
David Sehr2118ec42017-10-25 14:28:29 -070057import static com.android.server.pm.Installer.DEXOPT_IDLE_BACKGROUND_JOB;
Fyodor Kupolov74876572015-02-23 17:14:45 -080058import static com.android.server.pm.InstructionSets.getAppDexInstructionSets;
59import static com.android.server.pm.InstructionSets.getDexCodeInstructionSets;
Calin Juravle2d4b6ad72017-01-04 13:22:14 -080060
Fyodor Kupolov28f28552017-05-02 12:11:02 -070061import static com.android.server.pm.PackageManagerService.WATCHDOG_TIMEOUT;
Nicolas Geoffrayb0818e82017-05-05 10:23:19 +010062
Nicolas Geoffrayd093b202017-05-03 13:11:58 +010063import static dalvik.system.DexFile.getNonProfileGuidedCompilerFilter;
64import static dalvik.system.DexFile.getSafeModeCompilerFilter;
Calin Juravle2d4b6ad72017-01-04 13:22:14 -080065import static dalvik.system.DexFile.isProfileGuidedCompilerFilter;
Fyodor Kupolov74876572015-02-23 17:14:45 -080066
67/**
68 * Helper class for running dexopt command on packages.
69 */
Calin Juravlec22c30e2017-01-16 19:18:48 -080070public class PackageDexOptimizer {
Fyodor Kupolovb94c1652015-03-03 12:25:30 -080071 private static final String TAG = "PackageManager.DexOptimizer";
72 static final String OAT_DIR_NAME = "oat";
73 // TODO b/19550105 Remove error codes and use exceptions
Calin Juravlec22c30e2017-01-16 19:18:48 -080074 public static final int DEX_OPT_SKIPPED = 0;
75 public static final int DEX_OPT_PERFORMED = 1;
76 public static final int DEX_OPT_FAILED = -1;
Fyodor Kupolov28f28552017-05-02 12:11:02 -070077 // One minute over PM WATCHDOG_TIMEOUT
78 private static final long WAKELOCK_TIMEOUT_MS = WATCHDOG_TIMEOUT + 1000 * 60;
Fyodor Kupolov74876572015-02-23 17:14:45 -080079
Calin Juravleaae35762017-02-14 17:53:13 -080080 /** Special library name that skips shared libraries check during compilation. */
81 public static final String SKIP_SHARED_LIBRARY_CHECK = "&";
82
Fyodor Kupolov28f28552017-05-02 12:11:02 -070083 @GuardedBy("mInstallLock")
Andreas Gampea8908752015-11-10 08:58:14 -080084 private final Installer mInstaller;
85 private final Object mInstallLock;
Fyodor Kupolov74876572015-02-23 17:14:45 -080086
Fyodor Kupolov28f28552017-05-02 12:11:02 -070087 @GuardedBy("mInstallLock")
Fyodor Kupolova627c092015-05-05 18:44:39 -070088 private final PowerManager.WakeLock mDexoptWakeLock;
89 private volatile boolean mSystemReady;
90
Andreas Gampea8908752015-11-10 08:58:14 -080091 PackageDexOptimizer(Installer installer, Object installLock, Context context,
92 String wakeLockTag) {
93 this.mInstaller = installer;
94 this.mInstallLock = installLock;
95
96 PowerManager powerManager = (PowerManager)context.getSystemService(Context.POWER_SERVICE);
97 mDexoptWakeLock = powerManager.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK, wakeLockTag);
98 }
99
100 protected PackageDexOptimizer(PackageDexOptimizer from) {
101 this.mInstaller = from.mInstaller;
102 this.mInstallLock = from.mInstallLock;
103 this.mDexoptWakeLock = from.mDexoptWakeLock;
104 this.mSystemReady = from.mSystemReady;
Fyodor Kupolov74876572015-02-23 17:14:45 -0800105 }
106
Calin Juravledb4a79a2015-12-23 18:55:08 +0200107 static boolean canOptimizePackage(PackageParser.Package pkg) {
Nicolas Geoffray20a894e2017-09-08 13:01:40 +0100108 // We do not dexopt a package with no code.
109 if ((pkg.applicationInfo.flags & ApplicationInfo.FLAG_HAS_CODE) == 0) {
110 return false;
111 }
112
Victor Hsiehcf0583e2017-11-09 10:32:10 -0800113 // We do not dexopt a priv-app package when pm.dexopt.priv-apps-oob is true.
Todd Kennedyc29b11a2017-10-23 15:55:59 -0700114 if (pkg.isPrivileged()) {
Victor Hsiehcf0583e2017-11-09 10:32:10 -0800115 return !SystemProperties.getBoolean("pm.dexopt.priv-apps-oob", false);
Nicolas Geoffray20a894e2017-09-08 13:01:40 +0100116 }
117
118 return true;
Calin Juravledb4a79a2015-12-23 18:55:08 +0200119 }
120
Fyodor Kupolov74876572015-02-23 17:14:45 -0800121 /**
122 * Performs dexopt on all code paths and libraries of the specified package for specified
123 * instruction sets.
124 *
Andreas Gampea8908752015-11-10 08:58:14 -0800125 * <p>Calls to {@link com.android.server.pm.Installer#dexopt} on {@link #mInstaller} are
126 * synchronized on {@link #mInstallLock}.
Fyodor Kupolov74876572015-02-23 17:14:45 -0800127 */
Jeff Haoc7b94822016-03-16 15:56:07 -0700128 int performDexOpt(PackageParser.Package pkg, String[] sharedLibraries,
Calin Juravle1d0e83d2017-07-17 15:12:01 -0700129 String[] instructionSets, CompilerStats.PackageStats packageStats,
Calin Juravle3b74c412017-08-03 19:48:37 -0700130 PackageDexUsage.PackageUseInfo packageUseInfo, DexoptOptions options) {
Calin Juravlec6540da2017-11-15 16:28:01 -0800131 if (pkg.applicationInfo.uid == -1) {
132 throw new IllegalArgumentException("Dexopt for " + pkg.packageName
133 + " has invalid uid.");
134 }
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800135 if (!canOptimizePackage(pkg)) {
136 return DEX_OPT_SKIPPED;
137 }
Andreas Gampea8908752015-11-10 08:58:14 -0800138 synchronized (mInstallLock) {
Fyodor Kupolov28f28552017-05-02 12:11:02 -0700139 final long acquireTime = acquireWakeLockLI(pkg.applicationInfo.uid);
Fyodor Kupolova627c092015-05-05 18:44:39 -0700140 try {
Calin Juravle1d0e83d2017-07-17 15:12:01 -0700141 return performDexOptLI(pkg, sharedLibraries, instructionSets,
Calin Juravle3b74c412017-08-03 19:48:37 -0700142 packageStats, packageUseInfo, options);
Fyodor Kupolova627c092015-05-05 18:44:39 -0700143 } finally {
Fyodor Kupolov28f28552017-05-02 12:11:02 -0700144 releaseWakeLockLI(acquireTime);
Fyodor Kupolova627c092015-05-05 18:44:39 -0700145 }
Fyodor Kupolov74876572015-02-23 17:14:45 -0800146 }
147 }
148
Andreas Gampea8908752015-11-10 08:58:14 -0800149 /**
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800150 * Performs dexopt on all code paths of the given package.
151 * It assumes the install lock is held.
152 */
153 @GuardedBy("mInstallLock")
154 private int performDexOptLI(PackageParser.Package pkg, String[] sharedLibraries,
Calin Juravle1d0e83d2017-07-17 15:12:01 -0700155 String[] targetInstructionSets, CompilerStats.PackageStats packageStats,
Calin Juravle3b74c412017-08-03 19:48:37 -0700156 PackageDexUsage.PackageUseInfo packageUseInfo, DexoptOptions options) {
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800157 final String[] instructionSets = targetInstructionSets != null ?
158 targetInstructionSets : getAppDexInstructionSets(pkg.applicationInfo);
159 final String[] dexCodeInstructionSets = getDexCodeInstructionSets(instructionSets);
Jeff Hao5def5e52017-04-19 14:42:16 -0700160 final List<String> paths = pkg.getAllCodePaths();
Jeff Sharkeya73e1652017-11-15 19:07:14 -0700161
162 int sharedGid = UserHandle.getSharedAppGid(pkg.applicationInfo.uid);
163 if (sharedGid == -1) {
164 Slog.wtf(TAG, "Well this is awkward; package " + pkg.applicationInfo.name + " had UID "
165 + pkg.applicationInfo.uid, new Throwable());
166 sharedGid = android.os.Process.NOBODY_UID;
167 }
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800168
Calin Juravle19da1cf2017-07-12 18:52:49 -0700169 // Get the class loader context dependencies.
170 // For each code path in the package, this array contains the class loader context that
171 // needs to be passed to dexopt in order to ensure correct optimizations.
Calin Juravleda098152017-09-01 17:30:01 -0700172 boolean[] pathsWithCode = new boolean[paths.size()];
173 pathsWithCode[0] = (pkg.applicationInfo.flags & ApplicationInfo.FLAG_HAS_CODE) != 0;
174 for (int i = 1; i < paths.size(); i++) {
175 pathsWithCode[i] = (pkg.splitFlags[i - 1] & ApplicationInfo.FLAG_HAS_CODE) != 0;
176 }
Calin Juravle19da1cf2017-07-12 18:52:49 -0700177 String[] classLoaderContexts = DexoptUtils.getClassLoaderContexts(
Calin Juravleda098152017-09-01 17:30:01 -0700178 pkg.applicationInfo, sharedLibraries, pathsWithCode);
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800179
Calin Juravle4c2b9552017-08-10 17:23:00 -0700180 // Sanity check that we do not call dexopt with inconsistent data.
181 if (paths.size() != classLoaderContexts.length) {
182 String[] splitCodePaths = pkg.applicationInfo.getSplitCodePaths();
183 throw new IllegalStateException("Inconsistent information "
184 + "between PackageParser.Package and its ApplicationInfo. "
185 + "pkg.getAllCodePaths=" + paths
186 + " pkg.applicationInfo.getBaseCodePath=" + pkg.applicationInfo.getBaseCodePath()
187 + " pkg.applicationInfo.getSplitCodePaths="
188 + (splitCodePaths == null ? "null" : Arrays.toString(splitCodePaths)));
189 }
190
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800191 int result = DEX_OPT_SKIPPED;
Jeff Hao5def5e52017-04-19 14:42:16 -0700192 for (int i = 0; i < paths.size(); i++) {
193 // Skip paths that have no code.
Calin Juravleda098152017-09-01 17:30:01 -0700194 if (!pathsWithCode[i]) {
Jeff Hao5def5e52017-04-19 14:42:16 -0700195 continue;
196 }
Calin Juravleda098152017-09-01 17:30:01 -0700197 if (classLoaderContexts[i] == null) {
198 throw new IllegalStateException("Inconsistent information in the "
199 + "package structure. A split is marked to contain code "
200 + "but has no dependency listed. Index=" + i + " path=" + paths.get(i));
201 }
202
Jeff Hao5def5e52017-04-19 14:42:16 -0700203 // Append shared libraries with split dependencies for this split.
204 String path = paths.get(i);
Calin Juravleb6f844d2017-07-17 15:23:21 -0700205 if (options.getSplitName() != null) {
206 // We are asked to compile only a specific split. Check that the current path is
207 // what we are looking for.
208 if (!options.getSplitName().equals(new File(path).getName())) {
209 continue;
210 }
211 }
212
Calin Juravle3b74c412017-08-03 19:48:37 -0700213 final boolean isUsedByOtherApps = options.isDexoptAsSharedLibrary()
Calin Juravle52a452c2017-08-04 01:42:17 -0700214 || packageUseInfo.isUsedByOtherApps(path);
Calin Juravle3b74c412017-08-03 19:48:37 -0700215 final String compilerFilter = getRealCompilerFilter(pkg.applicationInfo,
216 options.getCompilerFilter(), isUsedByOtherApps);
217 final boolean profileUpdated = options.isCheckForProfileUpdates() &&
218 isProfileUpdated(pkg, sharedGid, compilerFilter);
219
220 // Get the dexopt flags after getRealCompilerFilter to make sure we get the correct
221 // flags.
Andreas Gampec041c332017-11-01 17:05:53 -0700222 final int dexoptFlags = getDexFlags(pkg, compilerFilter, options);
Calin Juravle3b74c412017-08-03 19:48:37 -0700223
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800224 for (String dexCodeIsa : dexCodeInstructionSets) {
Calin Juravle19da1cf2017-07-12 18:52:49 -0700225 int newResult = dexOptPath(pkg, path, dexCodeIsa, compilerFilter,
226 profileUpdated, classLoaderContexts[i], dexoptFlags, sharedGid,
227 packageStats, options.isDowngrade());
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800228 // The end result is:
229 // - FAILED if any path failed,
230 // - PERFORMED if at least one path needed compilation,
231 // - SKIPPED when all paths are up to date
232 if ((result != DEX_OPT_FAILED) && (newResult != DEX_OPT_SKIPPED)) {
233 result = newResult;
234 }
235 }
236 }
237 return result;
238 }
239
240 /**
241 * Performs dexopt on the {@code path} belonging to the package {@code pkg}.
242 *
243 * @return
244 * DEX_OPT_FAILED if there was any exception during dexopt
245 * DEX_OPT_PERFORMED if dexopt was performed successfully on the given path.
246 * DEX_OPT_SKIPPED if the path does not need to be deopt-ed.
247 */
248 @GuardedBy("mInstallLock")
249 private int dexOptPath(PackageParser.Package pkg, String path, String isa,
Calin Juravle576e6c02017-09-12 00:58:33 -0700250 String compilerFilter, boolean profileUpdated, String classLoaderContext,
Shubham Ajmera246dccf2017-05-24 17:46:36 -0700251 int dexoptFlags, int uid, CompilerStats.PackageStats packageStats, boolean downgrade) {
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,
Shubham Ajmera246dccf2017-05-24 17:46:36 -0700277 false /* downgrade*/);
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800278
279 if (packageStats != null) {
280 long endTime = System.currentTimeMillis();
281 packageStats.setCompileTime(path, (int)(endTime - startTime));
282 }
283 return DEX_OPT_PERFORMED;
284 } catch (InstallerException e) {
285 Slog.w(TAG, "Failed to dexopt", e);
286 return DEX_OPT_FAILED;
287 }
288 }
289
290 /**
Calin Juravlec22c30e2017-01-16 19:18:48 -0800291 * Performs dexopt on the secondary dex {@code path} belonging to the app {@code info}.
292 *
293 * @return
294 * DEX_OPT_FAILED if there was any exception during dexopt
295 * DEX_OPT_PERFORMED if dexopt was performed successfully on the given path.
296 * NOTE that DEX_OPT_PERFORMED for secondary dex files includes the case when the dex file
297 * didn't need an update. That's because at the moment we don't get more than success/failure
298 * from installd.
299 *
300 * TODO(calin): Consider adding return codes to installd dexopt invocation (rather than
301 * throwing exceptions). Or maybe make a separate call to installd to get DexOptNeeded, though
302 * that seems wasteful.
303 */
Calin Juravlef1ff36f2017-07-22 12:33:41 -0700304 public int dexOptSecondaryDexPath(ApplicationInfo info, String path,
305 PackageDexUsage.DexUseInfo dexUseInfo, DexoptOptions options) {
Calin Juravlec6540da2017-11-15 16:28:01 -0800306 if (info.uid == -1) {
307 throw new IllegalArgumentException("Dexopt for path " + path + " has invalid uid.");
308 }
Calin Juravlec22c30e2017-01-16 19:18:48 -0800309 synchronized (mInstallLock) {
Fyodor Kupolov28f28552017-05-02 12:11:02 -0700310 final long acquireTime = acquireWakeLockLI(info.uid);
Calin Juravlec22c30e2017-01-16 19:18:48 -0800311 try {
Calin Juravlef1ff36f2017-07-22 12:33:41 -0700312 return dexOptSecondaryDexPathLI(info, path, dexUseInfo, options);
Calin Juravlec22c30e2017-01-16 19:18:48 -0800313 } finally {
Fyodor Kupolov28f28552017-05-02 12:11:02 -0700314 releaseWakeLockLI(acquireTime);
Calin Juravlec22c30e2017-01-16 19:18:48 -0800315 }
316 }
317 }
318
319 @GuardedBy("mInstallLock")
Fyodor Kupolov28f28552017-05-02 12:11:02 -0700320 private long acquireWakeLockLI(final int uid) {
321 // During boot the system doesn't need to instantiate and obtain a wake lock.
322 // PowerManager might not be ready, but that doesn't mean that we can't proceed with
323 // dexopt.
324 if (!mSystemReady) {
325 return -1;
326 }
327 mDexoptWakeLock.setWorkSource(new WorkSource(uid));
328 mDexoptWakeLock.acquire(WAKELOCK_TIMEOUT_MS);
329 return SystemClock.elapsedRealtime();
330 }
331
332 @GuardedBy("mInstallLock")
333 private void releaseWakeLockLI(final long acquireTime) {
334 if (acquireTime < 0) {
335 return;
336 }
337 try {
338 if (mDexoptWakeLock.isHeld()) {
339 mDexoptWakeLock.release();
340 }
341 final long duration = SystemClock.elapsedRealtime() - acquireTime;
342 if (duration >= WAKELOCK_TIMEOUT_MS) {
343 Slog.wtf(TAG, "WakeLock " + mDexoptWakeLock.getTag()
344 + " time out. Operation took " + duration + " ms. Thread: "
345 + Thread.currentThread().getName());
346 }
347 } catch (Exception e) {
348 Slog.wtf(TAG, "Error while releasing " + mDexoptWakeLock.getTag() + " lock", e);
349 }
350 }
351
352 @GuardedBy("mInstallLock")
Calin Juravlef1ff36f2017-07-22 12:33:41 -0700353 private int dexOptSecondaryDexPathLI(ApplicationInfo info, String path,
354 PackageDexUsage.DexUseInfo dexUseInfo, DexoptOptions options) {
355 if (options.isDexoptOnlySharedDex() && !dexUseInfo.isUsedByOtherApps()) {
356 // We are asked to optimize only the dex files used by other apps and this is not
357 // on of them: skip it.
358 return DEX_OPT_SKIPPED;
359 }
360
361 String compilerFilter = getRealCompilerFilter(info, options.getCompilerFilter(),
362 dexUseInfo.isUsedByOtherApps());
Calin Juravleefb1c942017-04-04 20:31:44 -0700363 // Get the dexopt flags after getRealCompilerFilter to make sure we get the correct flags.
Nicolas Geoffray3b4359a2017-05-25 13:53:22 +0100364 // Secondary dex files are currently not compiled at boot.
Andreas Gampec041c332017-11-01 17:05:53 -0700365 int dexoptFlags = getDexFlags(info, compilerFilter, options) | DEXOPT_SECONDARY_DEX;
Calin Juravlec22c30e2017-01-16 19:18:48 -0800366 // Check the app storage and add the appropriate flags.
Calin Juravleadbadd52017-03-28 18:19:15 -0700367 if (info.deviceProtectedDataDir != null &&
368 FileUtils.contains(info.deviceProtectedDataDir, path)) {
Calin Juravlec22c30e2017-01-16 19:18:48 -0800369 dexoptFlags |= DEXOPT_STORAGE_DE;
Calin Juravleadbadd52017-03-28 18:19:15 -0700370 } else if (info.credentialProtectedDataDir != null &&
371 FileUtils.contains(info.credentialProtectedDataDir, path)) {
Calin Juravlec22c30e2017-01-16 19:18:48 -0800372 dexoptFlags |= DEXOPT_STORAGE_CE;
373 } else {
374 Slog.e(TAG, "Could not infer CE/DE storage for package " + info.packageName);
375 return DEX_OPT_FAILED;
376 }
Calin Juravlec22c30e2017-01-16 19:18:48 -0800377 Log.d(TAG, "Running dexopt on: " + path
Calin Juravlef1ff36f2017-07-22 12:33:41 -0700378 + " pkg=" + info.packageName + " isa=" + dexUseInfo.getLoaderIsas()
Calin Juravlec22c30e2017-01-16 19:18:48 -0800379 + " dexoptFlags=" + printDexoptFlags(dexoptFlags)
380 + " target-filter=" + compilerFilter);
381
Calin Juravle27f92622017-10-04 10:53:09 -0700382 // TODO(calin): b/64530081 b/66984396. Use SKIP_SHARED_LIBRARY_CHECK for the context
383 // (instead of dexUseInfo.getClassLoaderContext()) in order to compile secondary dex files
384 // in isolation (and avoid to extract/verify the main apk if it's in the class path).
385 // Note this trades correctness for performance since the resulting slow down is
386 // unacceptable in some cases until b/64530081 is fixed.
387 String classLoaderContext = SKIP_SHARED_LIBRARY_CHECK;
388
Calin Juravlec22c30e2017-01-16 19:18:48 -0800389 try {
Calin Juravlef1ff36f2017-07-22 12:33:41 -0700390 for (String isa : dexUseInfo.getLoaderIsas()) {
Calin Juravlec22c30e2017-01-16 19:18:48 -0800391 // Reuse the same dexopt path as for the primary apks. We don't need all the
392 // arguments as some (dexopNeeded and oatDir) will be computed by installd because
393 // system server cannot read untrusted app content.
394 // TODO(calin): maybe add a separate call.
395 mInstaller.dexopt(path, info.uid, info.packageName, isa, /*dexoptNeeded*/ 0,
396 /*oatDir*/ null, dexoptFlags,
Calin Juravlef1ff36f2017-07-22 12:33:41 -0700397 compilerFilter, info.volumeUuid, classLoaderContext, info.seInfoUser,
398 options.isDowngrade());
Calin Juravlec22c30e2017-01-16 19:18:48 -0800399 }
400
401 return DEX_OPT_PERFORMED;
402 } catch (InstallerException e) {
403 Slog.w(TAG, "Failed to dexopt", e);
404 return DEX_OPT_FAILED;
405 }
406 }
407
408 /**
Andreas Gampea8908752015-11-10 08:58:14 -0800409 * Adjust the given dexopt-needed value. Can be overridden to influence the decision to
410 * optimize or not (and in what way).
411 */
412 protected int adjustDexoptNeeded(int dexoptNeeded) {
413 return dexoptNeeded;
414 }
415
416 /**
417 * Adjust the given dexopt flags that will be passed to the installer.
418 */
419 protected int adjustDexoptFlags(int dexoptFlags) {
420 return dexoptFlags;
421 }
422
Narayan Kamath88eea9e2016-05-02 14:44:31 +0100423 /**
424 * Dumps the dexopt state of the given package {@code pkg} to the given {@code PrintWriter}.
425 */
Calin Juravle41a57a62017-08-06 19:20:19 -0700426 void dumpDexoptState(IndentingPrintWriter pw, PackageParser.Package pkg,
427 PackageDexUsage.PackageUseInfo useInfo) {
Narayan Kamath88eea9e2016-05-02 14:44:31 +0100428 final String[] instructionSets = getAppDexInstructionSets(pkg.applicationInfo);
429 final String[] dexCodeInstructionSets = getDexCodeInstructionSets(instructionSets);
430
431 final List<String> paths = pkg.getAllCodePathsExcludingResourceOnly();
432
Calin Juravle41a57a62017-08-06 19:20:19 -0700433 for (String path : paths) {
434 pw.println("path: " + path);
435 pw.increaseIndent();
436
437 for (String isa : dexCodeInstructionSets) {
438 String status = null;
439 try {
440 status = DexFile.getDexFileStatus(path, isa);
441 } catch (IOException ioe) {
442 status = "[Exception]: " + ioe.getMessage();
443 }
444 pw.println(isa + ": " + status);
445 }
446
447 if (useInfo.isUsedByOtherApps(path)) {
Calin Juravle94837e32017-09-26 13:23:00 -0700448 pw.println("used by other apps: " + useInfo.getLoadingPackages(path));
Calin Juravle41a57a62017-08-06 19:20:19 -0700449 }
450
451 Map<String, PackageDexUsage.DexUseInfo> dexUseInfoMap = useInfo.getDexUseInfoMap();
452
453 if (!dexUseInfoMap.isEmpty()) {
454 pw.println("known secondary dex files:");
455 pw.increaseIndent();
456 for (Map.Entry<String, PackageDexUsage.DexUseInfo> e : dexUseInfoMap.entrySet()) {
457 String dex = e.getKey();
458 PackageDexUsage.DexUseInfo dexUseInfo = e.getValue();
459 pw.println(dex);
460 pw.increaseIndent();
Calin Juravlecf722222017-09-18 17:40:48 -0700461 // TODO(calin): get the status of the oat file (needs installd call)
Calin Juravle41a57a62017-08-06 19:20:19 -0700462 pw.println("class loader context: " + dexUseInfo.getClassLoaderContext());
463 if (dexUseInfo.isUsedByOtherApps()) {
Calin Juravle94837e32017-09-26 13:23:00 -0700464 pw.println("used by other apps: " + dexUseInfo.getLoadingPackages());
Calin Juravle41a57a62017-08-06 19:20:19 -0700465 }
466 pw.decreaseIndent();
467 }
468 pw.decreaseIndent();
469 }
470 pw.decreaseIndent();
Narayan Kamath88eea9e2016-05-02 14:44:31 +0100471 }
472 }
473
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800474 /**
475 * Returns the compiler filter that should be used to optimize the package code.
476 * The target filter will be updated if the package code is used by other apps
477 * or if it has the safe mode flag set.
478 */
Calin Juravlec22c30e2017-01-16 19:18:48 -0800479 private String getRealCompilerFilter(ApplicationInfo info, String targetCompilerFilter,
480 boolean isUsedByOtherApps) {
481 int flags = info.flags;
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800482 boolean vmSafeMode = (flags & ApplicationInfo.FLAG_VM_SAFE_MODE) != 0;
Mathieu Chartier41e4a372016-09-02 16:36:42 -0700483 if (vmSafeMode) {
Nicolas Geoffrayd093b202017-05-03 13:11:58 +0100484 return getSafeModeCompilerFilter(targetCompilerFilter);
Mathieu Chartier41e4a372016-09-02 16:36:42 -0700485 }
486
Calin Juravlec22c30e2017-01-16 19:18:48 -0800487 if (isProfileGuidedCompilerFilter(targetCompilerFilter) && isUsedByOtherApps) {
Calin Juravlef53201f2017-09-15 11:09:29 -0700488 // If the dex files is used by other apps, apply the shared filter.
489 return PackageManagerServiceCompilerMapping.getCompilerFilterForReason(
490 PackageManagerService.REASON_SHARED);
Andreas Gampebdd30d82016-03-20 11:32:11 -0700491 }
492
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800493 return targetCompilerFilter;
Fyodor Kupolov74876572015-02-23 17:14:45 -0800494 }
495
Fyodor Kupolovb94c1652015-03-03 12:25:30 -0800496 /**
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800497 * Computes the dex flags that needs to be pass to installd for the given package and compiler
498 * filter.
499 */
Nicolas Geoffray3b4359a2017-05-25 13:53:22 +0100500 private int getDexFlags(PackageParser.Package pkg, String compilerFilter,
Andreas Gampec041c332017-11-01 17:05:53 -0700501 DexoptOptions options) {
502 return getDexFlags(pkg.applicationInfo, compilerFilter, options);
Calin Juravlec22c30e2017-01-16 19:18:48 -0800503 }
504
Andreas Gampec041c332017-11-01 17:05:53 -0700505 private int getDexFlags(ApplicationInfo info, String compilerFilter, DexoptOptions options) {
Calin Juravlec22c30e2017-01-16 19:18:48 -0800506 int flags = info.flags;
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800507 boolean debuggable = (flags & ApplicationInfo.FLAG_DEBUGGABLE) != 0;
508 // Profile guide compiled oat files should not be public.
509 boolean isProfileGuidedFilter = isProfileGuidedCompilerFilter(compilerFilter);
Calin Juravlec22c30e2017-01-16 19:18:48 -0800510 boolean isPublic = !info.isForwardLocked() && !isProfileGuidedFilter;
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800511 int profileFlag = isProfileGuidedFilter ? DEXOPT_PROFILE_GUIDED : 0;
512 int dexFlags =
513 (isPublic ? DEXOPT_PUBLIC : 0)
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800514 | (debuggable ? DEXOPT_DEBUGGABLE : 0)
515 | profileFlag
Andreas Gampec041c332017-11-01 17:05:53 -0700516 | (options.isBootComplete() ? DEXOPT_BOOTCOMPLETE : 0)
517 | (options.isDexoptIdleBackgroundJob() ? DEXOPT_IDLE_BACKGROUND_JOB : 0);
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800518 return adjustDexoptFlags(dexFlags);
519 }
520
521 /**
522 * Assesses if there's a need to perform dexopt on {@code path} for the given
523 * configuration (isa, compiler filter, profile).
524 */
525 private int getDexoptNeeded(String path, String isa, String compilerFilter,
Calin Juravle576e6c02017-09-12 00:58:33 -0700526 String classLoaderContext, boolean newProfile, boolean downgrade) {
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800527 int dexoptNeeded;
528 try {
Calin Juravle576e6c02017-09-12 00:58:33 -0700529 dexoptNeeded = DexFile.getDexOptNeeded(path, isa, compilerFilter, classLoaderContext,
530 newProfile, downgrade);
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800531 } catch (IOException ioe) {
532 Slog.w(TAG, "IOException reading apk: " + path, ioe);
533 return DEX_OPT_FAILED;
534 }
535 return adjustDexoptNeeded(dexoptNeeded);
536 }
537
538 /**
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800539 * Checks if there is an update on the profile information of the {@code pkg}.
540 * If the compiler filter is not profile guided the method returns false.
541 *
542 * Note that this is a "destructive" operation with side effects. Under the hood the
543 * current profile and the reference profile will be merged and subsequent calls
544 * may return a different result.
545 */
546 private boolean isProfileUpdated(PackageParser.Package pkg, int uid, String compilerFilter) {
547 // Check if we are allowed to merge and if the compiler filter is profile guided.
548 if (!isProfileGuidedCompilerFilter(compilerFilter)) {
549 return false;
550 }
551 // Merge profiles. It returns whether or not there was an updated in the profile info.
552 try {
553 return mInstaller.mergeProfiles(uid, pkg.packageName);
554 } catch (InstallerException e) {
555 Slog.w(TAG, "Failed to merge profiles", e);
556 }
557 return false;
558 }
559
560 /**
561 * Creates oat dir for the specified package if needed and supported.
562 * In certain cases oat directory
Fyodor Kupolovb94c1652015-03-03 12:25:30 -0800563 * <strong>cannot</strong> be created:
564 * <ul>
565 * <li>{@code pkg} is a system app, which is not updated.</li>
566 * <li>Package location is not a directory, i.e. monolithic install.</li>
567 * </ul>
568 *
Richard Uhler7b08b352015-03-25 16:25:57 -0700569 * @return Absolute path to the oat directory or null, if oat directory
570 * cannot be created.
Fyodor Kupolovb94c1652015-03-03 12:25:30 -0800571 */
572 @Nullable
Todd Kennedy27c24fb2015-09-17 16:49:25 -0700573 private String createOatDirIfSupported(PackageParser.Package pkg, String dexInstructionSet) {
Fyodor Kupolovebcac162015-09-09 15:56:45 -0700574 if (!pkg.canHaveOatDir()) {
Fyodor Kupolovb94c1652015-03-03 12:25:30 -0800575 return null;
576 }
577 File codePath = new File(pkg.codePath);
578 if (codePath.isDirectory()) {
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800579 // TODO(calin): why do we create this only if the codePath is a directory? (i.e for
580 // cluster packages). It seems that the logic for the folder creation is
581 // split between installd and here.
Fyodor Kupolovb94c1652015-03-03 12:25:30 -0800582 File oatDir = getOatDir(codePath);
Jeff Sharkeyfdeeeea2016-01-11 17:34:24 -0700583 try {
Andreas Gampea8908752015-11-10 08:58:14 -0800584 mInstaller.createOatDir(oatDir.getAbsolutePath(), dexInstructionSet);
Jeff Sharkeyfdeeeea2016-01-11 17:34:24 -0700585 } catch (InstallerException e) {
586 Slog.w(TAG, "Failed to create oat dir", e);
587 return null;
588 }
Richard Uhler7b08b352015-03-25 16:25:57 -0700589 return oatDir.getAbsolutePath();
Fyodor Kupolovb94c1652015-03-03 12:25:30 -0800590 }
591 return null;
592 }
593
594 static File getOatDir(File codePath) {
595 return new File(codePath, OAT_DIR_NAME);
596 }
597
Fyodor Kupolova627c092015-05-05 18:44:39 -0700598 void systemReady() {
599 mSystemReady = true;
600 }
Andreas Gampea8908752015-11-10 08:58:14 -0800601
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800602 private String printDexoptFlags(int flags) {
603 ArrayList<String> flagsList = new ArrayList<>();
604
605 if ((flags & DEXOPT_BOOTCOMPLETE) == DEXOPT_BOOTCOMPLETE) {
606 flagsList.add("boot_complete");
607 }
608 if ((flags & DEXOPT_DEBUGGABLE) == DEXOPT_DEBUGGABLE) {
609 flagsList.add("debuggable");
610 }
611 if ((flags & DEXOPT_PROFILE_GUIDED) == DEXOPT_PROFILE_GUIDED) {
612 flagsList.add("profile_guided");
613 }
614 if ((flags & DEXOPT_PUBLIC) == DEXOPT_PUBLIC) {
615 flagsList.add("public");
616 }
Calin Juravlec22c30e2017-01-16 19:18:48 -0800617 if ((flags & DEXOPT_SECONDARY_DEX) == DEXOPT_SECONDARY_DEX) {
618 flagsList.add("secondary");
619 }
620 if ((flags & DEXOPT_FORCE) == DEXOPT_FORCE) {
621 flagsList.add("force");
622 }
623 if ((flags & DEXOPT_STORAGE_CE) == DEXOPT_STORAGE_CE) {
624 flagsList.add("storage_ce");
625 }
626 if ((flags & DEXOPT_STORAGE_DE) == DEXOPT_STORAGE_DE) {
627 flagsList.add("storage_de");
628 }
David Sehr2118ec42017-10-25 14:28:29 -0700629 if ((flags & DEXOPT_IDLE_BACKGROUND_JOB) == DEXOPT_IDLE_BACKGROUND_JOB) {
630 flagsList.add("idle_background_job");
631 }
Calin Juravlec22c30e2017-01-16 19:18:48 -0800632
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800633 return String.join(",", flagsList);
634 }
635
Andreas Gampea8908752015-11-10 08:58:14 -0800636 /**
637 * A specialized PackageDexOptimizer that overrides already-installed checks, forcing a
638 * dexopt path.
639 */
640 public static class ForcedUpdatePackageDexOptimizer extends PackageDexOptimizer {
641
642 public ForcedUpdatePackageDexOptimizer(Installer installer, Object installLock,
643 Context context, String wakeLockTag) {
644 super(installer, installLock, context, wakeLockTag);
645 }
646
647 public ForcedUpdatePackageDexOptimizer(PackageDexOptimizer from) {
648 super(from);
649 }
650
651 @Override
Andreas Gampea8908752015-11-10 08:58:14 -0800652 protected int adjustDexoptNeeded(int dexoptNeeded) {
Nicolas Geoffray96d12a92017-05-03 11:51:53 +0100653 if (dexoptNeeded == DexFile.NO_DEXOPT_NEEDED) {
654 // Ensure compilation by pretending a compiler filter change on the
655 // apk/odex location (the reason for the '-'. A positive value means
656 // the 'oat' location).
657 return -DexFile.DEX2OAT_FOR_FILTER;
658 }
659 return dexoptNeeded;
Andreas Gampea8908752015-11-10 08:58:14 -0800660 }
Calin Juravlec22c30e2017-01-16 19:18:48 -0800661
662 @Override
663 protected int adjustDexoptFlags(int flags) {
664 // Add DEXOPT_FORCE flag to signal installd that it should force compilation
665 // and discard dexoptanalyzer result.
666 return flags | DEXOPT_FORCE;
667 }
Andreas Gampea8908752015-11-10 08:58:14 -0800668 }
Fyodor Kupolov74876572015-02-23 17:14:45 -0800669}