blob: 2f4f5ab723da861f24b2695cdf6005d7f4d59686 [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;
Fyodor Kupolov74876572015-02-23 17:14:45 -080026import android.os.UserHandle;
Fyodor Kupolova627c092015-05-05 18:44:39 -070027import android.os.WorkSource;
Fyodor Kupolov74876572015-02-23 17:14:45 -080028import android.util.Log;
29import android.util.Slog;
30
Calin Juravle2d4b6ad72017-01-04 13:22:14 -080031import com.android.internal.annotations.GuardedBy;
Narayan Kamath88eea9e2016-05-02 14:44:31 +010032import com.android.internal.util.IndentingPrintWriter;
Jeff Sharkey740f5232016-12-09 14:31:26 -070033import com.android.server.pm.Installer.InstallerException;
Calin Juravle3b74c412017-08-03 19:48:37 -070034import com.android.server.pm.dex.DexManager;
Calin Juravle1d0e83d2017-07-17 15:12:01 -070035import com.android.server.pm.dex.DexoptOptions;
Calin Juravle19da1cf2017-07-12 18:52:49 -070036import com.android.server.pm.dex.DexoptUtils;
Calin Juravlef1ff36f2017-07-22 12:33:41 -070037import com.android.server.pm.dex.PackageDexUsage;
Jeff Sharkeyfdeeeea2016-01-11 17:34:24 -070038
Fyodor Kupolovb94c1652015-03-03 12:25:30 -080039import java.io.File;
Fyodor Kupolov74876572015-02-23 17:14:45 -080040import java.io.IOException;
Calin Juravle2d4b6ad72017-01-04 13:22:14 -080041import java.util.ArrayList;
Fyodor Kupolov74876572015-02-23 17:14:45 -080042import java.util.List;
Calin Juravle41a57a62017-08-06 19:20:19 -070043import java.util.Map;
Fyodor Kupolov74876572015-02-23 17:14:45 -080044
45import dalvik.system.DexFile;
Fyodor Kupolov74876572015-02-23 17:14:45 -080046
Todd Kennedyfa54ab72015-09-25 07:46:12 -070047import static com.android.server.pm.Installer.DEXOPT_BOOTCOMPLETE;
48import static com.android.server.pm.Installer.DEXOPT_DEBUGGABLE;
Andreas Gampebdd30d82016-03-20 11:32:11 -070049import static com.android.server.pm.Installer.DEXOPT_PROFILE_GUIDED;
Todd Kennedyfa54ab72015-09-25 07:46:12 -070050import static com.android.server.pm.Installer.DEXOPT_PUBLIC;
Calin Juravlec22c30e2017-01-16 19:18:48 -080051import static com.android.server.pm.Installer.DEXOPT_SECONDARY_DEX;
52import static com.android.server.pm.Installer.DEXOPT_FORCE;
53import static com.android.server.pm.Installer.DEXOPT_STORAGE_CE;
54import static com.android.server.pm.Installer.DEXOPT_STORAGE_DE;
Fyodor Kupolov74876572015-02-23 17:14:45 -080055import static com.android.server.pm.InstructionSets.getAppDexInstructionSets;
56import static com.android.server.pm.InstructionSets.getDexCodeInstructionSets;
Calin Juravle2d4b6ad72017-01-04 13:22:14 -080057
Fyodor Kupolov28f28552017-05-02 12:11:02 -070058import static com.android.server.pm.PackageManagerService.WATCHDOG_TIMEOUT;
Nicolas Geoffrayb0818e82017-05-05 10:23:19 +010059
Nicolas Geoffrayd093b202017-05-03 13:11:58 +010060import static dalvik.system.DexFile.getNonProfileGuidedCompilerFilter;
61import static dalvik.system.DexFile.getSafeModeCompilerFilter;
Calin Juravle2d4b6ad72017-01-04 13:22:14 -080062import static dalvik.system.DexFile.isProfileGuidedCompilerFilter;
Fyodor Kupolov74876572015-02-23 17:14:45 -080063
64/**
65 * Helper class for running dexopt command on packages.
66 */
Calin Juravlec22c30e2017-01-16 19:18:48 -080067public class PackageDexOptimizer {
Fyodor Kupolovb94c1652015-03-03 12:25:30 -080068 private static final String TAG = "PackageManager.DexOptimizer";
69 static final String OAT_DIR_NAME = "oat";
70 // TODO b/19550105 Remove error codes and use exceptions
Calin Juravlec22c30e2017-01-16 19:18:48 -080071 public static final int DEX_OPT_SKIPPED = 0;
72 public static final int DEX_OPT_PERFORMED = 1;
73 public static final int DEX_OPT_FAILED = -1;
Fyodor Kupolov28f28552017-05-02 12:11:02 -070074 // One minute over PM WATCHDOG_TIMEOUT
75 private static final long WAKELOCK_TIMEOUT_MS = WATCHDOG_TIMEOUT + 1000 * 60;
Fyodor Kupolov74876572015-02-23 17:14:45 -080076
Calin Juravleaae35762017-02-14 17:53:13 -080077 /** Special library name that skips shared libraries check during compilation. */
78 public static final String SKIP_SHARED_LIBRARY_CHECK = "&";
79
Fyodor Kupolov28f28552017-05-02 12:11:02 -070080 @GuardedBy("mInstallLock")
Andreas Gampea8908752015-11-10 08:58:14 -080081 private final Installer mInstaller;
82 private final Object mInstallLock;
Fyodor Kupolov74876572015-02-23 17:14:45 -080083
Fyodor Kupolov28f28552017-05-02 12:11:02 -070084 @GuardedBy("mInstallLock")
Fyodor Kupolova627c092015-05-05 18:44:39 -070085 private final PowerManager.WakeLock mDexoptWakeLock;
86 private volatile boolean mSystemReady;
87
Andreas Gampea8908752015-11-10 08:58:14 -080088 PackageDexOptimizer(Installer installer, Object installLock, Context context,
89 String wakeLockTag) {
90 this.mInstaller = installer;
91 this.mInstallLock = installLock;
92
93 PowerManager powerManager = (PowerManager)context.getSystemService(Context.POWER_SERVICE);
94 mDexoptWakeLock = powerManager.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK, wakeLockTag);
95 }
96
97 protected PackageDexOptimizer(PackageDexOptimizer from) {
98 this.mInstaller = from.mInstaller;
99 this.mInstallLock = from.mInstallLock;
100 this.mDexoptWakeLock = from.mDexoptWakeLock;
101 this.mSystemReady = from.mSystemReady;
Fyodor Kupolov74876572015-02-23 17:14:45 -0800102 }
103
Calin Juravledb4a79a2015-12-23 18:55:08 +0200104 static boolean canOptimizePackage(PackageParser.Package pkg) {
Calin Juravle6dfd83d2016-01-29 18:23:57 +0000105 return (pkg.applicationInfo.flags & ApplicationInfo.FLAG_HAS_CODE) != 0;
Calin Juravledb4a79a2015-12-23 18:55:08 +0200106 }
107
Fyodor Kupolov74876572015-02-23 17:14:45 -0800108 /**
109 * Performs dexopt on all code paths and libraries of the specified package for specified
110 * instruction sets.
111 *
Andreas Gampea8908752015-11-10 08:58:14 -0800112 * <p>Calls to {@link com.android.server.pm.Installer#dexopt} on {@link #mInstaller} are
113 * synchronized on {@link #mInstallLock}.
Fyodor Kupolov74876572015-02-23 17:14:45 -0800114 */
Jeff Haoc7b94822016-03-16 15:56:07 -0700115 int performDexOpt(PackageParser.Package pkg, String[] sharedLibraries,
Calin Juravle1d0e83d2017-07-17 15:12:01 -0700116 String[] instructionSets, CompilerStats.PackageStats packageStats,
Calin Juravle3b74c412017-08-03 19:48:37 -0700117 PackageDexUsage.PackageUseInfo packageUseInfo, DexoptOptions options) {
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800118 if (!canOptimizePackage(pkg)) {
119 return DEX_OPT_SKIPPED;
120 }
Andreas Gampea8908752015-11-10 08:58:14 -0800121 synchronized (mInstallLock) {
Fyodor Kupolov28f28552017-05-02 12:11:02 -0700122 final long acquireTime = acquireWakeLockLI(pkg.applicationInfo.uid);
Fyodor Kupolova627c092015-05-05 18:44:39 -0700123 try {
Calin Juravle1d0e83d2017-07-17 15:12:01 -0700124 return performDexOptLI(pkg, sharedLibraries, instructionSets,
Calin Juravle3b74c412017-08-03 19:48:37 -0700125 packageStats, packageUseInfo, options);
Fyodor Kupolova627c092015-05-05 18:44:39 -0700126 } finally {
Fyodor Kupolov28f28552017-05-02 12:11:02 -0700127 releaseWakeLockLI(acquireTime);
Fyodor Kupolova627c092015-05-05 18:44:39 -0700128 }
Fyodor Kupolov74876572015-02-23 17:14:45 -0800129 }
130 }
131
Andreas Gampea8908752015-11-10 08:58:14 -0800132 /**
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800133 * Performs dexopt on all code paths of the given package.
134 * It assumes the install lock is held.
135 */
136 @GuardedBy("mInstallLock")
137 private int performDexOptLI(PackageParser.Package pkg, String[] sharedLibraries,
Calin Juravle1d0e83d2017-07-17 15:12:01 -0700138 String[] targetInstructionSets, CompilerStats.PackageStats packageStats,
Calin Juravle3b74c412017-08-03 19:48:37 -0700139 PackageDexUsage.PackageUseInfo packageUseInfo, DexoptOptions options) {
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800140 final String[] instructionSets = targetInstructionSets != null ?
141 targetInstructionSets : getAppDexInstructionSets(pkg.applicationInfo);
142 final String[] dexCodeInstructionSets = getDexCodeInstructionSets(instructionSets);
Jeff Hao5def5e52017-04-19 14:42:16 -0700143 final List<String> paths = pkg.getAllCodePaths();
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800144 final int sharedGid = UserHandle.getSharedAppGid(pkg.applicationInfo.uid);
145
Calin Juravle19da1cf2017-07-12 18:52:49 -0700146 // Get the class loader context dependencies.
147 // For each code path in the package, this array contains the class loader context that
148 // needs to be passed to dexopt in order to ensure correct optimizations.
149 String[] classLoaderContexts = DexoptUtils.getClassLoaderContexts(
150 pkg.applicationInfo, sharedLibraries);
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800151
152 int result = DEX_OPT_SKIPPED;
Jeff Hao5def5e52017-04-19 14:42:16 -0700153 for (int i = 0; i < paths.size(); i++) {
154 // Skip paths that have no code.
155 if ((i == 0 && (pkg.applicationInfo.flags & ApplicationInfo.FLAG_HAS_CODE) == 0) ||
156 (i != 0 && (pkg.splitFlags[i - 1] & ApplicationInfo.FLAG_HAS_CODE) == 0)) {
157 continue;
158 }
159 // Append shared libraries with split dependencies for this split.
160 String path = paths.get(i);
Calin Juravleb6f844d2017-07-17 15:23:21 -0700161 if (options.getSplitName() != null) {
162 // We are asked to compile only a specific split. Check that the current path is
163 // what we are looking for.
164 if (!options.getSplitName().equals(new File(path).getName())) {
165 continue;
166 }
167 }
168
Calin Juravle3b74c412017-08-03 19:48:37 -0700169 final boolean isUsedByOtherApps = options.isDexoptAsSharedLibrary()
Calin Juravle52a452c2017-08-04 01:42:17 -0700170 || packageUseInfo.isUsedByOtherApps(path);
Calin Juravle3b74c412017-08-03 19:48:37 -0700171 final String compilerFilter = getRealCompilerFilter(pkg.applicationInfo,
172 options.getCompilerFilter(), isUsedByOtherApps);
173 final boolean profileUpdated = options.isCheckForProfileUpdates() &&
174 isProfileUpdated(pkg, sharedGid, compilerFilter);
175
176 // Get the dexopt flags after getRealCompilerFilter to make sure we get the correct
177 // flags.
178 final int dexoptFlags = getDexFlags(pkg, compilerFilter, options.isBootComplete());
179
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800180 for (String dexCodeIsa : dexCodeInstructionSets) {
Calin Juravle19da1cf2017-07-12 18:52:49 -0700181 int newResult = dexOptPath(pkg, path, dexCodeIsa, compilerFilter,
182 profileUpdated, classLoaderContexts[i], dexoptFlags, sharedGid,
183 packageStats, options.isDowngrade());
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800184 // The end result is:
185 // - FAILED if any path failed,
186 // - PERFORMED if at least one path needed compilation,
187 // - SKIPPED when all paths are up to date
188 if ((result != DEX_OPT_FAILED) && (newResult != DEX_OPT_SKIPPED)) {
189 result = newResult;
190 }
191 }
192 }
193 return result;
194 }
195
196 /**
197 * Performs dexopt on the {@code path} belonging to the package {@code pkg}.
198 *
199 * @return
200 * DEX_OPT_FAILED if there was any exception during dexopt
201 * DEX_OPT_PERFORMED if dexopt was performed successfully on the given path.
202 * DEX_OPT_SKIPPED if the path does not need to be deopt-ed.
203 */
204 @GuardedBy("mInstallLock")
205 private int dexOptPath(PackageParser.Package pkg, String path, String isa,
206 String compilerFilter, boolean profileUpdated, String sharedLibrariesPath,
Shubham Ajmera246dccf2017-05-24 17:46:36 -0700207 int dexoptFlags, int uid, CompilerStats.PackageStats packageStats, boolean downgrade) {
208 int dexoptNeeded = getDexoptNeeded(path, isa, compilerFilter, profileUpdated, downgrade);
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800209 if (Math.abs(dexoptNeeded) == DexFile.NO_DEXOPT_NEEDED) {
210 return DEX_OPT_SKIPPED;
211 }
212
213 // TODO(calin): there's no need to try to create the oat dir over and over again,
214 // especially since it involve an extra installd call. We should create
215 // if (if supported) on the fly during the dexopt call.
216 String oatDir = createOatDirIfSupported(pkg, isa);
217
218 Log.i(TAG, "Running dexopt (dexoptNeeded=" + dexoptNeeded + ") on: " + path
219 + " pkg=" + pkg.applicationInfo.packageName + " isa=" + isa
220 + " dexoptFlags=" + printDexoptFlags(dexoptFlags)
221 + " target-filter=" + compilerFilter + " oatDir=" + oatDir
222 + " sharedLibraries=" + sharedLibrariesPath);
223
224 try {
225 long startTime = System.currentTimeMillis();
226
Shubham Ajmera246dccf2017-05-24 17:46:36 -0700227 // TODO: Consider adding 2 different APIs for primary and secondary dexopt.
228 // installd only uses downgrade flag for secondary dex files and ignores it for
229 // primary dex files.
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800230 mInstaller.dexopt(path, uid, pkg.packageName, isa, dexoptNeeded, oatDir, dexoptFlags,
Shubham Ajmera246dccf2017-05-24 17:46:36 -0700231 compilerFilter, pkg.volumeUuid, sharedLibrariesPath, pkg.applicationInfo.seInfo,
232 false /* downgrade*/);
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800233
234 if (packageStats != null) {
235 long endTime = System.currentTimeMillis();
236 packageStats.setCompileTime(path, (int)(endTime - startTime));
237 }
238 return DEX_OPT_PERFORMED;
239 } catch (InstallerException e) {
240 Slog.w(TAG, "Failed to dexopt", e);
241 return DEX_OPT_FAILED;
242 }
243 }
244
245 /**
Calin Juravlec22c30e2017-01-16 19:18:48 -0800246 * Performs dexopt on the secondary dex {@code path} belonging to the app {@code info}.
247 *
248 * @return
249 * DEX_OPT_FAILED if there was any exception during dexopt
250 * DEX_OPT_PERFORMED if dexopt was performed successfully on the given path.
251 * NOTE that DEX_OPT_PERFORMED for secondary dex files includes the case when the dex file
252 * didn't need an update. That's because at the moment we don't get more than success/failure
253 * from installd.
254 *
255 * TODO(calin): Consider adding return codes to installd dexopt invocation (rather than
256 * throwing exceptions). Or maybe make a separate call to installd to get DexOptNeeded, though
257 * that seems wasteful.
258 */
Calin Juravlef1ff36f2017-07-22 12:33:41 -0700259 public int dexOptSecondaryDexPath(ApplicationInfo info, String path,
260 PackageDexUsage.DexUseInfo dexUseInfo, DexoptOptions options) {
Calin Juravlec22c30e2017-01-16 19:18:48 -0800261 synchronized (mInstallLock) {
Fyodor Kupolov28f28552017-05-02 12:11:02 -0700262 final long acquireTime = acquireWakeLockLI(info.uid);
Calin Juravlec22c30e2017-01-16 19:18:48 -0800263 try {
Calin Juravlef1ff36f2017-07-22 12:33:41 -0700264 return dexOptSecondaryDexPathLI(info, path, dexUseInfo, options);
Calin Juravlec22c30e2017-01-16 19:18:48 -0800265 } finally {
Fyodor Kupolov28f28552017-05-02 12:11:02 -0700266 releaseWakeLockLI(acquireTime);
Calin Juravlec22c30e2017-01-16 19:18:48 -0800267 }
268 }
269 }
270
271 @GuardedBy("mInstallLock")
Fyodor Kupolov28f28552017-05-02 12:11:02 -0700272 private long acquireWakeLockLI(final int uid) {
273 // During boot the system doesn't need to instantiate and obtain a wake lock.
274 // PowerManager might not be ready, but that doesn't mean that we can't proceed with
275 // dexopt.
276 if (!mSystemReady) {
277 return -1;
278 }
279 mDexoptWakeLock.setWorkSource(new WorkSource(uid));
280 mDexoptWakeLock.acquire(WAKELOCK_TIMEOUT_MS);
281 return SystemClock.elapsedRealtime();
282 }
283
284 @GuardedBy("mInstallLock")
285 private void releaseWakeLockLI(final long acquireTime) {
286 if (acquireTime < 0) {
287 return;
288 }
289 try {
290 if (mDexoptWakeLock.isHeld()) {
291 mDexoptWakeLock.release();
292 }
293 final long duration = SystemClock.elapsedRealtime() - acquireTime;
294 if (duration >= WAKELOCK_TIMEOUT_MS) {
295 Slog.wtf(TAG, "WakeLock " + mDexoptWakeLock.getTag()
296 + " time out. Operation took " + duration + " ms. Thread: "
297 + Thread.currentThread().getName());
298 }
299 } catch (Exception e) {
300 Slog.wtf(TAG, "Error while releasing " + mDexoptWakeLock.getTag() + " lock", e);
301 }
302 }
303
304 @GuardedBy("mInstallLock")
Calin Juravlef1ff36f2017-07-22 12:33:41 -0700305 private int dexOptSecondaryDexPathLI(ApplicationInfo info, String path,
306 PackageDexUsage.DexUseInfo dexUseInfo, DexoptOptions options) {
307 if (options.isDexoptOnlySharedDex() && !dexUseInfo.isUsedByOtherApps()) {
308 // We are asked to optimize only the dex files used by other apps and this is not
309 // on of them: skip it.
310 return DEX_OPT_SKIPPED;
311 }
312
313 String compilerFilter = getRealCompilerFilter(info, options.getCompilerFilter(),
314 dexUseInfo.isUsedByOtherApps());
Calin Juravleefb1c942017-04-04 20:31:44 -0700315 // Get the dexopt flags after getRealCompilerFilter to make sure we get the correct flags.
Nicolas Geoffray3b4359a2017-05-25 13:53:22 +0100316 // Secondary dex files are currently not compiled at boot.
317 int dexoptFlags = getDexFlags(info, compilerFilter, /* bootComplete */ true)
318 | DEXOPT_SECONDARY_DEX;
Calin Juravlec22c30e2017-01-16 19:18:48 -0800319 // Check the app storage and add the appropriate flags.
Calin Juravleadbadd52017-03-28 18:19:15 -0700320 if (info.deviceProtectedDataDir != null &&
321 FileUtils.contains(info.deviceProtectedDataDir, path)) {
Calin Juravlec22c30e2017-01-16 19:18:48 -0800322 dexoptFlags |= DEXOPT_STORAGE_DE;
Calin Juravleadbadd52017-03-28 18:19:15 -0700323 } else if (info.credentialProtectedDataDir != null &&
324 FileUtils.contains(info.credentialProtectedDataDir, path)) {
Calin Juravlec22c30e2017-01-16 19:18:48 -0800325 dexoptFlags |= DEXOPT_STORAGE_CE;
326 } else {
327 Slog.e(TAG, "Could not infer CE/DE storage for package " + info.packageName);
328 return DEX_OPT_FAILED;
329 }
Calin Juravlec22c30e2017-01-16 19:18:48 -0800330 Log.d(TAG, "Running dexopt on: " + path
Calin Juravlef1ff36f2017-07-22 12:33:41 -0700331 + " pkg=" + info.packageName + " isa=" + dexUseInfo.getLoaderIsas()
Calin Juravlec22c30e2017-01-16 19:18:48 -0800332 + " dexoptFlags=" + printDexoptFlags(dexoptFlags)
333 + " target-filter=" + compilerFilter);
334
Calin Juravlef1ff36f2017-07-22 12:33:41 -0700335 String classLoaderContext;
336 if (dexUseInfo.isUnknownClassLoaderContext() ||
337 dexUseInfo.isUnsupportedClassLoaderContext() ||
338 dexUseInfo.isVariableClassLoaderContext()) {
339 // If we have an unknown (not yet set), unsupported (custom class loaders), or a
340 // variable class loader chain, compile without a context and mark the oat file with
341 // SKIP_SHARED_LIBRARY_CHECK. Note that his might lead to a incorrect compilation.
342 // TODO(calin): We should just extract in this case.
343 classLoaderContext = SKIP_SHARED_LIBRARY_CHECK;
344 } else {
345 classLoaderContext = dexUseInfo.getClassLoaderContext();
346 }
Calin Juravlec22c30e2017-01-16 19:18:48 -0800347 try {
Calin Juravlef1ff36f2017-07-22 12:33:41 -0700348 for (String isa : dexUseInfo.getLoaderIsas()) {
Calin Juravlec22c30e2017-01-16 19:18:48 -0800349 // Reuse the same dexopt path as for the primary apks. We don't need all the
350 // arguments as some (dexopNeeded and oatDir) will be computed by installd because
351 // system server cannot read untrusted app content.
352 // TODO(calin): maybe add a separate call.
353 mInstaller.dexopt(path, info.uid, info.packageName, isa, /*dexoptNeeded*/ 0,
354 /*oatDir*/ null, dexoptFlags,
Calin Juravlef1ff36f2017-07-22 12:33:41 -0700355 compilerFilter, info.volumeUuid, classLoaderContext, info.seInfoUser,
356 options.isDowngrade());
Calin Juravlec22c30e2017-01-16 19:18:48 -0800357 }
358
359 return DEX_OPT_PERFORMED;
360 } catch (InstallerException e) {
361 Slog.w(TAG, "Failed to dexopt", e);
362 return DEX_OPT_FAILED;
363 }
364 }
365
366 /**
Andreas Gampea8908752015-11-10 08:58:14 -0800367 * Adjust the given dexopt-needed value. Can be overridden to influence the decision to
368 * optimize or not (and in what way).
369 */
370 protected int adjustDexoptNeeded(int dexoptNeeded) {
371 return dexoptNeeded;
372 }
373
374 /**
375 * Adjust the given dexopt flags that will be passed to the installer.
376 */
377 protected int adjustDexoptFlags(int dexoptFlags) {
378 return dexoptFlags;
379 }
380
Narayan Kamath88eea9e2016-05-02 14:44:31 +0100381 /**
382 * Dumps the dexopt state of the given package {@code pkg} to the given {@code PrintWriter}.
383 */
Calin Juravle41a57a62017-08-06 19:20:19 -0700384 void dumpDexoptState(IndentingPrintWriter pw, PackageParser.Package pkg,
385 PackageDexUsage.PackageUseInfo useInfo) {
Narayan Kamath88eea9e2016-05-02 14:44:31 +0100386 final String[] instructionSets = getAppDexInstructionSets(pkg.applicationInfo);
387 final String[] dexCodeInstructionSets = getDexCodeInstructionSets(instructionSets);
388
389 final List<String> paths = pkg.getAllCodePathsExcludingResourceOnly();
390
Calin Juravle41a57a62017-08-06 19:20:19 -0700391 for (String path : paths) {
392 pw.println("path: " + path);
393 pw.increaseIndent();
394
395 for (String isa : dexCodeInstructionSets) {
396 String status = null;
397 try {
398 status = DexFile.getDexFileStatus(path, isa);
399 } catch (IOException ioe) {
400 status = "[Exception]: " + ioe.getMessage();
401 }
402 pw.println(isa + ": " + status);
403 }
404
405 if (useInfo.isUsedByOtherApps(path)) {
406 pw.println("used be other apps: " + useInfo.getLoadingPackages(path));
407 }
408
409 Map<String, PackageDexUsage.DexUseInfo> dexUseInfoMap = useInfo.getDexUseInfoMap();
410
411 if (!dexUseInfoMap.isEmpty()) {
412 pw.println("known secondary dex files:");
413 pw.increaseIndent();
414 for (Map.Entry<String, PackageDexUsage.DexUseInfo> e : dexUseInfoMap.entrySet()) {
415 String dex = e.getKey();
416 PackageDexUsage.DexUseInfo dexUseInfo = e.getValue();
417 pw.println(dex);
418 pw.increaseIndent();
419 for (String isa : dexUseInfo.getLoaderIsas()) {
420 String status = null;
421 try {
422 status = DexFile.getDexFileStatus(path, isa);
423 } catch (IOException ioe) {
424 status = "[Exception]: " + ioe.getMessage();
425 }
426 pw.println(isa + ": " + status);
427 }
428
429 pw.println("class loader context: " + dexUseInfo.getClassLoaderContext());
430 if (dexUseInfo.isUsedByOtherApps()) {
431 pw.println("used be other apps: " + dexUseInfo.getLoadingPackages());
432 }
433 pw.decreaseIndent();
434 }
435 pw.decreaseIndent();
436 }
437 pw.decreaseIndent();
Narayan Kamath88eea9e2016-05-02 14:44:31 +0100438 }
439 }
440
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800441 /**
442 * Returns the compiler filter that should be used to optimize the package code.
443 * The target filter will be updated if the package code is used by other apps
444 * or if it has the safe mode flag set.
445 */
Calin Juravlec22c30e2017-01-16 19:18:48 -0800446 private String getRealCompilerFilter(ApplicationInfo info, String targetCompilerFilter,
447 boolean isUsedByOtherApps) {
448 int flags = info.flags;
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800449 boolean vmSafeMode = (flags & ApplicationInfo.FLAG_VM_SAFE_MODE) != 0;
Mathieu Chartier41e4a372016-09-02 16:36:42 -0700450 if (vmSafeMode) {
Nicolas Geoffrayd093b202017-05-03 13:11:58 +0100451 return getSafeModeCompilerFilter(targetCompilerFilter);
Mathieu Chartier41e4a372016-09-02 16:36:42 -0700452 }
453
Calin Juravlec22c30e2017-01-16 19:18:48 -0800454 if (isProfileGuidedCompilerFilter(targetCompilerFilter) && isUsedByOtherApps) {
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800455 // If the dex files is used by other apps, we cannot use profile-guided compilation.
456 return getNonProfileGuidedCompilerFilter(targetCompilerFilter);
Andreas Gampebdd30d82016-03-20 11:32:11 -0700457 }
458
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800459 return targetCompilerFilter;
Fyodor Kupolov74876572015-02-23 17:14:45 -0800460 }
461
Fyodor Kupolovb94c1652015-03-03 12:25:30 -0800462 /**
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800463 * Computes the dex flags that needs to be pass to installd for the given package and compiler
464 * filter.
465 */
Nicolas Geoffray3b4359a2017-05-25 13:53:22 +0100466 private int getDexFlags(PackageParser.Package pkg, String compilerFilter,
467 boolean bootComplete) {
468 return getDexFlags(pkg.applicationInfo, compilerFilter, bootComplete);
Calin Juravlec22c30e2017-01-16 19:18:48 -0800469 }
470
Nicolas Geoffray3b4359a2017-05-25 13:53:22 +0100471 private int getDexFlags(ApplicationInfo info, String compilerFilter, boolean bootComplete) {
Calin Juravlec22c30e2017-01-16 19:18:48 -0800472 int flags = info.flags;
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800473 boolean debuggable = (flags & ApplicationInfo.FLAG_DEBUGGABLE) != 0;
474 // Profile guide compiled oat files should not be public.
475 boolean isProfileGuidedFilter = isProfileGuidedCompilerFilter(compilerFilter);
Calin Juravlec22c30e2017-01-16 19:18:48 -0800476 boolean isPublic = !info.isForwardLocked() && !isProfileGuidedFilter;
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800477 int profileFlag = isProfileGuidedFilter ? DEXOPT_PROFILE_GUIDED : 0;
478 int dexFlags =
479 (isPublic ? DEXOPT_PUBLIC : 0)
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800480 | (debuggable ? DEXOPT_DEBUGGABLE : 0)
481 | profileFlag
Nicolas Geoffray3b4359a2017-05-25 13:53:22 +0100482 | (bootComplete ? DEXOPT_BOOTCOMPLETE : 0);
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800483 return adjustDexoptFlags(dexFlags);
484 }
485
486 /**
487 * Assesses if there's a need to perform dexopt on {@code path} for the given
488 * configuration (isa, compiler filter, profile).
489 */
490 private int getDexoptNeeded(String path, String isa, String compilerFilter,
Shubham Ajmera246dccf2017-05-24 17:46:36 -0700491 boolean newProfile, boolean downgrade) {
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800492 int dexoptNeeded;
493 try {
Shubham Ajmera246dccf2017-05-24 17:46:36 -0700494 dexoptNeeded = DexFile.getDexOptNeeded(path, isa, compilerFilter, newProfile,
495 downgrade);
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800496 } catch (IOException ioe) {
497 Slog.w(TAG, "IOException reading apk: " + path, ioe);
498 return DEX_OPT_FAILED;
499 }
500 return adjustDexoptNeeded(dexoptNeeded);
501 }
502
503 /**
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800504 * Checks if there is an update on the profile information of the {@code pkg}.
505 * If the compiler filter is not profile guided the method returns false.
506 *
507 * Note that this is a "destructive" operation with side effects. Under the hood the
508 * current profile and the reference profile will be merged and subsequent calls
509 * may return a different result.
510 */
511 private boolean isProfileUpdated(PackageParser.Package pkg, int uid, String compilerFilter) {
512 // Check if we are allowed to merge and if the compiler filter is profile guided.
513 if (!isProfileGuidedCompilerFilter(compilerFilter)) {
514 return false;
515 }
516 // Merge profiles. It returns whether or not there was an updated in the profile info.
517 try {
518 return mInstaller.mergeProfiles(uid, pkg.packageName);
519 } catch (InstallerException e) {
520 Slog.w(TAG, "Failed to merge profiles", e);
521 }
522 return false;
523 }
524
525 /**
526 * Creates oat dir for the specified package if needed and supported.
527 * In certain cases oat directory
Fyodor Kupolovb94c1652015-03-03 12:25:30 -0800528 * <strong>cannot</strong> be created:
529 * <ul>
530 * <li>{@code pkg} is a system app, which is not updated.</li>
531 * <li>Package location is not a directory, i.e. monolithic install.</li>
532 * </ul>
533 *
Richard Uhler7b08b352015-03-25 16:25:57 -0700534 * @return Absolute path to the oat directory or null, if oat directory
535 * cannot be created.
Fyodor Kupolovb94c1652015-03-03 12:25:30 -0800536 */
537 @Nullable
Todd Kennedy27c24fb2015-09-17 16:49:25 -0700538 private String createOatDirIfSupported(PackageParser.Package pkg, String dexInstructionSet) {
Fyodor Kupolovebcac162015-09-09 15:56:45 -0700539 if (!pkg.canHaveOatDir()) {
Fyodor Kupolovb94c1652015-03-03 12:25:30 -0800540 return null;
541 }
542 File codePath = new File(pkg.codePath);
543 if (codePath.isDirectory()) {
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800544 // TODO(calin): why do we create this only if the codePath is a directory? (i.e for
545 // cluster packages). It seems that the logic for the folder creation is
546 // split between installd and here.
Fyodor Kupolovb94c1652015-03-03 12:25:30 -0800547 File oatDir = getOatDir(codePath);
Jeff Sharkeyfdeeeea2016-01-11 17:34:24 -0700548 try {
Andreas Gampea8908752015-11-10 08:58:14 -0800549 mInstaller.createOatDir(oatDir.getAbsolutePath(), dexInstructionSet);
Jeff Sharkeyfdeeeea2016-01-11 17:34:24 -0700550 } catch (InstallerException e) {
551 Slog.w(TAG, "Failed to create oat dir", e);
552 return null;
553 }
Richard Uhler7b08b352015-03-25 16:25:57 -0700554 return oatDir.getAbsolutePath();
Fyodor Kupolovb94c1652015-03-03 12:25:30 -0800555 }
556 return null;
557 }
558
559 static File getOatDir(File codePath) {
560 return new File(codePath, OAT_DIR_NAME);
561 }
562
Fyodor Kupolova627c092015-05-05 18:44:39 -0700563 void systemReady() {
564 mSystemReady = true;
565 }
Andreas Gampea8908752015-11-10 08:58:14 -0800566
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800567 private String printDexoptFlags(int flags) {
568 ArrayList<String> flagsList = new ArrayList<>();
569
570 if ((flags & DEXOPT_BOOTCOMPLETE) == DEXOPT_BOOTCOMPLETE) {
571 flagsList.add("boot_complete");
572 }
573 if ((flags & DEXOPT_DEBUGGABLE) == DEXOPT_DEBUGGABLE) {
574 flagsList.add("debuggable");
575 }
576 if ((flags & DEXOPT_PROFILE_GUIDED) == DEXOPT_PROFILE_GUIDED) {
577 flagsList.add("profile_guided");
578 }
579 if ((flags & DEXOPT_PUBLIC) == DEXOPT_PUBLIC) {
580 flagsList.add("public");
581 }
Calin Juravlec22c30e2017-01-16 19:18:48 -0800582 if ((flags & DEXOPT_SECONDARY_DEX) == DEXOPT_SECONDARY_DEX) {
583 flagsList.add("secondary");
584 }
585 if ((flags & DEXOPT_FORCE) == DEXOPT_FORCE) {
586 flagsList.add("force");
587 }
588 if ((flags & DEXOPT_STORAGE_CE) == DEXOPT_STORAGE_CE) {
589 flagsList.add("storage_ce");
590 }
591 if ((flags & DEXOPT_STORAGE_DE) == DEXOPT_STORAGE_DE) {
592 flagsList.add("storage_de");
593 }
594
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800595 return String.join(",", flagsList);
596 }
597
Andreas Gampea8908752015-11-10 08:58:14 -0800598 /**
599 * A specialized PackageDexOptimizer that overrides already-installed checks, forcing a
600 * dexopt path.
601 */
602 public static class ForcedUpdatePackageDexOptimizer extends PackageDexOptimizer {
603
604 public ForcedUpdatePackageDexOptimizer(Installer installer, Object installLock,
605 Context context, String wakeLockTag) {
606 super(installer, installLock, context, wakeLockTag);
607 }
608
609 public ForcedUpdatePackageDexOptimizer(PackageDexOptimizer from) {
610 super(from);
611 }
612
613 @Override
Andreas Gampea8908752015-11-10 08:58:14 -0800614 protected int adjustDexoptNeeded(int dexoptNeeded) {
Nicolas Geoffray96d12a92017-05-03 11:51:53 +0100615 if (dexoptNeeded == DexFile.NO_DEXOPT_NEEDED) {
616 // Ensure compilation by pretending a compiler filter change on the
617 // apk/odex location (the reason for the '-'. A positive value means
618 // the 'oat' location).
619 return -DexFile.DEX2OAT_FOR_FILTER;
620 }
621 return dexoptNeeded;
Andreas Gampea8908752015-11-10 08:58:14 -0800622 }
Calin Juravlec22c30e2017-01-16 19:18:48 -0800623
624 @Override
625 protected int adjustDexoptFlags(int flags) {
626 // Add DEXOPT_FORCE flag to signal installd that it should force compilation
627 // and discard dexoptanalyzer result.
628 return flags | DEXOPT_FORCE;
629 }
Andreas Gampea8908752015-11-10 08:58:14 -0800630 }
Fyodor Kupolov74876572015-02-23 17:14:45 -0800631}