blob: 8ebeeae234769078c7954aa35ee017b436823ed1 [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;
Fyodor Kupolov74876572015-02-23 17:14:45 -080057import static com.android.server.pm.InstructionSets.getAppDexInstructionSets;
58import static com.android.server.pm.InstructionSets.getDexCodeInstructionSets;
Calin Juravle2d4b6ad72017-01-04 13:22:14 -080059
Fyodor Kupolov28f28552017-05-02 12:11:02 -070060import static com.android.server.pm.PackageManagerService.WATCHDOG_TIMEOUT;
Nicolas Geoffrayb0818e82017-05-05 10:23:19 +010061
Nicolas Geoffrayd093b202017-05-03 13:11:58 +010062import static dalvik.system.DexFile.getNonProfileGuidedCompilerFilter;
63import static dalvik.system.DexFile.getSafeModeCompilerFilter;
Calin Juravle2d4b6ad72017-01-04 13:22:14 -080064import static dalvik.system.DexFile.isProfileGuidedCompilerFilter;
Fyodor Kupolov74876572015-02-23 17:14:45 -080065
66/**
67 * Helper class for running dexopt command on packages.
68 */
Calin Juravlec22c30e2017-01-16 19:18:48 -080069public class PackageDexOptimizer {
Fyodor Kupolovb94c1652015-03-03 12:25:30 -080070 private static final String TAG = "PackageManager.DexOptimizer";
71 static final String OAT_DIR_NAME = "oat";
72 // TODO b/19550105 Remove error codes and use exceptions
Calin Juravlec22c30e2017-01-16 19:18:48 -080073 public static final int DEX_OPT_SKIPPED = 0;
74 public static final int DEX_OPT_PERFORMED = 1;
75 public static final int DEX_OPT_FAILED = -1;
Fyodor Kupolov28f28552017-05-02 12:11:02 -070076 // One minute over PM WATCHDOG_TIMEOUT
77 private static final long WAKELOCK_TIMEOUT_MS = WATCHDOG_TIMEOUT + 1000 * 60;
Fyodor Kupolov74876572015-02-23 17:14:45 -080078
Calin Juravleaae35762017-02-14 17:53:13 -080079 /** Special library name that skips shared libraries check during compilation. */
80 public static final String SKIP_SHARED_LIBRARY_CHECK = "&";
81
Fyodor Kupolov28f28552017-05-02 12:11:02 -070082 @GuardedBy("mInstallLock")
Andreas Gampea8908752015-11-10 08:58:14 -080083 private final Installer mInstaller;
84 private final Object mInstallLock;
Fyodor Kupolov74876572015-02-23 17:14:45 -080085
Fyodor Kupolov28f28552017-05-02 12:11:02 -070086 @GuardedBy("mInstallLock")
Fyodor Kupolova627c092015-05-05 18:44:39 -070087 private final PowerManager.WakeLock mDexoptWakeLock;
88 private volatile boolean mSystemReady;
89
Andreas Gampea8908752015-11-10 08:58:14 -080090 PackageDexOptimizer(Installer installer, Object installLock, Context context,
91 String wakeLockTag) {
92 this.mInstaller = installer;
93 this.mInstallLock = installLock;
94
95 PowerManager powerManager = (PowerManager)context.getSystemService(Context.POWER_SERVICE);
96 mDexoptWakeLock = powerManager.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK, wakeLockTag);
97 }
98
99 protected PackageDexOptimizer(PackageDexOptimizer from) {
100 this.mInstaller = from.mInstaller;
101 this.mInstallLock = from.mInstallLock;
102 this.mDexoptWakeLock = from.mDexoptWakeLock;
103 this.mSystemReady = from.mSystemReady;
Fyodor Kupolov74876572015-02-23 17:14:45 -0800104 }
105
Calin Juravledb4a79a2015-12-23 18:55:08 +0200106 static boolean canOptimizePackage(PackageParser.Package pkg) {
Nicolas Geoffray20a894e2017-09-08 13:01:40 +0100107 // We do not dexopt a package with no code.
108 if ((pkg.applicationInfo.flags & ApplicationInfo.FLAG_HAS_CODE) == 0) {
109 return false;
110 }
111
112 // We do not dexopt a priv-app package when pm.dexopt.priv-apps is false.
113 if (pkg.isPrivilegedApp()) {
114 return SystemProperties.getBoolean("pm.dexopt.priv-apps", true);
115 }
116
117 return true;
Calin Juravledb4a79a2015-12-23 18:55:08 +0200118 }
119
Fyodor Kupolov74876572015-02-23 17:14:45 -0800120 /**
121 * Performs dexopt on all code paths and libraries of the specified package for specified
122 * instruction sets.
123 *
Andreas Gampea8908752015-11-10 08:58:14 -0800124 * <p>Calls to {@link com.android.server.pm.Installer#dexopt} on {@link #mInstaller} are
125 * synchronized on {@link #mInstallLock}.
Fyodor Kupolov74876572015-02-23 17:14:45 -0800126 */
Jeff Haoc7b94822016-03-16 15:56:07 -0700127 int performDexOpt(PackageParser.Package pkg, String[] sharedLibraries,
Calin Juravle1d0e83d2017-07-17 15:12:01 -0700128 String[] instructionSets, CompilerStats.PackageStats packageStats,
Calin Juravle3b74c412017-08-03 19:48:37 -0700129 PackageDexUsage.PackageUseInfo packageUseInfo, DexoptOptions options) {
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800130 if (!canOptimizePackage(pkg)) {
131 return DEX_OPT_SKIPPED;
132 }
Andreas Gampea8908752015-11-10 08:58:14 -0800133 synchronized (mInstallLock) {
Fyodor Kupolov28f28552017-05-02 12:11:02 -0700134 final long acquireTime = acquireWakeLockLI(pkg.applicationInfo.uid);
Fyodor Kupolova627c092015-05-05 18:44:39 -0700135 try {
Calin Juravle1d0e83d2017-07-17 15:12:01 -0700136 return performDexOptLI(pkg, sharedLibraries, instructionSets,
Calin Juravle3b74c412017-08-03 19:48:37 -0700137 packageStats, packageUseInfo, options);
Fyodor Kupolova627c092015-05-05 18:44:39 -0700138 } finally {
Fyodor Kupolov28f28552017-05-02 12:11:02 -0700139 releaseWakeLockLI(acquireTime);
Fyodor Kupolova627c092015-05-05 18:44:39 -0700140 }
Fyodor Kupolov74876572015-02-23 17:14:45 -0800141 }
142 }
143
Andreas Gampea8908752015-11-10 08:58:14 -0800144 /**
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800145 * Performs dexopt on all code paths of the given package.
146 * It assumes the install lock is held.
147 */
148 @GuardedBy("mInstallLock")
149 private int performDexOptLI(PackageParser.Package pkg, String[] sharedLibraries,
Calin Juravle1d0e83d2017-07-17 15:12:01 -0700150 String[] targetInstructionSets, CompilerStats.PackageStats packageStats,
Calin Juravle3b74c412017-08-03 19:48:37 -0700151 PackageDexUsage.PackageUseInfo packageUseInfo, DexoptOptions options) {
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800152 final String[] instructionSets = targetInstructionSets != null ?
153 targetInstructionSets : getAppDexInstructionSets(pkg.applicationInfo);
154 final String[] dexCodeInstructionSets = getDexCodeInstructionSets(instructionSets);
Jeff Hao5def5e52017-04-19 14:42:16 -0700155 final List<String> paths = pkg.getAllCodePaths();
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800156 final int sharedGid = UserHandle.getSharedAppGid(pkg.applicationInfo.uid);
157
Calin Juravle19da1cf2017-07-12 18:52:49 -0700158 // Get the class loader context dependencies.
159 // For each code path in the package, this array contains the class loader context that
160 // needs to be passed to dexopt in order to ensure correct optimizations.
Calin Juravleda098152017-09-01 17:30:01 -0700161 boolean[] pathsWithCode = new boolean[paths.size()];
162 pathsWithCode[0] = (pkg.applicationInfo.flags & ApplicationInfo.FLAG_HAS_CODE) != 0;
163 for (int i = 1; i < paths.size(); i++) {
164 pathsWithCode[i] = (pkg.splitFlags[i - 1] & ApplicationInfo.FLAG_HAS_CODE) != 0;
165 }
Calin Juravle19da1cf2017-07-12 18:52:49 -0700166 String[] classLoaderContexts = DexoptUtils.getClassLoaderContexts(
Calin Juravleda098152017-09-01 17:30:01 -0700167 pkg.applicationInfo, sharedLibraries, pathsWithCode);
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800168
Calin Juravle4c2b9552017-08-10 17:23:00 -0700169 // Sanity check that we do not call dexopt with inconsistent data.
170 if (paths.size() != classLoaderContexts.length) {
171 String[] splitCodePaths = pkg.applicationInfo.getSplitCodePaths();
172 throw new IllegalStateException("Inconsistent information "
173 + "between PackageParser.Package and its ApplicationInfo. "
174 + "pkg.getAllCodePaths=" + paths
175 + " pkg.applicationInfo.getBaseCodePath=" + pkg.applicationInfo.getBaseCodePath()
176 + " pkg.applicationInfo.getSplitCodePaths="
177 + (splitCodePaths == null ? "null" : Arrays.toString(splitCodePaths)));
178 }
179
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800180 int result = DEX_OPT_SKIPPED;
Jeff Hao5def5e52017-04-19 14:42:16 -0700181 for (int i = 0; i < paths.size(); i++) {
182 // Skip paths that have no code.
Calin Juravleda098152017-09-01 17:30:01 -0700183 if (!pathsWithCode[i]) {
Jeff Hao5def5e52017-04-19 14:42:16 -0700184 continue;
185 }
Calin Juravleda098152017-09-01 17:30:01 -0700186 if (classLoaderContexts[i] == null) {
187 throw new IllegalStateException("Inconsistent information in the "
188 + "package structure. A split is marked to contain code "
189 + "but has no dependency listed. Index=" + i + " path=" + paths.get(i));
190 }
191
Jeff Hao5def5e52017-04-19 14:42:16 -0700192 // Append shared libraries with split dependencies for this split.
193 String path = paths.get(i);
Calin Juravleb6f844d2017-07-17 15:23:21 -0700194 if (options.getSplitName() != null) {
195 // We are asked to compile only a specific split. Check that the current path is
196 // what we are looking for.
197 if (!options.getSplitName().equals(new File(path).getName())) {
198 continue;
199 }
200 }
201
Calin Juravle3b74c412017-08-03 19:48:37 -0700202 final boolean isUsedByOtherApps = options.isDexoptAsSharedLibrary()
Calin Juravle52a452c2017-08-04 01:42:17 -0700203 || packageUseInfo.isUsedByOtherApps(path);
Calin Juravle3b74c412017-08-03 19:48:37 -0700204 final String compilerFilter = getRealCompilerFilter(pkg.applicationInfo,
205 options.getCompilerFilter(), isUsedByOtherApps);
206 final boolean profileUpdated = options.isCheckForProfileUpdates() &&
207 isProfileUpdated(pkg, sharedGid, compilerFilter);
208
209 // Get the dexopt flags after getRealCompilerFilter to make sure we get the correct
210 // flags.
211 final int dexoptFlags = getDexFlags(pkg, compilerFilter, options.isBootComplete());
212
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800213 for (String dexCodeIsa : dexCodeInstructionSets) {
Calin Juravle19da1cf2017-07-12 18:52:49 -0700214 int newResult = dexOptPath(pkg, path, dexCodeIsa, compilerFilter,
215 profileUpdated, classLoaderContexts[i], dexoptFlags, sharedGid,
216 packageStats, options.isDowngrade());
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800217 // The end result is:
218 // - FAILED if any path failed,
219 // - PERFORMED if at least one path needed compilation,
220 // - SKIPPED when all paths are up to date
221 if ((result != DEX_OPT_FAILED) && (newResult != DEX_OPT_SKIPPED)) {
222 result = newResult;
223 }
224 }
225 }
226 return result;
227 }
228
229 /**
230 * Performs dexopt on the {@code path} belonging to the package {@code pkg}.
231 *
232 * @return
233 * DEX_OPT_FAILED if there was any exception during dexopt
234 * DEX_OPT_PERFORMED if dexopt was performed successfully on the given path.
235 * DEX_OPT_SKIPPED if the path does not need to be deopt-ed.
236 */
237 @GuardedBy("mInstallLock")
238 private int dexOptPath(PackageParser.Package pkg, String path, String isa,
239 String compilerFilter, boolean profileUpdated, String sharedLibrariesPath,
Shubham Ajmera246dccf2017-05-24 17:46:36 -0700240 int dexoptFlags, int uid, CompilerStats.PackageStats packageStats, boolean downgrade) {
241 int dexoptNeeded = getDexoptNeeded(path, isa, compilerFilter, profileUpdated, downgrade);
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800242 if (Math.abs(dexoptNeeded) == DexFile.NO_DEXOPT_NEEDED) {
243 return DEX_OPT_SKIPPED;
244 }
245
246 // TODO(calin): there's no need to try to create the oat dir over and over again,
247 // especially since it involve an extra installd call. We should create
248 // if (if supported) on the fly during the dexopt call.
249 String oatDir = createOatDirIfSupported(pkg, isa);
250
251 Log.i(TAG, "Running dexopt (dexoptNeeded=" + dexoptNeeded + ") on: " + path
252 + " pkg=" + pkg.applicationInfo.packageName + " isa=" + isa
253 + " dexoptFlags=" + printDexoptFlags(dexoptFlags)
254 + " target-filter=" + compilerFilter + " oatDir=" + oatDir
255 + " sharedLibraries=" + sharedLibrariesPath);
256
257 try {
258 long startTime = System.currentTimeMillis();
259
Shubham Ajmera246dccf2017-05-24 17:46:36 -0700260 // TODO: Consider adding 2 different APIs for primary and secondary dexopt.
261 // installd only uses downgrade flag for secondary dex files and ignores it for
262 // primary dex files.
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800263 mInstaller.dexopt(path, uid, pkg.packageName, isa, dexoptNeeded, oatDir, dexoptFlags,
Shubham Ajmera246dccf2017-05-24 17:46:36 -0700264 compilerFilter, pkg.volumeUuid, sharedLibrariesPath, pkg.applicationInfo.seInfo,
265 false /* downgrade*/);
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800266
267 if (packageStats != null) {
268 long endTime = System.currentTimeMillis();
269 packageStats.setCompileTime(path, (int)(endTime - startTime));
270 }
271 return DEX_OPT_PERFORMED;
272 } catch (InstallerException e) {
273 Slog.w(TAG, "Failed to dexopt", e);
274 return DEX_OPT_FAILED;
275 }
276 }
277
278 /**
Calin Juravlec22c30e2017-01-16 19:18:48 -0800279 * Performs dexopt on the secondary dex {@code path} belonging to the app {@code info}.
280 *
281 * @return
282 * DEX_OPT_FAILED if there was any exception during dexopt
283 * DEX_OPT_PERFORMED if dexopt was performed successfully on the given path.
284 * NOTE that DEX_OPT_PERFORMED for secondary dex files includes the case when the dex file
285 * didn't need an update. That's because at the moment we don't get more than success/failure
286 * from installd.
287 *
288 * TODO(calin): Consider adding return codes to installd dexopt invocation (rather than
289 * throwing exceptions). Or maybe make a separate call to installd to get DexOptNeeded, though
290 * that seems wasteful.
291 */
Calin Juravlef1ff36f2017-07-22 12:33:41 -0700292 public int dexOptSecondaryDexPath(ApplicationInfo info, String path,
293 PackageDexUsage.DexUseInfo dexUseInfo, DexoptOptions options) {
Calin Juravlec22c30e2017-01-16 19:18:48 -0800294 synchronized (mInstallLock) {
Fyodor Kupolov28f28552017-05-02 12:11:02 -0700295 final long acquireTime = acquireWakeLockLI(info.uid);
Calin Juravlec22c30e2017-01-16 19:18:48 -0800296 try {
Calin Juravlef1ff36f2017-07-22 12:33:41 -0700297 return dexOptSecondaryDexPathLI(info, path, dexUseInfo, options);
Calin Juravlec22c30e2017-01-16 19:18:48 -0800298 } finally {
Fyodor Kupolov28f28552017-05-02 12:11:02 -0700299 releaseWakeLockLI(acquireTime);
Calin Juravlec22c30e2017-01-16 19:18:48 -0800300 }
301 }
302 }
303
304 @GuardedBy("mInstallLock")
Fyodor Kupolov28f28552017-05-02 12:11:02 -0700305 private long acquireWakeLockLI(final int uid) {
306 // During boot the system doesn't need to instantiate and obtain a wake lock.
307 // PowerManager might not be ready, but that doesn't mean that we can't proceed with
308 // dexopt.
309 if (!mSystemReady) {
310 return -1;
311 }
312 mDexoptWakeLock.setWorkSource(new WorkSource(uid));
313 mDexoptWakeLock.acquire(WAKELOCK_TIMEOUT_MS);
314 return SystemClock.elapsedRealtime();
315 }
316
317 @GuardedBy("mInstallLock")
318 private void releaseWakeLockLI(final long acquireTime) {
319 if (acquireTime < 0) {
320 return;
321 }
322 try {
323 if (mDexoptWakeLock.isHeld()) {
324 mDexoptWakeLock.release();
325 }
326 final long duration = SystemClock.elapsedRealtime() - acquireTime;
327 if (duration >= WAKELOCK_TIMEOUT_MS) {
328 Slog.wtf(TAG, "WakeLock " + mDexoptWakeLock.getTag()
329 + " time out. Operation took " + duration + " ms. Thread: "
330 + Thread.currentThread().getName());
331 }
332 } catch (Exception e) {
333 Slog.wtf(TAG, "Error while releasing " + mDexoptWakeLock.getTag() + " lock", e);
334 }
335 }
336
337 @GuardedBy("mInstallLock")
Calin Juravlef1ff36f2017-07-22 12:33:41 -0700338 private int dexOptSecondaryDexPathLI(ApplicationInfo info, String path,
339 PackageDexUsage.DexUseInfo dexUseInfo, DexoptOptions options) {
340 if (options.isDexoptOnlySharedDex() && !dexUseInfo.isUsedByOtherApps()) {
341 // We are asked to optimize only the dex files used by other apps and this is not
342 // on of them: skip it.
343 return DEX_OPT_SKIPPED;
344 }
345
346 String compilerFilter = getRealCompilerFilter(info, options.getCompilerFilter(),
347 dexUseInfo.isUsedByOtherApps());
Calin Juravleefb1c942017-04-04 20:31:44 -0700348 // Get the dexopt flags after getRealCompilerFilter to make sure we get the correct flags.
Nicolas Geoffray3b4359a2017-05-25 13:53:22 +0100349 // Secondary dex files are currently not compiled at boot.
350 int dexoptFlags = getDexFlags(info, compilerFilter, /* bootComplete */ true)
351 | DEXOPT_SECONDARY_DEX;
Calin Juravlec22c30e2017-01-16 19:18:48 -0800352 // Check the app storage and add the appropriate flags.
Calin Juravleadbadd52017-03-28 18:19:15 -0700353 if (info.deviceProtectedDataDir != null &&
354 FileUtils.contains(info.deviceProtectedDataDir, path)) {
Calin Juravlec22c30e2017-01-16 19:18:48 -0800355 dexoptFlags |= DEXOPT_STORAGE_DE;
Calin Juravleadbadd52017-03-28 18:19:15 -0700356 } else if (info.credentialProtectedDataDir != null &&
357 FileUtils.contains(info.credentialProtectedDataDir, path)) {
Calin Juravlec22c30e2017-01-16 19:18:48 -0800358 dexoptFlags |= DEXOPT_STORAGE_CE;
359 } else {
360 Slog.e(TAG, "Could not infer CE/DE storage for package " + info.packageName);
361 return DEX_OPT_FAILED;
362 }
Calin Juravlec22c30e2017-01-16 19:18:48 -0800363 Log.d(TAG, "Running dexopt on: " + path
Calin Juravlef1ff36f2017-07-22 12:33:41 -0700364 + " pkg=" + info.packageName + " isa=" + dexUseInfo.getLoaderIsas()
Calin Juravlec22c30e2017-01-16 19:18:48 -0800365 + " dexoptFlags=" + printDexoptFlags(dexoptFlags)
366 + " target-filter=" + compilerFilter);
367
Calin Juravle27f92622017-10-04 10:53:09 -0700368 // TODO(calin): b/64530081 b/66984396. Use SKIP_SHARED_LIBRARY_CHECK for the context
369 // (instead of dexUseInfo.getClassLoaderContext()) in order to compile secondary dex files
370 // in isolation (and avoid to extract/verify the main apk if it's in the class path).
371 // Note this trades correctness for performance since the resulting slow down is
372 // unacceptable in some cases until b/64530081 is fixed.
373 String classLoaderContext = SKIP_SHARED_LIBRARY_CHECK;
374
Calin Juravlec22c30e2017-01-16 19:18:48 -0800375 try {
Calin Juravlef1ff36f2017-07-22 12:33:41 -0700376 for (String isa : dexUseInfo.getLoaderIsas()) {
Calin Juravlec22c30e2017-01-16 19:18:48 -0800377 // Reuse the same dexopt path as for the primary apks. We don't need all the
378 // arguments as some (dexopNeeded and oatDir) will be computed by installd because
379 // system server cannot read untrusted app content.
380 // TODO(calin): maybe add a separate call.
381 mInstaller.dexopt(path, info.uid, info.packageName, isa, /*dexoptNeeded*/ 0,
382 /*oatDir*/ null, dexoptFlags,
Calin Juravlef1ff36f2017-07-22 12:33:41 -0700383 compilerFilter, info.volumeUuid, classLoaderContext, info.seInfoUser,
384 options.isDowngrade());
Calin Juravlec22c30e2017-01-16 19:18:48 -0800385 }
386
387 return DEX_OPT_PERFORMED;
388 } catch (InstallerException e) {
389 Slog.w(TAG, "Failed to dexopt", e);
390 return DEX_OPT_FAILED;
391 }
392 }
393
394 /**
Andreas Gampea8908752015-11-10 08:58:14 -0800395 * Adjust the given dexopt-needed value. Can be overridden to influence the decision to
396 * optimize or not (and in what way).
397 */
398 protected int adjustDexoptNeeded(int dexoptNeeded) {
399 return dexoptNeeded;
400 }
401
402 /**
403 * Adjust the given dexopt flags that will be passed to the installer.
404 */
405 protected int adjustDexoptFlags(int dexoptFlags) {
406 return dexoptFlags;
407 }
408
Narayan Kamath88eea9e2016-05-02 14:44:31 +0100409 /**
410 * Dumps the dexopt state of the given package {@code pkg} to the given {@code PrintWriter}.
411 */
Calin Juravle41a57a62017-08-06 19:20:19 -0700412 void dumpDexoptState(IndentingPrintWriter pw, PackageParser.Package pkg,
413 PackageDexUsage.PackageUseInfo useInfo) {
Narayan Kamath88eea9e2016-05-02 14:44:31 +0100414 final String[] instructionSets = getAppDexInstructionSets(pkg.applicationInfo);
415 final String[] dexCodeInstructionSets = getDexCodeInstructionSets(instructionSets);
416
417 final List<String> paths = pkg.getAllCodePathsExcludingResourceOnly();
418
Calin Juravle41a57a62017-08-06 19:20:19 -0700419 for (String path : paths) {
420 pw.println("path: " + path);
421 pw.increaseIndent();
422
423 for (String isa : dexCodeInstructionSets) {
424 String status = null;
425 try {
426 status = DexFile.getDexFileStatus(path, isa);
427 } catch (IOException ioe) {
428 status = "[Exception]: " + ioe.getMessage();
429 }
430 pw.println(isa + ": " + status);
431 }
432
433 if (useInfo.isUsedByOtherApps(path)) {
Calin Juravle94837e32017-09-26 13:23:00 -0700434 pw.println("used by other apps: " + useInfo.getLoadingPackages(path));
Calin Juravle41a57a62017-08-06 19:20:19 -0700435 }
436
437 Map<String, PackageDexUsage.DexUseInfo> dexUseInfoMap = useInfo.getDexUseInfoMap();
438
439 if (!dexUseInfoMap.isEmpty()) {
440 pw.println("known secondary dex files:");
441 pw.increaseIndent();
442 for (Map.Entry<String, PackageDexUsage.DexUseInfo> e : dexUseInfoMap.entrySet()) {
443 String dex = e.getKey();
444 PackageDexUsage.DexUseInfo dexUseInfo = e.getValue();
445 pw.println(dex);
446 pw.increaseIndent();
Calin Juravlecf722222017-09-18 17:40:48 -0700447 // TODO(calin): get the status of the oat file (needs installd call)
Calin Juravle41a57a62017-08-06 19:20:19 -0700448 pw.println("class loader context: " + dexUseInfo.getClassLoaderContext());
449 if (dexUseInfo.isUsedByOtherApps()) {
Calin Juravle94837e32017-09-26 13:23:00 -0700450 pw.println("used by other apps: " + dexUseInfo.getLoadingPackages());
Calin Juravle41a57a62017-08-06 19:20:19 -0700451 }
452 pw.decreaseIndent();
453 }
454 pw.decreaseIndent();
455 }
456 pw.decreaseIndent();
Narayan Kamath88eea9e2016-05-02 14:44:31 +0100457 }
458 }
459
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800460 /**
461 * Returns the compiler filter that should be used to optimize the package code.
462 * The target filter will be updated if the package code is used by other apps
463 * or if it has the safe mode flag set.
464 */
Calin Juravlec22c30e2017-01-16 19:18:48 -0800465 private String getRealCompilerFilter(ApplicationInfo info, String targetCompilerFilter,
466 boolean isUsedByOtherApps) {
467 int flags = info.flags;
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800468 boolean vmSafeMode = (flags & ApplicationInfo.FLAG_VM_SAFE_MODE) != 0;
Mathieu Chartier41e4a372016-09-02 16:36:42 -0700469 if (vmSafeMode) {
Nicolas Geoffrayd093b202017-05-03 13:11:58 +0100470 return getSafeModeCompilerFilter(targetCompilerFilter);
Mathieu Chartier41e4a372016-09-02 16:36:42 -0700471 }
472
Calin Juravlec22c30e2017-01-16 19:18:48 -0800473 if (isProfileGuidedCompilerFilter(targetCompilerFilter) && isUsedByOtherApps) {
Calin Juravlef53201f2017-09-15 11:09:29 -0700474 // If the dex files is used by other apps, apply the shared filter.
475 return PackageManagerServiceCompilerMapping.getCompilerFilterForReason(
476 PackageManagerService.REASON_SHARED);
Andreas Gampebdd30d82016-03-20 11:32:11 -0700477 }
478
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800479 return targetCompilerFilter;
Fyodor Kupolov74876572015-02-23 17:14:45 -0800480 }
481
Fyodor Kupolovb94c1652015-03-03 12:25:30 -0800482 /**
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800483 * Computes the dex flags that needs to be pass to installd for the given package and compiler
484 * filter.
485 */
Nicolas Geoffray3b4359a2017-05-25 13:53:22 +0100486 private int getDexFlags(PackageParser.Package pkg, String compilerFilter,
487 boolean bootComplete) {
488 return getDexFlags(pkg.applicationInfo, compilerFilter, bootComplete);
Calin Juravlec22c30e2017-01-16 19:18:48 -0800489 }
490
Nicolas Geoffray3b4359a2017-05-25 13:53:22 +0100491 private int getDexFlags(ApplicationInfo info, String compilerFilter, boolean bootComplete) {
Calin Juravlec22c30e2017-01-16 19:18:48 -0800492 int flags = info.flags;
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800493 boolean debuggable = (flags & ApplicationInfo.FLAG_DEBUGGABLE) != 0;
494 // Profile guide compiled oat files should not be public.
495 boolean isProfileGuidedFilter = isProfileGuidedCompilerFilter(compilerFilter);
Calin Juravlec22c30e2017-01-16 19:18:48 -0800496 boolean isPublic = !info.isForwardLocked() && !isProfileGuidedFilter;
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800497 int profileFlag = isProfileGuidedFilter ? DEXOPT_PROFILE_GUIDED : 0;
498 int dexFlags =
499 (isPublic ? DEXOPT_PUBLIC : 0)
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800500 | (debuggable ? DEXOPT_DEBUGGABLE : 0)
501 | profileFlag
Nicolas Geoffray3b4359a2017-05-25 13:53:22 +0100502 | (bootComplete ? DEXOPT_BOOTCOMPLETE : 0);
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800503 return adjustDexoptFlags(dexFlags);
504 }
505
506 /**
507 * Assesses if there's a need to perform dexopt on {@code path} for the given
508 * configuration (isa, compiler filter, profile).
509 */
510 private int getDexoptNeeded(String path, String isa, String compilerFilter,
Shubham Ajmera246dccf2017-05-24 17:46:36 -0700511 boolean newProfile, boolean downgrade) {
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800512 int dexoptNeeded;
513 try {
Shubham Ajmera246dccf2017-05-24 17:46:36 -0700514 dexoptNeeded = DexFile.getDexOptNeeded(path, isa, compilerFilter, newProfile,
515 downgrade);
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800516 } catch (IOException ioe) {
517 Slog.w(TAG, "IOException reading apk: " + path, ioe);
518 return DEX_OPT_FAILED;
519 }
520 return adjustDexoptNeeded(dexoptNeeded);
521 }
522
523 /**
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800524 * Checks if there is an update on the profile information of the {@code pkg}.
525 * If the compiler filter is not profile guided the method returns false.
526 *
527 * Note that this is a "destructive" operation with side effects. Under the hood the
528 * current profile and the reference profile will be merged and subsequent calls
529 * may return a different result.
530 */
531 private boolean isProfileUpdated(PackageParser.Package pkg, int uid, String compilerFilter) {
532 // Check if we are allowed to merge and if the compiler filter is profile guided.
533 if (!isProfileGuidedCompilerFilter(compilerFilter)) {
534 return false;
535 }
536 // Merge profiles. It returns whether or not there was an updated in the profile info.
537 try {
538 return mInstaller.mergeProfiles(uid, pkg.packageName);
539 } catch (InstallerException e) {
540 Slog.w(TAG, "Failed to merge profiles", e);
541 }
542 return false;
543 }
544
545 /**
546 * Creates oat dir for the specified package if needed and supported.
547 * In certain cases oat directory
Fyodor Kupolovb94c1652015-03-03 12:25:30 -0800548 * <strong>cannot</strong> be created:
549 * <ul>
550 * <li>{@code pkg} is a system app, which is not updated.</li>
551 * <li>Package location is not a directory, i.e. monolithic install.</li>
552 * </ul>
553 *
Richard Uhler7b08b352015-03-25 16:25:57 -0700554 * @return Absolute path to the oat directory or null, if oat directory
555 * cannot be created.
Fyodor Kupolovb94c1652015-03-03 12:25:30 -0800556 */
557 @Nullable
Todd Kennedy27c24fb2015-09-17 16:49:25 -0700558 private String createOatDirIfSupported(PackageParser.Package pkg, String dexInstructionSet) {
Fyodor Kupolovebcac162015-09-09 15:56:45 -0700559 if (!pkg.canHaveOatDir()) {
Fyodor Kupolovb94c1652015-03-03 12:25:30 -0800560 return null;
561 }
562 File codePath = new File(pkg.codePath);
563 if (codePath.isDirectory()) {
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800564 // TODO(calin): why do we create this only if the codePath is a directory? (i.e for
565 // cluster packages). It seems that the logic for the folder creation is
566 // split between installd and here.
Fyodor Kupolovb94c1652015-03-03 12:25:30 -0800567 File oatDir = getOatDir(codePath);
Jeff Sharkeyfdeeeea2016-01-11 17:34:24 -0700568 try {
Andreas Gampea8908752015-11-10 08:58:14 -0800569 mInstaller.createOatDir(oatDir.getAbsolutePath(), dexInstructionSet);
Jeff Sharkeyfdeeeea2016-01-11 17:34:24 -0700570 } catch (InstallerException e) {
571 Slog.w(TAG, "Failed to create oat dir", e);
572 return null;
573 }
Richard Uhler7b08b352015-03-25 16:25:57 -0700574 return oatDir.getAbsolutePath();
Fyodor Kupolovb94c1652015-03-03 12:25:30 -0800575 }
576 return null;
577 }
578
579 static File getOatDir(File codePath) {
580 return new File(codePath, OAT_DIR_NAME);
581 }
582
Fyodor Kupolova627c092015-05-05 18:44:39 -0700583 void systemReady() {
584 mSystemReady = true;
585 }
Andreas Gampea8908752015-11-10 08:58:14 -0800586
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800587 private String printDexoptFlags(int flags) {
588 ArrayList<String> flagsList = new ArrayList<>();
589
590 if ((flags & DEXOPT_BOOTCOMPLETE) == DEXOPT_BOOTCOMPLETE) {
591 flagsList.add("boot_complete");
592 }
593 if ((flags & DEXOPT_DEBUGGABLE) == DEXOPT_DEBUGGABLE) {
594 flagsList.add("debuggable");
595 }
596 if ((flags & DEXOPT_PROFILE_GUIDED) == DEXOPT_PROFILE_GUIDED) {
597 flagsList.add("profile_guided");
598 }
599 if ((flags & DEXOPT_PUBLIC) == DEXOPT_PUBLIC) {
600 flagsList.add("public");
601 }
Calin Juravlec22c30e2017-01-16 19:18:48 -0800602 if ((flags & DEXOPT_SECONDARY_DEX) == DEXOPT_SECONDARY_DEX) {
603 flagsList.add("secondary");
604 }
605 if ((flags & DEXOPT_FORCE) == DEXOPT_FORCE) {
606 flagsList.add("force");
607 }
608 if ((flags & DEXOPT_STORAGE_CE) == DEXOPT_STORAGE_CE) {
609 flagsList.add("storage_ce");
610 }
611 if ((flags & DEXOPT_STORAGE_DE) == DEXOPT_STORAGE_DE) {
612 flagsList.add("storage_de");
613 }
614
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800615 return String.join(",", flagsList);
616 }
617
Andreas Gampea8908752015-11-10 08:58:14 -0800618 /**
619 * A specialized PackageDexOptimizer that overrides already-installed checks, forcing a
620 * dexopt path.
621 */
622 public static class ForcedUpdatePackageDexOptimizer extends PackageDexOptimizer {
623
624 public ForcedUpdatePackageDexOptimizer(Installer installer, Object installLock,
625 Context context, String wakeLockTag) {
626 super(installer, installLock, context, wakeLockTag);
627 }
628
629 public ForcedUpdatePackageDexOptimizer(PackageDexOptimizer from) {
630 super(from);
631 }
632
633 @Override
Andreas Gampea8908752015-11-10 08:58:14 -0800634 protected int adjustDexoptNeeded(int dexoptNeeded) {
Nicolas Geoffray96d12a92017-05-03 11:51:53 +0100635 if (dexoptNeeded == DexFile.NO_DEXOPT_NEEDED) {
636 // Ensure compilation by pretending a compiler filter change on the
637 // apk/odex location (the reason for the '-'. A positive value means
638 // the 'oat' location).
639 return -DexFile.DEX2OAT_FOR_FILTER;
640 }
641 return dexoptNeeded;
Andreas Gampea8908752015-11-10 08:58:14 -0800642 }
Calin Juravlec22c30e2017-01-16 19:18:48 -0800643
644 @Override
645 protected int adjustDexoptFlags(int flags) {
646 // Add DEXOPT_FORCE flag to signal installd that it should force compilation
647 // and discard dexoptanalyzer result.
648 return flags | DEXOPT_FORCE;
649 }
Andreas Gampea8908752015-11-10 08:58:14 -0800650 }
Fyodor Kupolov74876572015-02-23 17:14:45 -0800651}