blob: 97a0eb5503565db26160ca4f7dc737aecebaa3e3 [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 Juravled479b522016-02-24 16:22:03 +000023import android.os.Environment;
Fyodor Kupolova627c092015-05-05 18:44:39 -070024import android.os.PowerManager;
Fyodor Kupolov74876572015-02-23 17:14:45 -080025import android.os.UserHandle;
Fyodor Kupolova627c092015-05-05 18:44:39 -070026import android.os.WorkSource;
Fyodor Kupolov74876572015-02-23 17:14:45 -080027import android.util.Log;
28import android.util.Slog;
29
Jeff Sharkeyfdeeeea2016-01-11 17:34:24 -070030import com.android.internal.os.InstallerConnection.InstallerException;
Narayan Kamath88eea9e2016-05-02 14:44:31 +010031import com.android.internal.util.IndentingPrintWriter;
Jeff Sharkeyfdeeeea2016-01-11 17:34:24 -070032
Fyodor Kupolovb94c1652015-03-03 12:25:30 -080033import java.io.File;
Fyodor Kupolov74876572015-02-23 17:14:45 -080034import java.io.IOException;
Fyodor Kupolov74876572015-02-23 17:14:45 -080035import java.util.List;
36
37import dalvik.system.DexFile;
Fyodor Kupolov74876572015-02-23 17:14:45 -080038
Todd Kennedyfa54ab72015-09-25 07:46:12 -070039import static com.android.server.pm.Installer.DEXOPT_BOOTCOMPLETE;
40import static com.android.server.pm.Installer.DEXOPT_DEBUGGABLE;
Andreas Gampebdd30d82016-03-20 11:32:11 -070041import static com.android.server.pm.Installer.DEXOPT_PROFILE_GUIDED;
Todd Kennedyfa54ab72015-09-25 07:46:12 -070042import static com.android.server.pm.Installer.DEXOPT_PUBLIC;
43import static com.android.server.pm.Installer.DEXOPT_SAFEMODE;
Fyodor Kupolov74876572015-02-23 17:14:45 -080044import static com.android.server.pm.InstructionSets.getAppDexInstructionSets;
45import static com.android.server.pm.InstructionSets.getDexCodeInstructionSets;
Andreas Gampe47c170a2016-03-30 17:21:19 -070046import static com.android.server.pm.PackageManagerServiceCompilerMapping.getNonProfileGuidedCompilerFilter;
Fyodor Kupolov74876572015-02-23 17:14:45 -080047
48/**
49 * Helper class for running dexopt command on packages.
50 */
Andreas Gampea8908752015-11-10 08:58:14 -080051class PackageDexOptimizer {
Fyodor Kupolovb94c1652015-03-03 12:25:30 -080052 private static final String TAG = "PackageManager.DexOptimizer";
53 static final String OAT_DIR_NAME = "oat";
54 // TODO b/19550105 Remove error codes and use exceptions
Fyodor Kupolov74876572015-02-23 17:14:45 -080055 static final int DEX_OPT_SKIPPED = 0;
56 static final int DEX_OPT_PERFORMED = 1;
Fyodor Kupolov74876572015-02-23 17:14:45 -080057 static final int DEX_OPT_FAILED = -1;
58
Andreas Gampea8908752015-11-10 08:58:14 -080059 private final Installer mInstaller;
60 private final Object mInstallLock;
Fyodor Kupolov74876572015-02-23 17:14:45 -080061
Fyodor Kupolova627c092015-05-05 18:44:39 -070062 private final PowerManager.WakeLock mDexoptWakeLock;
63 private volatile boolean mSystemReady;
64
Andreas Gampea8908752015-11-10 08:58:14 -080065 PackageDexOptimizer(Installer installer, Object installLock, Context context,
66 String wakeLockTag) {
67 this.mInstaller = installer;
68 this.mInstallLock = installLock;
69
70 PowerManager powerManager = (PowerManager)context.getSystemService(Context.POWER_SERVICE);
71 mDexoptWakeLock = powerManager.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK, wakeLockTag);
72 }
73
74 protected PackageDexOptimizer(PackageDexOptimizer from) {
75 this.mInstaller = from.mInstaller;
76 this.mInstallLock = from.mInstallLock;
77 this.mDexoptWakeLock = from.mDexoptWakeLock;
78 this.mSystemReady = from.mSystemReady;
Fyodor Kupolov74876572015-02-23 17:14:45 -080079 }
80
Calin Juravledb4a79a2015-12-23 18:55:08 +020081 static boolean canOptimizePackage(PackageParser.Package pkg) {
Calin Juravle6dfd83d2016-01-29 18:23:57 +000082 return (pkg.applicationInfo.flags & ApplicationInfo.FLAG_HAS_CODE) != 0;
Calin Juravledb4a79a2015-12-23 18:55:08 +020083 }
84
Fyodor Kupolov74876572015-02-23 17:14:45 -080085 /**
86 * Performs dexopt on all code paths and libraries of the specified package for specified
87 * instruction sets.
88 *
Andreas Gampea8908752015-11-10 08:58:14 -080089 * <p>Calls to {@link com.android.server.pm.Installer#dexopt} on {@link #mInstaller} are
90 * synchronized on {@link #mInstallLock}.
Fyodor Kupolov74876572015-02-23 17:14:45 -080091 */
Jeff Haoc7b94822016-03-16 15:56:07 -070092 int performDexOpt(PackageParser.Package pkg, String[] sharedLibraries,
93 String[] instructionSets, boolean checkProfiles, String targetCompilationFilter) {
Andreas Gampea8908752015-11-10 08:58:14 -080094 synchronized (mInstallLock) {
Fyodor Kupolova627c092015-05-05 18:44:39 -070095 final boolean useLock = mSystemReady;
96 if (useLock) {
97 mDexoptWakeLock.setWorkSource(new WorkSource(pkg.applicationInfo.uid));
98 mDexoptWakeLock.acquire();
99 }
100 try {
Jeff Haoc7b94822016-03-16 15:56:07 -0700101 return performDexOptLI(pkg, sharedLibraries, instructionSets, checkProfiles,
Andreas Gampebdd30d82016-03-20 11:32:11 -0700102 targetCompilationFilter);
Fyodor Kupolova627c092015-05-05 18:44:39 -0700103 } finally {
104 if (useLock) {
105 mDexoptWakeLock.release();
106 }
107 }
Fyodor Kupolov74876572015-02-23 17:14:45 -0800108 }
109 }
110
Andreas Gampea8908752015-11-10 08:58:14 -0800111 /**
Andreas Gampea8908752015-11-10 08:58:14 -0800112 * Adjust the given dexopt-needed value. Can be overridden to influence the decision to
113 * optimize or not (and in what way).
114 */
115 protected int adjustDexoptNeeded(int dexoptNeeded) {
116 return dexoptNeeded;
117 }
118
119 /**
120 * Adjust the given dexopt flags that will be passed to the installer.
121 */
122 protected int adjustDexoptFlags(int dexoptFlags) {
123 return dexoptFlags;
124 }
125
Narayan Kamath88eea9e2016-05-02 14:44:31 +0100126 /**
127 * Dumps the dexopt state of the given package {@code pkg} to the given {@code PrintWriter}.
128 */
129 void dumpDexoptState(IndentingPrintWriter pw, PackageParser.Package pkg) {
130 final String[] instructionSets = getAppDexInstructionSets(pkg.applicationInfo);
131 final String[] dexCodeInstructionSets = getDexCodeInstructionSets(instructionSets);
132
133 final List<String> paths = pkg.getAllCodePathsExcludingResourceOnly();
134
135 for (String instructionSet : dexCodeInstructionSets) {
136 pw.println("Instruction Set: " + instructionSet);
137 pw.increaseIndent();
138 for (String path : paths) {
139 String status = null;
140 try {
141 status = DexFile.getDexFileStatus(path, instructionSet);
142 } catch (IOException ioe) {
143 status = "[Exception]: " + ioe.getMessage();
144 }
145 pw.println("path: " + path);
146 pw.println("status: " + status);
147 }
148 pw.decreaseIndent();
149 }
150 }
151
Jeff Haoc7b94822016-03-16 15:56:07 -0700152 private int performDexOptLI(PackageParser.Package pkg, String[] sharedLibraries,
153 String[] targetInstructionSets, boolean checkProfiles, String targetCompilerFilter) {
Fyodor Kupolov74876572015-02-23 17:14:45 -0800154 final String[] instructionSets = targetInstructionSets != null ?
155 targetInstructionSets : getAppDexInstructionSets(pkg.applicationInfo);
156
Calin Juravledb4a79a2015-12-23 18:55:08 +0200157 if (!canOptimizePackage(pkg)) {
Fyodor Kupolov74876572015-02-23 17:14:45 -0800158 return DEX_OPT_SKIPPED;
159 }
160
Andreas Gampebdd30d82016-03-20 11:32:11 -0700161 final List<String> paths = pkg.getAllCodePathsExcludingResourceOnly();
162 final int sharedGid = UserHandle.getSharedAppGid(pkg.applicationInfo.uid);
163
164 boolean isProfileGuidedFilter = DexFile.isProfileGuidedCompilerFilter(targetCompilerFilter);
165 // If any part of the app is used by other apps, we cannot use profile-guided
166 // compilation.
David Brazdil90e26992016-04-18 14:08:52 +0100167 if (isProfileGuidedFilter && isUsedByOtherApps(pkg)) {
168 checkProfiles = false;
Andreas Gampebdd30d82016-03-20 11:32:11 -0700169
David Brazdil90e26992016-04-18 14:08:52 +0100170 targetCompilerFilter = getNonProfileGuidedCompilerFilter(targetCompilerFilter);
171 if (DexFile.isProfileGuidedCompilerFilter(targetCompilerFilter)) {
172 throw new IllegalStateException(targetCompilerFilter);
Andreas Gampebdd30d82016-03-20 11:32:11 -0700173 }
David Brazdil90e26992016-04-18 14:08:52 +0100174 isProfileGuidedFilter = false;
Andreas Gampebdd30d82016-03-20 11:32:11 -0700175 }
176
Mathieu Chartier41e4a372016-09-02 16:36:42 -0700177 // Disable profile guided compilation for vmSafeMode.
178 final boolean vmSafeMode = (pkg.applicationInfo.flags & ApplicationInfo.FLAG_VM_SAFE_MODE)
179 != 0;
180 final boolean debuggable = (pkg.applicationInfo.flags & ApplicationInfo.FLAG_DEBUGGABLE)
181 != 0;
182 if (vmSafeMode) {
183 targetCompilerFilter = getNonProfileGuidedCompilerFilter(targetCompilerFilter);
184 isProfileGuidedFilter = false;
185 }
186
Andreas Gampebdd30d82016-03-20 11:32:11 -0700187 // If we're asked to take profile updates into account, check now.
188 boolean newProfile = false;
189 if (checkProfiles && isProfileGuidedFilter) {
190 // Merge profiles, see if we need to do anything.
191 try {
192 newProfile = mInstaller.mergeProfiles(sharedGid, pkg.packageName);
193 } catch (InstallerException e) {
194 Slog.w(TAG, "Failed to merge profiles", e);
195 }
196 }
197
Fyodor Kupolov74876572015-02-23 17:14:45 -0800198 boolean performedDexOpt = false;
David Brazdil6a3b2d22016-04-08 16:09:06 +0100199 boolean successfulDexOpt = true;
200
Fyodor Kupolov74876572015-02-23 17:14:45 -0800201 final String[] dexCodeInstructionSets = getDexCodeInstructionSets(instructionSets);
202 for (String dexCodeInstructionSet : dexCodeInstructionSets) {
Fyodor Kupolov74876572015-02-23 17:14:45 -0800203 for (String path : paths) {
Calin Juravledb4a79a2015-12-23 18:55:08 +0200204 int dexoptNeeded;
Andreas Gampea8908752015-11-10 08:58:14 -0800205 try {
Calin Juravle693f9972016-02-25 15:26:20 +0000206 dexoptNeeded = DexFile.getDexOptNeeded(path,
Andreas Gampebdd30d82016-03-20 11:32:11 -0700207 dexCodeInstructionSet, targetCompilerFilter, newProfile);
Andreas Gampea8908752015-11-10 08:58:14 -0800208 } catch (IOException ioe) {
209 Slog.w(TAG, "IOException reading apk: " + path, ioe);
210 return DEX_OPT_FAILED;
Narayan Kamath01dcb762015-05-07 17:48:42 +0100211 }
Andreas Gampea8908752015-11-10 08:58:14 -0800212 dexoptNeeded = adjustDexoptNeeded(dexoptNeeded);
Andreas Gampe47c170a2016-03-30 17:21:19 -0700213 if (PackageManagerService.DEBUG_DEXOPT) {
214 Log.i(TAG, "DexoptNeeded for " + path + "@" + targetCompilerFilter + " is " +
215 dexoptNeeded);
216 }
Richard Uhler7b08b352015-03-25 16:25:57 -0700217
Calin Juravledb4a79a2015-12-23 18:55:08 +0200218 final String dexoptType;
219 String oatDir = null;
Calin Juravle693f9972016-02-25 15:26:20 +0000220 switch (dexoptNeeded) {
221 case DexFile.NO_DEXOPT_NEEDED:
222 continue;
223 case DexFile.DEX2OAT_NEEDED:
224 dexoptType = "dex2oat";
225 oatDir = createOatDirIfSupported(pkg, dexCodeInstructionSet);
226 break;
227 case DexFile.PATCHOAT_NEEDED:
228 dexoptType = "patchoat";
229 break;
230 case DexFile.SELF_PATCHOAT_NEEDED:
231 dexoptType = "self patchoat";
232 break;
233 default:
234 throw new IllegalStateException("Invalid dexopt:" + dexoptNeeded);
Calin Juravledb4a79a2015-12-23 18:55:08 +0200235 }
Narayan Kamath01dcb762015-05-07 17:48:42 +0100236
Jeff Haoc7b94822016-03-16 15:56:07 -0700237 String sharedLibrariesPath = null;
238 if (sharedLibraries != null && sharedLibraries.length != 0) {
239 StringBuilder sb = new StringBuilder();
240 for (String lib : sharedLibraries) {
241 if (sb.length() != 0) {
242 sb.append(":");
243 }
244 sb.append(lib);
245 }
246 sharedLibrariesPath = sb.toString();
247 }
Calin Juravledb4a79a2015-12-23 18:55:08 +0200248 Log.i(TAG, "Running dexopt (" + dexoptType + ") on: " + path + " pkg="
249 + pkg.applicationInfo.packageName + " isa=" + dexCodeInstructionSet
250 + " vmSafeMode=" + vmSafeMode + " debuggable=" + debuggable
Jeff Haoc7b94822016-03-16 15:56:07 -0700251 + " target-filter=" + targetCompilerFilter + " oatDir = " + oatDir
252 + " sharedLibraries=" + sharedLibrariesPath);
Calin Juravled479b522016-02-24 16:22:03 +0000253 // Profile guide compiled oat files should not be public.
Andreas Gampebdd30d82016-03-20 11:32:11 -0700254 final boolean isPublic = !pkg.isForwardLocked() && !isProfileGuidedFilter;
255 final int profileFlag = isProfileGuidedFilter ? DEXOPT_PROFILE_GUIDED : 0;
Andreas Gampea8908752015-11-10 08:58:14 -0800256 final int dexFlags = adjustDexoptFlags(
Calin Juravled479b522016-02-24 16:22:03 +0000257 ( isPublic ? DEXOPT_PUBLIC : 0)
Calin Juravledb4a79a2015-12-23 18:55:08 +0200258 | (vmSafeMode ? DEXOPT_SAFEMODE : 0)
259 | (debuggable ? DEXOPT_DEBUGGABLE : 0)
Andreas Gampebdd30d82016-03-20 11:32:11 -0700260 | profileFlag
Andreas Gampea8908752015-11-10 08:58:14 -0800261 | DEXOPT_BOOTCOMPLETE);
262
Calin Juravledb4a79a2015-12-23 18:55:08 +0200263 try {
Andreas Gampea8908752015-11-10 08:58:14 -0800264 mInstaller.dexopt(path, sharedGid, pkg.packageName, dexCodeInstructionSet,
Jeff Haoc7b94822016-03-16 15:56:07 -0700265 dexoptNeeded, oatDir, dexFlags, targetCompilerFilter, pkg.volumeUuid,
266 sharedLibrariesPath);
Calin Juravledb4a79a2015-12-23 18:55:08 +0200267 performedDexOpt = true;
268 } catch (InstallerException e) {
269 Slog.w(TAG, "Failed to dexopt", e);
David Brazdil6a3b2d22016-04-08 16:09:06 +0100270 successfulDexOpt = false;
Fyodor Kupolov74876572015-02-23 17:14:45 -0800271 }
272 }
Fyodor Kupolov74876572015-02-23 17:14:45 -0800273 }
274
David Brazdil6a3b2d22016-04-08 16:09:06 +0100275 if (successfulDexOpt) {
276 // If we've gotten here, we're sure that no error occurred. We've either
277 // dex-opted one or more paths or instruction sets or we've skipped
278 // all of them because they are up to date. In both cases this package
279 // doesn't need dexopt any longer.
280 return performedDexOpt ? DEX_OPT_PERFORMED : DEX_OPT_SKIPPED;
281 } else {
282 return DEX_OPT_FAILED;
283 }
Fyodor Kupolov74876572015-02-23 17:14:45 -0800284 }
285
Fyodor Kupolovb94c1652015-03-03 12:25:30 -0800286 /**
287 * Creates oat dir for the specified package. In certain cases oat directory
288 * <strong>cannot</strong> be created:
289 * <ul>
290 * <li>{@code pkg} is a system app, which is not updated.</li>
291 * <li>Package location is not a directory, i.e. monolithic install.</li>
292 * </ul>
293 *
Richard Uhler7b08b352015-03-25 16:25:57 -0700294 * @return Absolute path to the oat directory or null, if oat directory
295 * cannot be created.
Fyodor Kupolovb94c1652015-03-03 12:25:30 -0800296 */
297 @Nullable
Todd Kennedy27c24fb2015-09-17 16:49:25 -0700298 private String createOatDirIfSupported(PackageParser.Package pkg, String dexInstructionSet) {
Fyodor Kupolovebcac162015-09-09 15:56:45 -0700299 if (!pkg.canHaveOatDir()) {
Fyodor Kupolovb94c1652015-03-03 12:25:30 -0800300 return null;
301 }
302 File codePath = new File(pkg.codePath);
303 if (codePath.isDirectory()) {
304 File oatDir = getOatDir(codePath);
Jeff Sharkeyfdeeeea2016-01-11 17:34:24 -0700305 try {
Andreas Gampea8908752015-11-10 08:58:14 -0800306 mInstaller.createOatDir(oatDir.getAbsolutePath(), dexInstructionSet);
Jeff Sharkeyfdeeeea2016-01-11 17:34:24 -0700307 } catch (InstallerException e) {
308 Slog.w(TAG, "Failed to create oat dir", e);
309 return null;
310 }
Richard Uhler7b08b352015-03-25 16:25:57 -0700311 return oatDir.getAbsolutePath();
Fyodor Kupolovb94c1652015-03-03 12:25:30 -0800312 }
313 return null;
314 }
315
316 static File getOatDir(File codePath) {
317 return new File(codePath, OAT_DIR_NAME);
318 }
319
Fyodor Kupolova627c092015-05-05 18:44:39 -0700320 void systemReady() {
321 mSystemReady = true;
322 }
Andreas Gampea8908752015-11-10 08:58:14 -0800323
David Brazdil90e26992016-04-18 14:08:52 +0100324 /**
325 * Returns true if the profiling data collected for the given app indicate
326 * that the apps's APK has been loaded by another app.
327 * Note that this returns false for all forward-locked apps and apps without
328 * any collected profiling data.
329 */
330 public static boolean isUsedByOtherApps(PackageParser.Package pkg) {
331 if (pkg.isForwardLocked()) {
332 // Skip the check for forward locked packages since they don't share their code.
333 return false;
Calin Juravled479b522016-02-24 16:22:03 +0000334 }
David Brazdil90e26992016-04-18 14:08:52 +0100335
336 for (String apkPath : pkg.getAllCodePathsExcludingResourceOnly()) {
337 try {
Narayan Kamath6d99f792016-05-16 17:34:48 +0100338 apkPath = PackageManagerServiceUtils.realpath(new File(apkPath));
David Brazdil90e26992016-04-18 14:08:52 +0100339 } catch (IOException e) {
340 // Log an error but continue without it.
341 Slog.w(TAG, "Failed to get canonical path", e);
Narayan Kamath6d99f792016-05-16 17:34:48 +0100342 continue;
David Brazdil90e26992016-04-18 14:08:52 +0100343 }
344 String useMarker = apkPath.replace('/', '@');
345 final int[] currentUserIds = UserManagerService.getInstance().getUserIds();
346 for (int i = 0; i < currentUserIds.length; i++) {
347 File profileDir =
348 Environment.getDataProfilesDeForeignDexDirectory(currentUserIds[i]);
349 File foreignUseMark = new File(profileDir, useMarker);
350 if (foreignUseMark.exists()) {
351 return true;
352 }
Calin Juravled479b522016-02-24 16:22:03 +0000353 }
354 }
355 return false;
356 }
357
Andreas Gampea8908752015-11-10 08:58:14 -0800358 /**
359 * A specialized PackageDexOptimizer that overrides already-installed checks, forcing a
360 * dexopt path.
361 */
362 public static class ForcedUpdatePackageDexOptimizer extends PackageDexOptimizer {
363
364 public ForcedUpdatePackageDexOptimizer(Installer installer, Object installLock,
365 Context context, String wakeLockTag) {
366 super(installer, installLock, context, wakeLockTag);
367 }
368
369 public ForcedUpdatePackageDexOptimizer(PackageDexOptimizer from) {
370 super(from);
371 }
372
373 @Override
Andreas Gampea8908752015-11-10 08:58:14 -0800374 protected int adjustDexoptNeeded(int dexoptNeeded) {
375 // Ensure compilation, no matter the current state.
376 // TODO: The return value is wrong when patchoat is needed.
377 return DexFile.DEX2OAT_NEEDED;
378 }
379 }
Fyodor Kupolov74876572015-02-23 17:14:45 -0800380}