blob: acbd446a967f6ebff92809650a3e6ea1f803c456 [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;
Calin Juravlec22c30e2017-01-16 19:18:48 -080022import android.content.pm.PackageInfo;
Fyodor Kupolov74876572015-02-23 17:14:45 -080023import android.content.pm.PackageParser;
Calin Juravled479b522016-02-24 16:22:03 +000024import android.os.Environment;
Fyodor Kupolova627c092015-05-05 18:44:39 -070025import android.os.PowerManager;
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;
Jeff Sharkeyfdeeeea2016-01-11 17:34:24 -070034
Fyodor Kupolovb94c1652015-03-03 12:25:30 -080035import java.io.File;
Fyodor Kupolov74876572015-02-23 17:14:45 -080036import java.io.IOException;
Calin Juravle2d4b6ad72017-01-04 13:22:14 -080037import java.util.ArrayList;
Fyodor Kupolov74876572015-02-23 17:14:45 -080038import java.util.List;
Calin Juravlec22c30e2017-01-16 19:18:48 -080039import java.util.Set;
Fyodor Kupolov74876572015-02-23 17:14:45 -080040
41import dalvik.system.DexFile;
Fyodor Kupolov74876572015-02-23 17:14:45 -080042
Todd Kennedyfa54ab72015-09-25 07:46:12 -070043import static com.android.server.pm.Installer.DEXOPT_BOOTCOMPLETE;
44import static com.android.server.pm.Installer.DEXOPT_DEBUGGABLE;
Andreas Gampebdd30d82016-03-20 11:32:11 -070045import static com.android.server.pm.Installer.DEXOPT_PROFILE_GUIDED;
Todd Kennedyfa54ab72015-09-25 07:46:12 -070046import static com.android.server.pm.Installer.DEXOPT_PUBLIC;
47import static com.android.server.pm.Installer.DEXOPT_SAFEMODE;
Calin Juravlec22c30e2017-01-16 19:18:48 -080048import static com.android.server.pm.Installer.DEXOPT_SECONDARY_DEX;
49import static com.android.server.pm.Installer.DEXOPT_FORCE;
50import static com.android.server.pm.Installer.DEXOPT_STORAGE_CE;
51import static com.android.server.pm.Installer.DEXOPT_STORAGE_DE;
Fyodor Kupolov74876572015-02-23 17:14:45 -080052import static com.android.server.pm.InstructionSets.getAppDexInstructionSets;
53import static com.android.server.pm.InstructionSets.getDexCodeInstructionSets;
Calin Juravle2d4b6ad72017-01-04 13:22:14 -080054
Andreas Gampe47c170a2016-03-30 17:21:19 -070055import static com.android.server.pm.PackageManagerServiceCompilerMapping.getNonProfileGuidedCompilerFilter;
Calin Juravle2d4b6ad72017-01-04 13:22:14 -080056import static dalvik.system.DexFile.isProfileGuidedCompilerFilter;
Fyodor Kupolov74876572015-02-23 17:14:45 -080057
58/**
59 * Helper class for running dexopt command on packages.
60 */
Calin Juravlec22c30e2017-01-16 19:18:48 -080061public class PackageDexOptimizer {
Fyodor Kupolovb94c1652015-03-03 12:25:30 -080062 private static final String TAG = "PackageManager.DexOptimizer";
63 static final String OAT_DIR_NAME = "oat";
64 // TODO b/19550105 Remove error codes and use exceptions
Calin Juravlec22c30e2017-01-16 19:18:48 -080065 public static final int DEX_OPT_SKIPPED = 0;
66 public static final int DEX_OPT_PERFORMED = 1;
67 public static final int DEX_OPT_FAILED = -1;
Fyodor Kupolov74876572015-02-23 17:14:45 -080068
Calin Juravleaae35762017-02-14 17:53:13 -080069 /** Special library name that skips shared libraries check during compilation. */
70 public static final String SKIP_SHARED_LIBRARY_CHECK = "&";
71
Andreas Gampea8908752015-11-10 08:58:14 -080072 private final Installer mInstaller;
73 private final Object mInstallLock;
Fyodor Kupolov74876572015-02-23 17:14:45 -080074
Fyodor Kupolova627c092015-05-05 18:44:39 -070075 private final PowerManager.WakeLock mDexoptWakeLock;
76 private volatile boolean mSystemReady;
77
Andreas Gampea8908752015-11-10 08:58:14 -080078 PackageDexOptimizer(Installer installer, Object installLock, Context context,
79 String wakeLockTag) {
80 this.mInstaller = installer;
81 this.mInstallLock = installLock;
82
83 PowerManager powerManager = (PowerManager)context.getSystemService(Context.POWER_SERVICE);
84 mDexoptWakeLock = powerManager.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK, wakeLockTag);
85 }
86
87 protected PackageDexOptimizer(PackageDexOptimizer from) {
88 this.mInstaller = from.mInstaller;
89 this.mInstallLock = from.mInstallLock;
90 this.mDexoptWakeLock = from.mDexoptWakeLock;
91 this.mSystemReady = from.mSystemReady;
Fyodor Kupolov74876572015-02-23 17:14:45 -080092 }
93
Calin Juravledb4a79a2015-12-23 18:55:08 +020094 static boolean canOptimizePackage(PackageParser.Package pkg) {
Calin Juravle6dfd83d2016-01-29 18:23:57 +000095 return (pkg.applicationInfo.flags & ApplicationInfo.FLAG_HAS_CODE) != 0;
Calin Juravledb4a79a2015-12-23 18:55:08 +020096 }
97
Fyodor Kupolov74876572015-02-23 17:14:45 -080098 /**
99 * Performs dexopt on all code paths and libraries of the specified package for specified
100 * instruction sets.
101 *
Andreas Gampea8908752015-11-10 08:58:14 -0800102 * <p>Calls to {@link com.android.server.pm.Installer#dexopt} on {@link #mInstaller} are
103 * synchronized on {@link #mInstallLock}.
Fyodor Kupolov74876572015-02-23 17:14:45 -0800104 */
Jeff Haoc7b94822016-03-16 15:56:07 -0700105 int performDexOpt(PackageParser.Package pkg, String[] sharedLibraries,
Andreas Gampe7e619a92016-07-12 22:42:41 -0700106 String[] instructionSets, boolean checkProfiles, String targetCompilationFilter,
Calin Juravle07b6eab2017-03-01 19:55:35 -0800107 CompilerStats.PackageStats packageStats, boolean isUsedByOtherApps) {
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800108 if (!canOptimizePackage(pkg)) {
109 return DEX_OPT_SKIPPED;
110 }
Andreas Gampea8908752015-11-10 08:58:14 -0800111 synchronized (mInstallLock) {
Calin Juravlec22c30e2017-01-16 19:18:48 -0800112 // During boot the system doesn't need to instantiate and obtain a wake lock.
113 // PowerManager might not be ready, but that doesn't mean that we can't proceed with
114 // dexopt.
Fyodor Kupolova627c092015-05-05 18:44:39 -0700115 final boolean useLock = mSystemReady;
116 if (useLock) {
117 mDexoptWakeLock.setWorkSource(new WorkSource(pkg.applicationInfo.uid));
118 mDexoptWakeLock.acquire();
119 }
120 try {
Jeff Haoc7b94822016-03-16 15:56:07 -0700121 return performDexOptLI(pkg, sharedLibraries, instructionSets, checkProfiles,
Calin Juravle07b6eab2017-03-01 19:55:35 -0800122 targetCompilationFilter, packageStats, isUsedByOtherApps);
Fyodor Kupolova627c092015-05-05 18:44:39 -0700123 } finally {
124 if (useLock) {
125 mDexoptWakeLock.release();
126 }
127 }
Fyodor Kupolov74876572015-02-23 17:14:45 -0800128 }
129 }
130
Andreas Gampea8908752015-11-10 08:58:14 -0800131 /**
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800132 * Performs dexopt on all code paths of the given package.
133 * It assumes the install lock is held.
134 */
135 @GuardedBy("mInstallLock")
136 private int performDexOptLI(PackageParser.Package pkg, String[] sharedLibraries,
137 String[] targetInstructionSets, boolean checkForProfileUpdates,
Calin Juravle07b6eab2017-03-01 19:55:35 -0800138 String targetCompilerFilter, CompilerStats.PackageStats packageStats,
139 boolean isUsedByOtherApps) {
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800140 final String[] instructionSets = targetInstructionSets != null ?
141 targetInstructionSets : getAppDexInstructionSets(pkg.applicationInfo);
142 final String[] dexCodeInstructionSets = getDexCodeInstructionSets(instructionSets);
143 final List<String> paths = pkg.getAllCodePathsExcludingResourceOnly();
144 final int sharedGid = UserHandle.getSharedAppGid(pkg.applicationInfo.uid);
145
Calin Juravlec22c30e2017-01-16 19:18:48 -0800146 final String compilerFilter = getRealCompilerFilter(pkg.applicationInfo,
Calin Juravle07b6eab2017-03-01 19:55:35 -0800147 targetCompilerFilter, isUsedByOtherApps);
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800148 final boolean profileUpdated = checkForProfileUpdates &&
149 isProfileUpdated(pkg, sharedGid, compilerFilter);
Calin Juravlec22c30e2017-01-16 19:18:48 -0800150
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800151 // TODO(calin,jeffhao): shared library paths should be adjusted to include previous code
152 // paths (b/34169257).
153 final String sharedLibrariesPath = getSharedLibrariesPath(sharedLibraries);
Calin Juravleefb1c942017-04-04 20:31:44 -0700154 // Get the dexopt flags after getRealCompilerFilter to make sure we get the correct flags.
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800155 final int dexoptFlags = getDexFlags(pkg, compilerFilter);
156
157 int result = DEX_OPT_SKIPPED;
158 for (String path : paths) {
159 for (String dexCodeIsa : dexCodeInstructionSets) {
160 int newResult = dexOptPath(pkg, path, dexCodeIsa, compilerFilter, profileUpdated,
161 sharedLibrariesPath, dexoptFlags, sharedGid, packageStats);
162 // The end result is:
163 // - FAILED if any path failed,
164 // - PERFORMED if at least one path needed compilation,
165 // - SKIPPED when all paths are up to date
166 if ((result != DEX_OPT_FAILED) && (newResult != DEX_OPT_SKIPPED)) {
167 result = newResult;
168 }
169 }
170 }
171 return result;
172 }
173
174 /**
175 * Performs dexopt on the {@code path} belonging to the package {@code pkg}.
176 *
177 * @return
178 * DEX_OPT_FAILED if there was any exception during dexopt
179 * DEX_OPT_PERFORMED if dexopt was performed successfully on the given path.
180 * DEX_OPT_SKIPPED if the path does not need to be deopt-ed.
181 */
182 @GuardedBy("mInstallLock")
183 private int dexOptPath(PackageParser.Package pkg, String path, String isa,
184 String compilerFilter, boolean profileUpdated, String sharedLibrariesPath,
185 int dexoptFlags, int uid, CompilerStats.PackageStats packageStats) {
186 int dexoptNeeded = getDexoptNeeded(path, isa, compilerFilter, profileUpdated);
187 if (Math.abs(dexoptNeeded) == DexFile.NO_DEXOPT_NEEDED) {
188 return DEX_OPT_SKIPPED;
189 }
190
191 // TODO(calin): there's no need to try to create the oat dir over and over again,
192 // especially since it involve an extra installd call. We should create
193 // if (if supported) on the fly during the dexopt call.
194 String oatDir = createOatDirIfSupported(pkg, isa);
195
196 Log.i(TAG, "Running dexopt (dexoptNeeded=" + dexoptNeeded + ") on: " + path
197 + " pkg=" + pkg.applicationInfo.packageName + " isa=" + isa
198 + " dexoptFlags=" + printDexoptFlags(dexoptFlags)
199 + " target-filter=" + compilerFilter + " oatDir=" + oatDir
200 + " sharedLibraries=" + sharedLibrariesPath);
201
202 try {
203 long startTime = System.currentTimeMillis();
204
205 mInstaller.dexopt(path, uid, pkg.packageName, isa, dexoptNeeded, oatDir, dexoptFlags,
206 compilerFilter, pkg.volumeUuid, sharedLibrariesPath);
207
208 if (packageStats != null) {
209 long endTime = System.currentTimeMillis();
210 packageStats.setCompileTime(path, (int)(endTime - startTime));
211 }
212 return DEX_OPT_PERFORMED;
213 } catch (InstallerException e) {
214 Slog.w(TAG, "Failed to dexopt", e);
215 return DEX_OPT_FAILED;
216 }
217 }
218
219 /**
Calin Juravlec22c30e2017-01-16 19:18:48 -0800220 * Performs dexopt on the secondary dex {@code path} belonging to the app {@code info}.
221 *
222 * @return
223 * DEX_OPT_FAILED if there was any exception during dexopt
224 * DEX_OPT_PERFORMED if dexopt was performed successfully on the given path.
225 * NOTE that DEX_OPT_PERFORMED for secondary dex files includes the case when the dex file
226 * didn't need an update. That's because at the moment we don't get more than success/failure
227 * from installd.
228 *
229 * TODO(calin): Consider adding return codes to installd dexopt invocation (rather than
230 * throwing exceptions). Or maybe make a separate call to installd to get DexOptNeeded, though
231 * that seems wasteful.
232 */
233 public int dexOptSecondaryDexPath(ApplicationInfo info, String path, Set<String> isas,
234 String compilerFilter, boolean isUsedByOtherApps) {
235 synchronized (mInstallLock) {
236 // During boot the system doesn't need to instantiate and obtain a wake lock.
237 // PowerManager might not be ready, but that doesn't mean that we can't proceed with
238 // dexopt.
239 final boolean useLock = mSystemReady;
240 if (useLock) {
241 mDexoptWakeLock.setWorkSource(new WorkSource(info.uid));
242 mDexoptWakeLock.acquire();
243 }
244 try {
245 return dexOptSecondaryDexPathLI(info, path, isas, compilerFilter,
246 isUsedByOtherApps);
247 } finally {
248 if (useLock) {
249 mDexoptWakeLock.release();
250 }
251 }
252 }
253 }
254
255 @GuardedBy("mInstallLock")
256 private int dexOptSecondaryDexPathLI(ApplicationInfo info, String path, Set<String> isas,
257 String compilerFilter, boolean isUsedByOtherApps) {
Calin Juravleefb1c942017-04-04 20:31:44 -0700258 compilerFilter = getRealCompilerFilter(info, compilerFilter, isUsedByOtherApps);
259 // Get the dexopt flags after getRealCompilerFilter to make sure we get the correct flags.
Calin Juravlec22c30e2017-01-16 19:18:48 -0800260 int dexoptFlags = getDexFlags(info, compilerFilter) | DEXOPT_SECONDARY_DEX;
261 // Check the app storage and add the appropriate flags.
262 if (info.dataDir.equals(info.deviceProtectedDataDir)) {
263 dexoptFlags |= DEXOPT_STORAGE_DE;
264 } else if (info.dataDir.equals(info.credentialProtectedDataDir)) {
265 dexoptFlags |= DEXOPT_STORAGE_CE;
266 } else {
267 Slog.e(TAG, "Could not infer CE/DE storage for package " + info.packageName);
268 return DEX_OPT_FAILED;
269 }
Calin Juravlec22c30e2017-01-16 19:18:48 -0800270 Log.d(TAG, "Running dexopt on: " + path
271 + " pkg=" + info.packageName + " isa=" + isas
272 + " dexoptFlags=" + printDexoptFlags(dexoptFlags)
273 + " target-filter=" + compilerFilter);
274
275 try {
276 for (String isa : isas) {
277 // Reuse the same dexopt path as for the primary apks. We don't need all the
278 // arguments as some (dexopNeeded and oatDir) will be computed by installd because
279 // system server cannot read untrusted app content.
280 // TODO(calin): maybe add a separate call.
281 mInstaller.dexopt(path, info.uid, info.packageName, isa, /*dexoptNeeded*/ 0,
282 /*oatDir*/ null, dexoptFlags,
Calin Juravleaae35762017-02-14 17:53:13 -0800283 compilerFilter, info.volumeUuid, SKIP_SHARED_LIBRARY_CHECK);
Calin Juravlec22c30e2017-01-16 19:18:48 -0800284 }
285
286 return DEX_OPT_PERFORMED;
287 } catch (InstallerException e) {
288 Slog.w(TAG, "Failed to dexopt", e);
289 return DEX_OPT_FAILED;
290 }
291 }
292
293 /**
Andreas Gampea8908752015-11-10 08:58:14 -0800294 * Adjust the given dexopt-needed value. Can be overridden to influence the decision to
295 * optimize or not (and in what way).
296 */
297 protected int adjustDexoptNeeded(int dexoptNeeded) {
298 return dexoptNeeded;
299 }
300
301 /**
302 * Adjust the given dexopt flags that will be passed to the installer.
303 */
304 protected int adjustDexoptFlags(int dexoptFlags) {
305 return dexoptFlags;
306 }
307
Narayan Kamath88eea9e2016-05-02 14:44:31 +0100308 /**
309 * Dumps the dexopt state of the given package {@code pkg} to the given {@code PrintWriter}.
310 */
311 void dumpDexoptState(IndentingPrintWriter pw, PackageParser.Package pkg) {
312 final String[] instructionSets = getAppDexInstructionSets(pkg.applicationInfo);
313 final String[] dexCodeInstructionSets = getDexCodeInstructionSets(instructionSets);
314
315 final List<String> paths = pkg.getAllCodePathsExcludingResourceOnly();
316
317 for (String instructionSet : dexCodeInstructionSets) {
318 pw.println("Instruction Set: " + instructionSet);
319 pw.increaseIndent();
320 for (String path : paths) {
321 String status = null;
322 try {
323 status = DexFile.getDexFileStatus(path, instructionSet);
324 } catch (IOException ioe) {
325 status = "[Exception]: " + ioe.getMessage();
326 }
327 pw.println("path: " + path);
328 pw.println("status: " + status);
329 }
330 pw.decreaseIndent();
331 }
332 }
333
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800334 /**
335 * Returns the compiler filter that should be used to optimize the package code.
336 * The target filter will be updated if the package code is used by other apps
337 * or if it has the safe mode flag set.
338 */
Calin Juravlec22c30e2017-01-16 19:18:48 -0800339 private String getRealCompilerFilter(ApplicationInfo info, String targetCompilerFilter,
340 boolean isUsedByOtherApps) {
341 int flags = info.flags;
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800342 boolean vmSafeMode = (flags & ApplicationInfo.FLAG_VM_SAFE_MODE) != 0;
Mathieu Chartier41e4a372016-09-02 16:36:42 -0700343 if (vmSafeMode) {
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800344 // For the compilation, it doesn't really matter what we return here because installd
345 // will replace the filter with interpret-only anyway.
346 // However, we return a non profile guided filter so that we simplify the logic of
347 // merging profiles.
348 // TODO(calin): safe mode path could be simplified if we pass interpret-only from
349 // here rather than letting installd decide on the filter.
350 return getNonProfileGuidedCompilerFilter(targetCompilerFilter);
Mathieu Chartier41e4a372016-09-02 16:36:42 -0700351 }
352
Calin Juravlec22c30e2017-01-16 19:18:48 -0800353 if (isProfileGuidedCompilerFilter(targetCompilerFilter) && isUsedByOtherApps) {
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800354 // If the dex files is used by other apps, we cannot use profile-guided compilation.
355 return getNonProfileGuidedCompilerFilter(targetCompilerFilter);
Andreas Gampebdd30d82016-03-20 11:32:11 -0700356 }
357
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800358 return targetCompilerFilter;
Fyodor Kupolov74876572015-02-23 17:14:45 -0800359 }
360
Fyodor Kupolovb94c1652015-03-03 12:25:30 -0800361 /**
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800362 * Computes the dex flags that needs to be pass to installd for the given package and compiler
363 * filter.
364 */
365 private int getDexFlags(PackageParser.Package pkg, String compilerFilter) {
Calin Juravlec22c30e2017-01-16 19:18:48 -0800366 return getDexFlags(pkg.applicationInfo, compilerFilter);
367 }
368
369 private int getDexFlags(ApplicationInfo info, String compilerFilter) {
370 int flags = info.flags;
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800371 boolean vmSafeMode = (flags & ApplicationInfo.FLAG_VM_SAFE_MODE) != 0;
372 boolean debuggable = (flags & ApplicationInfo.FLAG_DEBUGGABLE) != 0;
373 // Profile guide compiled oat files should not be public.
374 boolean isProfileGuidedFilter = isProfileGuidedCompilerFilter(compilerFilter);
Calin Juravlec22c30e2017-01-16 19:18:48 -0800375 boolean isPublic = !info.isForwardLocked() && !isProfileGuidedFilter;
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800376 int profileFlag = isProfileGuidedFilter ? DEXOPT_PROFILE_GUIDED : 0;
377 int dexFlags =
378 (isPublic ? DEXOPT_PUBLIC : 0)
379 | (vmSafeMode ? DEXOPT_SAFEMODE : 0)
380 | (debuggable ? DEXOPT_DEBUGGABLE : 0)
381 | profileFlag
382 | DEXOPT_BOOTCOMPLETE;
383 return adjustDexoptFlags(dexFlags);
384 }
385
386 /**
387 * Assesses if there's a need to perform dexopt on {@code path} for the given
388 * configuration (isa, compiler filter, profile).
389 */
390 private int getDexoptNeeded(String path, String isa, String compilerFilter,
391 boolean newProfile) {
392 int dexoptNeeded;
393 try {
394 dexoptNeeded = DexFile.getDexOptNeeded(path, isa, compilerFilter, newProfile);
395 } catch (IOException ioe) {
396 Slog.w(TAG, "IOException reading apk: " + path, ioe);
397 return DEX_OPT_FAILED;
398 }
399 return adjustDexoptNeeded(dexoptNeeded);
400 }
401
402 /**
403 * Computes the shared libraries path that should be passed to dexopt.
404 */
405 private String getSharedLibrariesPath(String[] sharedLibraries) {
406 if (sharedLibraries == null || sharedLibraries.length == 0) {
407 return null;
408 }
409 StringBuilder sb = new StringBuilder();
410 for (String lib : sharedLibraries) {
411 if (sb.length() != 0) {
412 sb.append(":");
413 }
414 sb.append(lib);
415 }
416 return sb.toString();
417 }
418
419 /**
420 * Checks if there is an update on the profile information of the {@code pkg}.
421 * If the compiler filter is not profile guided the method returns false.
422 *
423 * Note that this is a "destructive" operation with side effects. Under the hood the
424 * current profile and the reference profile will be merged and subsequent calls
425 * may return a different result.
426 */
427 private boolean isProfileUpdated(PackageParser.Package pkg, int uid, String compilerFilter) {
428 // Check if we are allowed to merge and if the compiler filter is profile guided.
429 if (!isProfileGuidedCompilerFilter(compilerFilter)) {
430 return false;
431 }
432 // Merge profiles. It returns whether or not there was an updated in the profile info.
433 try {
434 return mInstaller.mergeProfiles(uid, pkg.packageName);
435 } catch (InstallerException e) {
436 Slog.w(TAG, "Failed to merge profiles", e);
437 }
438 return false;
439 }
440
441 /**
442 * Creates oat dir for the specified package if needed and supported.
443 * In certain cases oat directory
Fyodor Kupolovb94c1652015-03-03 12:25:30 -0800444 * <strong>cannot</strong> be created:
445 * <ul>
446 * <li>{@code pkg} is a system app, which is not updated.</li>
447 * <li>Package location is not a directory, i.e. monolithic install.</li>
448 * </ul>
449 *
Richard Uhler7b08b352015-03-25 16:25:57 -0700450 * @return Absolute path to the oat directory or null, if oat directory
451 * cannot be created.
Fyodor Kupolovb94c1652015-03-03 12:25:30 -0800452 */
453 @Nullable
Todd Kennedy27c24fb2015-09-17 16:49:25 -0700454 private String createOatDirIfSupported(PackageParser.Package pkg, String dexInstructionSet) {
Fyodor Kupolovebcac162015-09-09 15:56:45 -0700455 if (!pkg.canHaveOatDir()) {
Fyodor Kupolovb94c1652015-03-03 12:25:30 -0800456 return null;
457 }
458 File codePath = new File(pkg.codePath);
459 if (codePath.isDirectory()) {
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800460 // TODO(calin): why do we create this only if the codePath is a directory? (i.e for
461 // cluster packages). It seems that the logic for the folder creation is
462 // split between installd and here.
Fyodor Kupolovb94c1652015-03-03 12:25:30 -0800463 File oatDir = getOatDir(codePath);
Jeff Sharkeyfdeeeea2016-01-11 17:34:24 -0700464 try {
Andreas Gampea8908752015-11-10 08:58:14 -0800465 mInstaller.createOatDir(oatDir.getAbsolutePath(), dexInstructionSet);
Jeff Sharkeyfdeeeea2016-01-11 17:34:24 -0700466 } catch (InstallerException e) {
467 Slog.w(TAG, "Failed to create oat dir", e);
468 return null;
469 }
Richard Uhler7b08b352015-03-25 16:25:57 -0700470 return oatDir.getAbsolutePath();
Fyodor Kupolovb94c1652015-03-03 12:25:30 -0800471 }
472 return null;
473 }
474
475 static File getOatDir(File codePath) {
476 return new File(codePath, OAT_DIR_NAME);
477 }
478
Fyodor Kupolova627c092015-05-05 18:44:39 -0700479 void systemReady() {
480 mSystemReady = true;
481 }
Andreas Gampea8908752015-11-10 08:58:14 -0800482
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800483 private String printDexoptFlags(int flags) {
484 ArrayList<String> flagsList = new ArrayList<>();
485
486 if ((flags & DEXOPT_BOOTCOMPLETE) == DEXOPT_BOOTCOMPLETE) {
487 flagsList.add("boot_complete");
488 }
489 if ((flags & DEXOPT_DEBUGGABLE) == DEXOPT_DEBUGGABLE) {
490 flagsList.add("debuggable");
491 }
492 if ((flags & DEXOPT_PROFILE_GUIDED) == DEXOPT_PROFILE_GUIDED) {
493 flagsList.add("profile_guided");
494 }
495 if ((flags & DEXOPT_PUBLIC) == DEXOPT_PUBLIC) {
496 flagsList.add("public");
497 }
498 if ((flags & DEXOPT_SAFEMODE) == DEXOPT_SAFEMODE) {
499 flagsList.add("safemode");
500 }
Calin Juravlec22c30e2017-01-16 19:18:48 -0800501 if ((flags & DEXOPT_SECONDARY_DEX) == DEXOPT_SECONDARY_DEX) {
502 flagsList.add("secondary");
503 }
504 if ((flags & DEXOPT_FORCE) == DEXOPT_FORCE) {
505 flagsList.add("force");
506 }
507 if ((flags & DEXOPT_STORAGE_CE) == DEXOPT_STORAGE_CE) {
508 flagsList.add("storage_ce");
509 }
510 if ((flags & DEXOPT_STORAGE_DE) == DEXOPT_STORAGE_DE) {
511 flagsList.add("storage_de");
512 }
513
Calin Juravle2d4b6ad72017-01-04 13:22:14 -0800514 return String.join(",", flagsList);
515 }
516
Andreas Gampea8908752015-11-10 08:58:14 -0800517 /**
518 * A specialized PackageDexOptimizer that overrides already-installed checks, forcing a
519 * dexopt path.
520 */
521 public static class ForcedUpdatePackageDexOptimizer extends PackageDexOptimizer {
522
523 public ForcedUpdatePackageDexOptimizer(Installer installer, Object installLock,
524 Context context, String wakeLockTag) {
525 super(installer, installLock, context, wakeLockTag);
526 }
527
528 public ForcedUpdatePackageDexOptimizer(PackageDexOptimizer from) {
529 super(from);
530 }
531
532 @Override
Andreas Gampea8908752015-11-10 08:58:14 -0800533 protected int adjustDexoptNeeded(int dexoptNeeded) {
534 // Ensure compilation, no matter the current state.
535 // TODO: The return value is wrong when patchoat is needed.
Nicolas Geoffray79c9e062016-11-25 09:50:29 +0000536 return DexFile.DEX2OAT_FROM_SCRATCH;
Andreas Gampea8908752015-11-10 08:58:14 -0800537 }
Calin Juravlec22c30e2017-01-16 19:18:48 -0800538
539 @Override
540 protected int adjustDexoptFlags(int flags) {
541 // Add DEXOPT_FORCE flag to signal installd that it should force compilation
542 // and discard dexoptanalyzer result.
543 return flags | DEXOPT_FORCE;
544 }
Andreas Gampea8908752015-11-10 08:58:14 -0800545 }
Fyodor Kupolov74876572015-02-23 17:14:45 -0800546}