PackageDexOptimizer.java revision ea6c0ffb4a276210b6d971c87a15a7484446d3df
1/*
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
19import android.annotation.Nullable;
20import android.content.Context;
21import android.content.pm.ApplicationInfo;
22import android.content.pm.PackageParser;
23import android.content.pm.dex.ArtManager;
24import android.os.FileUtils;
25import android.os.PowerManager;
26import android.os.SystemClock;
27import android.os.SystemProperties;
28import android.os.UserHandle;
29import android.os.WorkSource;
30import android.util.Log;
31import android.util.Slog;
32
33import com.android.internal.annotations.GuardedBy;
34import com.android.internal.util.IndentingPrintWriter;
35import com.android.server.pm.Installer.InstallerException;
36import com.android.server.pm.dex.DexManager;
37import com.android.server.pm.dex.DexoptOptions;
38import com.android.server.pm.dex.DexoptUtils;
39import com.android.server.pm.dex.PackageDexUsage;
40
41import java.io.File;
42import java.io.IOException;
43import java.util.ArrayList;
44import java.util.Arrays;
45import java.util.List;
46import java.util.Map;
47
48import dalvik.system.DexFile;
49
50import static com.android.server.pm.Installer.DEXOPT_BOOTCOMPLETE;
51import static com.android.server.pm.Installer.DEXOPT_DEBUGGABLE;
52import static com.android.server.pm.Installer.DEXOPT_PROFILE_GUIDED;
53import static com.android.server.pm.Installer.DEXOPT_PUBLIC;
54import static com.android.server.pm.Installer.DEXOPT_SECONDARY_DEX;
55import static com.android.server.pm.Installer.DEXOPT_FORCE;
56import static com.android.server.pm.Installer.DEXOPT_STORAGE_CE;
57import static com.android.server.pm.Installer.DEXOPT_STORAGE_DE;
58import static com.android.server.pm.Installer.DEXOPT_IDLE_BACKGROUND_JOB;
59import static com.android.server.pm.Installer.DEXOPT_ENABLE_HIDDEN_API_CHECKS;
60import static com.android.server.pm.InstructionSets.getAppDexInstructionSets;
61import static com.android.server.pm.InstructionSets.getDexCodeInstructionSets;
62
63import static com.android.server.pm.PackageManagerService.WATCHDOG_TIMEOUT;
64
65import static dalvik.system.DexFile.getNonProfileGuidedCompilerFilter;
66import static dalvik.system.DexFile.getSafeModeCompilerFilter;
67import static dalvik.system.DexFile.isProfileGuidedCompilerFilter;
68
69/**
70 * Helper class for running dexopt command on packages.
71 */
72public class PackageDexOptimizer {
73    private static final String TAG = "PackageManager.DexOptimizer";
74    static final String OAT_DIR_NAME = "oat";
75    // TODO b/19550105 Remove error codes and use exceptions
76    public static final int DEX_OPT_SKIPPED = 0;
77    public static final int DEX_OPT_PERFORMED = 1;
78    public static final int DEX_OPT_FAILED = -1;
79    // One minute over PM WATCHDOG_TIMEOUT
80    private static final long WAKELOCK_TIMEOUT_MS = WATCHDOG_TIMEOUT + 1000 * 60;
81
82    /** Special library name that skips shared libraries check during compilation. */
83    public static final String SKIP_SHARED_LIBRARY_CHECK = "&";
84
85    @GuardedBy("mInstallLock")
86    private final Installer mInstaller;
87    private final Object mInstallLock;
88
89    @GuardedBy("mInstallLock")
90    private final PowerManager.WakeLock mDexoptWakeLock;
91    private volatile boolean mSystemReady;
92
93    PackageDexOptimizer(Installer installer, Object installLock, Context context,
94            String wakeLockTag) {
95        this.mInstaller = installer;
96        this.mInstallLock = installLock;
97
98        PowerManager powerManager = (PowerManager)context.getSystemService(Context.POWER_SERVICE);
99        mDexoptWakeLock = powerManager.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK, wakeLockTag);
100    }
101
102    protected PackageDexOptimizer(PackageDexOptimizer from) {
103        this.mInstaller = from.mInstaller;
104        this.mInstallLock = from.mInstallLock;
105        this.mDexoptWakeLock = from.mDexoptWakeLock;
106        this.mSystemReady = from.mSystemReady;
107    }
108
109    static boolean canOptimizePackage(PackageParser.Package pkg) {
110        // We do not dexopt a package with no code.
111        if ((pkg.applicationInfo.flags & ApplicationInfo.FLAG_HAS_CODE) == 0) {
112            return false;
113        }
114
115        // We do not dexopt a priv-app package when pm.dexopt.priv-apps is false.
116        if (pkg.isPrivilegedApp()) {
117            return SystemProperties.getBoolean("pm.dexopt.priv-apps", true);
118        }
119
120        return true;
121    }
122
123    /**
124     * Performs dexopt on all code paths and libraries of the specified package for specified
125     * instruction sets.
126     *
127     * <p>Calls to {@link com.android.server.pm.Installer#dexopt} on {@link #mInstaller} are
128     * synchronized on {@link #mInstallLock}.
129     */
130    int performDexOpt(PackageParser.Package pkg, String[] sharedLibraries,
131            String[] instructionSets, CompilerStats.PackageStats packageStats,
132            PackageDexUsage.PackageUseInfo packageUseInfo, DexoptOptions options) {
133        if (pkg.applicationInfo.uid == -1) {
134            throw new IllegalArgumentException("Dexopt for " + pkg.packageName
135                    + " has invalid uid.");
136        }
137        if (!canOptimizePackage(pkg)) {
138            return DEX_OPT_SKIPPED;
139        }
140        synchronized (mInstallLock) {
141            final long acquireTime = acquireWakeLockLI(pkg.applicationInfo.uid);
142            try {
143                return performDexOptLI(pkg, sharedLibraries, instructionSets,
144                        packageStats, packageUseInfo, options);
145            } finally {
146                releaseWakeLockLI(acquireTime);
147            }
148        }
149    }
150
151    /**
152     * Performs dexopt on all code paths of the given package.
153     * It assumes the install lock is held.
154     */
155    @GuardedBy("mInstallLock")
156    private int performDexOptLI(PackageParser.Package pkg, String[] sharedLibraries,
157            String[] targetInstructionSets, CompilerStats.PackageStats packageStats,
158            PackageDexUsage.PackageUseInfo packageUseInfo, DexoptOptions options) {
159        final String[] instructionSets = targetInstructionSets != null ?
160                targetInstructionSets : getAppDexInstructionSets(pkg.applicationInfo);
161        final String[] dexCodeInstructionSets = getDexCodeInstructionSets(instructionSets);
162        final List<String> paths = pkg.getAllCodePaths();
163
164        int sharedGid = UserHandle.getSharedAppGid(pkg.applicationInfo.uid);
165        if (sharedGid == -1) {
166            Slog.wtf(TAG, "Well this is awkward; package " + pkg.applicationInfo.name + " had UID "
167                    + pkg.applicationInfo.uid, new Throwable());
168            sharedGid = android.os.Process.NOBODY_UID;
169        }
170
171        // Get the class loader context dependencies.
172        // For each code path in the package, this array contains the class loader context that
173        // needs to be passed to dexopt in order to ensure correct optimizations.
174        boolean[] pathsWithCode = new boolean[paths.size()];
175        pathsWithCode[0] = (pkg.applicationInfo.flags & ApplicationInfo.FLAG_HAS_CODE) != 0;
176        for (int i = 1; i < paths.size(); i++) {
177            pathsWithCode[i] = (pkg.splitFlags[i - 1] & ApplicationInfo.FLAG_HAS_CODE) != 0;
178        }
179        String[] classLoaderContexts = DexoptUtils.getClassLoaderContexts(
180                pkg.applicationInfo, sharedLibraries, pathsWithCode);
181
182        // Sanity check that we do not call dexopt with inconsistent data.
183        if (paths.size() != classLoaderContexts.length) {
184            String[] splitCodePaths = pkg.applicationInfo.getSplitCodePaths();
185            throw new IllegalStateException("Inconsistent information "
186                + "between PackageParser.Package and its ApplicationInfo. "
187                + "pkg.getAllCodePaths=" + paths
188                + " pkg.applicationInfo.getBaseCodePath=" + pkg.applicationInfo.getBaseCodePath()
189                + " pkg.applicationInfo.getSplitCodePaths="
190                + (splitCodePaths == null ? "null" : Arrays.toString(splitCodePaths)));
191        }
192
193        int result = DEX_OPT_SKIPPED;
194        for (int i = 0; i < paths.size(); i++) {
195            // Skip paths that have no code.
196            if (!pathsWithCode[i]) {
197                continue;
198            }
199            if (classLoaderContexts[i] == null) {
200                throw new IllegalStateException("Inconsistent information in the "
201                        + "package structure. A split is marked to contain code "
202                        + "but has no dependency listed. Index=" + i + " path=" + paths.get(i));
203            }
204
205            // Append shared libraries with split dependencies for this split.
206            String path = paths.get(i);
207            if (options.getSplitName() != null) {
208                // We are asked to compile only a specific split. Check that the current path is
209                // what we are looking for.
210                if (!options.getSplitName().equals(new File(path).getName())) {
211                    continue;
212                }
213            }
214
215            String profileName = ArtManager.getProfileName(i == 0 ? null : pkg.splitNames[i - 1]);
216
217            final boolean isUsedByOtherApps = options.isDexoptAsSharedLibrary()
218                    || packageUseInfo.isUsedByOtherApps(path);
219            final String compilerFilter = getRealCompilerFilter(pkg.applicationInfo,
220                options.getCompilerFilter(), isUsedByOtherApps);
221            final boolean profileUpdated = options.isCheckForProfileUpdates() &&
222                isProfileUpdated(pkg, sharedGid, profileName, compilerFilter);
223
224            // Get the dexopt flags after getRealCompilerFilter to make sure we get the correct
225            // flags.
226            final int dexoptFlags = getDexFlags(pkg, compilerFilter, options);
227
228            for (String dexCodeIsa : dexCodeInstructionSets) {
229                int newResult = dexOptPath(pkg, path, dexCodeIsa, compilerFilter,
230                        profileUpdated, classLoaderContexts[i], dexoptFlags, sharedGid,
231                        packageStats, options.isDowngrade(), profileName);
232                // The end result is:
233                //  - FAILED if any path failed,
234                //  - PERFORMED if at least one path needed compilation,
235                //  - SKIPPED when all paths are up to date
236                if ((result != DEX_OPT_FAILED) && (newResult != DEX_OPT_SKIPPED)) {
237                    result = newResult;
238                }
239            }
240        }
241        return result;
242    }
243
244    /**
245     * Performs dexopt on the {@code path} belonging to the package {@code pkg}.
246     *
247     * @return
248     *      DEX_OPT_FAILED if there was any exception during dexopt
249     *      DEX_OPT_PERFORMED if dexopt was performed successfully on the given path.
250     *      DEX_OPT_SKIPPED if the path does not need to be deopt-ed.
251     */
252    @GuardedBy("mInstallLock")
253    private int dexOptPath(PackageParser.Package pkg, String path, String isa,
254            String compilerFilter, boolean profileUpdated, String classLoaderContext,
255            int dexoptFlags, int uid, CompilerStats.PackageStats packageStats, boolean downgrade,
256            String profileName) {
257        int dexoptNeeded = getDexoptNeeded(path, isa, compilerFilter, classLoaderContext,
258                profileUpdated, downgrade);
259        if (Math.abs(dexoptNeeded) == DexFile.NO_DEXOPT_NEEDED) {
260            return DEX_OPT_SKIPPED;
261        }
262
263        // TODO(calin): there's no need to try to create the oat dir over and over again,
264        //              especially since it involve an extra installd call. We should create
265        //              if (if supported) on the fly during the dexopt call.
266        String oatDir = createOatDirIfSupported(pkg, isa);
267
268        Log.i(TAG, "Running dexopt (dexoptNeeded=" + dexoptNeeded + ") on: " + path
269                + " pkg=" + pkg.applicationInfo.packageName + " isa=" + isa
270                + " dexoptFlags=" + printDexoptFlags(dexoptFlags)
271                + " targetFilter=" + compilerFilter + " oatDir=" + oatDir
272                + " classLoaderContext=" + classLoaderContext);
273
274        try {
275            long startTime = System.currentTimeMillis();
276
277            // TODO: Consider adding 2 different APIs for primary and secondary dexopt.
278            // installd only uses downgrade flag for secondary dex files and ignores it for
279            // primary dex files.
280            mInstaller.dexopt(path, uid, pkg.packageName, isa, dexoptNeeded, oatDir, dexoptFlags,
281                    compilerFilter, pkg.volumeUuid, classLoaderContext, pkg.applicationInfo.seInfo,
282                    false /* downgrade*/, pkg.applicationInfo.targetSdkVersion,
283                    profileName);
284
285            if (packageStats != null) {
286                long endTime = System.currentTimeMillis();
287                packageStats.setCompileTime(path, (int)(endTime - startTime));
288            }
289            return DEX_OPT_PERFORMED;
290        } catch (InstallerException e) {
291            Slog.w(TAG, "Failed to dexopt", e);
292            return DEX_OPT_FAILED;
293        }
294    }
295
296    /**
297     * Performs dexopt on the secondary dex {@code path} belonging to the app {@code info}.
298     *
299     * @return
300     *      DEX_OPT_FAILED if there was any exception during dexopt
301     *      DEX_OPT_PERFORMED if dexopt was performed successfully on the given path.
302     * NOTE that DEX_OPT_PERFORMED for secondary dex files includes the case when the dex file
303     * didn't need an update. That's because at the moment we don't get more than success/failure
304     * from installd.
305     *
306     * TODO(calin): Consider adding return codes to installd dexopt invocation (rather than
307     * throwing exceptions). Or maybe make a separate call to installd to get DexOptNeeded, though
308     * that seems wasteful.
309     */
310    public int dexOptSecondaryDexPath(ApplicationInfo info, String path,
311            PackageDexUsage.DexUseInfo dexUseInfo, DexoptOptions options) {
312        if (info.uid == -1) {
313            throw new IllegalArgumentException("Dexopt for path " + path + " has invalid uid.");
314        }
315        synchronized (mInstallLock) {
316            final long acquireTime = acquireWakeLockLI(info.uid);
317            try {
318                return dexOptSecondaryDexPathLI(info, path, dexUseInfo, options);
319            } finally {
320                releaseWakeLockLI(acquireTime);
321            }
322        }
323    }
324
325    @GuardedBy("mInstallLock")
326    private long acquireWakeLockLI(final int uid) {
327        // During boot the system doesn't need to instantiate and obtain a wake lock.
328        // PowerManager might not be ready, but that doesn't mean that we can't proceed with
329        // dexopt.
330        if (!mSystemReady) {
331            return -1;
332        }
333        mDexoptWakeLock.setWorkSource(new WorkSource(uid));
334        mDexoptWakeLock.acquire(WAKELOCK_TIMEOUT_MS);
335        return SystemClock.elapsedRealtime();
336    }
337
338    @GuardedBy("mInstallLock")
339    private void releaseWakeLockLI(final long acquireTime) {
340        if (acquireTime < 0) {
341            return;
342        }
343        try {
344            if (mDexoptWakeLock.isHeld()) {
345                mDexoptWakeLock.release();
346            }
347            final long duration = SystemClock.elapsedRealtime() - acquireTime;
348            if (duration >= WAKELOCK_TIMEOUT_MS) {
349                Slog.wtf(TAG, "WakeLock " + mDexoptWakeLock.getTag()
350                        + " time out. Operation took " + duration + " ms. Thread: "
351                        + Thread.currentThread().getName());
352            }
353        } catch (Exception e) {
354            Slog.wtf(TAG, "Error while releasing " + mDexoptWakeLock.getTag() + " lock", e);
355        }
356    }
357
358    @GuardedBy("mInstallLock")
359    private int dexOptSecondaryDexPathLI(ApplicationInfo info, String path,
360            PackageDexUsage.DexUseInfo dexUseInfo, DexoptOptions options) {
361        if (options.isDexoptOnlySharedDex() && !dexUseInfo.isUsedByOtherApps()) {
362            // We are asked to optimize only the dex files used by other apps and this is not
363            // on of them: skip it.
364            return DEX_OPT_SKIPPED;
365        }
366
367        String compilerFilter = getRealCompilerFilter(info, options.getCompilerFilter(),
368                dexUseInfo.isUsedByOtherApps());
369        // Get the dexopt flags after getRealCompilerFilter to make sure we get the correct flags.
370        // Secondary dex files are currently not compiled at boot.
371        int dexoptFlags = getDexFlags(info, compilerFilter, options) | DEXOPT_SECONDARY_DEX;
372        // Check the app storage and add the appropriate flags.
373        if (info.deviceProtectedDataDir != null &&
374                FileUtils.contains(info.deviceProtectedDataDir, path)) {
375            dexoptFlags |= DEXOPT_STORAGE_DE;
376        } else if (info.credentialProtectedDataDir != null &&
377                FileUtils.contains(info.credentialProtectedDataDir, path)) {
378            dexoptFlags |= DEXOPT_STORAGE_CE;
379        } else {
380            Slog.e(TAG, "Could not infer CE/DE storage for package " + info.packageName);
381            return DEX_OPT_FAILED;
382        }
383        Log.d(TAG, "Running dexopt on: " + path
384                + " pkg=" + info.packageName + " isa=" + dexUseInfo.getLoaderIsas()
385                + " dexoptFlags=" + printDexoptFlags(dexoptFlags)
386                + " target-filter=" + compilerFilter);
387
388        // TODO(calin): b/64530081 b/66984396. Use SKIP_SHARED_LIBRARY_CHECK for the context
389        // (instead of dexUseInfo.getClassLoaderContext()) in order to compile secondary dex files
390        // in isolation (and avoid to extract/verify the main apk if it's in the class path).
391        // Note this trades correctness for performance since the resulting slow down is
392        // unacceptable in some cases until b/64530081 is fixed.
393        String classLoaderContext = SKIP_SHARED_LIBRARY_CHECK;
394
395        try {
396            for (String isa : dexUseInfo.getLoaderIsas()) {
397                // Reuse the same dexopt path as for the primary apks. We don't need all the
398                // arguments as some (dexopNeeded and oatDir) will be computed by installd because
399                // system server cannot read untrusted app content.
400                // TODO(calin): maybe add a separate call.
401                mInstaller.dexopt(path, info.uid, info.packageName, isa, /*dexoptNeeded*/ 0,
402                        /*oatDir*/ null, dexoptFlags,
403                        compilerFilter, info.volumeUuid, classLoaderContext, info.seInfoUser,
404                        options.isDowngrade(), info.targetSdkVersion, /*profileName*/ null);
405            }
406
407            return DEX_OPT_PERFORMED;
408        } catch (InstallerException e) {
409            Slog.w(TAG, "Failed to dexopt", e);
410            return DEX_OPT_FAILED;
411        }
412    }
413
414    /**
415     * Adjust the given dexopt-needed value. Can be overridden to influence the decision to
416     * optimize or not (and in what way).
417     */
418    protected int adjustDexoptNeeded(int dexoptNeeded) {
419        return dexoptNeeded;
420    }
421
422    /**
423     * Adjust the given dexopt flags that will be passed to the installer.
424     */
425    protected int adjustDexoptFlags(int dexoptFlags) {
426        return dexoptFlags;
427    }
428
429    /**
430     * Dumps the dexopt state of the given package {@code pkg} to the given {@code PrintWriter}.
431     */
432    void dumpDexoptState(IndentingPrintWriter pw, PackageParser.Package pkg,
433            PackageDexUsage.PackageUseInfo useInfo) {
434        final String[] instructionSets = getAppDexInstructionSets(pkg.applicationInfo);
435        final String[] dexCodeInstructionSets = getDexCodeInstructionSets(instructionSets);
436
437        final List<String> paths = pkg.getAllCodePathsExcludingResourceOnly();
438
439        for (String path : paths) {
440            pw.println("path: " + path);
441            pw.increaseIndent();
442
443            for (String isa : dexCodeInstructionSets) {
444                String status = null;
445                try {
446                    status = DexFile.getDexFileStatus(path, isa);
447                } catch (IOException ioe) {
448                     status = "[Exception]: " + ioe.getMessage();
449                }
450                pw.println(isa + ": " + status);
451            }
452
453            if (useInfo.isUsedByOtherApps(path)) {
454                pw.println("used by other apps: " + useInfo.getLoadingPackages(path));
455            }
456
457            Map<String, PackageDexUsage.DexUseInfo> dexUseInfoMap = useInfo.getDexUseInfoMap();
458
459            if (!dexUseInfoMap.isEmpty()) {
460                pw.println("known secondary dex files:");
461                pw.increaseIndent();
462                for (Map.Entry<String, PackageDexUsage.DexUseInfo> e : dexUseInfoMap.entrySet()) {
463                    String dex = e.getKey();
464                    PackageDexUsage.DexUseInfo dexUseInfo = e.getValue();
465                    pw.println(dex);
466                    pw.increaseIndent();
467                    // TODO(calin): get the status of the oat file (needs installd call)
468                    pw.println("class loader context: " + dexUseInfo.getClassLoaderContext());
469                    if (dexUseInfo.isUsedByOtherApps()) {
470                        pw.println("used by other apps: " + dexUseInfo.getLoadingPackages());
471                    }
472                    pw.decreaseIndent();
473                }
474                pw.decreaseIndent();
475            }
476            pw.decreaseIndent();
477        }
478    }
479
480    /**
481     * Returns the compiler filter that should be used to optimize the package code.
482     * The target filter will be updated if the package code is used by other apps
483     * or if it has the safe mode flag set.
484     */
485    private String getRealCompilerFilter(ApplicationInfo info, String targetCompilerFilter,
486            boolean isUsedByOtherApps) {
487        int flags = info.flags;
488        boolean vmSafeMode = (flags & ApplicationInfo.FLAG_VM_SAFE_MODE) != 0;
489        if (vmSafeMode) {
490            return getSafeModeCompilerFilter(targetCompilerFilter);
491        }
492
493        if (isProfileGuidedCompilerFilter(targetCompilerFilter) && isUsedByOtherApps) {
494            // If the dex files is used by other apps, apply the shared filter.
495            return PackageManagerServiceCompilerMapping.getCompilerFilterForReason(
496                    PackageManagerService.REASON_SHARED);
497        }
498
499        return targetCompilerFilter;
500    }
501
502    /**
503     * Computes the dex flags that needs to be pass to installd for the given package and compiler
504     * filter.
505     */
506    private int getDexFlags(PackageParser.Package pkg, String compilerFilter,
507            DexoptOptions options) {
508        return getDexFlags(pkg.applicationInfo, compilerFilter, options);
509    }
510
511    private int getDexFlags(ApplicationInfo info, String compilerFilter, DexoptOptions options) {
512        int flags = info.flags;
513        boolean debuggable = (flags & ApplicationInfo.FLAG_DEBUGGABLE) != 0;
514        // Profile guide compiled oat files should not be public.
515        boolean isProfileGuidedFilter = isProfileGuidedCompilerFilter(compilerFilter);
516        boolean isPublic = !info.isForwardLocked() && !isProfileGuidedFilter;
517        int profileFlag = isProfileGuidedFilter ? DEXOPT_PROFILE_GUIDED : 0;
518        // Some apps are executed with restrictions on hidden API usage. If this app is one
519        // of them, pass a flag to dexopt to enable the same restrictions during compilation.
520        int hiddenApiFlag = info.isAllowedToUseHiddenApi() ? 0 : DEXOPT_ENABLE_HIDDEN_API_CHECKS;
521        int dexFlags =
522                (isPublic ? DEXOPT_PUBLIC : 0)
523                | (debuggable ? DEXOPT_DEBUGGABLE : 0)
524                | profileFlag
525                | (options.isBootComplete() ? DEXOPT_BOOTCOMPLETE : 0)
526                | (options.isDexoptIdleBackgroundJob() ? DEXOPT_IDLE_BACKGROUND_JOB : 0)
527                | hiddenApiFlag;
528        return adjustDexoptFlags(dexFlags);
529    }
530
531    /**
532     * Assesses if there's a need to perform dexopt on {@code path} for the given
533     * configuration (isa, compiler filter, profile).
534     */
535    private int getDexoptNeeded(String path, String isa, String compilerFilter,
536            String classLoaderContext, boolean newProfile, boolean downgrade) {
537        int dexoptNeeded;
538        try {
539            dexoptNeeded = DexFile.getDexOptNeeded(path, isa, compilerFilter, classLoaderContext,
540                    newProfile, downgrade);
541        } catch (IOException ioe) {
542            Slog.w(TAG, "IOException reading apk: " + path, ioe);
543            return DEX_OPT_FAILED;
544        }
545        return adjustDexoptNeeded(dexoptNeeded);
546    }
547
548    /**
549     * Checks if there is an update on the profile information of the {@code pkg}.
550     * If the compiler filter is not profile guided the method returns false.
551     *
552     * Note that this is a "destructive" operation with side effects. Under the hood the
553     * current profile and the reference profile will be merged and subsequent calls
554     * may return a different result.
555     */
556    private boolean isProfileUpdated(PackageParser.Package pkg, int uid, String profileName,
557            String compilerFilter) {
558        // Check if we are allowed to merge and if the compiler filter is profile guided.
559        if (!isProfileGuidedCompilerFilter(compilerFilter)) {
560            return false;
561        }
562        // Merge profiles. It returns whether or not there was an updated in the profile info.
563        try {
564            return mInstaller.mergeProfiles(uid, pkg.packageName, profileName);
565        } catch (InstallerException e) {
566            Slog.w(TAG, "Failed to merge profiles", e);
567        }
568        return false;
569    }
570
571    /**
572     * Creates oat dir for the specified package if needed and supported.
573     * In certain cases oat directory
574     * <strong>cannot</strong> be created:
575     * <ul>
576     *      <li>{@code pkg} is a system app, which is not updated.</li>
577     *      <li>Package location is not a directory, i.e. monolithic install.</li>
578     * </ul>
579     *
580     * @return Absolute path to the oat directory or null, if oat directory
581     * cannot be created.
582     */
583    @Nullable
584    private String createOatDirIfSupported(PackageParser.Package pkg, String dexInstructionSet) {
585        if (!pkg.canHaveOatDir()) {
586            return null;
587        }
588        File codePath = new File(pkg.codePath);
589        if (codePath.isDirectory()) {
590            // TODO(calin): why do we create this only if the codePath is a directory? (i.e for
591            //              cluster packages). It seems that the logic for the folder creation is
592            //              split between installd and here.
593            File oatDir = getOatDir(codePath);
594            try {
595                mInstaller.createOatDir(oatDir.getAbsolutePath(), dexInstructionSet);
596            } catch (InstallerException e) {
597                Slog.w(TAG, "Failed to create oat dir", e);
598                return null;
599            }
600            return oatDir.getAbsolutePath();
601        }
602        return null;
603    }
604
605    static File getOatDir(File codePath) {
606        return new File(codePath, OAT_DIR_NAME);
607    }
608
609    void systemReady() {
610        mSystemReady = true;
611    }
612
613    private String printDexoptFlags(int flags) {
614        ArrayList<String> flagsList = new ArrayList<>();
615
616        if ((flags & DEXOPT_BOOTCOMPLETE) == DEXOPT_BOOTCOMPLETE) {
617            flagsList.add("boot_complete");
618        }
619        if ((flags & DEXOPT_DEBUGGABLE) == DEXOPT_DEBUGGABLE) {
620            flagsList.add("debuggable");
621        }
622        if ((flags & DEXOPT_PROFILE_GUIDED) == DEXOPT_PROFILE_GUIDED) {
623            flagsList.add("profile_guided");
624        }
625        if ((flags & DEXOPT_PUBLIC) == DEXOPT_PUBLIC) {
626            flagsList.add("public");
627        }
628        if ((flags & DEXOPT_SECONDARY_DEX) == DEXOPT_SECONDARY_DEX) {
629            flagsList.add("secondary");
630        }
631        if ((flags & DEXOPT_FORCE) == DEXOPT_FORCE) {
632            flagsList.add("force");
633        }
634        if ((flags & DEXOPT_STORAGE_CE) == DEXOPT_STORAGE_CE) {
635            flagsList.add("storage_ce");
636        }
637        if ((flags & DEXOPT_STORAGE_DE) == DEXOPT_STORAGE_DE) {
638            flagsList.add("storage_de");
639        }
640        if ((flags & DEXOPT_IDLE_BACKGROUND_JOB) == DEXOPT_IDLE_BACKGROUND_JOB) {
641            flagsList.add("idle_background_job");
642        }
643        if ((flags & DEXOPT_ENABLE_HIDDEN_API_CHECKS) == DEXOPT_ENABLE_HIDDEN_API_CHECKS) {
644            flagsList.add("enable_hidden_api_checks");
645        }
646
647        return String.join(",", flagsList);
648    }
649
650    /**
651     * A specialized PackageDexOptimizer that overrides already-installed checks, forcing a
652     * dexopt path.
653     */
654    public static class ForcedUpdatePackageDexOptimizer extends PackageDexOptimizer {
655
656        public ForcedUpdatePackageDexOptimizer(Installer installer, Object installLock,
657                Context context, String wakeLockTag) {
658            super(installer, installLock, context, wakeLockTag);
659        }
660
661        public ForcedUpdatePackageDexOptimizer(PackageDexOptimizer from) {
662            super(from);
663        }
664
665        @Override
666        protected int adjustDexoptNeeded(int dexoptNeeded) {
667            if (dexoptNeeded == DexFile.NO_DEXOPT_NEEDED) {
668                // Ensure compilation by pretending a compiler filter change on the
669                // apk/odex location (the reason for the '-'. A positive value means
670                // the 'oat' location).
671                return -DexFile.DEX2OAT_FOR_FILTER;
672            }
673            return dexoptNeeded;
674        }
675
676        @Override
677        protected int adjustDexoptFlags(int flags) {
678            // Add DEXOPT_FORCE flag to signal installd that it should force compilation
679            // and discard dexoptanalyzer result.
680            return flags | DEXOPT_FORCE;
681        }
682    }
683}
684