blob: 68d9227ece431ed6df4065c9b021b88b6421c937 [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 Juravledea3fd82017-07-17 15:12:01 -070035import com.android.server.pm.dex.DexoptOptions;
Calin Juravle0a267a82017-07-12 18:52:49 -070036import com.android.server.pm.dex.DexoptUtils;
Jeff Sharkeyfdeeeea2016-01-11 17:34:24 -070037
Fyodor Kupolovb94c1652015-03-03 12:25:30 -080038import java.io.File;
Fyodor Kupolov74876572015-02-23 17:14:45 -080039import java.io.IOException;
Calin Juravle2d4b6ad72017-01-04 13:22:14 -080040import java.util.ArrayList;
Fyodor Kupolov74876572015-02-23 17:14:45 -080041import java.util.List;
Calin Juravlec22c30e2017-01-16 19:18:48 -080042import java.util.Set;
Fyodor Kupolov74876572015-02-23 17:14:45 -080043
44import dalvik.system.DexFile;
Fyodor Kupolov74876572015-02-23 17:14:45 -080045
Todd Kennedyfa54ab72015-09-25 07:46:12 -070046import static com.android.server.pm.Installer.DEXOPT_BOOTCOMPLETE;
47import static com.android.server.pm.Installer.DEXOPT_DEBUGGABLE;
Andreas Gampebdd30d82016-03-20 11:32:11 -070048import static com.android.server.pm.Installer.DEXOPT_PROFILE_GUIDED;
Todd Kennedyfa54ab72015-09-25 07:46:12 -070049import static com.android.server.pm.Installer.DEXOPT_PUBLIC;
Calin Juravlec22c30e2017-01-16 19:18:48 -080050import static com.android.server.pm.Installer.DEXOPT_SECONDARY_DEX;
51import static com.android.server.pm.Installer.DEXOPT_FORCE;
52import static com.android.server.pm.Installer.DEXOPT_STORAGE_CE;
53import static com.android.server.pm.Installer.DEXOPT_STORAGE_DE;
Fyodor Kupolov74876572015-02-23 17:14:45 -080054import static com.android.server.pm.InstructionSets.getAppDexInstructionSets;
55import static com.android.server.pm.InstructionSets.getDexCodeInstructionSets;
Calin Juravle2d4b6ad72017-01-04 13:22:14 -080056
Fyodor Kupolov28f28552017-05-02 12:11:02 -070057import static com.android.server.pm.PackageManagerService.WATCHDOG_TIMEOUT;
Nicolas Geoffrayb0818e82017-05-05 10:23:19 +010058
Nicolas Geoffrayd093b202017-05-03 13:11:58 +010059import static dalvik.system.DexFile.getNonProfileGuidedCompilerFilter;
60import static dalvik.system.DexFile.getSafeModeCompilerFilter;
Calin Juravle2d4b6ad72017-01-04 13:22:14 -080061import static dalvik.system.DexFile.isProfileGuidedCompilerFilter;
Fyodor Kupolov74876572015-02-23 17:14:45 -080062
63/**
64 * Helper class for running dexopt command on packages.
65 */
Calin Juravlec22c30e2017-01-16 19:18:48 -080066public class PackageDexOptimizer {
Fyodor Kupolovb94c1652015-03-03 12:25:30 -080067 private static final String TAG = "PackageManager.DexOptimizer";
68 static final String OAT_DIR_NAME = "oat";
69 // TODO b/19550105 Remove error codes and use exceptions
Calin Juravlec22c30e2017-01-16 19:18:48 -080070 public static final int DEX_OPT_SKIPPED = 0;
71 public static final int DEX_OPT_PERFORMED = 1;
72 public static final int DEX_OPT_FAILED = -1;
Fyodor Kupolov28f28552017-05-02 12:11:02 -070073 // One minute over PM WATCHDOG_TIMEOUT
74 private static final long WAKELOCK_TIMEOUT_MS = WATCHDOG_TIMEOUT + 1000 * 60;
Fyodor Kupolov74876572015-02-23 17:14:45 -080075
Calin Juravleaae35762017-02-14 17:53:13 -080076 /** Special library name that skips shared libraries check during compilation. */
77 public static final String SKIP_SHARED_LIBRARY_CHECK = "&";
78
Fyodor Kupolov28f28552017-05-02 12:11:02 -070079 @GuardedBy("mInstallLock")
Andreas Gampea8908752015-11-10 08:58:14 -080080 private final Installer mInstaller;
81 private final Object mInstallLock;
Fyodor Kupolov74876572015-02-23 17:14:45 -080082
Fyodor Kupolov28f28552017-05-02 12:11:02 -070083 @GuardedBy("mInstallLock")
Fyodor Kupolova627c092015-05-05 18:44:39 -070084 private final PowerManager.WakeLock mDexoptWakeLock;
85 private volatile boolean mSystemReady;
86
Andreas Gampea8908752015-11-10 08:58:14 -080087 PackageDexOptimizer(Installer installer, Object installLock, Context context,
88 String wakeLockTag) {
89 this.mInstaller = installer;
90 this.mInstallLock = installLock;
91
92 PowerManager powerManager = (PowerManager)context.getSystemService(Context.POWER_SERVICE);
93 mDexoptWakeLock = powerManager.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK, wakeLockTag);
94 }
95
96 protected PackageDexOptimizer(PackageDexOptimizer from) {
97 this.mInstaller = from.mInstaller;
98 this.mInstallLock = from.mInstallLock;
99 this.mDexoptWakeLock = from.mDexoptWakeLock;
100 this.mSystemReady = from.mSystemReady;
Fyodor Kupolov74876572015-02-23 17:14:45 -0800101 }
102
Calin Juravledb4a79a2015-12-23 18:55:08 +0200103 static boolean canOptimizePackage(PackageParser.Package pkg) {
Nicolas Geoffray20a894e2017-09-08 13:01:40 +0100104 // We do not dexopt a package with no code.
105 if ((pkg.applicationInfo.flags & ApplicationInfo.FLAG_HAS_CODE) == 0) {
106 return false;
107 }
108
109 // We do not dexopt a priv-app package when pm.dexopt.priv-apps is false.
110 if (pkg.isPrivilegedApp()) {
111 return SystemProperties.getBoolean("pm.dexopt.priv-apps", true);
112 }
113
114 return true;
Calin Juravledb4a79a2015-12-23 18:55:08 +0200115 }
116
Fyodor Kupolov74876572015-02-23 17:14:45 -0800117 /**
118 * Performs dexopt on all code paths and libraries of the specified package for specified
119 * instruction sets.
120 *
Andreas Gampea8908752015-11-10 08:58:14 -0800121 * <p>Calls to {@link com.android.server.pm.Installer#dexopt} on {@link #mInstaller} are
122 * synchronized on {@link #mInstallLock}.
Fyodor Kupolov74876572015-02-23 17:14:45 -0800123 */
Jeff Haoc7b94822016-03-16 15:56:07 -0700124 int performDexOpt(PackageParser.Package pkg, String[] sharedLibraries,
Calin Juravledea3fd82017-07-17 15:12:01 -0700125 String[] instructionSets, CompilerStats.PackageStats packageStats,
126 boolean isUsedByOtherApps, DexoptOptions options) {
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800127 if (!canOptimizePackage(pkg)) {
128 return DEX_OPT_SKIPPED;
129 }
Andreas Gampea8908752015-11-10 08:58:14 -0800130 synchronized (mInstallLock) {
Fyodor Kupolov28f28552017-05-02 12:11:02 -0700131 final long acquireTime = acquireWakeLockLI(pkg.applicationInfo.uid);
Fyodor Kupolova627c092015-05-05 18:44:39 -0700132 try {
Calin Juravledea3fd82017-07-17 15:12:01 -0700133 return performDexOptLI(pkg, sharedLibraries, instructionSets,
134 packageStats, isUsedByOtherApps, options);
Fyodor Kupolova627c092015-05-05 18:44:39 -0700135 } finally {
Fyodor Kupolov28f28552017-05-02 12:11:02 -0700136 releaseWakeLockLI(acquireTime);
Fyodor Kupolova627c092015-05-05 18:44:39 -0700137 }
Fyodor Kupolov74876572015-02-23 17:14:45 -0800138 }
139 }
140
Andreas Gampea8908752015-11-10 08:58:14 -0800141 /**
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800142 * Performs dexopt on all code paths of the given package.
143 * It assumes the install lock is held.
144 */
145 @GuardedBy("mInstallLock")
146 private int performDexOptLI(PackageParser.Package pkg, String[] sharedLibraries,
Calin Juravledea3fd82017-07-17 15:12:01 -0700147 String[] targetInstructionSets, CompilerStats.PackageStats packageStats,
148 boolean isUsedByOtherApps, DexoptOptions options) {
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800149 final String[] instructionSets = targetInstructionSets != null ?
150 targetInstructionSets : getAppDexInstructionSets(pkg.applicationInfo);
151 final String[] dexCodeInstructionSets = getDexCodeInstructionSets(instructionSets);
Jeff Hao5def5e52017-04-19 14:42:16 -0700152 final List<String> paths = pkg.getAllCodePaths();
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800153 final int sharedGid = UserHandle.getSharedAppGid(pkg.applicationInfo.uid);
154
Calin Juravlec22c30e2017-01-16 19:18:48 -0800155 final String compilerFilter = getRealCompilerFilter(pkg.applicationInfo,
Calin Juravledea3fd82017-07-17 15:12:01 -0700156 options.getCompilerFilter(), isUsedByOtherApps);
157 final boolean profileUpdated = options.isCheckForProfileUpdates() &&
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800158 isProfileUpdated(pkg, sharedGid, compilerFilter);
Calin Juravlec22c30e2017-01-16 19:18:48 -0800159
Calin Juravleefb1c942017-04-04 20:31:44 -0700160 // Get the dexopt flags after getRealCompilerFilter to make sure we get the correct flags.
Calin Juravledea3fd82017-07-17 15:12:01 -0700161 final int dexoptFlags = getDexFlags(pkg, compilerFilter, options.isBootComplete());
Calin Juravle0a267a82017-07-12 18:52:49 -0700162
163 // Get the class loader context dependencies.
164 // For each code path in the package, this array contains the class loader context that
165 // needs to be passed to dexopt in order to ensure correct optimizations.
166 String[] classLoaderContexts = DexoptUtils.getClassLoaderContexts(
167 pkg.applicationInfo, sharedLibraries);
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800168
169 int result = DEX_OPT_SKIPPED;
Jeff Hao5def5e52017-04-19 14:42:16 -0700170 for (int i = 0; i < paths.size(); i++) {
171 // Skip paths that have no code.
172 if ((i == 0 && (pkg.applicationInfo.flags & ApplicationInfo.FLAG_HAS_CODE) == 0) ||
173 (i != 0 && (pkg.splitFlags[i - 1] & ApplicationInfo.FLAG_HAS_CODE) == 0)) {
174 continue;
175 }
176 // Append shared libraries with split dependencies for this split.
177 String path = paths.get(i);
Calin Juravlecaed6002017-07-17 15:23:21 -0700178 if (options.getSplitName() != null) {
179 // We are asked to compile only a specific split. Check that the current path is
180 // what we are looking for.
181 if (!options.getSplitName().equals(new File(path).getName())) {
182 continue;
183 }
184 }
185
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800186 for (String dexCodeIsa : dexCodeInstructionSets) {
Calin Juravle0a267a82017-07-12 18:52:49 -0700187 int newResult = dexOptPath(pkg, path, dexCodeIsa, compilerFilter,
188 profileUpdated, classLoaderContexts[i], dexoptFlags, sharedGid,
189 packageStats, options.isDowngrade());
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800190 // The end result is:
191 // - FAILED if any path failed,
192 // - PERFORMED if at least one path needed compilation,
193 // - SKIPPED when all paths are up to date
194 if ((result != DEX_OPT_FAILED) && (newResult != DEX_OPT_SKIPPED)) {
195 result = newResult;
196 }
197 }
198 }
199 return result;
200 }
201
202 /**
203 * Performs dexopt on the {@code path} belonging to the package {@code pkg}.
204 *
205 * @return
206 * DEX_OPT_FAILED if there was any exception during dexopt
207 * DEX_OPT_PERFORMED if dexopt was performed successfully on the given path.
208 * DEX_OPT_SKIPPED if the path does not need to be deopt-ed.
209 */
210 @GuardedBy("mInstallLock")
211 private int dexOptPath(PackageParser.Package pkg, String path, String isa,
Calin Juravle7ba73dd2017-09-12 00:58:33 -0700212 String compilerFilter, boolean profileUpdated, String classLoaderContext,
Shubham Ajmera3aeca172017-05-24 17:46:36 -0700213 int dexoptFlags, int uid, CompilerStats.PackageStats packageStats, boolean downgrade) {
Calin Juravle7ba73dd2017-09-12 00:58:33 -0700214 int dexoptNeeded = getDexoptNeeded(path, isa, compilerFilter, classLoaderContext,
215 profileUpdated, downgrade);
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800216 if (Math.abs(dexoptNeeded) == DexFile.NO_DEXOPT_NEEDED) {
217 return DEX_OPT_SKIPPED;
218 }
219
220 // TODO(calin): there's no need to try to create the oat dir over and over again,
221 // especially since it involve an extra installd call. We should create
222 // if (if supported) on the fly during the dexopt call.
223 String oatDir = createOatDirIfSupported(pkg, isa);
224
225 Log.i(TAG, "Running dexopt (dexoptNeeded=" + dexoptNeeded + ") on: " + path
226 + " pkg=" + pkg.applicationInfo.packageName + " isa=" + isa
227 + " dexoptFlags=" + printDexoptFlags(dexoptFlags)
Calin Juravle7ba73dd2017-09-12 00:58:33 -0700228 + " targetFilter=" + compilerFilter + " oatDir=" + oatDir
229 + " classLoaderContext=" + classLoaderContext);
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800230
231 try {
232 long startTime = System.currentTimeMillis();
233
Shubham Ajmera3aeca172017-05-24 17:46:36 -0700234 // TODO: Consider adding 2 different APIs for primary and secondary dexopt.
235 // installd only uses downgrade flag for secondary dex files and ignores it for
236 // primary dex files.
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800237 mInstaller.dexopt(path, uid, pkg.packageName, isa, dexoptNeeded, oatDir, dexoptFlags,
Calin Juravle7ba73dd2017-09-12 00:58:33 -0700238 compilerFilter, pkg.volumeUuid, classLoaderContext, pkg.applicationInfo.seInfo,
Shubham Ajmera3aeca172017-05-24 17:46:36 -0700239 false /* downgrade*/);
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800240
241 if (packageStats != null) {
242 long endTime = System.currentTimeMillis();
243 packageStats.setCompileTime(path, (int)(endTime - startTime));
244 }
245 return DEX_OPT_PERFORMED;
246 } catch (InstallerException e) {
247 Slog.w(TAG, "Failed to dexopt", e);
248 return DEX_OPT_FAILED;
249 }
250 }
251
252 /**
Calin Juravlec22c30e2017-01-16 19:18:48 -0800253 * Performs dexopt on the secondary dex {@code path} belonging to the app {@code info}.
254 *
255 * @return
256 * DEX_OPT_FAILED if there was any exception during dexopt
257 * DEX_OPT_PERFORMED if dexopt was performed successfully on the given path.
258 * NOTE that DEX_OPT_PERFORMED for secondary dex files includes the case when the dex file
259 * didn't need an update. That's because at the moment we don't get more than success/failure
260 * from installd.
261 *
262 * TODO(calin): Consider adding return codes to installd dexopt invocation (rather than
263 * throwing exceptions). Or maybe make a separate call to installd to get DexOptNeeded, though
264 * that seems wasteful.
265 */
266 public int dexOptSecondaryDexPath(ApplicationInfo info, String path, Set<String> isas,
Shubham Ajmera3aeca172017-05-24 17:46:36 -0700267 String compilerFilter, boolean isUsedByOtherApps, boolean downgrade) {
Calin Juravlec22c30e2017-01-16 19:18:48 -0800268 synchronized (mInstallLock) {
Fyodor Kupolov28f28552017-05-02 12:11:02 -0700269 final long acquireTime = acquireWakeLockLI(info.uid);
Calin Juravlec22c30e2017-01-16 19:18:48 -0800270 try {
271 return dexOptSecondaryDexPathLI(info, path, isas, compilerFilter,
Shubham Ajmera3aeca172017-05-24 17:46:36 -0700272 isUsedByOtherApps, downgrade);
Calin Juravlec22c30e2017-01-16 19:18:48 -0800273 } finally {
Fyodor Kupolov28f28552017-05-02 12:11:02 -0700274 releaseWakeLockLI(acquireTime);
Calin Juravlec22c30e2017-01-16 19:18:48 -0800275 }
276 }
277 }
278
279 @GuardedBy("mInstallLock")
Fyodor Kupolov28f28552017-05-02 12:11:02 -0700280 private long acquireWakeLockLI(final int uid) {
281 // During boot the system doesn't need to instantiate and obtain a wake lock.
282 // PowerManager might not be ready, but that doesn't mean that we can't proceed with
283 // dexopt.
284 if (!mSystemReady) {
285 return -1;
286 }
287 mDexoptWakeLock.setWorkSource(new WorkSource(uid));
288 mDexoptWakeLock.acquire(WAKELOCK_TIMEOUT_MS);
289 return SystemClock.elapsedRealtime();
290 }
291
292 @GuardedBy("mInstallLock")
293 private void releaseWakeLockLI(final long acquireTime) {
294 if (acquireTime < 0) {
295 return;
296 }
297 try {
298 if (mDexoptWakeLock.isHeld()) {
299 mDexoptWakeLock.release();
300 }
301 final long duration = SystemClock.elapsedRealtime() - acquireTime;
302 if (duration >= WAKELOCK_TIMEOUT_MS) {
303 Slog.wtf(TAG, "WakeLock " + mDexoptWakeLock.getTag()
304 + " time out. Operation took " + duration + " ms. Thread: "
305 + Thread.currentThread().getName());
306 }
307 } catch (Exception e) {
308 Slog.wtf(TAG, "Error while releasing " + mDexoptWakeLock.getTag() + " lock", e);
309 }
310 }
311
312 @GuardedBy("mInstallLock")
Calin Juravlec22c30e2017-01-16 19:18:48 -0800313 private int dexOptSecondaryDexPathLI(ApplicationInfo info, String path, Set<String> isas,
Shubham Ajmera3aeca172017-05-24 17:46:36 -0700314 String compilerFilter, boolean isUsedByOtherApps, boolean downgrade) {
Calin Juravleefb1c942017-04-04 20:31:44 -0700315 compilerFilter = getRealCompilerFilter(info, compilerFilter, isUsedByOtherApps);
316 // Get the dexopt flags after getRealCompilerFilter to make sure we get the correct flags.
Nicolas Geoffray3b4359a2017-05-25 13:53:22 +0100317 // Secondary dex files are currently not compiled at boot.
318 int dexoptFlags = getDexFlags(info, compilerFilter, /* bootComplete */ true)
319 | DEXOPT_SECONDARY_DEX;
Calin Juravlec22c30e2017-01-16 19:18:48 -0800320 // Check the app storage and add the appropriate flags.
Calin Juravleadbadd52017-03-28 18:19:15 -0700321 if (info.deviceProtectedDataDir != null &&
322 FileUtils.contains(info.deviceProtectedDataDir, path)) {
Calin Juravlec22c30e2017-01-16 19:18:48 -0800323 dexoptFlags |= DEXOPT_STORAGE_DE;
Calin Juravleadbadd52017-03-28 18:19:15 -0700324 } else if (info.credentialProtectedDataDir != null &&
325 FileUtils.contains(info.credentialProtectedDataDir, path)) {
Calin Juravlec22c30e2017-01-16 19:18:48 -0800326 dexoptFlags |= DEXOPT_STORAGE_CE;
327 } else {
328 Slog.e(TAG, "Could not infer CE/DE storage for package " + info.packageName);
329 return DEX_OPT_FAILED;
330 }
Calin Juravlec22c30e2017-01-16 19:18:48 -0800331 Log.d(TAG, "Running dexopt on: " + path
332 + " pkg=" + info.packageName + " isa=" + isas
333 + " dexoptFlags=" + printDexoptFlags(dexoptFlags)
334 + " target-filter=" + compilerFilter);
335
336 try {
337 for (String isa : isas) {
338 // Reuse the same dexopt path as for the primary apks. We don't need all the
339 // arguments as some (dexopNeeded and oatDir) will be computed by installd because
340 // system server cannot read untrusted app content.
341 // TODO(calin): maybe add a separate call.
342 mInstaller.dexopt(path, info.uid, info.packageName, isa, /*dexoptNeeded*/ 0,
343 /*oatDir*/ null, dexoptFlags,
Shubham Ajmera3aeca172017-05-24 17:46:36 -0700344 compilerFilter, info.volumeUuid, SKIP_SHARED_LIBRARY_CHECK, info.seInfoUser,
345 downgrade);
Calin Juravlec22c30e2017-01-16 19:18:48 -0800346 }
347
348 return DEX_OPT_PERFORMED;
349 } catch (InstallerException e) {
350 Slog.w(TAG, "Failed to dexopt", e);
351 return DEX_OPT_FAILED;
352 }
353 }
354
355 /**
Andreas Gampea8908752015-11-10 08:58:14 -0800356 * Adjust the given dexopt-needed value. Can be overridden to influence the decision to
357 * optimize or not (and in what way).
358 */
359 protected int adjustDexoptNeeded(int dexoptNeeded) {
360 return dexoptNeeded;
361 }
362
363 /**
364 * Adjust the given dexopt flags that will be passed to the installer.
365 */
366 protected int adjustDexoptFlags(int dexoptFlags) {
367 return dexoptFlags;
368 }
369
Narayan Kamath88eea9e2016-05-02 14:44:31 +0100370 /**
371 * Dumps the dexopt state of the given package {@code pkg} to the given {@code PrintWriter}.
372 */
373 void dumpDexoptState(IndentingPrintWriter pw, PackageParser.Package pkg) {
374 final String[] instructionSets = getAppDexInstructionSets(pkg.applicationInfo);
375 final String[] dexCodeInstructionSets = getDexCodeInstructionSets(instructionSets);
376
377 final List<String> paths = pkg.getAllCodePathsExcludingResourceOnly();
378
379 for (String instructionSet : dexCodeInstructionSets) {
380 pw.println("Instruction Set: " + instructionSet);
381 pw.increaseIndent();
382 for (String path : paths) {
383 String status = null;
384 try {
385 status = DexFile.getDexFileStatus(path, instructionSet);
386 } catch (IOException ioe) {
387 status = "[Exception]: " + ioe.getMessage();
388 }
389 pw.println("path: " + path);
390 pw.println("status: " + status);
391 }
392 pw.decreaseIndent();
393 }
394 }
395
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800396 /**
397 * Returns the compiler filter that should be used to optimize the package code.
398 * The target filter will be updated if the package code is used by other apps
399 * or if it has the safe mode flag set.
400 */
Calin Juravlec22c30e2017-01-16 19:18:48 -0800401 private String getRealCompilerFilter(ApplicationInfo info, String targetCompilerFilter,
402 boolean isUsedByOtherApps) {
403 int flags = info.flags;
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800404 boolean vmSafeMode = (flags & ApplicationInfo.FLAG_VM_SAFE_MODE) != 0;
Mathieu Chartier41e4a372016-09-02 16:36:42 -0700405 if (vmSafeMode) {
Nicolas Geoffrayd093b202017-05-03 13:11:58 +0100406 return getSafeModeCompilerFilter(targetCompilerFilter);
Mathieu Chartier41e4a372016-09-02 16:36:42 -0700407 }
408
Calin Juravlec22c30e2017-01-16 19:18:48 -0800409 if (isProfileGuidedCompilerFilter(targetCompilerFilter) && isUsedByOtherApps) {
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800410 // If the dex files is used by other apps, we cannot use profile-guided compilation.
411 return getNonProfileGuidedCompilerFilter(targetCompilerFilter);
Andreas Gampebdd30d82016-03-20 11:32:11 -0700412 }
413
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800414 return targetCompilerFilter;
Fyodor Kupolov74876572015-02-23 17:14:45 -0800415 }
416
Fyodor Kupolovb94c1652015-03-03 12:25:30 -0800417 /**
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800418 * Computes the dex flags that needs to be pass to installd for the given package and compiler
419 * filter.
420 */
Nicolas Geoffray3b4359a2017-05-25 13:53:22 +0100421 private int getDexFlags(PackageParser.Package pkg, String compilerFilter,
422 boolean bootComplete) {
423 return getDexFlags(pkg.applicationInfo, compilerFilter, bootComplete);
Calin Juravlec22c30e2017-01-16 19:18:48 -0800424 }
425
Nicolas Geoffray3b4359a2017-05-25 13:53:22 +0100426 private int getDexFlags(ApplicationInfo info, String compilerFilter, boolean bootComplete) {
Calin Juravlec22c30e2017-01-16 19:18:48 -0800427 int flags = info.flags;
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800428 boolean debuggable = (flags & ApplicationInfo.FLAG_DEBUGGABLE) != 0;
429 // Profile guide compiled oat files should not be public.
430 boolean isProfileGuidedFilter = isProfileGuidedCompilerFilter(compilerFilter);
Calin Juravlec22c30e2017-01-16 19:18:48 -0800431 boolean isPublic = !info.isForwardLocked() && !isProfileGuidedFilter;
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800432 int profileFlag = isProfileGuidedFilter ? DEXOPT_PROFILE_GUIDED : 0;
433 int dexFlags =
434 (isPublic ? DEXOPT_PUBLIC : 0)
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800435 | (debuggable ? DEXOPT_DEBUGGABLE : 0)
436 | profileFlag
Nicolas Geoffray3b4359a2017-05-25 13:53:22 +0100437 | (bootComplete ? DEXOPT_BOOTCOMPLETE : 0);
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800438 return adjustDexoptFlags(dexFlags);
439 }
440
441 /**
442 * Assesses if there's a need to perform dexopt on {@code path} for the given
443 * configuration (isa, compiler filter, profile).
444 */
445 private int getDexoptNeeded(String path, String isa, String compilerFilter,
Calin Juravle7ba73dd2017-09-12 00:58:33 -0700446 String classLoaderContext, boolean newProfile, boolean downgrade) {
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800447 int dexoptNeeded;
448 try {
Calin Juravle7ba73dd2017-09-12 00:58:33 -0700449 dexoptNeeded = DexFile.getDexOptNeeded(path, isa, compilerFilter, classLoaderContext,
450 newProfile, downgrade);
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800451 } catch (IOException ioe) {
452 Slog.w(TAG, "IOException reading apk: " + path, ioe);
453 return DEX_OPT_FAILED;
454 }
455 return adjustDexoptNeeded(dexoptNeeded);
456 }
457
458 /**
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800459 * Checks if there is an update on the profile information of the {@code pkg}.
460 * If the compiler filter is not profile guided the method returns false.
461 *
462 * Note that this is a "destructive" operation with side effects. Under the hood the
463 * current profile and the reference profile will be merged and subsequent calls
464 * may return a different result.
465 */
466 private boolean isProfileUpdated(PackageParser.Package pkg, int uid, String compilerFilter) {
467 // Check if we are allowed to merge and if the compiler filter is profile guided.
468 if (!isProfileGuidedCompilerFilter(compilerFilter)) {
469 return false;
470 }
471 // Merge profiles. It returns whether or not there was an updated in the profile info.
472 try {
473 return mInstaller.mergeProfiles(uid, pkg.packageName);
474 } catch (InstallerException e) {
475 Slog.w(TAG, "Failed to merge profiles", e);
476 }
477 return false;
478 }
479
480 /**
481 * Creates oat dir for the specified package if needed and supported.
482 * In certain cases oat directory
Fyodor Kupolovb94c1652015-03-03 12:25:30 -0800483 * <strong>cannot</strong> be created:
484 * <ul>
485 * <li>{@code pkg} is a system app, which is not updated.</li>
486 * <li>Package location is not a directory, i.e. monolithic install.</li>
487 * </ul>
488 *
Richard Uhler7b08b352015-03-25 16:25:57 -0700489 * @return Absolute path to the oat directory or null, if oat directory
490 * cannot be created.
Fyodor Kupolovb94c1652015-03-03 12:25:30 -0800491 */
492 @Nullable
Todd Kennedy27c24fb2015-09-17 16:49:25 -0700493 private String createOatDirIfSupported(PackageParser.Package pkg, String dexInstructionSet) {
Fyodor Kupolovebcac162015-09-09 15:56:45 -0700494 if (!pkg.canHaveOatDir()) {
Fyodor Kupolovb94c1652015-03-03 12:25:30 -0800495 return null;
496 }
497 File codePath = new File(pkg.codePath);
498 if (codePath.isDirectory()) {
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800499 // TODO(calin): why do we create this only if the codePath is a directory? (i.e for
500 // cluster packages). It seems that the logic for the folder creation is
501 // split between installd and here.
Fyodor Kupolovb94c1652015-03-03 12:25:30 -0800502 File oatDir = getOatDir(codePath);
Jeff Sharkeyfdeeeea2016-01-11 17:34:24 -0700503 try {
Andreas Gampea8908752015-11-10 08:58:14 -0800504 mInstaller.createOatDir(oatDir.getAbsolutePath(), dexInstructionSet);
Jeff Sharkeyfdeeeea2016-01-11 17:34:24 -0700505 } catch (InstallerException e) {
506 Slog.w(TAG, "Failed to create oat dir", e);
507 return null;
508 }
Richard Uhler7b08b352015-03-25 16:25:57 -0700509 return oatDir.getAbsolutePath();
Fyodor Kupolovb94c1652015-03-03 12:25:30 -0800510 }
511 return null;
512 }
513
514 static File getOatDir(File codePath) {
515 return new File(codePath, OAT_DIR_NAME);
516 }
517
Fyodor Kupolova627c092015-05-05 18:44:39 -0700518 void systemReady() {
519 mSystemReady = true;
520 }
Andreas Gampea8908752015-11-10 08:58:14 -0800521
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800522 private String printDexoptFlags(int flags) {
523 ArrayList<String> flagsList = new ArrayList<>();
524
525 if ((flags & DEXOPT_BOOTCOMPLETE) == DEXOPT_BOOTCOMPLETE) {
526 flagsList.add("boot_complete");
527 }
528 if ((flags & DEXOPT_DEBUGGABLE) == DEXOPT_DEBUGGABLE) {
529 flagsList.add("debuggable");
530 }
531 if ((flags & DEXOPT_PROFILE_GUIDED) == DEXOPT_PROFILE_GUIDED) {
532 flagsList.add("profile_guided");
533 }
534 if ((flags & DEXOPT_PUBLIC) == DEXOPT_PUBLIC) {
535 flagsList.add("public");
536 }
Calin Juravlec22c30e2017-01-16 19:18:48 -0800537 if ((flags & DEXOPT_SECONDARY_DEX) == DEXOPT_SECONDARY_DEX) {
538 flagsList.add("secondary");
539 }
540 if ((flags & DEXOPT_FORCE) == DEXOPT_FORCE) {
541 flagsList.add("force");
542 }
543 if ((flags & DEXOPT_STORAGE_CE) == DEXOPT_STORAGE_CE) {
544 flagsList.add("storage_ce");
545 }
546 if ((flags & DEXOPT_STORAGE_DE) == DEXOPT_STORAGE_DE) {
547 flagsList.add("storage_de");
548 }
549
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800550 return String.join(",", flagsList);
551 }
552
Andreas Gampea8908752015-11-10 08:58:14 -0800553 /**
554 * A specialized PackageDexOptimizer that overrides already-installed checks, forcing a
555 * dexopt path.
556 */
557 public static class ForcedUpdatePackageDexOptimizer extends PackageDexOptimizer {
558
559 public ForcedUpdatePackageDexOptimizer(Installer installer, Object installLock,
560 Context context, String wakeLockTag) {
561 super(installer, installLock, context, wakeLockTag);
562 }
563
564 public ForcedUpdatePackageDexOptimizer(PackageDexOptimizer from) {
565 super(from);
566 }
567
568 @Override
Andreas Gampea8908752015-11-10 08:58:14 -0800569 protected int adjustDexoptNeeded(int dexoptNeeded) {
Nicolas Geoffray96d12a92017-05-03 11:51:53 +0100570 if (dexoptNeeded == DexFile.NO_DEXOPT_NEEDED) {
571 // Ensure compilation by pretending a compiler filter change on the
572 // apk/odex location (the reason for the '-'. A positive value means
573 // the 'oat' location).
574 return -DexFile.DEX2OAT_FOR_FILTER;
575 }
576 return dexoptNeeded;
Andreas Gampea8908752015-11-10 08:58:14 -0800577 }
Calin Juravlec22c30e2017-01-16 19:18:48 -0800578
579 @Override
580 protected int adjustDexoptFlags(int flags) {
581 // Add DEXOPT_FORCE flag to signal installd that it should force compilation
582 // and discard dexoptanalyzer result.
583 return flags | DEXOPT_FORCE;
584 }
Andreas Gampea8908752015-11-10 08:58:14 -0800585 }
Fyodor Kupolov74876572015-02-23 17:14:45 -0800586}