PackageManagerService.java revision f5c444ffd4fdce4fab939fcd88f163288dc804c5
1/*
2 * Copyright (C) 2006 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 static android.Manifest.permission.READ_EXTERNAL_STORAGE;
20import static android.Manifest.permission.WRITE_EXTERNAL_STORAGE;
21import static android.Manifest.permission.WRITE_MEDIA_STORAGE;
22import static android.content.pm.PackageManager.COMPONENT_ENABLED_STATE_DEFAULT;
23import static android.content.pm.PackageManager.COMPONENT_ENABLED_STATE_DISABLED;
24import static android.content.pm.PackageManager.COMPONENT_ENABLED_STATE_DISABLED_UNTIL_USED;
25import static android.content.pm.PackageManager.COMPONENT_ENABLED_STATE_DISABLED_USER;
26import static android.content.pm.PackageManager.COMPONENT_ENABLED_STATE_ENABLED;
27import static android.content.pm.PackageManager.DELETE_KEEP_DATA;
28import static android.content.pm.PackageManager.FLAG_PERMISSION_GRANTED_BY_DEFAULT;
29import static android.content.pm.PackageManager.FLAG_PERMISSION_POLICY_FIXED;
30import static android.content.pm.PackageManager.FLAG_PERMISSION_REVIEW_REQUIRED;
31import static android.content.pm.PackageManager.FLAG_PERMISSION_REVOKE_ON_UPGRADE;
32import static android.content.pm.PackageManager.FLAG_PERMISSION_SYSTEM_FIXED;
33import static android.content.pm.PackageManager.FLAG_PERMISSION_USER_FIXED;
34import static android.content.pm.PackageManager.FLAG_PERMISSION_USER_SET;
35import static android.content.pm.PackageManager.INSTALL_EXTERNAL;
36import static android.content.pm.PackageManager.INSTALL_FAILED_ALREADY_EXISTS;
37import static android.content.pm.PackageManager.INSTALL_FAILED_CONFLICTING_PROVIDER;
38import static android.content.pm.PackageManager.INSTALL_FAILED_DEXOPT;
39import static android.content.pm.PackageManager.INSTALL_FAILED_DUPLICATE_PACKAGE;
40import static android.content.pm.PackageManager.INSTALL_FAILED_DUPLICATE_PERMISSION;
41import static android.content.pm.PackageManager.INSTALL_FAILED_EPHEMERAL_INVALID;
42import static android.content.pm.PackageManager.INSTALL_FAILED_INSUFFICIENT_STORAGE;
43import static android.content.pm.PackageManager.INSTALL_FAILED_INTERNAL_ERROR;
44import static android.content.pm.PackageManager.INSTALL_FAILED_INVALID_APK;
45import static android.content.pm.PackageManager.INSTALL_FAILED_INVALID_INSTALL_LOCATION;
46import static android.content.pm.PackageManager.INSTALL_FAILED_MISSING_SHARED_LIBRARY;
47import static android.content.pm.PackageManager.INSTALL_FAILED_PACKAGE_CHANGED;
48import static android.content.pm.PackageManager.INSTALL_FAILED_REPLACE_COULDNT_DELETE;
49import static android.content.pm.PackageManager.INSTALL_FAILED_SHARED_USER_INCOMPATIBLE;
50import static android.content.pm.PackageManager.INSTALL_FAILED_TEST_ONLY;
51import static android.content.pm.PackageManager.INSTALL_FAILED_UPDATE_INCOMPATIBLE;
52import static android.content.pm.PackageManager.INSTALL_FAILED_USER_RESTRICTED;
53import static android.content.pm.PackageManager.INSTALL_FAILED_VERSION_DOWNGRADE;
54import static android.content.pm.PackageManager.INSTALL_FORWARD_LOCK;
55import static android.content.pm.PackageManager.INSTALL_INTERNAL;
56import static android.content.pm.PackageManager.INSTALL_PARSE_FAILED_INCONSISTENT_CERTIFICATES;
57import static android.content.pm.PackageManager.INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_ALWAYS;
58import static android.content.pm.PackageManager.INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_ALWAYS_ASK;
59import static android.content.pm.PackageManager.INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_ASK;
60import static android.content.pm.PackageManager.INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_NEVER;
61import static android.content.pm.PackageManager.INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_UNDEFINED;
62import static android.content.pm.PackageManager.MATCH_ALL;
63import static android.content.pm.PackageManager.MATCH_DEBUG_TRIAGED_MISSING;
64import static android.content.pm.PackageManager.MATCH_DIRECT_BOOT_AWARE;
65import static android.content.pm.PackageManager.MATCH_DIRECT_BOOT_UNAWARE;
66import static android.content.pm.PackageManager.MATCH_DISABLED_COMPONENTS;
67import static android.content.pm.PackageManager.MATCH_SYSTEM_ONLY;
68import static android.content.pm.PackageManager.MATCH_UNINSTALLED_PACKAGES;
69import static android.content.pm.PackageManager.MOVE_FAILED_DEVICE_ADMIN;
70import static android.content.pm.PackageManager.MOVE_FAILED_DOESNT_EXIST;
71import static android.content.pm.PackageManager.MOVE_FAILED_INTERNAL_ERROR;
72import static android.content.pm.PackageManager.MOVE_FAILED_OPERATION_PENDING;
73import static android.content.pm.PackageManager.MOVE_FAILED_SYSTEM_PACKAGE;
74import static android.content.pm.PackageManager.PERMISSION_DENIED;
75import static android.content.pm.PackageManager.PERMISSION_GRANTED;
76import static android.content.pm.PackageParser.PARSE_IS_PRIVILEGED;
77import static android.content.pm.PackageParser.isApkFile;
78import static android.os.Process.PACKAGE_INFO_GID;
79import static android.os.Process.SYSTEM_UID;
80import static android.os.Trace.TRACE_TAG_PACKAGE_MANAGER;
81import static android.system.OsConstants.O_CREAT;
82import static android.system.OsConstants.O_RDWR;
83
84import static com.android.internal.app.IntentForwarderActivity.FORWARD_INTENT_TO_MANAGED_PROFILE;
85import static com.android.internal.app.IntentForwarderActivity.FORWARD_INTENT_TO_PARENT;
86import static com.android.internal.content.NativeLibraryHelper.LIB64_DIR_NAME;
87import static com.android.internal.content.NativeLibraryHelper.LIB_DIR_NAME;
88import static com.android.internal.util.ArrayUtils.appendInt;
89import static com.android.server.pm.Installer.DEXOPT_PUBLIC;
90import static com.android.server.pm.InstructionSets.getAppDexInstructionSets;
91import static com.android.server.pm.InstructionSets.getDexCodeInstructionSet;
92import static com.android.server.pm.InstructionSets.getDexCodeInstructionSets;
93import static com.android.server.pm.InstructionSets.getPreferredInstructionSet;
94import static com.android.server.pm.InstructionSets.getPrimaryInstructionSet;
95import static com.android.server.pm.PackageManagerServiceCompilerMapping.getCompilerFilterForReason;
96import static com.android.server.pm.PackageManagerServiceCompilerMapping.getFullCompilerFilter;
97import static com.android.server.pm.PermissionsState.PERMISSION_OPERATION_FAILURE;
98import static com.android.server.pm.PermissionsState.PERMISSION_OPERATION_SUCCESS;
99import static com.android.server.pm.PermissionsState.PERMISSION_OPERATION_SUCCESS_GIDS_CHANGED;
100
101import android.Manifest;
102import android.annotation.NonNull;
103import android.annotation.Nullable;
104import android.app.ActivityManager;
105import android.app.ActivityManagerNative;
106import android.app.IActivityManager;
107import android.app.admin.DevicePolicyManagerInternal;
108import android.app.admin.IDevicePolicyManager;
109import android.app.admin.SecurityLog;
110import android.app.backup.IBackupManager;
111import android.content.BroadcastReceiver;
112import android.content.ComponentName;
113import android.content.Context;
114import android.content.IIntentReceiver;
115import android.content.Intent;
116import android.content.IntentFilter;
117import android.content.IntentSender;
118import android.content.IntentSender.SendIntentException;
119import android.content.ServiceConnection;
120import android.content.pm.ActivityInfo;
121import android.content.pm.ApplicationInfo;
122import android.content.pm.AppsQueryHelper;
123import android.content.pm.ComponentInfo;
124import android.content.pm.EphemeralApplicationInfo;
125import android.content.pm.EphemeralResolveInfo;
126import android.content.pm.EphemeralResolveInfo.EphemeralResolveIntentInfo;
127import android.content.pm.FeatureInfo;
128import android.content.pm.IOnPermissionsChangeListener;
129import android.content.pm.IPackageDataObserver;
130import android.content.pm.IPackageDeleteObserver;
131import android.content.pm.IPackageDeleteObserver2;
132import android.content.pm.IPackageInstallObserver2;
133import android.content.pm.IPackageInstaller;
134import android.content.pm.IPackageManager;
135import android.content.pm.IPackageMoveObserver;
136import android.content.pm.IPackageStatsObserver;
137import android.content.pm.InstrumentationInfo;
138import android.content.pm.IntentFilterVerificationInfo;
139import android.content.pm.KeySet;
140import android.content.pm.PackageCleanItem;
141import android.content.pm.PackageInfo;
142import android.content.pm.PackageInfoLite;
143import android.content.pm.PackageInstaller;
144import android.content.pm.PackageManager;
145import android.content.pm.PackageManager.LegacyPackageDeleteObserver;
146import android.content.pm.PackageManagerInternal;
147import android.content.pm.PackageParser;
148import android.content.pm.PackageParser.ActivityIntentInfo;
149import android.content.pm.PackageParser.PackageLite;
150import android.content.pm.PackageParser.PackageParserException;
151import android.content.pm.PackageStats;
152import android.content.pm.PackageUserState;
153import android.content.pm.ParceledListSlice;
154import android.content.pm.PermissionGroupInfo;
155import android.content.pm.PermissionInfo;
156import android.content.pm.ProviderInfo;
157import android.content.pm.ResolveInfo;
158import android.content.pm.ServiceInfo;
159import android.content.pm.Signature;
160import android.content.pm.UserInfo;
161import android.content.pm.VerifierDeviceIdentity;
162import android.content.pm.VerifierInfo;
163import android.content.res.Resources;
164import android.graphics.Bitmap;
165import android.hardware.display.DisplayManager;
166import android.net.Uri;
167import android.os.Binder;
168import android.os.Build;
169import android.os.Bundle;
170import android.os.Debug;
171import android.os.Environment;
172import android.os.Environment.UserEnvironment;
173import android.os.FileUtils;
174import android.os.Handler;
175import android.os.IBinder;
176import android.os.Looper;
177import android.os.Message;
178import android.os.Parcel;
179import android.os.ParcelFileDescriptor;
180import android.os.Process;
181import android.os.RemoteCallbackList;
182import android.os.RemoteException;
183import android.os.ResultReceiver;
184import android.os.SELinux;
185import android.os.ServiceManager;
186import android.os.SystemClock;
187import android.os.SystemProperties;
188import android.os.Trace;
189import android.os.UserHandle;
190import android.os.UserManager;
191import android.os.storage.IMountService;
192import android.os.storage.MountServiceInternal;
193import android.os.storage.StorageEventListener;
194import android.os.storage.StorageManager;
195import android.os.storage.VolumeInfo;
196import android.os.storage.VolumeRecord;
197import android.security.KeyStore;
198import android.security.SystemKeyStore;
199import android.system.ErrnoException;
200import android.system.Os;
201import android.text.TextUtils;
202import android.text.format.DateUtils;
203import android.util.ArrayMap;
204import android.util.ArraySet;
205import android.util.AtomicFile;
206import android.util.DisplayMetrics;
207import android.util.EventLog;
208import android.util.ExceptionUtils;
209import android.util.Log;
210import android.util.LogPrinter;
211import android.util.MathUtils;
212import android.util.PrintStreamPrinter;
213import android.util.Slog;
214import android.util.SparseArray;
215import android.util.SparseBooleanArray;
216import android.util.SparseIntArray;
217import android.util.Xml;
218import android.view.Display;
219
220import com.android.internal.R;
221import com.android.internal.annotations.GuardedBy;
222import com.android.internal.app.IMediaContainerService;
223import com.android.internal.app.ResolverActivity;
224import com.android.internal.content.NativeLibraryHelper;
225import com.android.internal.content.PackageHelper;
226import com.android.internal.os.IParcelFileDescriptorFactory;
227import com.android.internal.os.InstallerConnection.InstallerException;
228import com.android.internal.os.SomeArgs;
229import com.android.internal.os.Zygote;
230import com.android.internal.util.ArrayUtils;
231import com.android.internal.util.FastPrintWriter;
232import com.android.internal.util.FastXmlSerializer;
233import com.android.internal.util.IndentingPrintWriter;
234import com.android.internal.util.Preconditions;
235import com.android.internal.util.XmlUtils;
236import com.android.server.EventLogTags;
237import com.android.server.FgThread;
238import com.android.server.IntentResolver;
239import com.android.server.LocalServices;
240import com.android.server.ServiceThread;
241import com.android.server.SystemConfig;
242import com.android.server.Watchdog;
243import com.android.server.pm.PermissionsState.PermissionState;
244import com.android.server.pm.Settings.DatabaseVersion;
245import com.android.server.pm.Settings.VersionInfo;
246import com.android.server.storage.DeviceStorageMonitorInternal;
247
248import dalvik.system.DexFile;
249import dalvik.system.VMRuntime;
250
251import libcore.io.IoUtils;
252import libcore.util.EmptyArray;
253
254import org.xmlpull.v1.XmlPullParser;
255import org.xmlpull.v1.XmlPullParserException;
256import org.xmlpull.v1.XmlSerializer;
257
258import java.io.BufferedInputStream;
259import java.io.BufferedOutputStream;
260import java.io.BufferedReader;
261import java.io.ByteArrayInputStream;
262import java.io.ByteArrayOutputStream;
263import java.io.File;
264import java.io.FileDescriptor;
265import java.io.FileNotFoundException;
266import java.io.FileOutputStream;
267import java.io.FileReader;
268import java.io.FilenameFilter;
269import java.io.IOException;
270import java.io.InputStream;
271import java.io.PrintWriter;
272import java.nio.charset.StandardCharsets;
273import java.security.MessageDigest;
274import java.security.NoSuchAlgorithmException;
275import java.security.PublicKey;
276import java.security.cert.CertificateEncodingException;
277import java.security.cert.CertificateException;
278import java.text.SimpleDateFormat;
279import java.util.ArrayList;
280import java.util.Arrays;
281import java.util.Collection;
282import java.util.Collections;
283import java.util.Comparator;
284import java.util.Date;
285import java.util.HashSet;
286import java.util.Iterator;
287import java.util.List;
288import java.util.Map;
289import java.util.Objects;
290import java.util.Set;
291import java.util.concurrent.CountDownLatch;
292import java.util.concurrent.TimeUnit;
293import java.util.concurrent.atomic.AtomicBoolean;
294import java.util.concurrent.atomic.AtomicInteger;
295import java.util.concurrent.atomic.AtomicLong;
296
297/**
298 * Keep track of all those .apks everywhere.
299 *
300 * This is very central to the platform's security; please run the unit
301 * tests whenever making modifications here:
302 *
303runtest -c android.content.pm.PackageManagerTests frameworks-core
304 *
305 * {@hide}
306 */
307public class PackageManagerService extends IPackageManager.Stub {
308    static final String TAG = "PackageManager";
309    static final boolean DEBUG_SETTINGS = false;
310    static final boolean DEBUG_PREFERRED = false;
311    static final boolean DEBUG_UPGRADE = false;
312    static final boolean DEBUG_DOMAIN_VERIFICATION = false;
313    private static final boolean DEBUG_BACKUP = false;
314    private static final boolean DEBUG_INSTALL = false;
315    private static final boolean DEBUG_REMOVE = false;
316    private static final boolean DEBUG_BROADCASTS = false;
317    private static final boolean DEBUG_SHOW_INFO = false;
318    private static final boolean DEBUG_PACKAGE_INFO = false;
319    private static final boolean DEBUG_INTENT_MATCHING = false;
320    private static final boolean DEBUG_PACKAGE_SCANNING = false;
321    private static final boolean DEBUG_VERIFY = false;
322
323    // Debug output for dexopting. This is shared between PackageManagerService, OtaDexoptService
324    // and PackageDexOptimizer. All these classes have their own flag to allow switching a single
325    // user, but by default initialize to this.
326    static final boolean DEBUG_DEXOPT = false;
327
328    private static final boolean DEBUG_ABI_SELECTION = false;
329    private static final boolean DEBUG_EPHEMERAL = false;
330    private static final boolean DEBUG_TRIAGED_MISSING = false;
331    private static final boolean DEBUG_APP_DATA = false;
332
333    static final boolean CLEAR_RUNTIME_PERMISSIONS_ON_UPGRADE = false;
334
335    private static final boolean DISABLE_EPHEMERAL_APPS = true;
336
337    private static final int RADIO_UID = Process.PHONE_UID;
338    private static final int LOG_UID = Process.LOG_UID;
339    private static final int NFC_UID = Process.NFC_UID;
340    private static final int BLUETOOTH_UID = Process.BLUETOOTH_UID;
341    private static final int SHELL_UID = Process.SHELL_UID;
342
343    // Cap the size of permission trees that 3rd party apps can define
344    private static final int MAX_PERMISSION_TREE_FOOTPRINT = 32768;     // characters of text
345
346    // Suffix used during package installation when copying/moving
347    // package apks to install directory.
348    private static final String INSTALL_PACKAGE_SUFFIX = "-";
349
350    static final int SCAN_NO_DEX = 1<<1;
351    static final int SCAN_FORCE_DEX = 1<<2;
352    static final int SCAN_UPDATE_SIGNATURE = 1<<3;
353    static final int SCAN_NEW_INSTALL = 1<<4;
354    static final int SCAN_NO_PATHS = 1<<5;
355    static final int SCAN_UPDATE_TIME = 1<<6;
356    static final int SCAN_DEFER_DEX = 1<<7;
357    static final int SCAN_BOOTING = 1<<8;
358    static final int SCAN_TRUSTED_OVERLAY = 1<<9;
359    static final int SCAN_DELETE_DATA_ON_FAILURES = 1<<10;
360    static final int SCAN_REPLACING = 1<<11;
361    static final int SCAN_REQUIRE_KNOWN = 1<<12;
362    static final int SCAN_MOVE = 1<<13;
363    static final int SCAN_INITIAL = 1<<14;
364    static final int SCAN_CHECK_ONLY = 1<<15;
365    static final int SCAN_DONT_KILL_APP = 1<<17;
366
367    static final int REMOVE_CHATTY = 1<<16;
368
369    private static final int[] EMPTY_INT_ARRAY = new int[0];
370
371    /**
372     * Timeout (in milliseconds) after which the watchdog should declare that
373     * our handler thread is wedged.  The usual default for such things is one
374     * minute but we sometimes do very lengthy I/O operations on this thread,
375     * such as installing multi-gigabyte applications, so ours needs to be longer.
376     */
377    private static final long WATCHDOG_TIMEOUT = 1000*60*10;     // ten minutes
378
379    /**
380     * Wall-clock timeout (in milliseconds) after which we *require* that an fstrim
381     * be run on this device.  We use the value in the Settings.Global.MANDATORY_FSTRIM_INTERVAL
382     * settings entry if available, otherwise we use the hardcoded default.  If it's been
383     * more than this long since the last fstrim, we force one during the boot sequence.
384     *
385     * This backstops other fstrim scheduling:  if the device is alive at midnight+idle,
386     * one gets run at the next available charging+idle time.  This final mandatory
387     * no-fstrim check kicks in only of the other scheduling criteria is never met.
388     */
389    private static final long DEFAULT_MANDATORY_FSTRIM_INTERVAL = 3 * DateUtils.DAY_IN_MILLIS;
390
391    /**
392     * Whether verification is enabled by default.
393     */
394    private static final boolean DEFAULT_VERIFY_ENABLE = true;
395
396    /**
397     * The default maximum time to wait for the verification agent to return in
398     * milliseconds.
399     */
400    private static final long DEFAULT_VERIFICATION_TIMEOUT = 10 * 1000;
401
402    /**
403     * The default response for package verification timeout.
404     *
405     * This can be either PackageManager.VERIFICATION_ALLOW or
406     * PackageManager.VERIFICATION_REJECT.
407     */
408    private static final int DEFAULT_VERIFICATION_RESPONSE = PackageManager.VERIFICATION_ALLOW;
409
410    static final String DEFAULT_CONTAINER_PACKAGE = "com.android.defcontainer";
411
412    static final ComponentName DEFAULT_CONTAINER_COMPONENT = new ComponentName(
413            DEFAULT_CONTAINER_PACKAGE,
414            "com.android.defcontainer.DefaultContainerService");
415
416    private static final String KILL_APP_REASON_GIDS_CHANGED =
417            "permission grant or revoke changed gids";
418
419    private static final String KILL_APP_REASON_PERMISSIONS_REVOKED =
420            "permissions revoked";
421
422    private static final String PACKAGE_MIME_TYPE = "application/vnd.android.package-archive";
423
424    private static final String VENDOR_OVERLAY_DIR = "/vendor/overlay";
425
426    /** Permission grant: not grant the permission. */
427    private static final int GRANT_DENIED = 1;
428
429    /** Permission grant: grant the permission as an install permission. */
430    private static final int GRANT_INSTALL = 2;
431
432    /** Permission grant: grant the permission as a runtime one. */
433    private static final int GRANT_RUNTIME = 3;
434
435    /** Permission grant: grant as runtime a permission that was granted as an install time one. */
436    private static final int GRANT_UPGRADE = 4;
437
438    /** Canonical intent used to identify what counts as a "web browser" app */
439    private static final Intent sBrowserIntent;
440    static {
441        sBrowserIntent = new Intent();
442        sBrowserIntent.setAction(Intent.ACTION_VIEW);
443        sBrowserIntent.addCategory(Intent.CATEGORY_BROWSABLE);
444        sBrowserIntent.setData(Uri.parse("http:"));
445    }
446
447    // Compilation reasons.
448    public static final int REASON_FIRST_BOOT = 0;
449    public static final int REASON_BOOT = 1;
450    public static final int REASON_INSTALL = 2;
451    public static final int REASON_BACKGROUND_DEXOPT = 3;
452    public static final int REASON_AB_OTA = 4;
453    public static final int REASON_NON_SYSTEM_LIBRARY = 5;
454    public static final int REASON_SHARED_APK = 6;
455    public static final int REASON_FORCED_DEXOPT = 7;
456
457    public static final int REASON_LAST = REASON_FORCED_DEXOPT;
458
459    final ServiceThread mHandlerThread;
460
461    final PackageHandler mHandler;
462
463    private final ProcessLoggingHandler mProcessLoggingHandler;
464
465    /**
466     * Messages for {@link #mHandler} that need to wait for system ready before
467     * being dispatched.
468     */
469    private ArrayList<Message> mPostSystemReadyMessages;
470
471    final int mSdkVersion = Build.VERSION.SDK_INT;
472
473    final Context mContext;
474    final boolean mFactoryTest;
475    final boolean mOnlyCore;
476    final DisplayMetrics mMetrics;
477    final int mDefParseFlags;
478    final String[] mSeparateProcesses;
479    final boolean mIsUpgrade;
480    final boolean mIsPreNUpgrade;
481
482    /** The location for ASEC container files on internal storage. */
483    final String mAsecInternalPath;
484
485    // Used for privilege escalation. MUST NOT BE CALLED WITH mPackages
486    // LOCK HELD.  Can be called with mInstallLock held.
487    @GuardedBy("mInstallLock")
488    final Installer mInstaller;
489
490    /** Directory where installed third-party apps stored */
491    final File mAppInstallDir;
492    final File mEphemeralInstallDir;
493
494    /**
495     * Directory to which applications installed internally have their
496     * 32 bit native libraries copied.
497     */
498    private File mAppLib32InstallDir;
499
500    // Directory containing the private parts (e.g. code and non-resource assets) of forward-locked
501    // apps.
502    final File mDrmAppPrivateInstallDir;
503
504    // ----------------------------------------------------------------
505
506    // Lock for state used when installing and doing other long running
507    // operations.  Methods that must be called with this lock held have
508    // the suffix "LI".
509    final Object mInstallLock = new Object();
510
511    // ----------------------------------------------------------------
512
513    // Keys are String (package name), values are Package.  This also serves
514    // as the lock for the global state.  Methods that must be called with
515    // this lock held have the prefix "LP".
516    @GuardedBy("mPackages")
517    final ArrayMap<String, PackageParser.Package> mPackages =
518            new ArrayMap<String, PackageParser.Package>();
519
520    final ArrayMap<String, Set<String>> mKnownCodebase =
521            new ArrayMap<String, Set<String>>();
522
523    // Tracks available target package names -> overlay package paths.
524    final ArrayMap<String, ArrayMap<String, PackageParser.Package>> mOverlays =
525        new ArrayMap<String, ArrayMap<String, PackageParser.Package>>();
526
527    /**
528     * Tracks new system packages [received in an OTA] that we expect to
529     * find updated user-installed versions. Keys are package name, values
530     * are package location.
531     */
532    final private ArrayMap<String, File> mExpectingBetter = new ArrayMap<>();
533
534    /**
535     * Tracks existing system packages prior to receiving an OTA. Keys are package name.
536     */
537    final private ArraySet<String> mExistingSystemPackages = new ArraySet<>();
538    /**
539     * Whether or not system app permissions should be promoted from install to runtime.
540     */
541    boolean mPromoteSystemApps;
542
543    final Settings mSettings;
544    boolean mRestoredSettings;
545
546    // System configuration read by SystemConfig.
547    final int[] mGlobalGids;
548    final SparseArray<ArraySet<String>> mSystemPermissions;
549    final ArrayMap<String, FeatureInfo> mAvailableFeatures;
550
551    // If mac_permissions.xml was found for seinfo labeling.
552    boolean mFoundPolicyFile;
553
554    private final EphemeralApplicationRegistry mEphemeralApplicationRegistry;
555
556    public static final class SharedLibraryEntry {
557        public final String path;
558        public final String apk;
559
560        SharedLibraryEntry(String _path, String _apk) {
561            path = _path;
562            apk = _apk;
563        }
564    }
565
566    // Currently known shared libraries.
567    final ArrayMap<String, SharedLibraryEntry> mSharedLibraries =
568            new ArrayMap<String, SharedLibraryEntry>();
569
570    // All available activities, for your resolving pleasure.
571    final ActivityIntentResolver mActivities =
572            new ActivityIntentResolver();
573
574    // All available receivers, for your resolving pleasure.
575    final ActivityIntentResolver mReceivers =
576            new ActivityIntentResolver();
577
578    // All available services, for your resolving pleasure.
579    final ServiceIntentResolver mServices = new ServiceIntentResolver();
580
581    // All available providers, for your resolving pleasure.
582    final ProviderIntentResolver mProviders = new ProviderIntentResolver();
583
584    // Mapping from provider base names (first directory in content URI codePath)
585    // to the provider information.
586    final ArrayMap<String, PackageParser.Provider> mProvidersByAuthority =
587            new ArrayMap<String, PackageParser.Provider>();
588
589    // Mapping from instrumentation class names to info about them.
590    final ArrayMap<ComponentName, PackageParser.Instrumentation> mInstrumentation =
591            new ArrayMap<ComponentName, PackageParser.Instrumentation>();
592
593    // Mapping from permission names to info about them.
594    final ArrayMap<String, PackageParser.PermissionGroup> mPermissionGroups =
595            new ArrayMap<String, PackageParser.PermissionGroup>();
596
597    // Packages whose data we have transfered into another package, thus
598    // should no longer exist.
599    final ArraySet<String> mTransferedPackages = new ArraySet<String>();
600
601    // Broadcast actions that are only available to the system.
602    final ArraySet<String> mProtectedBroadcasts = new ArraySet<String>();
603
604    /** List of packages waiting for verification. */
605    final SparseArray<PackageVerificationState> mPendingVerification
606            = new SparseArray<PackageVerificationState>();
607
608    /** Set of packages associated with each app op permission. */
609    final ArrayMap<String, ArraySet<String>> mAppOpPermissionPackages = new ArrayMap<>();
610
611    final PackageInstallerService mInstallerService;
612
613    private final PackageDexOptimizer mPackageDexOptimizer;
614
615    private AtomicInteger mNextMoveId = new AtomicInteger();
616    private final MoveCallbacks mMoveCallbacks;
617
618    private final OnPermissionChangeListeners mOnPermissionChangeListeners;
619
620    // Cache of users who need badging.
621    SparseBooleanArray mUserNeedsBadging = new SparseBooleanArray();
622
623    /** Token for keys in mPendingVerification. */
624    private int mPendingVerificationToken = 0;
625
626    volatile boolean mSystemReady;
627    volatile boolean mSafeMode;
628    volatile boolean mHasSystemUidErrors;
629
630    ApplicationInfo mAndroidApplication;
631    final ActivityInfo mResolveActivity = new ActivityInfo();
632    final ResolveInfo mResolveInfo = new ResolveInfo();
633    ComponentName mResolveComponentName;
634    PackageParser.Package mPlatformPackage;
635    ComponentName mCustomResolverComponentName;
636
637    boolean mResolverReplaced = false;
638
639    private final @Nullable ComponentName mIntentFilterVerifierComponent;
640    private final @Nullable IntentFilterVerifier<ActivityIntentInfo> mIntentFilterVerifier;
641
642    private int mIntentFilterVerificationToken = 0;
643
644    /** Component that knows whether or not an ephemeral application exists */
645    final ComponentName mEphemeralResolverComponent;
646    /** The service connection to the ephemeral resolver */
647    final EphemeralResolverConnection mEphemeralResolverConnection;
648
649    /** Component used to install ephemeral applications */
650    final ComponentName mEphemeralInstallerComponent;
651    final ActivityInfo mEphemeralInstallerActivity = new ActivityInfo();
652    final ResolveInfo mEphemeralInstallerInfo = new ResolveInfo();
653
654    final SparseArray<IntentFilterVerificationState> mIntentFilterVerificationStates
655            = new SparseArray<IntentFilterVerificationState>();
656
657    final DefaultPermissionGrantPolicy mDefaultPermissionPolicy =
658            new DefaultPermissionGrantPolicy(this);
659
660    // List of packages names to keep cached, even if they are uninstalled for all users
661    private List<String> mKeepUninstalledPackages;
662
663    private static class IFVerificationParams {
664        PackageParser.Package pkg;
665        boolean replacing;
666        int userId;
667        int verifierUid;
668
669        public IFVerificationParams(PackageParser.Package _pkg, boolean _replacing,
670                int _userId, int _verifierUid) {
671            pkg = _pkg;
672            replacing = _replacing;
673            userId = _userId;
674            replacing = _replacing;
675            verifierUid = _verifierUid;
676        }
677    }
678
679    private interface IntentFilterVerifier<T extends IntentFilter> {
680        boolean addOneIntentFilterVerification(int verifierId, int userId, int verificationId,
681                                               T filter, String packageName);
682        void startVerifications(int userId);
683        void receiveVerificationResponse(int verificationId);
684    }
685
686    private class IntentVerifierProxy implements IntentFilterVerifier<ActivityIntentInfo> {
687        private Context mContext;
688        private ComponentName mIntentFilterVerifierComponent;
689        private ArrayList<Integer> mCurrentIntentFilterVerifications = new ArrayList<Integer>();
690
691        public IntentVerifierProxy(Context context, ComponentName verifierComponent) {
692            mContext = context;
693            mIntentFilterVerifierComponent = verifierComponent;
694        }
695
696        private String getDefaultScheme() {
697            return IntentFilter.SCHEME_HTTPS;
698        }
699
700        @Override
701        public void startVerifications(int userId) {
702            // Launch verifications requests
703            int count = mCurrentIntentFilterVerifications.size();
704            for (int n=0; n<count; n++) {
705                int verificationId = mCurrentIntentFilterVerifications.get(n);
706                final IntentFilterVerificationState ivs =
707                        mIntentFilterVerificationStates.get(verificationId);
708
709                String packageName = ivs.getPackageName();
710
711                ArrayList<PackageParser.ActivityIntentInfo> filters = ivs.getFilters();
712                final int filterCount = filters.size();
713                ArraySet<String> domainsSet = new ArraySet<>();
714                for (int m=0; m<filterCount; m++) {
715                    PackageParser.ActivityIntentInfo filter = filters.get(m);
716                    domainsSet.addAll(filter.getHostsList());
717                }
718                ArrayList<String> domainsList = new ArrayList<>(domainsSet);
719                synchronized (mPackages) {
720                    if (mSettings.createIntentFilterVerificationIfNeededLPw(
721                            packageName, domainsList) != null) {
722                        scheduleWriteSettingsLocked();
723                    }
724                }
725                sendVerificationRequest(userId, verificationId, ivs);
726            }
727            mCurrentIntentFilterVerifications.clear();
728        }
729
730        private void sendVerificationRequest(int userId, int verificationId,
731                IntentFilterVerificationState ivs) {
732
733            Intent verificationIntent = new Intent(Intent.ACTION_INTENT_FILTER_NEEDS_VERIFICATION);
734            verificationIntent.putExtra(
735                    PackageManager.EXTRA_INTENT_FILTER_VERIFICATION_ID,
736                    verificationId);
737            verificationIntent.putExtra(
738                    PackageManager.EXTRA_INTENT_FILTER_VERIFICATION_URI_SCHEME,
739                    getDefaultScheme());
740            verificationIntent.putExtra(
741                    PackageManager.EXTRA_INTENT_FILTER_VERIFICATION_HOSTS,
742                    ivs.getHostsString());
743            verificationIntent.putExtra(
744                    PackageManager.EXTRA_INTENT_FILTER_VERIFICATION_PACKAGE_NAME,
745                    ivs.getPackageName());
746            verificationIntent.setComponent(mIntentFilterVerifierComponent);
747            verificationIntent.addFlags(Intent.FLAG_RECEIVER_FOREGROUND);
748
749            UserHandle user = new UserHandle(userId);
750            mContext.sendBroadcastAsUser(verificationIntent, user);
751            if (DEBUG_DOMAIN_VERIFICATION) Slog.d(TAG,
752                    "Sending IntentFilter verification broadcast");
753        }
754
755        public void receiveVerificationResponse(int verificationId) {
756            IntentFilterVerificationState ivs = mIntentFilterVerificationStates.get(verificationId);
757
758            final boolean verified = ivs.isVerified();
759
760            ArrayList<PackageParser.ActivityIntentInfo> filters = ivs.getFilters();
761            final int count = filters.size();
762            if (DEBUG_DOMAIN_VERIFICATION) {
763                Slog.i(TAG, "Received verification response " + verificationId
764                        + " for " + count + " filters, verified=" + verified);
765            }
766            for (int n=0; n<count; n++) {
767                PackageParser.ActivityIntentInfo filter = filters.get(n);
768                filter.setVerified(verified);
769
770                if (DEBUG_DOMAIN_VERIFICATION) Slog.d(TAG, "IntentFilter " + filter.toString()
771                        + " verified with result:" + verified + " and hosts:"
772                        + ivs.getHostsString());
773            }
774
775            mIntentFilterVerificationStates.remove(verificationId);
776
777            final String packageName = ivs.getPackageName();
778            IntentFilterVerificationInfo ivi = null;
779
780            synchronized (mPackages) {
781                ivi = mSettings.getIntentFilterVerificationLPr(packageName);
782            }
783            if (ivi == null) {
784                Slog.w(TAG, "IntentFilterVerificationInfo not found for verificationId:"
785                        + verificationId + " packageName:" + packageName);
786                return;
787            }
788            if (DEBUG_DOMAIN_VERIFICATION) Slog.d(TAG,
789                    "Updating IntentFilterVerificationInfo for package " + packageName
790                            +" verificationId:" + verificationId);
791
792            synchronized (mPackages) {
793                if (verified) {
794                    ivi.setStatus(INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_ALWAYS);
795                } else {
796                    ivi.setStatus(INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_ASK);
797                }
798                scheduleWriteSettingsLocked();
799
800                final int userId = ivs.getUserId();
801                if (userId != UserHandle.USER_ALL) {
802                    final int userStatus =
803                            mSettings.getIntentFilterVerificationStatusLPr(packageName, userId);
804
805                    int updatedStatus = INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_UNDEFINED;
806                    boolean needUpdate = false;
807
808                    // We cannot override the STATUS_ALWAYS / STATUS_NEVER states if they have
809                    // already been set by the User thru the Disambiguation dialog
810                    switch (userStatus) {
811                        case INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_UNDEFINED:
812                            if (verified) {
813                                updatedStatus = INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_ALWAYS;
814                            } else {
815                                updatedStatus = INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_ASK;
816                            }
817                            needUpdate = true;
818                            break;
819
820                        case INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_ASK:
821                            if (verified) {
822                                updatedStatus = INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_ALWAYS;
823                                needUpdate = true;
824                            }
825                            break;
826
827                        default:
828                            // Nothing to do
829                    }
830
831                    if (needUpdate) {
832                        mSettings.updateIntentFilterVerificationStatusLPw(
833                                packageName, updatedStatus, userId);
834                        scheduleWritePackageRestrictionsLocked(userId);
835                    }
836                }
837            }
838        }
839
840        @Override
841        public boolean addOneIntentFilterVerification(int verifierUid, int userId, int verificationId,
842                    ActivityIntentInfo filter, String packageName) {
843            if (!hasValidDomains(filter)) {
844                return false;
845            }
846            IntentFilterVerificationState ivs = mIntentFilterVerificationStates.get(verificationId);
847            if (ivs == null) {
848                ivs = createDomainVerificationState(verifierUid, userId, verificationId,
849                        packageName);
850            }
851            if (DEBUG_DOMAIN_VERIFICATION) {
852                Slog.d(TAG, "Adding verification filter for " + packageName + ": " + filter);
853            }
854            ivs.addFilter(filter);
855            return true;
856        }
857
858        private IntentFilterVerificationState createDomainVerificationState(int verifierUid,
859                int userId, int verificationId, String packageName) {
860            IntentFilterVerificationState ivs = new IntentFilterVerificationState(
861                    verifierUid, userId, packageName);
862            ivs.setPendingState();
863            synchronized (mPackages) {
864                mIntentFilterVerificationStates.append(verificationId, ivs);
865                mCurrentIntentFilterVerifications.add(verificationId);
866            }
867            return ivs;
868        }
869    }
870
871    private static boolean hasValidDomains(ActivityIntentInfo filter) {
872        return filter.hasCategory(Intent.CATEGORY_BROWSABLE)
873                && (filter.hasDataScheme(IntentFilter.SCHEME_HTTP) ||
874                        filter.hasDataScheme(IntentFilter.SCHEME_HTTPS));
875    }
876
877    // Set of pending broadcasts for aggregating enable/disable of components.
878    static class PendingPackageBroadcasts {
879        // for each user id, a map of <package name -> components within that package>
880        final SparseArray<ArrayMap<String, ArrayList<String>>> mUidMap;
881
882        public PendingPackageBroadcasts() {
883            mUidMap = new SparseArray<ArrayMap<String, ArrayList<String>>>(2);
884        }
885
886        public ArrayList<String> get(int userId, String packageName) {
887            ArrayMap<String, ArrayList<String>> packages = getOrAllocate(userId);
888            return packages.get(packageName);
889        }
890
891        public void put(int userId, String packageName, ArrayList<String> components) {
892            ArrayMap<String, ArrayList<String>> packages = getOrAllocate(userId);
893            packages.put(packageName, components);
894        }
895
896        public void remove(int userId, String packageName) {
897            ArrayMap<String, ArrayList<String>> packages = mUidMap.get(userId);
898            if (packages != null) {
899                packages.remove(packageName);
900            }
901        }
902
903        public void remove(int userId) {
904            mUidMap.remove(userId);
905        }
906
907        public int userIdCount() {
908            return mUidMap.size();
909        }
910
911        public int userIdAt(int n) {
912            return mUidMap.keyAt(n);
913        }
914
915        public ArrayMap<String, ArrayList<String>> packagesForUserId(int userId) {
916            return mUidMap.get(userId);
917        }
918
919        public int size() {
920            // total number of pending broadcast entries across all userIds
921            int num = 0;
922            for (int i = 0; i< mUidMap.size(); i++) {
923                num += mUidMap.valueAt(i).size();
924            }
925            return num;
926        }
927
928        public void clear() {
929            mUidMap.clear();
930        }
931
932        private ArrayMap<String, ArrayList<String>> getOrAllocate(int userId) {
933            ArrayMap<String, ArrayList<String>> map = mUidMap.get(userId);
934            if (map == null) {
935                map = new ArrayMap<String, ArrayList<String>>();
936                mUidMap.put(userId, map);
937            }
938            return map;
939        }
940    }
941    final PendingPackageBroadcasts mPendingBroadcasts = new PendingPackageBroadcasts();
942
943    // Service Connection to remote media container service to copy
944    // package uri's from external media onto secure containers
945    // or internal storage.
946    private IMediaContainerService mContainerService = null;
947
948    static final int SEND_PENDING_BROADCAST = 1;
949    static final int MCS_BOUND = 3;
950    static final int END_COPY = 4;
951    static final int INIT_COPY = 5;
952    static final int MCS_UNBIND = 6;
953    static final int START_CLEANING_PACKAGE = 7;
954    static final int FIND_INSTALL_LOC = 8;
955    static final int POST_INSTALL = 9;
956    static final int MCS_RECONNECT = 10;
957    static final int MCS_GIVE_UP = 11;
958    static final int UPDATED_MEDIA_STATUS = 12;
959    static final int WRITE_SETTINGS = 13;
960    static final int WRITE_PACKAGE_RESTRICTIONS = 14;
961    static final int PACKAGE_VERIFIED = 15;
962    static final int CHECK_PENDING_VERIFICATION = 16;
963    static final int START_INTENT_FILTER_VERIFICATIONS = 17;
964    static final int INTENT_FILTER_VERIFIED = 18;
965
966    static final int WRITE_SETTINGS_DELAY = 10*1000;  // 10 seconds
967
968    // Delay time in millisecs
969    static final int BROADCAST_DELAY = 10 * 1000;
970
971    static UserManagerService sUserManager;
972
973    // Stores a list of users whose package restrictions file needs to be updated
974    private ArraySet<Integer> mDirtyUsers = new ArraySet<Integer>();
975
976    final private DefaultContainerConnection mDefContainerConn =
977            new DefaultContainerConnection();
978    class DefaultContainerConnection implements ServiceConnection {
979        public void onServiceConnected(ComponentName name, IBinder service) {
980            if (DEBUG_SD_INSTALL) Log.i(TAG, "onServiceConnected");
981            IMediaContainerService imcs =
982                IMediaContainerService.Stub.asInterface(service);
983            mHandler.sendMessage(mHandler.obtainMessage(MCS_BOUND, imcs));
984        }
985
986        public void onServiceDisconnected(ComponentName name) {
987            if (DEBUG_SD_INSTALL) Log.i(TAG, "onServiceDisconnected");
988        }
989    }
990
991    // Recordkeeping of restore-after-install operations that are currently in flight
992    // between the Package Manager and the Backup Manager
993    static class PostInstallData {
994        public InstallArgs args;
995        public PackageInstalledInfo res;
996
997        PostInstallData(InstallArgs _a, PackageInstalledInfo _r) {
998            args = _a;
999            res = _r;
1000        }
1001    }
1002
1003    final SparseArray<PostInstallData> mRunningInstalls = new SparseArray<PostInstallData>();
1004    int mNextInstallToken = 1;  // nonzero; will be wrapped back to 1 when ++ overflows
1005
1006    // XML tags for backup/restore of various bits of state
1007    private static final String TAG_PREFERRED_BACKUP = "pa";
1008    private static final String TAG_DEFAULT_APPS = "da";
1009    private static final String TAG_INTENT_FILTER_VERIFICATION = "iv";
1010
1011    private static final String TAG_PERMISSION_BACKUP = "perm-grant-backup";
1012    private static final String TAG_ALL_GRANTS = "rt-grants";
1013    private static final String TAG_GRANT = "grant";
1014    private static final String ATTR_PACKAGE_NAME = "pkg";
1015
1016    private static final String TAG_PERMISSION = "perm";
1017    private static final String ATTR_PERMISSION_NAME = "name";
1018    private static final String ATTR_IS_GRANTED = "g";
1019    private static final String ATTR_USER_SET = "set";
1020    private static final String ATTR_USER_FIXED = "fixed";
1021    private static final String ATTR_REVOKE_ON_UPGRADE = "rou";
1022
1023    // System/policy permission grants are not backed up
1024    private static final int SYSTEM_RUNTIME_GRANT_MASK =
1025            FLAG_PERMISSION_POLICY_FIXED
1026            | FLAG_PERMISSION_SYSTEM_FIXED
1027            | FLAG_PERMISSION_GRANTED_BY_DEFAULT;
1028
1029    // And we back up these user-adjusted states
1030    private static final int USER_RUNTIME_GRANT_MASK =
1031            FLAG_PERMISSION_USER_SET
1032            | FLAG_PERMISSION_USER_FIXED
1033            | FLAG_PERMISSION_REVOKE_ON_UPGRADE;
1034
1035    final @Nullable String mRequiredVerifierPackage;
1036    final @Nullable String mRequiredInstallerPackage;
1037
1038    private final PackageUsage mPackageUsage = new PackageUsage();
1039
1040    private class PackageUsage {
1041        private static final int WRITE_INTERVAL
1042            = (DEBUG_DEXOPT) ? 0 : 30*60*1000; // 30m in ms
1043
1044        private final Object mFileLock = new Object();
1045        private final AtomicLong mLastWritten = new AtomicLong(0);
1046        private final AtomicBoolean mBackgroundWriteRunning = new AtomicBoolean(false);
1047
1048        private boolean mIsHistoricalPackageUsageAvailable = true;
1049
1050        boolean isHistoricalPackageUsageAvailable() {
1051            return mIsHistoricalPackageUsageAvailable;
1052        }
1053
1054        void write(boolean force) {
1055            if (force) {
1056                writeInternal();
1057                return;
1058            }
1059            if (SystemClock.elapsedRealtime() - mLastWritten.get() < WRITE_INTERVAL
1060                && !DEBUG_DEXOPT) {
1061                return;
1062            }
1063            if (mBackgroundWriteRunning.compareAndSet(false, true)) {
1064                new Thread("PackageUsage_DiskWriter") {
1065                    @Override
1066                    public void run() {
1067                        try {
1068                            writeInternal();
1069                        } finally {
1070                            mBackgroundWriteRunning.set(false);
1071                        }
1072                    }
1073                }.start();
1074            }
1075        }
1076
1077        private void writeInternal() {
1078            synchronized (mPackages) {
1079                synchronized (mFileLock) {
1080                    AtomicFile file = getFile();
1081                    FileOutputStream f = null;
1082                    try {
1083                        f = file.startWrite();
1084                        BufferedOutputStream out = new BufferedOutputStream(f);
1085                        FileUtils.setPermissions(file.getBaseFile().getPath(), 0640, SYSTEM_UID, PACKAGE_INFO_GID);
1086                        StringBuilder sb = new StringBuilder();
1087                        for (PackageParser.Package pkg : mPackages.values()) {
1088                            if (pkg.mLastPackageUsageTimeInMills == 0) {
1089                                continue;
1090                            }
1091                            sb.setLength(0);
1092                            sb.append(pkg.packageName);
1093                            sb.append(' ');
1094                            sb.append((long)pkg.mLastPackageUsageTimeInMills);
1095                            sb.append('\n');
1096                            out.write(sb.toString().getBytes(StandardCharsets.US_ASCII));
1097                        }
1098                        out.flush();
1099                        file.finishWrite(f);
1100                    } catch (IOException e) {
1101                        if (f != null) {
1102                            file.failWrite(f);
1103                        }
1104                        Log.e(TAG, "Failed to write package usage times", e);
1105                    }
1106                }
1107            }
1108            mLastWritten.set(SystemClock.elapsedRealtime());
1109        }
1110
1111        void readLP() {
1112            synchronized (mFileLock) {
1113                AtomicFile file = getFile();
1114                BufferedInputStream in = null;
1115                try {
1116                    in = new BufferedInputStream(file.openRead());
1117                    StringBuffer sb = new StringBuffer();
1118                    while (true) {
1119                        String packageName = readToken(in, sb, ' ');
1120                        if (packageName == null) {
1121                            break;
1122                        }
1123                        String timeInMillisString = readToken(in, sb, '\n');
1124                        if (timeInMillisString == null) {
1125                            throw new IOException("Failed to find last usage time for package "
1126                                                  + packageName);
1127                        }
1128                        PackageParser.Package pkg = mPackages.get(packageName);
1129                        if (pkg == null) {
1130                            continue;
1131                        }
1132                        long timeInMillis;
1133                        try {
1134                            timeInMillis = Long.parseLong(timeInMillisString);
1135                        } catch (NumberFormatException e) {
1136                            throw new IOException("Failed to parse " + timeInMillisString
1137                                                  + " as a long.", e);
1138                        }
1139                        pkg.mLastPackageUsageTimeInMills = timeInMillis;
1140                    }
1141                } catch (FileNotFoundException expected) {
1142                    mIsHistoricalPackageUsageAvailable = false;
1143                } catch (IOException e) {
1144                    Log.w(TAG, "Failed to read package usage times", e);
1145                } finally {
1146                    IoUtils.closeQuietly(in);
1147                }
1148            }
1149            mLastWritten.set(SystemClock.elapsedRealtime());
1150        }
1151
1152        private String readToken(InputStream in, StringBuffer sb, char endOfToken)
1153                throws IOException {
1154            sb.setLength(0);
1155            while (true) {
1156                int ch = in.read();
1157                if (ch == -1) {
1158                    if (sb.length() == 0) {
1159                        return null;
1160                    }
1161                    throw new IOException("Unexpected EOF");
1162                }
1163                if (ch == endOfToken) {
1164                    return sb.toString();
1165                }
1166                sb.append((char)ch);
1167            }
1168        }
1169
1170        private AtomicFile getFile() {
1171            File dataDir = Environment.getDataDirectory();
1172            File systemDir = new File(dataDir, "system");
1173            File fname = new File(systemDir, "package-usage.list");
1174            return new AtomicFile(fname);
1175        }
1176    }
1177
1178    class PackageHandler extends Handler {
1179        private boolean mBound = false;
1180        final ArrayList<HandlerParams> mPendingInstalls =
1181            new ArrayList<HandlerParams>();
1182
1183        private boolean connectToService() {
1184            if (DEBUG_SD_INSTALL) Log.i(TAG, "Trying to bind to" +
1185                    " DefaultContainerService");
1186            Intent service = new Intent().setComponent(DEFAULT_CONTAINER_COMPONENT);
1187            Process.setThreadPriority(Process.THREAD_PRIORITY_DEFAULT);
1188            if (mContext.bindServiceAsUser(service, mDefContainerConn,
1189                    Context.BIND_AUTO_CREATE, UserHandle.SYSTEM)) {
1190                Process.setThreadPriority(Process.THREAD_PRIORITY_BACKGROUND);
1191                mBound = true;
1192                return true;
1193            }
1194            Process.setThreadPriority(Process.THREAD_PRIORITY_BACKGROUND);
1195            return false;
1196        }
1197
1198        private void disconnectService() {
1199            mContainerService = null;
1200            mBound = false;
1201            Process.setThreadPriority(Process.THREAD_PRIORITY_DEFAULT);
1202            mContext.unbindService(mDefContainerConn);
1203            Process.setThreadPriority(Process.THREAD_PRIORITY_BACKGROUND);
1204        }
1205
1206        PackageHandler(Looper looper) {
1207            super(looper);
1208        }
1209
1210        public void handleMessage(Message msg) {
1211            try {
1212                doHandleMessage(msg);
1213            } finally {
1214                Process.setThreadPriority(Process.THREAD_PRIORITY_BACKGROUND);
1215            }
1216        }
1217
1218        void doHandleMessage(Message msg) {
1219            switch (msg.what) {
1220                case INIT_COPY: {
1221                    HandlerParams params = (HandlerParams) msg.obj;
1222                    int idx = mPendingInstalls.size();
1223                    if (DEBUG_INSTALL) Slog.i(TAG, "init_copy idx=" + idx + ": " + params);
1224                    // If a bind was already initiated we dont really
1225                    // need to do anything. The pending install
1226                    // will be processed later on.
1227                    if (!mBound) {
1228                        Trace.asyncTraceBegin(TRACE_TAG_PACKAGE_MANAGER, "bindingMCS",
1229                                System.identityHashCode(mHandler));
1230                        // If this is the only one pending we might
1231                        // have to bind to the service again.
1232                        if (!connectToService()) {
1233                            Slog.e(TAG, "Failed to bind to media container service");
1234                            params.serviceError();
1235                            Trace.asyncTraceEnd(TRACE_TAG_PACKAGE_MANAGER, "bindingMCS",
1236                                    System.identityHashCode(mHandler));
1237                            if (params.traceMethod != null) {
1238                                Trace.asyncTraceEnd(TRACE_TAG_PACKAGE_MANAGER, params.traceMethod,
1239                                        params.traceCookie);
1240                            }
1241                            return;
1242                        } else {
1243                            // Once we bind to the service, the first
1244                            // pending request will be processed.
1245                            mPendingInstalls.add(idx, params);
1246                        }
1247                    } else {
1248                        mPendingInstalls.add(idx, params);
1249                        // Already bound to the service. Just make
1250                        // sure we trigger off processing the first request.
1251                        if (idx == 0) {
1252                            mHandler.sendEmptyMessage(MCS_BOUND);
1253                        }
1254                    }
1255                    break;
1256                }
1257                case MCS_BOUND: {
1258                    if (DEBUG_INSTALL) Slog.i(TAG, "mcs_bound");
1259                    if (msg.obj != null) {
1260                        mContainerService = (IMediaContainerService) msg.obj;
1261                        Trace.asyncTraceEnd(TRACE_TAG_PACKAGE_MANAGER, "bindingMCS",
1262                                System.identityHashCode(mHandler));
1263                    }
1264                    if (mContainerService == null) {
1265                        if (!mBound) {
1266                            // Something seriously wrong since we are not bound and we are not
1267                            // waiting for connection. Bail out.
1268                            Slog.e(TAG, "Cannot bind to media container service");
1269                            for (HandlerParams params : mPendingInstalls) {
1270                                // Indicate service bind error
1271                                params.serviceError();
1272                                Trace.asyncTraceEnd(TRACE_TAG_PACKAGE_MANAGER, "queueInstall",
1273                                        System.identityHashCode(params));
1274                                if (params.traceMethod != null) {
1275                                    Trace.asyncTraceEnd(TRACE_TAG_PACKAGE_MANAGER,
1276                                            params.traceMethod, params.traceCookie);
1277                                }
1278                                return;
1279                            }
1280                            mPendingInstalls.clear();
1281                        } else {
1282                            Slog.w(TAG, "Waiting to connect to media container service");
1283                        }
1284                    } else if (mPendingInstalls.size() > 0) {
1285                        HandlerParams params = mPendingInstalls.get(0);
1286                        if (params != null) {
1287                            Trace.asyncTraceEnd(TRACE_TAG_PACKAGE_MANAGER, "queueInstall",
1288                                    System.identityHashCode(params));
1289                            Trace.traceBegin(TRACE_TAG_PACKAGE_MANAGER, "startCopy");
1290                            if (params.startCopy()) {
1291                                // We are done...  look for more work or to
1292                                // go idle.
1293                                if (DEBUG_SD_INSTALL) Log.i(TAG,
1294                                        "Checking for more work or unbind...");
1295                                // Delete pending install
1296                                if (mPendingInstalls.size() > 0) {
1297                                    mPendingInstalls.remove(0);
1298                                }
1299                                if (mPendingInstalls.size() == 0) {
1300                                    if (mBound) {
1301                                        if (DEBUG_SD_INSTALL) Log.i(TAG,
1302                                                "Posting delayed MCS_UNBIND");
1303                                        removeMessages(MCS_UNBIND);
1304                                        Message ubmsg = obtainMessage(MCS_UNBIND);
1305                                        // Unbind after a little delay, to avoid
1306                                        // continual thrashing.
1307                                        sendMessageDelayed(ubmsg, 10000);
1308                                    }
1309                                } else {
1310                                    // There are more pending requests in queue.
1311                                    // Just post MCS_BOUND message to trigger processing
1312                                    // of next pending install.
1313                                    if (DEBUG_SD_INSTALL) Log.i(TAG,
1314                                            "Posting MCS_BOUND for next work");
1315                                    mHandler.sendEmptyMessage(MCS_BOUND);
1316                                }
1317                            }
1318                            Trace.traceEnd(TRACE_TAG_PACKAGE_MANAGER);
1319                        }
1320                    } else {
1321                        // Should never happen ideally.
1322                        Slog.w(TAG, "Empty queue");
1323                    }
1324                    break;
1325                }
1326                case MCS_RECONNECT: {
1327                    if (DEBUG_INSTALL) Slog.i(TAG, "mcs_reconnect");
1328                    if (mPendingInstalls.size() > 0) {
1329                        if (mBound) {
1330                            disconnectService();
1331                        }
1332                        if (!connectToService()) {
1333                            Slog.e(TAG, "Failed to bind to media container service");
1334                            for (HandlerParams params : mPendingInstalls) {
1335                                // Indicate service bind error
1336                                params.serviceError();
1337                                Trace.asyncTraceEnd(TRACE_TAG_PACKAGE_MANAGER, "queueInstall",
1338                                        System.identityHashCode(params));
1339                            }
1340                            mPendingInstalls.clear();
1341                        }
1342                    }
1343                    break;
1344                }
1345                case MCS_UNBIND: {
1346                    // If there is no actual work left, then time to unbind.
1347                    if (DEBUG_INSTALL) Slog.i(TAG, "mcs_unbind");
1348
1349                    if (mPendingInstalls.size() == 0 && mPendingVerification.size() == 0) {
1350                        if (mBound) {
1351                            if (DEBUG_INSTALL) Slog.i(TAG, "calling disconnectService()");
1352
1353                            disconnectService();
1354                        }
1355                    } else if (mPendingInstalls.size() > 0) {
1356                        // There are more pending requests in queue.
1357                        // Just post MCS_BOUND message to trigger processing
1358                        // of next pending install.
1359                        mHandler.sendEmptyMessage(MCS_BOUND);
1360                    }
1361
1362                    break;
1363                }
1364                case MCS_GIVE_UP: {
1365                    if (DEBUG_INSTALL) Slog.i(TAG, "mcs_giveup too many retries");
1366                    HandlerParams params = mPendingInstalls.remove(0);
1367                    Trace.asyncTraceEnd(TRACE_TAG_PACKAGE_MANAGER, "queueInstall",
1368                            System.identityHashCode(params));
1369                    break;
1370                }
1371                case SEND_PENDING_BROADCAST: {
1372                    String packages[];
1373                    ArrayList<String> components[];
1374                    int size = 0;
1375                    int uids[];
1376                    Process.setThreadPriority(Process.THREAD_PRIORITY_DEFAULT);
1377                    synchronized (mPackages) {
1378                        if (mPendingBroadcasts == null) {
1379                            return;
1380                        }
1381                        size = mPendingBroadcasts.size();
1382                        if (size <= 0) {
1383                            // Nothing to be done. Just return
1384                            return;
1385                        }
1386                        packages = new String[size];
1387                        components = new ArrayList[size];
1388                        uids = new int[size];
1389                        int i = 0;  // filling out the above arrays
1390
1391                        for (int n = 0; n < mPendingBroadcasts.userIdCount(); n++) {
1392                            int packageUserId = mPendingBroadcasts.userIdAt(n);
1393                            Iterator<Map.Entry<String, ArrayList<String>>> it
1394                                    = mPendingBroadcasts.packagesForUserId(packageUserId)
1395                                            .entrySet().iterator();
1396                            while (it.hasNext() && i < size) {
1397                                Map.Entry<String, ArrayList<String>> ent = it.next();
1398                                packages[i] = ent.getKey();
1399                                components[i] = ent.getValue();
1400                                PackageSetting ps = mSettings.mPackages.get(ent.getKey());
1401                                uids[i] = (ps != null)
1402                                        ? UserHandle.getUid(packageUserId, ps.appId)
1403                                        : -1;
1404                                i++;
1405                            }
1406                        }
1407                        size = i;
1408                        mPendingBroadcasts.clear();
1409                    }
1410                    // Send broadcasts
1411                    for (int i = 0; i < size; i++) {
1412                        sendPackageChangedBroadcast(packages[i], true, components[i], uids[i]);
1413                    }
1414                    Process.setThreadPriority(Process.THREAD_PRIORITY_BACKGROUND);
1415                    break;
1416                }
1417                case START_CLEANING_PACKAGE: {
1418                    Process.setThreadPriority(Process.THREAD_PRIORITY_DEFAULT);
1419                    final String packageName = (String)msg.obj;
1420                    final int userId = msg.arg1;
1421                    final boolean andCode = msg.arg2 != 0;
1422                    synchronized (mPackages) {
1423                        if (userId == UserHandle.USER_ALL) {
1424                            int[] users = sUserManager.getUserIds();
1425                            for (int user : users) {
1426                                mSettings.addPackageToCleanLPw(
1427                                        new PackageCleanItem(user, packageName, andCode));
1428                            }
1429                        } else {
1430                            mSettings.addPackageToCleanLPw(
1431                                    new PackageCleanItem(userId, packageName, andCode));
1432                        }
1433                    }
1434                    Process.setThreadPriority(Process.THREAD_PRIORITY_BACKGROUND);
1435                    startCleaningPackages();
1436                } break;
1437                case POST_INSTALL: {
1438                    if (DEBUG_INSTALL) Log.v(TAG, "Handling post-install for " + msg.arg1);
1439
1440                    PostInstallData data = mRunningInstalls.get(msg.arg1);
1441                    mRunningInstalls.delete(msg.arg1);
1442
1443                    if (data != null) {
1444                        InstallArgs args = data.args;
1445                        PackageInstalledInfo parentRes = data.res;
1446
1447                        final boolean grantPermissions = (args.installFlags
1448                                & PackageManager.INSTALL_GRANT_RUNTIME_PERMISSIONS) != 0;
1449                        final boolean killApp = (args.installFlags
1450                                & PackageManager.INSTALL_DONT_KILL_APP) == 0;
1451                        final String[] grantedPermissions = args.installGrantPermissions;
1452
1453                        // Handle the parent package
1454                        handlePackagePostInstall(parentRes, grantPermissions, killApp,
1455                                grantedPermissions, args.observer);
1456
1457                        // Handle the child packages
1458                        final int childCount = (parentRes.addedChildPackages != null)
1459                                ? parentRes.addedChildPackages.size() : 0;
1460                        for (int i = 0; i < childCount; i++) {
1461                            PackageInstalledInfo childRes = parentRes.addedChildPackages.valueAt(i);
1462                            handlePackagePostInstall(childRes, grantPermissions, killApp,
1463                                    grantedPermissions, args.observer);
1464                        }
1465
1466                        // Log tracing if needed
1467                        if (args.traceMethod != null) {
1468                            Trace.asyncTraceEnd(TRACE_TAG_PACKAGE_MANAGER, args.traceMethod,
1469                                    args.traceCookie);
1470                        }
1471                    } else {
1472                        Slog.e(TAG, "Bogus post-install token " + msg.arg1);
1473                    }
1474
1475                    Trace.asyncTraceEnd(TRACE_TAG_PACKAGE_MANAGER, "postInstall", msg.arg1);
1476                } break;
1477                case UPDATED_MEDIA_STATUS: {
1478                    if (DEBUG_SD_INSTALL) Log.i(TAG, "Got message UPDATED_MEDIA_STATUS");
1479                    boolean reportStatus = msg.arg1 == 1;
1480                    boolean doGc = msg.arg2 == 1;
1481                    if (DEBUG_SD_INSTALL) Log.i(TAG, "reportStatus=" + reportStatus + ", doGc = " + doGc);
1482                    if (doGc) {
1483                        // Force a gc to clear up stale containers.
1484                        Runtime.getRuntime().gc();
1485                    }
1486                    if (msg.obj != null) {
1487                        @SuppressWarnings("unchecked")
1488                        Set<AsecInstallArgs> args = (Set<AsecInstallArgs>) msg.obj;
1489                        if (DEBUG_SD_INSTALL) Log.i(TAG, "Unloading all containers");
1490                        // Unload containers
1491                        unloadAllContainers(args);
1492                    }
1493                    if (reportStatus) {
1494                        try {
1495                            if (DEBUG_SD_INSTALL) Log.i(TAG, "Invoking MountService call back");
1496                            PackageHelper.getMountService().finishMediaUpdate();
1497                        } catch (RemoteException e) {
1498                            Log.e(TAG, "MountService not running?");
1499                        }
1500                    }
1501                } break;
1502                case WRITE_SETTINGS: {
1503                    Process.setThreadPriority(Process.THREAD_PRIORITY_DEFAULT);
1504                    synchronized (mPackages) {
1505                        removeMessages(WRITE_SETTINGS);
1506                        removeMessages(WRITE_PACKAGE_RESTRICTIONS);
1507                        mSettings.writeLPr();
1508                        mDirtyUsers.clear();
1509                    }
1510                    Process.setThreadPriority(Process.THREAD_PRIORITY_BACKGROUND);
1511                } break;
1512                case WRITE_PACKAGE_RESTRICTIONS: {
1513                    Process.setThreadPriority(Process.THREAD_PRIORITY_DEFAULT);
1514                    synchronized (mPackages) {
1515                        removeMessages(WRITE_PACKAGE_RESTRICTIONS);
1516                        for (int userId : mDirtyUsers) {
1517                            mSettings.writePackageRestrictionsLPr(userId);
1518                        }
1519                        mDirtyUsers.clear();
1520                    }
1521                    Process.setThreadPriority(Process.THREAD_PRIORITY_BACKGROUND);
1522                } break;
1523                case CHECK_PENDING_VERIFICATION: {
1524                    final int verificationId = msg.arg1;
1525                    final PackageVerificationState state = mPendingVerification.get(verificationId);
1526
1527                    if ((state != null) && !state.timeoutExtended()) {
1528                        final InstallArgs args = state.getInstallArgs();
1529                        final Uri originUri = Uri.fromFile(args.origin.resolvedFile);
1530
1531                        Slog.i(TAG, "Verification timed out for " + originUri);
1532                        mPendingVerification.remove(verificationId);
1533
1534                        int ret = PackageManager.INSTALL_FAILED_VERIFICATION_FAILURE;
1535
1536                        if (getDefaultVerificationResponse() == PackageManager.VERIFICATION_ALLOW) {
1537                            Slog.i(TAG, "Continuing with installation of " + originUri);
1538                            state.setVerifierResponse(Binder.getCallingUid(),
1539                                    PackageManager.VERIFICATION_ALLOW_WITHOUT_SUFFICIENT);
1540                            broadcastPackageVerified(verificationId, originUri,
1541                                    PackageManager.VERIFICATION_ALLOW,
1542                                    state.getInstallArgs().getUser());
1543                            try {
1544                                ret = args.copyApk(mContainerService, true);
1545                            } catch (RemoteException e) {
1546                                Slog.e(TAG, "Could not contact the ContainerService");
1547                            }
1548                        } else {
1549                            broadcastPackageVerified(verificationId, originUri,
1550                                    PackageManager.VERIFICATION_REJECT,
1551                                    state.getInstallArgs().getUser());
1552                        }
1553
1554                        Trace.asyncTraceEnd(
1555                                TRACE_TAG_PACKAGE_MANAGER, "verification", verificationId);
1556
1557                        processPendingInstall(args, ret);
1558                        mHandler.sendEmptyMessage(MCS_UNBIND);
1559                    }
1560                    break;
1561                }
1562                case PACKAGE_VERIFIED: {
1563                    final int verificationId = msg.arg1;
1564
1565                    final PackageVerificationState state = mPendingVerification.get(verificationId);
1566                    if (state == null) {
1567                        Slog.w(TAG, "Invalid verification token " + verificationId + " received");
1568                        break;
1569                    }
1570
1571                    final PackageVerificationResponse response = (PackageVerificationResponse) msg.obj;
1572
1573                    state.setVerifierResponse(response.callerUid, response.code);
1574
1575                    if (state.isVerificationComplete()) {
1576                        mPendingVerification.remove(verificationId);
1577
1578                        final InstallArgs args = state.getInstallArgs();
1579                        final Uri originUri = Uri.fromFile(args.origin.resolvedFile);
1580
1581                        int ret;
1582                        if (state.isInstallAllowed()) {
1583                            ret = PackageManager.INSTALL_FAILED_INTERNAL_ERROR;
1584                            broadcastPackageVerified(verificationId, originUri,
1585                                    response.code, state.getInstallArgs().getUser());
1586                            try {
1587                                ret = args.copyApk(mContainerService, true);
1588                            } catch (RemoteException e) {
1589                                Slog.e(TAG, "Could not contact the ContainerService");
1590                            }
1591                        } else {
1592                            ret = PackageManager.INSTALL_FAILED_VERIFICATION_FAILURE;
1593                        }
1594
1595                        Trace.asyncTraceEnd(
1596                                TRACE_TAG_PACKAGE_MANAGER, "verification", verificationId);
1597
1598                        processPendingInstall(args, ret);
1599                        mHandler.sendEmptyMessage(MCS_UNBIND);
1600                    }
1601
1602                    break;
1603                }
1604                case START_INTENT_FILTER_VERIFICATIONS: {
1605                    IFVerificationParams params = (IFVerificationParams) msg.obj;
1606                    verifyIntentFiltersIfNeeded(params.userId, params.verifierUid,
1607                            params.replacing, params.pkg);
1608                    break;
1609                }
1610                case INTENT_FILTER_VERIFIED: {
1611                    final int verificationId = msg.arg1;
1612
1613                    final IntentFilterVerificationState state = mIntentFilterVerificationStates.get(
1614                            verificationId);
1615                    if (state == null) {
1616                        Slog.w(TAG, "Invalid IntentFilter verification token "
1617                                + verificationId + " received");
1618                        break;
1619                    }
1620
1621                    final int userId = state.getUserId();
1622
1623                    if (DEBUG_DOMAIN_VERIFICATION) Slog.d(TAG,
1624                            "Processing IntentFilter verification with token:"
1625                            + verificationId + " and userId:" + userId);
1626
1627                    final IntentFilterVerificationResponse response =
1628                            (IntentFilterVerificationResponse) msg.obj;
1629
1630                    state.setVerifierResponse(response.callerUid, response.code);
1631
1632                    if (DEBUG_DOMAIN_VERIFICATION) Slog.d(TAG,
1633                            "IntentFilter verification with token:" + verificationId
1634                            + " and userId:" + userId
1635                            + " is settings verifier response with response code:"
1636                            + response.code);
1637
1638                    if (response.code == PackageManager.INTENT_FILTER_VERIFICATION_FAILURE) {
1639                        if (DEBUG_DOMAIN_VERIFICATION) Slog.d(TAG, "Domains failing verification: "
1640                                + response.getFailedDomainsString());
1641                    }
1642
1643                    if (state.isVerificationComplete()) {
1644                        mIntentFilterVerifier.receiveVerificationResponse(verificationId);
1645                    } else {
1646                        if (DEBUG_DOMAIN_VERIFICATION) Slog.d(TAG,
1647                                "IntentFilter verification with token:" + verificationId
1648                                + " was not said to be complete");
1649                    }
1650
1651                    break;
1652                }
1653            }
1654        }
1655    }
1656
1657    private void handlePackagePostInstall(PackageInstalledInfo res, boolean grantPermissions,
1658            boolean killApp, String[] grantedPermissions,
1659            IPackageInstallObserver2 installObserver) {
1660        if (res.returnCode == PackageManager.INSTALL_SUCCEEDED) {
1661            // Send the removed broadcasts
1662            if (res.removedInfo != null) {
1663                res.removedInfo.sendPackageRemovedBroadcasts(killApp);
1664            }
1665
1666            // Now that we successfully installed the package, grant runtime
1667            // permissions if requested before broadcasting the install.
1668            if (grantPermissions && res.pkg.applicationInfo.targetSdkVersion
1669                    >= Build.VERSION_CODES.M) {
1670                grantRequestedRuntimePermissions(res.pkg, res.newUsers, grantedPermissions);
1671            }
1672
1673            final boolean update = res.removedInfo != null
1674                    && res.removedInfo.removedPackage != null;
1675
1676            // If this is the first time we have child packages for a disabled privileged
1677            // app that had no children, we grant requested runtime permissions to the new
1678            // children if the parent on the system image had them already granted.
1679            if (res.pkg.parentPackage != null) {
1680                synchronized (mPackages) {
1681                    grantRuntimePermissionsGrantedToDisabledPrivSysPackageParentLPw(res.pkg);
1682                }
1683            }
1684
1685            synchronized (mPackages) {
1686                mEphemeralApplicationRegistry.onPackageInstalledLPw(res.pkg);
1687            }
1688
1689            final String packageName = res.pkg.applicationInfo.packageName;
1690            Bundle extras = new Bundle(1);
1691            extras.putInt(Intent.EXTRA_UID, res.uid);
1692
1693            // Determine the set of users who are adding this package for
1694            // the first time vs. those who are seeing an update.
1695            int[] firstUsers = EMPTY_INT_ARRAY;
1696            int[] updateUsers = EMPTY_INT_ARRAY;
1697            if (res.origUsers == null || res.origUsers.length == 0) {
1698                firstUsers = res.newUsers;
1699            } else {
1700                for (int newUser : res.newUsers) {
1701                    boolean isNew = true;
1702                    for (int origUser : res.origUsers) {
1703                        if (origUser == newUser) {
1704                            isNew = false;
1705                            break;
1706                        }
1707                    }
1708                    if (isNew) {
1709                        firstUsers = ArrayUtils.appendInt(firstUsers, newUser);
1710                    } else {
1711                        updateUsers = ArrayUtils.appendInt(updateUsers, newUser);
1712                    }
1713                }
1714            }
1715
1716            // Send installed broadcasts if the install/update is not ephemeral
1717            if (!isEphemeral(res.pkg)) {
1718                mProcessLoggingHandler.invalidateProcessLoggingBaseApkHash(res.pkg.baseCodePath);
1719
1720                // Send added for users that see the package for the first time
1721                sendPackageBroadcast(Intent.ACTION_PACKAGE_ADDED, packageName,
1722                        extras, 0 /*flags*/, null /*targetPackage*/,
1723                        null /*finishedReceiver*/, firstUsers);
1724
1725                // Send added for users that don't see the package for the first time
1726                if (update) {
1727                    extras.putBoolean(Intent.EXTRA_REPLACING, true);
1728                }
1729                sendPackageBroadcast(Intent.ACTION_PACKAGE_ADDED, packageName,
1730                        extras, 0 /*flags*/, null /*targetPackage*/,
1731                        null /*finishedReceiver*/, updateUsers);
1732
1733                // Send replaced for users that don't see the package for the first time
1734                if (update) {
1735                    sendPackageBroadcast(Intent.ACTION_PACKAGE_REPLACED,
1736                            packageName, extras, 0 /*flags*/,
1737                            null /*targetPackage*/, null /*finishedReceiver*/,
1738                            updateUsers);
1739                    sendPackageBroadcast(Intent.ACTION_MY_PACKAGE_REPLACED,
1740                            null /*package*/, null /*extras*/, 0 /*flags*/,
1741                            packageName /*targetPackage*/,
1742                            null /*finishedReceiver*/, updateUsers);
1743                }
1744
1745                // Send broadcast package appeared if forward locked/external for all users
1746                // treat asec-hosted packages like removable media on upgrade
1747                if (res.pkg.isForwardLocked() || isExternal(res.pkg)) {
1748                    if (DEBUG_INSTALL) {
1749                        Slog.i(TAG, "upgrading pkg " + res.pkg
1750                                + " is ASEC-hosted -> AVAILABLE");
1751                    }
1752                    final int[] uidArray = new int[]{res.pkg.applicationInfo.uid};
1753                    ArrayList<String> pkgList = new ArrayList<>(1);
1754                    pkgList.add(packageName);
1755                    sendResourcesChangedBroadcast(true, true, pkgList, uidArray, null);
1756                }
1757            }
1758
1759            // Work that needs to happen on first install within each user
1760            if (firstUsers != null && firstUsers.length > 0) {
1761                synchronized (mPackages) {
1762                    for (int userId : firstUsers) {
1763                        // If this app is a browser and it's newly-installed for some
1764                        // users, clear any default-browser state in those users. The
1765                        // app's nature doesn't depend on the user, so we can just check
1766                        // its browser nature in any user and generalize.
1767                        if (packageIsBrowser(packageName, userId)) {
1768                            mSettings.setDefaultBrowserPackageNameLPw(null, userId);
1769                        }
1770
1771                        // We may also need to apply pending (restored) runtime
1772                        // permission grants within these users.
1773                        mSettings.applyPendingPermissionGrantsLPw(packageName, userId);
1774                    }
1775                }
1776            }
1777
1778            // Log current value of "unknown sources" setting
1779            EventLog.writeEvent(EventLogTags.UNKNOWN_SOURCES_ENABLED,
1780                    getUnknownSourcesSettings());
1781
1782            // Force a gc to clear up things
1783            Runtime.getRuntime().gc();
1784
1785            // Remove the replaced package's older resources safely now
1786            // We delete after a gc for applications  on sdcard.
1787            if (res.removedInfo != null && res.removedInfo.args != null) {
1788                synchronized (mInstallLock) {
1789                    res.removedInfo.args.doPostDeleteLI(true);
1790                }
1791            }
1792        }
1793
1794        // If someone is watching installs - notify them
1795        if (installObserver != null) {
1796            try {
1797                Bundle extras = extrasForInstallResult(res);
1798                installObserver.onPackageInstalled(res.name, res.returnCode,
1799                        res.returnMsg, extras);
1800            } catch (RemoteException e) {
1801                Slog.i(TAG, "Observer no longer exists.");
1802            }
1803        }
1804    }
1805
1806    private void grantRuntimePermissionsGrantedToDisabledPrivSysPackageParentLPw(
1807            PackageParser.Package pkg) {
1808        if (pkg.parentPackage == null) {
1809            return;
1810        }
1811        if (pkg.requestedPermissions == null) {
1812            return;
1813        }
1814        final PackageSetting disabledSysParentPs = mSettings
1815                .getDisabledSystemPkgLPr(pkg.parentPackage.packageName);
1816        if (disabledSysParentPs == null || disabledSysParentPs.pkg == null
1817                || !disabledSysParentPs.isPrivileged()
1818                || (disabledSysParentPs.childPackageNames != null
1819                        && !disabledSysParentPs.childPackageNames.isEmpty())) {
1820            return;
1821        }
1822        final int[] allUserIds = sUserManager.getUserIds();
1823        final int permCount = pkg.requestedPermissions.size();
1824        for (int i = 0; i < permCount; i++) {
1825            String permission = pkg.requestedPermissions.get(i);
1826            BasePermission bp = mSettings.mPermissions.get(permission);
1827            if (bp == null || !(bp.isRuntime() || bp.isDevelopment())) {
1828                continue;
1829            }
1830            for (int userId : allUserIds) {
1831                if (disabledSysParentPs.getPermissionsState().hasRuntimePermission(
1832                        permission, userId)) {
1833                    grantRuntimePermission(pkg.packageName, permission, userId);
1834                }
1835            }
1836        }
1837    }
1838
1839    private StorageEventListener mStorageListener = new StorageEventListener() {
1840        @Override
1841        public void onVolumeStateChanged(VolumeInfo vol, int oldState, int newState) {
1842            if (vol.type == VolumeInfo.TYPE_PRIVATE) {
1843                if (vol.state == VolumeInfo.STATE_MOUNTED) {
1844                    final String volumeUuid = vol.getFsUuid();
1845
1846                    // Clean up any users or apps that were removed or recreated
1847                    // while this volume was missing
1848                    reconcileUsers(volumeUuid);
1849                    reconcileApps(volumeUuid);
1850
1851                    // Clean up any install sessions that expired or were
1852                    // cancelled while this volume was missing
1853                    mInstallerService.onPrivateVolumeMounted(volumeUuid);
1854
1855                    loadPrivatePackages(vol);
1856
1857                } else if (vol.state == VolumeInfo.STATE_EJECTING) {
1858                    unloadPrivatePackages(vol);
1859                }
1860            }
1861
1862            if (vol.type == VolumeInfo.TYPE_PUBLIC && vol.isPrimary()) {
1863                if (vol.state == VolumeInfo.STATE_MOUNTED) {
1864                    updateExternalMediaStatus(true, false);
1865                } else if (vol.state == VolumeInfo.STATE_EJECTING) {
1866                    updateExternalMediaStatus(false, false);
1867                }
1868            }
1869        }
1870
1871        @Override
1872        public void onVolumeForgotten(String fsUuid) {
1873            if (TextUtils.isEmpty(fsUuid)) {
1874                Slog.e(TAG, "Forgetting internal storage is probably a mistake; ignoring");
1875                return;
1876            }
1877
1878            // Remove any apps installed on the forgotten volume
1879            synchronized (mPackages) {
1880                final List<PackageSetting> packages = mSettings.getVolumePackagesLPr(fsUuid);
1881                for (PackageSetting ps : packages) {
1882                    Slog.d(TAG, "Destroying " + ps.name + " because volume was forgotten");
1883                    deletePackage(ps.name, new LegacyPackageDeleteObserver(null).getBinder(),
1884                            UserHandle.USER_SYSTEM, PackageManager.DELETE_ALL_USERS);
1885                }
1886
1887                mSettings.onVolumeForgotten(fsUuid);
1888                mSettings.writeLPr();
1889            }
1890        }
1891    };
1892
1893    private void grantRequestedRuntimePermissions(PackageParser.Package pkg, int[] userIds,
1894            String[] grantedPermissions) {
1895        for (int userId : userIds) {
1896            grantRequestedRuntimePermissionsForUser(pkg, userId, grantedPermissions);
1897        }
1898
1899        // We could have touched GID membership, so flush out packages.list
1900        synchronized (mPackages) {
1901            mSettings.writePackageListLPr();
1902        }
1903    }
1904
1905    private void grantRequestedRuntimePermissionsForUser(PackageParser.Package pkg, int userId,
1906            String[] grantedPermissions) {
1907        SettingBase sb = (SettingBase) pkg.mExtras;
1908        if (sb == null) {
1909            return;
1910        }
1911
1912        PermissionsState permissionsState = sb.getPermissionsState();
1913
1914        final int immutableFlags = PackageManager.FLAG_PERMISSION_SYSTEM_FIXED
1915                | PackageManager.FLAG_PERMISSION_POLICY_FIXED;
1916
1917        synchronized (mPackages) {
1918            for (String permission : pkg.requestedPermissions) {
1919                BasePermission bp = mSettings.mPermissions.get(permission);
1920                if (bp != null && (bp.isRuntime() || bp.isDevelopment())
1921                        && (grantedPermissions == null
1922                               || ArrayUtils.contains(grantedPermissions, permission))) {
1923                    final int flags = permissionsState.getPermissionFlags(permission, userId);
1924                    // Installer cannot change immutable permissions.
1925                    if ((flags & immutableFlags) == 0) {
1926                        grantRuntimePermission(pkg.packageName, permission, userId);
1927                    }
1928                }
1929            }
1930        }
1931    }
1932
1933    Bundle extrasForInstallResult(PackageInstalledInfo res) {
1934        Bundle extras = null;
1935        switch (res.returnCode) {
1936            case PackageManager.INSTALL_FAILED_DUPLICATE_PERMISSION: {
1937                extras = new Bundle();
1938                extras.putString(PackageManager.EXTRA_FAILURE_EXISTING_PERMISSION,
1939                        res.origPermission);
1940                extras.putString(PackageManager.EXTRA_FAILURE_EXISTING_PACKAGE,
1941                        res.origPackage);
1942                break;
1943            }
1944            case PackageManager.INSTALL_SUCCEEDED: {
1945                extras = new Bundle();
1946                extras.putBoolean(Intent.EXTRA_REPLACING,
1947                        res.removedInfo != null && res.removedInfo.removedPackage != null);
1948                break;
1949            }
1950        }
1951        return extras;
1952    }
1953
1954    void scheduleWriteSettingsLocked() {
1955        if (!mHandler.hasMessages(WRITE_SETTINGS)) {
1956            mHandler.sendEmptyMessageDelayed(WRITE_SETTINGS, WRITE_SETTINGS_DELAY);
1957        }
1958    }
1959
1960    void scheduleWritePackageRestrictionsLocked(UserHandle user) {
1961        final int userId = user == null ? UserHandle.USER_ALL : user.getIdentifier();
1962        scheduleWritePackageRestrictionsLocked(userId);
1963    }
1964
1965    void scheduleWritePackageRestrictionsLocked(int userId) {
1966        final int[] userIds = (userId == UserHandle.USER_ALL)
1967                ? sUserManager.getUserIds() : new int[]{userId};
1968        for (int nextUserId : userIds) {
1969            if (!sUserManager.exists(nextUserId)) return;
1970            mDirtyUsers.add(nextUserId);
1971            if (!mHandler.hasMessages(WRITE_PACKAGE_RESTRICTIONS)) {
1972                mHandler.sendEmptyMessageDelayed(WRITE_PACKAGE_RESTRICTIONS, WRITE_SETTINGS_DELAY);
1973            }
1974        }
1975    }
1976
1977    public static PackageManagerService main(Context context, Installer installer,
1978            boolean factoryTest, boolean onlyCore) {
1979        // Self-check for initial settings.
1980        PackageManagerServiceCompilerMapping.checkProperties();
1981
1982        PackageManagerService m = new PackageManagerService(context, installer,
1983                factoryTest, onlyCore);
1984        m.enableSystemUserPackages();
1985        ServiceManager.addService("package", m);
1986        return m;
1987    }
1988
1989    private void enableSystemUserPackages() {
1990        if (!UserManager.isSplitSystemUser()) {
1991            return;
1992        }
1993        // For system user, enable apps based on the following conditions:
1994        // - app is whitelisted or belong to one of these groups:
1995        //   -- system app which has no launcher icons
1996        //   -- system app which has INTERACT_ACROSS_USERS permission
1997        //   -- system IME app
1998        // - app is not in the blacklist
1999        AppsQueryHelper queryHelper = new AppsQueryHelper(this);
2000        Set<String> enableApps = new ArraySet<>();
2001        enableApps.addAll(queryHelper.queryApps(AppsQueryHelper.GET_NON_LAUNCHABLE_APPS
2002                | AppsQueryHelper.GET_APPS_WITH_INTERACT_ACROSS_USERS_PERM
2003                | AppsQueryHelper.GET_IMES, /* systemAppsOnly */ true, UserHandle.SYSTEM));
2004        ArraySet<String> wlApps = SystemConfig.getInstance().getSystemUserWhitelistedApps();
2005        enableApps.addAll(wlApps);
2006        enableApps.addAll(queryHelper.queryApps(AppsQueryHelper.GET_REQUIRED_FOR_SYSTEM_USER,
2007                /* systemAppsOnly */ false, UserHandle.SYSTEM));
2008        ArraySet<String> blApps = SystemConfig.getInstance().getSystemUserBlacklistedApps();
2009        enableApps.removeAll(blApps);
2010        Log.i(TAG, "Applications installed for system user: " + enableApps);
2011        List<String> allAps = queryHelper.queryApps(0, /* systemAppsOnly */ false,
2012                UserHandle.SYSTEM);
2013        final int allAppsSize = allAps.size();
2014        synchronized (mPackages) {
2015            for (int i = 0; i < allAppsSize; i++) {
2016                String pName = allAps.get(i);
2017                PackageSetting pkgSetting = mSettings.mPackages.get(pName);
2018                // Should not happen, but we shouldn't be failing if it does
2019                if (pkgSetting == null) {
2020                    continue;
2021                }
2022                boolean install = enableApps.contains(pName);
2023                if (pkgSetting.getInstalled(UserHandle.USER_SYSTEM) != install) {
2024                    Log.i(TAG, (install ? "Installing " : "Uninstalling ") + pName
2025                            + " for system user");
2026                    pkgSetting.setInstalled(install, UserHandle.USER_SYSTEM);
2027                }
2028            }
2029        }
2030    }
2031
2032    private static void getDefaultDisplayMetrics(Context context, DisplayMetrics metrics) {
2033        DisplayManager displayManager = (DisplayManager) context.getSystemService(
2034                Context.DISPLAY_SERVICE);
2035        displayManager.getDisplay(Display.DEFAULT_DISPLAY).getMetrics(metrics);
2036    }
2037
2038    public PackageManagerService(Context context, Installer installer,
2039            boolean factoryTest, boolean onlyCore) {
2040        EventLog.writeEvent(EventLogTags.BOOT_PROGRESS_PMS_START,
2041                SystemClock.uptimeMillis());
2042
2043        if (mSdkVersion <= 0) {
2044            Slog.w(TAG, "**** ro.build.version.sdk not set!");
2045        }
2046
2047        mContext = context;
2048        mFactoryTest = factoryTest;
2049        mOnlyCore = onlyCore;
2050        mMetrics = new DisplayMetrics();
2051        mSettings = new Settings(mPackages);
2052        mSettings.addSharedUserLPw("android.uid.system", Process.SYSTEM_UID,
2053                ApplicationInfo.FLAG_SYSTEM, ApplicationInfo.PRIVATE_FLAG_PRIVILEGED);
2054        mSettings.addSharedUserLPw("android.uid.phone", RADIO_UID,
2055                ApplicationInfo.FLAG_SYSTEM, ApplicationInfo.PRIVATE_FLAG_PRIVILEGED);
2056        mSettings.addSharedUserLPw("android.uid.log", LOG_UID,
2057                ApplicationInfo.FLAG_SYSTEM, ApplicationInfo.PRIVATE_FLAG_PRIVILEGED);
2058        mSettings.addSharedUserLPw("android.uid.nfc", NFC_UID,
2059                ApplicationInfo.FLAG_SYSTEM, ApplicationInfo.PRIVATE_FLAG_PRIVILEGED);
2060        mSettings.addSharedUserLPw("android.uid.bluetooth", BLUETOOTH_UID,
2061                ApplicationInfo.FLAG_SYSTEM, ApplicationInfo.PRIVATE_FLAG_PRIVILEGED);
2062        mSettings.addSharedUserLPw("android.uid.shell", SHELL_UID,
2063                ApplicationInfo.FLAG_SYSTEM, ApplicationInfo.PRIVATE_FLAG_PRIVILEGED);
2064
2065        String separateProcesses = SystemProperties.get("debug.separate_processes");
2066        if (separateProcesses != null && separateProcesses.length() > 0) {
2067            if ("*".equals(separateProcesses)) {
2068                mDefParseFlags = PackageParser.PARSE_IGNORE_PROCESSES;
2069                mSeparateProcesses = null;
2070                Slog.w(TAG, "Running with debug.separate_processes: * (ALL)");
2071            } else {
2072                mDefParseFlags = 0;
2073                mSeparateProcesses = separateProcesses.split(",");
2074                Slog.w(TAG, "Running with debug.separate_processes: "
2075                        + separateProcesses);
2076            }
2077        } else {
2078            mDefParseFlags = 0;
2079            mSeparateProcesses = null;
2080        }
2081
2082        mInstaller = installer;
2083        mPackageDexOptimizer = new PackageDexOptimizer(installer, mInstallLock, context,
2084                "*dexopt*");
2085        mMoveCallbacks = new MoveCallbacks(FgThread.get().getLooper());
2086
2087        mOnPermissionChangeListeners = new OnPermissionChangeListeners(
2088                FgThread.get().getLooper());
2089
2090        getDefaultDisplayMetrics(context, mMetrics);
2091
2092        SystemConfig systemConfig = SystemConfig.getInstance();
2093        mGlobalGids = systemConfig.getGlobalGids();
2094        mSystemPermissions = systemConfig.getSystemPermissions();
2095        mAvailableFeatures = systemConfig.getAvailableFeatures();
2096
2097        synchronized (mInstallLock) {
2098        // writer
2099        synchronized (mPackages) {
2100            mHandlerThread = new ServiceThread(TAG,
2101                    Process.THREAD_PRIORITY_BACKGROUND, true /*allowIo*/);
2102            mHandlerThread.start();
2103            mHandler = new PackageHandler(mHandlerThread.getLooper());
2104            mProcessLoggingHandler = new ProcessLoggingHandler();
2105            Watchdog.getInstance().addThread(mHandler, WATCHDOG_TIMEOUT);
2106
2107            File dataDir = Environment.getDataDirectory();
2108            mAppInstallDir = new File(dataDir, "app");
2109            mAppLib32InstallDir = new File(dataDir, "app-lib");
2110            mEphemeralInstallDir = new File(dataDir, "app-ephemeral");
2111            mAsecInternalPath = new File(dataDir, "app-asec").getPath();
2112            mDrmAppPrivateInstallDir = new File(dataDir, "app-private");
2113
2114            sUserManager = new UserManagerService(context, this, mPackages);
2115
2116            // Propagate permission configuration in to package manager.
2117            ArrayMap<String, SystemConfig.PermissionEntry> permConfig
2118                    = systemConfig.getPermissions();
2119            for (int i=0; i<permConfig.size(); i++) {
2120                SystemConfig.PermissionEntry perm = permConfig.valueAt(i);
2121                BasePermission bp = mSettings.mPermissions.get(perm.name);
2122                if (bp == null) {
2123                    bp = new BasePermission(perm.name, "android", BasePermission.TYPE_BUILTIN);
2124                    mSettings.mPermissions.put(perm.name, bp);
2125                }
2126                if (perm.gids != null) {
2127                    bp.setGids(perm.gids, perm.perUser);
2128                }
2129            }
2130
2131            ArrayMap<String, String> libConfig = systemConfig.getSharedLibraries();
2132            for (int i=0; i<libConfig.size(); i++) {
2133                mSharedLibraries.put(libConfig.keyAt(i),
2134                        new SharedLibraryEntry(libConfig.valueAt(i), null));
2135            }
2136
2137            mFoundPolicyFile = SELinuxMMAC.readInstallPolicy();
2138
2139            mRestoredSettings = mSettings.readLPw(sUserManager.getUsers(false));
2140
2141            String customResolverActivity = Resources.getSystem().getString(
2142                    R.string.config_customResolverActivity);
2143            if (TextUtils.isEmpty(customResolverActivity)) {
2144                customResolverActivity = null;
2145            } else {
2146                mCustomResolverComponentName = ComponentName.unflattenFromString(
2147                        customResolverActivity);
2148            }
2149
2150            long startTime = SystemClock.uptimeMillis();
2151
2152            EventLog.writeEvent(EventLogTags.BOOT_PROGRESS_PMS_SYSTEM_SCAN_START,
2153                    startTime);
2154
2155            // Set flag to monitor and not change apk file paths when
2156            // scanning install directories.
2157            final int scanFlags = SCAN_NO_PATHS | SCAN_DEFER_DEX | SCAN_BOOTING | SCAN_INITIAL;
2158
2159            final String bootClassPath = System.getenv("BOOTCLASSPATH");
2160            final String systemServerClassPath = System.getenv("SYSTEMSERVERCLASSPATH");
2161
2162            if (bootClassPath == null) {
2163                Slog.w(TAG, "No BOOTCLASSPATH found!");
2164            }
2165
2166            if (systemServerClassPath == null) {
2167                Slog.w(TAG, "No SYSTEMSERVERCLASSPATH found!");
2168            }
2169
2170            final List<String> allInstructionSets = InstructionSets.getAllInstructionSets();
2171            final String[] dexCodeInstructionSets =
2172                    getDexCodeInstructionSets(
2173                            allInstructionSets.toArray(new String[allInstructionSets.size()]));
2174
2175            /**
2176             * Ensure all external libraries have had dexopt run on them.
2177             */
2178            if (mSharedLibraries.size() > 0) {
2179                // NOTE: For now, we're compiling these system "shared libraries"
2180                // (and framework jars) into all available architectures. It's possible
2181                // to compile them only when we come across an app that uses them (there's
2182                // already logic for that in scanPackageLI) but that adds some complexity.
2183                for (String dexCodeInstructionSet : dexCodeInstructionSets) {
2184                    for (SharedLibraryEntry libEntry : mSharedLibraries.values()) {
2185                        final String lib = libEntry.path;
2186                        if (lib == null) {
2187                            continue;
2188                        }
2189
2190                        try {
2191                            // Shared libraries do not have profiles so we perform a full
2192                            // AOT compilation (if needed).
2193                            int dexoptNeeded = DexFile.getDexOptNeeded(
2194                                    lib, dexCodeInstructionSet,
2195                                    getCompilerFilterForReason(REASON_SHARED_APK),
2196                                    false /* newProfile */);
2197                            if (dexoptNeeded != DexFile.NO_DEXOPT_NEEDED) {
2198                                mInstaller.dexopt(lib, Process.SYSTEM_UID, dexCodeInstructionSet,
2199                                        dexoptNeeded, DEXOPT_PUBLIC /*dexFlags*/,
2200                                        getCompilerFilterForReason(REASON_SHARED_APK),
2201                                        StorageManager.UUID_PRIVATE_INTERNAL);
2202                            }
2203                        } catch (FileNotFoundException e) {
2204                            Slog.w(TAG, "Library not found: " + lib);
2205                        } catch (IOException | InstallerException e) {
2206                            Slog.w(TAG, "Cannot dexopt " + lib + "; is it an APK or JAR? "
2207                                    + e.getMessage());
2208                        }
2209                    }
2210                }
2211            }
2212
2213            File frameworkDir = new File(Environment.getRootDirectory(), "framework");
2214
2215            final VersionInfo ver = mSettings.getInternalVersion();
2216            mIsUpgrade = !Build.FINGERPRINT.equals(ver.fingerprint);
2217
2218            // when upgrading from pre-M, promote system app permissions from install to runtime
2219            mPromoteSystemApps =
2220                    mIsUpgrade && ver.sdkVersion <= Build.VERSION_CODES.LOLLIPOP_MR1;
2221
2222            // save off the names of pre-existing system packages prior to scanning; we don't
2223            // want to automatically grant runtime permissions for new system apps
2224            if (mPromoteSystemApps) {
2225                Iterator<PackageSetting> pkgSettingIter = mSettings.mPackages.values().iterator();
2226                while (pkgSettingIter.hasNext()) {
2227                    PackageSetting ps = pkgSettingIter.next();
2228                    if (isSystemApp(ps)) {
2229                        mExistingSystemPackages.add(ps.name);
2230                    }
2231                }
2232            }
2233
2234            // When upgrading from pre-N, we need to handle package extraction like first boot,
2235            // as there is no profiling data available.
2236            mIsPreNUpgrade = !mSettings.isNWorkDone();
2237            mSettings.setNWorkDone();
2238
2239            // Collect vendor overlay packages.
2240            // (Do this before scanning any apps.)
2241            // For security and version matching reason, only consider
2242            // overlay packages if they reside in VENDOR_OVERLAY_DIR.
2243            File vendorOverlayDir = new File(VENDOR_OVERLAY_DIR);
2244            scanDirTracedLI(vendorOverlayDir, PackageParser.PARSE_IS_SYSTEM
2245                    | PackageParser.PARSE_IS_SYSTEM_DIR, scanFlags | SCAN_TRUSTED_OVERLAY, 0);
2246
2247            // Find base frameworks (resource packages without code).
2248            scanDirTracedLI(frameworkDir, PackageParser.PARSE_IS_SYSTEM
2249                    | PackageParser.PARSE_IS_SYSTEM_DIR
2250                    | PackageParser.PARSE_IS_PRIVILEGED,
2251                    scanFlags | SCAN_NO_DEX, 0);
2252
2253            // Collected privileged system packages.
2254            final File privilegedAppDir = new File(Environment.getRootDirectory(), "priv-app");
2255            scanDirTracedLI(privilegedAppDir, PackageParser.PARSE_IS_SYSTEM
2256                    | PackageParser.PARSE_IS_SYSTEM_DIR
2257                    | PackageParser.PARSE_IS_PRIVILEGED, scanFlags, 0);
2258
2259            // Collect ordinary system packages.
2260            final File systemAppDir = new File(Environment.getRootDirectory(), "app");
2261            scanDirTracedLI(systemAppDir, PackageParser.PARSE_IS_SYSTEM
2262                    | PackageParser.PARSE_IS_SYSTEM_DIR, scanFlags, 0);
2263
2264            // Collect all vendor packages.
2265            File vendorAppDir = new File("/vendor/app");
2266            try {
2267                vendorAppDir = vendorAppDir.getCanonicalFile();
2268            } catch (IOException e) {
2269                // failed to look up canonical path, continue with original one
2270            }
2271            scanDirTracedLI(vendorAppDir, PackageParser.PARSE_IS_SYSTEM
2272                    | PackageParser.PARSE_IS_SYSTEM_DIR, scanFlags, 0);
2273
2274            // Collect all OEM packages.
2275            final File oemAppDir = new File(Environment.getOemDirectory(), "app");
2276            scanDirTracedLI(oemAppDir, PackageParser.PARSE_IS_SYSTEM
2277                    | PackageParser.PARSE_IS_SYSTEM_DIR, scanFlags, 0);
2278
2279            // Prune any system packages that no longer exist.
2280            final List<String> possiblyDeletedUpdatedSystemApps = new ArrayList<String>();
2281            if (!mOnlyCore) {
2282                Iterator<PackageSetting> psit = mSettings.mPackages.values().iterator();
2283                while (psit.hasNext()) {
2284                    PackageSetting ps = psit.next();
2285
2286                    /*
2287                     * If this is not a system app, it can't be a
2288                     * disable system app.
2289                     */
2290                    if ((ps.pkgFlags & ApplicationInfo.FLAG_SYSTEM) == 0) {
2291                        continue;
2292                    }
2293
2294                    /*
2295                     * If the package is scanned, it's not erased.
2296                     */
2297                    final PackageParser.Package scannedPkg = mPackages.get(ps.name);
2298                    if (scannedPkg != null) {
2299                        /*
2300                         * If the system app is both scanned and in the
2301                         * disabled packages list, then it must have been
2302                         * added via OTA. Remove it from the currently
2303                         * scanned package so the previously user-installed
2304                         * application can be scanned.
2305                         */
2306                        if (mSettings.isDisabledSystemPackageLPr(ps.name)) {
2307                            logCriticalInfo(Log.WARN, "Expecting better updated system app for "
2308                                    + ps.name + "; removing system app.  Last known codePath="
2309                                    + ps.codePathString + ", installStatus=" + ps.installStatus
2310                                    + ", versionCode=" + ps.versionCode + "; scanned versionCode="
2311                                    + scannedPkg.mVersionCode);
2312                            removePackageLI(scannedPkg, true);
2313                            mExpectingBetter.put(ps.name, ps.codePath);
2314                        }
2315
2316                        continue;
2317                    }
2318
2319                    if (!mSettings.isDisabledSystemPackageLPr(ps.name)) {
2320                        psit.remove();
2321                        logCriticalInfo(Log.WARN, "System package " + ps.name
2322                                + " no longer exists; wiping its data");
2323                        removeDataDirsLI(null, ps.name);
2324                    } else {
2325                        final PackageSetting disabledPs = mSettings.getDisabledSystemPkgLPr(ps.name);
2326                        if (disabledPs.codePath == null || !disabledPs.codePath.exists()) {
2327                            possiblyDeletedUpdatedSystemApps.add(ps.name);
2328                        }
2329                    }
2330                }
2331            }
2332
2333            //look for any incomplete package installations
2334            ArrayList<PackageSetting> deletePkgsList = mSettings.getListOfIncompleteInstallPackagesLPr();
2335            //clean up list
2336            for(int i = 0; i < deletePkgsList.size(); i++) {
2337                //clean up here
2338                cleanupInstallFailedPackage(deletePkgsList.get(i));
2339            }
2340            //delete tmp files
2341            deleteTempPackageFiles();
2342
2343            // Remove any shared userIDs that have no associated packages
2344            mSettings.pruneSharedUsersLPw();
2345
2346            if (!mOnlyCore) {
2347                EventLog.writeEvent(EventLogTags.BOOT_PROGRESS_PMS_DATA_SCAN_START,
2348                        SystemClock.uptimeMillis());
2349                scanDirTracedLI(mAppInstallDir, 0, scanFlags | SCAN_REQUIRE_KNOWN, 0);
2350
2351                scanDirTracedLI(mDrmAppPrivateInstallDir, PackageParser.PARSE_FORWARD_LOCK,
2352                        scanFlags | SCAN_REQUIRE_KNOWN, 0);
2353
2354                scanDirLI(mEphemeralInstallDir, PackageParser.PARSE_IS_EPHEMERAL,
2355                        scanFlags | SCAN_REQUIRE_KNOWN, 0);
2356
2357                /**
2358                 * Remove disable package settings for any updated system
2359                 * apps that were removed via an OTA. If they're not a
2360                 * previously-updated app, remove them completely.
2361                 * Otherwise, just revoke their system-level permissions.
2362                 */
2363                for (String deletedAppName : possiblyDeletedUpdatedSystemApps) {
2364                    PackageParser.Package deletedPkg = mPackages.get(deletedAppName);
2365                    mSettings.removeDisabledSystemPackageLPw(deletedAppName);
2366
2367                    String msg;
2368                    if (deletedPkg == null) {
2369                        msg = "Updated system package " + deletedAppName
2370                                + " no longer exists; wiping its data";
2371                        removeDataDirsLI(null, deletedAppName);
2372                    } else {
2373                        msg = "Updated system app + " + deletedAppName
2374                                + " no longer present; removing system privileges for "
2375                                + deletedAppName;
2376
2377                        deletedPkg.applicationInfo.flags &= ~ApplicationInfo.FLAG_SYSTEM;
2378
2379                        PackageSetting deletedPs = mSettings.mPackages.get(deletedAppName);
2380                        deletedPs.pkgFlags &= ~ApplicationInfo.FLAG_SYSTEM;
2381                    }
2382                    logCriticalInfo(Log.WARN, msg);
2383                }
2384
2385                /**
2386                 * Make sure all system apps that we expected to appear on
2387                 * the userdata partition actually showed up. If they never
2388                 * appeared, crawl back and revive the system version.
2389                 */
2390                for (int i = 0; i < mExpectingBetter.size(); i++) {
2391                    final String packageName = mExpectingBetter.keyAt(i);
2392                    if (!mPackages.containsKey(packageName)) {
2393                        final File scanFile = mExpectingBetter.valueAt(i);
2394
2395                        logCriticalInfo(Log.WARN, "Expected better " + packageName
2396                                + " but never showed up; reverting to system");
2397
2398                        final int reparseFlags;
2399                        if (FileUtils.contains(privilegedAppDir, scanFile)) {
2400                            reparseFlags = PackageParser.PARSE_IS_SYSTEM
2401                                    | PackageParser.PARSE_IS_SYSTEM_DIR
2402                                    | PackageParser.PARSE_IS_PRIVILEGED;
2403                        } else if (FileUtils.contains(systemAppDir, scanFile)) {
2404                            reparseFlags = PackageParser.PARSE_IS_SYSTEM
2405                                    | PackageParser.PARSE_IS_SYSTEM_DIR;
2406                        } else if (FileUtils.contains(vendorAppDir, scanFile)) {
2407                            reparseFlags = PackageParser.PARSE_IS_SYSTEM
2408                                    | PackageParser.PARSE_IS_SYSTEM_DIR;
2409                        } else if (FileUtils.contains(oemAppDir, scanFile)) {
2410                            reparseFlags = PackageParser.PARSE_IS_SYSTEM
2411                                    | PackageParser.PARSE_IS_SYSTEM_DIR;
2412                        } else {
2413                            Slog.e(TAG, "Ignoring unexpected fallback path " + scanFile);
2414                            continue;
2415                        }
2416
2417                        mSettings.enableSystemPackageLPw(packageName);
2418
2419                        try {
2420                            scanPackageTracedLI(scanFile, reparseFlags, scanFlags, 0, null);
2421                        } catch (PackageManagerException e) {
2422                            Slog.e(TAG, "Failed to parse original system package: "
2423                                    + e.getMessage());
2424                        }
2425                    }
2426                }
2427            }
2428            mExpectingBetter.clear();
2429
2430            // Now that we know all of the shared libraries, update all clients to have
2431            // the correct library paths.
2432            updateAllSharedLibrariesLPw();
2433
2434            for (SharedUserSetting setting : mSettings.getAllSharedUsersLPw()) {
2435                // NOTE: We ignore potential failures here during a system scan (like
2436                // the rest of the commands above) because there's precious little we
2437                // can do about it. A settings error is reported, though.
2438                adjustCpuAbisForSharedUserLPw(setting.packages, null /* scanned package */,
2439                        false /* boot complete */);
2440            }
2441
2442            // Now that we know all the packages we are keeping,
2443            // read and update their last usage times.
2444            mPackageUsage.readLP();
2445
2446            EventLog.writeEvent(EventLogTags.BOOT_PROGRESS_PMS_SCAN_END,
2447                    SystemClock.uptimeMillis());
2448            Slog.i(TAG, "Time to scan packages: "
2449                    + ((SystemClock.uptimeMillis()-startTime)/1000f)
2450                    + " seconds");
2451
2452            // If the platform SDK has changed since the last time we booted,
2453            // we need to re-grant app permission to catch any new ones that
2454            // appear.  This is really a hack, and means that apps can in some
2455            // cases get permissions that the user didn't initially explicitly
2456            // allow...  it would be nice to have some better way to handle
2457            // this situation.
2458            int updateFlags = UPDATE_PERMISSIONS_ALL;
2459            if (ver.sdkVersion != mSdkVersion) {
2460                Slog.i(TAG, "Platform changed from " + ver.sdkVersion + " to "
2461                        + mSdkVersion + "; regranting permissions for internal storage");
2462                updateFlags |= UPDATE_PERMISSIONS_REPLACE_PKG | UPDATE_PERMISSIONS_REPLACE_ALL;
2463            }
2464            updatePermissionsLPw(null, null, StorageManager.UUID_PRIVATE_INTERNAL, updateFlags);
2465            ver.sdkVersion = mSdkVersion;
2466
2467            // If this is the first boot or an update from pre-M, and it is a normal
2468            // boot, then we need to initialize the default preferred apps across
2469            // all defined users.
2470            if (!onlyCore && (mPromoteSystemApps || !mRestoredSettings)) {
2471                for (UserInfo user : sUserManager.getUsers(true)) {
2472                    mSettings.applyDefaultPreferredAppsLPw(this, user.id);
2473                    applyFactoryDefaultBrowserLPw(user.id);
2474                    primeDomainVerificationsLPw(user.id);
2475                }
2476            }
2477
2478            // Prepare storage for system user really early during boot,
2479            // since core system apps like SettingsProvider and SystemUI
2480            // can't wait for user to start
2481            final int storageFlags;
2482            if (StorageManager.isFileEncryptedNativeOrEmulated()) {
2483                storageFlags = StorageManager.FLAG_STORAGE_DE;
2484            } else {
2485                storageFlags = StorageManager.FLAG_STORAGE_DE | StorageManager.FLAG_STORAGE_CE;
2486            }
2487            reconcileAppsData(StorageManager.UUID_PRIVATE_INTERNAL, UserHandle.USER_SYSTEM,
2488                    storageFlags);
2489
2490            // If this is first boot after an OTA, and a normal boot, then
2491            // we need to clear code cache directories.
2492            if (mIsUpgrade && !onlyCore) {
2493                Slog.i(TAG, "Build fingerprint changed; clearing code caches");
2494                for (int i = 0; i < mSettings.mPackages.size(); i++) {
2495                    final PackageSetting ps = mSettings.mPackages.valueAt(i);
2496                    if (Objects.equals(StorageManager.UUID_PRIVATE_INTERNAL, ps.volumeUuid)) {
2497                        deleteCodeCacheDirsLI(ps.volumeUuid, ps.name);
2498                    }
2499                }
2500                ver.fingerprint = Build.FINGERPRINT;
2501            }
2502
2503            checkDefaultBrowser();
2504
2505            // clear only after permissions and other defaults have been updated
2506            mExistingSystemPackages.clear();
2507            mPromoteSystemApps = false;
2508
2509            // All the changes are done during package scanning.
2510            ver.databaseVersion = Settings.CURRENT_DATABASE_VERSION;
2511
2512            // can downgrade to reader
2513            mSettings.writeLPr();
2514
2515            EventLog.writeEvent(EventLogTags.BOOT_PROGRESS_PMS_READY,
2516                    SystemClock.uptimeMillis());
2517
2518            if (!mOnlyCore) {
2519                mRequiredVerifierPackage = getRequiredButNotReallyRequiredVerifierLPr();
2520                mRequiredInstallerPackage = getRequiredInstallerLPr();
2521                mIntentFilterVerifierComponent = getIntentFilterVerifierComponentNameLPr();
2522                mIntentFilterVerifier = new IntentVerifierProxy(mContext,
2523                        mIntentFilterVerifierComponent);
2524            } else {
2525                mRequiredVerifierPackage = null;
2526                mRequiredInstallerPackage = null;
2527                mIntentFilterVerifierComponent = null;
2528                mIntentFilterVerifier = null;
2529            }
2530
2531            mInstallerService = new PackageInstallerService(context, this);
2532
2533            final ComponentName ephemeralResolverComponent = getEphemeralResolverLPr();
2534            final ComponentName ephemeralInstallerComponent = getEphemeralInstallerLPr();
2535            // both the installer and resolver must be present to enable ephemeral
2536            if (ephemeralInstallerComponent != null && ephemeralResolverComponent != null) {
2537                if (DEBUG_EPHEMERAL) {
2538                    Slog.i(TAG, "Ephemeral activated; resolver: " + ephemeralResolverComponent
2539                            + " installer:" + ephemeralInstallerComponent);
2540                }
2541                mEphemeralResolverComponent = ephemeralResolverComponent;
2542                mEphemeralInstallerComponent = ephemeralInstallerComponent;
2543                setUpEphemeralInstallerActivityLP(mEphemeralInstallerComponent);
2544                mEphemeralResolverConnection =
2545                        new EphemeralResolverConnection(mContext, mEphemeralResolverComponent);
2546            } else {
2547                if (DEBUG_EPHEMERAL) {
2548                    final String missingComponent =
2549                            (ephemeralResolverComponent == null)
2550                            ? (ephemeralInstallerComponent == null)
2551                                    ? "resolver and installer"
2552                                    : "resolver"
2553                            : "installer";
2554                    Slog.i(TAG, "Ephemeral deactivated; missing " + missingComponent);
2555                }
2556                mEphemeralResolverComponent = null;
2557                mEphemeralInstallerComponent = null;
2558                mEphemeralResolverConnection = null;
2559            }
2560
2561            mEphemeralApplicationRegistry = new EphemeralApplicationRegistry(this);
2562        } // synchronized (mPackages)
2563        } // synchronized (mInstallLock)
2564
2565        // Now after opening every single application zip, make sure they
2566        // are all flushed.  Not really needed, but keeps things nice and
2567        // tidy.
2568        Runtime.getRuntime().gc();
2569
2570        // The initial scanning above does many calls into installd while
2571        // holding the mPackages lock, but we're mostly interested in yelling
2572        // once we have a booted system.
2573        mInstaller.setWarnIfHeld(mPackages);
2574
2575        // Expose private service for system components to use.
2576        LocalServices.addService(PackageManagerInternal.class, new PackageManagerInternalImpl());
2577    }
2578
2579    @Override
2580    public boolean isFirstBoot() {
2581        return !mRestoredSettings;
2582    }
2583
2584    @Override
2585    public boolean isOnlyCoreApps() {
2586        return mOnlyCore;
2587    }
2588
2589    @Override
2590    public boolean isUpgrade() {
2591        return mIsUpgrade;
2592    }
2593
2594    private @Nullable String getRequiredButNotReallyRequiredVerifierLPr() {
2595        final Intent intent = new Intent(Intent.ACTION_PACKAGE_NEEDS_VERIFICATION);
2596
2597        final List<ResolveInfo> matches = queryIntentReceiversInternal(intent, PACKAGE_MIME_TYPE,
2598                MATCH_SYSTEM_ONLY | MATCH_DIRECT_BOOT_AWARE | MATCH_DIRECT_BOOT_UNAWARE,
2599                UserHandle.USER_SYSTEM);
2600        if (matches.size() == 1) {
2601            return matches.get(0).getComponentInfo().packageName;
2602        } else {
2603            Log.e(TAG, "There should probably be exactly one verifier; found " + matches);
2604            return null;
2605        }
2606    }
2607
2608    private @NonNull String getRequiredInstallerLPr() {
2609        final Intent intent = new Intent(Intent.ACTION_INSTALL_PACKAGE);
2610        intent.addCategory(Intent.CATEGORY_DEFAULT);
2611        intent.setDataAndType(Uri.fromFile(new File("foo.apk")), PACKAGE_MIME_TYPE);
2612
2613        final List<ResolveInfo> matches = queryIntentActivitiesInternal(intent, PACKAGE_MIME_TYPE,
2614                MATCH_SYSTEM_ONLY | MATCH_DIRECT_BOOT_AWARE | MATCH_DIRECT_BOOT_UNAWARE,
2615                UserHandle.USER_SYSTEM);
2616        if (matches.size() == 1) {
2617            return matches.get(0).getComponentInfo().packageName;
2618        } else {
2619            throw new RuntimeException("There must be exactly one installer; found " + matches);
2620        }
2621    }
2622
2623    private @NonNull ComponentName getIntentFilterVerifierComponentNameLPr() {
2624        final Intent intent = new Intent(Intent.ACTION_INTENT_FILTER_NEEDS_VERIFICATION);
2625
2626        final List<ResolveInfo> matches = queryIntentReceiversInternal(intent, PACKAGE_MIME_TYPE,
2627                MATCH_SYSTEM_ONLY | MATCH_DIRECT_BOOT_AWARE | MATCH_DIRECT_BOOT_UNAWARE,
2628                UserHandle.USER_SYSTEM);
2629        ResolveInfo best = null;
2630        final int N = matches.size();
2631        for (int i = 0; i < N; i++) {
2632            final ResolveInfo cur = matches.get(i);
2633            final String packageName = cur.getComponentInfo().packageName;
2634            if (checkPermission(android.Manifest.permission.INTENT_FILTER_VERIFICATION_AGENT,
2635                    packageName, UserHandle.USER_SYSTEM) != PackageManager.PERMISSION_GRANTED) {
2636                continue;
2637            }
2638
2639            if (best == null || cur.priority > best.priority) {
2640                best = cur;
2641            }
2642        }
2643
2644        if (best != null) {
2645            return best.getComponentInfo().getComponentName();
2646        } else {
2647            throw new RuntimeException("There must be at least one intent filter verifier");
2648        }
2649    }
2650
2651    private @Nullable ComponentName getEphemeralResolverLPr() {
2652        final String[] packageArray =
2653                mContext.getResources().getStringArray(R.array.config_ephemeralResolverPackage);
2654        if (packageArray.length == 0) {
2655            if (DEBUG_EPHEMERAL) {
2656                Slog.d(TAG, "Ephemeral resolver NOT found; empty package list");
2657            }
2658            return null;
2659        }
2660
2661        final Intent resolverIntent = new Intent(Intent.ACTION_RESOLVE_EPHEMERAL_PACKAGE);
2662        final List<ResolveInfo> resolvers = queryIntentServicesInternal(resolverIntent, null,
2663                MATCH_SYSTEM_ONLY | MATCH_DIRECT_BOOT_AWARE | MATCH_DIRECT_BOOT_UNAWARE,
2664                UserHandle.USER_SYSTEM);
2665
2666        final int N = resolvers.size();
2667        if (N == 0) {
2668            if (DEBUG_EPHEMERAL) {
2669                Slog.d(TAG, "Ephemeral resolver NOT found; no matching intent filters");
2670            }
2671            return null;
2672        }
2673
2674        final Set<String> possiblePackages = new ArraySet<>(Arrays.asList(packageArray));
2675        for (int i = 0; i < N; i++) {
2676            final ResolveInfo info = resolvers.get(i);
2677
2678            if (info.serviceInfo == null) {
2679                continue;
2680            }
2681
2682            final String packageName = info.serviceInfo.packageName;
2683            if (!possiblePackages.contains(packageName)) {
2684                if (DEBUG_EPHEMERAL) {
2685                    Slog.d(TAG, "Ephemeral resolver not in allowed package list;"
2686                            + " pkg: " + packageName + ", info:" + info);
2687                }
2688                continue;
2689            }
2690
2691            if (DEBUG_EPHEMERAL) {
2692                Slog.v(TAG, "Ephemeral resolver found;"
2693                        + " pkg: " + packageName + ", info:" + info);
2694            }
2695            return new ComponentName(packageName, info.serviceInfo.name);
2696        }
2697        if (DEBUG_EPHEMERAL) {
2698            Slog.v(TAG, "Ephemeral resolver NOT found");
2699        }
2700        return null;
2701    }
2702
2703    private @Nullable ComponentName getEphemeralInstallerLPr() {
2704        final Intent intent = new Intent(Intent.ACTION_INSTALL_EPHEMERAL_PACKAGE);
2705        intent.addCategory(Intent.CATEGORY_DEFAULT);
2706        intent.setDataAndType(Uri.fromFile(new File("foo.apk")), PACKAGE_MIME_TYPE);
2707
2708        final List<ResolveInfo> matches = queryIntentActivitiesInternal(intent, PACKAGE_MIME_TYPE,
2709                MATCH_SYSTEM_ONLY | MATCH_DIRECT_BOOT_AWARE | MATCH_DIRECT_BOOT_UNAWARE,
2710                UserHandle.USER_SYSTEM);
2711        if (matches.size() == 0) {
2712            return null;
2713        } else if (matches.size() == 1) {
2714            return matches.get(0).getComponentInfo().getComponentName();
2715        } else {
2716            throw new RuntimeException(
2717                    "There must be at most one ephemeral installer; found " + matches);
2718        }
2719    }
2720
2721    private void primeDomainVerificationsLPw(int userId) {
2722        if (DEBUG_DOMAIN_VERIFICATION) {
2723            Slog.d(TAG, "Priming domain verifications in user " + userId);
2724        }
2725
2726        SystemConfig systemConfig = SystemConfig.getInstance();
2727        ArraySet<String> packages = systemConfig.getLinkedApps();
2728        ArraySet<String> domains = new ArraySet<String>();
2729
2730        for (String packageName : packages) {
2731            PackageParser.Package pkg = mPackages.get(packageName);
2732            if (pkg != null) {
2733                if (!pkg.isSystemApp()) {
2734                    Slog.w(TAG, "Non-system app '" + packageName + "' in sysconfig <app-link>");
2735                    continue;
2736                }
2737
2738                domains.clear();
2739                for (PackageParser.Activity a : pkg.activities) {
2740                    for (ActivityIntentInfo filter : a.intents) {
2741                        if (hasValidDomains(filter)) {
2742                            domains.addAll(filter.getHostsList());
2743                        }
2744                    }
2745                }
2746
2747                if (domains.size() > 0) {
2748                    if (DEBUG_DOMAIN_VERIFICATION) {
2749                        Slog.v(TAG, "      + " + packageName);
2750                    }
2751                    // 'Undefined' in the global IntentFilterVerificationInfo, i.e. the usual
2752                    // state w.r.t. the formal app-linkage "no verification attempted" state;
2753                    // and then 'always' in the per-user state actually used for intent resolution.
2754                    final IntentFilterVerificationInfo ivi;
2755                    ivi = mSettings.createIntentFilterVerificationIfNeededLPw(packageName,
2756                            new ArrayList<String>(domains));
2757                    ivi.setStatus(INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_UNDEFINED);
2758                    mSettings.updateIntentFilterVerificationStatusLPw(packageName,
2759                            INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_ALWAYS, userId);
2760                } else {
2761                    Slog.w(TAG, "Sysconfig <app-link> package '" + packageName
2762                            + "' does not handle web links");
2763                }
2764            } else {
2765                Slog.w(TAG, "Unknown package " + packageName + " in sysconfig <app-link>");
2766            }
2767        }
2768
2769        scheduleWritePackageRestrictionsLocked(userId);
2770        scheduleWriteSettingsLocked();
2771    }
2772
2773    private void applyFactoryDefaultBrowserLPw(int userId) {
2774        // The default browser app's package name is stored in a string resource,
2775        // with a product-specific overlay used for vendor customization.
2776        String browserPkg = mContext.getResources().getString(
2777                com.android.internal.R.string.default_browser);
2778        if (!TextUtils.isEmpty(browserPkg)) {
2779            // non-empty string => required to be a known package
2780            PackageSetting ps = mSettings.mPackages.get(browserPkg);
2781            if (ps == null) {
2782                Slog.e(TAG, "Product default browser app does not exist: " + browserPkg);
2783                browserPkg = null;
2784            } else {
2785                mSettings.setDefaultBrowserPackageNameLPw(browserPkg, userId);
2786            }
2787        }
2788
2789        // Nothing valid explicitly set? Make the factory-installed browser the explicit
2790        // default.  If there's more than one, just leave everything alone.
2791        if (browserPkg == null) {
2792            calculateDefaultBrowserLPw(userId);
2793        }
2794    }
2795
2796    private void calculateDefaultBrowserLPw(int userId) {
2797        List<String> allBrowsers = resolveAllBrowserApps(userId);
2798        final String browserPkg = (allBrowsers.size() == 1) ? allBrowsers.get(0) : null;
2799        mSettings.setDefaultBrowserPackageNameLPw(browserPkg, userId);
2800    }
2801
2802    private List<String> resolveAllBrowserApps(int userId) {
2803        // Resolve the canonical browser intent and check that the handleAllWebDataURI boolean is set
2804        List<ResolveInfo> list = queryIntentActivitiesInternal(sBrowserIntent, null,
2805                PackageManager.MATCH_ALL, userId);
2806
2807        final int count = list.size();
2808        List<String> result = new ArrayList<String>(count);
2809        for (int i=0; i<count; i++) {
2810            ResolveInfo info = list.get(i);
2811            if (info.activityInfo == null
2812                    || !info.handleAllWebDataURI
2813                    || (info.activityInfo.applicationInfo.flags & ApplicationInfo.FLAG_SYSTEM) == 0
2814                    || result.contains(info.activityInfo.packageName)) {
2815                continue;
2816            }
2817            result.add(info.activityInfo.packageName);
2818        }
2819
2820        return result;
2821    }
2822
2823    private boolean packageIsBrowser(String packageName, int userId) {
2824        List<ResolveInfo> list = queryIntentActivitiesInternal(sBrowserIntent, null,
2825                PackageManager.MATCH_ALL, userId);
2826        final int N = list.size();
2827        for (int i = 0; i < N; i++) {
2828            ResolveInfo info = list.get(i);
2829            if (packageName.equals(info.activityInfo.packageName)) {
2830                return true;
2831            }
2832        }
2833        return false;
2834    }
2835
2836    private void checkDefaultBrowser() {
2837        final int myUserId = UserHandle.myUserId();
2838        final String packageName = getDefaultBrowserPackageName(myUserId);
2839        if (packageName != null) {
2840            PackageInfo info = getPackageInfo(packageName, 0, myUserId);
2841            if (info == null) {
2842                Slog.w(TAG, "Default browser no longer installed: " + packageName);
2843                synchronized (mPackages) {
2844                    applyFactoryDefaultBrowserLPw(myUserId);    // leaves ambiguous when > 1
2845                }
2846            }
2847        }
2848    }
2849
2850    @Override
2851    public boolean onTransact(int code, Parcel data, Parcel reply, int flags)
2852            throws RemoteException {
2853        try {
2854            return super.onTransact(code, data, reply, flags);
2855        } catch (RuntimeException e) {
2856            if (!(e instanceof SecurityException) && !(e instanceof IllegalArgumentException)) {
2857                Slog.wtf(TAG, "Package Manager Crash", e);
2858            }
2859            throw e;
2860        }
2861    }
2862
2863    void cleanupInstallFailedPackage(PackageSetting ps) {
2864        logCriticalInfo(Log.WARN, "Cleaning up incompletely installed app: " + ps.name);
2865
2866        removeDataDirsLI(ps.volumeUuid, ps.name);
2867        if (ps.codePath != null) {
2868            removeCodePathLI(ps.codePath);
2869        }
2870        if (ps.resourcePath != null && !ps.resourcePath.equals(ps.codePath)) {
2871            if (ps.resourcePath.isDirectory()) {
2872                FileUtils.deleteContents(ps.resourcePath);
2873            }
2874            ps.resourcePath.delete();
2875        }
2876        mSettings.removePackageLPw(ps.name);
2877    }
2878
2879    static int[] appendInts(int[] cur, int[] add) {
2880        if (add == null) return cur;
2881        if (cur == null) return add;
2882        final int N = add.length;
2883        for (int i=0; i<N; i++) {
2884            cur = appendInt(cur, add[i]);
2885        }
2886        return cur;
2887    }
2888
2889    PackageInfo generatePackageInfo(PackageParser.Package p, int flags, int userId) {
2890        if (!sUserManager.exists(userId)) return null;
2891        final PackageSetting ps = (PackageSetting) p.mExtras;
2892        if (ps == null) {
2893            return null;
2894        }
2895
2896        final PermissionsState permissionsState = ps.getPermissionsState();
2897
2898        final int[] gids = permissionsState.computeGids(userId);
2899        final Set<String> permissions = permissionsState.getPermissions(userId);
2900        final PackageUserState state = ps.readUserState(userId);
2901
2902        return PackageParser.generatePackageInfo(p, gids, flags,
2903                ps.firstInstallTime, ps.lastUpdateTime, permissions, state, userId);
2904    }
2905
2906    @Override
2907    public void checkPackageStartable(String packageName, int userId) {
2908        final boolean userKeyUnlocked = isUserKeyUnlocked(userId);
2909
2910        synchronized (mPackages) {
2911            final PackageSetting ps = mSettings.mPackages.get(packageName);
2912            if (ps == null) {
2913                throw new SecurityException("Package " + packageName + " was not found!");
2914            }
2915
2916            if (!ps.getInstalled(userId)) {
2917                throw new SecurityException(
2918                        "Package " + packageName + " was not installed for user " + userId + "!");
2919            }
2920
2921            if (mSafeMode && !ps.isSystem()) {
2922                throw new SecurityException("Package " + packageName + " not a system app!");
2923            }
2924
2925            if (ps.frozen) {
2926                throw new SecurityException("Package " + packageName + " is currently frozen!");
2927            }
2928
2929            if (!userKeyUnlocked && !(ps.pkg.applicationInfo.isDirectBootAware()
2930                    || ps.pkg.applicationInfo.isPartiallyDirectBootAware())) {
2931                throw new SecurityException("Package " + packageName + " is not encryption aware!");
2932            }
2933        }
2934    }
2935
2936    @Override
2937    public boolean isPackageAvailable(String packageName, int userId) {
2938        if (!sUserManager.exists(userId)) return false;
2939        enforceCrossUserPermission(Binder.getCallingUid(), userId,
2940                false /* requireFullPermission */, false /* checkShell */, "is package available");
2941        synchronized (mPackages) {
2942            PackageParser.Package p = mPackages.get(packageName);
2943            if (p != null) {
2944                final PackageSetting ps = (PackageSetting) p.mExtras;
2945                if (ps != null) {
2946                    final PackageUserState state = ps.readUserState(userId);
2947                    if (state != null) {
2948                        return PackageParser.isAvailable(state);
2949                    }
2950                }
2951            }
2952        }
2953        return false;
2954    }
2955
2956    @Override
2957    public PackageInfo getPackageInfo(String packageName, int flags, int userId) {
2958        if (!sUserManager.exists(userId)) return null;
2959        flags = updateFlagsForPackage(flags, userId, packageName);
2960        enforceCrossUserPermission(Binder.getCallingUid(), userId,
2961                false /* requireFullPermission */, false /* checkShell */, "get package info");
2962        // reader
2963        synchronized (mPackages) {
2964            PackageParser.Package p = mPackages.get(packageName);
2965            if (DEBUG_PACKAGE_INFO)
2966                Log.v(TAG, "getPackageInfo " + packageName + ": " + p);
2967            if (p != null) {
2968                return generatePackageInfo(p, flags, userId);
2969            }
2970            if ((flags & MATCH_UNINSTALLED_PACKAGES) != 0) {
2971                return generatePackageInfoFromSettingsLPw(packageName, flags, userId);
2972            }
2973        }
2974        return null;
2975    }
2976
2977    @Override
2978    public String[] currentToCanonicalPackageNames(String[] names) {
2979        String[] out = new String[names.length];
2980        // reader
2981        synchronized (mPackages) {
2982            for (int i=names.length-1; i>=0; i--) {
2983                PackageSetting ps = mSettings.mPackages.get(names[i]);
2984                out[i] = ps != null && ps.realName != null ? ps.realName : names[i];
2985            }
2986        }
2987        return out;
2988    }
2989
2990    @Override
2991    public String[] canonicalToCurrentPackageNames(String[] names) {
2992        String[] out = new String[names.length];
2993        // reader
2994        synchronized (mPackages) {
2995            for (int i=names.length-1; i>=0; i--) {
2996                String cur = mSettings.mRenamedPackages.get(names[i]);
2997                out[i] = cur != null ? cur : names[i];
2998            }
2999        }
3000        return out;
3001    }
3002
3003    @Override
3004    public int getPackageUid(String packageName, int flags, int userId) {
3005        if (!sUserManager.exists(userId)) return -1;
3006        flags = updateFlagsForPackage(flags, userId, packageName);
3007        enforceCrossUserPermission(Binder.getCallingUid(), userId,
3008                false /* requireFullPermission */, false /* checkShell */, "get package uid");
3009
3010        // reader
3011        synchronized (mPackages) {
3012            final PackageParser.Package p = mPackages.get(packageName);
3013            if (p != null && p.isMatch(flags)) {
3014                return UserHandle.getUid(userId, p.applicationInfo.uid);
3015            }
3016            if ((flags & MATCH_UNINSTALLED_PACKAGES) != 0) {
3017                final PackageSetting ps = mSettings.mPackages.get(packageName);
3018                if (ps != null && ps.isMatch(flags)) {
3019                    return UserHandle.getUid(userId, ps.appId);
3020                }
3021            }
3022        }
3023
3024        return -1;
3025    }
3026
3027    @Override
3028    public int[] getPackageGids(String packageName, int flags, int userId) {
3029        if (!sUserManager.exists(userId)) return null;
3030        flags = updateFlagsForPackage(flags, userId, packageName);
3031        enforceCrossUserPermission(Binder.getCallingUid(), userId,
3032                false /* requireFullPermission */, false /* checkShell */,
3033                "getPackageGids");
3034
3035        // reader
3036        synchronized (mPackages) {
3037            final PackageParser.Package p = mPackages.get(packageName);
3038            if (p != null && p.isMatch(flags)) {
3039                PackageSetting ps = (PackageSetting) p.mExtras;
3040                return ps.getPermissionsState().computeGids(userId);
3041            }
3042            if ((flags & MATCH_UNINSTALLED_PACKAGES) != 0) {
3043                final PackageSetting ps = mSettings.mPackages.get(packageName);
3044                if (ps != null && ps.isMatch(flags)) {
3045                    return ps.getPermissionsState().computeGids(userId);
3046                }
3047            }
3048        }
3049
3050        return null;
3051    }
3052
3053    static PermissionInfo generatePermissionInfo(BasePermission bp, int flags) {
3054        if (bp.perm != null) {
3055            return PackageParser.generatePermissionInfo(bp.perm, flags);
3056        }
3057        PermissionInfo pi = new PermissionInfo();
3058        pi.name = bp.name;
3059        pi.packageName = bp.sourcePackage;
3060        pi.nonLocalizedLabel = bp.name;
3061        pi.protectionLevel = bp.protectionLevel;
3062        return pi;
3063    }
3064
3065    @Override
3066    public PermissionInfo getPermissionInfo(String name, int flags) {
3067        // reader
3068        synchronized (mPackages) {
3069            final BasePermission p = mSettings.mPermissions.get(name);
3070            if (p != null) {
3071                return generatePermissionInfo(p, flags);
3072            }
3073            return null;
3074        }
3075    }
3076
3077    @Override
3078    public @Nullable ParceledListSlice<PermissionInfo> queryPermissionsByGroup(String group,
3079            int flags) {
3080        // reader
3081        synchronized (mPackages) {
3082            if (group != null && !mPermissionGroups.containsKey(group)) {
3083                // This is thrown as NameNotFoundException
3084                return null;
3085            }
3086
3087            ArrayList<PermissionInfo> out = new ArrayList<PermissionInfo>(10);
3088            for (BasePermission p : mSettings.mPermissions.values()) {
3089                if (group == null) {
3090                    if (p.perm == null || p.perm.info.group == null) {
3091                        out.add(generatePermissionInfo(p, flags));
3092                    }
3093                } else {
3094                    if (p.perm != null && group.equals(p.perm.info.group)) {
3095                        out.add(PackageParser.generatePermissionInfo(p.perm, flags));
3096                    }
3097                }
3098            }
3099            return new ParceledListSlice<>(out);
3100        }
3101    }
3102
3103    @Override
3104    public PermissionGroupInfo getPermissionGroupInfo(String name, int flags) {
3105        // reader
3106        synchronized (mPackages) {
3107            return PackageParser.generatePermissionGroupInfo(
3108                    mPermissionGroups.get(name), flags);
3109        }
3110    }
3111
3112    @Override
3113    public @NonNull ParceledListSlice<PermissionGroupInfo> getAllPermissionGroups(int flags) {
3114        // reader
3115        synchronized (mPackages) {
3116            final int N = mPermissionGroups.size();
3117            ArrayList<PermissionGroupInfo> out
3118                    = new ArrayList<PermissionGroupInfo>(N);
3119            for (PackageParser.PermissionGroup pg : mPermissionGroups.values()) {
3120                out.add(PackageParser.generatePermissionGroupInfo(pg, flags));
3121            }
3122            return new ParceledListSlice<>(out);
3123        }
3124    }
3125
3126    private ApplicationInfo generateApplicationInfoFromSettingsLPw(String packageName, int flags,
3127            int userId) {
3128        if (!sUserManager.exists(userId)) return null;
3129        PackageSetting ps = mSettings.mPackages.get(packageName);
3130        if (ps != null) {
3131            if (ps.pkg == null) {
3132                PackageInfo pInfo = generatePackageInfoFromSettingsLPw(packageName,
3133                        flags, userId);
3134                if (pInfo != null) {
3135                    return pInfo.applicationInfo;
3136                }
3137                return null;
3138            }
3139            return PackageParser.generateApplicationInfo(ps.pkg, flags,
3140                    ps.readUserState(userId), userId);
3141        }
3142        return null;
3143    }
3144
3145    private PackageInfo generatePackageInfoFromSettingsLPw(String packageName, int flags,
3146            int userId) {
3147        if (!sUserManager.exists(userId)) return null;
3148        PackageSetting ps = mSettings.mPackages.get(packageName);
3149        if (ps != null) {
3150            PackageParser.Package pkg = ps.pkg;
3151            if (pkg == null) {
3152                if ((flags & MATCH_UNINSTALLED_PACKAGES) == 0) {
3153                    return null;
3154                }
3155                // Only data remains, so we aren't worried about code paths
3156                pkg = new PackageParser.Package(packageName);
3157                pkg.applicationInfo.packageName = packageName;
3158                pkg.applicationInfo.flags = ps.pkgFlags | ApplicationInfo.FLAG_IS_DATA_ONLY;
3159                pkg.applicationInfo.privateFlags = ps.pkgPrivateFlags;
3160                pkg.applicationInfo.uid = ps.appId;
3161                pkg.applicationInfo.initForUser(userId);
3162                pkg.applicationInfo.primaryCpuAbi = ps.primaryCpuAbiString;
3163                pkg.applicationInfo.secondaryCpuAbi = ps.secondaryCpuAbiString;
3164            }
3165            return generatePackageInfo(pkg, flags, userId);
3166        }
3167        return null;
3168    }
3169
3170    @Override
3171    public ApplicationInfo getApplicationInfo(String packageName, int flags, int userId) {
3172        if (!sUserManager.exists(userId)) return null;
3173        flags = updateFlagsForApplication(flags, userId, packageName);
3174        enforceCrossUserPermission(Binder.getCallingUid(), userId,
3175                false /* requireFullPermission */, false /* checkShell */, "get application info");
3176        // writer
3177        synchronized (mPackages) {
3178            PackageParser.Package p = mPackages.get(packageName);
3179            if (DEBUG_PACKAGE_INFO) Log.v(
3180                    TAG, "getApplicationInfo " + packageName
3181                    + ": " + p);
3182            if (p != null) {
3183                PackageSetting ps = mSettings.mPackages.get(packageName);
3184                if (ps == null) return null;
3185                // Note: isEnabledLP() does not apply here - always return info
3186                return PackageParser.generateApplicationInfo(
3187                        p, flags, ps.readUserState(userId), userId);
3188            }
3189            if ("android".equals(packageName)||"system".equals(packageName)) {
3190                return mAndroidApplication;
3191            }
3192            if ((flags & MATCH_UNINSTALLED_PACKAGES) != 0) {
3193                return generateApplicationInfoFromSettingsLPw(packageName, flags, userId);
3194            }
3195        }
3196        return null;
3197    }
3198
3199    @Override
3200    public void freeStorageAndNotify(final String volumeUuid, final long freeStorageSize,
3201            final IPackageDataObserver observer) {
3202        mContext.enforceCallingOrSelfPermission(
3203                android.Manifest.permission.CLEAR_APP_CACHE, null);
3204        // Queue up an async operation since clearing cache may take a little while.
3205        mHandler.post(new Runnable() {
3206            public void run() {
3207                mHandler.removeCallbacks(this);
3208                boolean success = true;
3209                synchronized (mInstallLock) {
3210                    try {
3211                        mInstaller.freeCache(volumeUuid, freeStorageSize);
3212                    } catch (InstallerException e) {
3213                        Slog.w(TAG, "Couldn't clear application caches: " + e);
3214                        success = false;
3215                    }
3216                }
3217                if (observer != null) {
3218                    try {
3219                        observer.onRemoveCompleted(null, success);
3220                    } catch (RemoteException e) {
3221                        Slog.w(TAG, "RemoveException when invoking call back");
3222                    }
3223                }
3224            }
3225        });
3226    }
3227
3228    @Override
3229    public void freeStorage(final String volumeUuid, final long freeStorageSize,
3230            final IntentSender pi) {
3231        mContext.enforceCallingOrSelfPermission(
3232                android.Manifest.permission.CLEAR_APP_CACHE, null);
3233        // Queue up an async operation since clearing cache may take a little while.
3234        mHandler.post(new Runnable() {
3235            public void run() {
3236                mHandler.removeCallbacks(this);
3237                boolean success = true;
3238                synchronized (mInstallLock) {
3239                    try {
3240                        mInstaller.freeCache(volumeUuid, freeStorageSize);
3241                    } catch (InstallerException e) {
3242                        Slog.w(TAG, "Couldn't clear application caches: " + e);
3243                        success = false;
3244                    }
3245                }
3246                if(pi != null) {
3247                    try {
3248                        // Callback via pending intent
3249                        int code = success ? 1 : 0;
3250                        pi.sendIntent(null, code, null,
3251                                null, null);
3252                    } catch (SendIntentException e1) {
3253                        Slog.i(TAG, "Failed to send pending intent");
3254                    }
3255                }
3256            }
3257        });
3258    }
3259
3260    void freeStorage(String volumeUuid, long freeStorageSize) throws IOException {
3261        synchronized (mInstallLock) {
3262            try {
3263                mInstaller.freeCache(volumeUuid, freeStorageSize);
3264            } catch (InstallerException e) {
3265                throw new IOException("Failed to free enough space", e);
3266            }
3267        }
3268    }
3269
3270    /**
3271     * Return if the user key is currently unlocked.
3272     */
3273    private boolean isUserKeyUnlocked(int userId) {
3274        if (StorageManager.isFileEncryptedNativeOrEmulated()) {
3275            final IMountService mount = IMountService.Stub
3276                    .asInterface(ServiceManager.getService("mount"));
3277            if (mount == null) {
3278                Slog.w(TAG, "Early during boot, assuming locked");
3279                return false;
3280            }
3281            final long token = Binder.clearCallingIdentity();
3282            try {
3283                return mount.isUserKeyUnlocked(userId);
3284            } catch (RemoteException e) {
3285                throw e.rethrowAsRuntimeException();
3286            } finally {
3287                Binder.restoreCallingIdentity(token);
3288            }
3289        } else {
3290            return true;
3291        }
3292    }
3293
3294    /**
3295     * Update given flags based on encryption status of current user.
3296     */
3297    private int updateFlags(int flags, int userId) {
3298        if ((flags & (PackageManager.MATCH_DIRECT_BOOT_UNAWARE
3299                | PackageManager.MATCH_DIRECT_BOOT_AWARE)) != 0) {
3300            // Caller expressed an explicit opinion about what encryption
3301            // aware/unaware components they want to see, so fall through and
3302            // give them what they want
3303        } else {
3304            // Caller expressed no opinion, so match based on user state
3305            if (isUserKeyUnlocked(userId)) {
3306                flags |= PackageManager.MATCH_DIRECT_BOOT_AWARE | MATCH_DIRECT_BOOT_UNAWARE;
3307            } else {
3308                flags |= PackageManager.MATCH_DIRECT_BOOT_AWARE;
3309            }
3310        }
3311        return flags;
3312    }
3313
3314    /**
3315     * Update given flags when being used to request {@link PackageInfo}.
3316     */
3317    private int updateFlagsForPackage(int flags, int userId, Object cookie) {
3318        boolean triaged = true;
3319        if ((flags & (PackageManager.GET_ACTIVITIES | PackageManager.GET_RECEIVERS
3320                | PackageManager.GET_SERVICES | PackageManager.GET_PROVIDERS)) != 0) {
3321            // Caller is asking for component details, so they'd better be
3322            // asking for specific encryption matching behavior, or be triaged
3323            if ((flags & (PackageManager.MATCH_DIRECT_BOOT_UNAWARE
3324                    | PackageManager.MATCH_DIRECT_BOOT_AWARE
3325                    | PackageManager.MATCH_DEBUG_TRIAGED_MISSING)) == 0) {
3326                triaged = false;
3327            }
3328        }
3329        if ((flags & (PackageManager.MATCH_UNINSTALLED_PACKAGES
3330                | PackageManager.MATCH_SYSTEM_ONLY
3331                | PackageManager.MATCH_DEBUG_TRIAGED_MISSING)) == 0) {
3332            triaged = false;
3333        }
3334        if (DEBUG_TRIAGED_MISSING && (Binder.getCallingUid() == Process.SYSTEM_UID) && !triaged) {
3335            Log.w(TAG, "Caller hasn't been triaged for missing apps; they asked about " + cookie
3336                    + " with flags 0x" + Integer.toHexString(flags), new Throwable());
3337        }
3338        return updateFlags(flags, userId);
3339    }
3340
3341    /**
3342     * Update given flags when being used to request {@link ApplicationInfo}.
3343     */
3344    private int updateFlagsForApplication(int flags, int userId, Object cookie) {
3345        return updateFlagsForPackage(flags, userId, cookie);
3346    }
3347
3348    /**
3349     * Update given flags when being used to request {@link ComponentInfo}.
3350     */
3351    private int updateFlagsForComponent(int flags, int userId, Object cookie) {
3352        if (cookie instanceof Intent) {
3353            if ((((Intent) cookie).getFlags() & Intent.FLAG_DEBUG_TRIAGED_MISSING) != 0) {
3354                flags |= PackageManager.MATCH_DEBUG_TRIAGED_MISSING;
3355            }
3356        }
3357
3358        boolean triaged = true;
3359        // Caller is asking for component details, so they'd better be
3360        // asking for specific encryption matching behavior, or be triaged
3361        if ((flags & (PackageManager.MATCH_DIRECT_BOOT_UNAWARE
3362                | PackageManager.MATCH_DIRECT_BOOT_AWARE
3363                | PackageManager.MATCH_DEBUG_TRIAGED_MISSING)) == 0) {
3364            triaged = false;
3365        }
3366        if (DEBUG_TRIAGED_MISSING && (Binder.getCallingUid() == Process.SYSTEM_UID) && !triaged) {
3367            Log.w(TAG, "Caller hasn't been triaged for missing apps; they asked about " + cookie
3368                    + " with flags 0x" + Integer.toHexString(flags), new Throwable());
3369        }
3370
3371        return updateFlags(flags, userId);
3372    }
3373
3374    /**
3375     * Update given flags when being used to request {@link ResolveInfo}.
3376     */
3377    int updateFlagsForResolve(int flags, int userId, Object cookie) {
3378        // Safe mode means we shouldn't match any third-party components
3379        if (mSafeMode) {
3380            flags |= PackageManager.MATCH_SYSTEM_ONLY;
3381        }
3382
3383        return updateFlagsForComponent(flags, userId, cookie);
3384    }
3385
3386    @Override
3387    public ActivityInfo getActivityInfo(ComponentName component, int flags, int userId) {
3388        if (!sUserManager.exists(userId)) return null;
3389        flags = updateFlagsForComponent(flags, userId, component);
3390        enforceCrossUserPermission(Binder.getCallingUid(), userId,
3391                false /* requireFullPermission */, false /* checkShell */, "get activity info");
3392        synchronized (mPackages) {
3393            PackageParser.Activity a = mActivities.mActivities.get(component);
3394
3395            if (DEBUG_PACKAGE_INFO) Log.v(TAG, "getActivityInfo " + component + ": " + a);
3396            if (a != null && mSettings.isEnabledAndMatchLPr(a.info, flags, userId)) {
3397                PackageSetting ps = mSettings.mPackages.get(component.getPackageName());
3398                if (ps == null) return null;
3399                return PackageParser.generateActivityInfo(a, flags, ps.readUserState(userId),
3400                        userId);
3401            }
3402            if (mResolveComponentName.equals(component)) {
3403                return PackageParser.generateActivityInfo(mResolveActivity, flags,
3404                        new PackageUserState(), userId);
3405            }
3406        }
3407        return null;
3408    }
3409
3410    @Override
3411    public boolean activitySupportsIntent(ComponentName component, Intent intent,
3412            String resolvedType) {
3413        synchronized (mPackages) {
3414            if (component.equals(mResolveComponentName)) {
3415                // The resolver supports EVERYTHING!
3416                return true;
3417            }
3418            PackageParser.Activity a = mActivities.mActivities.get(component);
3419            if (a == null) {
3420                return false;
3421            }
3422            for (int i=0; i<a.intents.size(); i++) {
3423                if (a.intents.get(i).match(intent.getAction(), resolvedType, intent.getScheme(),
3424                        intent.getData(), intent.getCategories(), TAG) >= 0) {
3425                    return true;
3426                }
3427            }
3428            return false;
3429        }
3430    }
3431
3432    @Override
3433    public ActivityInfo getReceiverInfo(ComponentName component, int flags, int userId) {
3434        if (!sUserManager.exists(userId)) return null;
3435        flags = updateFlagsForComponent(flags, userId, component);
3436        enforceCrossUserPermission(Binder.getCallingUid(), userId,
3437                false /* requireFullPermission */, false /* checkShell */, "get receiver info");
3438        synchronized (mPackages) {
3439            PackageParser.Activity a = mReceivers.mActivities.get(component);
3440            if (DEBUG_PACKAGE_INFO) Log.v(
3441                TAG, "getReceiverInfo " + component + ": " + a);
3442            if (a != null && mSettings.isEnabledAndMatchLPr(a.info, flags, userId)) {
3443                PackageSetting ps = mSettings.mPackages.get(component.getPackageName());
3444                if (ps == null) return null;
3445                return PackageParser.generateActivityInfo(a, flags, ps.readUserState(userId),
3446                        userId);
3447            }
3448        }
3449        return null;
3450    }
3451
3452    @Override
3453    public ServiceInfo getServiceInfo(ComponentName component, int flags, int userId) {
3454        if (!sUserManager.exists(userId)) return null;
3455        flags = updateFlagsForComponent(flags, userId, component);
3456        enforceCrossUserPermission(Binder.getCallingUid(), userId,
3457                false /* requireFullPermission */, false /* checkShell */, "get service info");
3458        synchronized (mPackages) {
3459            PackageParser.Service s = mServices.mServices.get(component);
3460            if (DEBUG_PACKAGE_INFO) Log.v(
3461                TAG, "getServiceInfo " + component + ": " + s);
3462            if (s != null && mSettings.isEnabledAndMatchLPr(s.info, flags, userId)) {
3463                PackageSetting ps = mSettings.mPackages.get(component.getPackageName());
3464                if (ps == null) return null;
3465                return PackageParser.generateServiceInfo(s, flags, ps.readUserState(userId),
3466                        userId);
3467            }
3468        }
3469        return null;
3470    }
3471
3472    @Override
3473    public ProviderInfo getProviderInfo(ComponentName component, int flags, int userId) {
3474        if (!sUserManager.exists(userId)) return null;
3475        flags = updateFlagsForComponent(flags, userId, component);
3476        enforceCrossUserPermission(Binder.getCallingUid(), userId,
3477                false /* requireFullPermission */, false /* checkShell */, "get provider info");
3478        synchronized (mPackages) {
3479            PackageParser.Provider p = mProviders.mProviders.get(component);
3480            if (DEBUG_PACKAGE_INFO) Log.v(
3481                TAG, "getProviderInfo " + component + ": " + p);
3482            if (p != null && mSettings.isEnabledAndMatchLPr(p.info, flags, userId)) {
3483                PackageSetting ps = mSettings.mPackages.get(component.getPackageName());
3484                if (ps == null) return null;
3485                return PackageParser.generateProviderInfo(p, flags, ps.readUserState(userId),
3486                        userId);
3487            }
3488        }
3489        return null;
3490    }
3491
3492    @Override
3493    public String[] getSystemSharedLibraryNames() {
3494        Set<String> libSet;
3495        synchronized (mPackages) {
3496            libSet = mSharedLibraries.keySet();
3497            int size = libSet.size();
3498            if (size > 0) {
3499                String[] libs = new String[size];
3500                libSet.toArray(libs);
3501                return libs;
3502            }
3503        }
3504        return null;
3505    }
3506
3507    @Override
3508    public @Nullable String getServicesSystemSharedLibraryPackageName() {
3509        synchronized (mPackages) {
3510            SharedLibraryEntry libraryEntry = mSharedLibraries.get(
3511                    PackageManager.SYSTEM_SHARED_LIBRARY_SERVICES);
3512            if (libraryEntry != null) {
3513                return libraryEntry.apk;
3514            }
3515        }
3516        return null;
3517    }
3518
3519    @Override
3520    public @NonNull ParceledListSlice<FeatureInfo> getSystemAvailableFeatures() {
3521        synchronized (mPackages) {
3522            final ArrayList<FeatureInfo> res = new ArrayList<>(mAvailableFeatures.values());
3523
3524            final FeatureInfo fi = new FeatureInfo();
3525            fi.reqGlEsVersion = SystemProperties.getInt("ro.opengles.version",
3526                    FeatureInfo.GL_ES_VERSION_UNDEFINED);
3527            res.add(fi);
3528
3529            return new ParceledListSlice<>(res);
3530        }
3531    }
3532
3533    @Override
3534    public boolean hasSystemFeature(String name, int version) {
3535        synchronized (mPackages) {
3536            final FeatureInfo feat = mAvailableFeatures.get(name);
3537            if (feat == null) {
3538                return false;
3539            } else {
3540                return feat.version >= version;
3541            }
3542        }
3543    }
3544
3545    @Override
3546    public int checkPermission(String permName, String pkgName, int userId) {
3547        if (!sUserManager.exists(userId)) {
3548            return PackageManager.PERMISSION_DENIED;
3549        }
3550
3551        synchronized (mPackages) {
3552            final PackageParser.Package p = mPackages.get(pkgName);
3553            if (p != null && p.mExtras != null) {
3554                final PackageSetting ps = (PackageSetting) p.mExtras;
3555                final PermissionsState permissionsState = ps.getPermissionsState();
3556                if (permissionsState.hasPermission(permName, userId)) {
3557                    return PackageManager.PERMISSION_GRANTED;
3558                }
3559                // Special case: ACCESS_FINE_LOCATION permission includes ACCESS_COARSE_LOCATION
3560                if (Manifest.permission.ACCESS_COARSE_LOCATION.equals(permName) && permissionsState
3561                        .hasPermission(Manifest.permission.ACCESS_FINE_LOCATION, userId)) {
3562                    return PackageManager.PERMISSION_GRANTED;
3563                }
3564            }
3565        }
3566
3567        return PackageManager.PERMISSION_DENIED;
3568    }
3569
3570    @Override
3571    public int checkUidPermission(String permName, int uid) {
3572        final int userId = UserHandle.getUserId(uid);
3573
3574        if (!sUserManager.exists(userId)) {
3575            return PackageManager.PERMISSION_DENIED;
3576        }
3577
3578        synchronized (mPackages) {
3579            Object obj = mSettings.getUserIdLPr(UserHandle.getAppId(uid));
3580            if (obj != null) {
3581                final SettingBase ps = (SettingBase) obj;
3582                final PermissionsState permissionsState = ps.getPermissionsState();
3583                if (permissionsState.hasPermission(permName, userId)) {
3584                    return PackageManager.PERMISSION_GRANTED;
3585                }
3586                // Special case: ACCESS_FINE_LOCATION permission includes ACCESS_COARSE_LOCATION
3587                if (Manifest.permission.ACCESS_COARSE_LOCATION.equals(permName) && permissionsState
3588                        .hasPermission(Manifest.permission.ACCESS_FINE_LOCATION, userId)) {
3589                    return PackageManager.PERMISSION_GRANTED;
3590                }
3591            } else {
3592                ArraySet<String> perms = mSystemPermissions.get(uid);
3593                if (perms != null) {
3594                    if (perms.contains(permName)) {
3595                        return PackageManager.PERMISSION_GRANTED;
3596                    }
3597                    if (Manifest.permission.ACCESS_COARSE_LOCATION.equals(permName) && perms
3598                            .contains(Manifest.permission.ACCESS_FINE_LOCATION)) {
3599                        return PackageManager.PERMISSION_GRANTED;
3600                    }
3601                }
3602            }
3603        }
3604
3605        return PackageManager.PERMISSION_DENIED;
3606    }
3607
3608    @Override
3609    public boolean isPermissionRevokedByPolicy(String permission, String packageName, int userId) {
3610        if (UserHandle.getCallingUserId() != userId) {
3611            mContext.enforceCallingPermission(
3612                    android.Manifest.permission.INTERACT_ACROSS_USERS_FULL,
3613                    "isPermissionRevokedByPolicy for user " + userId);
3614        }
3615
3616        if (checkPermission(permission, packageName, userId)
3617                == PackageManager.PERMISSION_GRANTED) {
3618            return false;
3619        }
3620
3621        final long identity = Binder.clearCallingIdentity();
3622        try {
3623            final int flags = getPermissionFlags(permission, packageName, userId);
3624            return (flags & PackageManager.FLAG_PERMISSION_POLICY_FIXED) != 0;
3625        } finally {
3626            Binder.restoreCallingIdentity(identity);
3627        }
3628    }
3629
3630    @Override
3631    public String getPermissionControllerPackageName() {
3632        synchronized (mPackages) {
3633            return mRequiredInstallerPackage;
3634        }
3635    }
3636
3637    /**
3638     * Checks if the request is from the system or an app that has INTERACT_ACROSS_USERS
3639     * or INTERACT_ACROSS_USERS_FULL permissions, if the userid is not for the caller.
3640     * @param checkShell whether to prevent shell from access if there's a debugging restriction
3641     * @param message the message to log on security exception
3642     */
3643    void enforceCrossUserPermission(int callingUid, int userId, boolean requireFullPermission,
3644            boolean checkShell, String message) {
3645        if (userId < 0) {
3646            throw new IllegalArgumentException("Invalid userId " + userId);
3647        }
3648        if (checkShell) {
3649            enforceShellRestriction(UserManager.DISALLOW_DEBUGGING_FEATURES, callingUid, userId);
3650        }
3651        if (userId == UserHandle.getUserId(callingUid)) return;
3652        if (callingUid != Process.SYSTEM_UID && callingUid != 0) {
3653            if (requireFullPermission) {
3654                mContext.enforceCallingOrSelfPermission(
3655                        android.Manifest.permission.INTERACT_ACROSS_USERS_FULL, message);
3656            } else {
3657                try {
3658                    mContext.enforceCallingOrSelfPermission(
3659                            android.Manifest.permission.INTERACT_ACROSS_USERS_FULL, message);
3660                } catch (SecurityException se) {
3661                    mContext.enforceCallingOrSelfPermission(
3662                            android.Manifest.permission.INTERACT_ACROSS_USERS, message);
3663                }
3664            }
3665        }
3666    }
3667
3668    void enforceShellRestriction(String restriction, int callingUid, int userHandle) {
3669        if (callingUid == Process.SHELL_UID) {
3670            if (userHandle >= 0
3671                    && sUserManager.hasUserRestriction(restriction, userHandle)) {
3672                throw new SecurityException("Shell does not have permission to access user "
3673                        + userHandle);
3674            } else if (userHandle < 0) {
3675                Slog.e(TAG, "Unable to check shell permission for user " + userHandle + "\n\t"
3676                        + Debug.getCallers(3));
3677            }
3678        }
3679    }
3680
3681    private BasePermission findPermissionTreeLP(String permName) {
3682        for(BasePermission bp : mSettings.mPermissionTrees.values()) {
3683            if (permName.startsWith(bp.name) &&
3684                    permName.length() > bp.name.length() &&
3685                    permName.charAt(bp.name.length()) == '.') {
3686                return bp;
3687            }
3688        }
3689        return null;
3690    }
3691
3692    private BasePermission checkPermissionTreeLP(String permName) {
3693        if (permName != null) {
3694            BasePermission bp = findPermissionTreeLP(permName);
3695            if (bp != null) {
3696                if (bp.uid == UserHandle.getAppId(Binder.getCallingUid())) {
3697                    return bp;
3698                }
3699                throw new SecurityException("Calling uid "
3700                        + Binder.getCallingUid()
3701                        + " is not allowed to add to permission tree "
3702                        + bp.name + " owned by uid " + bp.uid);
3703            }
3704        }
3705        throw new SecurityException("No permission tree found for " + permName);
3706    }
3707
3708    static boolean compareStrings(CharSequence s1, CharSequence s2) {
3709        if (s1 == null) {
3710            return s2 == null;
3711        }
3712        if (s2 == null) {
3713            return false;
3714        }
3715        if (s1.getClass() != s2.getClass()) {
3716            return false;
3717        }
3718        return s1.equals(s2);
3719    }
3720
3721    static boolean comparePermissionInfos(PermissionInfo pi1, PermissionInfo pi2) {
3722        if (pi1.icon != pi2.icon) return false;
3723        if (pi1.logo != pi2.logo) return false;
3724        if (pi1.protectionLevel != pi2.protectionLevel) return false;
3725        if (!compareStrings(pi1.name, pi2.name)) return false;
3726        if (!compareStrings(pi1.nonLocalizedLabel, pi2.nonLocalizedLabel)) return false;
3727        // We'll take care of setting this one.
3728        if (!compareStrings(pi1.packageName, pi2.packageName)) return false;
3729        // These are not currently stored in settings.
3730        //if (!compareStrings(pi1.group, pi2.group)) return false;
3731        //if (!compareStrings(pi1.nonLocalizedDescription, pi2.nonLocalizedDescription)) return false;
3732        //if (pi1.labelRes != pi2.labelRes) return false;
3733        //if (pi1.descriptionRes != pi2.descriptionRes) return false;
3734        return true;
3735    }
3736
3737    int permissionInfoFootprint(PermissionInfo info) {
3738        int size = info.name.length();
3739        if (info.nonLocalizedLabel != null) size += info.nonLocalizedLabel.length();
3740        if (info.nonLocalizedDescription != null) size += info.nonLocalizedDescription.length();
3741        return size;
3742    }
3743
3744    int calculateCurrentPermissionFootprintLocked(BasePermission tree) {
3745        int size = 0;
3746        for (BasePermission perm : mSettings.mPermissions.values()) {
3747            if (perm.uid == tree.uid) {
3748                size += perm.name.length() + permissionInfoFootprint(perm.perm.info);
3749            }
3750        }
3751        return size;
3752    }
3753
3754    void enforcePermissionCapLocked(PermissionInfo info, BasePermission tree) {
3755        // We calculate the max size of permissions defined by this uid and throw
3756        // if that plus the size of 'info' would exceed our stated maximum.
3757        if (tree.uid != Process.SYSTEM_UID) {
3758            final int curTreeSize = calculateCurrentPermissionFootprintLocked(tree);
3759            if (curTreeSize + permissionInfoFootprint(info) > MAX_PERMISSION_TREE_FOOTPRINT) {
3760                throw new SecurityException("Permission tree size cap exceeded");
3761            }
3762        }
3763    }
3764
3765    boolean addPermissionLocked(PermissionInfo info, boolean async) {
3766        if (info.labelRes == 0 && info.nonLocalizedLabel == null) {
3767            throw new SecurityException("Label must be specified in permission");
3768        }
3769        BasePermission tree = checkPermissionTreeLP(info.name);
3770        BasePermission bp = mSettings.mPermissions.get(info.name);
3771        boolean added = bp == null;
3772        boolean changed = true;
3773        int fixedLevel = PermissionInfo.fixProtectionLevel(info.protectionLevel);
3774        if (added) {
3775            enforcePermissionCapLocked(info, tree);
3776            bp = new BasePermission(info.name, tree.sourcePackage,
3777                    BasePermission.TYPE_DYNAMIC);
3778        } else if (bp.type != BasePermission.TYPE_DYNAMIC) {
3779            throw new SecurityException(
3780                    "Not allowed to modify non-dynamic permission "
3781                    + info.name);
3782        } else {
3783            if (bp.protectionLevel == fixedLevel
3784                    && bp.perm.owner.equals(tree.perm.owner)
3785                    && bp.uid == tree.uid
3786                    && comparePermissionInfos(bp.perm.info, info)) {
3787                changed = false;
3788            }
3789        }
3790        bp.protectionLevel = fixedLevel;
3791        info = new PermissionInfo(info);
3792        info.protectionLevel = fixedLevel;
3793        bp.perm = new PackageParser.Permission(tree.perm.owner, info);
3794        bp.perm.info.packageName = tree.perm.info.packageName;
3795        bp.uid = tree.uid;
3796        if (added) {
3797            mSettings.mPermissions.put(info.name, bp);
3798        }
3799        if (changed) {
3800            if (!async) {
3801                mSettings.writeLPr();
3802            } else {
3803                scheduleWriteSettingsLocked();
3804            }
3805        }
3806        return added;
3807    }
3808
3809    @Override
3810    public boolean addPermission(PermissionInfo info) {
3811        synchronized (mPackages) {
3812            return addPermissionLocked(info, false);
3813        }
3814    }
3815
3816    @Override
3817    public boolean addPermissionAsync(PermissionInfo info) {
3818        synchronized (mPackages) {
3819            return addPermissionLocked(info, true);
3820        }
3821    }
3822
3823    @Override
3824    public void removePermission(String name) {
3825        synchronized (mPackages) {
3826            checkPermissionTreeLP(name);
3827            BasePermission bp = mSettings.mPermissions.get(name);
3828            if (bp != null) {
3829                if (bp.type != BasePermission.TYPE_DYNAMIC) {
3830                    throw new SecurityException(
3831                            "Not allowed to modify non-dynamic permission "
3832                            + name);
3833                }
3834                mSettings.mPermissions.remove(name);
3835                mSettings.writeLPr();
3836            }
3837        }
3838    }
3839
3840    private static void enforceDeclaredAsUsedAndRuntimeOrDevelopmentPermission(PackageParser.Package pkg,
3841            BasePermission bp) {
3842        int index = pkg.requestedPermissions.indexOf(bp.name);
3843        if (index == -1) {
3844            throw new SecurityException("Package " + pkg.packageName
3845                    + " has not requested permission " + bp.name);
3846        }
3847        if (!bp.isRuntime() && !bp.isDevelopment()) {
3848            throw new SecurityException("Permission " + bp.name
3849                    + " is not a changeable permission type");
3850        }
3851    }
3852
3853    @Override
3854    public void grantRuntimePermission(String packageName, String name, final int userId) {
3855        if (!sUserManager.exists(userId)) {
3856            Log.e(TAG, "No such user:" + userId);
3857            return;
3858        }
3859
3860        mContext.enforceCallingOrSelfPermission(
3861                android.Manifest.permission.GRANT_RUNTIME_PERMISSIONS,
3862                "grantRuntimePermission");
3863
3864        enforceCrossUserPermission(Binder.getCallingUid(), userId,
3865                true /* requireFullPermission */, true /* checkShell */,
3866                "grantRuntimePermission");
3867
3868        final int uid;
3869        final SettingBase sb;
3870
3871        synchronized (mPackages) {
3872            final PackageParser.Package pkg = mPackages.get(packageName);
3873            if (pkg == null) {
3874                throw new IllegalArgumentException("Unknown package: " + packageName);
3875            }
3876
3877            final BasePermission bp = mSettings.mPermissions.get(name);
3878            if (bp == null) {
3879                throw new IllegalArgumentException("Unknown permission: " + name);
3880            }
3881
3882            enforceDeclaredAsUsedAndRuntimeOrDevelopmentPermission(pkg, bp);
3883
3884            // If a permission review is required for legacy apps we represent
3885            // their permissions as always granted runtime ones since we need
3886            // to keep the review required permission flag per user while an
3887            // install permission's state is shared across all users.
3888            if (Build.PERMISSIONS_REVIEW_REQUIRED
3889                    && pkg.applicationInfo.targetSdkVersion < Build.VERSION_CODES.M
3890                    && bp.isRuntime()) {
3891                return;
3892            }
3893
3894            uid = UserHandle.getUid(userId, pkg.applicationInfo.uid);
3895            sb = (SettingBase) pkg.mExtras;
3896            if (sb == null) {
3897                throw new IllegalArgumentException("Unknown package: " + packageName);
3898            }
3899
3900            final PermissionsState permissionsState = sb.getPermissionsState();
3901
3902            final int flags = permissionsState.getPermissionFlags(name, userId);
3903            if ((flags & PackageManager.FLAG_PERMISSION_SYSTEM_FIXED) != 0) {
3904                throw new SecurityException("Cannot grant system fixed permission "
3905                        + name + " for package " + packageName);
3906            }
3907
3908            if (bp.isDevelopment()) {
3909                // Development permissions must be handled specially, since they are not
3910                // normal runtime permissions.  For now they apply to all users.
3911                if (permissionsState.grantInstallPermission(bp) !=
3912                        PermissionsState.PERMISSION_OPERATION_FAILURE) {
3913                    scheduleWriteSettingsLocked();
3914                }
3915                return;
3916            }
3917
3918            if (pkg.applicationInfo.targetSdkVersion < Build.VERSION_CODES.M) {
3919                Slog.w(TAG, "Cannot grant runtime permission to a legacy app");
3920                return;
3921            }
3922
3923            final int result = permissionsState.grantRuntimePermission(bp, userId);
3924            switch (result) {
3925                case PermissionsState.PERMISSION_OPERATION_FAILURE: {
3926                    return;
3927                }
3928
3929                case PermissionsState.PERMISSION_OPERATION_SUCCESS_GIDS_CHANGED: {
3930                    final int appId = UserHandle.getAppId(pkg.applicationInfo.uid);
3931                    mHandler.post(new Runnable() {
3932                        @Override
3933                        public void run() {
3934                            killUid(appId, userId, KILL_APP_REASON_GIDS_CHANGED);
3935                        }
3936                    });
3937                }
3938                break;
3939            }
3940
3941            mOnPermissionChangeListeners.onPermissionsChanged(uid);
3942
3943            // Not critical if that is lost - app has to request again.
3944            mSettings.writeRuntimePermissionsForUserLPr(userId, false);
3945        }
3946
3947        // Only need to do this if user is initialized. Otherwise it's a new user
3948        // and there are no processes running as the user yet and there's no need
3949        // to make an expensive call to remount processes for the changed permissions.
3950        if (READ_EXTERNAL_STORAGE.equals(name)
3951                || WRITE_EXTERNAL_STORAGE.equals(name)) {
3952            final long token = Binder.clearCallingIdentity();
3953            try {
3954                if (sUserManager.isInitialized(userId)) {
3955                    MountServiceInternal mountServiceInternal = LocalServices.getService(
3956                            MountServiceInternal.class);
3957                    mountServiceInternal.onExternalStoragePolicyChanged(uid, packageName);
3958                }
3959            } finally {
3960                Binder.restoreCallingIdentity(token);
3961            }
3962        }
3963    }
3964
3965    @Override
3966    public void revokeRuntimePermission(String packageName, String name, int userId) {
3967        if (!sUserManager.exists(userId)) {
3968            Log.e(TAG, "No such user:" + userId);
3969            return;
3970        }
3971
3972        mContext.enforceCallingOrSelfPermission(
3973                android.Manifest.permission.REVOKE_RUNTIME_PERMISSIONS,
3974                "revokeRuntimePermission");
3975
3976        enforceCrossUserPermission(Binder.getCallingUid(), userId,
3977                true /* requireFullPermission */, true /* checkShell */,
3978                "revokeRuntimePermission");
3979
3980        final int appId;
3981
3982        synchronized (mPackages) {
3983            final PackageParser.Package pkg = mPackages.get(packageName);
3984            if (pkg == null) {
3985                throw new IllegalArgumentException("Unknown package: " + packageName);
3986            }
3987
3988            final BasePermission bp = mSettings.mPermissions.get(name);
3989            if (bp == null) {
3990                throw new IllegalArgumentException("Unknown permission: " + name);
3991            }
3992
3993            enforceDeclaredAsUsedAndRuntimeOrDevelopmentPermission(pkg, bp);
3994
3995            // If a permission review is required for legacy apps we represent
3996            // their permissions as always granted runtime ones since we need
3997            // to keep the review required permission flag per user while an
3998            // install permission's state is shared across all users.
3999            if (Build.PERMISSIONS_REVIEW_REQUIRED
4000                    && pkg.applicationInfo.targetSdkVersion < Build.VERSION_CODES.M
4001                    && bp.isRuntime()) {
4002                return;
4003            }
4004
4005            SettingBase sb = (SettingBase) pkg.mExtras;
4006            if (sb == null) {
4007                throw new IllegalArgumentException("Unknown package: " + packageName);
4008            }
4009
4010            final PermissionsState permissionsState = sb.getPermissionsState();
4011
4012            final int flags = permissionsState.getPermissionFlags(name, userId);
4013            if ((flags & PackageManager.FLAG_PERMISSION_SYSTEM_FIXED) != 0) {
4014                throw new SecurityException("Cannot revoke system fixed permission "
4015                        + name + " for package " + packageName);
4016            }
4017
4018            if (bp.isDevelopment()) {
4019                // Development permissions must be handled specially, since they are not
4020                // normal runtime permissions.  For now they apply to all users.
4021                if (permissionsState.revokeInstallPermission(bp) !=
4022                        PermissionsState.PERMISSION_OPERATION_FAILURE) {
4023                    scheduleWriteSettingsLocked();
4024                }
4025                return;
4026            }
4027
4028            if (permissionsState.revokeRuntimePermission(bp, userId) ==
4029                    PermissionsState.PERMISSION_OPERATION_FAILURE) {
4030                return;
4031            }
4032
4033            mOnPermissionChangeListeners.onPermissionsChanged(pkg.applicationInfo.uid);
4034
4035            // Critical, after this call app should never have the permission.
4036            mSettings.writeRuntimePermissionsForUserLPr(userId, true);
4037
4038            appId = UserHandle.getAppId(pkg.applicationInfo.uid);
4039        }
4040
4041        killUid(appId, userId, KILL_APP_REASON_PERMISSIONS_REVOKED);
4042    }
4043
4044    @Override
4045    public void resetRuntimePermissions() {
4046        mContext.enforceCallingOrSelfPermission(
4047                android.Manifest.permission.REVOKE_RUNTIME_PERMISSIONS,
4048                "revokeRuntimePermission");
4049
4050        int callingUid = Binder.getCallingUid();
4051        if (callingUid != Process.SYSTEM_UID && callingUid != 0) {
4052            mContext.enforceCallingOrSelfPermission(
4053                    android.Manifest.permission.INTERACT_ACROSS_USERS_FULL,
4054                    "resetRuntimePermissions");
4055        }
4056
4057        synchronized (mPackages) {
4058            updatePermissionsLPw(null, null, UPDATE_PERMISSIONS_ALL);
4059            for (int userId : UserManagerService.getInstance().getUserIds()) {
4060                final int packageCount = mPackages.size();
4061                for (int i = 0; i < packageCount; i++) {
4062                    PackageParser.Package pkg = mPackages.valueAt(i);
4063                    if (!(pkg.mExtras instanceof PackageSetting)) {
4064                        continue;
4065                    }
4066                    PackageSetting ps = (PackageSetting) pkg.mExtras;
4067                    resetUserChangesToRuntimePermissionsAndFlagsLPw(ps, userId);
4068                }
4069            }
4070        }
4071    }
4072
4073    @Override
4074    public int getPermissionFlags(String name, String packageName, int userId) {
4075        if (!sUserManager.exists(userId)) {
4076            return 0;
4077        }
4078
4079        enforceGrantRevokeRuntimePermissionPermissions("getPermissionFlags");
4080
4081        enforceCrossUserPermission(Binder.getCallingUid(), userId,
4082                true /* requireFullPermission */, false /* checkShell */,
4083                "getPermissionFlags");
4084
4085        synchronized (mPackages) {
4086            final PackageParser.Package pkg = mPackages.get(packageName);
4087            if (pkg == null) {
4088                throw new IllegalArgumentException("Unknown package: " + packageName);
4089            }
4090
4091            final BasePermission bp = mSettings.mPermissions.get(name);
4092            if (bp == null) {
4093                throw new IllegalArgumentException("Unknown permission: " + name);
4094            }
4095
4096            SettingBase sb = (SettingBase) pkg.mExtras;
4097            if (sb == null) {
4098                throw new IllegalArgumentException("Unknown package: " + packageName);
4099            }
4100
4101            PermissionsState permissionsState = sb.getPermissionsState();
4102            return permissionsState.getPermissionFlags(name, userId);
4103        }
4104    }
4105
4106    @Override
4107    public void updatePermissionFlags(String name, String packageName, int flagMask,
4108            int flagValues, int userId) {
4109        if (!sUserManager.exists(userId)) {
4110            return;
4111        }
4112
4113        enforceGrantRevokeRuntimePermissionPermissions("updatePermissionFlags");
4114
4115        enforceCrossUserPermission(Binder.getCallingUid(), userId,
4116                true /* requireFullPermission */, true /* checkShell */,
4117                "updatePermissionFlags");
4118
4119        // Only the system can change these flags and nothing else.
4120        if (getCallingUid() != Process.SYSTEM_UID) {
4121            flagMask &= ~PackageManager.FLAG_PERMISSION_SYSTEM_FIXED;
4122            flagValues &= ~PackageManager.FLAG_PERMISSION_SYSTEM_FIXED;
4123            flagMask &= ~PackageManager.FLAG_PERMISSION_GRANTED_BY_DEFAULT;
4124            flagValues &= ~PackageManager.FLAG_PERMISSION_GRANTED_BY_DEFAULT;
4125            flagValues &= ~PackageManager.FLAG_PERMISSION_REVIEW_REQUIRED;
4126        }
4127
4128        synchronized (mPackages) {
4129            final PackageParser.Package pkg = mPackages.get(packageName);
4130            if (pkg == null) {
4131                throw new IllegalArgumentException("Unknown package: " + packageName);
4132            }
4133
4134            final BasePermission bp = mSettings.mPermissions.get(name);
4135            if (bp == null) {
4136                throw new IllegalArgumentException("Unknown permission: " + name);
4137            }
4138
4139            SettingBase sb = (SettingBase) pkg.mExtras;
4140            if (sb == null) {
4141                throw new IllegalArgumentException("Unknown package: " + packageName);
4142            }
4143
4144            PermissionsState permissionsState = sb.getPermissionsState();
4145
4146            boolean hadState = permissionsState.getRuntimePermissionState(name, userId) != null;
4147
4148            if (permissionsState.updatePermissionFlags(bp, userId, flagMask, flagValues)) {
4149                // Install and runtime permissions are stored in different places,
4150                // so figure out what permission changed and persist the change.
4151                if (permissionsState.getInstallPermissionState(name) != null) {
4152                    scheduleWriteSettingsLocked();
4153                } else if (permissionsState.getRuntimePermissionState(name, userId) != null
4154                        || hadState) {
4155                    mSettings.writeRuntimePermissionsForUserLPr(userId, false);
4156                }
4157            }
4158        }
4159    }
4160
4161    /**
4162     * Update the permission flags for all packages and runtime permissions of a user in order
4163     * to allow device or profile owner to remove POLICY_FIXED.
4164     */
4165    @Override
4166    public void updatePermissionFlagsForAllApps(int flagMask, int flagValues, int userId) {
4167        if (!sUserManager.exists(userId)) {
4168            return;
4169        }
4170
4171        enforceGrantRevokeRuntimePermissionPermissions("updatePermissionFlagsForAllApps");
4172
4173        enforceCrossUserPermission(Binder.getCallingUid(), userId,
4174                true /* requireFullPermission */, true /* checkShell */,
4175                "updatePermissionFlagsForAllApps");
4176
4177        // Only the system can change system fixed flags.
4178        if (getCallingUid() != Process.SYSTEM_UID) {
4179            flagMask &= ~PackageManager.FLAG_PERMISSION_SYSTEM_FIXED;
4180            flagValues &= ~PackageManager.FLAG_PERMISSION_SYSTEM_FIXED;
4181        }
4182
4183        synchronized (mPackages) {
4184            boolean changed = false;
4185            final int packageCount = mPackages.size();
4186            for (int pkgIndex = 0; pkgIndex < packageCount; pkgIndex++) {
4187                final PackageParser.Package pkg = mPackages.valueAt(pkgIndex);
4188                SettingBase sb = (SettingBase) pkg.mExtras;
4189                if (sb == null) {
4190                    continue;
4191                }
4192                PermissionsState permissionsState = sb.getPermissionsState();
4193                changed |= permissionsState.updatePermissionFlagsForAllPermissions(
4194                        userId, flagMask, flagValues);
4195            }
4196            if (changed) {
4197                mSettings.writeRuntimePermissionsForUserLPr(userId, false);
4198            }
4199        }
4200    }
4201
4202    private void enforceGrantRevokeRuntimePermissionPermissions(String message) {
4203        if (mContext.checkCallingOrSelfPermission(Manifest.permission.GRANT_RUNTIME_PERMISSIONS)
4204                != PackageManager.PERMISSION_GRANTED
4205            && mContext.checkCallingOrSelfPermission(Manifest.permission.REVOKE_RUNTIME_PERMISSIONS)
4206                != PackageManager.PERMISSION_GRANTED) {
4207            throw new SecurityException(message + " requires "
4208                    + Manifest.permission.GRANT_RUNTIME_PERMISSIONS + " or "
4209                    + Manifest.permission.REVOKE_RUNTIME_PERMISSIONS);
4210        }
4211    }
4212
4213    @Override
4214    public boolean shouldShowRequestPermissionRationale(String permissionName,
4215            String packageName, int userId) {
4216        if (UserHandle.getCallingUserId() != userId) {
4217            mContext.enforceCallingPermission(
4218                    android.Manifest.permission.INTERACT_ACROSS_USERS_FULL,
4219                    "canShowRequestPermissionRationale for user " + userId);
4220        }
4221
4222        final int uid = getPackageUid(packageName, MATCH_DEBUG_TRIAGED_MISSING, userId);
4223        if (UserHandle.getAppId(getCallingUid()) != UserHandle.getAppId(uid)) {
4224            return false;
4225        }
4226
4227        if (checkPermission(permissionName, packageName, userId)
4228                == PackageManager.PERMISSION_GRANTED) {
4229            return false;
4230        }
4231
4232        final int flags;
4233
4234        final long identity = Binder.clearCallingIdentity();
4235        try {
4236            flags = getPermissionFlags(permissionName,
4237                    packageName, userId);
4238        } finally {
4239            Binder.restoreCallingIdentity(identity);
4240        }
4241
4242        final int fixedFlags = PackageManager.FLAG_PERMISSION_SYSTEM_FIXED
4243                | PackageManager.FLAG_PERMISSION_POLICY_FIXED
4244                | PackageManager.FLAG_PERMISSION_USER_FIXED;
4245
4246        if ((flags & fixedFlags) != 0) {
4247            return false;
4248        }
4249
4250        return (flags & PackageManager.FLAG_PERMISSION_USER_SET) != 0;
4251    }
4252
4253    @Override
4254    public void addOnPermissionsChangeListener(IOnPermissionsChangeListener listener) {
4255        mContext.enforceCallingOrSelfPermission(
4256                Manifest.permission.OBSERVE_GRANT_REVOKE_PERMISSIONS,
4257                "addOnPermissionsChangeListener");
4258
4259        synchronized (mPackages) {
4260            mOnPermissionChangeListeners.addListenerLocked(listener);
4261        }
4262    }
4263
4264    @Override
4265    public void removeOnPermissionsChangeListener(IOnPermissionsChangeListener listener) {
4266        synchronized (mPackages) {
4267            mOnPermissionChangeListeners.removeListenerLocked(listener);
4268        }
4269    }
4270
4271    @Override
4272    public boolean isProtectedBroadcast(String actionName) {
4273        synchronized (mPackages) {
4274            if (mProtectedBroadcasts.contains(actionName)) {
4275                return true;
4276            } else if (actionName != null) {
4277                // TODO: remove these terrible hacks
4278                if (actionName.startsWith("android.net.netmon.lingerExpired")
4279                        || actionName.startsWith("com.android.server.sip.SipWakeupTimer")
4280                        || actionName.startsWith("com.android.internal.telephony.data-reconnect")
4281                        || actionName.startsWith("android.net.netmon.launchCaptivePortalApp")) {
4282                    return true;
4283                }
4284            }
4285        }
4286        return false;
4287    }
4288
4289    @Override
4290    public int checkSignatures(String pkg1, String pkg2) {
4291        synchronized (mPackages) {
4292            final PackageParser.Package p1 = mPackages.get(pkg1);
4293            final PackageParser.Package p2 = mPackages.get(pkg2);
4294            if (p1 == null || p1.mExtras == null
4295                    || p2 == null || p2.mExtras == null) {
4296                return PackageManager.SIGNATURE_UNKNOWN_PACKAGE;
4297            }
4298            return compareSignatures(p1.mSignatures, p2.mSignatures);
4299        }
4300    }
4301
4302    @Override
4303    public int checkUidSignatures(int uid1, int uid2) {
4304        // Map to base uids.
4305        uid1 = UserHandle.getAppId(uid1);
4306        uid2 = UserHandle.getAppId(uid2);
4307        // reader
4308        synchronized (mPackages) {
4309            Signature[] s1;
4310            Signature[] s2;
4311            Object obj = mSettings.getUserIdLPr(uid1);
4312            if (obj != null) {
4313                if (obj instanceof SharedUserSetting) {
4314                    s1 = ((SharedUserSetting)obj).signatures.mSignatures;
4315                } else if (obj instanceof PackageSetting) {
4316                    s1 = ((PackageSetting)obj).signatures.mSignatures;
4317                } else {
4318                    return PackageManager.SIGNATURE_UNKNOWN_PACKAGE;
4319                }
4320            } else {
4321                return PackageManager.SIGNATURE_UNKNOWN_PACKAGE;
4322            }
4323            obj = mSettings.getUserIdLPr(uid2);
4324            if (obj != null) {
4325                if (obj instanceof SharedUserSetting) {
4326                    s2 = ((SharedUserSetting)obj).signatures.mSignatures;
4327                } else if (obj instanceof PackageSetting) {
4328                    s2 = ((PackageSetting)obj).signatures.mSignatures;
4329                } else {
4330                    return PackageManager.SIGNATURE_UNKNOWN_PACKAGE;
4331                }
4332            } else {
4333                return PackageManager.SIGNATURE_UNKNOWN_PACKAGE;
4334            }
4335            return compareSignatures(s1, s2);
4336        }
4337    }
4338
4339    private void killUid(int appId, int userId, String reason) {
4340        final long identity = Binder.clearCallingIdentity();
4341        try {
4342            IActivityManager am = ActivityManagerNative.getDefault();
4343            if (am != null) {
4344                try {
4345                    am.killUid(appId, userId, reason);
4346                } catch (RemoteException e) {
4347                    /* ignore - same process */
4348                }
4349            }
4350        } finally {
4351            Binder.restoreCallingIdentity(identity);
4352        }
4353    }
4354
4355    /**
4356     * Compares two sets of signatures. Returns:
4357     * <br />
4358     * {@link PackageManager#SIGNATURE_NEITHER_SIGNED}: if both signature sets are null,
4359     * <br />
4360     * {@link PackageManager#SIGNATURE_FIRST_NOT_SIGNED}: if the first signature set is null,
4361     * <br />
4362     * {@link PackageManager#SIGNATURE_SECOND_NOT_SIGNED}: if the second signature set is null,
4363     * <br />
4364     * {@link PackageManager#SIGNATURE_MATCH}: if the two signature sets are identical,
4365     * <br />
4366     * {@link PackageManager#SIGNATURE_NO_MATCH}: if the two signature sets differ.
4367     */
4368    static int compareSignatures(Signature[] s1, Signature[] s2) {
4369        if (s1 == null) {
4370            return s2 == null
4371                    ? PackageManager.SIGNATURE_NEITHER_SIGNED
4372                    : PackageManager.SIGNATURE_FIRST_NOT_SIGNED;
4373        }
4374
4375        if (s2 == null) {
4376            return PackageManager.SIGNATURE_SECOND_NOT_SIGNED;
4377        }
4378
4379        if (s1.length != s2.length) {
4380            return PackageManager.SIGNATURE_NO_MATCH;
4381        }
4382
4383        // Since both signature sets are of size 1, we can compare without HashSets.
4384        if (s1.length == 1) {
4385            return s1[0].equals(s2[0]) ?
4386                    PackageManager.SIGNATURE_MATCH :
4387                    PackageManager.SIGNATURE_NO_MATCH;
4388        }
4389
4390        ArraySet<Signature> set1 = new ArraySet<Signature>();
4391        for (Signature sig : s1) {
4392            set1.add(sig);
4393        }
4394        ArraySet<Signature> set2 = new ArraySet<Signature>();
4395        for (Signature sig : s2) {
4396            set2.add(sig);
4397        }
4398        // Make sure s2 contains all signatures in s1.
4399        if (set1.equals(set2)) {
4400            return PackageManager.SIGNATURE_MATCH;
4401        }
4402        return PackageManager.SIGNATURE_NO_MATCH;
4403    }
4404
4405    /**
4406     * If the database version for this type of package (internal storage or
4407     * external storage) is less than the version where package signatures
4408     * were updated, return true.
4409     */
4410    private boolean isCompatSignatureUpdateNeeded(PackageParser.Package scannedPkg) {
4411        final VersionInfo ver = getSettingsVersionForPackage(scannedPkg);
4412        return ver.databaseVersion < DatabaseVersion.SIGNATURE_END_ENTITY;
4413    }
4414
4415    /**
4416     * Used for backward compatibility to make sure any packages with
4417     * certificate chains get upgraded to the new style. {@code existingSigs}
4418     * will be in the old format (since they were stored on disk from before the
4419     * system upgrade) and {@code scannedSigs} will be in the newer format.
4420     */
4421    private int compareSignaturesCompat(PackageSignatures existingSigs,
4422            PackageParser.Package scannedPkg) {
4423        if (!isCompatSignatureUpdateNeeded(scannedPkg)) {
4424            return PackageManager.SIGNATURE_NO_MATCH;
4425        }
4426
4427        ArraySet<Signature> existingSet = new ArraySet<Signature>();
4428        for (Signature sig : existingSigs.mSignatures) {
4429            existingSet.add(sig);
4430        }
4431        ArraySet<Signature> scannedCompatSet = new ArraySet<Signature>();
4432        for (Signature sig : scannedPkg.mSignatures) {
4433            try {
4434                Signature[] chainSignatures = sig.getChainSignatures();
4435                for (Signature chainSig : chainSignatures) {
4436                    scannedCompatSet.add(chainSig);
4437                }
4438            } catch (CertificateEncodingException e) {
4439                scannedCompatSet.add(sig);
4440            }
4441        }
4442        /*
4443         * Make sure the expanded scanned set contains all signatures in the
4444         * existing one.
4445         */
4446        if (scannedCompatSet.equals(existingSet)) {
4447            // Migrate the old signatures to the new scheme.
4448            existingSigs.assignSignatures(scannedPkg.mSignatures);
4449            // The new KeySets will be re-added later in the scanning process.
4450            synchronized (mPackages) {
4451                mSettings.mKeySetManagerService.removeAppKeySetDataLPw(scannedPkg.packageName);
4452            }
4453            return PackageManager.SIGNATURE_MATCH;
4454        }
4455        return PackageManager.SIGNATURE_NO_MATCH;
4456    }
4457
4458    private boolean isRecoverSignatureUpdateNeeded(PackageParser.Package scannedPkg) {
4459        final VersionInfo ver = getSettingsVersionForPackage(scannedPkg);
4460        return ver.databaseVersion < DatabaseVersion.SIGNATURE_MALFORMED_RECOVER;
4461    }
4462
4463    private int compareSignaturesRecover(PackageSignatures existingSigs,
4464            PackageParser.Package scannedPkg) {
4465        if (!isRecoverSignatureUpdateNeeded(scannedPkg)) {
4466            return PackageManager.SIGNATURE_NO_MATCH;
4467        }
4468
4469        String msg = null;
4470        try {
4471            if (Signature.areEffectiveMatch(existingSigs.mSignatures, scannedPkg.mSignatures)) {
4472                logCriticalInfo(Log.INFO, "Recovered effectively matching certificates for "
4473                        + scannedPkg.packageName);
4474                return PackageManager.SIGNATURE_MATCH;
4475            }
4476        } catch (CertificateException e) {
4477            msg = e.getMessage();
4478        }
4479
4480        logCriticalInfo(Log.INFO,
4481                "Failed to recover certificates for " + scannedPkg.packageName + ": " + msg);
4482        return PackageManager.SIGNATURE_NO_MATCH;
4483    }
4484
4485    @Override
4486    public List<String> getAllPackages() {
4487        synchronized (mPackages) {
4488            return new ArrayList<String>(mPackages.keySet());
4489        }
4490    }
4491
4492    @Override
4493    public String[] getPackagesForUid(int uid) {
4494        uid = UserHandle.getAppId(uid);
4495        // reader
4496        synchronized (mPackages) {
4497            Object obj = mSettings.getUserIdLPr(uid);
4498            if (obj instanceof SharedUserSetting) {
4499                final SharedUserSetting sus = (SharedUserSetting) obj;
4500                final int N = sus.packages.size();
4501                final String[] res = new String[N];
4502                final Iterator<PackageSetting> it = sus.packages.iterator();
4503                int i = 0;
4504                while (it.hasNext()) {
4505                    res[i++] = it.next().name;
4506                }
4507                return res;
4508            } else if (obj instanceof PackageSetting) {
4509                final PackageSetting ps = (PackageSetting) obj;
4510                return new String[] { ps.name };
4511            }
4512        }
4513        return null;
4514    }
4515
4516    @Override
4517    public String getNameForUid(int uid) {
4518        // reader
4519        synchronized (mPackages) {
4520            Object obj = mSettings.getUserIdLPr(UserHandle.getAppId(uid));
4521            if (obj instanceof SharedUserSetting) {
4522                final SharedUserSetting sus = (SharedUserSetting) obj;
4523                return sus.name + ":" + sus.userId;
4524            } else if (obj instanceof PackageSetting) {
4525                final PackageSetting ps = (PackageSetting) obj;
4526                return ps.name;
4527            }
4528        }
4529        return null;
4530    }
4531
4532    @Override
4533    public int getUidForSharedUser(String sharedUserName) {
4534        if(sharedUserName == null) {
4535            return -1;
4536        }
4537        // reader
4538        synchronized (mPackages) {
4539            final SharedUserSetting suid = mSettings.getSharedUserLPw(sharedUserName, 0, 0, false);
4540            if (suid == null) {
4541                return -1;
4542            }
4543            return suid.userId;
4544        }
4545    }
4546
4547    @Override
4548    public int getFlagsForUid(int uid) {
4549        synchronized (mPackages) {
4550            Object obj = mSettings.getUserIdLPr(UserHandle.getAppId(uid));
4551            if (obj instanceof SharedUserSetting) {
4552                final SharedUserSetting sus = (SharedUserSetting) obj;
4553                return sus.pkgFlags;
4554            } else if (obj instanceof PackageSetting) {
4555                final PackageSetting ps = (PackageSetting) obj;
4556                return ps.pkgFlags;
4557            }
4558        }
4559        return 0;
4560    }
4561
4562    @Override
4563    public int getPrivateFlagsForUid(int uid) {
4564        synchronized (mPackages) {
4565            Object obj = mSettings.getUserIdLPr(UserHandle.getAppId(uid));
4566            if (obj instanceof SharedUserSetting) {
4567                final SharedUserSetting sus = (SharedUserSetting) obj;
4568                return sus.pkgPrivateFlags;
4569            } else if (obj instanceof PackageSetting) {
4570                final PackageSetting ps = (PackageSetting) obj;
4571                return ps.pkgPrivateFlags;
4572            }
4573        }
4574        return 0;
4575    }
4576
4577    @Override
4578    public boolean isUidPrivileged(int uid) {
4579        uid = UserHandle.getAppId(uid);
4580        // reader
4581        synchronized (mPackages) {
4582            Object obj = mSettings.getUserIdLPr(uid);
4583            if (obj instanceof SharedUserSetting) {
4584                final SharedUserSetting sus = (SharedUserSetting) obj;
4585                final Iterator<PackageSetting> it = sus.packages.iterator();
4586                while (it.hasNext()) {
4587                    if (it.next().isPrivileged()) {
4588                        return true;
4589                    }
4590                }
4591            } else if (obj instanceof PackageSetting) {
4592                final PackageSetting ps = (PackageSetting) obj;
4593                return ps.isPrivileged();
4594            }
4595        }
4596        return false;
4597    }
4598
4599    @Override
4600    public String[] getAppOpPermissionPackages(String permissionName) {
4601        synchronized (mPackages) {
4602            ArraySet<String> pkgs = mAppOpPermissionPackages.get(permissionName);
4603            if (pkgs == null) {
4604                return null;
4605            }
4606            return pkgs.toArray(new String[pkgs.size()]);
4607        }
4608    }
4609
4610    @Override
4611    public ResolveInfo resolveIntent(Intent intent, String resolvedType,
4612            int flags, int userId) {
4613        if (!sUserManager.exists(userId)) return null;
4614        flags = updateFlagsForResolve(flags, userId, intent);
4615        enforceCrossUserPermission(Binder.getCallingUid(), userId,
4616                false /* requireFullPermission */, false /* checkShell */, "resolve intent");
4617        final List<ResolveInfo> query = queryIntentActivitiesInternal(intent, resolvedType, flags,
4618                userId);
4619        final ResolveInfo bestChoice =
4620                chooseBestActivity(intent, resolvedType, flags, query, userId);
4621
4622        if (isEphemeralAllowed(intent, query, userId)) {
4623            final EphemeralResolveInfo ai =
4624                    getEphemeralResolveInfo(intent, resolvedType, userId);
4625            if (ai != null) {
4626                if (DEBUG_EPHEMERAL) {
4627                    Slog.v(TAG, "Returning an EphemeralResolveInfo");
4628                }
4629                bestChoice.ephemeralInstaller = mEphemeralInstallerInfo;
4630                bestChoice.ephemeralResolveInfo = ai;
4631            }
4632        }
4633        return bestChoice;
4634    }
4635
4636    @Override
4637    public void setLastChosenActivity(Intent intent, String resolvedType, int flags,
4638            IntentFilter filter, int match, ComponentName activity) {
4639        final int userId = UserHandle.getCallingUserId();
4640        if (DEBUG_PREFERRED) {
4641            Log.v(TAG, "setLastChosenActivity intent=" + intent
4642                + " resolvedType=" + resolvedType
4643                + " flags=" + flags
4644                + " filter=" + filter
4645                + " match=" + match
4646                + " activity=" + activity);
4647            filter.dump(new PrintStreamPrinter(System.out), "    ");
4648        }
4649        intent.setComponent(null);
4650        final List<ResolveInfo> query = queryIntentActivitiesInternal(intent, resolvedType, flags,
4651                userId);
4652        // Find any earlier preferred or last chosen entries and nuke them
4653        findPreferredActivity(intent, resolvedType,
4654                flags, query, 0, false, true, false, userId);
4655        // Add the new activity as the last chosen for this filter
4656        addPreferredActivityInternal(filter, match, null, activity, false, userId,
4657                "Setting last chosen");
4658    }
4659
4660    @Override
4661    public ResolveInfo getLastChosenActivity(Intent intent, String resolvedType, int flags) {
4662        final int userId = UserHandle.getCallingUserId();
4663        if (DEBUG_PREFERRED) Log.v(TAG, "Querying last chosen activity for " + intent);
4664        final List<ResolveInfo> query = queryIntentActivitiesInternal(intent, resolvedType, flags,
4665                userId);
4666        return findPreferredActivity(intent, resolvedType, flags, query, 0,
4667                false, false, false, userId);
4668    }
4669
4670
4671    private boolean isEphemeralAllowed(
4672            Intent intent, List<ResolveInfo> resolvedActivites, int userId) {
4673        // Short circuit and return early if possible.
4674        if (DISABLE_EPHEMERAL_APPS) {
4675            return false;
4676        }
4677        final int callingUser = UserHandle.getCallingUserId();
4678        if (callingUser != UserHandle.USER_SYSTEM) {
4679            return false;
4680        }
4681        if (mEphemeralResolverConnection == null) {
4682            return false;
4683        }
4684        if (intent.getComponent() != null) {
4685            return false;
4686        }
4687        if (intent.getPackage() != null) {
4688            return false;
4689        }
4690        final boolean isWebUri = hasWebURI(intent);
4691        if (!isWebUri) {
4692            return false;
4693        }
4694        // Deny ephemeral apps if the user chose _ALWAYS or _ALWAYS_ASK for intent resolution.
4695        synchronized (mPackages) {
4696            final int count = resolvedActivites.size();
4697            for (int n = 0; n < count; n++) {
4698                ResolveInfo info = resolvedActivites.get(n);
4699                String packageName = info.activityInfo.packageName;
4700                PackageSetting ps = mSettings.mPackages.get(packageName);
4701                if (ps != null) {
4702                    // Try to get the status from User settings first
4703                    long packedStatus = getDomainVerificationStatusLPr(ps, userId);
4704                    int status = (int) (packedStatus >> 32);
4705                    if (status == INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_ALWAYS
4706                            || status == INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_ALWAYS_ASK) {
4707                        if (DEBUG_EPHEMERAL) {
4708                            Slog.v(TAG, "DENY ephemeral apps;"
4709                                + " pkg: " + packageName + ", status: " + status);
4710                        }
4711                        return false;
4712                    }
4713                }
4714            }
4715        }
4716        // We've exhausted all ways to deny ephemeral application; let the system look for them.
4717        return true;
4718    }
4719
4720    private EphemeralResolveInfo getEphemeralResolveInfo(Intent intent, String resolvedType,
4721            int userId) {
4722        MessageDigest digest = null;
4723        try {
4724            digest = MessageDigest.getInstance(EphemeralResolveInfo.SHA_ALGORITHM);
4725        } catch (NoSuchAlgorithmException e) {
4726            // If we can't create a digest, ignore ephemeral apps.
4727            return null;
4728        }
4729
4730        final byte[] hostBytes = intent.getData().getHost().getBytes();
4731        final byte[] digestBytes = digest.digest(hostBytes);
4732        int shaPrefix =
4733                digestBytes[0] << 24
4734                | digestBytes[1] << 16
4735                | digestBytes[2] << 8
4736                | digestBytes[3] << 0;
4737        final List<EphemeralResolveInfo> ephemeralResolveInfoList =
4738                mEphemeralResolverConnection.getEphemeralResolveInfoList(shaPrefix);
4739        if (ephemeralResolveInfoList == null || ephemeralResolveInfoList.size() == 0) {
4740            // No hash prefix match; there are no ephemeral apps for this domain.
4741            return null;
4742        }
4743        for (int i = ephemeralResolveInfoList.size() - 1; i >= 0; --i) {
4744            EphemeralResolveInfo ephemeralApplication = ephemeralResolveInfoList.get(i);
4745            if (!Arrays.equals(digestBytes, ephemeralApplication.getDigestBytes())) {
4746                continue;
4747            }
4748            final List<IntentFilter> filters = ephemeralApplication.getFilters();
4749            // No filters; this should never happen.
4750            if (filters.isEmpty()) {
4751                continue;
4752            }
4753            // We have a domain match; resolve the filters to see if anything matches.
4754            final EphemeralIntentResolver ephemeralResolver = new EphemeralIntentResolver();
4755            for (int j = filters.size() - 1; j >= 0; --j) {
4756                final EphemeralResolveIntentInfo intentInfo =
4757                        new EphemeralResolveIntentInfo(filters.get(j), ephemeralApplication);
4758                ephemeralResolver.addFilter(intentInfo);
4759            }
4760            List<EphemeralResolveInfo> matchedResolveInfoList = ephemeralResolver.queryIntent(
4761                    intent, resolvedType, false /*defaultOnly*/, userId);
4762            if (!matchedResolveInfoList.isEmpty()) {
4763                return matchedResolveInfoList.get(0);
4764            }
4765        }
4766        // Hash or filter mis-match; no ephemeral apps for this domain.
4767        return null;
4768    }
4769
4770    private ResolveInfo chooseBestActivity(Intent intent, String resolvedType,
4771            int flags, List<ResolveInfo> query, int userId) {
4772        if (query != null) {
4773            final int N = query.size();
4774            if (N == 1) {
4775                return query.get(0);
4776            } else if (N > 1) {
4777                final boolean debug = ((intent.getFlags() & Intent.FLAG_DEBUG_LOG_RESOLUTION) != 0);
4778                // If there is more than one activity with the same priority,
4779                // then let the user decide between them.
4780                ResolveInfo r0 = query.get(0);
4781                ResolveInfo r1 = query.get(1);
4782                if (DEBUG_INTENT_MATCHING || debug) {
4783                    Slog.v(TAG, r0.activityInfo.name + "=" + r0.priority + " vs "
4784                            + r1.activityInfo.name + "=" + r1.priority);
4785                }
4786                // If the first activity has a higher priority, or a different
4787                // default, then it is always desirable to pick it.
4788                if (r0.priority != r1.priority
4789                        || r0.preferredOrder != r1.preferredOrder
4790                        || r0.isDefault != r1.isDefault) {
4791                    return query.get(0);
4792                }
4793                // If we have saved a preference for a preferred activity for
4794                // this Intent, use that.
4795                ResolveInfo ri = findPreferredActivity(intent, resolvedType,
4796                        flags, query, r0.priority, true, false, debug, userId);
4797                if (ri != null) {
4798                    return ri;
4799                }
4800                ri = new ResolveInfo(mResolveInfo);
4801                ri.activityInfo = new ActivityInfo(ri.activityInfo);
4802                ri.activityInfo.applicationInfo = new ApplicationInfo(
4803                        ri.activityInfo.applicationInfo);
4804                if (userId != 0) {
4805                    ri.activityInfo.applicationInfo.uid = UserHandle.getUid(userId,
4806                            UserHandle.getAppId(ri.activityInfo.applicationInfo.uid));
4807                }
4808                // Make sure that the resolver is displayable in car mode
4809                if (ri.activityInfo.metaData == null) ri.activityInfo.metaData = new Bundle();
4810                ri.activityInfo.metaData.putBoolean(Intent.METADATA_DOCK_HOME, true);
4811                return ri;
4812            }
4813        }
4814        return null;
4815    }
4816
4817    private ResolveInfo findPersistentPreferredActivityLP(Intent intent, String resolvedType,
4818            int flags, List<ResolveInfo> query, boolean debug, int userId) {
4819        final int N = query.size();
4820        PersistentPreferredIntentResolver ppir = mSettings.mPersistentPreferredActivities
4821                .get(userId);
4822        // Get the list of persistent preferred activities that handle the intent
4823        if (DEBUG_PREFERRED || debug) Slog.v(TAG, "Looking for presistent preferred activities...");
4824        List<PersistentPreferredActivity> pprefs = ppir != null
4825                ? ppir.queryIntent(intent, resolvedType,
4826                        (flags & PackageManager.MATCH_DEFAULT_ONLY) != 0, userId)
4827                : null;
4828        if (pprefs != null && pprefs.size() > 0) {
4829            final int M = pprefs.size();
4830            for (int i=0; i<M; i++) {
4831                final PersistentPreferredActivity ppa = pprefs.get(i);
4832                if (DEBUG_PREFERRED || debug) {
4833                    Slog.v(TAG, "Checking PersistentPreferredActivity ds="
4834                            + (ppa.countDataSchemes() > 0 ? ppa.getDataScheme(0) : "<none>")
4835                            + "\n  component=" + ppa.mComponent);
4836                    ppa.dump(new LogPrinter(Log.VERBOSE, TAG, Log.LOG_ID_SYSTEM), "  ");
4837                }
4838                final ActivityInfo ai = getActivityInfo(ppa.mComponent,
4839                        flags | MATCH_DISABLED_COMPONENTS, userId);
4840                if (DEBUG_PREFERRED || debug) {
4841                    Slog.v(TAG, "Found persistent preferred activity:");
4842                    if (ai != null) {
4843                        ai.dump(new LogPrinter(Log.VERBOSE, TAG, Log.LOG_ID_SYSTEM), "  ");
4844                    } else {
4845                        Slog.v(TAG, "  null");
4846                    }
4847                }
4848                if (ai == null) {
4849                    // This previously registered persistent preferred activity
4850                    // component is no longer known. Ignore it and do NOT remove it.
4851                    continue;
4852                }
4853                for (int j=0; j<N; j++) {
4854                    final ResolveInfo ri = query.get(j);
4855                    if (!ri.activityInfo.applicationInfo.packageName
4856                            .equals(ai.applicationInfo.packageName)) {
4857                        continue;
4858                    }
4859                    if (!ri.activityInfo.name.equals(ai.name)) {
4860                        continue;
4861                    }
4862                    //  Found a persistent preference that can handle the intent.
4863                    if (DEBUG_PREFERRED || debug) {
4864                        Slog.v(TAG, "Returning persistent preferred activity: " +
4865                                ri.activityInfo.packageName + "/" + ri.activityInfo.name);
4866                    }
4867                    return ri;
4868                }
4869            }
4870        }
4871        return null;
4872    }
4873
4874    // TODO: handle preferred activities missing while user has amnesia
4875    ResolveInfo findPreferredActivity(Intent intent, String resolvedType, int flags,
4876            List<ResolveInfo> query, int priority, boolean always,
4877            boolean removeMatches, boolean debug, int userId) {
4878        if (!sUserManager.exists(userId)) return null;
4879        flags = updateFlagsForResolve(flags, userId, intent);
4880        // writer
4881        synchronized (mPackages) {
4882            if (intent.getSelector() != null) {
4883                intent = intent.getSelector();
4884            }
4885            if (DEBUG_PREFERRED) intent.addFlags(Intent.FLAG_DEBUG_LOG_RESOLUTION);
4886
4887            // Try to find a matching persistent preferred activity.
4888            ResolveInfo pri = findPersistentPreferredActivityLP(intent, resolvedType, flags, query,
4889                    debug, userId);
4890
4891            // If a persistent preferred activity matched, use it.
4892            if (pri != null) {
4893                return pri;
4894            }
4895
4896            PreferredIntentResolver pir = mSettings.mPreferredActivities.get(userId);
4897            // Get the list of preferred activities that handle the intent
4898            if (DEBUG_PREFERRED || debug) Slog.v(TAG, "Looking for preferred activities...");
4899            List<PreferredActivity> prefs = pir != null
4900                    ? pir.queryIntent(intent, resolvedType,
4901                            (flags & PackageManager.MATCH_DEFAULT_ONLY) != 0, userId)
4902                    : null;
4903            if (prefs != null && prefs.size() > 0) {
4904                boolean changed = false;
4905                try {
4906                    // First figure out how good the original match set is.
4907                    // We will only allow preferred activities that came
4908                    // from the same match quality.
4909                    int match = 0;
4910
4911                    if (DEBUG_PREFERRED || debug) Slog.v(TAG, "Figuring out best match...");
4912
4913                    final int N = query.size();
4914                    for (int j=0; j<N; j++) {
4915                        final ResolveInfo ri = query.get(j);
4916                        if (DEBUG_PREFERRED || debug) Slog.v(TAG, "Match for " + ri.activityInfo
4917                                + ": 0x" + Integer.toHexString(match));
4918                        if (ri.match > match) {
4919                            match = ri.match;
4920                        }
4921                    }
4922
4923                    if (DEBUG_PREFERRED || debug) Slog.v(TAG, "Best match: 0x"
4924                            + Integer.toHexString(match));
4925
4926                    match &= IntentFilter.MATCH_CATEGORY_MASK;
4927                    final int M = prefs.size();
4928                    for (int i=0; i<M; i++) {
4929                        final PreferredActivity pa = prefs.get(i);
4930                        if (DEBUG_PREFERRED || debug) {
4931                            Slog.v(TAG, "Checking PreferredActivity ds="
4932                                    + (pa.countDataSchemes() > 0 ? pa.getDataScheme(0) : "<none>")
4933                                    + "\n  component=" + pa.mPref.mComponent);
4934                            pa.dump(new LogPrinter(Log.VERBOSE, TAG, Log.LOG_ID_SYSTEM), "  ");
4935                        }
4936                        if (pa.mPref.mMatch != match) {
4937                            if (DEBUG_PREFERRED || debug) Slog.v(TAG, "Skipping bad match "
4938                                    + Integer.toHexString(pa.mPref.mMatch));
4939                            continue;
4940                        }
4941                        // If it's not an "always" type preferred activity and that's what we're
4942                        // looking for, skip it.
4943                        if (always && !pa.mPref.mAlways) {
4944                            if (DEBUG_PREFERRED || debug) Slog.v(TAG, "Skipping mAlways=false entry");
4945                            continue;
4946                        }
4947                        final ActivityInfo ai = getActivityInfo(pa.mPref.mComponent,
4948                                flags | MATCH_DISABLED_COMPONENTS, userId);
4949                        if (DEBUG_PREFERRED || debug) {
4950                            Slog.v(TAG, "Found preferred activity:");
4951                            if (ai != null) {
4952                                ai.dump(new LogPrinter(Log.VERBOSE, TAG, Log.LOG_ID_SYSTEM), "  ");
4953                            } else {
4954                                Slog.v(TAG, "  null");
4955                            }
4956                        }
4957                        if (ai == null) {
4958                            // This previously registered preferred activity
4959                            // component is no longer known.  Most likely an update
4960                            // to the app was installed and in the new version this
4961                            // component no longer exists.  Clean it up by removing
4962                            // it from the preferred activities list, and skip it.
4963                            Slog.w(TAG, "Removing dangling preferred activity: "
4964                                    + pa.mPref.mComponent);
4965                            pir.removeFilter(pa);
4966                            changed = true;
4967                            continue;
4968                        }
4969                        for (int j=0; j<N; j++) {
4970                            final ResolveInfo ri = query.get(j);
4971                            if (!ri.activityInfo.applicationInfo.packageName
4972                                    .equals(ai.applicationInfo.packageName)) {
4973                                continue;
4974                            }
4975                            if (!ri.activityInfo.name.equals(ai.name)) {
4976                                continue;
4977                            }
4978
4979                            if (removeMatches) {
4980                                pir.removeFilter(pa);
4981                                changed = true;
4982                                if (DEBUG_PREFERRED) {
4983                                    Slog.v(TAG, "Removing match " + pa.mPref.mComponent);
4984                                }
4985                                break;
4986                            }
4987
4988                            // Okay we found a previously set preferred or last chosen app.
4989                            // If the result set is different from when this
4990                            // was created, we need to clear it and re-ask the
4991                            // user their preference, if we're looking for an "always" type entry.
4992                            if (always && !pa.mPref.sameSet(query)) {
4993                                Slog.i(TAG, "Result set changed, dropping preferred activity for "
4994                                        + intent + " type " + resolvedType);
4995                                if (DEBUG_PREFERRED) {
4996                                    Slog.v(TAG, "Removing preferred activity since set changed "
4997                                            + pa.mPref.mComponent);
4998                                }
4999                                pir.removeFilter(pa);
5000                                // Re-add the filter as a "last chosen" entry (!always)
5001                                PreferredActivity lastChosen = new PreferredActivity(
5002                                        pa, pa.mPref.mMatch, null, pa.mPref.mComponent, false);
5003                                pir.addFilter(lastChosen);
5004                                changed = true;
5005                                return null;
5006                            }
5007
5008                            // Yay! Either the set matched or we're looking for the last chosen
5009                            if (DEBUG_PREFERRED || debug) Slog.v(TAG, "Returning preferred activity: "
5010                                    + ri.activityInfo.packageName + "/" + ri.activityInfo.name);
5011                            return ri;
5012                        }
5013                    }
5014                } finally {
5015                    if (changed) {
5016                        if (DEBUG_PREFERRED) {
5017                            Slog.v(TAG, "Preferred activity bookkeeping changed; writing restrictions");
5018                        }
5019                        scheduleWritePackageRestrictionsLocked(userId);
5020                    }
5021                }
5022            }
5023        }
5024        if (DEBUG_PREFERRED || debug) Slog.v(TAG, "No preferred activity to return");
5025        return null;
5026    }
5027
5028    /*
5029     * Returns if intent can be forwarded from the sourceUserId to the targetUserId
5030     */
5031    @Override
5032    public boolean canForwardTo(Intent intent, String resolvedType, int sourceUserId,
5033            int targetUserId) {
5034        mContext.enforceCallingOrSelfPermission(
5035                android.Manifest.permission.INTERACT_ACROSS_USERS_FULL, null);
5036        List<CrossProfileIntentFilter> matches =
5037                getMatchingCrossProfileIntentFilters(intent, resolvedType, sourceUserId);
5038        if (matches != null) {
5039            int size = matches.size();
5040            for (int i = 0; i < size; i++) {
5041                if (matches.get(i).getTargetUserId() == targetUserId) return true;
5042            }
5043        }
5044        if (hasWebURI(intent)) {
5045            // cross-profile app linking works only towards the parent.
5046            final UserInfo parent = getProfileParent(sourceUserId);
5047            synchronized(mPackages) {
5048                int flags = updateFlagsForResolve(0, parent.id, intent);
5049                CrossProfileDomainInfo xpDomainInfo = getCrossProfileDomainPreferredLpr(
5050                        intent, resolvedType, flags, sourceUserId, parent.id);
5051                return xpDomainInfo != null;
5052            }
5053        }
5054        return false;
5055    }
5056
5057    private UserInfo getProfileParent(int userId) {
5058        final long identity = Binder.clearCallingIdentity();
5059        try {
5060            return sUserManager.getProfileParent(userId);
5061        } finally {
5062            Binder.restoreCallingIdentity(identity);
5063        }
5064    }
5065
5066    private List<CrossProfileIntentFilter> getMatchingCrossProfileIntentFilters(Intent intent,
5067            String resolvedType, int userId) {
5068        CrossProfileIntentResolver resolver = mSettings.mCrossProfileIntentResolvers.get(userId);
5069        if (resolver != null) {
5070            return resolver.queryIntent(intent, resolvedType, false, userId);
5071        }
5072        return null;
5073    }
5074
5075    @Override
5076    public @NonNull ParceledListSlice<ResolveInfo> queryIntentActivities(Intent intent,
5077            String resolvedType, int flags, int userId) {
5078        return new ParceledListSlice<>(
5079                queryIntentActivitiesInternal(intent, resolvedType, flags, userId));
5080    }
5081
5082    private @NonNull List<ResolveInfo> queryIntentActivitiesInternal(Intent intent,
5083            String resolvedType, int flags, int userId) {
5084        if (!sUserManager.exists(userId)) return Collections.emptyList();
5085        flags = updateFlagsForResolve(flags, userId, intent);
5086        enforceCrossUserPermission(Binder.getCallingUid(), userId,
5087                false /* requireFullPermission */, false /* checkShell */,
5088                "query intent activities");
5089        ComponentName comp = intent.getComponent();
5090        if (comp == null) {
5091            if (intent.getSelector() != null) {
5092                intent = intent.getSelector();
5093                comp = intent.getComponent();
5094            }
5095        }
5096
5097        if (comp != null) {
5098            final List<ResolveInfo> list = new ArrayList<ResolveInfo>(1);
5099            final ActivityInfo ai = getActivityInfo(comp, flags, userId);
5100            if (ai != null) {
5101                final ResolveInfo ri = new ResolveInfo();
5102                ri.activityInfo = ai;
5103                list.add(ri);
5104            }
5105            return list;
5106        }
5107
5108        // reader
5109        synchronized (mPackages) {
5110            final String pkgName = intent.getPackage();
5111            if (pkgName == null) {
5112                List<CrossProfileIntentFilter> matchingFilters =
5113                        getMatchingCrossProfileIntentFilters(intent, resolvedType, userId);
5114                // Check for results that need to skip the current profile.
5115                ResolveInfo xpResolveInfo  = querySkipCurrentProfileIntents(matchingFilters, intent,
5116                        resolvedType, flags, userId);
5117                if (xpResolveInfo != null) {
5118                    List<ResolveInfo> result = new ArrayList<ResolveInfo>(1);
5119                    result.add(xpResolveInfo);
5120                    return filterIfNotSystemUser(result, userId);
5121                }
5122
5123                // Check for results in the current profile.
5124                List<ResolveInfo> result = mActivities.queryIntent(
5125                        intent, resolvedType, flags, userId);
5126                result = filterIfNotSystemUser(result, userId);
5127
5128                // Check for cross profile results.
5129                boolean hasNonNegativePriorityResult = hasNonNegativePriority(result);
5130                xpResolveInfo = queryCrossProfileIntents(
5131                        matchingFilters, intent, resolvedType, flags, userId,
5132                        hasNonNegativePriorityResult);
5133                if (xpResolveInfo != null && isUserEnabled(xpResolveInfo.targetUserId)) {
5134                    boolean isVisibleToUser = filterIfNotSystemUser(
5135                            Collections.singletonList(xpResolveInfo), userId).size() > 0;
5136                    if (isVisibleToUser) {
5137                        result.add(xpResolveInfo);
5138                        Collections.sort(result, mResolvePrioritySorter);
5139                    }
5140                }
5141                if (hasWebURI(intent)) {
5142                    CrossProfileDomainInfo xpDomainInfo = null;
5143                    final UserInfo parent = getProfileParent(userId);
5144                    if (parent != null) {
5145                        xpDomainInfo = getCrossProfileDomainPreferredLpr(intent, resolvedType,
5146                                flags, userId, parent.id);
5147                    }
5148                    if (xpDomainInfo != null) {
5149                        if (xpResolveInfo != null) {
5150                            // If we didn't remove it, the cross-profile ResolveInfo would be twice
5151                            // in the result.
5152                            result.remove(xpResolveInfo);
5153                        }
5154                        if (result.size() == 0) {
5155                            result.add(xpDomainInfo.resolveInfo);
5156                            return result;
5157                        }
5158                    } else if (result.size() <= 1) {
5159                        return result;
5160                    }
5161                    result = filterCandidatesWithDomainPreferredActivitiesLPr(intent, flags, result,
5162                            xpDomainInfo, userId);
5163                    Collections.sort(result, mResolvePrioritySorter);
5164                }
5165                return result;
5166            }
5167            final PackageParser.Package pkg = mPackages.get(pkgName);
5168            if (pkg != null) {
5169                return filterIfNotSystemUser(
5170                        mActivities.queryIntentForPackage(
5171                                intent, resolvedType, flags, pkg.activities, userId),
5172                        userId);
5173            }
5174            return new ArrayList<ResolveInfo>();
5175        }
5176    }
5177
5178    private static class CrossProfileDomainInfo {
5179        /* ResolveInfo for IntentForwarderActivity to send the intent to the other profile */
5180        ResolveInfo resolveInfo;
5181        /* Best domain verification status of the activities found in the other profile */
5182        int bestDomainVerificationStatus;
5183    }
5184
5185    private CrossProfileDomainInfo getCrossProfileDomainPreferredLpr(Intent intent,
5186            String resolvedType, int flags, int sourceUserId, int parentUserId) {
5187        if (!sUserManager.hasUserRestriction(UserManager.ALLOW_PARENT_PROFILE_APP_LINKING,
5188                sourceUserId)) {
5189            return null;
5190        }
5191        List<ResolveInfo> resultTargetUser = mActivities.queryIntent(intent,
5192                resolvedType, flags, parentUserId);
5193
5194        if (resultTargetUser == null || resultTargetUser.isEmpty()) {
5195            return null;
5196        }
5197        CrossProfileDomainInfo result = null;
5198        int size = resultTargetUser.size();
5199        for (int i = 0; i < size; i++) {
5200            ResolveInfo riTargetUser = resultTargetUser.get(i);
5201            // Intent filter verification is only for filters that specify a host. So don't return
5202            // those that handle all web uris.
5203            if (riTargetUser.handleAllWebDataURI) {
5204                continue;
5205            }
5206            String packageName = riTargetUser.activityInfo.packageName;
5207            PackageSetting ps = mSettings.mPackages.get(packageName);
5208            if (ps == null) {
5209                continue;
5210            }
5211            long verificationState = getDomainVerificationStatusLPr(ps, parentUserId);
5212            int status = (int)(verificationState >> 32);
5213            if (result == null) {
5214                result = new CrossProfileDomainInfo();
5215                result.resolveInfo = createForwardingResolveInfoUnchecked(new IntentFilter(),
5216                        sourceUserId, parentUserId);
5217                result.bestDomainVerificationStatus = status;
5218            } else {
5219                result.bestDomainVerificationStatus = bestDomainVerificationStatus(status,
5220                        result.bestDomainVerificationStatus);
5221            }
5222        }
5223        // Don't consider matches with status NEVER across profiles.
5224        if (result != null && result.bestDomainVerificationStatus
5225                == INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_NEVER) {
5226            return null;
5227        }
5228        return result;
5229    }
5230
5231    /**
5232     * Verification statuses are ordered from the worse to the best, except for
5233     * INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_NEVER, which is the worse.
5234     */
5235    private int bestDomainVerificationStatus(int status1, int status2) {
5236        if (status1 == INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_NEVER) {
5237            return status2;
5238        }
5239        if (status2 == INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_NEVER) {
5240            return status1;
5241        }
5242        return (int) MathUtils.max(status1, status2);
5243    }
5244
5245    private boolean isUserEnabled(int userId) {
5246        long callingId = Binder.clearCallingIdentity();
5247        try {
5248            UserInfo userInfo = sUserManager.getUserInfo(userId);
5249            return userInfo != null && userInfo.isEnabled();
5250        } finally {
5251            Binder.restoreCallingIdentity(callingId);
5252        }
5253    }
5254
5255    /**
5256     * Filter out activities with systemUserOnly flag set, when current user is not System.
5257     *
5258     * @return filtered list
5259     */
5260    private List<ResolveInfo> filterIfNotSystemUser(List<ResolveInfo> resolveInfos, int userId) {
5261        if (userId == UserHandle.USER_SYSTEM) {
5262            return resolveInfos;
5263        }
5264        for (int i = resolveInfos.size() - 1; i >= 0; i--) {
5265            ResolveInfo info = resolveInfos.get(i);
5266            if ((info.activityInfo.flags & ActivityInfo.FLAG_SYSTEM_USER_ONLY) != 0) {
5267                resolveInfos.remove(i);
5268            }
5269        }
5270        return resolveInfos;
5271    }
5272
5273    /**
5274     * @param resolveInfos list of resolve infos in descending priority order
5275     * @return if the list contains a resolve info with non-negative priority
5276     */
5277    private boolean hasNonNegativePriority(List<ResolveInfo> resolveInfos) {
5278        return resolveInfos.size() > 0 && resolveInfos.get(0).priority >= 0;
5279    }
5280
5281    private static boolean hasWebURI(Intent intent) {
5282        if (intent.getData() == null) {
5283            return false;
5284        }
5285        final String scheme = intent.getScheme();
5286        if (TextUtils.isEmpty(scheme)) {
5287            return false;
5288        }
5289        return scheme.equals(IntentFilter.SCHEME_HTTP) || scheme.equals(IntentFilter.SCHEME_HTTPS);
5290    }
5291
5292    private List<ResolveInfo> filterCandidatesWithDomainPreferredActivitiesLPr(Intent intent,
5293            int matchFlags, List<ResolveInfo> candidates, CrossProfileDomainInfo xpDomainInfo,
5294            int userId) {
5295        final boolean debug = (intent.getFlags() & Intent.FLAG_DEBUG_LOG_RESOLUTION) != 0;
5296
5297        if (DEBUG_PREFERRED || DEBUG_DOMAIN_VERIFICATION) {
5298            Slog.v(TAG, "Filtering results with preferred activities. Candidates count: " +
5299                    candidates.size());
5300        }
5301
5302        ArrayList<ResolveInfo> result = new ArrayList<ResolveInfo>();
5303        ArrayList<ResolveInfo> alwaysList = new ArrayList<ResolveInfo>();
5304        ArrayList<ResolveInfo> undefinedList = new ArrayList<ResolveInfo>();
5305        ArrayList<ResolveInfo> alwaysAskList = new ArrayList<ResolveInfo>();
5306        ArrayList<ResolveInfo> neverList = new ArrayList<ResolveInfo>();
5307        ArrayList<ResolveInfo> matchAllList = new ArrayList<ResolveInfo>();
5308
5309        synchronized (mPackages) {
5310            final int count = candidates.size();
5311            // First, try to use linked apps. Partition the candidates into four lists:
5312            // one for the final results, one for the "do not use ever", one for "undefined status"
5313            // and finally one for "browser app type".
5314            for (int n=0; n<count; n++) {
5315                ResolveInfo info = candidates.get(n);
5316                String packageName = info.activityInfo.packageName;
5317                PackageSetting ps = mSettings.mPackages.get(packageName);
5318                if (ps != null) {
5319                    // Add to the special match all list (Browser use case)
5320                    if (info.handleAllWebDataURI) {
5321                        matchAllList.add(info);
5322                        continue;
5323                    }
5324                    // Try to get the status from User settings first
5325                    long packedStatus = getDomainVerificationStatusLPr(ps, userId);
5326                    int status = (int)(packedStatus >> 32);
5327                    int linkGeneration = (int)(packedStatus & 0xFFFFFFFF);
5328                    if (status == INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_ALWAYS) {
5329                        if (DEBUG_DOMAIN_VERIFICATION) {
5330                            Slog.i(TAG, "  + always: " + info.activityInfo.packageName
5331                                    + " : linkgen=" + linkGeneration);
5332                        }
5333                        // Use link-enabled generation as preferredOrder, i.e.
5334                        // prefer newly-enabled over earlier-enabled.
5335                        info.preferredOrder = linkGeneration;
5336                        alwaysList.add(info);
5337                    } else if (status == INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_NEVER) {
5338                        if (DEBUG_DOMAIN_VERIFICATION) {
5339                            Slog.i(TAG, "  + never: " + info.activityInfo.packageName);
5340                        }
5341                        neverList.add(info);
5342                    } else if (status == INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_ALWAYS_ASK) {
5343                        if (DEBUG_DOMAIN_VERIFICATION) {
5344                            Slog.i(TAG, "  + always-ask: " + info.activityInfo.packageName);
5345                        }
5346                        alwaysAskList.add(info);
5347                    } else if (status == INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_UNDEFINED ||
5348                            status == INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_ASK) {
5349                        if (DEBUG_DOMAIN_VERIFICATION) {
5350                            Slog.i(TAG, "  + ask: " + info.activityInfo.packageName);
5351                        }
5352                        undefinedList.add(info);
5353                    }
5354                }
5355            }
5356
5357            // We'll want to include browser possibilities in a few cases
5358            boolean includeBrowser = false;
5359
5360            // First try to add the "always" resolution(s) for the current user, if any
5361            if (alwaysList.size() > 0) {
5362                result.addAll(alwaysList);
5363            } else {
5364                // Add all undefined apps as we want them to appear in the disambiguation dialog.
5365                result.addAll(undefinedList);
5366                // Maybe add one for the other profile.
5367                if (xpDomainInfo != null && (
5368                        xpDomainInfo.bestDomainVerificationStatus
5369                        != INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_NEVER)) {
5370                    result.add(xpDomainInfo.resolveInfo);
5371                }
5372                includeBrowser = true;
5373            }
5374
5375            // The presence of any 'always ask' alternatives means we'll also offer browsers.
5376            // If there were 'always' entries their preferred order has been set, so we also
5377            // back that off to make the alternatives equivalent
5378            if (alwaysAskList.size() > 0) {
5379                for (ResolveInfo i : result) {
5380                    i.preferredOrder = 0;
5381                }
5382                result.addAll(alwaysAskList);
5383                includeBrowser = true;
5384            }
5385
5386            if (includeBrowser) {
5387                // Also add browsers (all of them or only the default one)
5388                if (DEBUG_DOMAIN_VERIFICATION) {
5389                    Slog.v(TAG, "   ...including browsers in candidate set");
5390                }
5391                if ((matchFlags & MATCH_ALL) != 0) {
5392                    result.addAll(matchAllList);
5393                } else {
5394                    // Browser/generic handling case.  If there's a default browser, go straight
5395                    // to that (but only if there is no other higher-priority match).
5396                    final String defaultBrowserPackageName = getDefaultBrowserPackageName(userId);
5397                    int maxMatchPrio = 0;
5398                    ResolveInfo defaultBrowserMatch = null;
5399                    final int numCandidates = matchAllList.size();
5400                    for (int n = 0; n < numCandidates; n++) {
5401                        ResolveInfo info = matchAllList.get(n);
5402                        // track the highest overall match priority...
5403                        if (info.priority > maxMatchPrio) {
5404                            maxMatchPrio = info.priority;
5405                        }
5406                        // ...and the highest-priority default browser match
5407                        if (info.activityInfo.packageName.equals(defaultBrowserPackageName)) {
5408                            if (defaultBrowserMatch == null
5409                                    || (defaultBrowserMatch.priority < info.priority)) {
5410                                if (debug) {
5411                                    Slog.v(TAG, "Considering default browser match " + info);
5412                                }
5413                                defaultBrowserMatch = info;
5414                            }
5415                        }
5416                    }
5417                    if (defaultBrowserMatch != null
5418                            && defaultBrowserMatch.priority >= maxMatchPrio
5419                            && !TextUtils.isEmpty(defaultBrowserPackageName))
5420                    {
5421                        if (debug) {
5422                            Slog.v(TAG, "Default browser match " + defaultBrowserMatch);
5423                        }
5424                        result.add(defaultBrowserMatch);
5425                    } else {
5426                        result.addAll(matchAllList);
5427                    }
5428                }
5429
5430                // If there is nothing selected, add all candidates and remove the ones that the user
5431                // has explicitly put into the INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_NEVER state
5432                if (result.size() == 0) {
5433                    result.addAll(candidates);
5434                    result.removeAll(neverList);
5435                }
5436            }
5437        }
5438        if (DEBUG_PREFERRED || DEBUG_DOMAIN_VERIFICATION) {
5439            Slog.v(TAG, "Filtered results with preferred activities. New candidates count: " +
5440                    result.size());
5441            for (ResolveInfo info : result) {
5442                Slog.v(TAG, "  + " + info.activityInfo);
5443            }
5444        }
5445        return result;
5446    }
5447
5448    // Returns a packed value as a long:
5449    //
5450    // high 'int'-sized word: link status: undefined/ask/never/always.
5451    // low 'int'-sized word: relative priority among 'always' results.
5452    private long getDomainVerificationStatusLPr(PackageSetting ps, int userId) {
5453        long result = ps.getDomainVerificationStatusForUser(userId);
5454        // if none available, get the master status
5455        if (result >> 32 == INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_UNDEFINED) {
5456            if (ps.getIntentFilterVerificationInfo() != null) {
5457                result = ((long)ps.getIntentFilterVerificationInfo().getStatus()) << 32;
5458            }
5459        }
5460        return result;
5461    }
5462
5463    private ResolveInfo querySkipCurrentProfileIntents(
5464            List<CrossProfileIntentFilter> matchingFilters, Intent intent, String resolvedType,
5465            int flags, int sourceUserId) {
5466        if (matchingFilters != null) {
5467            int size = matchingFilters.size();
5468            for (int i = 0; i < size; i ++) {
5469                CrossProfileIntentFilter filter = matchingFilters.get(i);
5470                if ((filter.getFlags() & PackageManager.SKIP_CURRENT_PROFILE) != 0) {
5471                    // Checking if there are activities in the target user that can handle the
5472                    // intent.
5473                    ResolveInfo resolveInfo = createForwardingResolveInfo(filter, intent,
5474                            resolvedType, flags, sourceUserId);
5475                    if (resolveInfo != null) {
5476                        return resolveInfo;
5477                    }
5478                }
5479            }
5480        }
5481        return null;
5482    }
5483
5484    // Return matching ResolveInfo in target user if any.
5485    private ResolveInfo queryCrossProfileIntents(
5486            List<CrossProfileIntentFilter> matchingFilters, Intent intent, String resolvedType,
5487            int flags, int sourceUserId, boolean matchInCurrentProfile) {
5488        if (matchingFilters != null) {
5489            // Two {@link CrossProfileIntentFilter}s can have the same targetUserId and
5490            // match the same intent. For performance reasons, it is better not to
5491            // run queryIntent twice for the same userId
5492            SparseBooleanArray alreadyTriedUserIds = new SparseBooleanArray();
5493            int size = matchingFilters.size();
5494            for (int i = 0; i < size; i++) {
5495                CrossProfileIntentFilter filter = matchingFilters.get(i);
5496                int targetUserId = filter.getTargetUserId();
5497                boolean skipCurrentProfile =
5498                        (filter.getFlags() & PackageManager.SKIP_CURRENT_PROFILE) != 0;
5499                boolean skipCurrentProfileIfNoMatchFound =
5500                        (filter.getFlags() & PackageManager.ONLY_IF_NO_MATCH_FOUND) != 0;
5501                if (!skipCurrentProfile && !alreadyTriedUserIds.get(targetUserId)
5502                        && (!skipCurrentProfileIfNoMatchFound || !matchInCurrentProfile)) {
5503                    // Checking if there are activities in the target user that can handle the
5504                    // intent.
5505                    ResolveInfo resolveInfo = createForwardingResolveInfo(filter, intent,
5506                            resolvedType, flags, sourceUserId);
5507                    if (resolveInfo != null) return resolveInfo;
5508                    alreadyTriedUserIds.put(targetUserId, true);
5509                }
5510            }
5511        }
5512        return null;
5513    }
5514
5515    /**
5516     * If the filter's target user can handle the intent and is enabled: returns a ResolveInfo that
5517     * will forward the intent to the filter's target user.
5518     * Otherwise, returns null.
5519     */
5520    private ResolveInfo createForwardingResolveInfo(CrossProfileIntentFilter filter, Intent intent,
5521            String resolvedType, int flags, int sourceUserId) {
5522        int targetUserId = filter.getTargetUserId();
5523        List<ResolveInfo> resultTargetUser = mActivities.queryIntent(intent,
5524                resolvedType, flags, targetUserId);
5525        if (resultTargetUser != null && isUserEnabled(targetUserId)) {
5526            // If all the matches in the target profile are suspended, return null.
5527            for (int i = resultTargetUser.size() - 1; i >= 0; i--) {
5528                if ((resultTargetUser.get(i).activityInfo.applicationInfo.flags
5529                        & ApplicationInfo.FLAG_SUSPENDED) == 0) {
5530                    return createForwardingResolveInfoUnchecked(filter, sourceUserId,
5531                            targetUserId);
5532                }
5533            }
5534        }
5535        return null;
5536    }
5537
5538    private ResolveInfo createForwardingResolveInfoUnchecked(IntentFilter filter,
5539            int sourceUserId, int targetUserId) {
5540        ResolveInfo forwardingResolveInfo = new ResolveInfo();
5541        long ident = Binder.clearCallingIdentity();
5542        boolean targetIsProfile;
5543        try {
5544            targetIsProfile = sUserManager.getUserInfo(targetUserId).isManagedProfile();
5545        } finally {
5546            Binder.restoreCallingIdentity(ident);
5547        }
5548        String className;
5549        if (targetIsProfile) {
5550            className = FORWARD_INTENT_TO_MANAGED_PROFILE;
5551        } else {
5552            className = FORWARD_INTENT_TO_PARENT;
5553        }
5554        ComponentName forwardingActivityComponentName = new ComponentName(
5555                mAndroidApplication.packageName, className);
5556        ActivityInfo forwardingActivityInfo = getActivityInfo(forwardingActivityComponentName, 0,
5557                sourceUserId);
5558        if (!targetIsProfile) {
5559            forwardingActivityInfo.showUserIcon = targetUserId;
5560            forwardingResolveInfo.noResourceId = true;
5561        }
5562        forwardingResolveInfo.activityInfo = forwardingActivityInfo;
5563        forwardingResolveInfo.priority = 0;
5564        forwardingResolveInfo.preferredOrder = 0;
5565        forwardingResolveInfo.match = 0;
5566        forwardingResolveInfo.isDefault = true;
5567        forwardingResolveInfo.filter = filter;
5568        forwardingResolveInfo.targetUserId = targetUserId;
5569        return forwardingResolveInfo;
5570    }
5571
5572    @Override
5573    public @NonNull ParceledListSlice<ResolveInfo> queryIntentActivityOptions(ComponentName caller,
5574            Intent[] specifics, String[] specificTypes, Intent intent,
5575            String resolvedType, int flags, int userId) {
5576        return new ParceledListSlice<>(queryIntentActivityOptionsInternal(caller, specifics,
5577                specificTypes, intent, resolvedType, flags, userId));
5578    }
5579
5580    private @NonNull List<ResolveInfo> queryIntentActivityOptionsInternal(ComponentName caller,
5581            Intent[] specifics, String[] specificTypes, Intent intent,
5582            String resolvedType, int flags, int userId) {
5583        if (!sUserManager.exists(userId)) return Collections.emptyList();
5584        flags = updateFlagsForResolve(flags, userId, intent);
5585        enforceCrossUserPermission(Binder.getCallingUid(), userId,
5586                false /* requireFullPermission */, false /* checkShell */,
5587                "query intent activity options");
5588        final String resultsAction = intent.getAction();
5589
5590        final List<ResolveInfo> results = queryIntentActivitiesInternal(intent, resolvedType, flags
5591                | PackageManager.GET_RESOLVED_FILTER, userId);
5592
5593        if (DEBUG_INTENT_MATCHING) {
5594            Log.v(TAG, "Query " + intent + ": " + results);
5595        }
5596
5597        int specificsPos = 0;
5598        int N;
5599
5600        // todo: note that the algorithm used here is O(N^2).  This
5601        // isn't a problem in our current environment, but if we start running
5602        // into situations where we have more than 5 or 10 matches then this
5603        // should probably be changed to something smarter...
5604
5605        // First we go through and resolve each of the specific items
5606        // that were supplied, taking care of removing any corresponding
5607        // duplicate items in the generic resolve list.
5608        if (specifics != null) {
5609            for (int i=0; i<specifics.length; i++) {
5610                final Intent sintent = specifics[i];
5611                if (sintent == null) {
5612                    continue;
5613                }
5614
5615                if (DEBUG_INTENT_MATCHING) {
5616                    Log.v(TAG, "Specific #" + i + ": " + sintent);
5617                }
5618
5619                String action = sintent.getAction();
5620                if (resultsAction != null && resultsAction.equals(action)) {
5621                    // If this action was explicitly requested, then don't
5622                    // remove things that have it.
5623                    action = null;
5624                }
5625
5626                ResolveInfo ri = null;
5627                ActivityInfo ai = null;
5628
5629                ComponentName comp = sintent.getComponent();
5630                if (comp == null) {
5631                    ri = resolveIntent(
5632                        sintent,
5633                        specificTypes != null ? specificTypes[i] : null,
5634                            flags, userId);
5635                    if (ri == null) {
5636                        continue;
5637                    }
5638                    if (ri == mResolveInfo) {
5639                        // ACK!  Must do something better with this.
5640                    }
5641                    ai = ri.activityInfo;
5642                    comp = new ComponentName(ai.applicationInfo.packageName,
5643                            ai.name);
5644                } else {
5645                    ai = getActivityInfo(comp, flags, userId);
5646                    if (ai == null) {
5647                        continue;
5648                    }
5649                }
5650
5651                // Look for any generic query activities that are duplicates
5652                // of this specific one, and remove them from the results.
5653                if (DEBUG_INTENT_MATCHING) Log.v(TAG, "Specific #" + i + ": " + ai);
5654                N = results.size();
5655                int j;
5656                for (j=specificsPos; j<N; j++) {
5657                    ResolveInfo sri = results.get(j);
5658                    if ((sri.activityInfo.name.equals(comp.getClassName())
5659                            && sri.activityInfo.applicationInfo.packageName.equals(
5660                                    comp.getPackageName()))
5661                        || (action != null && sri.filter.matchAction(action))) {
5662                        results.remove(j);
5663                        if (DEBUG_INTENT_MATCHING) Log.v(
5664                            TAG, "Removing duplicate item from " + j
5665                            + " due to specific " + specificsPos);
5666                        if (ri == null) {
5667                            ri = sri;
5668                        }
5669                        j--;
5670                        N--;
5671                    }
5672                }
5673
5674                // Add this specific item to its proper place.
5675                if (ri == null) {
5676                    ri = new ResolveInfo();
5677                    ri.activityInfo = ai;
5678                }
5679                results.add(specificsPos, ri);
5680                ri.specificIndex = i;
5681                specificsPos++;
5682            }
5683        }
5684
5685        // Now we go through the remaining generic results and remove any
5686        // duplicate actions that are found here.
5687        N = results.size();
5688        for (int i=specificsPos; i<N-1; i++) {
5689            final ResolveInfo rii = results.get(i);
5690            if (rii.filter == null) {
5691                continue;
5692            }
5693
5694            // Iterate over all of the actions of this result's intent
5695            // filter...  typically this should be just one.
5696            final Iterator<String> it = rii.filter.actionsIterator();
5697            if (it == null) {
5698                continue;
5699            }
5700            while (it.hasNext()) {
5701                final String action = it.next();
5702                if (resultsAction != null && resultsAction.equals(action)) {
5703                    // If this action was explicitly requested, then don't
5704                    // remove things that have it.
5705                    continue;
5706                }
5707                for (int j=i+1; j<N; j++) {
5708                    final ResolveInfo rij = results.get(j);
5709                    if (rij.filter != null && rij.filter.hasAction(action)) {
5710                        results.remove(j);
5711                        if (DEBUG_INTENT_MATCHING) Log.v(
5712                            TAG, "Removing duplicate item from " + j
5713                            + " due to action " + action + " at " + i);
5714                        j--;
5715                        N--;
5716                    }
5717                }
5718            }
5719
5720            // If the caller didn't request filter information, drop it now
5721            // so we don't have to marshall/unmarshall it.
5722            if ((flags&PackageManager.GET_RESOLVED_FILTER) == 0) {
5723                rii.filter = null;
5724            }
5725        }
5726
5727        // Filter out the caller activity if so requested.
5728        if (caller != null) {
5729            N = results.size();
5730            for (int i=0; i<N; i++) {
5731                ActivityInfo ainfo = results.get(i).activityInfo;
5732                if (caller.getPackageName().equals(ainfo.applicationInfo.packageName)
5733                        && caller.getClassName().equals(ainfo.name)) {
5734                    results.remove(i);
5735                    break;
5736                }
5737            }
5738        }
5739
5740        // If the caller didn't request filter information,
5741        // drop them now so we don't have to
5742        // marshall/unmarshall it.
5743        if ((flags&PackageManager.GET_RESOLVED_FILTER) == 0) {
5744            N = results.size();
5745            for (int i=0; i<N; i++) {
5746                results.get(i).filter = null;
5747            }
5748        }
5749
5750        if (DEBUG_INTENT_MATCHING) Log.v(TAG, "Result: " + results);
5751        return results;
5752    }
5753
5754    @Override
5755    public @NonNull ParceledListSlice<ResolveInfo> queryIntentReceivers(Intent intent,
5756            String resolvedType, int flags, int userId) {
5757        return new ParceledListSlice<>(
5758                queryIntentReceiversInternal(intent, resolvedType, flags, userId));
5759    }
5760
5761    private @NonNull List<ResolveInfo> queryIntentReceiversInternal(Intent intent,
5762            String resolvedType, int flags, int userId) {
5763        if (!sUserManager.exists(userId)) return Collections.emptyList();
5764        flags = updateFlagsForResolve(flags, userId, intent);
5765        ComponentName comp = intent.getComponent();
5766        if (comp == null) {
5767            if (intent.getSelector() != null) {
5768                intent = intent.getSelector();
5769                comp = intent.getComponent();
5770            }
5771        }
5772        if (comp != null) {
5773            List<ResolveInfo> list = new ArrayList<ResolveInfo>(1);
5774            ActivityInfo ai = getReceiverInfo(comp, flags, userId);
5775            if (ai != null) {
5776                ResolveInfo ri = new ResolveInfo();
5777                ri.activityInfo = ai;
5778                list.add(ri);
5779            }
5780            return list;
5781        }
5782
5783        // reader
5784        synchronized (mPackages) {
5785            String pkgName = intent.getPackage();
5786            if (pkgName == null) {
5787                return mReceivers.queryIntent(intent, resolvedType, flags, userId);
5788            }
5789            final PackageParser.Package pkg = mPackages.get(pkgName);
5790            if (pkg != null) {
5791                return mReceivers.queryIntentForPackage(intent, resolvedType, flags, pkg.receivers,
5792                        userId);
5793            }
5794            return Collections.emptyList();
5795        }
5796    }
5797
5798    @Override
5799    public ResolveInfo resolveService(Intent intent, String resolvedType, int flags, int userId) {
5800        if (!sUserManager.exists(userId)) return null;
5801        flags = updateFlagsForResolve(flags, userId, intent);
5802        List<ResolveInfo> query = queryIntentServicesInternal(intent, resolvedType, flags, userId);
5803        if (query != null) {
5804            if (query.size() >= 1) {
5805                // If there is more than one service with the same priority,
5806                // just arbitrarily pick the first one.
5807                return query.get(0);
5808            }
5809        }
5810        return null;
5811    }
5812
5813    @Override
5814    public @NonNull ParceledListSlice<ResolveInfo> queryIntentServices(Intent intent,
5815            String resolvedType, int flags, int userId) {
5816        return new ParceledListSlice<>(
5817                queryIntentServicesInternal(intent, resolvedType, flags, userId));
5818    }
5819
5820    private @NonNull List<ResolveInfo> queryIntentServicesInternal(Intent intent,
5821            String resolvedType, int flags, int userId) {
5822        if (!sUserManager.exists(userId)) return Collections.emptyList();
5823        flags = updateFlagsForResolve(flags, userId, intent);
5824        ComponentName comp = intent.getComponent();
5825        if (comp == null) {
5826            if (intent.getSelector() != null) {
5827                intent = intent.getSelector();
5828                comp = intent.getComponent();
5829            }
5830        }
5831        if (comp != null) {
5832            final List<ResolveInfo> list = new ArrayList<ResolveInfo>(1);
5833            final ServiceInfo si = getServiceInfo(comp, flags, userId);
5834            if (si != null) {
5835                final ResolveInfo ri = new ResolveInfo();
5836                ri.serviceInfo = si;
5837                list.add(ri);
5838            }
5839            return list;
5840        }
5841
5842        // reader
5843        synchronized (mPackages) {
5844            String pkgName = intent.getPackage();
5845            if (pkgName == null) {
5846                return mServices.queryIntent(intent, resolvedType, flags, userId);
5847            }
5848            final PackageParser.Package pkg = mPackages.get(pkgName);
5849            if (pkg != null) {
5850                return mServices.queryIntentForPackage(intent, resolvedType, flags, pkg.services,
5851                        userId);
5852            }
5853            return Collections.emptyList();
5854        }
5855    }
5856
5857    @Override
5858    public @NonNull ParceledListSlice<ResolveInfo> queryIntentContentProviders(Intent intent,
5859            String resolvedType, int flags, int userId) {
5860        return new ParceledListSlice<>(
5861                queryIntentContentProvidersInternal(intent, resolvedType, flags, userId));
5862    }
5863
5864    private @NonNull List<ResolveInfo> queryIntentContentProvidersInternal(
5865            Intent intent, String resolvedType, int flags, int userId) {
5866        if (!sUserManager.exists(userId)) return Collections.emptyList();
5867        flags = updateFlagsForResolve(flags, userId, intent);
5868        ComponentName comp = intent.getComponent();
5869        if (comp == null) {
5870            if (intent.getSelector() != null) {
5871                intent = intent.getSelector();
5872                comp = intent.getComponent();
5873            }
5874        }
5875        if (comp != null) {
5876            final List<ResolveInfo> list = new ArrayList<ResolveInfo>(1);
5877            final ProviderInfo pi = getProviderInfo(comp, flags, userId);
5878            if (pi != null) {
5879                final ResolveInfo ri = new ResolveInfo();
5880                ri.providerInfo = pi;
5881                list.add(ri);
5882            }
5883            return list;
5884        }
5885
5886        // reader
5887        synchronized (mPackages) {
5888            String pkgName = intent.getPackage();
5889            if (pkgName == null) {
5890                return mProviders.queryIntent(intent, resolvedType, flags, userId);
5891            }
5892            final PackageParser.Package pkg = mPackages.get(pkgName);
5893            if (pkg != null) {
5894                return mProviders.queryIntentForPackage(
5895                        intent, resolvedType, flags, pkg.providers, userId);
5896            }
5897            return Collections.emptyList();
5898        }
5899    }
5900
5901    @Override
5902    public ParceledListSlice<PackageInfo> getInstalledPackages(int flags, int userId) {
5903        if (!sUserManager.exists(userId)) return ParceledListSlice.emptyList();
5904        flags = updateFlagsForPackage(flags, userId, null);
5905        final boolean listUninstalled = (flags & MATCH_UNINSTALLED_PACKAGES) != 0;
5906        enforceCrossUserPermission(Binder.getCallingUid(), userId,
5907                true /* requireFullPermission */, false /* checkShell */,
5908                "get installed packages");
5909
5910        // writer
5911        synchronized (mPackages) {
5912            ArrayList<PackageInfo> list;
5913            if (listUninstalled) {
5914                list = new ArrayList<PackageInfo>(mSettings.mPackages.size());
5915                for (PackageSetting ps : mSettings.mPackages.values()) {
5916                    PackageInfo pi;
5917                    if (ps.pkg != null) {
5918                        pi = generatePackageInfo(ps.pkg, flags, userId);
5919                    } else {
5920                        pi = generatePackageInfoFromSettingsLPw(ps.name, flags, userId);
5921                    }
5922                    if (pi != null) {
5923                        list.add(pi);
5924                    }
5925                }
5926            } else {
5927                list = new ArrayList<PackageInfo>(mPackages.size());
5928                for (PackageParser.Package p : mPackages.values()) {
5929                    PackageInfo pi = generatePackageInfo(p, flags, userId);
5930                    if (pi != null) {
5931                        list.add(pi);
5932                    }
5933                }
5934            }
5935
5936            return new ParceledListSlice<PackageInfo>(list);
5937        }
5938    }
5939
5940    private void addPackageHoldingPermissions(ArrayList<PackageInfo> list, PackageSetting ps,
5941            String[] permissions, boolean[] tmp, int flags, int userId) {
5942        int numMatch = 0;
5943        final PermissionsState permissionsState = ps.getPermissionsState();
5944        for (int i=0; i<permissions.length; i++) {
5945            final String permission = permissions[i];
5946            if (permissionsState.hasPermission(permission, userId)) {
5947                tmp[i] = true;
5948                numMatch++;
5949            } else {
5950                tmp[i] = false;
5951            }
5952        }
5953        if (numMatch == 0) {
5954            return;
5955        }
5956        PackageInfo pi;
5957        if (ps.pkg != null) {
5958            pi = generatePackageInfo(ps.pkg, flags, userId);
5959        } else {
5960            pi = generatePackageInfoFromSettingsLPw(ps.name, flags, userId);
5961        }
5962        // The above might return null in cases of uninstalled apps or install-state
5963        // skew across users/profiles.
5964        if (pi != null) {
5965            if ((flags&PackageManager.GET_PERMISSIONS) == 0) {
5966                if (numMatch == permissions.length) {
5967                    pi.requestedPermissions = permissions;
5968                } else {
5969                    pi.requestedPermissions = new String[numMatch];
5970                    numMatch = 0;
5971                    for (int i=0; i<permissions.length; i++) {
5972                        if (tmp[i]) {
5973                            pi.requestedPermissions[numMatch] = permissions[i];
5974                            numMatch++;
5975                        }
5976                    }
5977                }
5978            }
5979            list.add(pi);
5980        }
5981    }
5982
5983    @Override
5984    public ParceledListSlice<PackageInfo> getPackagesHoldingPermissions(
5985            String[] permissions, int flags, int userId) {
5986        if (!sUserManager.exists(userId)) return ParceledListSlice.emptyList();
5987        flags = updateFlagsForPackage(flags, userId, permissions);
5988        final boolean listUninstalled = (flags & MATCH_UNINSTALLED_PACKAGES) != 0;
5989
5990        // writer
5991        synchronized (mPackages) {
5992            ArrayList<PackageInfo> list = new ArrayList<PackageInfo>();
5993            boolean[] tmpBools = new boolean[permissions.length];
5994            if (listUninstalled) {
5995                for (PackageSetting ps : mSettings.mPackages.values()) {
5996                    addPackageHoldingPermissions(list, ps, permissions, tmpBools, flags, userId);
5997                }
5998            } else {
5999                for (PackageParser.Package pkg : mPackages.values()) {
6000                    PackageSetting ps = (PackageSetting)pkg.mExtras;
6001                    if (ps != null) {
6002                        addPackageHoldingPermissions(list, ps, permissions, tmpBools, flags,
6003                                userId);
6004                    }
6005                }
6006            }
6007
6008            return new ParceledListSlice<PackageInfo>(list);
6009        }
6010    }
6011
6012    @Override
6013    public ParceledListSlice<ApplicationInfo> getInstalledApplications(int flags, int userId) {
6014        if (!sUserManager.exists(userId)) return ParceledListSlice.emptyList();
6015        flags = updateFlagsForApplication(flags, userId, null);
6016        final boolean listUninstalled = (flags & MATCH_UNINSTALLED_PACKAGES) != 0;
6017
6018        // writer
6019        synchronized (mPackages) {
6020            ArrayList<ApplicationInfo> list;
6021            if (listUninstalled) {
6022                list = new ArrayList<ApplicationInfo>(mSettings.mPackages.size());
6023                for (PackageSetting ps : mSettings.mPackages.values()) {
6024                    ApplicationInfo ai;
6025                    if (ps.pkg != null) {
6026                        ai = PackageParser.generateApplicationInfo(ps.pkg, flags,
6027                                ps.readUserState(userId), userId);
6028                    } else {
6029                        ai = generateApplicationInfoFromSettingsLPw(ps.name, flags, userId);
6030                    }
6031                    if (ai != null) {
6032                        list.add(ai);
6033                    }
6034                }
6035            } else {
6036                list = new ArrayList<ApplicationInfo>(mPackages.size());
6037                for (PackageParser.Package p : mPackages.values()) {
6038                    if (p.mExtras != null) {
6039                        ApplicationInfo ai = PackageParser.generateApplicationInfo(p, flags,
6040                                ((PackageSetting)p.mExtras).readUserState(userId), userId);
6041                        if (ai != null) {
6042                            list.add(ai);
6043                        }
6044                    }
6045                }
6046            }
6047
6048            return new ParceledListSlice<ApplicationInfo>(list);
6049        }
6050    }
6051
6052    @Override
6053    public ParceledListSlice<EphemeralApplicationInfo> getEphemeralApplications(int userId) {
6054        if (DISABLE_EPHEMERAL_APPS) {
6055            return null;
6056        }
6057
6058        mContext.enforceCallingOrSelfPermission(Manifest.permission.ACCESS_EPHEMERAL_APPS,
6059                "getEphemeralApplications");
6060        enforceCrossUserPermission(Binder.getCallingUid(), userId,
6061                true /* requireFullPermission */, false /* checkShell */,
6062                "getEphemeralApplications");
6063        synchronized (mPackages) {
6064            List<EphemeralApplicationInfo> ephemeralApps = mEphemeralApplicationRegistry
6065                    .getEphemeralApplicationsLPw(userId);
6066            if (ephemeralApps != null) {
6067                return new ParceledListSlice<>(ephemeralApps);
6068            }
6069        }
6070        return null;
6071    }
6072
6073    @Override
6074    public boolean isEphemeralApplication(String packageName, int userId) {
6075        enforceCrossUserPermission(Binder.getCallingUid(), userId,
6076                true /* requireFullPermission */, false /* checkShell */,
6077                "isEphemeral");
6078        if (DISABLE_EPHEMERAL_APPS) {
6079            return false;
6080        }
6081
6082        if (!isCallerSameApp(packageName)) {
6083            return false;
6084        }
6085        synchronized (mPackages) {
6086            PackageParser.Package pkg = mPackages.get(packageName);
6087            if (pkg != null) {
6088                return pkg.applicationInfo.isEphemeralApp();
6089            }
6090        }
6091        return false;
6092    }
6093
6094    @Override
6095    public byte[] getEphemeralApplicationCookie(String packageName, int userId) {
6096        if (DISABLE_EPHEMERAL_APPS) {
6097            return null;
6098        }
6099
6100        enforceCrossUserPermission(Binder.getCallingUid(), userId,
6101                true /* requireFullPermission */, false /* checkShell */,
6102                "getCookie");
6103        if (!isCallerSameApp(packageName)) {
6104            return null;
6105        }
6106        synchronized (mPackages) {
6107            return mEphemeralApplicationRegistry.getEphemeralApplicationCookieLPw(
6108                    packageName, userId);
6109        }
6110    }
6111
6112    @Override
6113    public boolean setEphemeralApplicationCookie(String packageName, byte[] cookie, int userId) {
6114        if (DISABLE_EPHEMERAL_APPS) {
6115            return true;
6116        }
6117
6118        enforceCrossUserPermission(Binder.getCallingUid(), userId,
6119                true /* requireFullPermission */, true /* checkShell */,
6120                "setCookie");
6121        if (!isCallerSameApp(packageName)) {
6122            return false;
6123        }
6124        synchronized (mPackages) {
6125            return mEphemeralApplicationRegistry.setEphemeralApplicationCookieLPw(
6126                    packageName, cookie, userId);
6127        }
6128    }
6129
6130    @Override
6131    public Bitmap getEphemeralApplicationIcon(String packageName, int userId) {
6132        if (DISABLE_EPHEMERAL_APPS) {
6133            return null;
6134        }
6135
6136        mContext.enforceCallingOrSelfPermission(Manifest.permission.ACCESS_EPHEMERAL_APPS,
6137                "getEphemeralApplicationIcon");
6138        enforceCrossUserPermission(Binder.getCallingUid(), userId,
6139                true /* requireFullPermission */, false /* checkShell */,
6140                "getEphemeralApplicationIcon");
6141        synchronized (mPackages) {
6142            return mEphemeralApplicationRegistry.getEphemeralApplicationIconLPw(
6143                    packageName, userId);
6144        }
6145    }
6146
6147    private boolean isCallerSameApp(String packageName) {
6148        PackageParser.Package pkg = mPackages.get(packageName);
6149        return pkg != null
6150                && UserHandle.getAppId(Binder.getCallingUid()) == pkg.applicationInfo.uid;
6151    }
6152
6153    @Override
6154    public @NonNull ParceledListSlice<ApplicationInfo> getPersistentApplications(int flags) {
6155        return new ParceledListSlice<>(getPersistentApplicationsInternal(flags));
6156    }
6157
6158    private @NonNull List<ApplicationInfo> getPersistentApplicationsInternal(int flags) {
6159        final ArrayList<ApplicationInfo> finalList = new ArrayList<ApplicationInfo>();
6160
6161        // reader
6162        synchronized (mPackages) {
6163            final Iterator<PackageParser.Package> i = mPackages.values().iterator();
6164            final int userId = UserHandle.getCallingUserId();
6165            while (i.hasNext()) {
6166                final PackageParser.Package p = i.next();
6167                if (p.applicationInfo == null) continue;
6168
6169                final boolean matchesUnaware = ((flags & MATCH_DIRECT_BOOT_UNAWARE) != 0)
6170                        && !p.applicationInfo.isDirectBootAware();
6171                final boolean matchesAware = ((flags & MATCH_DIRECT_BOOT_AWARE) != 0)
6172                        && p.applicationInfo.isDirectBootAware();
6173
6174                if ((p.applicationInfo.flags & ApplicationInfo.FLAG_PERSISTENT) != 0
6175                        && (!mSafeMode || isSystemApp(p))
6176                        && (matchesUnaware || matchesAware)) {
6177                    PackageSetting ps = mSettings.mPackages.get(p.packageName);
6178                    if (ps != null) {
6179                        ApplicationInfo ai = PackageParser.generateApplicationInfo(p, flags,
6180                                ps.readUserState(userId), userId);
6181                        if (ai != null) {
6182                            finalList.add(ai);
6183                        }
6184                    }
6185                }
6186            }
6187        }
6188
6189        return finalList;
6190    }
6191
6192    @Override
6193    public ProviderInfo resolveContentProvider(String name, int flags, int userId) {
6194        if (!sUserManager.exists(userId)) return null;
6195        flags = updateFlagsForComponent(flags, userId, name);
6196        // reader
6197        synchronized (mPackages) {
6198            final PackageParser.Provider provider = mProvidersByAuthority.get(name);
6199            PackageSetting ps = provider != null
6200                    ? mSettings.mPackages.get(provider.owner.packageName)
6201                    : null;
6202            return ps != null
6203                    && mSettings.isEnabledAndMatchLPr(provider.info, flags, userId)
6204                    ? PackageParser.generateProviderInfo(provider, flags,
6205                            ps.readUserState(userId), userId)
6206                    : null;
6207        }
6208    }
6209
6210    /**
6211     * @deprecated
6212     */
6213    @Deprecated
6214    public void querySyncProviders(List<String> outNames, List<ProviderInfo> outInfo) {
6215        // reader
6216        synchronized (mPackages) {
6217            final Iterator<Map.Entry<String, PackageParser.Provider>> i = mProvidersByAuthority
6218                    .entrySet().iterator();
6219            final int userId = UserHandle.getCallingUserId();
6220            while (i.hasNext()) {
6221                Map.Entry<String, PackageParser.Provider> entry = i.next();
6222                PackageParser.Provider p = entry.getValue();
6223                PackageSetting ps = mSettings.mPackages.get(p.owner.packageName);
6224
6225                if (ps != null && p.syncable
6226                        && (!mSafeMode || (p.info.applicationInfo.flags
6227                                &ApplicationInfo.FLAG_SYSTEM) != 0)) {
6228                    ProviderInfo info = PackageParser.generateProviderInfo(p, 0,
6229                            ps.readUserState(userId), userId);
6230                    if (info != null) {
6231                        outNames.add(entry.getKey());
6232                        outInfo.add(info);
6233                    }
6234                }
6235            }
6236        }
6237    }
6238
6239    @Override
6240    public @NonNull ParceledListSlice<ProviderInfo> queryContentProviders(String processName,
6241            int uid, int flags) {
6242        final int userId = processName != null ? UserHandle.getUserId(uid)
6243                : UserHandle.getCallingUserId();
6244        if (!sUserManager.exists(userId)) return ParceledListSlice.emptyList();
6245        flags = updateFlagsForComponent(flags, userId, processName);
6246
6247        ArrayList<ProviderInfo> finalList = null;
6248        // reader
6249        synchronized (mPackages) {
6250            final Iterator<PackageParser.Provider> i = mProviders.mProviders.values().iterator();
6251            while (i.hasNext()) {
6252                final PackageParser.Provider p = i.next();
6253                PackageSetting ps = mSettings.mPackages.get(p.owner.packageName);
6254                if (ps != null && p.info.authority != null
6255                        && (processName == null
6256                                || (p.info.processName.equals(processName)
6257                                        && UserHandle.isSameApp(p.info.applicationInfo.uid, uid)))
6258                        && mSettings.isEnabledAndMatchLPr(p.info, flags, userId)) {
6259                    if (finalList == null) {
6260                        finalList = new ArrayList<ProviderInfo>(3);
6261                    }
6262                    ProviderInfo info = PackageParser.generateProviderInfo(p, flags,
6263                            ps.readUserState(userId), userId);
6264                    if (info != null) {
6265                        finalList.add(info);
6266                    }
6267                }
6268            }
6269        }
6270
6271        if (finalList != null) {
6272            Collections.sort(finalList, mProviderInitOrderSorter);
6273            return new ParceledListSlice<ProviderInfo>(finalList);
6274        }
6275
6276        return ParceledListSlice.emptyList();
6277    }
6278
6279    @Override
6280    public InstrumentationInfo getInstrumentationInfo(ComponentName name, int flags) {
6281        // reader
6282        synchronized (mPackages) {
6283            final PackageParser.Instrumentation i = mInstrumentation.get(name);
6284            return PackageParser.generateInstrumentationInfo(i, flags);
6285        }
6286    }
6287
6288    @Override
6289    public @NonNull ParceledListSlice<InstrumentationInfo> queryInstrumentation(
6290            String targetPackage, int flags) {
6291        return new ParceledListSlice<>(queryInstrumentationInternal(targetPackage, flags));
6292    }
6293
6294    private @NonNull List<InstrumentationInfo> queryInstrumentationInternal(String targetPackage,
6295            int flags) {
6296        ArrayList<InstrumentationInfo> finalList = new ArrayList<InstrumentationInfo>();
6297
6298        // reader
6299        synchronized (mPackages) {
6300            final Iterator<PackageParser.Instrumentation> i = mInstrumentation.values().iterator();
6301            while (i.hasNext()) {
6302                final PackageParser.Instrumentation p = i.next();
6303                if (targetPackage == null
6304                        || targetPackage.equals(p.info.targetPackage)) {
6305                    InstrumentationInfo ii = PackageParser.generateInstrumentationInfo(p,
6306                            flags);
6307                    if (ii != null) {
6308                        finalList.add(ii);
6309                    }
6310                }
6311            }
6312        }
6313
6314        return finalList;
6315    }
6316
6317    private void createIdmapsForPackageLI(PackageParser.Package pkg) {
6318        ArrayMap<String, PackageParser.Package> overlays = mOverlays.get(pkg.packageName);
6319        if (overlays == null) {
6320            Slog.w(TAG, "Unable to create idmap for " + pkg.packageName + ": no overlay packages");
6321            return;
6322        }
6323        for (PackageParser.Package opkg : overlays.values()) {
6324            // Not much to do if idmap fails: we already logged the error
6325            // and we certainly don't want to abort installation of pkg simply
6326            // because an overlay didn't fit properly. For these reasons,
6327            // ignore the return value of createIdmapForPackagePairLI.
6328            createIdmapForPackagePairLI(pkg, opkg);
6329        }
6330    }
6331
6332    private boolean createIdmapForPackagePairLI(PackageParser.Package pkg,
6333            PackageParser.Package opkg) {
6334        if (!opkg.mTrustedOverlay) {
6335            Slog.w(TAG, "Skipping target and overlay pair " + pkg.baseCodePath + " and " +
6336                    opkg.baseCodePath + ": overlay not trusted");
6337            return false;
6338        }
6339        ArrayMap<String, PackageParser.Package> overlaySet = mOverlays.get(pkg.packageName);
6340        if (overlaySet == null) {
6341            Slog.e(TAG, "was about to create idmap for " + pkg.baseCodePath + " and " +
6342                    opkg.baseCodePath + " but target package has no known overlays");
6343            return false;
6344        }
6345        final int sharedGid = UserHandle.getSharedAppGid(pkg.applicationInfo.uid);
6346        // TODO: generate idmap for split APKs
6347        try {
6348            mInstaller.idmap(pkg.baseCodePath, opkg.baseCodePath, sharedGid);
6349        } catch (InstallerException e) {
6350            Slog.e(TAG, "Failed to generate idmap for " + pkg.baseCodePath + " and "
6351                    + opkg.baseCodePath);
6352            return false;
6353        }
6354        PackageParser.Package[] overlayArray =
6355            overlaySet.values().toArray(new PackageParser.Package[0]);
6356        Comparator<PackageParser.Package> cmp = new Comparator<PackageParser.Package>() {
6357            public int compare(PackageParser.Package p1, PackageParser.Package p2) {
6358                return p1.mOverlayPriority - p2.mOverlayPriority;
6359            }
6360        };
6361        Arrays.sort(overlayArray, cmp);
6362
6363        pkg.applicationInfo.resourceDirs = new String[overlayArray.length];
6364        int i = 0;
6365        for (PackageParser.Package p : overlayArray) {
6366            pkg.applicationInfo.resourceDirs[i++] = p.baseCodePath;
6367        }
6368        return true;
6369    }
6370
6371    private void scanDirTracedLI(File dir, int parseFlags, int scanFlags, long currentTime) {
6372        Trace.traceBegin(TRACE_TAG_PACKAGE_MANAGER, "scanDir");
6373        try {
6374            scanDirLI(dir, parseFlags, scanFlags, currentTime);
6375        } finally {
6376            Trace.traceEnd(TRACE_TAG_PACKAGE_MANAGER);
6377        }
6378    }
6379
6380    private void scanDirLI(File dir, int parseFlags, int scanFlags, long currentTime) {
6381        final File[] files = dir.listFiles();
6382        if (ArrayUtils.isEmpty(files)) {
6383            Log.d(TAG, "No files in app dir " + dir);
6384            return;
6385        }
6386
6387        if (DEBUG_PACKAGE_SCANNING) {
6388            Log.d(TAG, "Scanning app dir " + dir + " scanFlags=" + scanFlags
6389                    + " flags=0x" + Integer.toHexString(parseFlags));
6390        }
6391
6392        for (File file : files) {
6393            final boolean isPackage = (isApkFile(file) || file.isDirectory())
6394                    && !PackageInstallerService.isStageName(file.getName());
6395            if (!isPackage) {
6396                // Ignore entries which are not packages
6397                continue;
6398            }
6399            try {
6400                scanPackageTracedLI(file, parseFlags | PackageParser.PARSE_MUST_BE_APK,
6401                        scanFlags, currentTime, null);
6402            } catch (PackageManagerException e) {
6403                Slog.w(TAG, "Failed to parse " + file + ": " + e.getMessage());
6404
6405                // Delete invalid userdata apps
6406                if ((parseFlags & PackageParser.PARSE_IS_SYSTEM) == 0 &&
6407                        e.error == PackageManager.INSTALL_FAILED_INVALID_APK) {
6408                    logCriticalInfo(Log.WARN, "Deleting invalid package at " + file);
6409                    removeCodePathLI(file);
6410                }
6411            }
6412        }
6413    }
6414
6415    private static File getSettingsProblemFile() {
6416        File dataDir = Environment.getDataDirectory();
6417        File systemDir = new File(dataDir, "system");
6418        File fname = new File(systemDir, "uiderrors.txt");
6419        return fname;
6420    }
6421
6422    static void reportSettingsProblem(int priority, String msg) {
6423        logCriticalInfo(priority, msg);
6424    }
6425
6426    static void logCriticalInfo(int priority, String msg) {
6427        Slog.println(priority, TAG, msg);
6428        EventLogTags.writePmCriticalInfo(msg);
6429        try {
6430            File fname = getSettingsProblemFile();
6431            FileOutputStream out = new FileOutputStream(fname, true);
6432            PrintWriter pw = new FastPrintWriter(out);
6433            SimpleDateFormat formatter = new SimpleDateFormat();
6434            String dateString = formatter.format(new Date(System.currentTimeMillis()));
6435            pw.println(dateString + ": " + msg);
6436            pw.close();
6437            FileUtils.setPermissions(
6438                    fname.toString(),
6439                    FileUtils.S_IRWXU|FileUtils.S_IRWXG|FileUtils.S_IROTH,
6440                    -1, -1);
6441        } catch (java.io.IOException e) {
6442        }
6443    }
6444
6445    private void collectCertificatesLI(PackageSetting ps, PackageParser.Package pkg, File srcFile,
6446            int parseFlags) throws PackageManagerException {
6447        if (ps != null
6448                && ps.codePath.equals(srcFile)
6449                && ps.timeStamp == srcFile.lastModified()
6450                && !isCompatSignatureUpdateNeeded(pkg)
6451                && !isRecoverSignatureUpdateNeeded(pkg)) {
6452            long mSigningKeySetId = ps.keySetData.getProperSigningKeySet();
6453            KeySetManagerService ksms = mSettings.mKeySetManagerService;
6454            ArraySet<PublicKey> signingKs;
6455            synchronized (mPackages) {
6456                signingKs = ksms.getPublicKeysFromKeySetLPr(mSigningKeySetId);
6457            }
6458            if (ps.signatures.mSignatures != null
6459                    && ps.signatures.mSignatures.length != 0
6460                    && signingKs != null) {
6461                // Optimization: reuse the existing cached certificates
6462                // if the package appears to be unchanged.
6463                pkg.mSignatures = ps.signatures.mSignatures;
6464                pkg.mSigningKeys = signingKs;
6465                return;
6466            }
6467
6468            Slog.w(TAG, "PackageSetting for " + ps.name
6469                    + " is missing signatures.  Collecting certs again to recover them.");
6470        } else {
6471            Log.i(TAG, srcFile.toString() + " changed; collecting certs");
6472        }
6473
6474        try {
6475            PackageParser.collectCertificates(pkg, parseFlags);
6476        } catch (PackageParserException e) {
6477            throw PackageManagerException.from(e);
6478        }
6479    }
6480
6481    /**
6482     *  Traces a package scan.
6483     *  @see #scanPackageLI(File, int, int, long, UserHandle)
6484     */
6485    private PackageParser.Package scanPackageTracedLI(File scanFile, int parseFlags, int scanFlags,
6486            long currentTime, UserHandle user) throws PackageManagerException {
6487        Trace.traceBegin(TRACE_TAG_PACKAGE_MANAGER, "scanPackage");
6488        try {
6489            return scanPackageLI(scanFile, parseFlags, scanFlags, currentTime, user);
6490        } finally {
6491            Trace.traceEnd(TRACE_TAG_PACKAGE_MANAGER);
6492        }
6493    }
6494
6495    /**
6496     *  Scans a package and returns the newly parsed package.
6497     *  Returns {@code null} in case of errors and the error code is stored in mLastScanError
6498     */
6499    private PackageParser.Package scanPackageLI(File scanFile, int parseFlags, int scanFlags,
6500            long currentTime, UserHandle user) throws PackageManagerException {
6501        if (DEBUG_INSTALL) Slog.d(TAG, "Parsing: " + scanFile);
6502        parseFlags |= mDefParseFlags;
6503        PackageParser pp = new PackageParser();
6504        pp.setSeparateProcesses(mSeparateProcesses);
6505        pp.setOnlyCoreApps(mOnlyCore);
6506        pp.setDisplayMetrics(mMetrics);
6507
6508        if ((scanFlags & SCAN_TRUSTED_OVERLAY) != 0) {
6509            parseFlags |= PackageParser.PARSE_TRUSTED_OVERLAY;
6510        }
6511
6512        final PackageParser.Package pkg;
6513        try {
6514            pkg = pp.parsePackage(scanFile, parseFlags);
6515        } catch (PackageParserException e) {
6516            throw PackageManagerException.from(e);
6517        }
6518
6519        return scanPackageLI(pkg, scanFile, parseFlags, scanFlags, currentTime, user);
6520    }
6521
6522    /**
6523     *  Scans a package and returns the newly parsed package.
6524     *  @throws PackageManagerException on a parse error.
6525     */
6526    private PackageParser.Package scanPackageLI(PackageParser.Package pkg, File scanFile,
6527            int parseFlags, int scanFlags, long currentTime, UserHandle user)
6528            throws PackageManagerException {
6529        // If the package has children and this is the first dive in the function
6530        // we scan the package with the SCAN_CHECK_ONLY flag set to see whether all
6531        // packages (parent and children) would be successfully scanned before the
6532        // actual scan since scanning mutates internal state and we want to atomically
6533        // install the package and its children.
6534        if ((scanFlags & SCAN_CHECK_ONLY) == 0) {
6535            if (pkg.childPackages != null && pkg.childPackages.size() > 0) {
6536                scanFlags |= SCAN_CHECK_ONLY;
6537            }
6538        } else {
6539            scanFlags &= ~SCAN_CHECK_ONLY;
6540        }
6541
6542        // Scan the parent
6543        PackageParser.Package scannedPkg = scanPackageInternalLI(pkg, scanFile, parseFlags,
6544                scanFlags, currentTime, user);
6545
6546        // Scan the children
6547        final int childCount = (pkg.childPackages != null) ? pkg.childPackages.size() : 0;
6548        for (int i = 0; i < childCount; i++) {
6549            PackageParser.Package childPackage = pkg.childPackages.get(i);
6550            scanPackageInternalLI(childPackage, scanFile, parseFlags, scanFlags,
6551                    currentTime, user);
6552        }
6553
6554
6555        if ((scanFlags & SCAN_CHECK_ONLY) != 0) {
6556            return scanPackageLI(pkg, scanFile, parseFlags, scanFlags, currentTime, user);
6557        }
6558
6559        return scannedPkg;
6560    }
6561
6562    /**
6563     *  Scans a package and returns the newly parsed package.
6564     *  @throws PackageManagerException on a parse error.
6565     */
6566    private PackageParser.Package scanPackageInternalLI(PackageParser.Package pkg, File scanFile,
6567            int parseFlags, int scanFlags, long currentTime, UserHandle user)
6568            throws PackageManagerException {
6569        PackageSetting ps = null;
6570        PackageSetting updatedPkg;
6571        // reader
6572        synchronized (mPackages) {
6573            // Look to see if we already know about this package.
6574            String oldName = mSettings.mRenamedPackages.get(pkg.packageName);
6575            if (pkg.mOriginalPackages != null && pkg.mOriginalPackages.contains(oldName)) {
6576                // This package has been renamed to its original name.  Let's
6577                // use that.
6578                ps = mSettings.peekPackageLPr(oldName);
6579            }
6580            // If there was no original package, see one for the real package name.
6581            if (ps == null) {
6582                ps = mSettings.peekPackageLPr(pkg.packageName);
6583            }
6584            // Check to see if this package could be hiding/updating a system
6585            // package.  Must look for it either under the original or real
6586            // package name depending on our state.
6587            updatedPkg = mSettings.getDisabledSystemPkgLPr(ps != null ? ps.name : pkg.packageName);
6588            if (DEBUG_INSTALL && updatedPkg != null) Slog.d(TAG, "updatedPkg = " + updatedPkg);
6589
6590            // If this is a package we don't know about on the system partition, we
6591            // may need to remove disabled child packages on the system partition
6592            // or may need to not add child packages if the parent apk is updated
6593            // on the data partition and no longer defines this child package.
6594            if ((parseFlags & PackageParser.PARSE_IS_SYSTEM) != 0) {
6595                // If this is a parent package for an updated system app and this system
6596                // app got an OTA update which no longer defines some of the child packages
6597                // we have to prune them from the disabled system packages.
6598                PackageSetting disabledPs = mSettings.getDisabledSystemPkgLPr(pkg.packageName);
6599                if (disabledPs != null) {
6600                    final int scannedChildCount = (pkg.childPackages != null)
6601                            ? pkg.childPackages.size() : 0;
6602                    final int disabledChildCount = disabledPs.childPackageNames != null
6603                            ? disabledPs.childPackageNames.size() : 0;
6604                    for (int i = 0; i < disabledChildCount; i++) {
6605                        String disabledChildPackageName = disabledPs.childPackageNames.get(i);
6606                        boolean disabledPackageAvailable = false;
6607                        for (int j = 0; j < scannedChildCount; j++) {
6608                            PackageParser.Package childPkg = pkg.childPackages.get(j);
6609                            if (childPkg.packageName.equals(disabledChildPackageName)) {
6610                                disabledPackageAvailable = true;
6611                                break;
6612                            }
6613                         }
6614                         if (!disabledPackageAvailable) {
6615                             mSettings.removeDisabledSystemPackageLPw(disabledChildPackageName);
6616                         }
6617                    }
6618                }
6619            }
6620        }
6621
6622        boolean updatedPkgBetter = false;
6623        // First check if this is a system package that may involve an update
6624        if (updatedPkg != null && (parseFlags & PackageParser.PARSE_IS_SYSTEM) != 0) {
6625            // If new package is not located in "/system/priv-app" (e.g. due to an OTA),
6626            // it needs to drop FLAG_PRIVILEGED.
6627            if (locationIsPrivileged(scanFile)) {
6628                updatedPkg.pkgPrivateFlags |= ApplicationInfo.PRIVATE_FLAG_PRIVILEGED;
6629            } else {
6630                updatedPkg.pkgPrivateFlags &= ~ApplicationInfo.PRIVATE_FLAG_PRIVILEGED;
6631            }
6632
6633            if (ps != null && !ps.codePath.equals(scanFile)) {
6634                // The path has changed from what was last scanned...  check the
6635                // version of the new path against what we have stored to determine
6636                // what to do.
6637                if (DEBUG_INSTALL) Slog.d(TAG, "Path changing from " + ps.codePath);
6638                if (pkg.mVersionCode <= ps.versionCode) {
6639                    // The system package has been updated and the code path does not match
6640                    // Ignore entry. Skip it.
6641                    if (DEBUG_INSTALL) Slog.i(TAG, "Package " + ps.name + " at " + scanFile
6642                            + " ignored: updated version " + ps.versionCode
6643                            + " better than this " + pkg.mVersionCode);
6644                    if (!updatedPkg.codePath.equals(scanFile)) {
6645                        Slog.w(PackageManagerService.TAG, "Code path for hidden system pkg "
6646                                + ps.name + " changing from " + updatedPkg.codePathString
6647                                + " to " + scanFile);
6648                        updatedPkg.codePath = scanFile;
6649                        updatedPkg.codePathString = scanFile.toString();
6650                        updatedPkg.resourcePath = scanFile;
6651                        updatedPkg.resourcePathString = scanFile.toString();
6652                    }
6653                    updatedPkg.pkg = pkg;
6654                    updatedPkg.versionCode = pkg.mVersionCode;
6655
6656                    // Update the disabled system child packages to point to the package too.
6657                    final int childCount = updatedPkg.childPackageNames != null
6658                            ? updatedPkg.childPackageNames.size() : 0;
6659                    for (int i = 0; i < childCount; i++) {
6660                        String childPackageName = updatedPkg.childPackageNames.get(i);
6661                        PackageSetting updatedChildPkg = mSettings.getDisabledSystemPkgLPr(
6662                                childPackageName);
6663                        if (updatedChildPkg != null) {
6664                            updatedChildPkg.pkg = pkg;
6665                            updatedChildPkg.versionCode = pkg.mVersionCode;
6666                        }
6667                    }
6668
6669                    throw new PackageManagerException(Log.WARN, "Package " + ps.name + " at "
6670                            + scanFile + " ignored: updated version " + ps.versionCode
6671                            + " better than this " + pkg.mVersionCode);
6672                } else {
6673                    // The current app on the system partition is better than
6674                    // what we have updated to on the data partition; switch
6675                    // back to the system partition version.
6676                    // At this point, its safely assumed that package installation for
6677                    // apps in system partition will go through. If not there won't be a working
6678                    // version of the app
6679                    // writer
6680                    synchronized (mPackages) {
6681                        // Just remove the loaded entries from package lists.
6682                        mPackages.remove(ps.name);
6683                    }
6684
6685                    logCriticalInfo(Log.WARN, "Package " + ps.name + " at " + scanFile
6686                            + " reverting from " + ps.codePathString
6687                            + ": new version " + pkg.mVersionCode
6688                            + " better than installed " + ps.versionCode);
6689
6690                    InstallArgs args = createInstallArgsForExisting(packageFlagsToInstallFlags(ps),
6691                            ps.codePathString, ps.resourcePathString, getAppDexInstructionSets(ps));
6692                    synchronized (mInstallLock) {
6693                        args.cleanUpResourcesLI();
6694                    }
6695                    synchronized (mPackages) {
6696                        mSettings.enableSystemPackageLPw(ps.name);
6697                    }
6698                    updatedPkgBetter = true;
6699                }
6700            }
6701        }
6702
6703        if (updatedPkg != null) {
6704            // An updated system app will not have the PARSE_IS_SYSTEM flag set
6705            // initially
6706            parseFlags |= PackageParser.PARSE_IS_SYSTEM;
6707
6708            // An updated privileged app will not have the PARSE_IS_PRIVILEGED
6709            // flag set initially
6710            if ((updatedPkg.pkgPrivateFlags & ApplicationInfo.PRIVATE_FLAG_PRIVILEGED) != 0) {
6711                parseFlags |= PackageParser.PARSE_IS_PRIVILEGED;
6712            }
6713        }
6714
6715        // Verify certificates against what was last scanned
6716        collectCertificatesLI(ps, pkg, scanFile, parseFlags);
6717
6718        /*
6719         * A new system app appeared, but we already had a non-system one of the
6720         * same name installed earlier.
6721         */
6722        boolean shouldHideSystemApp = false;
6723        if (updatedPkg == null && ps != null
6724                && (parseFlags & PackageParser.PARSE_IS_SYSTEM_DIR) != 0 && !isSystemApp(ps)) {
6725            /*
6726             * Check to make sure the signatures match first. If they don't,
6727             * wipe the installed application and its data.
6728             */
6729            if (compareSignatures(ps.signatures.mSignatures, pkg.mSignatures)
6730                    != PackageManager.SIGNATURE_MATCH) {
6731                logCriticalInfo(Log.WARN, "Package " + ps.name + " appeared on system, but"
6732                        + " signatures don't match existing userdata copy; removing");
6733                deletePackageLI(pkg.packageName, null, true, null, 0, null, false, null);
6734                ps = null;
6735            } else {
6736                /*
6737                 * If the newly-added system app is an older version than the
6738                 * already installed version, hide it. It will be scanned later
6739                 * and re-added like an update.
6740                 */
6741                if (pkg.mVersionCode <= ps.versionCode) {
6742                    shouldHideSystemApp = true;
6743                    logCriticalInfo(Log.INFO, "Package " + ps.name + " appeared at " + scanFile
6744                            + " but new version " + pkg.mVersionCode + " better than installed "
6745                            + ps.versionCode + "; hiding system");
6746                } else {
6747                    /*
6748                     * The newly found system app is a newer version that the
6749                     * one previously installed. Simply remove the
6750                     * already-installed application and replace it with our own
6751                     * while keeping the application data.
6752                     */
6753                    logCriticalInfo(Log.WARN, "Package " + ps.name + " at " + scanFile
6754                            + " reverting from " + ps.codePathString + ": new version "
6755                            + pkg.mVersionCode + " better than installed " + ps.versionCode);
6756                    InstallArgs args = createInstallArgsForExisting(packageFlagsToInstallFlags(ps),
6757                            ps.codePathString, ps.resourcePathString, getAppDexInstructionSets(ps));
6758                    synchronized (mInstallLock) {
6759                        args.cleanUpResourcesLI();
6760                    }
6761                }
6762            }
6763        }
6764
6765        // The apk is forward locked (not public) if its code and resources
6766        // are kept in different files. (except for app in either system or
6767        // vendor path).
6768        // TODO grab this value from PackageSettings
6769        if ((parseFlags & PackageParser.PARSE_IS_SYSTEM_DIR) == 0) {
6770            if (ps != null && !ps.codePath.equals(ps.resourcePath)) {
6771                parseFlags |= PackageParser.PARSE_FORWARD_LOCK;
6772            }
6773        }
6774
6775        // TODO: extend to support forward-locked splits
6776        String resourcePath = null;
6777        String baseResourcePath = null;
6778        if ((parseFlags & PackageParser.PARSE_FORWARD_LOCK) != 0 && !updatedPkgBetter) {
6779            if (ps != null && ps.resourcePathString != null) {
6780                resourcePath = ps.resourcePathString;
6781                baseResourcePath = ps.resourcePathString;
6782            } else {
6783                // Should not happen at all. Just log an error.
6784                Slog.e(TAG, "Resource path not set for package " + pkg.packageName);
6785            }
6786        } else {
6787            resourcePath = pkg.codePath;
6788            baseResourcePath = pkg.baseCodePath;
6789        }
6790
6791        // Set application objects path explicitly.
6792        pkg.setApplicationVolumeUuid(pkg.volumeUuid);
6793        pkg.setApplicationInfoCodePath(pkg.codePath);
6794        pkg.setApplicationInfoBaseCodePath(pkg.baseCodePath);
6795        pkg.setApplicationInfoSplitCodePaths(pkg.splitCodePaths);
6796        pkg.setApplicationInfoResourcePath(resourcePath);
6797        pkg.setApplicationInfoBaseResourcePath(baseResourcePath);
6798        pkg.setApplicationInfoSplitResourcePaths(pkg.splitCodePaths);
6799
6800        // Note that we invoke the following method only if we are about to unpack an application
6801        PackageParser.Package scannedPkg = scanPackageLI(pkg, parseFlags, scanFlags
6802                | SCAN_UPDATE_SIGNATURE, currentTime, user);
6803
6804        /*
6805         * If the system app should be overridden by a previously installed
6806         * data, hide the system app now and let the /data/app scan pick it up
6807         * again.
6808         */
6809        if (shouldHideSystemApp) {
6810            synchronized (mPackages) {
6811                mSettings.disableSystemPackageLPw(pkg.packageName, true);
6812            }
6813        }
6814
6815        return scannedPkg;
6816    }
6817
6818    private static String fixProcessName(String defProcessName,
6819            String processName, int uid) {
6820        if (processName == null) {
6821            return defProcessName;
6822        }
6823        return processName;
6824    }
6825
6826    private void verifySignaturesLP(PackageSetting pkgSetting, PackageParser.Package pkg)
6827            throws PackageManagerException {
6828        if (pkgSetting.signatures.mSignatures != null) {
6829            // Already existing package. Make sure signatures match
6830            boolean match = compareSignatures(pkgSetting.signatures.mSignatures, pkg.mSignatures)
6831                    == PackageManager.SIGNATURE_MATCH;
6832            if (!match) {
6833                match = compareSignaturesCompat(pkgSetting.signatures, pkg)
6834                        == PackageManager.SIGNATURE_MATCH;
6835            }
6836            if (!match) {
6837                match = compareSignaturesRecover(pkgSetting.signatures, pkg)
6838                        == PackageManager.SIGNATURE_MATCH;
6839            }
6840            if (!match) {
6841                throw new PackageManagerException(INSTALL_FAILED_UPDATE_INCOMPATIBLE, "Package "
6842                        + pkg.packageName + " signatures do not match the "
6843                        + "previously installed version; ignoring!");
6844            }
6845        }
6846
6847        // Check for shared user signatures
6848        if (pkgSetting.sharedUser != null && pkgSetting.sharedUser.signatures.mSignatures != null) {
6849            // Already existing package. Make sure signatures match
6850            boolean match = compareSignatures(pkgSetting.sharedUser.signatures.mSignatures,
6851                    pkg.mSignatures) == PackageManager.SIGNATURE_MATCH;
6852            if (!match) {
6853                match = compareSignaturesCompat(pkgSetting.sharedUser.signatures, pkg)
6854                        == PackageManager.SIGNATURE_MATCH;
6855            }
6856            if (!match) {
6857                match = compareSignaturesRecover(pkgSetting.sharedUser.signatures, pkg)
6858                        == PackageManager.SIGNATURE_MATCH;
6859            }
6860            if (!match) {
6861                throw new PackageManagerException(INSTALL_FAILED_SHARED_USER_INCOMPATIBLE,
6862                        "Package " + pkg.packageName
6863                        + " has no signatures that match those in shared user "
6864                        + pkgSetting.sharedUser.name + "; ignoring!");
6865            }
6866        }
6867    }
6868
6869    /**
6870     * Enforces that only the system UID or root's UID can call a method exposed
6871     * via Binder.
6872     *
6873     * @param message used as message if SecurityException is thrown
6874     * @throws SecurityException if the caller is not system or root
6875     */
6876    private static final void enforceSystemOrRoot(String message) {
6877        final int uid = Binder.getCallingUid();
6878        if (uid != Process.SYSTEM_UID && uid != 0) {
6879            throw new SecurityException(message);
6880        }
6881    }
6882
6883    @Override
6884    public void performFstrimIfNeeded() {
6885        enforceSystemOrRoot("Only the system can request fstrim");
6886
6887        // Before everything else, see whether we need to fstrim.
6888        try {
6889            IMountService ms = PackageHelper.getMountService();
6890            if (ms != null) {
6891                final boolean isUpgrade = isUpgrade();
6892                boolean doTrim = isUpgrade;
6893                if (doTrim) {
6894                    Slog.w(TAG, "Running disk maintenance immediately due to system update");
6895                } else {
6896                    final long interval = android.provider.Settings.Global.getLong(
6897                            mContext.getContentResolver(),
6898                            android.provider.Settings.Global.FSTRIM_MANDATORY_INTERVAL,
6899                            DEFAULT_MANDATORY_FSTRIM_INTERVAL);
6900                    if (interval > 0) {
6901                        final long timeSinceLast = System.currentTimeMillis() - ms.lastMaintenance();
6902                        if (timeSinceLast > interval) {
6903                            doTrim = true;
6904                            Slog.w(TAG, "No disk maintenance in " + timeSinceLast
6905                                    + "; running immediately");
6906                        }
6907                    }
6908                }
6909                if (doTrim) {
6910                    if (!isFirstBoot()) {
6911                        try {
6912                            ActivityManagerNative.getDefault().showBootMessage(
6913                                    mContext.getResources().getString(
6914                                            R.string.android_upgrading_fstrim), true);
6915                        } catch (RemoteException e) {
6916                        }
6917                    }
6918                    ms.runMaintenance();
6919                }
6920            } else {
6921                Slog.e(TAG, "Mount service unavailable!");
6922            }
6923        } catch (RemoteException e) {
6924            // Can't happen; MountService is local
6925        }
6926    }
6927
6928    @Override
6929    public void updatePackagesIfNeeded() {
6930        enforceSystemOrRoot("Only the system can request package update");
6931
6932        // We need to re-extract after an OTA.
6933        boolean causeUpgrade = isUpgrade();
6934
6935        // First boot or factory reset.
6936        // Note: we also handle devices that are upgrading to N right now as if it is their
6937        //       first boot, as they do not have profile data.
6938        boolean causeFirstBoot = isFirstBoot() || mIsPreNUpgrade;
6939
6940        // We need to re-extract after a pruned cache, as AoT-ed files will be out of date.
6941        boolean causePrunedCache = VMRuntime.didPruneDalvikCache();
6942
6943        if (!causeUpgrade && !causeFirstBoot && !causePrunedCache) {
6944            return;
6945        }
6946
6947        List<PackageParser.Package> pkgs;
6948        synchronized (mPackages) {
6949            pkgs = PackageManagerServiceUtils.getPackagesForDexopt(mPackages.values(), this);
6950        }
6951
6952        int curr = 0;
6953        int total = pkgs.size();
6954        for (PackageParser.Package pkg : pkgs) {
6955            curr++;
6956
6957            if (DEBUG_DEXOPT) {
6958                Log.i(TAG, "Extracting app " + curr + " of " + total + ": " + pkg.packageName);
6959            }
6960
6961            if (PackageDexOptimizer.canOptimizePackage(pkg)) {
6962                // If the cache was pruned, any compiled odex files will likely be out of date
6963                // and would have to be patched (would be SELF_PATCHOAT, which is deprecated).
6964                // Instead, force the extraction in this case.
6965                performDexOpt(pkg.packageName, null /* instructionSet */,
6966                         false /* checkProfiles */,
6967                         causeFirstBoot ? REASON_FIRST_BOOT : REASON_BOOT,
6968                         causePrunedCache);
6969            }
6970        }
6971    }
6972
6973    @Override
6974    public void notifyPackageUse(String packageName) {
6975        synchronized (mPackages) {
6976            PackageParser.Package p = mPackages.get(packageName);
6977            if (p == null) {
6978                return;
6979            }
6980            p.mLastPackageUsageTimeInMills = System.currentTimeMillis();
6981        }
6982    }
6983
6984    // TODO: this is not used nor needed. Delete it.
6985    @Override
6986    public boolean performDexOptIfNeeded(String packageName, String instructionSet) {
6987        return performDexOptTraced(packageName, instructionSet, false /* checkProfiles */,
6988                getFullCompilerFilter(), false /* force */);
6989    }
6990
6991    @Override
6992    public boolean performDexOpt(String packageName, String instructionSet,
6993            boolean checkProfiles, int compileReason, boolean force) {
6994        return performDexOptTraced(packageName, instructionSet, checkProfiles,
6995                getCompilerFilterForReason(compileReason), force);
6996    }
6997
6998    @Override
6999    public boolean performDexOptMode(String packageName, String instructionSet,
7000            boolean checkProfiles, String targetCompilerFilter, boolean force) {
7001        return performDexOptTraced(packageName, instructionSet, checkProfiles,
7002                targetCompilerFilter, force);
7003    }
7004
7005    private boolean performDexOptTraced(String packageName, String instructionSet,
7006                boolean checkProfiles, String targetCompilerFilter, boolean force) {
7007        Trace.traceBegin(TRACE_TAG_PACKAGE_MANAGER, "dexopt");
7008        try {
7009            return performDexOptInternal(packageName, instructionSet, checkProfiles,
7010                    targetCompilerFilter, force);
7011        } finally {
7012            Trace.traceEnd(TRACE_TAG_PACKAGE_MANAGER);
7013        }
7014    }
7015
7016    private boolean performDexOptInternal(String packageName, String instructionSet,
7017                boolean checkProfiles, String targetCompilerFilter, boolean force) {
7018        PackageParser.Package p;
7019        final String targetInstructionSet;
7020        synchronized (mPackages) {
7021            p = mPackages.get(packageName);
7022            if (p == null) {
7023                return false;
7024            }
7025            mPackageUsage.write(false);
7026
7027            targetInstructionSet = instructionSet != null ? instructionSet :
7028                    getPrimaryInstructionSet(p.applicationInfo);
7029        }
7030        long callingId = Binder.clearCallingIdentity();
7031        try {
7032            synchronized (mInstallLock) {
7033                final String[] instructionSets = new String[] { targetInstructionSet };
7034                int result = performDexOptInternalWithDependenciesLI(p, instructionSets,
7035                        checkProfiles, targetCompilerFilter, force);
7036                return result == PackageDexOptimizer.DEX_OPT_PERFORMED;
7037            }
7038        } finally {
7039            Binder.restoreCallingIdentity(callingId);
7040        }
7041    }
7042
7043    public ArraySet<String> getOptimizablePackages() {
7044        ArraySet<String> pkgs = new ArraySet<String>();
7045        synchronized (mPackages) {
7046            for (PackageParser.Package p : mPackages.values()) {
7047                if (PackageDexOptimizer.canOptimizePackage(p)) {
7048                    pkgs.add(p.packageName);
7049                }
7050            }
7051        }
7052        return pkgs;
7053    }
7054
7055    private int performDexOptInternalWithDependenciesLI(PackageParser.Package p,
7056            String instructionSets[], boolean checkProfiles, String targetCompilerFilter,
7057            boolean force) {
7058        // Select the dex optimizer based on the force parameter.
7059        // Note: The force option is rarely used (cmdline input for testing, mostly), so it's OK to
7060        //       allocate an object here.
7061        PackageDexOptimizer pdo = force
7062                ? new PackageDexOptimizer.ForcedUpdatePackageDexOptimizer(mPackageDexOptimizer)
7063                : mPackageDexOptimizer;
7064
7065        // Optimize all dependencies first. Note: we ignore the return value and march on
7066        // on errors.
7067        Collection<PackageParser.Package> deps = findSharedNonSystemLibraries(p);
7068        if (!deps.isEmpty()) {
7069            for (PackageParser.Package depPackage : deps) {
7070                // TODO: Analyze and investigate if we (should) profile libraries.
7071                // Currently this will do a full compilation of the library by default.
7072                pdo.performDexOpt(depPackage, instructionSets, false /* checkProfiles */,
7073                        getCompilerFilterForReason(REASON_NON_SYSTEM_LIBRARY));
7074            }
7075        }
7076
7077        return pdo.performDexOpt(p, instructionSets, checkProfiles, targetCompilerFilter);
7078    }
7079
7080    Collection<PackageParser.Package> findSharedNonSystemLibraries(PackageParser.Package p) {
7081        if (p.usesLibraries != null || p.usesOptionalLibraries != null) {
7082            ArrayList<PackageParser.Package> retValue = new ArrayList<>();
7083            Set<String> collectedNames = new HashSet<>();
7084            findSharedNonSystemLibrariesRecursive(p, retValue, collectedNames);
7085
7086            retValue.remove(p);
7087
7088            return retValue;
7089        } else {
7090            return Collections.emptyList();
7091        }
7092    }
7093
7094    private void findSharedNonSystemLibrariesRecursive(PackageParser.Package p,
7095            Collection<PackageParser.Package> collected, Set<String> collectedNames) {
7096        if (!collectedNames.contains(p.packageName)) {
7097            collectedNames.add(p.packageName);
7098            collected.add(p);
7099
7100            if (p.usesLibraries != null) {
7101                findSharedNonSystemLibrariesRecursive(p.usesLibraries, collected, collectedNames);
7102            }
7103            if (p.usesOptionalLibraries != null) {
7104                findSharedNonSystemLibrariesRecursive(p.usesOptionalLibraries, collected,
7105                        collectedNames);
7106            }
7107        }
7108    }
7109
7110    private void findSharedNonSystemLibrariesRecursive(Collection<String> libs,
7111            Collection<PackageParser.Package> collected, Set<String> collectedNames) {
7112        for (String libName : libs) {
7113            PackageParser.Package libPkg = findSharedNonSystemLibrary(libName);
7114            if (libPkg != null) {
7115                findSharedNonSystemLibrariesRecursive(libPkg, collected, collectedNames);
7116            }
7117        }
7118    }
7119
7120    private PackageParser.Package findSharedNonSystemLibrary(String libName) {
7121        synchronized (mPackages) {
7122            PackageManagerService.SharedLibraryEntry lib = mSharedLibraries.get(libName);
7123            if (lib != null && lib.apk != null) {
7124                return mPackages.get(lib.apk);
7125            }
7126        }
7127        return null;
7128    }
7129
7130    public void shutdown() {
7131        mPackageUsage.write(true);
7132    }
7133
7134    @Override
7135    public void forceDexOpt(String packageName) {
7136        enforceSystemOrRoot("forceDexOpt");
7137
7138        PackageParser.Package pkg;
7139        synchronized (mPackages) {
7140            pkg = mPackages.get(packageName);
7141            if (pkg == null) {
7142                throw new IllegalArgumentException("Unknown package: " + packageName);
7143            }
7144        }
7145
7146        synchronized (mInstallLock) {
7147            final String[] instructionSets = new String[] {
7148                    getPrimaryInstructionSet(pkg.applicationInfo) };
7149
7150            Trace.traceBegin(TRACE_TAG_PACKAGE_MANAGER, "dexopt");
7151
7152            // Whoever is calling forceDexOpt wants a fully compiled package.
7153            // Don't use profiles since that may cause compilation to be skipped.
7154            final int res = performDexOptInternalWithDependenciesLI(pkg, instructionSets,
7155                    false /* checkProfiles */, getCompilerFilterForReason(REASON_FORCED_DEXOPT),
7156                    true /* force */);
7157
7158            Trace.traceEnd(TRACE_TAG_PACKAGE_MANAGER);
7159            if (res != PackageDexOptimizer.DEX_OPT_PERFORMED) {
7160                throw new IllegalStateException("Failed to dexopt: " + res);
7161            }
7162        }
7163    }
7164
7165    private boolean verifyPackageUpdateLPr(PackageSetting oldPkg, PackageParser.Package newPkg) {
7166        if ((oldPkg.pkgFlags&ApplicationInfo.FLAG_SYSTEM) == 0) {
7167            Slog.w(TAG, "Unable to update from " + oldPkg.name
7168                    + " to " + newPkg.packageName
7169                    + ": old package not in system partition");
7170            return false;
7171        } else if (mPackages.get(oldPkg.name) != null) {
7172            Slog.w(TAG, "Unable to update from " + oldPkg.name
7173                    + " to " + newPkg.packageName
7174                    + ": old package still exists");
7175            return false;
7176        }
7177        return true;
7178    }
7179
7180    private boolean removeDataDirsLI(String volumeUuid, String packageName) {
7181        // TODO: triage flags as part of 26466827
7182        final int flags = StorageManager.FLAG_STORAGE_CE | StorageManager.FLAG_STORAGE_DE;
7183
7184        boolean res = true;
7185        final int[] users = sUserManager.getUserIds();
7186        for (int user : users) {
7187            try {
7188                mInstaller.destroyAppData(volumeUuid, packageName, user, flags);
7189            } catch (InstallerException e) {
7190                Slog.w(TAG, "Failed to delete data directory", e);
7191                res = false;
7192            }
7193        }
7194        return res;
7195    }
7196
7197    void removeCodePathLI(File codePath) {
7198        if (codePath.isDirectory()) {
7199            try {
7200                mInstaller.rmPackageDir(codePath.getAbsolutePath());
7201            } catch (InstallerException e) {
7202                Slog.w(TAG, "Failed to remove code path", e);
7203            }
7204        } else {
7205            codePath.delete();
7206        }
7207    }
7208
7209    void destroyAppDataLI(String volumeUuid, String packageName, int userId, int flags) {
7210        try {
7211            mInstaller.destroyAppData(volumeUuid, packageName, userId, flags);
7212        } catch (InstallerException e) {
7213            Slog.w(TAG, "Failed to destroy app data", e);
7214        }
7215    }
7216
7217    void restoreconAppDataLI(String volumeUuid, String packageName, int userId, int flags,
7218            int appId, String seinfo) {
7219        try {
7220            mInstaller.restoreconAppData(volumeUuid, packageName, userId, flags, appId, seinfo);
7221        } catch (InstallerException e) {
7222            Slog.e(TAG, "Failed to restorecon for " + packageName + ": " + e);
7223        }
7224    }
7225
7226    private void deleteProfilesLI(String packageName, boolean destroy) {
7227        final PackageParser.Package pkg;
7228        synchronized (mPackages) {
7229            pkg = mPackages.get(packageName);
7230        }
7231        if (pkg == null) {
7232            Slog.w(TAG, "Failed to delete profiles. No package: " + packageName);
7233            return;
7234        }
7235        deleteProfilesLI(pkg, destroy);
7236    }
7237
7238    private void deleteProfilesLI(PackageParser.Package pkg, boolean destroy) {
7239        try {
7240            if (destroy) {
7241                mInstaller.clearAppProfiles(pkg.packageName);
7242            } else {
7243                mInstaller.destroyAppProfiles(pkg.packageName);
7244            }
7245        } catch (InstallerException ex) {
7246            Log.e(TAG, "Could not delete profiles for package " + pkg.packageName);
7247        }
7248    }
7249
7250    private void deleteCodeCacheDirsLI(String volumeUuid, String packageName) {
7251        final PackageParser.Package pkg;
7252        synchronized (mPackages) {
7253            pkg = mPackages.get(packageName);
7254        }
7255        if (pkg == null) {
7256            Slog.w(TAG, "Failed to delete code cache directory. No package: " + packageName);
7257            return;
7258        }
7259        deleteCodeCacheDirsLI(pkg);
7260    }
7261
7262    private void deleteCodeCacheDirsLI(PackageParser.Package pkg) {
7263        // TODO: triage flags as part of 26466827
7264        final int flags = StorageManager.FLAG_STORAGE_CE | StorageManager.FLAG_STORAGE_DE;
7265
7266        int[] users = sUserManager.getUserIds();
7267        int res = 0;
7268        for (int user : users) {
7269            // Remove the parent code cache
7270            try {
7271                mInstaller.clearAppData(pkg.volumeUuid, pkg.packageName, user,
7272                        flags | Installer.FLAG_CLEAR_CODE_CACHE_ONLY);
7273            } catch (InstallerException e) {
7274                Slog.w(TAG, "Failed to delete code cache directory", e);
7275            }
7276            final int childCount = (pkg.childPackages != null) ? pkg.childPackages.size() : 0;
7277            for (int i = 0; i < childCount; i++) {
7278                PackageParser.Package childPkg = pkg.childPackages.get(i);
7279                // Remove the child code cache
7280                try {
7281                    mInstaller.clearAppData(childPkg.volumeUuid, childPkg.packageName,
7282                            user, flags | Installer.FLAG_CLEAR_CODE_CACHE_ONLY);
7283                } catch (InstallerException e) {
7284                    Slog.w(TAG, "Failed to delete code cache directory", e);
7285                }
7286            }
7287        }
7288    }
7289
7290    private void setInstallAndUpdateTime(PackageParser.Package pkg, long firstInstallTime,
7291            long lastUpdateTime) {
7292        // Set parent install/update time
7293        PackageSetting ps = (PackageSetting) pkg.mExtras;
7294        if (ps != null) {
7295            ps.firstInstallTime = firstInstallTime;
7296            ps.lastUpdateTime = lastUpdateTime;
7297        }
7298        // Set children install/update time
7299        final int childCount = (pkg.childPackages != null) ? pkg.childPackages.size() : 0;
7300        for (int i = 0; i < childCount; i++) {
7301            PackageParser.Package childPkg = pkg.childPackages.get(i);
7302            ps = (PackageSetting) childPkg.mExtras;
7303            if (ps != null) {
7304                ps.firstInstallTime = firstInstallTime;
7305                ps.lastUpdateTime = lastUpdateTime;
7306            }
7307        }
7308    }
7309
7310    private void addSharedLibraryLPw(ArraySet<String> usesLibraryFiles, SharedLibraryEntry file,
7311            PackageParser.Package changingLib) {
7312        if (file.path != null) {
7313            usesLibraryFiles.add(file.path);
7314            return;
7315        }
7316        PackageParser.Package p = mPackages.get(file.apk);
7317        if (changingLib != null && changingLib.packageName.equals(file.apk)) {
7318            // If we are doing this while in the middle of updating a library apk,
7319            // then we need to make sure to use that new apk for determining the
7320            // dependencies here.  (We haven't yet finished committing the new apk
7321            // to the package manager state.)
7322            if (p == null || p.packageName.equals(changingLib.packageName)) {
7323                p = changingLib;
7324            }
7325        }
7326        if (p != null) {
7327            usesLibraryFiles.addAll(p.getAllCodePaths());
7328        }
7329    }
7330
7331    private void updateSharedLibrariesLPw(PackageParser.Package pkg,
7332            PackageParser.Package changingLib) throws PackageManagerException {
7333        if (pkg.usesLibraries != null || pkg.usesOptionalLibraries != null) {
7334            final ArraySet<String> usesLibraryFiles = new ArraySet<>();
7335            int N = pkg.usesLibraries != null ? pkg.usesLibraries.size() : 0;
7336            for (int i=0; i<N; i++) {
7337                final SharedLibraryEntry file = mSharedLibraries.get(pkg.usesLibraries.get(i));
7338                if (file == null) {
7339                    throw new PackageManagerException(INSTALL_FAILED_MISSING_SHARED_LIBRARY,
7340                            "Package " + pkg.packageName + " requires unavailable shared library "
7341                            + pkg.usesLibraries.get(i) + "; failing!");
7342                }
7343                addSharedLibraryLPw(usesLibraryFiles, file, changingLib);
7344            }
7345            N = pkg.usesOptionalLibraries != null ? pkg.usesOptionalLibraries.size() : 0;
7346            for (int i=0; i<N; i++) {
7347                final SharedLibraryEntry file = mSharedLibraries.get(pkg.usesOptionalLibraries.get(i));
7348                if (file == null) {
7349                    Slog.w(TAG, "Package " + pkg.packageName
7350                            + " desires unavailable shared library "
7351                            + pkg.usesOptionalLibraries.get(i) + "; ignoring!");
7352                } else {
7353                    addSharedLibraryLPw(usesLibraryFiles, file, changingLib);
7354                }
7355            }
7356            N = usesLibraryFiles.size();
7357            if (N > 0) {
7358                pkg.usesLibraryFiles = usesLibraryFiles.toArray(new String[N]);
7359            } else {
7360                pkg.usesLibraryFiles = null;
7361            }
7362        }
7363    }
7364
7365    private static boolean hasString(List<String> list, List<String> which) {
7366        if (list == null) {
7367            return false;
7368        }
7369        for (int i=list.size()-1; i>=0; i--) {
7370            for (int j=which.size()-1; j>=0; j--) {
7371                if (which.get(j).equals(list.get(i))) {
7372                    return true;
7373                }
7374            }
7375        }
7376        return false;
7377    }
7378
7379    private void updateAllSharedLibrariesLPw() {
7380        for (PackageParser.Package pkg : mPackages.values()) {
7381            try {
7382                updateSharedLibrariesLPw(pkg, null);
7383            } catch (PackageManagerException e) {
7384                Slog.e(TAG, "updateAllSharedLibrariesLPw failed: " + e.getMessage());
7385            }
7386        }
7387    }
7388
7389    private ArrayList<PackageParser.Package> updateAllSharedLibrariesLPw(
7390            PackageParser.Package changingPkg) {
7391        ArrayList<PackageParser.Package> res = null;
7392        for (PackageParser.Package pkg : mPackages.values()) {
7393            if (hasString(pkg.usesLibraries, changingPkg.libraryNames)
7394                    || hasString(pkg.usesOptionalLibraries, changingPkg.libraryNames)) {
7395                if (res == null) {
7396                    res = new ArrayList<PackageParser.Package>();
7397                }
7398                res.add(pkg);
7399                try {
7400                    updateSharedLibrariesLPw(pkg, changingPkg);
7401                } catch (PackageManagerException e) {
7402                    Slog.e(TAG, "updateAllSharedLibrariesLPw failed: " + e.getMessage());
7403                }
7404            }
7405        }
7406        return res;
7407    }
7408
7409    /**
7410     * Derive the value of the {@code cpuAbiOverride} based on the provided
7411     * value and an optional stored value from the package settings.
7412     */
7413    private static String deriveAbiOverride(String abiOverride, PackageSetting settings) {
7414        String cpuAbiOverride = null;
7415
7416        if (NativeLibraryHelper.CLEAR_ABI_OVERRIDE.equals(abiOverride)) {
7417            cpuAbiOverride = null;
7418        } else if (abiOverride != null) {
7419            cpuAbiOverride = abiOverride;
7420        } else if (settings != null) {
7421            cpuAbiOverride = settings.cpuAbiOverrideString;
7422        }
7423
7424        return cpuAbiOverride;
7425    }
7426
7427    private PackageParser.Package scanPackageTracedLI(PackageParser.Package pkg, int parseFlags,
7428            int scanFlags, long currentTime, UserHandle user) throws PackageManagerException {
7429        Trace.traceBegin(TRACE_TAG_PACKAGE_MANAGER, "scanPackage");
7430        // If the package has children and this is the first dive in the function
7431        // we recursively scan the package with the SCAN_CHECK_ONLY flag set to see
7432        // whether all packages (parent and children) would be successfully scanned
7433        // before the actual scan since scanning mutates internal state and we want
7434        // to atomically install the package and its children.
7435        if ((scanFlags & SCAN_CHECK_ONLY) == 0) {
7436            if (pkg.childPackages != null && pkg.childPackages.size() > 0) {
7437                scanFlags |= SCAN_CHECK_ONLY;
7438            }
7439        } else {
7440            scanFlags &= ~SCAN_CHECK_ONLY;
7441        }
7442
7443        final PackageParser.Package scannedPkg;
7444        try {
7445            // Scan the parent
7446            scannedPkg = scanPackageLI(pkg, parseFlags, scanFlags, currentTime, user);
7447            // Scan the children
7448            final int childCount = (pkg.childPackages != null) ? pkg.childPackages.size() : 0;
7449            for (int i = 0; i < childCount; i++) {
7450                PackageParser.Package childPkg = pkg.childPackages.get(i);
7451                scanPackageLI(childPkg, parseFlags,
7452                        scanFlags, currentTime, user);
7453            }
7454        } finally {
7455            Trace.traceEnd(TRACE_TAG_PACKAGE_MANAGER);
7456        }
7457
7458        if ((scanFlags & SCAN_CHECK_ONLY) != 0) {
7459            return scanPackageTracedLI(pkg, parseFlags, scanFlags, currentTime, user);
7460        }
7461
7462        return scannedPkg;
7463    }
7464
7465    private PackageParser.Package scanPackageLI(PackageParser.Package pkg, int parseFlags,
7466            int scanFlags, long currentTime, UserHandle user) throws PackageManagerException {
7467        boolean success = false;
7468        try {
7469            final PackageParser.Package res = scanPackageDirtyLI(pkg, parseFlags, scanFlags,
7470                    currentTime, user);
7471            success = true;
7472            return res;
7473        } finally {
7474            if (!success && (scanFlags & SCAN_DELETE_DATA_ON_FAILURES) != 0) {
7475                removeDataDirsLI(pkg.volumeUuid, pkg.packageName);
7476            }
7477        }
7478    }
7479
7480    private PackageParser.Package scanPackageDirtyLI(PackageParser.Package pkg, int parseFlags,
7481            int scanFlags, long currentTime, UserHandle user)
7482            throws PackageManagerException {
7483        final File scanFile = new File(pkg.codePath);
7484        if (pkg.applicationInfo.getCodePath() == null ||
7485                pkg.applicationInfo.getResourcePath() == null) {
7486            // Bail out. The resource and code paths haven't been set.
7487            throw new PackageManagerException(INSTALL_FAILED_INVALID_APK,
7488                    "Code and resource paths haven't been set correctly");
7489        }
7490
7491        if ((parseFlags&PackageParser.PARSE_IS_SYSTEM) != 0) {
7492            pkg.applicationInfo.flags |= ApplicationInfo.FLAG_SYSTEM;
7493        } else {
7494            // Only allow system apps to be flagged as core apps.
7495            pkg.coreApp = false;
7496        }
7497
7498        if ((parseFlags&PackageParser.PARSE_IS_PRIVILEGED) != 0) {
7499            pkg.applicationInfo.privateFlags |= ApplicationInfo.PRIVATE_FLAG_PRIVILEGED;
7500        }
7501
7502        if (mCustomResolverComponentName != null &&
7503                mCustomResolverComponentName.getPackageName().equals(pkg.packageName)) {
7504            setUpCustomResolverActivity(pkg);
7505        }
7506
7507        if (pkg.packageName.equals("android")) {
7508            synchronized (mPackages) {
7509                if (mAndroidApplication != null) {
7510                    Slog.w(TAG, "*************************************************");
7511                    Slog.w(TAG, "Core android package being redefined.  Skipping.");
7512                    Slog.w(TAG, " file=" + scanFile);
7513                    Slog.w(TAG, "*************************************************");
7514                    throw new PackageManagerException(INSTALL_FAILED_DUPLICATE_PACKAGE,
7515                            "Core android package being redefined.  Skipping.");
7516                }
7517
7518                if ((scanFlags & SCAN_CHECK_ONLY) == 0) {
7519                    // Set up information for our fall-back user intent resolution activity.
7520                    mPlatformPackage = pkg;
7521                    pkg.mVersionCode = mSdkVersion;
7522                    mAndroidApplication = pkg.applicationInfo;
7523
7524                    if (!mResolverReplaced) {
7525                        mResolveActivity.applicationInfo = mAndroidApplication;
7526                        mResolveActivity.name = ResolverActivity.class.getName();
7527                        mResolveActivity.packageName = mAndroidApplication.packageName;
7528                        mResolveActivity.processName = "system:ui";
7529                        mResolveActivity.launchMode = ActivityInfo.LAUNCH_MULTIPLE;
7530                        mResolveActivity.documentLaunchMode = ActivityInfo.DOCUMENT_LAUNCH_NEVER;
7531                        mResolveActivity.flags = ActivityInfo.FLAG_EXCLUDE_FROM_RECENTS;
7532                        mResolveActivity.theme = R.style.Theme_Holo_Dialog_Alert;
7533                        mResolveActivity.exported = true;
7534                        mResolveActivity.enabled = true;
7535                        mResolveInfo.activityInfo = mResolveActivity;
7536                        mResolveInfo.priority = 0;
7537                        mResolveInfo.preferredOrder = 0;
7538                        mResolveInfo.match = 0;
7539                        mResolveComponentName = new ComponentName(
7540                                mAndroidApplication.packageName, mResolveActivity.name);
7541                    }
7542                }
7543            }
7544        }
7545
7546        if (DEBUG_PACKAGE_SCANNING) {
7547            if ((parseFlags & PackageParser.PARSE_CHATTY) != 0)
7548                Log.d(TAG, "Scanning package " + pkg.packageName);
7549        }
7550
7551        synchronized (mPackages) {
7552            if (mPackages.containsKey(pkg.packageName)
7553                    || mSharedLibraries.containsKey(pkg.packageName)) {
7554                throw new PackageManagerException(INSTALL_FAILED_DUPLICATE_PACKAGE,
7555                        "Application package " + pkg.packageName
7556                                + " already installed.  Skipping duplicate.");
7557            }
7558
7559            // If we're only installing presumed-existing packages, require that the
7560            // scanned APK is both already known and at the path previously established
7561            // for it.  Previously unknown packages we pick up normally, but if we have an
7562            // a priori expectation about this package's install presence, enforce it.
7563            // With a singular exception for new system packages. When an OTA contains
7564            // a new system package, we allow the codepath to change from a system location
7565            // to the user-installed location. If we don't allow this change, any newer,
7566            // user-installed version of the application will be ignored.
7567            if ((scanFlags & SCAN_REQUIRE_KNOWN) != 0) {
7568                if (mExpectingBetter.containsKey(pkg.packageName)) {
7569                    logCriticalInfo(Log.WARN,
7570                            "Relax SCAN_REQUIRE_KNOWN requirement for package " + pkg.packageName);
7571                } else {
7572                    PackageSetting known = mSettings.peekPackageLPr(pkg.packageName);
7573                    if (known != null) {
7574                        if (DEBUG_PACKAGE_SCANNING) {
7575                            Log.d(TAG, "Examining " + pkg.codePath
7576                                    + " and requiring known paths " + known.codePathString
7577                                    + " & " + known.resourcePathString);
7578                        }
7579                        if (!pkg.applicationInfo.getCodePath().equals(known.codePathString)
7580                                || !pkg.applicationInfo.getResourcePath().equals(
7581                                known.resourcePathString)) {
7582                            throw new PackageManagerException(INSTALL_FAILED_PACKAGE_CHANGED,
7583                                    "Application package " + pkg.packageName
7584                                            + " found at " + pkg.applicationInfo.getCodePath()
7585                                            + " but expected at " + known.codePathString
7586                                            + "; ignoring.");
7587                        }
7588                    }
7589                }
7590            }
7591        }
7592
7593        // Initialize package source and resource directories
7594        File destCodeFile = new File(pkg.applicationInfo.getCodePath());
7595        File destResourceFile = new File(pkg.applicationInfo.getResourcePath());
7596
7597        SharedUserSetting suid = null;
7598        PackageSetting pkgSetting = null;
7599
7600        if (!isSystemApp(pkg)) {
7601            // Only system apps can use these features.
7602            pkg.mOriginalPackages = null;
7603            pkg.mRealPackage = null;
7604            pkg.mAdoptPermissions = null;
7605        }
7606
7607        // Getting the package setting may have a side-effect, so if we
7608        // are only checking if scan would succeed, stash a copy of the
7609        // old setting to restore at the end.
7610        PackageSetting nonMutatedPs = null;
7611
7612        // writer
7613        synchronized (mPackages) {
7614            if (pkg.mSharedUserId != null) {
7615                suid = mSettings.getSharedUserLPw(pkg.mSharedUserId, 0, 0, true);
7616                if (suid == null) {
7617                    throw new PackageManagerException(INSTALL_FAILED_INSUFFICIENT_STORAGE,
7618                            "Creating application package " + pkg.packageName
7619                            + " for shared user failed");
7620                }
7621                if (DEBUG_PACKAGE_SCANNING) {
7622                    if ((parseFlags & PackageParser.PARSE_CHATTY) != 0)
7623                        Log.d(TAG, "Shared UserID " + pkg.mSharedUserId + " (uid=" + suid.userId
7624                                + "): packages=" + suid.packages);
7625                }
7626            }
7627
7628            // Check if we are renaming from an original package name.
7629            PackageSetting origPackage = null;
7630            String realName = null;
7631            if (pkg.mOriginalPackages != null) {
7632                // This package may need to be renamed to a previously
7633                // installed name.  Let's check on that...
7634                final String renamed = mSettings.mRenamedPackages.get(pkg.mRealPackage);
7635                if (pkg.mOriginalPackages.contains(renamed)) {
7636                    // This package had originally been installed as the
7637                    // original name, and we have already taken care of
7638                    // transitioning to the new one.  Just update the new
7639                    // one to continue using the old name.
7640                    realName = pkg.mRealPackage;
7641                    if (!pkg.packageName.equals(renamed)) {
7642                        // Callers into this function may have already taken
7643                        // care of renaming the package; only do it here if
7644                        // it is not already done.
7645                        pkg.setPackageName(renamed);
7646                    }
7647
7648                } else {
7649                    for (int i=pkg.mOriginalPackages.size()-1; i>=0; i--) {
7650                        if ((origPackage = mSettings.peekPackageLPr(
7651                                pkg.mOriginalPackages.get(i))) != null) {
7652                            // We do have the package already installed under its
7653                            // original name...  should we use it?
7654                            if (!verifyPackageUpdateLPr(origPackage, pkg)) {
7655                                // New package is not compatible with original.
7656                                origPackage = null;
7657                                continue;
7658                            } else if (origPackage.sharedUser != null) {
7659                                // Make sure uid is compatible between packages.
7660                                if (!origPackage.sharedUser.name.equals(pkg.mSharedUserId)) {
7661                                    Slog.w(TAG, "Unable to migrate data from " + origPackage.name
7662                                            + " to " + pkg.packageName + ": old uid "
7663                                            + origPackage.sharedUser.name
7664                                            + " differs from " + pkg.mSharedUserId);
7665                                    origPackage = null;
7666                                    continue;
7667                                }
7668                            } else {
7669                                if (DEBUG_UPGRADE) Log.v(TAG, "Renaming new package "
7670                                        + pkg.packageName + " to old name " + origPackage.name);
7671                            }
7672                            break;
7673                        }
7674                    }
7675                }
7676            }
7677
7678            if (mTransferedPackages.contains(pkg.packageName)) {
7679                Slog.w(TAG, "Package " + pkg.packageName
7680                        + " was transferred to another, but its .apk remains");
7681            }
7682
7683            // See comments in nonMutatedPs declaration
7684            if ((scanFlags & SCAN_CHECK_ONLY) != 0) {
7685                PackageSetting foundPs = mSettings.peekPackageLPr(pkg.packageName);
7686                if (foundPs != null) {
7687                    nonMutatedPs = new PackageSetting(foundPs);
7688                }
7689            }
7690
7691            // Just create the setting, don't add it yet. For already existing packages
7692            // the PkgSetting exists already and doesn't have to be created.
7693            pkgSetting = mSettings.getPackageLPw(pkg, origPackage, realName, suid, destCodeFile,
7694                    destResourceFile, pkg.applicationInfo.nativeLibraryRootDir,
7695                    pkg.applicationInfo.primaryCpuAbi,
7696                    pkg.applicationInfo.secondaryCpuAbi,
7697                    pkg.applicationInfo.flags, pkg.applicationInfo.privateFlags,
7698                    user, false);
7699            if (pkgSetting == null) {
7700                throw new PackageManagerException(INSTALL_FAILED_INSUFFICIENT_STORAGE,
7701                        "Creating application package " + pkg.packageName + " failed");
7702            }
7703
7704            if (pkgSetting.origPackage != null) {
7705                // If we are first transitioning from an original package,
7706                // fix up the new package's name now.  We need to do this after
7707                // looking up the package under its new name, so getPackageLP
7708                // can take care of fiddling things correctly.
7709                pkg.setPackageName(origPackage.name);
7710
7711                // File a report about this.
7712                String msg = "New package " + pkgSetting.realName
7713                        + " renamed to replace old package " + pkgSetting.name;
7714                reportSettingsProblem(Log.WARN, msg);
7715
7716                // Make a note of it.
7717                if ((scanFlags & SCAN_CHECK_ONLY) == 0) {
7718                    mTransferedPackages.add(origPackage.name);
7719                }
7720
7721                // No longer need to retain this.
7722                pkgSetting.origPackage = null;
7723            }
7724
7725            if ((scanFlags & SCAN_CHECK_ONLY) == 0 && realName != null) {
7726                // Make a note of it.
7727                mTransferedPackages.add(pkg.packageName);
7728            }
7729
7730            if (mSettings.isDisabledSystemPackageLPr(pkg.packageName)) {
7731                pkg.applicationInfo.flags |= ApplicationInfo.FLAG_UPDATED_SYSTEM_APP;
7732            }
7733
7734            if ((parseFlags&PackageParser.PARSE_IS_SYSTEM_DIR) == 0) {
7735                // Check all shared libraries and map to their actual file path.
7736                // We only do this here for apps not on a system dir, because those
7737                // are the only ones that can fail an install due to this.  We
7738                // will take care of the system apps by updating all of their
7739                // library paths after the scan is done.
7740                updateSharedLibrariesLPw(pkg, null);
7741            }
7742
7743            if (mFoundPolicyFile) {
7744                SELinuxMMAC.assignSeinfoValue(pkg);
7745            }
7746
7747            pkg.applicationInfo.uid = pkgSetting.appId;
7748            pkg.mExtras = pkgSetting;
7749            if (shouldCheckUpgradeKeySetLP(pkgSetting, scanFlags)) {
7750                if (checkUpgradeKeySetLP(pkgSetting, pkg)) {
7751                    // We just determined the app is signed correctly, so bring
7752                    // over the latest parsed certs.
7753                    pkgSetting.signatures.mSignatures = pkg.mSignatures;
7754                } else {
7755                    if ((parseFlags & PackageParser.PARSE_IS_SYSTEM_DIR) == 0) {
7756                        throw new PackageManagerException(INSTALL_FAILED_UPDATE_INCOMPATIBLE,
7757                                "Package " + pkg.packageName + " upgrade keys do not match the "
7758                                + "previously installed version");
7759                    } else {
7760                        pkgSetting.signatures.mSignatures = pkg.mSignatures;
7761                        String msg = "System package " + pkg.packageName
7762                            + " signature changed; retaining data.";
7763                        reportSettingsProblem(Log.WARN, msg);
7764                    }
7765                }
7766            } else {
7767                try {
7768                    verifySignaturesLP(pkgSetting, pkg);
7769                    // We just determined the app is signed correctly, so bring
7770                    // over the latest parsed certs.
7771                    pkgSetting.signatures.mSignatures = pkg.mSignatures;
7772                } catch (PackageManagerException e) {
7773                    if ((parseFlags & PackageParser.PARSE_IS_SYSTEM_DIR) == 0) {
7774                        throw e;
7775                    }
7776                    // The signature has changed, but this package is in the system
7777                    // image...  let's recover!
7778                    pkgSetting.signatures.mSignatures = pkg.mSignatures;
7779                    // However...  if this package is part of a shared user, but it
7780                    // doesn't match the signature of the shared user, let's fail.
7781                    // What this means is that you can't change the signatures
7782                    // associated with an overall shared user, which doesn't seem all
7783                    // that unreasonable.
7784                    if (pkgSetting.sharedUser != null) {
7785                        if (compareSignatures(pkgSetting.sharedUser.signatures.mSignatures,
7786                                              pkg.mSignatures) != PackageManager.SIGNATURE_MATCH) {
7787                            throw new PackageManagerException(
7788                                    INSTALL_PARSE_FAILED_INCONSISTENT_CERTIFICATES,
7789                                            "Signature mismatch for shared user: "
7790                                            + pkgSetting.sharedUser);
7791                        }
7792                    }
7793                    // File a report about this.
7794                    String msg = "System package " + pkg.packageName
7795                        + " signature changed; retaining data.";
7796                    reportSettingsProblem(Log.WARN, msg);
7797                }
7798            }
7799            // Verify that this new package doesn't have any content providers
7800            // that conflict with existing packages.  Only do this if the
7801            // package isn't already installed, since we don't want to break
7802            // things that are installed.
7803            if ((scanFlags & SCAN_NEW_INSTALL) != 0) {
7804                final int N = pkg.providers.size();
7805                int i;
7806                for (i=0; i<N; i++) {
7807                    PackageParser.Provider p = pkg.providers.get(i);
7808                    if (p.info.authority != null) {
7809                        String names[] = p.info.authority.split(";");
7810                        for (int j = 0; j < names.length; j++) {
7811                            if (mProvidersByAuthority.containsKey(names[j])) {
7812                                PackageParser.Provider other = mProvidersByAuthority.get(names[j]);
7813                                final String otherPackageName =
7814                                        ((other != null && other.getComponentName() != null) ?
7815                                                other.getComponentName().getPackageName() : "?");
7816                                throw new PackageManagerException(
7817                                        INSTALL_FAILED_CONFLICTING_PROVIDER,
7818                                                "Can't install because provider name " + names[j]
7819                                                + " (in package " + pkg.applicationInfo.packageName
7820                                                + ") is already used by " + otherPackageName);
7821                            }
7822                        }
7823                    }
7824                }
7825            }
7826
7827            if ((scanFlags & SCAN_CHECK_ONLY) == 0 && pkg.mAdoptPermissions != null) {
7828                // This package wants to adopt ownership of permissions from
7829                // another package.
7830                for (int i = pkg.mAdoptPermissions.size() - 1; i >= 0; i--) {
7831                    final String origName = pkg.mAdoptPermissions.get(i);
7832                    final PackageSetting orig = mSettings.peekPackageLPr(origName);
7833                    if (orig != null) {
7834                        if (verifyPackageUpdateLPr(orig, pkg)) {
7835                            Slog.i(TAG, "Adopting permissions from " + origName + " to "
7836                                    + pkg.packageName);
7837                            mSettings.transferPermissionsLPw(origName, pkg.packageName);
7838                        }
7839                    }
7840                }
7841            }
7842        }
7843
7844        final String pkgName = pkg.packageName;
7845
7846        final long scanFileTime = scanFile.lastModified();
7847        final boolean forceDex = (scanFlags & SCAN_FORCE_DEX) != 0;
7848        pkg.applicationInfo.processName = fixProcessName(
7849                pkg.applicationInfo.packageName,
7850                pkg.applicationInfo.processName,
7851                pkg.applicationInfo.uid);
7852
7853        if (pkg != mPlatformPackage) {
7854            // Get all of our default paths setup
7855            pkg.applicationInfo.initForUser(UserHandle.USER_SYSTEM);
7856        }
7857
7858        final String path = scanFile.getPath();
7859        final String cpuAbiOverride = deriveAbiOverride(pkg.cpuAbiOverride, pkgSetting);
7860
7861        if ((scanFlags & SCAN_NEW_INSTALL) == 0) {
7862            derivePackageAbi(pkg, scanFile, cpuAbiOverride, true /* extract libs */);
7863
7864            // Some system apps still use directory structure for native libraries
7865            // in which case we might end up not detecting abi solely based on apk
7866            // structure. Try to detect abi based on directory structure.
7867            if (isSystemApp(pkg) && !pkg.isUpdatedSystemApp() &&
7868                    pkg.applicationInfo.primaryCpuAbi == null) {
7869                setBundledAppAbisAndRoots(pkg, pkgSetting);
7870                setNativeLibraryPaths(pkg);
7871            }
7872
7873        } else {
7874            if ((scanFlags & SCAN_MOVE) != 0) {
7875                // We haven't run dex-opt for this move (since we've moved the compiled output too)
7876                // but we already have this packages package info in the PackageSetting. We just
7877                // use that and derive the native library path based on the new codepath.
7878                pkg.applicationInfo.primaryCpuAbi = pkgSetting.primaryCpuAbiString;
7879                pkg.applicationInfo.secondaryCpuAbi = pkgSetting.secondaryCpuAbiString;
7880            }
7881
7882            // Set native library paths again. For moves, the path will be updated based on the
7883            // ABIs we've determined above. For non-moves, the path will be updated based on the
7884            // ABIs we determined during compilation, but the path will depend on the final
7885            // package path (after the rename away from the stage path).
7886            setNativeLibraryPaths(pkg);
7887        }
7888
7889        // This is a special case for the "system" package, where the ABI is
7890        // dictated by the zygote configuration (and init.rc). We should keep track
7891        // of this ABI so that we can deal with "normal" applications that run under
7892        // the same UID correctly.
7893        if (mPlatformPackage == pkg) {
7894            pkg.applicationInfo.primaryCpuAbi = VMRuntime.getRuntime().is64Bit() ?
7895                    Build.SUPPORTED_64_BIT_ABIS[0] : Build.SUPPORTED_32_BIT_ABIS[0];
7896        }
7897
7898        // If there's a mismatch between the abi-override in the package setting
7899        // and the abiOverride specified for the install. Warn about this because we
7900        // would've already compiled the app without taking the package setting into
7901        // account.
7902        if ((scanFlags & SCAN_NO_DEX) == 0 && (scanFlags & SCAN_NEW_INSTALL) != 0) {
7903            if (cpuAbiOverride == null && pkgSetting.cpuAbiOverrideString != null) {
7904                Slog.w(TAG, "Ignoring persisted ABI override " + cpuAbiOverride +
7905                        " for package " + pkg.packageName);
7906            }
7907        }
7908
7909        pkgSetting.primaryCpuAbiString = pkg.applicationInfo.primaryCpuAbi;
7910        pkgSetting.secondaryCpuAbiString = pkg.applicationInfo.secondaryCpuAbi;
7911        pkgSetting.cpuAbiOverrideString = cpuAbiOverride;
7912
7913        // Copy the derived override back to the parsed package, so that we can
7914        // update the package settings accordingly.
7915        pkg.cpuAbiOverride = cpuAbiOverride;
7916
7917        if (DEBUG_ABI_SELECTION) {
7918            Slog.d(TAG, "Resolved nativeLibraryRoot for " + pkg.applicationInfo.packageName
7919                    + " to root=" + pkg.applicationInfo.nativeLibraryRootDir + ", isa="
7920                    + pkg.applicationInfo.nativeLibraryRootRequiresIsa);
7921        }
7922
7923        // Push the derived path down into PackageSettings so we know what to
7924        // clean up at uninstall time.
7925        pkgSetting.legacyNativeLibraryPathString = pkg.applicationInfo.nativeLibraryRootDir;
7926
7927        if (DEBUG_ABI_SELECTION) {
7928            Log.d(TAG, "Abis for package[" + pkg.packageName + "] are" +
7929                    " primary=" + pkg.applicationInfo.primaryCpuAbi +
7930                    " secondary=" + pkg.applicationInfo.secondaryCpuAbi);
7931        }
7932
7933        if ((scanFlags & SCAN_BOOTING) == 0 && pkgSetting.sharedUser != null) {
7934            // We don't do this here during boot because we can do it all
7935            // at once after scanning all existing packages.
7936            //
7937            // We also do this *before* we perform dexopt on this package, so that
7938            // we can avoid redundant dexopts, and also to make sure we've got the
7939            // code and package path correct.
7940            adjustCpuAbisForSharedUserLPw(pkgSetting.sharedUser.packages,
7941                    pkg, true /* boot complete */);
7942        }
7943
7944        if (mFactoryTest && pkg.requestedPermissions.contains(
7945                android.Manifest.permission.FACTORY_TEST)) {
7946            pkg.applicationInfo.flags |= ApplicationInfo.FLAG_FACTORY_TEST;
7947        }
7948
7949        ArrayList<PackageParser.Package> clientLibPkgs = null;
7950
7951        if ((scanFlags & SCAN_CHECK_ONLY) != 0) {
7952            if (nonMutatedPs != null) {
7953                synchronized (mPackages) {
7954                    mSettings.mPackages.put(nonMutatedPs.name, nonMutatedPs);
7955                }
7956            }
7957            return pkg;
7958        }
7959
7960        // Only privileged apps and updated privileged apps can add child packages.
7961        if (pkg.childPackages != null && !pkg.childPackages.isEmpty()) {
7962            if ((parseFlags & PARSE_IS_PRIVILEGED) == 0) {
7963                throw new PackageManagerException("Only privileged apps and updated "
7964                        + "privileged apps can add child packages. Ignoring package "
7965                        + pkg.packageName);
7966            }
7967            final int childCount = pkg.childPackages.size();
7968            for (int i = 0; i < childCount; i++) {
7969                PackageParser.Package childPkg = pkg.childPackages.get(i);
7970                if (mSettings.hasOtherDisabledSystemPkgWithChildLPr(pkg.packageName,
7971                        childPkg.packageName)) {
7972                    throw new PackageManagerException("Cannot override a child package of "
7973                            + "another disabled system app. Ignoring package " + pkg.packageName);
7974                }
7975            }
7976        }
7977
7978        // writer
7979        synchronized (mPackages) {
7980            if ((pkg.applicationInfo.flags&ApplicationInfo.FLAG_SYSTEM) != 0) {
7981                // Only system apps can add new shared libraries.
7982                if (pkg.libraryNames != null) {
7983                    for (int i=0; i<pkg.libraryNames.size(); i++) {
7984                        String name = pkg.libraryNames.get(i);
7985                        boolean allowed = false;
7986                        if (pkg.isUpdatedSystemApp()) {
7987                            // New library entries can only be added through the
7988                            // system image.  This is important to get rid of a lot
7989                            // of nasty edge cases: for example if we allowed a non-
7990                            // system update of the app to add a library, then uninstalling
7991                            // the update would make the library go away, and assumptions
7992                            // we made such as through app install filtering would now
7993                            // have allowed apps on the device which aren't compatible
7994                            // with it.  Better to just have the restriction here, be
7995                            // conservative, and create many fewer cases that can negatively
7996                            // impact the user experience.
7997                            final PackageSetting sysPs = mSettings
7998                                    .getDisabledSystemPkgLPr(pkg.packageName);
7999                            if (sysPs.pkg != null && sysPs.pkg.libraryNames != null) {
8000                                for (int j=0; j<sysPs.pkg.libraryNames.size(); j++) {
8001                                    if (name.equals(sysPs.pkg.libraryNames.get(j))) {
8002                                        allowed = true;
8003                                        break;
8004                                    }
8005                                }
8006                            }
8007                        } else {
8008                            allowed = true;
8009                        }
8010                        if (allowed) {
8011                            if (!mSharedLibraries.containsKey(name)) {
8012                                mSharedLibraries.put(name, new SharedLibraryEntry(null, pkg.packageName));
8013                            } else if (!name.equals(pkg.packageName)) {
8014                                Slog.w(TAG, "Package " + pkg.packageName + " library "
8015                                        + name + " already exists; skipping");
8016                            }
8017                        } else {
8018                            Slog.w(TAG, "Package " + pkg.packageName + " declares lib "
8019                                    + name + " that is not declared on system image; skipping");
8020                        }
8021                    }
8022                    if ((scanFlags & SCAN_BOOTING) == 0) {
8023                        // If we are not booting, we need to update any applications
8024                        // that are clients of our shared library.  If we are booting,
8025                        // this will all be done once the scan is complete.
8026                        clientLibPkgs = updateAllSharedLibrariesLPw(pkg);
8027                    }
8028                }
8029            }
8030        }
8031
8032        // Request the ActivityManager to kill the process(only for existing packages)
8033        // so that we do not end up in a confused state while the user is still using the older
8034        // version of the application while the new one gets installed.
8035        final boolean isReplacing = (scanFlags & SCAN_REPLACING) != 0;
8036        final boolean killApp = (scanFlags & SCAN_DONT_KILL_APP) == 0;
8037        if (killApp) {
8038            if (isReplacing) {
8039                Trace.traceBegin(TRACE_TAG_PACKAGE_MANAGER, "killApplication");
8040
8041                killApplication(pkg.applicationInfo.packageName,
8042                            pkg.applicationInfo.uid, "replace pkg");
8043
8044                Trace.traceEnd(TRACE_TAG_PACKAGE_MANAGER);
8045            }
8046        }
8047
8048        // Also need to kill any apps that are dependent on the library.
8049        if (clientLibPkgs != null) {
8050            for (int i=0; i<clientLibPkgs.size(); i++) {
8051                PackageParser.Package clientPkg = clientLibPkgs.get(i);
8052                killApplication(clientPkg.applicationInfo.packageName,
8053                        clientPkg.applicationInfo.uid, "update lib");
8054            }
8055        }
8056
8057        // Make sure we're not adding any bogus keyset info
8058        KeySetManagerService ksms = mSettings.mKeySetManagerService;
8059        ksms.assertScannedPackageValid(pkg);
8060
8061        // writer
8062        Trace.traceBegin(TRACE_TAG_PACKAGE_MANAGER, "updateSettings");
8063
8064        boolean createIdmapFailed = false;
8065        synchronized (mPackages) {
8066            // We don't expect installation to fail beyond this point
8067
8068            // Add the new setting to mSettings
8069            mSettings.insertPackageSettingLPw(pkgSetting, pkg);
8070            // Add the new setting to mPackages
8071            mPackages.put(pkg.applicationInfo.packageName, pkg);
8072            // Make sure we don't accidentally delete its data.
8073            final Iterator<PackageCleanItem> iter = mSettings.mPackagesToBeCleaned.iterator();
8074            while (iter.hasNext()) {
8075                PackageCleanItem item = iter.next();
8076                if (pkgName.equals(item.packageName)) {
8077                    iter.remove();
8078                }
8079            }
8080
8081            // Take care of first install / last update times.
8082            if (currentTime != 0) {
8083                if (pkgSetting.firstInstallTime == 0) {
8084                    pkgSetting.firstInstallTime = pkgSetting.lastUpdateTime = currentTime;
8085                } else if ((scanFlags&SCAN_UPDATE_TIME) != 0) {
8086                    pkgSetting.lastUpdateTime = currentTime;
8087                }
8088            } else if (pkgSetting.firstInstallTime == 0) {
8089                // We need *something*.  Take time time stamp of the file.
8090                pkgSetting.firstInstallTime = pkgSetting.lastUpdateTime = scanFileTime;
8091            } else if ((parseFlags&PackageParser.PARSE_IS_SYSTEM_DIR) != 0) {
8092                if (scanFileTime != pkgSetting.timeStamp) {
8093                    // A package on the system image has changed; consider this
8094                    // to be an update.
8095                    pkgSetting.lastUpdateTime = scanFileTime;
8096                }
8097            }
8098
8099            // Add the package's KeySets to the global KeySetManagerService
8100            ksms.addScannedPackageLPw(pkg);
8101
8102            int N = pkg.providers.size();
8103            StringBuilder r = null;
8104            int i;
8105            for (i=0; i<N; i++) {
8106                PackageParser.Provider p = pkg.providers.get(i);
8107                p.info.processName = fixProcessName(pkg.applicationInfo.processName,
8108                        p.info.processName, pkg.applicationInfo.uid);
8109                mProviders.addProvider(p);
8110                p.syncable = p.info.isSyncable;
8111                if (p.info.authority != null) {
8112                    String names[] = p.info.authority.split(";");
8113                    p.info.authority = null;
8114                    for (int j = 0; j < names.length; j++) {
8115                        if (j == 1 && p.syncable) {
8116                            // We only want the first authority for a provider to possibly be
8117                            // syncable, so if we already added this provider using a different
8118                            // authority clear the syncable flag. We copy the provider before
8119                            // changing it because the mProviders object contains a reference
8120                            // to a provider that we don't want to change.
8121                            // Only do this for the second authority since the resulting provider
8122                            // object can be the same for all future authorities for this provider.
8123                            p = new PackageParser.Provider(p);
8124                            p.syncable = false;
8125                        }
8126                        if (!mProvidersByAuthority.containsKey(names[j])) {
8127                            mProvidersByAuthority.put(names[j], p);
8128                            if (p.info.authority == null) {
8129                                p.info.authority = names[j];
8130                            } else {
8131                                p.info.authority = p.info.authority + ";" + names[j];
8132                            }
8133                            if (DEBUG_PACKAGE_SCANNING) {
8134                                if ((parseFlags & PackageParser.PARSE_CHATTY) != 0)
8135                                    Log.d(TAG, "Registered content provider: " + names[j]
8136                                            + ", className = " + p.info.name + ", isSyncable = "
8137                                            + p.info.isSyncable);
8138                            }
8139                        } else {
8140                            PackageParser.Provider other = mProvidersByAuthority.get(names[j]);
8141                            Slog.w(TAG, "Skipping provider name " + names[j] +
8142                                    " (in package " + pkg.applicationInfo.packageName +
8143                                    "): name already used by "
8144                                    + ((other != null && other.getComponentName() != null)
8145                                            ? other.getComponentName().getPackageName() : "?"));
8146                        }
8147                    }
8148                }
8149                if ((parseFlags&PackageParser.PARSE_CHATTY) != 0) {
8150                    if (r == null) {
8151                        r = new StringBuilder(256);
8152                    } else {
8153                        r.append(' ');
8154                    }
8155                    r.append(p.info.name);
8156                }
8157            }
8158            if (r != null) {
8159                if (DEBUG_PACKAGE_SCANNING) Log.d(TAG, "  Providers: " + r);
8160            }
8161
8162            N = pkg.services.size();
8163            r = null;
8164            for (i=0; i<N; i++) {
8165                PackageParser.Service s = pkg.services.get(i);
8166                s.info.processName = fixProcessName(pkg.applicationInfo.processName,
8167                        s.info.processName, pkg.applicationInfo.uid);
8168                mServices.addService(s);
8169                if ((parseFlags&PackageParser.PARSE_CHATTY) != 0) {
8170                    if (r == null) {
8171                        r = new StringBuilder(256);
8172                    } else {
8173                        r.append(' ');
8174                    }
8175                    r.append(s.info.name);
8176                }
8177            }
8178            if (r != null) {
8179                if (DEBUG_PACKAGE_SCANNING) Log.d(TAG, "  Services: " + r);
8180            }
8181
8182            N = pkg.receivers.size();
8183            r = null;
8184            for (i=0; i<N; i++) {
8185                PackageParser.Activity a = pkg.receivers.get(i);
8186                a.info.processName = fixProcessName(pkg.applicationInfo.processName,
8187                        a.info.processName, pkg.applicationInfo.uid);
8188                mReceivers.addActivity(a, "receiver");
8189                if ((parseFlags&PackageParser.PARSE_CHATTY) != 0) {
8190                    if (r == null) {
8191                        r = new StringBuilder(256);
8192                    } else {
8193                        r.append(' ');
8194                    }
8195                    r.append(a.info.name);
8196                }
8197            }
8198            if (r != null) {
8199                if (DEBUG_PACKAGE_SCANNING) Log.d(TAG, "  Receivers: " + r);
8200            }
8201
8202            N = pkg.activities.size();
8203            r = null;
8204            for (i=0; i<N; i++) {
8205                PackageParser.Activity a = pkg.activities.get(i);
8206                a.info.processName = fixProcessName(pkg.applicationInfo.processName,
8207                        a.info.processName, pkg.applicationInfo.uid);
8208                mActivities.addActivity(a, "activity");
8209                if ((parseFlags&PackageParser.PARSE_CHATTY) != 0) {
8210                    if (r == null) {
8211                        r = new StringBuilder(256);
8212                    } else {
8213                        r.append(' ');
8214                    }
8215                    r.append(a.info.name);
8216                }
8217            }
8218            if (r != null) {
8219                if (DEBUG_PACKAGE_SCANNING) Log.d(TAG, "  Activities: " + r);
8220            }
8221
8222            N = pkg.permissionGroups.size();
8223            r = null;
8224            for (i=0; i<N; i++) {
8225                PackageParser.PermissionGroup pg = pkg.permissionGroups.get(i);
8226                PackageParser.PermissionGroup cur = mPermissionGroups.get(pg.info.name);
8227                if (cur == null) {
8228                    mPermissionGroups.put(pg.info.name, pg);
8229                    if ((parseFlags&PackageParser.PARSE_CHATTY) != 0) {
8230                        if (r == null) {
8231                            r = new StringBuilder(256);
8232                        } else {
8233                            r.append(' ');
8234                        }
8235                        r.append(pg.info.name);
8236                    }
8237                } else {
8238                    Slog.w(TAG, "Permission group " + pg.info.name + " from package "
8239                            + pg.info.packageName + " ignored: original from "
8240                            + cur.info.packageName);
8241                    if ((parseFlags&PackageParser.PARSE_CHATTY) != 0) {
8242                        if (r == null) {
8243                            r = new StringBuilder(256);
8244                        } else {
8245                            r.append(' ');
8246                        }
8247                        r.append("DUP:");
8248                        r.append(pg.info.name);
8249                    }
8250                }
8251            }
8252            if (r != null) {
8253                if (DEBUG_PACKAGE_SCANNING) Log.d(TAG, "  Permission Groups: " + r);
8254            }
8255
8256            N = pkg.permissions.size();
8257            r = null;
8258            for (i=0; i<N; i++) {
8259                PackageParser.Permission p = pkg.permissions.get(i);
8260
8261                // Assume by default that we did not install this permission into the system.
8262                p.info.flags &= ~PermissionInfo.FLAG_INSTALLED;
8263
8264                // Now that permission groups have a special meaning, we ignore permission
8265                // groups for legacy apps to prevent unexpected behavior. In particular,
8266                // permissions for one app being granted to someone just becase they happen
8267                // to be in a group defined by another app (before this had no implications).
8268                if (pkg.applicationInfo.targetSdkVersion > Build.VERSION_CODES.LOLLIPOP_MR1) {
8269                    p.group = mPermissionGroups.get(p.info.group);
8270                    // Warn for a permission in an unknown group.
8271                    if (p.info.group != null && p.group == null) {
8272                        Slog.w(TAG, "Permission " + p.info.name + " from package "
8273                                + p.info.packageName + " in an unknown group " + p.info.group);
8274                    }
8275                }
8276
8277                ArrayMap<String, BasePermission> permissionMap =
8278                        p.tree ? mSettings.mPermissionTrees
8279                                : mSettings.mPermissions;
8280                BasePermission bp = permissionMap.get(p.info.name);
8281
8282                // Allow system apps to redefine non-system permissions
8283                if (bp != null && !Objects.equals(bp.sourcePackage, p.info.packageName)) {
8284                    final boolean currentOwnerIsSystem = (bp.perm != null
8285                            && isSystemApp(bp.perm.owner));
8286                    if (isSystemApp(p.owner)) {
8287                        if (bp.type == BasePermission.TYPE_BUILTIN && bp.perm == null) {
8288                            // It's a built-in permission and no owner, take ownership now
8289                            bp.packageSetting = pkgSetting;
8290                            bp.perm = p;
8291                            bp.uid = pkg.applicationInfo.uid;
8292                            bp.sourcePackage = p.info.packageName;
8293                            p.info.flags |= PermissionInfo.FLAG_INSTALLED;
8294                        } else if (!currentOwnerIsSystem) {
8295                            String msg = "New decl " + p.owner + " of permission  "
8296                                    + p.info.name + " is system; overriding " + bp.sourcePackage;
8297                            reportSettingsProblem(Log.WARN, msg);
8298                            bp = null;
8299                        }
8300                    }
8301                }
8302
8303                if (bp == null) {
8304                    bp = new BasePermission(p.info.name, p.info.packageName,
8305                            BasePermission.TYPE_NORMAL);
8306                    permissionMap.put(p.info.name, bp);
8307                }
8308
8309                if (bp.perm == null) {
8310                    if (bp.sourcePackage == null
8311                            || bp.sourcePackage.equals(p.info.packageName)) {
8312                        BasePermission tree = findPermissionTreeLP(p.info.name);
8313                        if (tree == null
8314                                || tree.sourcePackage.equals(p.info.packageName)) {
8315                            bp.packageSetting = pkgSetting;
8316                            bp.perm = p;
8317                            bp.uid = pkg.applicationInfo.uid;
8318                            bp.sourcePackage = p.info.packageName;
8319                            p.info.flags |= PermissionInfo.FLAG_INSTALLED;
8320                            if ((parseFlags&PackageParser.PARSE_CHATTY) != 0) {
8321                                if (r == null) {
8322                                    r = new StringBuilder(256);
8323                                } else {
8324                                    r.append(' ');
8325                                }
8326                                r.append(p.info.name);
8327                            }
8328                        } else {
8329                            Slog.w(TAG, "Permission " + p.info.name + " from package "
8330                                    + p.info.packageName + " ignored: base tree "
8331                                    + tree.name + " is from package "
8332                                    + tree.sourcePackage);
8333                        }
8334                    } else {
8335                        Slog.w(TAG, "Permission " + p.info.name + " from package "
8336                                + p.info.packageName + " ignored: original from "
8337                                + bp.sourcePackage);
8338                    }
8339                } else if ((parseFlags&PackageParser.PARSE_CHATTY) != 0) {
8340                    if (r == null) {
8341                        r = new StringBuilder(256);
8342                    } else {
8343                        r.append(' ');
8344                    }
8345                    r.append("DUP:");
8346                    r.append(p.info.name);
8347                }
8348                if (bp.perm == p) {
8349                    bp.protectionLevel = p.info.protectionLevel;
8350                }
8351            }
8352
8353            if (r != null) {
8354                if (DEBUG_PACKAGE_SCANNING) Log.d(TAG, "  Permissions: " + r);
8355            }
8356
8357            N = pkg.instrumentation.size();
8358            r = null;
8359            for (i=0; i<N; i++) {
8360                PackageParser.Instrumentation a = pkg.instrumentation.get(i);
8361                a.info.packageName = pkg.applicationInfo.packageName;
8362                a.info.sourceDir = pkg.applicationInfo.sourceDir;
8363                a.info.publicSourceDir = pkg.applicationInfo.publicSourceDir;
8364                a.info.splitSourceDirs = pkg.applicationInfo.splitSourceDirs;
8365                a.info.splitPublicSourceDirs = pkg.applicationInfo.splitPublicSourceDirs;
8366                a.info.dataDir = pkg.applicationInfo.dataDir;
8367                a.info.deviceProtectedDataDir = pkg.applicationInfo.deviceProtectedDataDir;
8368                a.info.credentialProtectedDataDir = pkg.applicationInfo.credentialProtectedDataDir;
8369
8370                // TODO: Update instrumentation.nativeLibraryDir as well ? Does it
8371                // need other information about the application, like the ABI and what not ?
8372                a.info.nativeLibraryDir = pkg.applicationInfo.nativeLibraryDir;
8373                mInstrumentation.put(a.getComponentName(), a);
8374                if ((parseFlags&PackageParser.PARSE_CHATTY) != 0) {
8375                    if (r == null) {
8376                        r = new StringBuilder(256);
8377                    } else {
8378                        r.append(' ');
8379                    }
8380                    r.append(a.info.name);
8381                }
8382            }
8383            if (r != null) {
8384                if (DEBUG_PACKAGE_SCANNING) Log.d(TAG, "  Instrumentation: " + r);
8385            }
8386
8387            if (pkg.protectedBroadcasts != null) {
8388                N = pkg.protectedBroadcasts.size();
8389                for (i=0; i<N; i++) {
8390                    mProtectedBroadcasts.add(pkg.protectedBroadcasts.get(i));
8391                }
8392            }
8393
8394            pkgSetting.setTimeStamp(scanFileTime);
8395
8396            // Create idmap files for pairs of (packages, overlay packages).
8397            // Note: "android", ie framework-res.apk, is handled by native layers.
8398            if (pkg.mOverlayTarget != null) {
8399                // This is an overlay package.
8400                if (pkg.mOverlayTarget != null && !pkg.mOverlayTarget.equals("android")) {
8401                    if (!mOverlays.containsKey(pkg.mOverlayTarget)) {
8402                        mOverlays.put(pkg.mOverlayTarget,
8403                                new ArrayMap<String, PackageParser.Package>());
8404                    }
8405                    ArrayMap<String, PackageParser.Package> map = mOverlays.get(pkg.mOverlayTarget);
8406                    map.put(pkg.packageName, pkg);
8407                    PackageParser.Package orig = mPackages.get(pkg.mOverlayTarget);
8408                    if (orig != null && !createIdmapForPackagePairLI(orig, pkg)) {
8409                        createIdmapFailed = true;
8410                    }
8411                }
8412            } else if (mOverlays.containsKey(pkg.packageName) &&
8413                    !pkg.packageName.equals("android")) {
8414                // This is a regular package, with one or more known overlay packages.
8415                createIdmapsForPackageLI(pkg);
8416            }
8417        }
8418
8419        Trace.traceEnd(TRACE_TAG_PACKAGE_MANAGER);
8420
8421        if (createIdmapFailed) {
8422            throw new PackageManagerException(INSTALL_FAILED_UPDATE_INCOMPATIBLE,
8423                    "scanPackageLI failed to createIdmap");
8424        }
8425        return pkg;
8426    }
8427
8428    /**
8429     * Derive the ABI of a non-system package located at {@code scanFile}. This information
8430     * is derived purely on the basis of the contents of {@code scanFile} and
8431     * {@code cpuAbiOverride}.
8432     *
8433     * If {@code extractLibs} is true, native libraries are extracted from the app if required.
8434     */
8435    private void derivePackageAbi(PackageParser.Package pkg, File scanFile,
8436                                 String cpuAbiOverride, boolean extractLibs)
8437            throws PackageManagerException {
8438        // TODO: We can probably be smarter about this stuff. For installed apps,
8439        // we can calculate this information at install time once and for all. For
8440        // system apps, we can probably assume that this information doesn't change
8441        // after the first boot scan. As things stand, we do lots of unnecessary work.
8442
8443        // Give ourselves some initial paths; we'll come back for another
8444        // pass once we've determined ABI below.
8445        setNativeLibraryPaths(pkg);
8446
8447        // We would never need to extract libs for forward-locked and external packages,
8448        // since the container service will do it for us. We shouldn't attempt to
8449        // extract libs from system app when it was not updated.
8450        if (pkg.isForwardLocked() || pkg.applicationInfo.isExternalAsec() ||
8451                (isSystemApp(pkg) && !pkg.isUpdatedSystemApp())) {
8452            extractLibs = false;
8453        }
8454
8455        final String nativeLibraryRootStr = pkg.applicationInfo.nativeLibraryRootDir;
8456        final boolean useIsaSpecificSubdirs = pkg.applicationInfo.nativeLibraryRootRequiresIsa;
8457
8458        NativeLibraryHelper.Handle handle = null;
8459        try {
8460            handle = NativeLibraryHelper.Handle.create(pkg);
8461            // TODO(multiArch): This can be null for apps that didn't go through the
8462            // usual installation process. We can calculate it again, like we
8463            // do during install time.
8464            //
8465            // TODO(multiArch): Why do we need to rescan ASEC apps again ? It seems totally
8466            // unnecessary.
8467            final File nativeLibraryRoot = new File(nativeLibraryRootStr);
8468
8469            // Null out the abis so that they can be recalculated.
8470            pkg.applicationInfo.primaryCpuAbi = null;
8471            pkg.applicationInfo.secondaryCpuAbi = null;
8472            if (isMultiArch(pkg.applicationInfo)) {
8473                // Warn if we've set an abiOverride for multi-lib packages..
8474                // By definition, we need to copy both 32 and 64 bit libraries for
8475                // such packages.
8476                if (pkg.cpuAbiOverride != null
8477                        && !NativeLibraryHelper.CLEAR_ABI_OVERRIDE.equals(pkg.cpuAbiOverride)) {
8478                    Slog.w(TAG, "Ignoring abiOverride for multi arch application.");
8479                }
8480
8481                int abi32 = PackageManager.NO_NATIVE_LIBRARIES;
8482                int abi64 = PackageManager.NO_NATIVE_LIBRARIES;
8483                if (Build.SUPPORTED_32_BIT_ABIS.length > 0) {
8484                    if (extractLibs) {
8485                        abi32 = NativeLibraryHelper.copyNativeBinariesForSupportedAbi(handle,
8486                                nativeLibraryRoot, Build.SUPPORTED_32_BIT_ABIS,
8487                                useIsaSpecificSubdirs);
8488                    } else {
8489                        abi32 = NativeLibraryHelper.findSupportedAbi(handle, Build.SUPPORTED_32_BIT_ABIS);
8490                    }
8491                }
8492
8493                maybeThrowExceptionForMultiArchCopy(
8494                        "Error unpackaging 32 bit native libs for multiarch app.", abi32);
8495
8496                if (Build.SUPPORTED_64_BIT_ABIS.length > 0) {
8497                    if (extractLibs) {
8498                        abi64 = NativeLibraryHelper.copyNativeBinariesForSupportedAbi(handle,
8499                                nativeLibraryRoot, Build.SUPPORTED_64_BIT_ABIS,
8500                                useIsaSpecificSubdirs);
8501                    } else {
8502                        abi64 = NativeLibraryHelper.findSupportedAbi(handle, Build.SUPPORTED_64_BIT_ABIS);
8503                    }
8504                }
8505
8506                maybeThrowExceptionForMultiArchCopy(
8507                        "Error unpackaging 64 bit native libs for multiarch app.", abi64);
8508
8509                if (abi64 >= 0) {
8510                    pkg.applicationInfo.primaryCpuAbi = Build.SUPPORTED_64_BIT_ABIS[abi64];
8511                }
8512
8513                if (abi32 >= 0) {
8514                    final String abi = Build.SUPPORTED_32_BIT_ABIS[abi32];
8515                    if (abi64 >= 0) {
8516                        if (cpuAbiOverride == null && pkg.use32bitAbi) {
8517                            pkg.applicationInfo.secondaryCpuAbi = pkg.applicationInfo.primaryCpuAbi;
8518                            pkg.applicationInfo.primaryCpuAbi = abi;
8519                        } else {
8520                            pkg.applicationInfo.secondaryCpuAbi = abi;
8521                        }
8522                    } else {
8523                        pkg.applicationInfo.primaryCpuAbi = abi;
8524                    }
8525                }
8526
8527            } else {
8528                String[] abiList = (cpuAbiOverride != null) ?
8529                        new String[] { cpuAbiOverride } : Build.SUPPORTED_ABIS;
8530
8531                // Enable gross and lame hacks for apps that are built with old
8532                // SDK tools. We must scan their APKs for renderscript bitcode and
8533                // not launch them if it's present. Don't bother checking on devices
8534                // that don't have 64 bit support.
8535                boolean needsRenderScriptOverride = false;
8536                if (Build.SUPPORTED_64_BIT_ABIS.length > 0 && cpuAbiOverride == null &&
8537                        NativeLibraryHelper.hasRenderscriptBitcode(handle)) {
8538                    abiList = Build.SUPPORTED_32_BIT_ABIS;
8539                    needsRenderScriptOverride = true;
8540                }
8541
8542                final int copyRet;
8543                if (extractLibs) {
8544                    copyRet = NativeLibraryHelper.copyNativeBinariesForSupportedAbi(handle,
8545                            nativeLibraryRoot, abiList, useIsaSpecificSubdirs);
8546                } else {
8547                    copyRet = NativeLibraryHelper.findSupportedAbi(handle, abiList);
8548                }
8549
8550                if (copyRet < 0 && copyRet != PackageManager.NO_NATIVE_LIBRARIES) {
8551                    throw new PackageManagerException(INSTALL_FAILED_INTERNAL_ERROR,
8552                            "Error unpackaging native libs for app, errorCode=" + copyRet);
8553                }
8554
8555                if (copyRet >= 0) {
8556                    pkg.applicationInfo.primaryCpuAbi = abiList[copyRet];
8557                } else if (copyRet == PackageManager.NO_NATIVE_LIBRARIES && cpuAbiOverride != null) {
8558                    pkg.applicationInfo.primaryCpuAbi = cpuAbiOverride;
8559                } else if (needsRenderScriptOverride) {
8560                    pkg.applicationInfo.primaryCpuAbi = abiList[0];
8561                }
8562            }
8563        } catch (IOException ioe) {
8564            Slog.e(TAG, "Unable to get canonical file " + ioe.toString());
8565        } finally {
8566            IoUtils.closeQuietly(handle);
8567        }
8568
8569        // Now that we've calculated the ABIs and determined if it's an internal app,
8570        // we will go ahead and populate the nativeLibraryPath.
8571        setNativeLibraryPaths(pkg);
8572    }
8573
8574    /**
8575     * Adjusts ABIs for a set of packages belonging to a shared user so that they all match.
8576     * i.e, so that all packages can be run inside a single process if required.
8577     *
8578     * Optionally, callers can pass in a parsed package via {@code newPackage} in which case
8579     * this function will either try and make the ABI for all packages in {@code packagesForUser}
8580     * match {@code scannedPackage} or will update the ABI of {@code scannedPackage} to match
8581     * the ABI selected for {@code packagesForUser}. This variant is used when installing or
8582     * updating a package that belongs to a shared user.
8583     *
8584     * NOTE: We currently only match for the primary CPU abi string. Matching the secondary
8585     * adds unnecessary complexity.
8586     */
8587    private void adjustCpuAbisForSharedUserLPw(Set<PackageSetting> packagesForUser,
8588            PackageParser.Package scannedPackage, boolean bootComplete) {
8589        String requiredInstructionSet = null;
8590        if (scannedPackage != null && scannedPackage.applicationInfo.primaryCpuAbi != null) {
8591            requiredInstructionSet = VMRuntime.getInstructionSet(
8592                     scannedPackage.applicationInfo.primaryCpuAbi);
8593        }
8594
8595        PackageSetting requirer = null;
8596        for (PackageSetting ps : packagesForUser) {
8597            // If packagesForUser contains scannedPackage, we skip it. This will happen
8598            // when scannedPackage is an update of an existing package. Without this check,
8599            // we will never be able to change the ABI of any package belonging to a shared
8600            // user, even if it's compatible with other packages.
8601            if (scannedPackage == null || !scannedPackage.packageName.equals(ps.name)) {
8602                if (ps.primaryCpuAbiString == null) {
8603                    continue;
8604                }
8605
8606                final String instructionSet = VMRuntime.getInstructionSet(ps.primaryCpuAbiString);
8607                if (requiredInstructionSet != null && !instructionSet.equals(requiredInstructionSet)) {
8608                    // We have a mismatch between instruction sets (say arm vs arm64) warn about
8609                    // this but there's not much we can do.
8610                    String errorMessage = "Instruction set mismatch, "
8611                            + ((requirer == null) ? "[caller]" : requirer)
8612                            + " requires " + requiredInstructionSet + " whereas " + ps
8613                            + " requires " + instructionSet;
8614                    Slog.w(TAG, errorMessage);
8615                }
8616
8617                if (requiredInstructionSet == null) {
8618                    requiredInstructionSet = instructionSet;
8619                    requirer = ps;
8620                }
8621            }
8622        }
8623
8624        if (requiredInstructionSet != null) {
8625            String adjustedAbi;
8626            if (requirer != null) {
8627                // requirer != null implies that either scannedPackage was null or that scannedPackage
8628                // did not require an ABI, in which case we have to adjust scannedPackage to match
8629                // the ABI of the set (which is the same as requirer's ABI)
8630                adjustedAbi = requirer.primaryCpuAbiString;
8631                if (scannedPackage != null) {
8632                    scannedPackage.applicationInfo.primaryCpuAbi = adjustedAbi;
8633                }
8634            } else {
8635                // requirer == null implies that we're updating all ABIs in the set to
8636                // match scannedPackage.
8637                adjustedAbi =  scannedPackage.applicationInfo.primaryCpuAbi;
8638            }
8639
8640            for (PackageSetting ps : packagesForUser) {
8641                if (scannedPackage == null || !scannedPackage.packageName.equals(ps.name)) {
8642                    if (ps.primaryCpuAbiString != null) {
8643                        continue;
8644                    }
8645
8646                    ps.primaryCpuAbiString = adjustedAbi;
8647                    if (ps.pkg != null && ps.pkg.applicationInfo != null &&
8648                            !TextUtils.equals(adjustedAbi, ps.pkg.applicationInfo.primaryCpuAbi)) {
8649                        ps.pkg.applicationInfo.primaryCpuAbi = adjustedAbi;
8650                        Slog.i(TAG, "Adjusting ABI for " + ps.name + " to " + adjustedAbi
8651                                + " (requirer="
8652                                + (requirer == null ? "null" : requirer.pkg.packageName)
8653                                + ", scannedPackage="
8654                                + (scannedPackage != null ? scannedPackage.packageName : "null")
8655                                + ")");
8656                        try {
8657                            mInstaller.rmdex(ps.codePathString,
8658                                    getDexCodeInstructionSet(getPreferredInstructionSet()));
8659                        } catch (InstallerException ignored) {
8660                        }
8661                    }
8662                }
8663            }
8664        }
8665    }
8666
8667    private void setUpCustomResolverActivity(PackageParser.Package pkg) {
8668        synchronized (mPackages) {
8669            mResolverReplaced = true;
8670            // Set up information for custom user intent resolution activity.
8671            mResolveActivity.applicationInfo = pkg.applicationInfo;
8672            mResolveActivity.name = mCustomResolverComponentName.getClassName();
8673            mResolveActivity.packageName = pkg.applicationInfo.packageName;
8674            mResolveActivity.processName = pkg.applicationInfo.packageName;
8675            mResolveActivity.launchMode = ActivityInfo.LAUNCH_MULTIPLE;
8676            mResolveActivity.flags = ActivityInfo.FLAG_EXCLUDE_FROM_RECENTS |
8677                    ActivityInfo.FLAG_FINISH_ON_CLOSE_SYSTEM_DIALOGS;
8678            mResolveActivity.theme = 0;
8679            mResolveActivity.exported = true;
8680            mResolveActivity.enabled = true;
8681            mResolveInfo.activityInfo = mResolveActivity;
8682            mResolveInfo.priority = 0;
8683            mResolveInfo.preferredOrder = 0;
8684            mResolveInfo.match = 0;
8685            mResolveComponentName = mCustomResolverComponentName;
8686            Slog.i(TAG, "Replacing default ResolverActivity with custom activity: " +
8687                    mResolveComponentName);
8688        }
8689    }
8690
8691    private void setUpEphemeralInstallerActivityLP(ComponentName installerComponent) {
8692        final PackageParser.Package pkg = mPackages.get(installerComponent.getPackageName());
8693
8694        // Set up information for ephemeral installer activity
8695        mEphemeralInstallerActivity.applicationInfo = pkg.applicationInfo;
8696        mEphemeralInstallerActivity.name = mEphemeralInstallerComponent.getClassName();
8697        mEphemeralInstallerActivity.packageName = pkg.applicationInfo.packageName;
8698        mEphemeralInstallerActivity.processName = pkg.applicationInfo.packageName;
8699        mEphemeralInstallerActivity.launchMode = ActivityInfo.LAUNCH_MULTIPLE;
8700        mEphemeralInstallerActivity.flags = ActivityInfo.FLAG_EXCLUDE_FROM_RECENTS |
8701                ActivityInfo.FLAG_FINISH_ON_CLOSE_SYSTEM_DIALOGS;
8702        mEphemeralInstallerActivity.theme = 0;
8703        mEphemeralInstallerActivity.exported = true;
8704        mEphemeralInstallerActivity.enabled = true;
8705        mEphemeralInstallerInfo.activityInfo = mEphemeralInstallerActivity;
8706        mEphemeralInstallerInfo.priority = 0;
8707        mEphemeralInstallerInfo.preferredOrder = 0;
8708        mEphemeralInstallerInfo.match = 0;
8709
8710        if (DEBUG_EPHEMERAL) {
8711            Slog.d(TAG, "Set ephemeral installer activity: " + mEphemeralInstallerComponent);
8712        }
8713    }
8714
8715    private static String calculateBundledApkRoot(final String codePathString) {
8716        final File codePath = new File(codePathString);
8717        final File codeRoot;
8718        if (FileUtils.contains(Environment.getRootDirectory(), codePath)) {
8719            codeRoot = Environment.getRootDirectory();
8720        } else if (FileUtils.contains(Environment.getOemDirectory(), codePath)) {
8721            codeRoot = Environment.getOemDirectory();
8722        } else if (FileUtils.contains(Environment.getVendorDirectory(), codePath)) {
8723            codeRoot = Environment.getVendorDirectory();
8724        } else {
8725            // Unrecognized code path; take its top real segment as the apk root:
8726            // e.g. /something/app/blah.apk => /something
8727            try {
8728                File f = codePath.getCanonicalFile();
8729                File parent = f.getParentFile();    // non-null because codePath is a file
8730                File tmp;
8731                while ((tmp = parent.getParentFile()) != null) {
8732                    f = parent;
8733                    parent = tmp;
8734                }
8735                codeRoot = f;
8736                Slog.w(TAG, "Unrecognized code path "
8737                        + codePath + " - using " + codeRoot);
8738            } catch (IOException e) {
8739                // Can't canonicalize the code path -- shenanigans?
8740                Slog.w(TAG, "Can't canonicalize code path " + codePath);
8741                return Environment.getRootDirectory().getPath();
8742            }
8743        }
8744        return codeRoot.getPath();
8745    }
8746
8747    /**
8748     * Derive and set the location of native libraries for the given package,
8749     * which varies depending on where and how the package was installed.
8750     */
8751    private void setNativeLibraryPaths(PackageParser.Package pkg) {
8752        final ApplicationInfo info = pkg.applicationInfo;
8753        final String codePath = pkg.codePath;
8754        final File codeFile = new File(codePath);
8755        final boolean bundledApp = info.isSystemApp() && !info.isUpdatedSystemApp();
8756        final boolean asecApp = info.isForwardLocked() || info.isExternalAsec();
8757
8758        info.nativeLibraryRootDir = null;
8759        info.nativeLibraryRootRequiresIsa = false;
8760        info.nativeLibraryDir = null;
8761        info.secondaryNativeLibraryDir = null;
8762
8763        if (isApkFile(codeFile)) {
8764            // Monolithic install
8765            if (bundledApp) {
8766                // If "/system/lib64/apkname" exists, assume that is the per-package
8767                // native library directory to use; otherwise use "/system/lib/apkname".
8768                final String apkRoot = calculateBundledApkRoot(info.sourceDir);
8769                final boolean is64Bit = VMRuntime.is64BitInstructionSet(
8770                        getPrimaryInstructionSet(info));
8771
8772                // This is a bundled system app so choose the path based on the ABI.
8773                // if it's a 64 bit abi, use lib64 otherwise use lib32. Note that this
8774                // is just the default path.
8775                final String apkName = deriveCodePathName(codePath);
8776                final String libDir = is64Bit ? LIB64_DIR_NAME : LIB_DIR_NAME;
8777                info.nativeLibraryRootDir = Environment.buildPath(new File(apkRoot), libDir,
8778                        apkName).getAbsolutePath();
8779
8780                if (info.secondaryCpuAbi != null) {
8781                    final String secondaryLibDir = is64Bit ? LIB_DIR_NAME : LIB64_DIR_NAME;
8782                    info.secondaryNativeLibraryDir = Environment.buildPath(new File(apkRoot),
8783                            secondaryLibDir, apkName).getAbsolutePath();
8784                }
8785            } else if (asecApp) {
8786                info.nativeLibraryRootDir = new File(codeFile.getParentFile(), LIB_DIR_NAME)
8787                        .getAbsolutePath();
8788            } else {
8789                final String apkName = deriveCodePathName(codePath);
8790                info.nativeLibraryRootDir = new File(mAppLib32InstallDir, apkName)
8791                        .getAbsolutePath();
8792            }
8793
8794            info.nativeLibraryRootRequiresIsa = false;
8795            info.nativeLibraryDir = info.nativeLibraryRootDir;
8796        } else {
8797            // Cluster install
8798            info.nativeLibraryRootDir = new File(codeFile, LIB_DIR_NAME).getAbsolutePath();
8799            info.nativeLibraryRootRequiresIsa = true;
8800
8801            info.nativeLibraryDir = new File(info.nativeLibraryRootDir,
8802                    getPrimaryInstructionSet(info)).getAbsolutePath();
8803
8804            if (info.secondaryCpuAbi != null) {
8805                info.secondaryNativeLibraryDir = new File(info.nativeLibraryRootDir,
8806                        VMRuntime.getInstructionSet(info.secondaryCpuAbi)).getAbsolutePath();
8807            }
8808        }
8809    }
8810
8811    /**
8812     * Calculate the abis and roots for a bundled app. These can uniquely
8813     * be determined from the contents of the system partition, i.e whether
8814     * it contains 64 or 32 bit shared libraries etc. We do not validate any
8815     * of this information, and instead assume that the system was built
8816     * sensibly.
8817     */
8818    private void setBundledAppAbisAndRoots(PackageParser.Package pkg,
8819                                           PackageSetting pkgSetting) {
8820        final String apkName = deriveCodePathName(pkg.applicationInfo.getCodePath());
8821
8822        // If "/system/lib64/apkname" exists, assume that is the per-package
8823        // native library directory to use; otherwise use "/system/lib/apkname".
8824        final String apkRoot = calculateBundledApkRoot(pkg.applicationInfo.sourceDir);
8825        setBundledAppAbi(pkg, apkRoot, apkName);
8826        // pkgSetting might be null during rescan following uninstall of updates
8827        // to a bundled app, so accommodate that possibility.  The settings in
8828        // that case will be established later from the parsed package.
8829        //
8830        // If the settings aren't null, sync them up with what we've just derived.
8831        // note that apkRoot isn't stored in the package settings.
8832        if (pkgSetting != null) {
8833            pkgSetting.primaryCpuAbiString = pkg.applicationInfo.primaryCpuAbi;
8834            pkgSetting.secondaryCpuAbiString = pkg.applicationInfo.secondaryCpuAbi;
8835        }
8836    }
8837
8838    /**
8839     * Deduces the ABI of a bundled app and sets the relevant fields on the
8840     * parsed pkg object.
8841     *
8842     * @param apkRoot the root of the installed apk, something like {@code /system} or {@code /oem}
8843     *        under which system libraries are installed.
8844     * @param apkName the name of the installed package.
8845     */
8846    private static void setBundledAppAbi(PackageParser.Package pkg, String apkRoot, String apkName) {
8847        final File codeFile = new File(pkg.codePath);
8848
8849        final boolean has64BitLibs;
8850        final boolean has32BitLibs;
8851        if (isApkFile(codeFile)) {
8852            // Monolithic install
8853            has64BitLibs = (new File(apkRoot, new File(LIB64_DIR_NAME, apkName).getPath())).exists();
8854            has32BitLibs = (new File(apkRoot, new File(LIB_DIR_NAME, apkName).getPath())).exists();
8855        } else {
8856            // Cluster install
8857            final File rootDir = new File(codeFile, LIB_DIR_NAME);
8858            if (!ArrayUtils.isEmpty(Build.SUPPORTED_64_BIT_ABIS)
8859                    && !TextUtils.isEmpty(Build.SUPPORTED_64_BIT_ABIS[0])) {
8860                final String isa = VMRuntime.getInstructionSet(Build.SUPPORTED_64_BIT_ABIS[0]);
8861                has64BitLibs = (new File(rootDir, isa)).exists();
8862            } else {
8863                has64BitLibs = false;
8864            }
8865            if (!ArrayUtils.isEmpty(Build.SUPPORTED_32_BIT_ABIS)
8866                    && !TextUtils.isEmpty(Build.SUPPORTED_32_BIT_ABIS[0])) {
8867                final String isa = VMRuntime.getInstructionSet(Build.SUPPORTED_32_BIT_ABIS[0]);
8868                has32BitLibs = (new File(rootDir, isa)).exists();
8869            } else {
8870                has32BitLibs = false;
8871            }
8872        }
8873
8874        if (has64BitLibs && !has32BitLibs) {
8875            // The package has 64 bit libs, but not 32 bit libs. Its primary
8876            // ABI should be 64 bit. We can safely assume here that the bundled
8877            // native libraries correspond to the most preferred ABI in the list.
8878
8879            pkg.applicationInfo.primaryCpuAbi = Build.SUPPORTED_64_BIT_ABIS[0];
8880            pkg.applicationInfo.secondaryCpuAbi = null;
8881        } else if (has32BitLibs && !has64BitLibs) {
8882            // The package has 32 bit libs but not 64 bit libs. Its primary
8883            // ABI should be 32 bit.
8884
8885            pkg.applicationInfo.primaryCpuAbi = Build.SUPPORTED_32_BIT_ABIS[0];
8886            pkg.applicationInfo.secondaryCpuAbi = null;
8887        } else if (has32BitLibs && has64BitLibs) {
8888            // The application has both 64 and 32 bit bundled libraries. We check
8889            // here that the app declares multiArch support, and warn if it doesn't.
8890            //
8891            // We will be lenient here and record both ABIs. The primary will be the
8892            // ABI that's higher on the list, i.e, a device that's configured to prefer
8893            // 64 bit apps will see a 64 bit primary ABI,
8894
8895            if ((pkg.applicationInfo.flags & ApplicationInfo.FLAG_MULTIARCH) == 0) {
8896                Slog.e(TAG, "Package " + pkg + " has multiple bundled libs, but is not multiarch.");
8897            }
8898
8899            if (VMRuntime.is64BitInstructionSet(getPreferredInstructionSet())) {
8900                pkg.applicationInfo.primaryCpuAbi = Build.SUPPORTED_64_BIT_ABIS[0];
8901                pkg.applicationInfo.secondaryCpuAbi = Build.SUPPORTED_32_BIT_ABIS[0];
8902            } else {
8903                pkg.applicationInfo.primaryCpuAbi = Build.SUPPORTED_32_BIT_ABIS[0];
8904                pkg.applicationInfo.secondaryCpuAbi = Build.SUPPORTED_64_BIT_ABIS[0];
8905            }
8906        } else {
8907            pkg.applicationInfo.primaryCpuAbi = null;
8908            pkg.applicationInfo.secondaryCpuAbi = null;
8909        }
8910    }
8911
8912    private void killPackage(PackageParser.Package pkg, String reason) {
8913        // Kill the parent package
8914        killApplication(pkg.packageName, pkg.applicationInfo.uid, reason);
8915        // Kill the child packages
8916        final int childCount = (pkg.childPackages != null) ? pkg.childPackages.size() : 0;
8917        for (int i = 0; i < childCount; i++) {
8918            PackageParser.Package childPkg = pkg.childPackages.get(i);
8919            killApplication(childPkg.packageName, childPkg.applicationInfo.uid, reason);
8920        }
8921    }
8922
8923    private void killApplication(String pkgName, int appId, String reason) {
8924        // Request the ActivityManager to kill the process(only for existing packages)
8925        // so that we do not end up in a confused state while the user is still using the older
8926        // version of the application while the new one gets installed.
8927        IActivityManager am = ActivityManagerNative.getDefault();
8928        if (am != null) {
8929            try {
8930                am.killApplicationWithAppId(pkgName, appId, reason);
8931            } catch (RemoteException e) {
8932            }
8933        }
8934    }
8935
8936    private void removePackageLI(PackageParser.Package pkg, boolean chatty) {
8937        // Remove the parent package setting
8938        PackageSetting ps = (PackageSetting) pkg.mExtras;
8939        if (ps != null) {
8940            removePackageLI(ps, chatty);
8941        }
8942        // Remove the child package setting
8943        final int childCount = (pkg.childPackages != null) ? pkg.childPackages.size() : 0;
8944        for (int i = 0; i < childCount; i++) {
8945            PackageParser.Package childPkg = pkg.childPackages.get(i);
8946            ps = (PackageSetting) childPkg.mExtras;
8947            if (ps != null) {
8948                removePackageLI(ps, chatty);
8949            }
8950        }
8951    }
8952
8953    void removePackageLI(PackageSetting ps, boolean chatty) {
8954        if (DEBUG_INSTALL) {
8955            if (chatty)
8956                Log.d(TAG, "Removing package " + ps.name);
8957        }
8958
8959        // writer
8960        synchronized (mPackages) {
8961            mPackages.remove(ps.name);
8962            final PackageParser.Package pkg = ps.pkg;
8963            if (pkg != null) {
8964                cleanPackageDataStructuresLILPw(pkg, chatty);
8965            }
8966        }
8967    }
8968
8969    void removeInstalledPackageLI(PackageParser.Package pkg, boolean chatty) {
8970        if (DEBUG_INSTALL) {
8971            if (chatty)
8972                Log.d(TAG, "Removing package " + pkg.applicationInfo.packageName);
8973        }
8974
8975        // writer
8976        synchronized (mPackages) {
8977            // Remove the parent package
8978            mPackages.remove(pkg.applicationInfo.packageName);
8979            cleanPackageDataStructuresLILPw(pkg, chatty);
8980
8981            // Remove the child packages
8982            final int childCount = (pkg.childPackages != null) ? pkg.childPackages.size() : 0;
8983            for (int i = 0; i < childCount; i++) {
8984                PackageParser.Package childPkg = pkg.childPackages.get(i);
8985                mPackages.remove(childPkg.applicationInfo.packageName);
8986                cleanPackageDataStructuresLILPw(childPkg, chatty);
8987            }
8988        }
8989    }
8990
8991    void cleanPackageDataStructuresLILPw(PackageParser.Package pkg, boolean chatty) {
8992        int N = pkg.providers.size();
8993        StringBuilder r = null;
8994        int i;
8995        for (i=0; i<N; i++) {
8996            PackageParser.Provider p = pkg.providers.get(i);
8997            mProviders.removeProvider(p);
8998            if (p.info.authority == null) {
8999
9000                /* There was another ContentProvider with this authority when
9001                 * this app was installed so this authority is null,
9002                 * Ignore it as we don't have to unregister the provider.
9003                 */
9004                continue;
9005            }
9006            String names[] = p.info.authority.split(";");
9007            for (int j = 0; j < names.length; j++) {
9008                if (mProvidersByAuthority.get(names[j]) == p) {
9009                    mProvidersByAuthority.remove(names[j]);
9010                    if (DEBUG_REMOVE) {
9011                        if (chatty)
9012                            Log.d(TAG, "Unregistered content provider: " + names[j]
9013                                    + ", className = " + p.info.name + ", isSyncable = "
9014                                    + p.info.isSyncable);
9015                    }
9016                }
9017            }
9018            if (DEBUG_REMOVE && chatty) {
9019                if (r == null) {
9020                    r = new StringBuilder(256);
9021                } else {
9022                    r.append(' ');
9023                }
9024                r.append(p.info.name);
9025            }
9026        }
9027        if (r != null) {
9028            if (DEBUG_REMOVE) Log.d(TAG, "  Providers: " + r);
9029        }
9030
9031        N = pkg.services.size();
9032        r = null;
9033        for (i=0; i<N; i++) {
9034            PackageParser.Service s = pkg.services.get(i);
9035            mServices.removeService(s);
9036            if (chatty) {
9037                if (r == null) {
9038                    r = new StringBuilder(256);
9039                } else {
9040                    r.append(' ');
9041                }
9042                r.append(s.info.name);
9043            }
9044        }
9045        if (r != null) {
9046            if (DEBUG_REMOVE) Log.d(TAG, "  Services: " + r);
9047        }
9048
9049        N = pkg.receivers.size();
9050        r = null;
9051        for (i=0; i<N; i++) {
9052            PackageParser.Activity a = pkg.receivers.get(i);
9053            mReceivers.removeActivity(a, "receiver");
9054            if (DEBUG_REMOVE && chatty) {
9055                if (r == null) {
9056                    r = new StringBuilder(256);
9057                } else {
9058                    r.append(' ');
9059                }
9060                r.append(a.info.name);
9061            }
9062        }
9063        if (r != null) {
9064            if (DEBUG_REMOVE) Log.d(TAG, "  Receivers: " + r);
9065        }
9066
9067        N = pkg.activities.size();
9068        r = null;
9069        for (i=0; i<N; i++) {
9070            PackageParser.Activity a = pkg.activities.get(i);
9071            mActivities.removeActivity(a, "activity");
9072            if (DEBUG_REMOVE && chatty) {
9073                if (r == null) {
9074                    r = new StringBuilder(256);
9075                } else {
9076                    r.append(' ');
9077                }
9078                r.append(a.info.name);
9079            }
9080        }
9081        if (r != null) {
9082            if (DEBUG_REMOVE) Log.d(TAG, "  Activities: " + r);
9083        }
9084
9085        N = pkg.permissions.size();
9086        r = null;
9087        for (i=0; i<N; i++) {
9088            PackageParser.Permission p = pkg.permissions.get(i);
9089            BasePermission bp = mSettings.mPermissions.get(p.info.name);
9090            if (bp == null) {
9091                bp = mSettings.mPermissionTrees.get(p.info.name);
9092            }
9093            if (bp != null && bp.perm == p) {
9094                bp.perm = null;
9095                if (DEBUG_REMOVE && chatty) {
9096                    if (r == null) {
9097                        r = new StringBuilder(256);
9098                    } else {
9099                        r.append(' ');
9100                    }
9101                    r.append(p.info.name);
9102                }
9103            }
9104            if ((p.info.protectionLevel&PermissionInfo.PROTECTION_FLAG_APPOP) != 0) {
9105                ArraySet<String> appOpPkgs = mAppOpPermissionPackages.get(p.info.name);
9106                if (appOpPkgs != null) {
9107                    appOpPkgs.remove(pkg.packageName);
9108                }
9109            }
9110        }
9111        if (r != null) {
9112            if (DEBUG_REMOVE) Log.d(TAG, "  Permissions: " + r);
9113        }
9114
9115        N = pkg.requestedPermissions.size();
9116        r = null;
9117        for (i=0; i<N; i++) {
9118            String perm = pkg.requestedPermissions.get(i);
9119            BasePermission bp = mSettings.mPermissions.get(perm);
9120            if (bp != null && (bp.protectionLevel&PermissionInfo.PROTECTION_FLAG_APPOP) != 0) {
9121                ArraySet<String> appOpPkgs = mAppOpPermissionPackages.get(perm);
9122                if (appOpPkgs != null) {
9123                    appOpPkgs.remove(pkg.packageName);
9124                    if (appOpPkgs.isEmpty()) {
9125                        mAppOpPermissionPackages.remove(perm);
9126                    }
9127                }
9128            }
9129        }
9130        if (r != null) {
9131            if (DEBUG_REMOVE) Log.d(TAG, "  Permissions: " + r);
9132        }
9133
9134        N = pkg.instrumentation.size();
9135        r = null;
9136        for (i=0; i<N; i++) {
9137            PackageParser.Instrumentation a = pkg.instrumentation.get(i);
9138            mInstrumentation.remove(a.getComponentName());
9139            if (DEBUG_REMOVE && chatty) {
9140                if (r == null) {
9141                    r = new StringBuilder(256);
9142                } else {
9143                    r.append(' ');
9144                }
9145                r.append(a.info.name);
9146            }
9147        }
9148        if (r != null) {
9149            if (DEBUG_REMOVE) Log.d(TAG, "  Instrumentation: " + r);
9150        }
9151
9152        r = null;
9153        if ((pkg.applicationInfo.flags&ApplicationInfo.FLAG_SYSTEM) != 0) {
9154            // Only system apps can hold shared libraries.
9155            if (pkg.libraryNames != null) {
9156                for (i=0; i<pkg.libraryNames.size(); i++) {
9157                    String name = pkg.libraryNames.get(i);
9158                    SharedLibraryEntry cur = mSharedLibraries.get(name);
9159                    if (cur != null && cur.apk != null && cur.apk.equals(pkg.packageName)) {
9160                        mSharedLibraries.remove(name);
9161                        if (DEBUG_REMOVE && chatty) {
9162                            if (r == null) {
9163                                r = new StringBuilder(256);
9164                            } else {
9165                                r.append(' ');
9166                            }
9167                            r.append(name);
9168                        }
9169                    }
9170                }
9171            }
9172        }
9173        if (r != null) {
9174            if (DEBUG_REMOVE) Log.d(TAG, "  Libraries: " + r);
9175        }
9176    }
9177
9178    private static boolean hasPermission(PackageParser.Package pkgInfo, String perm) {
9179        for (int i=pkgInfo.permissions.size()-1; i>=0; i--) {
9180            if (pkgInfo.permissions.get(i).info.name.equals(perm)) {
9181                return true;
9182            }
9183        }
9184        return false;
9185    }
9186
9187    static final int UPDATE_PERMISSIONS_ALL = 1<<0;
9188    static final int UPDATE_PERMISSIONS_REPLACE_PKG = 1<<1;
9189    static final int UPDATE_PERMISSIONS_REPLACE_ALL = 1<<2;
9190
9191    private void updatePermissionsLPw(PackageParser.Package pkg, int flags) {
9192        // Update the parent permissions
9193        updatePermissionsLPw(pkg.packageName, pkg, flags);
9194        // Update the child permissions
9195        final int childCount = (pkg.childPackages != null) ? pkg.childPackages.size() : 0;
9196        for (int i = 0; i < childCount; i++) {
9197            PackageParser.Package childPkg = pkg.childPackages.get(i);
9198            updatePermissionsLPw(childPkg.packageName, childPkg, flags);
9199        }
9200    }
9201
9202    private void updatePermissionsLPw(String changingPkg, PackageParser.Package pkgInfo,
9203            int flags) {
9204        final String volumeUuid = (pkgInfo != null) ? getVolumeUuidForPackage(pkgInfo) : null;
9205        updatePermissionsLPw(changingPkg, pkgInfo, volumeUuid, flags);
9206    }
9207
9208    private void updatePermissionsLPw(String changingPkg,
9209            PackageParser.Package pkgInfo, String replaceVolumeUuid, int flags) {
9210        // Make sure there are no dangling permission trees.
9211        Iterator<BasePermission> it = mSettings.mPermissionTrees.values().iterator();
9212        while (it.hasNext()) {
9213            final BasePermission bp = it.next();
9214            if (bp.packageSetting == null) {
9215                // We may not yet have parsed the package, so just see if
9216                // we still know about its settings.
9217                bp.packageSetting = mSettings.mPackages.get(bp.sourcePackage);
9218            }
9219            if (bp.packageSetting == null) {
9220                Slog.w(TAG, "Removing dangling permission tree: " + bp.name
9221                        + " from package " + bp.sourcePackage);
9222                it.remove();
9223            } else if (changingPkg != null && changingPkg.equals(bp.sourcePackage)) {
9224                if (pkgInfo == null || !hasPermission(pkgInfo, bp.name)) {
9225                    Slog.i(TAG, "Removing old permission tree: " + bp.name
9226                            + " from package " + bp.sourcePackage);
9227                    flags |= UPDATE_PERMISSIONS_ALL;
9228                    it.remove();
9229                }
9230            }
9231        }
9232
9233        // Make sure all dynamic permissions have been assigned to a package,
9234        // and make sure there are no dangling permissions.
9235        it = mSettings.mPermissions.values().iterator();
9236        while (it.hasNext()) {
9237            final BasePermission bp = it.next();
9238            if (bp.type == BasePermission.TYPE_DYNAMIC) {
9239                if (DEBUG_SETTINGS) Log.v(TAG, "Dynamic permission: name="
9240                        + bp.name + " pkg=" + bp.sourcePackage
9241                        + " info=" + bp.pendingInfo);
9242                if (bp.packageSetting == null && bp.pendingInfo != null) {
9243                    final BasePermission tree = findPermissionTreeLP(bp.name);
9244                    if (tree != null && tree.perm != null) {
9245                        bp.packageSetting = tree.packageSetting;
9246                        bp.perm = new PackageParser.Permission(tree.perm.owner,
9247                                new PermissionInfo(bp.pendingInfo));
9248                        bp.perm.info.packageName = tree.perm.info.packageName;
9249                        bp.perm.info.name = bp.name;
9250                        bp.uid = tree.uid;
9251                    }
9252                }
9253            }
9254            if (bp.packageSetting == null) {
9255                // We may not yet have parsed the package, so just see if
9256                // we still know about its settings.
9257                bp.packageSetting = mSettings.mPackages.get(bp.sourcePackage);
9258            }
9259            if (bp.packageSetting == null) {
9260                Slog.w(TAG, "Removing dangling permission: " + bp.name
9261                        + " from package " + bp.sourcePackage);
9262                it.remove();
9263            } else if (changingPkg != null && changingPkg.equals(bp.sourcePackage)) {
9264                if (pkgInfo == null || !hasPermission(pkgInfo, bp.name)) {
9265                    Slog.i(TAG, "Removing old permission: " + bp.name
9266                            + " from package " + bp.sourcePackage);
9267                    flags |= UPDATE_PERMISSIONS_ALL;
9268                    it.remove();
9269                }
9270            }
9271        }
9272
9273        // Now update the permissions for all packages, in particular
9274        // replace the granted permissions of the system packages.
9275        if ((flags&UPDATE_PERMISSIONS_ALL) != 0) {
9276            for (PackageParser.Package pkg : mPackages.values()) {
9277                if (pkg != pkgInfo) {
9278                    // Only replace for packages on requested volume
9279                    final String volumeUuid = getVolumeUuidForPackage(pkg);
9280                    final boolean replace = ((flags & UPDATE_PERMISSIONS_REPLACE_ALL) != 0)
9281                            && Objects.equals(replaceVolumeUuid, volumeUuid);
9282                    grantPermissionsLPw(pkg, replace, changingPkg);
9283                }
9284            }
9285        }
9286
9287        if (pkgInfo != null) {
9288            // Only replace for packages on requested volume
9289            final String volumeUuid = getVolumeUuidForPackage(pkgInfo);
9290            final boolean replace = ((flags & UPDATE_PERMISSIONS_REPLACE_PKG) != 0)
9291                    && Objects.equals(replaceVolumeUuid, volumeUuid);
9292            grantPermissionsLPw(pkgInfo, replace, changingPkg);
9293        }
9294    }
9295
9296    private void grantPermissionsLPw(PackageParser.Package pkg, boolean replace,
9297            String packageOfInterest) {
9298        // IMPORTANT: There are two types of permissions: install and runtime.
9299        // Install time permissions are granted when the app is installed to
9300        // all device users and users added in the future. Runtime permissions
9301        // are granted at runtime explicitly to specific users. Normal and signature
9302        // protected permissions are install time permissions. Dangerous permissions
9303        // are install permissions if the app's target SDK is Lollipop MR1 or older,
9304        // otherwise they are runtime permissions. This function does not manage
9305        // runtime permissions except for the case an app targeting Lollipop MR1
9306        // being upgraded to target a newer SDK, in which case dangerous permissions
9307        // are transformed from install time to runtime ones.
9308
9309        final PackageSetting ps = (PackageSetting) pkg.mExtras;
9310        if (ps == null) {
9311            return;
9312        }
9313
9314        Trace.traceBegin(TRACE_TAG_PACKAGE_MANAGER, "grantPermissions");
9315
9316        PermissionsState permissionsState = ps.getPermissionsState();
9317        PermissionsState origPermissions = permissionsState;
9318
9319        final int[] currentUserIds = UserManagerService.getInstance().getUserIds();
9320
9321        boolean runtimePermissionsRevoked = false;
9322        int[] changedRuntimePermissionUserIds = EMPTY_INT_ARRAY;
9323
9324        boolean changedInstallPermission = false;
9325
9326        if (replace) {
9327            ps.installPermissionsFixed = false;
9328            if (!ps.isSharedUser()) {
9329                origPermissions = new PermissionsState(permissionsState);
9330                permissionsState.reset();
9331            } else {
9332                // We need to know only about runtime permission changes since the
9333                // calling code always writes the install permissions state but
9334                // the runtime ones are written only if changed. The only cases of
9335                // changed runtime permissions here are promotion of an install to
9336                // runtime and revocation of a runtime from a shared user.
9337                changedRuntimePermissionUserIds = revokeUnusedSharedUserPermissionsLPw(
9338                        ps.sharedUser, UserManagerService.getInstance().getUserIds());
9339                if (!ArrayUtils.isEmpty(changedRuntimePermissionUserIds)) {
9340                    runtimePermissionsRevoked = true;
9341                }
9342            }
9343        }
9344
9345        permissionsState.setGlobalGids(mGlobalGids);
9346
9347        final int N = pkg.requestedPermissions.size();
9348        for (int i=0; i<N; i++) {
9349            final String name = pkg.requestedPermissions.get(i);
9350            final BasePermission bp = mSettings.mPermissions.get(name);
9351
9352            if (DEBUG_INSTALL) {
9353                Log.i(TAG, "Package " + pkg.packageName + " checking " + name + ": " + bp);
9354            }
9355
9356            if (bp == null || bp.packageSetting == null) {
9357                if (packageOfInterest == null || packageOfInterest.equals(pkg.packageName)) {
9358                    Slog.w(TAG, "Unknown permission " + name
9359                            + " in package " + pkg.packageName);
9360                }
9361                continue;
9362            }
9363
9364            final String perm = bp.name;
9365            boolean allowedSig = false;
9366            int grant = GRANT_DENIED;
9367
9368            // Keep track of app op permissions.
9369            if ((bp.protectionLevel & PermissionInfo.PROTECTION_FLAG_APPOP) != 0) {
9370                ArraySet<String> pkgs = mAppOpPermissionPackages.get(bp.name);
9371                if (pkgs == null) {
9372                    pkgs = new ArraySet<>();
9373                    mAppOpPermissionPackages.put(bp.name, pkgs);
9374                }
9375                pkgs.add(pkg.packageName);
9376            }
9377
9378            final int level = bp.protectionLevel & PermissionInfo.PROTECTION_MASK_BASE;
9379            final boolean appSupportsRuntimePermissions = pkg.applicationInfo.targetSdkVersion
9380                    >= Build.VERSION_CODES.M;
9381            switch (level) {
9382                case PermissionInfo.PROTECTION_NORMAL: {
9383                    // For all apps normal permissions are install time ones.
9384                    grant = GRANT_INSTALL;
9385                } break;
9386
9387                case PermissionInfo.PROTECTION_DANGEROUS: {
9388                    // If a permission review is required for legacy apps we represent
9389                    // their permissions as always granted runtime ones since we need
9390                    // to keep the review required permission flag per user while an
9391                    // install permission's state is shared across all users.
9392                    if (!appSupportsRuntimePermissions && !Build.PERMISSIONS_REVIEW_REQUIRED) {
9393                        // For legacy apps dangerous permissions are install time ones.
9394                        grant = GRANT_INSTALL;
9395                    } else if (origPermissions.hasInstallPermission(bp.name)) {
9396                        // For legacy apps that became modern, install becomes runtime.
9397                        grant = GRANT_UPGRADE;
9398                    } else if (mPromoteSystemApps
9399                            && isSystemApp(ps)
9400                            && mExistingSystemPackages.contains(ps.name)) {
9401                        // For legacy system apps, install becomes runtime.
9402                        // We cannot check hasInstallPermission() for system apps since those
9403                        // permissions were granted implicitly and not persisted pre-M.
9404                        grant = GRANT_UPGRADE;
9405                    } else {
9406                        // For modern apps keep runtime permissions unchanged.
9407                        grant = GRANT_RUNTIME;
9408                    }
9409                } break;
9410
9411                case PermissionInfo.PROTECTION_SIGNATURE: {
9412                    // For all apps signature permissions are install time ones.
9413                    allowedSig = grantSignaturePermission(perm, pkg, bp, origPermissions);
9414                    if (allowedSig) {
9415                        grant = GRANT_INSTALL;
9416                    }
9417                } break;
9418            }
9419
9420            if (DEBUG_INSTALL) {
9421                Log.i(TAG, "Package " + pkg.packageName + " granting " + perm);
9422            }
9423
9424            if (grant != GRANT_DENIED) {
9425                if (!isSystemApp(ps) && ps.installPermissionsFixed) {
9426                    // If this is an existing, non-system package, then
9427                    // we can't add any new permissions to it.
9428                    if (!allowedSig && !origPermissions.hasInstallPermission(perm)) {
9429                        // Except...  if this is a permission that was added
9430                        // to the platform (note: need to only do this when
9431                        // updating the platform).
9432                        if (!isNewPlatformPermissionForPackage(perm, pkg)) {
9433                            grant = GRANT_DENIED;
9434                        }
9435                    }
9436                }
9437
9438                switch (grant) {
9439                    case GRANT_INSTALL: {
9440                        // Revoke this as runtime permission to handle the case of
9441                        // a runtime permission being downgraded to an install one. Also in permission review mode we keep dangerous permissions for legacy apps
9442                        for (int userId : UserManagerService.getInstance().getUserIds()) {
9443                            if (origPermissions.getRuntimePermissionState(
9444                                    bp.name, userId) != null) {
9445                                // Revoke the runtime permission and clear the flags.
9446                                origPermissions.revokeRuntimePermission(bp, userId);
9447                                origPermissions.updatePermissionFlags(bp, userId,
9448                                      PackageManager.MASK_PERMISSION_FLAGS, 0);
9449                                // If we revoked a permission permission, we have to write.
9450                                changedRuntimePermissionUserIds = ArrayUtils.appendInt(
9451                                        changedRuntimePermissionUserIds, userId);
9452                            }
9453                        }
9454                        // Grant an install permission.
9455                        if (permissionsState.grantInstallPermission(bp) !=
9456                                PermissionsState.PERMISSION_OPERATION_FAILURE) {
9457                            changedInstallPermission = true;
9458                        }
9459                    } break;
9460
9461                    case GRANT_RUNTIME: {
9462                        // Grant previously granted runtime permissions.
9463                        for (int userId : UserManagerService.getInstance().getUserIds()) {
9464                            PermissionState permissionState = origPermissions
9465                                    .getRuntimePermissionState(bp.name, userId);
9466                            int flags = permissionState != null
9467                                    ? permissionState.getFlags() : 0;
9468                            if (origPermissions.hasRuntimePermission(bp.name, userId)) {
9469                                if (permissionsState.grantRuntimePermission(bp, userId) ==
9470                                        PermissionsState.PERMISSION_OPERATION_FAILURE) {
9471                                    // If we cannot put the permission as it was, we have to write.
9472                                    changedRuntimePermissionUserIds = ArrayUtils.appendInt(
9473                                            changedRuntimePermissionUserIds, userId);
9474                                }
9475                                // If the app supports runtime permissions no need for a review.
9476                                if (Build.PERMISSIONS_REVIEW_REQUIRED
9477                                        && appSupportsRuntimePermissions
9478                                        && (flags & PackageManager
9479                                                .FLAG_PERMISSION_REVIEW_REQUIRED) != 0) {
9480                                    flags &= ~PackageManager.FLAG_PERMISSION_REVIEW_REQUIRED;
9481                                    // Since we changed the flags, we have to write.
9482                                    changedRuntimePermissionUserIds = ArrayUtils.appendInt(
9483                                            changedRuntimePermissionUserIds, userId);
9484                                }
9485                            } else if (Build.PERMISSIONS_REVIEW_REQUIRED
9486                                    && !appSupportsRuntimePermissions) {
9487                                // For legacy apps that need a permission review, every new
9488                                // runtime permission is granted but it is pending a review.
9489                                if ((flags & FLAG_PERMISSION_REVIEW_REQUIRED) == 0) {
9490                                    permissionsState.grantRuntimePermission(bp, userId);
9491                                    flags |= FLAG_PERMISSION_REVIEW_REQUIRED;
9492                                    // We changed the permission and flags, hence have to write.
9493                                    changedRuntimePermissionUserIds = ArrayUtils.appendInt(
9494                                            changedRuntimePermissionUserIds, userId);
9495                                }
9496                            }
9497                            // Propagate the permission flags.
9498                            permissionsState.updatePermissionFlags(bp, userId, flags, flags);
9499                        }
9500                    } break;
9501
9502                    case GRANT_UPGRADE: {
9503                        // Grant runtime permissions for a previously held install permission.
9504                        PermissionState permissionState = origPermissions
9505                                .getInstallPermissionState(bp.name);
9506                        final int flags = permissionState != null ? permissionState.getFlags() : 0;
9507
9508                        if (origPermissions.revokeInstallPermission(bp)
9509                                != PermissionsState.PERMISSION_OPERATION_FAILURE) {
9510                            // We will be transferring the permission flags, so clear them.
9511                            origPermissions.updatePermissionFlags(bp, UserHandle.USER_ALL,
9512                                    PackageManager.MASK_PERMISSION_FLAGS, 0);
9513                            changedInstallPermission = true;
9514                        }
9515
9516                        // If the permission is not to be promoted to runtime we ignore it and
9517                        // also its other flags as they are not applicable to install permissions.
9518                        if ((flags & PackageManager.FLAG_PERMISSION_REVOKE_ON_UPGRADE) == 0) {
9519                            for (int userId : currentUserIds) {
9520                                if (permissionsState.grantRuntimePermission(bp, userId) !=
9521                                        PermissionsState.PERMISSION_OPERATION_FAILURE) {
9522                                    // Transfer the permission flags.
9523                                    permissionsState.updatePermissionFlags(bp, userId,
9524                                            flags, flags);
9525                                    // If we granted the permission, we have to write.
9526                                    changedRuntimePermissionUserIds = ArrayUtils.appendInt(
9527                                            changedRuntimePermissionUserIds, userId);
9528                                }
9529                            }
9530                        }
9531                    } break;
9532
9533                    default: {
9534                        if (packageOfInterest == null
9535                                || packageOfInterest.equals(pkg.packageName)) {
9536                            Slog.w(TAG, "Not granting permission " + perm
9537                                    + " to package " + pkg.packageName
9538                                    + " because it was previously installed without");
9539                        }
9540                    } break;
9541                }
9542            } else {
9543                if (permissionsState.revokeInstallPermission(bp) !=
9544                        PermissionsState.PERMISSION_OPERATION_FAILURE) {
9545                    // Also drop the permission flags.
9546                    permissionsState.updatePermissionFlags(bp, UserHandle.USER_ALL,
9547                            PackageManager.MASK_PERMISSION_FLAGS, 0);
9548                    changedInstallPermission = true;
9549                    Slog.i(TAG, "Un-granting permission " + perm
9550                            + " from package " + pkg.packageName
9551                            + " (protectionLevel=" + bp.protectionLevel
9552                            + " flags=0x" + Integer.toHexString(pkg.applicationInfo.flags)
9553                            + ")");
9554                } else if ((bp.protectionLevel&PermissionInfo.PROTECTION_FLAG_APPOP) == 0) {
9555                    // Don't print warning for app op permissions, since it is fine for them
9556                    // not to be granted, there is a UI for the user to decide.
9557                    if (packageOfInterest == null || packageOfInterest.equals(pkg.packageName)) {
9558                        Slog.w(TAG, "Not granting permission " + perm
9559                                + " to package " + pkg.packageName
9560                                + " (protectionLevel=" + bp.protectionLevel
9561                                + " flags=0x" + Integer.toHexString(pkg.applicationInfo.flags)
9562                                + ")");
9563                    }
9564                }
9565            }
9566        }
9567
9568        if ((changedInstallPermission || replace) && !ps.installPermissionsFixed &&
9569                !isSystemApp(ps) || isUpdatedSystemApp(ps)){
9570            // This is the first that we have heard about this package, so the
9571            // permissions we have now selected are fixed until explicitly
9572            // changed.
9573            ps.installPermissionsFixed = true;
9574        }
9575
9576        // Persist the runtime permissions state for users with changes. If permissions
9577        // were revoked because no app in the shared user declares them we have to
9578        // write synchronously to avoid losing runtime permissions state.
9579        for (int userId : changedRuntimePermissionUserIds) {
9580            mSettings.writeRuntimePermissionsForUserLPr(userId, runtimePermissionsRevoked);
9581        }
9582
9583        Trace.traceEnd(TRACE_TAG_PACKAGE_MANAGER);
9584    }
9585
9586    private boolean isNewPlatformPermissionForPackage(String perm, PackageParser.Package pkg) {
9587        boolean allowed = false;
9588        final int NP = PackageParser.NEW_PERMISSIONS.length;
9589        for (int ip=0; ip<NP; ip++) {
9590            final PackageParser.NewPermissionInfo npi
9591                    = PackageParser.NEW_PERMISSIONS[ip];
9592            if (npi.name.equals(perm)
9593                    && pkg.applicationInfo.targetSdkVersion < npi.sdkVersion) {
9594                allowed = true;
9595                Log.i(TAG, "Auto-granting " + perm + " to old pkg "
9596                        + pkg.packageName);
9597                break;
9598            }
9599        }
9600        return allowed;
9601    }
9602
9603    private boolean grantSignaturePermission(String perm, PackageParser.Package pkg,
9604            BasePermission bp, PermissionsState origPermissions) {
9605        boolean allowed;
9606        allowed = (compareSignatures(
9607                bp.packageSetting.signatures.mSignatures, pkg.mSignatures)
9608                        == PackageManager.SIGNATURE_MATCH)
9609                || (compareSignatures(mPlatformPackage.mSignatures, pkg.mSignatures)
9610                        == PackageManager.SIGNATURE_MATCH);
9611        if (!allowed && (bp.protectionLevel
9612                & PermissionInfo.PROTECTION_FLAG_PRIVILEGED) != 0) {
9613            if (isSystemApp(pkg)) {
9614                // For updated system applications, a system permission
9615                // is granted only if it had been defined by the original application.
9616                if (pkg.isUpdatedSystemApp()) {
9617                    final PackageSetting sysPs = mSettings
9618                            .getDisabledSystemPkgLPr(pkg.packageName);
9619                    if (sysPs != null && sysPs.getPermissionsState().hasInstallPermission(perm)) {
9620                        // If the original was granted this permission, we take
9621                        // that grant decision as read and propagate it to the
9622                        // update.
9623                        if (sysPs.isPrivileged()) {
9624                            allowed = true;
9625                        }
9626                    } else {
9627                        // The system apk may have been updated with an older
9628                        // version of the one on the data partition, but which
9629                        // granted a new system permission that it didn't have
9630                        // before.  In this case we do want to allow the app to
9631                        // now get the new permission if the ancestral apk is
9632                        // privileged to get it.
9633                        if (sysPs != null && sysPs.pkg != null && sysPs.isPrivileged()) {
9634                            for (int j = 0; j < sysPs.pkg.requestedPermissions.size(); j++) {
9635                                if (perm.equals(sysPs.pkg.requestedPermissions.get(j))) {
9636                                    allowed = true;
9637                                    break;
9638                                }
9639                            }
9640                        }
9641                        // Also if a privileged parent package on the system image or any of
9642                        // its children requested a privileged permission, the updated child
9643                        // packages can also get the permission.
9644                        if (pkg.parentPackage != null) {
9645                            final PackageSetting disabledSysParentPs = mSettings
9646                                    .getDisabledSystemPkgLPr(pkg.parentPackage.packageName);
9647                            if (disabledSysParentPs != null && disabledSysParentPs.pkg != null
9648                                    && disabledSysParentPs.isPrivileged()) {
9649                                if (isPackageRequestingPermission(disabledSysParentPs.pkg, perm)) {
9650                                    allowed = true;
9651                                } else if (disabledSysParentPs.pkg.childPackages != null) {
9652                                    final int count = disabledSysParentPs.pkg.childPackages.size();
9653                                    for (int i = 0; i < count; i++) {
9654                                        PackageParser.Package disabledSysChildPkg =
9655                                                disabledSysParentPs.pkg.childPackages.get(i);
9656                                        if (isPackageRequestingPermission(disabledSysChildPkg,
9657                                                perm)) {
9658                                            allowed = true;
9659                                            break;
9660                                        }
9661                                    }
9662                                }
9663                            }
9664                        }
9665                    }
9666                } else {
9667                    allowed = isPrivilegedApp(pkg);
9668                }
9669            }
9670        }
9671        if (!allowed) {
9672            if (!allowed && (bp.protectionLevel
9673                    & PermissionInfo.PROTECTION_FLAG_PRE23) != 0
9674                    && pkg.applicationInfo.targetSdkVersion < Build.VERSION_CODES.M) {
9675                // If this was a previously normal/dangerous permission that got moved
9676                // to a system permission as part of the runtime permission redesign, then
9677                // we still want to blindly grant it to old apps.
9678                allowed = true;
9679            }
9680            if (!allowed && (bp.protectionLevel & PermissionInfo.PROTECTION_FLAG_INSTALLER) != 0
9681                    && pkg.packageName.equals(mRequiredInstallerPackage)) {
9682                // If this permission is to be granted to the system installer and
9683                // this app is an installer, then it gets the permission.
9684                allowed = true;
9685            }
9686            if (!allowed && (bp.protectionLevel & PermissionInfo.PROTECTION_FLAG_VERIFIER) != 0
9687                    && pkg.packageName.equals(mRequiredVerifierPackage)) {
9688                // If this permission is to be granted to the system verifier and
9689                // this app is a verifier, then it gets the permission.
9690                allowed = true;
9691            }
9692            if (!allowed && (bp.protectionLevel
9693                    & PermissionInfo.PROTECTION_FLAG_PREINSTALLED) != 0
9694                    && isSystemApp(pkg)) {
9695                // Any pre-installed system app is allowed to get this permission.
9696                allowed = true;
9697            }
9698            if (!allowed && (bp.protectionLevel
9699                    & PermissionInfo.PROTECTION_FLAG_DEVELOPMENT) != 0) {
9700                // For development permissions, a development permission
9701                // is granted only if it was already granted.
9702                allowed = origPermissions.hasInstallPermission(perm);
9703            }
9704        }
9705        return allowed;
9706    }
9707
9708    private boolean isPackageRequestingPermission(PackageParser.Package pkg, String permission) {
9709        final int permCount = pkg.requestedPermissions.size();
9710        for (int j = 0; j < permCount; j++) {
9711            String requestedPermission = pkg.requestedPermissions.get(j);
9712            if (permission.equals(requestedPermission)) {
9713                return true;
9714            }
9715        }
9716        return false;
9717    }
9718
9719    final class ActivityIntentResolver
9720            extends IntentResolver<PackageParser.ActivityIntentInfo, ResolveInfo> {
9721        public List<ResolveInfo> queryIntent(Intent intent, String resolvedType,
9722                boolean defaultOnly, int userId) {
9723            if (!sUserManager.exists(userId)) return null;
9724            mFlags = defaultOnly ? PackageManager.MATCH_DEFAULT_ONLY : 0;
9725            return super.queryIntent(intent, resolvedType, defaultOnly, userId);
9726        }
9727
9728        public List<ResolveInfo> queryIntent(Intent intent, String resolvedType, int flags,
9729                int userId) {
9730            if (!sUserManager.exists(userId)) return null;
9731            mFlags = flags;
9732            return super.queryIntent(intent, resolvedType,
9733                    (flags & PackageManager.MATCH_DEFAULT_ONLY) != 0, userId);
9734        }
9735
9736        public List<ResolveInfo> queryIntentForPackage(Intent intent, String resolvedType,
9737                int flags, ArrayList<PackageParser.Activity> packageActivities, int userId) {
9738            if (!sUserManager.exists(userId)) return null;
9739            if (packageActivities == null) {
9740                return null;
9741            }
9742            mFlags = flags;
9743            final boolean defaultOnly = (flags&PackageManager.MATCH_DEFAULT_ONLY) != 0;
9744            final int N = packageActivities.size();
9745            ArrayList<PackageParser.ActivityIntentInfo[]> listCut =
9746                new ArrayList<PackageParser.ActivityIntentInfo[]>(N);
9747
9748            ArrayList<PackageParser.ActivityIntentInfo> intentFilters;
9749            for (int i = 0; i < N; ++i) {
9750                intentFilters = packageActivities.get(i).intents;
9751                if (intentFilters != null && intentFilters.size() > 0) {
9752                    PackageParser.ActivityIntentInfo[] array =
9753                            new PackageParser.ActivityIntentInfo[intentFilters.size()];
9754                    intentFilters.toArray(array);
9755                    listCut.add(array);
9756                }
9757            }
9758            return super.queryIntentFromList(intent, resolvedType, defaultOnly, listCut, userId);
9759        }
9760
9761        public final void addActivity(PackageParser.Activity a, String type) {
9762            final boolean systemApp = a.info.applicationInfo.isSystemApp();
9763            mActivities.put(a.getComponentName(), a);
9764            if (DEBUG_SHOW_INFO)
9765                Log.v(
9766                TAG, "  " + type + " " +
9767                (a.info.nonLocalizedLabel != null ? a.info.nonLocalizedLabel : a.info.name) + ":");
9768            if (DEBUG_SHOW_INFO)
9769                Log.v(TAG, "    Class=" + a.info.name);
9770            final int NI = a.intents.size();
9771            for (int j=0; j<NI; j++) {
9772                PackageParser.ActivityIntentInfo intent = a.intents.get(j);
9773                if (!systemApp && intent.getPriority() > 0 && "activity".equals(type)) {
9774                    intent.setPriority(0);
9775                    Log.w(TAG, "Package " + a.info.applicationInfo.packageName + " has activity "
9776                            + a.className + " with priority > 0, forcing to 0");
9777                }
9778                if (DEBUG_SHOW_INFO) {
9779                    Log.v(TAG, "    IntentFilter:");
9780                    intent.dump(new LogPrinter(Log.VERBOSE, TAG), "      ");
9781                }
9782                if (!intent.debugCheck()) {
9783                    Log.w(TAG, "==> For Activity " + a.info.name);
9784                }
9785                addFilter(intent);
9786            }
9787        }
9788
9789        public final void removeActivity(PackageParser.Activity a, String type) {
9790            mActivities.remove(a.getComponentName());
9791            if (DEBUG_SHOW_INFO) {
9792                Log.v(TAG, "  " + type + " "
9793                        + (a.info.nonLocalizedLabel != null ? a.info.nonLocalizedLabel
9794                                : a.info.name) + ":");
9795                Log.v(TAG, "    Class=" + a.info.name);
9796            }
9797            final int NI = a.intents.size();
9798            for (int j=0; j<NI; j++) {
9799                PackageParser.ActivityIntentInfo intent = a.intents.get(j);
9800                if (DEBUG_SHOW_INFO) {
9801                    Log.v(TAG, "    IntentFilter:");
9802                    intent.dump(new LogPrinter(Log.VERBOSE, TAG), "      ");
9803                }
9804                removeFilter(intent);
9805            }
9806        }
9807
9808        @Override
9809        protected boolean allowFilterResult(
9810                PackageParser.ActivityIntentInfo filter, List<ResolveInfo> dest) {
9811            ActivityInfo filterAi = filter.activity.info;
9812            for (int i=dest.size()-1; i>=0; i--) {
9813                ActivityInfo destAi = dest.get(i).activityInfo;
9814                if (destAi.name == filterAi.name
9815                        && destAi.packageName == filterAi.packageName) {
9816                    return false;
9817                }
9818            }
9819            return true;
9820        }
9821
9822        @Override
9823        protected ActivityIntentInfo[] newArray(int size) {
9824            return new ActivityIntentInfo[size];
9825        }
9826
9827        @Override
9828        protected boolean isFilterStopped(PackageParser.ActivityIntentInfo filter, int userId) {
9829            if (!sUserManager.exists(userId)) return true;
9830            PackageParser.Package p = filter.activity.owner;
9831            if (p != null) {
9832                PackageSetting ps = (PackageSetting)p.mExtras;
9833                if (ps != null) {
9834                    // System apps are never considered stopped for purposes of
9835                    // filtering, because there may be no way for the user to
9836                    // actually re-launch them.
9837                    return (ps.pkgFlags&ApplicationInfo.FLAG_SYSTEM) == 0
9838                            && ps.getStopped(userId);
9839                }
9840            }
9841            return false;
9842        }
9843
9844        @Override
9845        protected boolean isPackageForFilter(String packageName,
9846                PackageParser.ActivityIntentInfo info) {
9847            return packageName.equals(info.activity.owner.packageName);
9848        }
9849
9850        @Override
9851        protected ResolveInfo newResult(PackageParser.ActivityIntentInfo info,
9852                int match, int userId) {
9853            if (!sUserManager.exists(userId)) return null;
9854            if (!mSettings.isEnabledAndMatchLPr(info.activity.info, mFlags, userId)) {
9855                return null;
9856            }
9857            final PackageParser.Activity activity = info.activity;
9858            PackageSetting ps = (PackageSetting) activity.owner.mExtras;
9859            if (ps == null) {
9860                return null;
9861            }
9862            ActivityInfo ai = PackageParser.generateActivityInfo(activity, mFlags,
9863                    ps.readUserState(userId), userId);
9864            if (ai == null) {
9865                return null;
9866            }
9867            final ResolveInfo res = new ResolveInfo();
9868            res.activityInfo = ai;
9869            if ((mFlags&PackageManager.GET_RESOLVED_FILTER) != 0) {
9870                res.filter = info;
9871            }
9872            if (info != null) {
9873                res.handleAllWebDataURI = info.handleAllWebDataURI();
9874            }
9875            res.priority = info.getPriority();
9876            res.preferredOrder = activity.owner.mPreferredOrder;
9877            //System.out.println("Result: " + res.activityInfo.className +
9878            //                   " = " + res.priority);
9879            res.match = match;
9880            res.isDefault = info.hasDefault;
9881            res.labelRes = info.labelRes;
9882            res.nonLocalizedLabel = info.nonLocalizedLabel;
9883            if (userNeedsBadging(userId)) {
9884                res.noResourceId = true;
9885            } else {
9886                res.icon = info.icon;
9887            }
9888            res.iconResourceId = info.icon;
9889            res.system = res.activityInfo.applicationInfo.isSystemApp();
9890            return res;
9891        }
9892
9893        @Override
9894        protected void sortResults(List<ResolveInfo> results) {
9895            Collections.sort(results, mResolvePrioritySorter);
9896        }
9897
9898        @Override
9899        protected void dumpFilter(PrintWriter out, String prefix,
9900                PackageParser.ActivityIntentInfo filter) {
9901            out.print(prefix); out.print(
9902                    Integer.toHexString(System.identityHashCode(filter.activity)));
9903                    out.print(' ');
9904                    filter.activity.printComponentShortName(out);
9905                    out.print(" filter ");
9906                    out.println(Integer.toHexString(System.identityHashCode(filter)));
9907        }
9908
9909        @Override
9910        protected Object filterToLabel(PackageParser.ActivityIntentInfo filter) {
9911            return filter.activity;
9912        }
9913
9914        protected void dumpFilterLabel(PrintWriter out, String prefix, Object label, int count) {
9915            PackageParser.Activity activity = (PackageParser.Activity)label;
9916            out.print(prefix); out.print(
9917                    Integer.toHexString(System.identityHashCode(activity)));
9918                    out.print(' ');
9919                    activity.printComponentShortName(out);
9920            if (count > 1) {
9921                out.print(" ("); out.print(count); out.print(" filters)");
9922            }
9923            out.println();
9924        }
9925
9926//        List<ResolveInfo> filterEnabled(List<ResolveInfo> resolveInfoList) {
9927//            final Iterator<ResolveInfo> i = resolveInfoList.iterator();
9928//            final List<ResolveInfo> retList = Lists.newArrayList();
9929//            while (i.hasNext()) {
9930//                final ResolveInfo resolveInfo = i.next();
9931//                if (isEnabledLP(resolveInfo.activityInfo)) {
9932//                    retList.add(resolveInfo);
9933//                }
9934//            }
9935//            return retList;
9936//        }
9937
9938        // Keys are String (activity class name), values are Activity.
9939        private final ArrayMap<ComponentName, PackageParser.Activity> mActivities
9940                = new ArrayMap<ComponentName, PackageParser.Activity>();
9941        private int mFlags;
9942    }
9943
9944    private final class ServiceIntentResolver
9945            extends IntentResolver<PackageParser.ServiceIntentInfo, ResolveInfo> {
9946        public List<ResolveInfo> queryIntent(Intent intent, String resolvedType,
9947                boolean defaultOnly, int userId) {
9948            mFlags = defaultOnly ? PackageManager.MATCH_DEFAULT_ONLY : 0;
9949            return super.queryIntent(intent, resolvedType, defaultOnly, userId);
9950        }
9951
9952        public List<ResolveInfo> queryIntent(Intent intent, String resolvedType, int flags,
9953                int userId) {
9954            if (!sUserManager.exists(userId)) return null;
9955            mFlags = flags;
9956            return super.queryIntent(intent, resolvedType,
9957                    (flags & PackageManager.MATCH_DEFAULT_ONLY) != 0, userId);
9958        }
9959
9960        public List<ResolveInfo> queryIntentForPackage(Intent intent, String resolvedType,
9961                int flags, ArrayList<PackageParser.Service> packageServices, int userId) {
9962            if (!sUserManager.exists(userId)) return null;
9963            if (packageServices == null) {
9964                return null;
9965            }
9966            mFlags = flags;
9967            final boolean defaultOnly = (flags&PackageManager.MATCH_DEFAULT_ONLY) != 0;
9968            final int N = packageServices.size();
9969            ArrayList<PackageParser.ServiceIntentInfo[]> listCut =
9970                new ArrayList<PackageParser.ServiceIntentInfo[]>(N);
9971
9972            ArrayList<PackageParser.ServiceIntentInfo> intentFilters;
9973            for (int i = 0; i < N; ++i) {
9974                intentFilters = packageServices.get(i).intents;
9975                if (intentFilters != null && intentFilters.size() > 0) {
9976                    PackageParser.ServiceIntentInfo[] array =
9977                            new PackageParser.ServiceIntentInfo[intentFilters.size()];
9978                    intentFilters.toArray(array);
9979                    listCut.add(array);
9980                }
9981            }
9982            return super.queryIntentFromList(intent, resolvedType, defaultOnly, listCut, userId);
9983        }
9984
9985        public final void addService(PackageParser.Service s) {
9986            mServices.put(s.getComponentName(), s);
9987            if (DEBUG_SHOW_INFO) {
9988                Log.v(TAG, "  "
9989                        + (s.info.nonLocalizedLabel != null
9990                        ? s.info.nonLocalizedLabel : s.info.name) + ":");
9991                Log.v(TAG, "    Class=" + s.info.name);
9992            }
9993            final int NI = s.intents.size();
9994            int j;
9995            for (j=0; j<NI; j++) {
9996                PackageParser.ServiceIntentInfo intent = s.intents.get(j);
9997                if (DEBUG_SHOW_INFO) {
9998                    Log.v(TAG, "    IntentFilter:");
9999                    intent.dump(new LogPrinter(Log.VERBOSE, TAG), "      ");
10000                }
10001                if (!intent.debugCheck()) {
10002                    Log.w(TAG, "==> For Service " + s.info.name);
10003                }
10004                addFilter(intent);
10005            }
10006        }
10007
10008        public final void removeService(PackageParser.Service s) {
10009            mServices.remove(s.getComponentName());
10010            if (DEBUG_SHOW_INFO) {
10011                Log.v(TAG, "  " + (s.info.nonLocalizedLabel != null
10012                        ? s.info.nonLocalizedLabel : s.info.name) + ":");
10013                Log.v(TAG, "    Class=" + s.info.name);
10014            }
10015            final int NI = s.intents.size();
10016            int j;
10017            for (j=0; j<NI; j++) {
10018                PackageParser.ServiceIntentInfo intent = s.intents.get(j);
10019                if (DEBUG_SHOW_INFO) {
10020                    Log.v(TAG, "    IntentFilter:");
10021                    intent.dump(new LogPrinter(Log.VERBOSE, TAG), "      ");
10022                }
10023                removeFilter(intent);
10024            }
10025        }
10026
10027        @Override
10028        protected boolean allowFilterResult(
10029                PackageParser.ServiceIntentInfo filter, List<ResolveInfo> dest) {
10030            ServiceInfo filterSi = filter.service.info;
10031            for (int i=dest.size()-1; i>=0; i--) {
10032                ServiceInfo destAi = dest.get(i).serviceInfo;
10033                if (destAi.name == filterSi.name
10034                        && destAi.packageName == filterSi.packageName) {
10035                    return false;
10036                }
10037            }
10038            return true;
10039        }
10040
10041        @Override
10042        protected PackageParser.ServiceIntentInfo[] newArray(int size) {
10043            return new PackageParser.ServiceIntentInfo[size];
10044        }
10045
10046        @Override
10047        protected boolean isFilterStopped(PackageParser.ServiceIntentInfo filter, int userId) {
10048            if (!sUserManager.exists(userId)) return true;
10049            PackageParser.Package p = filter.service.owner;
10050            if (p != null) {
10051                PackageSetting ps = (PackageSetting)p.mExtras;
10052                if (ps != null) {
10053                    // System apps are never considered stopped for purposes of
10054                    // filtering, because there may be no way for the user to
10055                    // actually re-launch them.
10056                    return (ps.pkgFlags & ApplicationInfo.FLAG_SYSTEM) == 0
10057                            && ps.getStopped(userId);
10058                }
10059            }
10060            return false;
10061        }
10062
10063        @Override
10064        protected boolean isPackageForFilter(String packageName,
10065                PackageParser.ServiceIntentInfo info) {
10066            return packageName.equals(info.service.owner.packageName);
10067        }
10068
10069        @Override
10070        protected ResolveInfo newResult(PackageParser.ServiceIntentInfo filter,
10071                int match, int userId) {
10072            if (!sUserManager.exists(userId)) return null;
10073            final PackageParser.ServiceIntentInfo info = (PackageParser.ServiceIntentInfo)filter;
10074            if (!mSettings.isEnabledAndMatchLPr(info.service.info, mFlags, userId)) {
10075                return null;
10076            }
10077            final PackageParser.Service service = info.service;
10078            PackageSetting ps = (PackageSetting) service.owner.mExtras;
10079            if (ps == null) {
10080                return null;
10081            }
10082            ServiceInfo si = PackageParser.generateServiceInfo(service, mFlags,
10083                    ps.readUserState(userId), userId);
10084            if (si == null) {
10085                return null;
10086            }
10087            final ResolveInfo res = new ResolveInfo();
10088            res.serviceInfo = si;
10089            if ((mFlags&PackageManager.GET_RESOLVED_FILTER) != 0) {
10090                res.filter = filter;
10091            }
10092            res.priority = info.getPriority();
10093            res.preferredOrder = service.owner.mPreferredOrder;
10094            res.match = match;
10095            res.isDefault = info.hasDefault;
10096            res.labelRes = info.labelRes;
10097            res.nonLocalizedLabel = info.nonLocalizedLabel;
10098            res.icon = info.icon;
10099            res.system = res.serviceInfo.applicationInfo.isSystemApp();
10100            return res;
10101        }
10102
10103        @Override
10104        protected void sortResults(List<ResolveInfo> results) {
10105            Collections.sort(results, mResolvePrioritySorter);
10106        }
10107
10108        @Override
10109        protected void dumpFilter(PrintWriter out, String prefix,
10110                PackageParser.ServiceIntentInfo filter) {
10111            out.print(prefix); out.print(
10112                    Integer.toHexString(System.identityHashCode(filter.service)));
10113                    out.print(' ');
10114                    filter.service.printComponentShortName(out);
10115                    out.print(" filter ");
10116                    out.println(Integer.toHexString(System.identityHashCode(filter)));
10117        }
10118
10119        @Override
10120        protected Object filterToLabel(PackageParser.ServiceIntentInfo filter) {
10121            return filter.service;
10122        }
10123
10124        protected void dumpFilterLabel(PrintWriter out, String prefix, Object label, int count) {
10125            PackageParser.Service service = (PackageParser.Service)label;
10126            out.print(prefix); out.print(
10127                    Integer.toHexString(System.identityHashCode(service)));
10128                    out.print(' ');
10129                    service.printComponentShortName(out);
10130            if (count > 1) {
10131                out.print(" ("); out.print(count); out.print(" filters)");
10132            }
10133            out.println();
10134        }
10135
10136//        List<ResolveInfo> filterEnabled(List<ResolveInfo> resolveInfoList) {
10137//            final Iterator<ResolveInfo> i = resolveInfoList.iterator();
10138//            final List<ResolveInfo> retList = Lists.newArrayList();
10139//            while (i.hasNext()) {
10140//                final ResolveInfo resolveInfo = (ResolveInfo) i;
10141//                if (isEnabledLP(resolveInfo.serviceInfo)) {
10142//                    retList.add(resolveInfo);
10143//                }
10144//            }
10145//            return retList;
10146//        }
10147
10148        // Keys are String (activity class name), values are Activity.
10149        private final ArrayMap<ComponentName, PackageParser.Service> mServices
10150                = new ArrayMap<ComponentName, PackageParser.Service>();
10151        private int mFlags;
10152    };
10153
10154    private final class ProviderIntentResolver
10155            extends IntentResolver<PackageParser.ProviderIntentInfo, ResolveInfo> {
10156        public List<ResolveInfo> queryIntent(Intent intent, String resolvedType,
10157                boolean defaultOnly, int userId) {
10158            mFlags = defaultOnly ? PackageManager.MATCH_DEFAULT_ONLY : 0;
10159            return super.queryIntent(intent, resolvedType, defaultOnly, userId);
10160        }
10161
10162        public List<ResolveInfo> queryIntent(Intent intent, String resolvedType, int flags,
10163                int userId) {
10164            if (!sUserManager.exists(userId))
10165                return null;
10166            mFlags = flags;
10167            return super.queryIntent(intent, resolvedType,
10168                    (flags & PackageManager.MATCH_DEFAULT_ONLY) != 0, userId);
10169        }
10170
10171        public List<ResolveInfo> queryIntentForPackage(Intent intent, String resolvedType,
10172                int flags, ArrayList<PackageParser.Provider> packageProviders, int userId) {
10173            if (!sUserManager.exists(userId))
10174                return null;
10175            if (packageProviders == null) {
10176                return null;
10177            }
10178            mFlags = flags;
10179            final boolean defaultOnly = (flags & PackageManager.MATCH_DEFAULT_ONLY) != 0;
10180            final int N = packageProviders.size();
10181            ArrayList<PackageParser.ProviderIntentInfo[]> listCut =
10182                    new ArrayList<PackageParser.ProviderIntentInfo[]>(N);
10183
10184            ArrayList<PackageParser.ProviderIntentInfo> intentFilters;
10185            for (int i = 0; i < N; ++i) {
10186                intentFilters = packageProviders.get(i).intents;
10187                if (intentFilters != null && intentFilters.size() > 0) {
10188                    PackageParser.ProviderIntentInfo[] array =
10189                            new PackageParser.ProviderIntentInfo[intentFilters.size()];
10190                    intentFilters.toArray(array);
10191                    listCut.add(array);
10192                }
10193            }
10194            return super.queryIntentFromList(intent, resolvedType, defaultOnly, listCut, userId);
10195        }
10196
10197        public final void addProvider(PackageParser.Provider p) {
10198            if (mProviders.containsKey(p.getComponentName())) {
10199                Slog.w(TAG, "Provider " + p.getComponentName() + " already defined; ignoring");
10200                return;
10201            }
10202
10203            mProviders.put(p.getComponentName(), p);
10204            if (DEBUG_SHOW_INFO) {
10205                Log.v(TAG, "  "
10206                        + (p.info.nonLocalizedLabel != null
10207                                ? p.info.nonLocalizedLabel : p.info.name) + ":");
10208                Log.v(TAG, "    Class=" + p.info.name);
10209            }
10210            final int NI = p.intents.size();
10211            int j;
10212            for (j = 0; j < NI; j++) {
10213                PackageParser.ProviderIntentInfo intent = p.intents.get(j);
10214                if (DEBUG_SHOW_INFO) {
10215                    Log.v(TAG, "    IntentFilter:");
10216                    intent.dump(new LogPrinter(Log.VERBOSE, TAG), "      ");
10217                }
10218                if (!intent.debugCheck()) {
10219                    Log.w(TAG, "==> For Provider " + p.info.name);
10220                }
10221                addFilter(intent);
10222            }
10223        }
10224
10225        public final void removeProvider(PackageParser.Provider p) {
10226            mProviders.remove(p.getComponentName());
10227            if (DEBUG_SHOW_INFO) {
10228                Log.v(TAG, "  " + (p.info.nonLocalizedLabel != null
10229                        ? p.info.nonLocalizedLabel : p.info.name) + ":");
10230                Log.v(TAG, "    Class=" + p.info.name);
10231            }
10232            final int NI = p.intents.size();
10233            int j;
10234            for (j = 0; j < NI; j++) {
10235                PackageParser.ProviderIntentInfo intent = p.intents.get(j);
10236                if (DEBUG_SHOW_INFO) {
10237                    Log.v(TAG, "    IntentFilter:");
10238                    intent.dump(new LogPrinter(Log.VERBOSE, TAG), "      ");
10239                }
10240                removeFilter(intent);
10241            }
10242        }
10243
10244        @Override
10245        protected boolean allowFilterResult(
10246                PackageParser.ProviderIntentInfo filter, List<ResolveInfo> dest) {
10247            ProviderInfo filterPi = filter.provider.info;
10248            for (int i = dest.size() - 1; i >= 0; i--) {
10249                ProviderInfo destPi = dest.get(i).providerInfo;
10250                if (destPi.name == filterPi.name
10251                        && destPi.packageName == filterPi.packageName) {
10252                    return false;
10253                }
10254            }
10255            return true;
10256        }
10257
10258        @Override
10259        protected PackageParser.ProviderIntentInfo[] newArray(int size) {
10260            return new PackageParser.ProviderIntentInfo[size];
10261        }
10262
10263        @Override
10264        protected boolean isFilterStopped(PackageParser.ProviderIntentInfo filter, int userId) {
10265            if (!sUserManager.exists(userId))
10266                return true;
10267            PackageParser.Package p = filter.provider.owner;
10268            if (p != null) {
10269                PackageSetting ps = (PackageSetting) p.mExtras;
10270                if (ps != null) {
10271                    // System apps are never considered stopped for purposes of
10272                    // filtering, because there may be no way for the user to
10273                    // actually re-launch them.
10274                    return (ps.pkgFlags & ApplicationInfo.FLAG_SYSTEM) == 0
10275                            && ps.getStopped(userId);
10276                }
10277            }
10278            return false;
10279        }
10280
10281        @Override
10282        protected boolean isPackageForFilter(String packageName,
10283                PackageParser.ProviderIntentInfo info) {
10284            return packageName.equals(info.provider.owner.packageName);
10285        }
10286
10287        @Override
10288        protected ResolveInfo newResult(PackageParser.ProviderIntentInfo filter,
10289                int match, int userId) {
10290            if (!sUserManager.exists(userId))
10291                return null;
10292            final PackageParser.ProviderIntentInfo info = filter;
10293            if (!mSettings.isEnabledAndMatchLPr(info.provider.info, mFlags, userId)) {
10294                return null;
10295            }
10296            final PackageParser.Provider provider = info.provider;
10297            PackageSetting ps = (PackageSetting) provider.owner.mExtras;
10298            if (ps == null) {
10299                return null;
10300            }
10301            ProviderInfo pi = PackageParser.generateProviderInfo(provider, mFlags,
10302                    ps.readUserState(userId), userId);
10303            if (pi == null) {
10304                return null;
10305            }
10306            final ResolveInfo res = new ResolveInfo();
10307            res.providerInfo = pi;
10308            if ((mFlags & PackageManager.GET_RESOLVED_FILTER) != 0) {
10309                res.filter = filter;
10310            }
10311            res.priority = info.getPriority();
10312            res.preferredOrder = provider.owner.mPreferredOrder;
10313            res.match = match;
10314            res.isDefault = info.hasDefault;
10315            res.labelRes = info.labelRes;
10316            res.nonLocalizedLabel = info.nonLocalizedLabel;
10317            res.icon = info.icon;
10318            res.system = res.providerInfo.applicationInfo.isSystemApp();
10319            return res;
10320        }
10321
10322        @Override
10323        protected void sortResults(List<ResolveInfo> results) {
10324            Collections.sort(results, mResolvePrioritySorter);
10325        }
10326
10327        @Override
10328        protected void dumpFilter(PrintWriter out, String prefix,
10329                PackageParser.ProviderIntentInfo filter) {
10330            out.print(prefix);
10331            out.print(
10332                    Integer.toHexString(System.identityHashCode(filter.provider)));
10333            out.print(' ');
10334            filter.provider.printComponentShortName(out);
10335            out.print(" filter ");
10336            out.println(Integer.toHexString(System.identityHashCode(filter)));
10337        }
10338
10339        @Override
10340        protected Object filterToLabel(PackageParser.ProviderIntentInfo filter) {
10341            return filter.provider;
10342        }
10343
10344        protected void dumpFilterLabel(PrintWriter out, String prefix, Object label, int count) {
10345            PackageParser.Provider provider = (PackageParser.Provider)label;
10346            out.print(prefix); out.print(
10347                    Integer.toHexString(System.identityHashCode(provider)));
10348                    out.print(' ');
10349                    provider.printComponentShortName(out);
10350            if (count > 1) {
10351                out.print(" ("); out.print(count); out.print(" filters)");
10352            }
10353            out.println();
10354        }
10355
10356        private final ArrayMap<ComponentName, PackageParser.Provider> mProviders
10357                = new ArrayMap<ComponentName, PackageParser.Provider>();
10358        private int mFlags;
10359    }
10360
10361    private static final class EphemeralIntentResolver
10362            extends IntentResolver<EphemeralResolveIntentInfo, EphemeralResolveInfo> {
10363        @Override
10364        protected EphemeralResolveIntentInfo[] newArray(int size) {
10365            return new EphemeralResolveIntentInfo[size];
10366        }
10367
10368        @Override
10369        protected boolean isPackageForFilter(String packageName, EphemeralResolveIntentInfo info) {
10370            return true;
10371        }
10372
10373        @Override
10374        protected EphemeralResolveInfo newResult(EphemeralResolveIntentInfo info, int match,
10375                int userId) {
10376            if (!sUserManager.exists(userId)) {
10377                return null;
10378            }
10379            return info.getEphemeralResolveInfo();
10380        }
10381    }
10382
10383    private static final Comparator<ResolveInfo> mResolvePrioritySorter =
10384            new Comparator<ResolveInfo>() {
10385        public int compare(ResolveInfo r1, ResolveInfo r2) {
10386            int v1 = r1.priority;
10387            int v2 = r2.priority;
10388            //System.out.println("Comparing: q1=" + q1 + " q2=" + q2);
10389            if (v1 != v2) {
10390                return (v1 > v2) ? -1 : 1;
10391            }
10392            v1 = r1.preferredOrder;
10393            v2 = r2.preferredOrder;
10394            if (v1 != v2) {
10395                return (v1 > v2) ? -1 : 1;
10396            }
10397            if (r1.isDefault != r2.isDefault) {
10398                return r1.isDefault ? -1 : 1;
10399            }
10400            v1 = r1.match;
10401            v2 = r2.match;
10402            //System.out.println("Comparing: m1=" + m1 + " m2=" + m2);
10403            if (v1 != v2) {
10404                return (v1 > v2) ? -1 : 1;
10405            }
10406            if (r1.system != r2.system) {
10407                return r1.system ? -1 : 1;
10408            }
10409            if (r1.activityInfo != null) {
10410                return r1.activityInfo.packageName.compareTo(r2.activityInfo.packageName);
10411            }
10412            if (r1.serviceInfo != null) {
10413                return r1.serviceInfo.packageName.compareTo(r2.serviceInfo.packageName);
10414            }
10415            if (r1.providerInfo != null) {
10416                return r1.providerInfo.packageName.compareTo(r2.providerInfo.packageName);
10417            }
10418            return 0;
10419        }
10420    };
10421
10422    private static final Comparator<ProviderInfo> mProviderInitOrderSorter =
10423            new Comparator<ProviderInfo>() {
10424        public int compare(ProviderInfo p1, ProviderInfo p2) {
10425            final int v1 = p1.initOrder;
10426            final int v2 = p2.initOrder;
10427            return (v1 > v2) ? -1 : ((v1 < v2) ? 1 : 0);
10428        }
10429    };
10430
10431    final void sendPackageBroadcast(final String action, final String pkg, final Bundle extras,
10432            final int flags, final String targetPkg, final IIntentReceiver finishedReceiver,
10433            final int[] userIds) {
10434        mHandler.post(new Runnable() {
10435            @Override
10436            public void run() {
10437                try {
10438                    final IActivityManager am = ActivityManagerNative.getDefault();
10439                    if (am == null) return;
10440                    final int[] resolvedUserIds;
10441                    if (userIds == null) {
10442                        resolvedUserIds = am.getRunningUserIds();
10443                    } else {
10444                        resolvedUserIds = userIds;
10445                    }
10446                    for (int id : resolvedUserIds) {
10447                        final Intent intent = new Intent(action,
10448                                pkg != null ? Uri.fromParts("package", pkg, null) : null);
10449                        if (extras != null) {
10450                            intent.putExtras(extras);
10451                        }
10452                        if (targetPkg != null) {
10453                            intent.setPackage(targetPkg);
10454                        }
10455                        // Modify the UID when posting to other users
10456                        int uid = intent.getIntExtra(Intent.EXTRA_UID, -1);
10457                        if (uid > 0 && UserHandle.getUserId(uid) != id) {
10458                            uid = UserHandle.getUid(id, UserHandle.getAppId(uid));
10459                            intent.putExtra(Intent.EXTRA_UID, uid);
10460                        }
10461                        intent.putExtra(Intent.EXTRA_USER_HANDLE, id);
10462                        intent.addFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY_BEFORE_BOOT | flags);
10463                        if (DEBUG_BROADCASTS) {
10464                            RuntimeException here = new RuntimeException("here");
10465                            here.fillInStackTrace();
10466                            Slog.d(TAG, "Sending to user " + id + ": "
10467                                    + intent.toShortString(false, true, false, false)
10468                                    + " " + intent.getExtras(), here);
10469                        }
10470                        am.broadcastIntent(null, intent, null, finishedReceiver,
10471                                0, null, null, null, android.app.AppOpsManager.OP_NONE,
10472                                null, finishedReceiver != null, false, id);
10473                    }
10474                } catch (RemoteException ex) {
10475                }
10476            }
10477        });
10478    }
10479
10480    /**
10481     * Check if the external storage media is available. This is true if there
10482     * is a mounted external storage medium or if the external storage is
10483     * emulated.
10484     */
10485    private boolean isExternalMediaAvailable() {
10486        return mMediaMounted || Environment.isExternalStorageEmulated();
10487    }
10488
10489    @Override
10490    public PackageCleanItem nextPackageToClean(PackageCleanItem lastPackage) {
10491        // writer
10492        synchronized (mPackages) {
10493            if (!isExternalMediaAvailable()) {
10494                // If the external storage is no longer mounted at this point,
10495                // the caller may not have been able to delete all of this
10496                // packages files and can not delete any more.  Bail.
10497                return null;
10498            }
10499            final ArrayList<PackageCleanItem> pkgs = mSettings.mPackagesToBeCleaned;
10500            if (lastPackage != null) {
10501                pkgs.remove(lastPackage);
10502            }
10503            if (pkgs.size() > 0) {
10504                return pkgs.get(0);
10505            }
10506        }
10507        return null;
10508    }
10509
10510    void schedulePackageCleaning(String packageName, int userId, boolean andCode) {
10511        final Message msg = mHandler.obtainMessage(START_CLEANING_PACKAGE,
10512                userId, andCode ? 1 : 0, packageName);
10513        if (mSystemReady) {
10514            msg.sendToTarget();
10515        } else {
10516            if (mPostSystemReadyMessages == null) {
10517                mPostSystemReadyMessages = new ArrayList<>();
10518            }
10519            mPostSystemReadyMessages.add(msg);
10520        }
10521    }
10522
10523    void startCleaningPackages() {
10524        // reader
10525        if (!isExternalMediaAvailable()) {
10526            return;
10527        }
10528        synchronized (mPackages) {
10529            if (mSettings.mPackagesToBeCleaned.isEmpty()) {
10530                return;
10531            }
10532        }
10533        Intent intent = new Intent(PackageManager.ACTION_CLEAN_EXTERNAL_STORAGE);
10534        intent.setComponent(DEFAULT_CONTAINER_COMPONENT);
10535        IActivityManager am = ActivityManagerNative.getDefault();
10536        if (am != null) {
10537            try {
10538                am.startService(null, intent, null, mContext.getOpPackageName(),
10539                        UserHandle.USER_SYSTEM);
10540            } catch (RemoteException e) {
10541            }
10542        }
10543    }
10544
10545    @Override
10546    public void installPackageAsUser(String originPath, IPackageInstallObserver2 observer,
10547            int installFlags, String installerPackageName, int userId) {
10548        mContext.enforceCallingOrSelfPermission(android.Manifest.permission.INSTALL_PACKAGES, null);
10549
10550        final int callingUid = Binder.getCallingUid();
10551        enforceCrossUserPermission(callingUid, userId,
10552                true /* requireFullPermission */, true /* checkShell */, "installPackageAsUser");
10553
10554        if (isUserRestricted(userId, UserManager.DISALLOW_INSTALL_APPS)) {
10555            try {
10556                if (observer != null) {
10557                    observer.onPackageInstalled("", INSTALL_FAILED_USER_RESTRICTED, null, null);
10558                }
10559            } catch (RemoteException re) {
10560            }
10561            return;
10562        }
10563
10564        if ((callingUid == Process.SHELL_UID) || (callingUid == Process.ROOT_UID)) {
10565            installFlags |= PackageManager.INSTALL_FROM_ADB;
10566
10567        } else {
10568            // Caller holds INSTALL_PACKAGES permission, so we're less strict
10569            // about installerPackageName.
10570
10571            installFlags &= ~PackageManager.INSTALL_FROM_ADB;
10572            installFlags &= ~PackageManager.INSTALL_ALL_USERS;
10573        }
10574
10575        UserHandle user;
10576        if ((installFlags & PackageManager.INSTALL_ALL_USERS) != 0) {
10577            user = UserHandle.ALL;
10578        } else {
10579            user = new UserHandle(userId);
10580        }
10581
10582        // Only system components can circumvent runtime permissions when installing.
10583        if ((installFlags & PackageManager.INSTALL_GRANT_RUNTIME_PERMISSIONS) != 0
10584                && mContext.checkCallingOrSelfPermission(Manifest.permission
10585                .INSTALL_GRANT_RUNTIME_PERMISSIONS) == PackageManager.PERMISSION_DENIED) {
10586            throw new SecurityException("You need the "
10587                    + "android.permission.INSTALL_GRANT_RUNTIME_PERMISSIONS permission "
10588                    + "to use the PackageManager.INSTALL_GRANT_RUNTIME_PERMISSIONS flag");
10589        }
10590
10591        final File originFile = new File(originPath);
10592        final OriginInfo origin = OriginInfo.fromUntrustedFile(originFile);
10593
10594        final Message msg = mHandler.obtainMessage(INIT_COPY);
10595        final VerificationInfo verificationInfo = new VerificationInfo(
10596                null /*originatingUri*/, null /*referrer*/, -1 /*originatingUid*/, callingUid);
10597        final InstallParams params = new InstallParams(origin, null /*moveInfo*/, observer,
10598                installFlags, installerPackageName, null /*volumeUuid*/, verificationInfo, user,
10599                null /*packageAbiOverride*/, null /*grantedPermissions*/);
10600        params.setTraceMethod("installAsUser").setTraceCookie(System.identityHashCode(params));
10601        msg.obj = params;
10602
10603        Trace.asyncTraceBegin(TRACE_TAG_PACKAGE_MANAGER, "installAsUser",
10604                System.identityHashCode(msg.obj));
10605        Trace.asyncTraceBegin(TRACE_TAG_PACKAGE_MANAGER, "queueInstall",
10606                System.identityHashCode(msg.obj));
10607
10608        mHandler.sendMessage(msg);
10609    }
10610
10611    void installStage(String packageName, File stagedDir, String stagedCid,
10612            IPackageInstallObserver2 observer, PackageInstaller.SessionParams sessionParams,
10613            String installerPackageName, int installerUid, UserHandle user) {
10614        if (DEBUG_EPHEMERAL) {
10615            if ((sessionParams.installFlags & PackageManager.INSTALL_EPHEMERAL) != 0) {
10616                Slog.d(TAG, "Ephemeral install of " + packageName);
10617            }
10618        }
10619        final VerificationInfo verificationInfo = new VerificationInfo(
10620                sessionParams.originatingUri, sessionParams.referrerUri,
10621                sessionParams.originatingUid, installerUid);
10622
10623        final OriginInfo origin;
10624        if (stagedDir != null) {
10625            origin = OriginInfo.fromStagedFile(stagedDir);
10626        } else {
10627            origin = OriginInfo.fromStagedContainer(stagedCid);
10628        }
10629
10630        final Message msg = mHandler.obtainMessage(INIT_COPY);
10631        final InstallParams params = new InstallParams(origin, null, observer,
10632                sessionParams.installFlags, installerPackageName, sessionParams.volumeUuid,
10633                verificationInfo, user, sessionParams.abiOverride,
10634                sessionParams.grantedRuntimePermissions);
10635        params.setTraceMethod("installStage").setTraceCookie(System.identityHashCode(params));
10636        msg.obj = params;
10637
10638        Trace.asyncTraceBegin(TRACE_TAG_PACKAGE_MANAGER, "installStage",
10639                System.identityHashCode(msg.obj));
10640        Trace.asyncTraceBegin(TRACE_TAG_PACKAGE_MANAGER, "queueInstall",
10641                System.identityHashCode(msg.obj));
10642
10643        mHandler.sendMessage(msg);
10644    }
10645
10646    private void sendPackageAddedForUser(String packageName, PackageSetting pkgSetting,
10647            int userId) {
10648        final boolean isSystem = isSystemApp(pkgSetting) || isUpdatedSystemApp(pkgSetting);
10649        sendPackageAddedForUser(packageName, isSystem, pkgSetting.appId, userId);
10650    }
10651
10652    private void sendPackageAddedForUser(String packageName, boolean isSystem,
10653            int appId, int userId) {
10654        Bundle extras = new Bundle(1);
10655        extras.putInt(Intent.EXTRA_UID, UserHandle.getUid(userId, appId));
10656
10657        sendPackageBroadcast(Intent.ACTION_PACKAGE_ADDED,
10658                packageName, extras, 0, null, null, new int[] {userId});
10659        try {
10660            IActivityManager am = ActivityManagerNative.getDefault();
10661            if (isSystem && am.isUserRunning(userId, 0)) {
10662                // The just-installed/enabled app is bundled on the system, so presumed
10663                // to be able to run automatically without needing an explicit launch.
10664                // Send it a BOOT_COMPLETED if it would ordinarily have gotten one.
10665                Intent bcIntent = new Intent(Intent.ACTION_BOOT_COMPLETED)
10666                        .addFlags(Intent.FLAG_INCLUDE_STOPPED_PACKAGES)
10667                        .setPackage(packageName);
10668                am.broadcastIntent(null, bcIntent, null, null, 0, null, null, null,
10669                        android.app.AppOpsManager.OP_NONE, null, false, false, userId);
10670            }
10671        } catch (RemoteException e) {
10672            // shouldn't happen
10673            Slog.w(TAG, "Unable to bootstrap installed package", e);
10674        }
10675    }
10676
10677    @Override
10678    public boolean setApplicationHiddenSettingAsUser(String packageName, boolean hidden,
10679            int userId) {
10680        mContext.enforceCallingOrSelfPermission(android.Manifest.permission.MANAGE_USERS, null);
10681        PackageSetting pkgSetting;
10682        final int uid = Binder.getCallingUid();
10683        enforceCrossUserPermission(uid, userId,
10684                true /* requireFullPermission */, true /* checkShell */,
10685                "setApplicationHiddenSetting for user " + userId);
10686
10687        if (hidden && isPackageDeviceAdmin(packageName, userId)) {
10688            Slog.w(TAG, "Not hiding package " + packageName + ": has active device admin");
10689            return false;
10690        }
10691
10692        long callingId = Binder.clearCallingIdentity();
10693        try {
10694            boolean sendAdded = false;
10695            boolean sendRemoved = false;
10696            // writer
10697            synchronized (mPackages) {
10698                pkgSetting = mSettings.mPackages.get(packageName);
10699                if (pkgSetting == null) {
10700                    return false;
10701                }
10702                if (pkgSetting.getHidden(userId) != hidden) {
10703                    pkgSetting.setHidden(hidden, userId);
10704                    mSettings.writePackageRestrictionsLPr(userId);
10705                    if (hidden) {
10706                        sendRemoved = true;
10707                    } else {
10708                        sendAdded = true;
10709                    }
10710                }
10711            }
10712            if (sendAdded) {
10713                sendPackageAddedForUser(packageName, pkgSetting, userId);
10714                return true;
10715            }
10716            if (sendRemoved) {
10717                killApplication(packageName, UserHandle.getUid(userId, pkgSetting.appId),
10718                        "hiding pkg");
10719                sendApplicationHiddenForUser(packageName, pkgSetting, userId);
10720                return true;
10721            }
10722        } finally {
10723            Binder.restoreCallingIdentity(callingId);
10724        }
10725        return false;
10726    }
10727
10728    private void sendApplicationHiddenForUser(String packageName, PackageSetting pkgSetting,
10729            int userId) {
10730        final PackageRemovedInfo info = new PackageRemovedInfo();
10731        info.removedPackage = packageName;
10732        info.removedUsers = new int[] {userId};
10733        info.uid = UserHandle.getUid(userId, pkgSetting.appId);
10734        info.sendPackageRemovedBroadcasts(true /*killApp*/);
10735    }
10736
10737    private void sendPackagesSuspendedForUser(String[] pkgList, int userId, boolean suspended) {
10738        if (pkgList.length > 0) {
10739            Bundle extras = new Bundle(1);
10740            extras.putStringArray(Intent.EXTRA_CHANGED_PACKAGE_LIST, pkgList);
10741
10742            sendPackageBroadcast(
10743                    suspended ? Intent.ACTION_PACKAGES_SUSPENDED
10744                            : Intent.ACTION_PACKAGES_UNSUSPENDED,
10745                    null, extras, Intent.FLAG_RECEIVER_REGISTERED_ONLY, null, null,
10746                    new int[] {userId});
10747        }
10748    }
10749
10750    /**
10751     * Returns true if application is not found or there was an error. Otherwise it returns
10752     * the hidden state of the package for the given user.
10753     */
10754    @Override
10755    public boolean getApplicationHiddenSettingAsUser(String packageName, int userId) {
10756        mContext.enforceCallingOrSelfPermission(android.Manifest.permission.MANAGE_USERS, null);
10757        enforceCrossUserPermission(Binder.getCallingUid(), userId,
10758                true /* requireFullPermission */, false /* checkShell */,
10759                "getApplicationHidden for user " + userId);
10760        PackageSetting pkgSetting;
10761        long callingId = Binder.clearCallingIdentity();
10762        try {
10763            // writer
10764            synchronized (mPackages) {
10765                pkgSetting = mSettings.mPackages.get(packageName);
10766                if (pkgSetting == null) {
10767                    return true;
10768                }
10769                return pkgSetting.getHidden(userId);
10770            }
10771        } finally {
10772            Binder.restoreCallingIdentity(callingId);
10773        }
10774    }
10775
10776    /**
10777     * @hide
10778     */
10779    @Override
10780    public int installExistingPackageAsUser(String packageName, int userId) {
10781        mContext.enforceCallingOrSelfPermission(android.Manifest.permission.INSTALL_PACKAGES,
10782                null);
10783        PackageSetting pkgSetting;
10784        final int uid = Binder.getCallingUid();
10785        enforceCrossUserPermission(uid, userId,
10786                true /* requireFullPermission */, true /* checkShell */,
10787                "installExistingPackage for user " + userId);
10788        if (isUserRestricted(userId, UserManager.DISALLOW_INSTALL_APPS)) {
10789            return PackageManager.INSTALL_FAILED_USER_RESTRICTED;
10790        }
10791
10792        long callingId = Binder.clearCallingIdentity();
10793        try {
10794            boolean installed = false;
10795
10796            // writer
10797            synchronized (mPackages) {
10798                pkgSetting = mSettings.mPackages.get(packageName);
10799                if (pkgSetting == null) {
10800                    return PackageManager.INSTALL_FAILED_INVALID_URI;
10801                }
10802                if (!pkgSetting.getInstalled(userId)) {
10803                    pkgSetting.setInstalled(true, userId);
10804                    pkgSetting.setHidden(false, userId);
10805                    mSettings.writePackageRestrictionsLPr(userId);
10806                    installed = true;
10807                }
10808            }
10809
10810            if (installed) {
10811                if (pkgSetting.pkg != null) {
10812                    prepareAppDataAfterInstall(pkgSetting.pkg);
10813                }
10814                sendPackageAddedForUser(packageName, pkgSetting, userId);
10815            }
10816        } finally {
10817            Binder.restoreCallingIdentity(callingId);
10818        }
10819
10820        return PackageManager.INSTALL_SUCCEEDED;
10821    }
10822
10823    boolean isUserRestricted(int userId, String restrictionKey) {
10824        Bundle restrictions = sUserManager.getUserRestrictions(userId);
10825        if (restrictions.getBoolean(restrictionKey, false)) {
10826            Log.w(TAG, "User is restricted: " + restrictionKey);
10827            return true;
10828        }
10829        return false;
10830    }
10831
10832    @Override
10833    public String[] setPackagesSuspendedAsUser(String[] packageNames, boolean suspended,
10834            int userId) {
10835        mContext.enforceCallingOrSelfPermission(android.Manifest.permission.MANAGE_USERS, null);
10836        enforceCrossUserPermission(Binder.getCallingUid(), userId,
10837                true /* requireFullPermission */, true /* checkShell */,
10838                "setPackagesSuspended for user " + userId);
10839
10840        if (ArrayUtils.isEmpty(packageNames)) {
10841            return packageNames;
10842        }
10843
10844        // List of package names for whom the suspended state has changed.
10845        List<String> changedPackages = new ArrayList<>(packageNames.length);
10846        // List of package names for whom the suspended state is not set as requested in this
10847        // method.
10848        List<String> unactionedPackages = new ArrayList<>(packageNames.length);
10849        for (int i = 0; i < packageNames.length; i++) {
10850            String packageName = packageNames[i];
10851            long callingId = Binder.clearCallingIdentity();
10852            try {
10853                boolean changed = false;
10854                final int appId;
10855                synchronized (mPackages) {
10856                    final PackageSetting pkgSetting = mSettings.mPackages.get(packageName);
10857                    if (pkgSetting == null) {
10858                        Slog.w(TAG, "Could not find package setting for package \"" + packageName
10859                                + "\". Skipping suspending/un-suspending.");
10860                        unactionedPackages.add(packageName);
10861                        continue;
10862                    }
10863                    appId = pkgSetting.appId;
10864                    if (pkgSetting.getSuspended(userId) != suspended) {
10865                        if (!canSuspendPackageForUserLocked(packageName, userId)) {
10866                            unactionedPackages.add(packageName);
10867                            continue;
10868                        }
10869                        pkgSetting.setSuspended(suspended, userId);
10870                        mSettings.writePackageRestrictionsLPr(userId);
10871                        changed = true;
10872                        changedPackages.add(packageName);
10873                    }
10874                }
10875
10876                if (changed && suspended) {
10877                    killApplication(packageName, UserHandle.getUid(userId, appId),
10878                            "suspending package");
10879                }
10880            } finally {
10881                Binder.restoreCallingIdentity(callingId);
10882            }
10883        }
10884
10885        if (!changedPackages.isEmpty()) {
10886            sendPackagesSuspendedForUser(changedPackages.toArray(
10887                    new String[changedPackages.size()]), userId, suspended);
10888        }
10889
10890        return unactionedPackages.toArray(new String[unactionedPackages.size()]);
10891    }
10892
10893    @Override
10894    public boolean isPackageSuspendedForUser(String packageName, int userId) {
10895        enforceCrossUserPermission(Binder.getCallingUid(), userId,
10896                true /* requireFullPermission */, false /* checkShell */,
10897                "isPackageSuspendedForUser for user " + userId);
10898        synchronized (mPackages) {
10899            final PackageSetting pkgSetting = mSettings.mPackages.get(packageName);
10900            return pkgSetting != null && pkgSetting.getSuspended(userId);
10901        }
10902    }
10903
10904    /**
10905     * TODO: cache and disallow blocking the active dialer.
10906     *
10907     * @see also DefaultPermissionGrantPolicy#grantDefaultSystemHandlerPermissions
10908     */
10909    private boolean canSuspendPackageForUserLocked(String packageName, int userId) {
10910        if (isPackageDeviceAdmin(packageName, userId)) {
10911            Slog.w(TAG, "Cannot suspend/un-suspend package \"" + packageName
10912                    + "\": has an active device admin");
10913            return false;
10914        }
10915
10916        String activeLauncherPackageName = getActiveLauncherPackageName(userId);
10917        if (packageName.equals(activeLauncherPackageName)) {
10918            Slog.w(TAG, "Cannot suspend/un-suspend package \"" + packageName
10919                    + "\": contains the active launcher");
10920            return false;
10921        }
10922
10923        if (packageName.equals(mRequiredInstallerPackage)) {
10924            Slog.w(TAG, "Cannot suspend/un-suspend package \"" + packageName
10925                    + "\": required for package installation");
10926            return false;
10927        }
10928
10929        if (packageName.equals(mRequiredVerifierPackage)) {
10930            Slog.w(TAG, "Cannot suspend/un-suspend package \"" + packageName
10931                    + "\": required for package verification");
10932            return false;
10933        }
10934
10935        final PackageParser.Package pkg = mPackages.get(packageName);
10936        if (pkg != null && isPrivilegedApp(pkg)) {
10937            Slog.w(TAG, "Cannot suspend/un-suspend package \"" + packageName
10938                    + "\": is a privileged app");
10939            return false;
10940        }
10941
10942        return true;
10943    }
10944
10945    private String getActiveLauncherPackageName(int userId) {
10946        Intent intent = new Intent(Intent.ACTION_MAIN);
10947        intent.addCategory(Intent.CATEGORY_HOME);
10948        ResolveInfo resolveInfo = resolveIntent(
10949                intent,
10950                intent.resolveTypeIfNeeded(mContext.getContentResolver()),
10951                PackageManager.MATCH_DEFAULT_ONLY,
10952                userId);
10953
10954        return resolveInfo == null ? null : resolveInfo.activityInfo.packageName;
10955    }
10956
10957    @Override
10958    public void verifyPendingInstall(int id, int verificationCode) throws RemoteException {
10959        mContext.enforceCallingOrSelfPermission(
10960                android.Manifest.permission.PACKAGE_VERIFICATION_AGENT,
10961                "Only package verification agents can verify applications");
10962
10963        final Message msg = mHandler.obtainMessage(PACKAGE_VERIFIED);
10964        final PackageVerificationResponse response = new PackageVerificationResponse(
10965                verificationCode, Binder.getCallingUid());
10966        msg.arg1 = id;
10967        msg.obj = response;
10968        mHandler.sendMessage(msg);
10969    }
10970
10971    @Override
10972    public void extendVerificationTimeout(int id, int verificationCodeAtTimeout,
10973            long millisecondsToDelay) {
10974        mContext.enforceCallingOrSelfPermission(
10975                android.Manifest.permission.PACKAGE_VERIFICATION_AGENT,
10976                "Only package verification agents can extend verification timeouts");
10977
10978        final PackageVerificationState state = mPendingVerification.get(id);
10979        final PackageVerificationResponse response = new PackageVerificationResponse(
10980                verificationCodeAtTimeout, Binder.getCallingUid());
10981
10982        if (millisecondsToDelay > PackageManager.MAXIMUM_VERIFICATION_TIMEOUT) {
10983            millisecondsToDelay = PackageManager.MAXIMUM_VERIFICATION_TIMEOUT;
10984        }
10985        if (millisecondsToDelay < 0) {
10986            millisecondsToDelay = 0;
10987        }
10988        if ((verificationCodeAtTimeout != PackageManager.VERIFICATION_ALLOW)
10989                && (verificationCodeAtTimeout != PackageManager.VERIFICATION_REJECT)) {
10990            verificationCodeAtTimeout = PackageManager.VERIFICATION_REJECT;
10991        }
10992
10993        if ((state != null) && !state.timeoutExtended()) {
10994            state.extendTimeout();
10995
10996            final Message msg = mHandler.obtainMessage(PACKAGE_VERIFIED);
10997            msg.arg1 = id;
10998            msg.obj = response;
10999            mHandler.sendMessageDelayed(msg, millisecondsToDelay);
11000        }
11001    }
11002
11003    private void broadcastPackageVerified(int verificationId, Uri packageUri,
11004            int verificationCode, UserHandle user) {
11005        final Intent intent = new Intent(Intent.ACTION_PACKAGE_VERIFIED);
11006        intent.setDataAndType(packageUri, PACKAGE_MIME_TYPE);
11007        intent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
11008        intent.putExtra(PackageManager.EXTRA_VERIFICATION_ID, verificationId);
11009        intent.putExtra(PackageManager.EXTRA_VERIFICATION_RESULT, verificationCode);
11010
11011        mContext.sendBroadcastAsUser(intent, user,
11012                android.Manifest.permission.PACKAGE_VERIFICATION_AGENT);
11013    }
11014
11015    private ComponentName matchComponentForVerifier(String packageName,
11016            List<ResolveInfo> receivers) {
11017        ActivityInfo targetReceiver = null;
11018
11019        final int NR = receivers.size();
11020        for (int i = 0; i < NR; i++) {
11021            final ResolveInfo info = receivers.get(i);
11022            if (info.activityInfo == null) {
11023                continue;
11024            }
11025
11026            if (packageName.equals(info.activityInfo.packageName)) {
11027                targetReceiver = info.activityInfo;
11028                break;
11029            }
11030        }
11031
11032        if (targetReceiver == null) {
11033            return null;
11034        }
11035
11036        return new ComponentName(targetReceiver.packageName, targetReceiver.name);
11037    }
11038
11039    private List<ComponentName> matchVerifiers(PackageInfoLite pkgInfo,
11040            List<ResolveInfo> receivers, final PackageVerificationState verificationState) {
11041        if (pkgInfo.verifiers.length == 0) {
11042            return null;
11043        }
11044
11045        final int N = pkgInfo.verifiers.length;
11046        final List<ComponentName> sufficientVerifiers = new ArrayList<ComponentName>(N + 1);
11047        for (int i = 0; i < N; i++) {
11048            final VerifierInfo verifierInfo = pkgInfo.verifiers[i];
11049
11050            final ComponentName comp = matchComponentForVerifier(verifierInfo.packageName,
11051                    receivers);
11052            if (comp == null) {
11053                continue;
11054            }
11055
11056            final int verifierUid = getUidForVerifier(verifierInfo);
11057            if (verifierUid == -1) {
11058                continue;
11059            }
11060
11061            if (DEBUG_VERIFY) {
11062                Slog.d(TAG, "Added sufficient verifier " + verifierInfo.packageName
11063                        + " with the correct signature");
11064            }
11065            sufficientVerifiers.add(comp);
11066            verificationState.addSufficientVerifier(verifierUid);
11067        }
11068
11069        return sufficientVerifiers;
11070    }
11071
11072    private int getUidForVerifier(VerifierInfo verifierInfo) {
11073        synchronized (mPackages) {
11074            final PackageParser.Package pkg = mPackages.get(verifierInfo.packageName);
11075            if (pkg == null) {
11076                return -1;
11077            } else if (pkg.mSignatures.length != 1) {
11078                Slog.i(TAG, "Verifier package " + verifierInfo.packageName
11079                        + " has more than one signature; ignoring");
11080                return -1;
11081            }
11082
11083            /*
11084             * If the public key of the package's signature does not match
11085             * our expected public key, then this is a different package and
11086             * we should skip.
11087             */
11088
11089            final byte[] expectedPublicKey;
11090            try {
11091                final Signature verifierSig = pkg.mSignatures[0];
11092                final PublicKey publicKey = verifierSig.getPublicKey();
11093                expectedPublicKey = publicKey.getEncoded();
11094            } catch (CertificateException e) {
11095                return -1;
11096            }
11097
11098            final byte[] actualPublicKey = verifierInfo.publicKey.getEncoded();
11099
11100            if (!Arrays.equals(actualPublicKey, expectedPublicKey)) {
11101                Slog.i(TAG, "Verifier package " + verifierInfo.packageName
11102                        + " does not have the expected public key; ignoring");
11103                return -1;
11104            }
11105
11106            return pkg.applicationInfo.uid;
11107        }
11108    }
11109
11110    @Override
11111    public void finishPackageInstall(int token) {
11112        enforceSystemOrRoot("Only the system is allowed to finish installs");
11113
11114        if (DEBUG_INSTALL) {
11115            Slog.v(TAG, "BM finishing package install for " + token);
11116        }
11117        Trace.asyncTraceEnd(TRACE_TAG_PACKAGE_MANAGER, "restore", token);
11118
11119        final Message msg = mHandler.obtainMessage(POST_INSTALL, token, 0);
11120        mHandler.sendMessage(msg);
11121    }
11122
11123    /**
11124     * Get the verification agent timeout.
11125     *
11126     * @return verification timeout in milliseconds
11127     */
11128    private long getVerificationTimeout() {
11129        return android.provider.Settings.Global.getLong(mContext.getContentResolver(),
11130                android.provider.Settings.Global.PACKAGE_VERIFIER_TIMEOUT,
11131                DEFAULT_VERIFICATION_TIMEOUT);
11132    }
11133
11134    /**
11135     * Get the default verification agent response code.
11136     *
11137     * @return default verification response code
11138     */
11139    private int getDefaultVerificationResponse() {
11140        return android.provider.Settings.Global.getInt(mContext.getContentResolver(),
11141                android.provider.Settings.Global.PACKAGE_VERIFIER_DEFAULT_RESPONSE,
11142                DEFAULT_VERIFICATION_RESPONSE);
11143    }
11144
11145    /**
11146     * Check whether or not package verification has been enabled.
11147     *
11148     * @return true if verification should be performed
11149     */
11150    private boolean isVerificationEnabled(int userId, int installFlags) {
11151        if (!DEFAULT_VERIFY_ENABLE) {
11152            return false;
11153        }
11154        // Ephemeral apps don't get the full verification treatment
11155        if ((installFlags & PackageManager.INSTALL_EPHEMERAL) != 0) {
11156            if (DEBUG_EPHEMERAL) {
11157                Slog.d(TAG, "INSTALL_EPHEMERAL so skipping verification");
11158            }
11159            return false;
11160        }
11161
11162        boolean ensureVerifyAppsEnabled = isUserRestricted(userId, UserManager.ENSURE_VERIFY_APPS);
11163
11164        // Check if installing from ADB
11165        if ((installFlags & PackageManager.INSTALL_FROM_ADB) != 0) {
11166            // Do not run verification in a test harness environment
11167            if (ActivityManager.isRunningInTestHarness()) {
11168                return false;
11169            }
11170            if (ensureVerifyAppsEnabled) {
11171                return true;
11172            }
11173            // Check if the developer does not want package verification for ADB installs
11174            if (android.provider.Settings.Global.getInt(mContext.getContentResolver(),
11175                    android.provider.Settings.Global.PACKAGE_VERIFIER_INCLUDE_ADB, 1) == 0) {
11176                return false;
11177            }
11178        }
11179
11180        if (ensureVerifyAppsEnabled) {
11181            return true;
11182        }
11183
11184        return android.provider.Settings.Global.getInt(mContext.getContentResolver(),
11185                android.provider.Settings.Global.PACKAGE_VERIFIER_ENABLE, 1) == 1;
11186    }
11187
11188    @Override
11189    public void verifyIntentFilter(int id, int verificationCode, List<String> failedDomains)
11190            throws RemoteException {
11191        mContext.enforceCallingOrSelfPermission(
11192                Manifest.permission.INTENT_FILTER_VERIFICATION_AGENT,
11193                "Only intentfilter verification agents can verify applications");
11194
11195        final Message msg = mHandler.obtainMessage(INTENT_FILTER_VERIFIED);
11196        final IntentFilterVerificationResponse response = new IntentFilterVerificationResponse(
11197                Binder.getCallingUid(), verificationCode, failedDomains);
11198        msg.arg1 = id;
11199        msg.obj = response;
11200        mHandler.sendMessage(msg);
11201    }
11202
11203    @Override
11204    public int getIntentVerificationStatus(String packageName, int userId) {
11205        synchronized (mPackages) {
11206            return mSettings.getIntentFilterVerificationStatusLPr(packageName, userId);
11207        }
11208    }
11209
11210    @Override
11211    public boolean updateIntentVerificationStatus(String packageName, int status, int userId) {
11212        mContext.enforceCallingOrSelfPermission(
11213                android.Manifest.permission.SET_PREFERRED_APPLICATIONS, null);
11214
11215        boolean result = false;
11216        synchronized (mPackages) {
11217            result = mSettings.updateIntentFilterVerificationStatusLPw(packageName, status, userId);
11218        }
11219        if (result) {
11220            scheduleWritePackageRestrictionsLocked(userId);
11221        }
11222        return result;
11223    }
11224
11225    @Override
11226    public @NonNull ParceledListSlice<IntentFilterVerificationInfo> getIntentFilterVerifications(
11227            String packageName) {
11228        synchronized (mPackages) {
11229            return new ParceledListSlice<>(mSettings.getIntentFilterVerificationsLPr(packageName));
11230        }
11231    }
11232
11233    @Override
11234    public @NonNull ParceledListSlice<IntentFilter> getAllIntentFilters(String packageName) {
11235        if (TextUtils.isEmpty(packageName)) {
11236            return ParceledListSlice.emptyList();
11237        }
11238        synchronized (mPackages) {
11239            PackageParser.Package pkg = mPackages.get(packageName);
11240            if (pkg == null || pkg.activities == null) {
11241                return ParceledListSlice.emptyList();
11242            }
11243            final int count = pkg.activities.size();
11244            ArrayList<IntentFilter> result = new ArrayList<>();
11245            for (int n=0; n<count; n++) {
11246                PackageParser.Activity activity = pkg.activities.get(n);
11247                if (activity.intents != null && activity.intents.size() > 0) {
11248                    result.addAll(activity.intents);
11249                }
11250            }
11251            return new ParceledListSlice<>(result);
11252        }
11253    }
11254
11255    @Override
11256    public boolean setDefaultBrowserPackageName(String packageName, int userId) {
11257        mContext.enforceCallingOrSelfPermission(
11258                android.Manifest.permission.SET_PREFERRED_APPLICATIONS, null);
11259
11260        synchronized (mPackages) {
11261            boolean result = mSettings.setDefaultBrowserPackageNameLPw(packageName, userId);
11262            if (packageName != null) {
11263                result |= updateIntentVerificationStatus(packageName,
11264                        PackageManager.INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_ALWAYS,
11265                        userId);
11266                mDefaultPermissionPolicy.grantDefaultPermissionsToDefaultBrowserLPr(
11267                        packageName, userId);
11268            }
11269            return result;
11270        }
11271    }
11272
11273    @Override
11274    public String getDefaultBrowserPackageName(int userId) {
11275        synchronized (mPackages) {
11276            return mSettings.getDefaultBrowserPackageNameLPw(userId);
11277        }
11278    }
11279
11280    /**
11281     * Get the "allow unknown sources" setting.
11282     *
11283     * @return the current "allow unknown sources" setting
11284     */
11285    private int getUnknownSourcesSettings() {
11286        return android.provider.Settings.Global.getInt(mContext.getContentResolver(),
11287                android.provider.Settings.Global.INSTALL_NON_MARKET_APPS,
11288                -1);
11289    }
11290
11291    @Override
11292    public void setInstallerPackageName(String targetPackage, String installerPackageName) {
11293        final int uid = Binder.getCallingUid();
11294        // writer
11295        synchronized (mPackages) {
11296            PackageSetting targetPackageSetting = mSettings.mPackages.get(targetPackage);
11297            if (targetPackageSetting == null) {
11298                throw new IllegalArgumentException("Unknown target package: " + targetPackage);
11299            }
11300
11301            PackageSetting installerPackageSetting;
11302            if (installerPackageName != null) {
11303                installerPackageSetting = mSettings.mPackages.get(installerPackageName);
11304                if (installerPackageSetting == null) {
11305                    throw new IllegalArgumentException("Unknown installer package: "
11306                            + installerPackageName);
11307                }
11308            } else {
11309                installerPackageSetting = null;
11310            }
11311
11312            Signature[] callerSignature;
11313            Object obj = mSettings.getUserIdLPr(uid);
11314            if (obj != null) {
11315                if (obj instanceof SharedUserSetting) {
11316                    callerSignature = ((SharedUserSetting)obj).signatures.mSignatures;
11317                } else if (obj instanceof PackageSetting) {
11318                    callerSignature = ((PackageSetting)obj).signatures.mSignatures;
11319                } else {
11320                    throw new SecurityException("Bad object " + obj + " for uid " + uid);
11321                }
11322            } else {
11323                throw new SecurityException("Unknown calling UID: " + uid);
11324            }
11325
11326            // Verify: can't set installerPackageName to a package that is
11327            // not signed with the same cert as the caller.
11328            if (installerPackageSetting != null) {
11329                if (compareSignatures(callerSignature,
11330                        installerPackageSetting.signatures.mSignatures)
11331                        != PackageManager.SIGNATURE_MATCH) {
11332                    throw new SecurityException(
11333                            "Caller does not have same cert as new installer package "
11334                            + installerPackageName);
11335                }
11336            }
11337
11338            // Verify: if target already has an installer package, it must
11339            // be signed with the same cert as the caller.
11340            if (targetPackageSetting.installerPackageName != null) {
11341                PackageSetting setting = mSettings.mPackages.get(
11342                        targetPackageSetting.installerPackageName);
11343                // If the currently set package isn't valid, then it's always
11344                // okay to change it.
11345                if (setting != null) {
11346                    if (compareSignatures(callerSignature,
11347                            setting.signatures.mSignatures)
11348                            != PackageManager.SIGNATURE_MATCH) {
11349                        throw new SecurityException(
11350                                "Caller does not have same cert as old installer package "
11351                                + targetPackageSetting.installerPackageName);
11352                    }
11353                }
11354            }
11355
11356            // Okay!
11357            targetPackageSetting.installerPackageName = installerPackageName;
11358            scheduleWriteSettingsLocked();
11359        }
11360    }
11361
11362    private void processPendingInstall(final InstallArgs args, final int currentStatus) {
11363        // Queue up an async operation since the package installation may take a little while.
11364        mHandler.post(new Runnable() {
11365            public void run() {
11366                mHandler.removeCallbacks(this);
11367                 // Result object to be returned
11368                PackageInstalledInfo res = new PackageInstalledInfo();
11369                res.setReturnCode(currentStatus);
11370                res.uid = -1;
11371                res.pkg = null;
11372                res.removedInfo = null;
11373                if (res.returnCode == PackageManager.INSTALL_SUCCEEDED) {
11374                    args.doPreInstall(res.returnCode);
11375                    synchronized (mInstallLock) {
11376                        installPackageTracedLI(args, res);
11377                    }
11378                    args.doPostInstall(res.returnCode, res.uid);
11379                }
11380
11381                // A restore should be performed at this point if (a) the install
11382                // succeeded, (b) the operation is not an update, and (c) the new
11383                // package has not opted out of backup participation.
11384                final boolean update = res.removedInfo != null
11385                        && res.removedInfo.removedPackage != null;
11386                final int flags = (res.pkg == null) ? 0 : res.pkg.applicationInfo.flags;
11387                boolean doRestore = !update
11388                        && ((flags & ApplicationInfo.FLAG_ALLOW_BACKUP) != 0);
11389
11390                // Set up the post-install work request bookkeeping.  This will be used
11391                // and cleaned up by the post-install event handling regardless of whether
11392                // there's a restore pass performed.  Token values are >= 1.
11393                int token;
11394                if (mNextInstallToken < 0) mNextInstallToken = 1;
11395                token = mNextInstallToken++;
11396
11397                PostInstallData data = new PostInstallData(args, res);
11398                mRunningInstalls.put(token, data);
11399                if (DEBUG_INSTALL) Log.v(TAG, "+ starting restore round-trip " + token);
11400
11401                if (res.returnCode == PackageManager.INSTALL_SUCCEEDED && doRestore) {
11402                    // Pass responsibility to the Backup Manager.  It will perform a
11403                    // restore if appropriate, then pass responsibility back to the
11404                    // Package Manager to run the post-install observer callbacks
11405                    // and broadcasts.
11406                    IBackupManager bm = IBackupManager.Stub.asInterface(
11407                            ServiceManager.getService(Context.BACKUP_SERVICE));
11408                    if (bm != null) {
11409                        if (DEBUG_INSTALL) Log.v(TAG, "token " + token
11410                                + " to BM for possible restore");
11411                        Trace.asyncTraceBegin(TRACE_TAG_PACKAGE_MANAGER, "restore", token);
11412                        try {
11413                            // TODO: http://b/22388012
11414                            if (bm.isBackupServiceActive(UserHandle.USER_SYSTEM)) {
11415                                bm.restoreAtInstall(res.pkg.applicationInfo.packageName, token);
11416                            } else {
11417                                doRestore = false;
11418                            }
11419                        } catch (RemoteException e) {
11420                            // can't happen; the backup manager is local
11421                        } catch (Exception e) {
11422                            Slog.e(TAG, "Exception trying to enqueue restore", e);
11423                            doRestore = false;
11424                        }
11425                    } else {
11426                        Slog.e(TAG, "Backup Manager not found!");
11427                        doRestore = false;
11428                    }
11429                }
11430
11431                if (!doRestore) {
11432                    // No restore possible, or the Backup Manager was mysteriously not
11433                    // available -- just fire the post-install work request directly.
11434                    if (DEBUG_INSTALL) Log.v(TAG, "No restore - queue post-install for " + token);
11435
11436                    Trace.asyncTraceBegin(TRACE_TAG_PACKAGE_MANAGER, "postInstall", token);
11437
11438                    Message msg = mHandler.obtainMessage(POST_INSTALL, token, 0);
11439                    mHandler.sendMessage(msg);
11440                }
11441            }
11442        });
11443    }
11444
11445    private abstract class HandlerParams {
11446        private static final int MAX_RETRIES = 4;
11447
11448        /**
11449         * Number of times startCopy() has been attempted and had a non-fatal
11450         * error.
11451         */
11452        private int mRetries = 0;
11453
11454        /** User handle for the user requesting the information or installation. */
11455        private final UserHandle mUser;
11456        String traceMethod;
11457        int traceCookie;
11458
11459        HandlerParams(UserHandle user) {
11460            mUser = user;
11461        }
11462
11463        UserHandle getUser() {
11464            return mUser;
11465        }
11466
11467        HandlerParams setTraceMethod(String traceMethod) {
11468            this.traceMethod = traceMethod;
11469            return this;
11470        }
11471
11472        HandlerParams setTraceCookie(int traceCookie) {
11473            this.traceCookie = traceCookie;
11474            return this;
11475        }
11476
11477        final boolean startCopy() {
11478            boolean res;
11479            try {
11480                if (DEBUG_INSTALL) Slog.i(TAG, "startCopy " + mUser + ": " + this);
11481
11482                if (++mRetries > MAX_RETRIES) {
11483                    Slog.w(TAG, "Failed to invoke remote methods on default container service. Giving up");
11484                    mHandler.sendEmptyMessage(MCS_GIVE_UP);
11485                    handleServiceError();
11486                    return false;
11487                } else {
11488                    handleStartCopy();
11489                    res = true;
11490                }
11491            } catch (RemoteException e) {
11492                if (DEBUG_INSTALL) Slog.i(TAG, "Posting install MCS_RECONNECT");
11493                mHandler.sendEmptyMessage(MCS_RECONNECT);
11494                res = false;
11495            }
11496            handleReturnCode();
11497            return res;
11498        }
11499
11500        final void serviceError() {
11501            if (DEBUG_INSTALL) Slog.i(TAG, "serviceError");
11502            handleServiceError();
11503            handleReturnCode();
11504        }
11505
11506        abstract void handleStartCopy() throws RemoteException;
11507        abstract void handleServiceError();
11508        abstract void handleReturnCode();
11509    }
11510
11511    class MeasureParams extends HandlerParams {
11512        private final PackageStats mStats;
11513        private boolean mSuccess;
11514
11515        private final IPackageStatsObserver mObserver;
11516
11517        public MeasureParams(PackageStats stats, IPackageStatsObserver observer) {
11518            super(new UserHandle(stats.userHandle));
11519            mObserver = observer;
11520            mStats = stats;
11521        }
11522
11523        @Override
11524        public String toString() {
11525            return "MeasureParams{"
11526                + Integer.toHexString(System.identityHashCode(this))
11527                + " " + mStats.packageName + "}";
11528        }
11529
11530        @Override
11531        void handleStartCopy() throws RemoteException {
11532            synchronized (mInstallLock) {
11533                mSuccess = getPackageSizeInfoLI(mStats.packageName, mStats.userHandle, mStats);
11534            }
11535
11536            if (mSuccess) {
11537                final boolean mounted;
11538                if (Environment.isExternalStorageEmulated()) {
11539                    mounted = true;
11540                } else {
11541                    final String status = Environment.getExternalStorageState();
11542                    mounted = (Environment.MEDIA_MOUNTED.equals(status)
11543                            || Environment.MEDIA_MOUNTED_READ_ONLY.equals(status));
11544                }
11545
11546                if (mounted) {
11547                    final UserEnvironment userEnv = new UserEnvironment(mStats.userHandle);
11548
11549                    mStats.externalCacheSize = calculateDirectorySize(mContainerService,
11550                            userEnv.buildExternalStorageAppCacheDirs(mStats.packageName));
11551
11552                    mStats.externalDataSize = calculateDirectorySize(mContainerService,
11553                            userEnv.buildExternalStorageAppDataDirs(mStats.packageName));
11554
11555                    // Always subtract cache size, since it's a subdirectory
11556                    mStats.externalDataSize -= mStats.externalCacheSize;
11557
11558                    mStats.externalMediaSize = calculateDirectorySize(mContainerService,
11559                            userEnv.buildExternalStorageAppMediaDirs(mStats.packageName));
11560
11561                    mStats.externalObbSize = calculateDirectorySize(mContainerService,
11562                            userEnv.buildExternalStorageAppObbDirs(mStats.packageName));
11563                }
11564            }
11565        }
11566
11567        @Override
11568        void handleReturnCode() {
11569            if (mObserver != null) {
11570                try {
11571                    mObserver.onGetStatsCompleted(mStats, mSuccess);
11572                } catch (RemoteException e) {
11573                    Slog.i(TAG, "Observer no longer exists.");
11574                }
11575            }
11576        }
11577
11578        @Override
11579        void handleServiceError() {
11580            Slog.e(TAG, "Could not measure application " + mStats.packageName
11581                            + " external storage");
11582        }
11583    }
11584
11585    private static long calculateDirectorySize(IMediaContainerService mcs, File[] paths)
11586            throws RemoteException {
11587        long result = 0;
11588        for (File path : paths) {
11589            result += mcs.calculateDirectorySize(path.getAbsolutePath());
11590        }
11591        return result;
11592    }
11593
11594    private static void clearDirectory(IMediaContainerService mcs, File[] paths) {
11595        for (File path : paths) {
11596            try {
11597                mcs.clearDirectory(path.getAbsolutePath());
11598            } catch (RemoteException e) {
11599            }
11600        }
11601    }
11602
11603    static class OriginInfo {
11604        /**
11605         * Location where install is coming from, before it has been
11606         * copied/renamed into place. This could be a single monolithic APK
11607         * file, or a cluster directory. This location may be untrusted.
11608         */
11609        final File file;
11610        final String cid;
11611
11612        /**
11613         * Flag indicating that {@link #file} or {@link #cid} has already been
11614         * staged, meaning downstream users don't need to defensively copy the
11615         * contents.
11616         */
11617        final boolean staged;
11618
11619        /**
11620         * Flag indicating that {@link #file} or {@link #cid} is an already
11621         * installed app that is being moved.
11622         */
11623        final boolean existing;
11624
11625        final String resolvedPath;
11626        final File resolvedFile;
11627
11628        static OriginInfo fromNothing() {
11629            return new OriginInfo(null, null, false, false);
11630        }
11631
11632        static OriginInfo fromUntrustedFile(File file) {
11633            return new OriginInfo(file, null, false, false);
11634        }
11635
11636        static OriginInfo fromExistingFile(File file) {
11637            return new OriginInfo(file, null, false, true);
11638        }
11639
11640        static OriginInfo fromStagedFile(File file) {
11641            return new OriginInfo(file, null, true, false);
11642        }
11643
11644        static OriginInfo fromStagedContainer(String cid) {
11645            return new OriginInfo(null, cid, true, false);
11646        }
11647
11648        private OriginInfo(File file, String cid, boolean staged, boolean existing) {
11649            this.file = file;
11650            this.cid = cid;
11651            this.staged = staged;
11652            this.existing = existing;
11653
11654            if (cid != null) {
11655                resolvedPath = PackageHelper.getSdDir(cid);
11656                resolvedFile = new File(resolvedPath);
11657            } else if (file != null) {
11658                resolvedPath = file.getAbsolutePath();
11659                resolvedFile = file;
11660            } else {
11661                resolvedPath = null;
11662                resolvedFile = null;
11663            }
11664        }
11665    }
11666
11667    static class MoveInfo {
11668        final int moveId;
11669        final String fromUuid;
11670        final String toUuid;
11671        final String packageName;
11672        final String dataAppName;
11673        final int appId;
11674        final String seinfo;
11675        final int targetSdkVersion;
11676
11677        public MoveInfo(int moveId, String fromUuid, String toUuid, String packageName,
11678                String dataAppName, int appId, String seinfo, int targetSdkVersion) {
11679            this.moveId = moveId;
11680            this.fromUuid = fromUuid;
11681            this.toUuid = toUuid;
11682            this.packageName = packageName;
11683            this.dataAppName = dataAppName;
11684            this.appId = appId;
11685            this.seinfo = seinfo;
11686            this.targetSdkVersion = targetSdkVersion;
11687        }
11688    }
11689
11690    static class VerificationInfo {
11691        /** A constant used to indicate that a uid value is not present. */
11692        public static final int NO_UID = -1;
11693
11694        /** URI referencing where the package was downloaded from. */
11695        final Uri originatingUri;
11696
11697        /** HTTP referrer URI associated with the originatingURI. */
11698        final Uri referrer;
11699
11700        /** UID of the application that the install request originated from. */
11701        final int originatingUid;
11702
11703        /** UID of application requesting the install */
11704        final int installerUid;
11705
11706        VerificationInfo(Uri originatingUri, Uri referrer, int originatingUid, int installerUid) {
11707            this.originatingUri = originatingUri;
11708            this.referrer = referrer;
11709            this.originatingUid = originatingUid;
11710            this.installerUid = installerUid;
11711        }
11712    }
11713
11714    class InstallParams extends HandlerParams {
11715        final OriginInfo origin;
11716        final MoveInfo move;
11717        final IPackageInstallObserver2 observer;
11718        int installFlags;
11719        final String installerPackageName;
11720        final String volumeUuid;
11721        private InstallArgs mArgs;
11722        private int mRet;
11723        final String packageAbiOverride;
11724        final String[] grantedRuntimePermissions;
11725        final VerificationInfo verificationInfo;
11726
11727        InstallParams(OriginInfo origin, MoveInfo move, IPackageInstallObserver2 observer,
11728                int installFlags, String installerPackageName, String volumeUuid,
11729                VerificationInfo verificationInfo, UserHandle user, String packageAbiOverride,
11730                String[] grantedPermissions) {
11731            super(user);
11732            this.origin = origin;
11733            this.move = move;
11734            this.observer = observer;
11735            this.installFlags = installFlags;
11736            this.installerPackageName = installerPackageName;
11737            this.volumeUuid = volumeUuid;
11738            this.verificationInfo = verificationInfo;
11739            this.packageAbiOverride = packageAbiOverride;
11740            this.grantedRuntimePermissions = grantedPermissions;
11741        }
11742
11743        @Override
11744        public String toString() {
11745            return "InstallParams{" + Integer.toHexString(System.identityHashCode(this))
11746                    + " file=" + origin.file + " cid=" + origin.cid + "}";
11747        }
11748
11749        private int installLocationPolicy(PackageInfoLite pkgLite) {
11750            String packageName = pkgLite.packageName;
11751            int installLocation = pkgLite.installLocation;
11752            boolean onSd = (installFlags & PackageManager.INSTALL_EXTERNAL) != 0;
11753            // reader
11754            synchronized (mPackages) {
11755                // Currently installed package which the new package is attempting to replace or
11756                // null if no such package is installed.
11757                PackageParser.Package installedPkg = mPackages.get(packageName);
11758                // Package which currently owns the data which the new package will own if installed.
11759                // If an app is unstalled while keeping data (e.g., adb uninstall -k), installedPkg
11760                // will be null whereas dataOwnerPkg will contain information about the package
11761                // which was uninstalled while keeping its data.
11762                PackageParser.Package dataOwnerPkg = installedPkg;
11763                if (dataOwnerPkg  == null) {
11764                    PackageSetting ps = mSettings.mPackages.get(packageName);
11765                    if (ps != null) {
11766                        dataOwnerPkg = ps.pkg;
11767                    }
11768                }
11769
11770                if (dataOwnerPkg != null) {
11771                    // If installed, the package will get access to data left on the device by its
11772                    // predecessor. As a security measure, this is permited only if this is not a
11773                    // version downgrade or if the predecessor package is marked as debuggable and
11774                    // a downgrade is explicitly requested.
11775                    if (((dataOwnerPkg.applicationInfo.flags & ApplicationInfo.FLAG_DEBUGGABLE) == 0)
11776                            || ((installFlags & PackageManager.INSTALL_ALLOW_DOWNGRADE) == 0)) {
11777                        try {
11778                            checkDowngrade(dataOwnerPkg, pkgLite);
11779                        } catch (PackageManagerException e) {
11780                            Slog.w(TAG, "Downgrade detected: " + e.getMessage());
11781                            return PackageHelper.RECOMMEND_FAILED_VERSION_DOWNGRADE;
11782                        }
11783                    }
11784                }
11785
11786                if (installedPkg != null) {
11787                    if ((installFlags & PackageManager.INSTALL_REPLACE_EXISTING) != 0) {
11788                        // Check for updated system application.
11789                        if ((installedPkg.applicationInfo.flags & ApplicationInfo.FLAG_SYSTEM) != 0) {
11790                            if (onSd) {
11791                                Slog.w(TAG, "Cannot install update to system app on sdcard");
11792                                return PackageHelper.RECOMMEND_FAILED_INVALID_LOCATION;
11793                            }
11794                            return PackageHelper.RECOMMEND_INSTALL_INTERNAL;
11795                        } else {
11796                            if (onSd) {
11797                                // Install flag overrides everything.
11798                                return PackageHelper.RECOMMEND_INSTALL_EXTERNAL;
11799                            }
11800                            // If current upgrade specifies particular preference
11801                            if (installLocation == PackageInfo.INSTALL_LOCATION_INTERNAL_ONLY) {
11802                                // Application explicitly specified internal.
11803                                return PackageHelper.RECOMMEND_INSTALL_INTERNAL;
11804                            } else if (installLocation == PackageInfo.INSTALL_LOCATION_PREFER_EXTERNAL) {
11805                                // App explictly prefers external. Let policy decide
11806                            } else {
11807                                // Prefer previous location
11808                                if (isExternal(installedPkg)) {
11809                                    return PackageHelper.RECOMMEND_INSTALL_EXTERNAL;
11810                                }
11811                                return PackageHelper.RECOMMEND_INSTALL_INTERNAL;
11812                            }
11813                        }
11814                    } else {
11815                        // Invalid install. Return error code
11816                        return PackageHelper.RECOMMEND_FAILED_ALREADY_EXISTS;
11817                    }
11818                }
11819            }
11820            // All the special cases have been taken care of.
11821            // Return result based on recommended install location.
11822            if (onSd) {
11823                return PackageHelper.RECOMMEND_INSTALL_EXTERNAL;
11824            }
11825            return pkgLite.recommendedInstallLocation;
11826        }
11827
11828        /*
11829         * Invoke remote method to get package information and install
11830         * location values. Override install location based on default
11831         * policy if needed and then create install arguments based
11832         * on the install location.
11833         */
11834        public void handleStartCopy() throws RemoteException {
11835            int ret = PackageManager.INSTALL_SUCCEEDED;
11836
11837            // If we're already staged, we've firmly committed to an install location
11838            if (origin.staged) {
11839                if (origin.file != null) {
11840                    installFlags |= PackageManager.INSTALL_INTERNAL;
11841                    installFlags &= ~PackageManager.INSTALL_EXTERNAL;
11842                } else if (origin.cid != null) {
11843                    installFlags |= PackageManager.INSTALL_EXTERNAL;
11844                    installFlags &= ~PackageManager.INSTALL_INTERNAL;
11845                } else {
11846                    throw new IllegalStateException("Invalid stage location");
11847                }
11848            }
11849
11850            final boolean onSd = (installFlags & PackageManager.INSTALL_EXTERNAL) != 0;
11851            final boolean onInt = (installFlags & PackageManager.INSTALL_INTERNAL) != 0;
11852            final boolean ephemeral = (installFlags & PackageManager.INSTALL_EPHEMERAL) != 0;
11853            PackageInfoLite pkgLite = null;
11854
11855            if (onInt && onSd) {
11856                // Check if both bits are set.
11857                Slog.w(TAG, "Conflicting flags specified for installing on both internal and external");
11858                ret = PackageManager.INSTALL_FAILED_INVALID_INSTALL_LOCATION;
11859            } else if (onSd && ephemeral) {
11860                Slog.w(TAG,  "Conflicting flags specified for installing ephemeral on external");
11861                ret = PackageManager.INSTALL_FAILED_INVALID_INSTALL_LOCATION;
11862            } else {
11863                pkgLite = mContainerService.getMinimalPackageInfo(origin.resolvedPath, installFlags,
11864                        packageAbiOverride);
11865
11866                if (DEBUG_EPHEMERAL && ephemeral) {
11867                    Slog.v(TAG, "pkgLite for install: " + pkgLite);
11868                }
11869
11870                /*
11871                 * If we have too little free space, try to free cache
11872                 * before giving up.
11873                 */
11874                if (!origin.staged && pkgLite.recommendedInstallLocation
11875                        == PackageHelper.RECOMMEND_FAILED_INSUFFICIENT_STORAGE) {
11876                    // TODO: focus freeing disk space on the target device
11877                    final StorageManager storage = StorageManager.from(mContext);
11878                    final long lowThreshold = storage.getStorageLowBytes(
11879                            Environment.getDataDirectory());
11880
11881                    final long sizeBytes = mContainerService.calculateInstalledSize(
11882                            origin.resolvedPath, isForwardLocked(), packageAbiOverride);
11883
11884                    try {
11885                        mInstaller.freeCache(null, sizeBytes + lowThreshold);
11886                        pkgLite = mContainerService.getMinimalPackageInfo(origin.resolvedPath,
11887                                installFlags, packageAbiOverride);
11888                    } catch (InstallerException e) {
11889                        Slog.w(TAG, "Failed to free cache", e);
11890                    }
11891
11892                    /*
11893                     * The cache free must have deleted the file we
11894                     * downloaded to install.
11895                     *
11896                     * TODO: fix the "freeCache" call to not delete
11897                     *       the file we care about.
11898                     */
11899                    if (pkgLite.recommendedInstallLocation
11900                            == PackageHelper.RECOMMEND_FAILED_INVALID_URI) {
11901                        pkgLite.recommendedInstallLocation
11902                            = PackageHelper.RECOMMEND_FAILED_INSUFFICIENT_STORAGE;
11903                    }
11904                }
11905            }
11906
11907            if (ret == PackageManager.INSTALL_SUCCEEDED) {
11908                int loc = pkgLite.recommendedInstallLocation;
11909                if (loc == PackageHelper.RECOMMEND_FAILED_INVALID_LOCATION) {
11910                    ret = PackageManager.INSTALL_FAILED_INVALID_INSTALL_LOCATION;
11911                } else if (loc == PackageHelper.RECOMMEND_FAILED_ALREADY_EXISTS) {
11912                    ret = PackageManager.INSTALL_FAILED_ALREADY_EXISTS;
11913                } else if (loc == PackageHelper.RECOMMEND_FAILED_INSUFFICIENT_STORAGE) {
11914                    ret = PackageManager.INSTALL_FAILED_INSUFFICIENT_STORAGE;
11915                } else if (loc == PackageHelper.RECOMMEND_FAILED_INVALID_APK) {
11916                    ret = PackageManager.INSTALL_FAILED_INVALID_APK;
11917                } else if (loc == PackageHelper.RECOMMEND_FAILED_INVALID_URI) {
11918                    ret = PackageManager.INSTALL_FAILED_INVALID_URI;
11919                } else if (loc == PackageHelper.RECOMMEND_MEDIA_UNAVAILABLE) {
11920                    ret = PackageManager.INSTALL_FAILED_MEDIA_UNAVAILABLE;
11921                } else {
11922                    // Override with defaults if needed.
11923                    loc = installLocationPolicy(pkgLite);
11924                    if (loc == PackageHelper.RECOMMEND_FAILED_VERSION_DOWNGRADE) {
11925                        ret = PackageManager.INSTALL_FAILED_VERSION_DOWNGRADE;
11926                    } else if (!onSd && !onInt) {
11927                        // Override install location with flags
11928                        if (loc == PackageHelper.RECOMMEND_INSTALL_EXTERNAL) {
11929                            // Set the flag to install on external media.
11930                            installFlags |= PackageManager.INSTALL_EXTERNAL;
11931                            installFlags &= ~PackageManager.INSTALL_INTERNAL;
11932                        } else if (loc == PackageHelper.RECOMMEND_INSTALL_EPHEMERAL) {
11933                            if (DEBUG_EPHEMERAL) {
11934                                Slog.v(TAG, "...setting INSTALL_EPHEMERAL install flag");
11935                            }
11936                            installFlags |= PackageManager.INSTALL_EPHEMERAL;
11937                            installFlags &= ~(PackageManager.INSTALL_EXTERNAL
11938                                    |PackageManager.INSTALL_INTERNAL);
11939                        } else {
11940                            // Make sure the flag for installing on external
11941                            // media is unset
11942                            installFlags |= PackageManager.INSTALL_INTERNAL;
11943                            installFlags &= ~PackageManager.INSTALL_EXTERNAL;
11944                        }
11945                    }
11946                }
11947            }
11948
11949            final InstallArgs args = createInstallArgs(this);
11950            mArgs = args;
11951
11952            if (ret == PackageManager.INSTALL_SUCCEEDED) {
11953                // TODO: http://b/22976637
11954                // Apps installed for "all" users use the device owner to verify the app
11955                UserHandle verifierUser = getUser();
11956                if (verifierUser == UserHandle.ALL) {
11957                    verifierUser = UserHandle.SYSTEM;
11958                }
11959
11960                /*
11961                 * Determine if we have any installed package verifiers. If we
11962                 * do, then we'll defer to them to verify the packages.
11963                 */
11964                final int requiredUid = mRequiredVerifierPackage == null ? -1
11965                        : getPackageUid(mRequiredVerifierPackage, MATCH_DEBUG_TRIAGED_MISSING,
11966                                verifierUser.getIdentifier());
11967                if (!origin.existing && requiredUid != -1
11968                        && isVerificationEnabled(verifierUser.getIdentifier(), installFlags)) {
11969                    final Intent verification = new Intent(
11970                            Intent.ACTION_PACKAGE_NEEDS_VERIFICATION);
11971                    verification.addFlags(Intent.FLAG_RECEIVER_FOREGROUND);
11972                    verification.setDataAndType(Uri.fromFile(new File(origin.resolvedPath)),
11973                            PACKAGE_MIME_TYPE);
11974                    verification.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
11975
11976                    // Query all live verifiers based on current user state
11977                    final List<ResolveInfo> receivers = queryIntentReceiversInternal(verification,
11978                            PACKAGE_MIME_TYPE, 0, verifierUser.getIdentifier());
11979
11980                    if (DEBUG_VERIFY) {
11981                        Slog.d(TAG, "Found " + receivers.size() + " verifiers for intent "
11982                                + verification.toString() + " with " + pkgLite.verifiers.length
11983                                + " optional verifiers");
11984                    }
11985
11986                    final int verificationId = mPendingVerificationToken++;
11987
11988                    verification.putExtra(PackageManager.EXTRA_VERIFICATION_ID, verificationId);
11989
11990                    verification.putExtra(PackageManager.EXTRA_VERIFICATION_INSTALLER_PACKAGE,
11991                            installerPackageName);
11992
11993                    verification.putExtra(PackageManager.EXTRA_VERIFICATION_INSTALL_FLAGS,
11994                            installFlags);
11995
11996                    verification.putExtra(PackageManager.EXTRA_VERIFICATION_PACKAGE_NAME,
11997                            pkgLite.packageName);
11998
11999                    verification.putExtra(PackageManager.EXTRA_VERIFICATION_VERSION_CODE,
12000                            pkgLite.versionCode);
12001
12002                    if (verificationInfo != null) {
12003                        if (verificationInfo.originatingUri != null) {
12004                            verification.putExtra(Intent.EXTRA_ORIGINATING_URI,
12005                                    verificationInfo.originatingUri);
12006                        }
12007                        if (verificationInfo.referrer != null) {
12008                            verification.putExtra(Intent.EXTRA_REFERRER,
12009                                    verificationInfo.referrer);
12010                        }
12011                        if (verificationInfo.originatingUid >= 0) {
12012                            verification.putExtra(Intent.EXTRA_ORIGINATING_UID,
12013                                    verificationInfo.originatingUid);
12014                        }
12015                        if (verificationInfo.installerUid >= 0) {
12016                            verification.putExtra(PackageManager.EXTRA_VERIFICATION_INSTALLER_UID,
12017                                    verificationInfo.installerUid);
12018                        }
12019                    }
12020
12021                    final PackageVerificationState verificationState = new PackageVerificationState(
12022                            requiredUid, args);
12023
12024                    mPendingVerification.append(verificationId, verificationState);
12025
12026                    final List<ComponentName> sufficientVerifiers = matchVerifiers(pkgLite,
12027                            receivers, verificationState);
12028
12029                    /*
12030                     * If any sufficient verifiers were listed in the package
12031                     * manifest, attempt to ask them.
12032                     */
12033                    if (sufficientVerifiers != null) {
12034                        final int N = sufficientVerifiers.size();
12035                        if (N == 0) {
12036                            Slog.i(TAG, "Additional verifiers required, but none installed.");
12037                            ret = PackageManager.INSTALL_FAILED_VERIFICATION_FAILURE;
12038                        } else {
12039                            for (int i = 0; i < N; i++) {
12040                                final ComponentName verifierComponent = sufficientVerifiers.get(i);
12041
12042                                final Intent sufficientIntent = new Intent(verification);
12043                                sufficientIntent.setComponent(verifierComponent);
12044                                mContext.sendBroadcastAsUser(sufficientIntent, verifierUser);
12045                            }
12046                        }
12047                    }
12048
12049                    final ComponentName requiredVerifierComponent = matchComponentForVerifier(
12050                            mRequiredVerifierPackage, receivers);
12051                    if (ret == PackageManager.INSTALL_SUCCEEDED
12052                            && mRequiredVerifierPackage != null) {
12053                        Trace.asyncTraceBegin(
12054                                TRACE_TAG_PACKAGE_MANAGER, "verification", verificationId);
12055                        /*
12056                         * Send the intent to the required verification agent,
12057                         * but only start the verification timeout after the
12058                         * target BroadcastReceivers have run.
12059                         */
12060                        verification.setComponent(requiredVerifierComponent);
12061                        mContext.sendOrderedBroadcastAsUser(verification, verifierUser,
12062                                android.Manifest.permission.PACKAGE_VERIFICATION_AGENT,
12063                                new BroadcastReceiver() {
12064                                    @Override
12065                                    public void onReceive(Context context, Intent intent) {
12066                                        final Message msg = mHandler
12067                                                .obtainMessage(CHECK_PENDING_VERIFICATION);
12068                                        msg.arg1 = verificationId;
12069                                        mHandler.sendMessageDelayed(msg, getVerificationTimeout());
12070                                    }
12071                                }, null, 0, null, null);
12072
12073                        /*
12074                         * We don't want the copy to proceed until verification
12075                         * succeeds, so null out this field.
12076                         */
12077                        mArgs = null;
12078                    }
12079                } else {
12080                    /*
12081                     * No package verification is enabled, so immediately start
12082                     * the remote call to initiate copy using temporary file.
12083                     */
12084                    ret = args.copyApk(mContainerService, true);
12085                }
12086            }
12087
12088            mRet = ret;
12089        }
12090
12091        @Override
12092        void handleReturnCode() {
12093            // If mArgs is null, then MCS couldn't be reached. When it
12094            // reconnects, it will try again to install. At that point, this
12095            // will succeed.
12096            if (mArgs != null) {
12097                processPendingInstall(mArgs, mRet);
12098            }
12099        }
12100
12101        @Override
12102        void handleServiceError() {
12103            mArgs = createInstallArgs(this);
12104            mRet = PackageManager.INSTALL_FAILED_INTERNAL_ERROR;
12105        }
12106
12107        public boolean isForwardLocked() {
12108            return (installFlags & PackageManager.INSTALL_FORWARD_LOCK) != 0;
12109        }
12110    }
12111
12112    /**
12113     * Used during creation of InstallArgs
12114     *
12115     * @param installFlags package installation flags
12116     * @return true if should be installed on external storage
12117     */
12118    private static boolean installOnExternalAsec(int installFlags) {
12119        if ((installFlags & PackageManager.INSTALL_INTERNAL) != 0) {
12120            return false;
12121        }
12122        if ((installFlags & PackageManager.INSTALL_EXTERNAL) != 0) {
12123            return true;
12124        }
12125        return false;
12126    }
12127
12128    /**
12129     * Used during creation of InstallArgs
12130     *
12131     * @param installFlags package installation flags
12132     * @return true if should be installed as forward locked
12133     */
12134    private static boolean installForwardLocked(int installFlags) {
12135        return (installFlags & PackageManager.INSTALL_FORWARD_LOCK) != 0;
12136    }
12137
12138    private InstallArgs createInstallArgs(InstallParams params) {
12139        if (params.move != null) {
12140            return new MoveInstallArgs(params);
12141        } else if (installOnExternalAsec(params.installFlags) || params.isForwardLocked()) {
12142            return new AsecInstallArgs(params);
12143        } else {
12144            return new FileInstallArgs(params);
12145        }
12146    }
12147
12148    /**
12149     * Create args that describe an existing installed package. Typically used
12150     * when cleaning up old installs, or used as a move source.
12151     */
12152    private InstallArgs createInstallArgsForExisting(int installFlags, String codePath,
12153            String resourcePath, String[] instructionSets) {
12154        final boolean isInAsec;
12155        if (installOnExternalAsec(installFlags)) {
12156            /* Apps on SD card are always in ASEC containers. */
12157            isInAsec = true;
12158        } else if (installForwardLocked(installFlags)
12159                && !codePath.startsWith(mDrmAppPrivateInstallDir.getAbsolutePath())) {
12160            /*
12161             * Forward-locked apps are only in ASEC containers if they're the
12162             * new style
12163             */
12164            isInAsec = true;
12165        } else {
12166            isInAsec = false;
12167        }
12168
12169        if (isInAsec) {
12170            return new AsecInstallArgs(codePath, instructionSets,
12171                    installOnExternalAsec(installFlags), installForwardLocked(installFlags));
12172        } else {
12173            return new FileInstallArgs(codePath, resourcePath, instructionSets);
12174        }
12175    }
12176
12177    static abstract class InstallArgs {
12178        /** @see InstallParams#origin */
12179        final OriginInfo origin;
12180        /** @see InstallParams#move */
12181        final MoveInfo move;
12182
12183        final IPackageInstallObserver2 observer;
12184        // Always refers to PackageManager flags only
12185        final int installFlags;
12186        final String installerPackageName;
12187        final String volumeUuid;
12188        final UserHandle user;
12189        final String abiOverride;
12190        final String[] installGrantPermissions;
12191        /** If non-null, drop an async trace when the install completes */
12192        final String traceMethod;
12193        final int traceCookie;
12194
12195        // The list of instruction sets supported by this app. This is currently
12196        // only used during the rmdex() phase to clean up resources. We can get rid of this
12197        // if we move dex files under the common app path.
12198        /* nullable */ String[] instructionSets;
12199
12200        InstallArgs(OriginInfo origin, MoveInfo move, IPackageInstallObserver2 observer,
12201                int installFlags, String installerPackageName, String volumeUuid,
12202                UserHandle user, String[] instructionSets,
12203                String abiOverride, String[] installGrantPermissions,
12204                String traceMethod, int traceCookie) {
12205            this.origin = origin;
12206            this.move = move;
12207            this.installFlags = installFlags;
12208            this.observer = observer;
12209            this.installerPackageName = installerPackageName;
12210            this.volumeUuid = volumeUuid;
12211            this.user = user;
12212            this.instructionSets = instructionSets;
12213            this.abiOverride = abiOverride;
12214            this.installGrantPermissions = installGrantPermissions;
12215            this.traceMethod = traceMethod;
12216            this.traceCookie = traceCookie;
12217        }
12218
12219        abstract int copyApk(IMediaContainerService imcs, boolean temp) throws RemoteException;
12220        abstract int doPreInstall(int status);
12221
12222        /**
12223         * Rename package into final resting place. All paths on the given
12224         * scanned package should be updated to reflect the rename.
12225         */
12226        abstract boolean doRename(int status, PackageParser.Package pkg, String oldCodePath);
12227        abstract int doPostInstall(int status, int uid);
12228
12229        /** @see PackageSettingBase#codePathString */
12230        abstract String getCodePath();
12231        /** @see PackageSettingBase#resourcePathString */
12232        abstract String getResourcePath();
12233
12234        // Need installer lock especially for dex file removal.
12235        abstract void cleanUpResourcesLI();
12236        abstract boolean doPostDeleteLI(boolean delete);
12237
12238        /**
12239         * Called before the source arguments are copied. This is used mostly
12240         * for MoveParams when it needs to read the source file to put it in the
12241         * destination.
12242         */
12243        int doPreCopy() {
12244            return PackageManager.INSTALL_SUCCEEDED;
12245        }
12246
12247        /**
12248         * Called after the source arguments are copied. This is used mostly for
12249         * MoveParams when it needs to read the source file to put it in the
12250         * destination.
12251         *
12252         * @return
12253         */
12254        int doPostCopy(int uid) {
12255            return PackageManager.INSTALL_SUCCEEDED;
12256        }
12257
12258        protected boolean isFwdLocked() {
12259            return (installFlags & PackageManager.INSTALL_FORWARD_LOCK) != 0;
12260        }
12261
12262        protected boolean isExternalAsec() {
12263            return (installFlags & PackageManager.INSTALL_EXTERNAL) != 0;
12264        }
12265
12266        protected boolean isEphemeral() {
12267            return (installFlags & PackageManager.INSTALL_EPHEMERAL) != 0;
12268        }
12269
12270        UserHandle getUser() {
12271            return user;
12272        }
12273    }
12274
12275    private void removeDexFiles(List<String> allCodePaths, String[] instructionSets) {
12276        if (!allCodePaths.isEmpty()) {
12277            if (instructionSets == null) {
12278                throw new IllegalStateException("instructionSet == null");
12279            }
12280            String[] dexCodeInstructionSets = getDexCodeInstructionSets(instructionSets);
12281            for (String codePath : allCodePaths) {
12282                for (String dexCodeInstructionSet : dexCodeInstructionSets) {
12283                    try {
12284                        mInstaller.rmdex(codePath, dexCodeInstructionSet);
12285                    } catch (InstallerException ignored) {
12286                    }
12287                }
12288            }
12289        }
12290    }
12291
12292    /**
12293     * Logic to handle installation of non-ASEC applications, including copying
12294     * and renaming logic.
12295     */
12296    class FileInstallArgs extends InstallArgs {
12297        private File codeFile;
12298        private File resourceFile;
12299
12300        // Example topology:
12301        // /data/app/com.example/base.apk
12302        // /data/app/com.example/split_foo.apk
12303        // /data/app/com.example/lib/arm/libfoo.so
12304        // /data/app/com.example/lib/arm64/libfoo.so
12305        // /data/app/com.example/dalvik/arm/base.apk@classes.dex
12306
12307        /** New install */
12308        FileInstallArgs(InstallParams params) {
12309            super(params.origin, params.move, params.observer, params.installFlags,
12310                    params.installerPackageName, params.volumeUuid,
12311                    params.getUser(), null /* instruction sets */, params.packageAbiOverride,
12312                    params.grantedRuntimePermissions,
12313                    params.traceMethod, params.traceCookie);
12314            if (isFwdLocked()) {
12315                throw new IllegalArgumentException("Forward locking only supported in ASEC");
12316            }
12317        }
12318
12319        /** Existing install */
12320        FileInstallArgs(String codePath, String resourcePath, String[] instructionSets) {
12321            super(OriginInfo.fromNothing(), null, null, 0, null, null, null, instructionSets,
12322                    null, null, null, 0);
12323            this.codeFile = (codePath != null) ? new File(codePath) : null;
12324            this.resourceFile = (resourcePath != null) ? new File(resourcePath) : null;
12325        }
12326
12327        int copyApk(IMediaContainerService imcs, boolean temp) throws RemoteException {
12328            Trace.traceBegin(TRACE_TAG_PACKAGE_MANAGER, "copyApk");
12329            try {
12330                return doCopyApk(imcs, temp);
12331            } finally {
12332                Trace.traceEnd(TRACE_TAG_PACKAGE_MANAGER);
12333            }
12334        }
12335
12336        private int doCopyApk(IMediaContainerService imcs, boolean temp) throws RemoteException {
12337            if (origin.staged) {
12338                if (DEBUG_INSTALL) Slog.d(TAG, origin.file + " already staged; skipping copy");
12339                codeFile = origin.file;
12340                resourceFile = origin.file;
12341                return PackageManager.INSTALL_SUCCEEDED;
12342            }
12343
12344            try {
12345                final boolean isEphemeral = (installFlags & PackageManager.INSTALL_EPHEMERAL) != 0;
12346                final File tempDir =
12347                        mInstallerService.allocateStageDirLegacy(volumeUuid, isEphemeral);
12348                codeFile = tempDir;
12349                resourceFile = tempDir;
12350            } catch (IOException e) {
12351                Slog.w(TAG, "Failed to create copy file: " + e);
12352                return PackageManager.INSTALL_FAILED_INSUFFICIENT_STORAGE;
12353            }
12354
12355            final IParcelFileDescriptorFactory target = new IParcelFileDescriptorFactory.Stub() {
12356                @Override
12357                public ParcelFileDescriptor open(String name, int mode) throws RemoteException {
12358                    if (!FileUtils.isValidExtFilename(name)) {
12359                        throw new IllegalArgumentException("Invalid filename: " + name);
12360                    }
12361                    try {
12362                        final File file = new File(codeFile, name);
12363                        final FileDescriptor fd = Os.open(file.getAbsolutePath(),
12364                                O_RDWR | O_CREAT, 0644);
12365                        Os.chmod(file.getAbsolutePath(), 0644);
12366                        return new ParcelFileDescriptor(fd);
12367                    } catch (ErrnoException e) {
12368                        throw new RemoteException("Failed to open: " + e.getMessage());
12369                    }
12370                }
12371            };
12372
12373            int ret = PackageManager.INSTALL_SUCCEEDED;
12374            ret = imcs.copyPackage(origin.file.getAbsolutePath(), target);
12375            if (ret != PackageManager.INSTALL_SUCCEEDED) {
12376                Slog.e(TAG, "Failed to copy package");
12377                return ret;
12378            }
12379
12380            final File libraryRoot = new File(codeFile, LIB_DIR_NAME);
12381            NativeLibraryHelper.Handle handle = null;
12382            try {
12383                handle = NativeLibraryHelper.Handle.create(codeFile);
12384                ret = NativeLibraryHelper.copyNativeBinariesWithOverride(handle, libraryRoot,
12385                        abiOverride);
12386            } catch (IOException e) {
12387                Slog.e(TAG, "Copying native libraries failed", e);
12388                ret = PackageManager.INSTALL_FAILED_INTERNAL_ERROR;
12389            } finally {
12390                IoUtils.closeQuietly(handle);
12391            }
12392
12393            return ret;
12394        }
12395
12396        int doPreInstall(int status) {
12397            if (status != PackageManager.INSTALL_SUCCEEDED) {
12398                cleanUp();
12399            }
12400            return status;
12401        }
12402
12403        boolean doRename(int status, PackageParser.Package pkg, String oldCodePath) {
12404            if (status != PackageManager.INSTALL_SUCCEEDED) {
12405                cleanUp();
12406                return false;
12407            }
12408
12409            final File targetDir = codeFile.getParentFile();
12410            final File beforeCodeFile = codeFile;
12411            final File afterCodeFile = getNextCodePath(targetDir, pkg.packageName);
12412
12413            if (DEBUG_INSTALL) Slog.d(TAG, "Renaming " + beforeCodeFile + " to " + afterCodeFile);
12414            try {
12415                Os.rename(beforeCodeFile.getAbsolutePath(), afterCodeFile.getAbsolutePath());
12416            } catch (ErrnoException e) {
12417                Slog.w(TAG, "Failed to rename", e);
12418                return false;
12419            }
12420
12421            if (!SELinux.restoreconRecursive(afterCodeFile)) {
12422                Slog.w(TAG, "Failed to restorecon");
12423                return false;
12424            }
12425
12426            // Reflect the rename internally
12427            codeFile = afterCodeFile;
12428            resourceFile = afterCodeFile;
12429
12430            // Reflect the rename in scanned details
12431            pkg.setCodePath(afterCodeFile.getAbsolutePath());
12432            pkg.setBaseCodePath(FileUtils.rewriteAfterRename(beforeCodeFile,
12433                    afterCodeFile, pkg.baseCodePath));
12434            pkg.setSplitCodePaths(FileUtils.rewriteAfterRename(beforeCodeFile,
12435                    afterCodeFile, pkg.splitCodePaths));
12436
12437            // Reflect the rename in app info
12438            pkg.setApplicationVolumeUuid(pkg.volumeUuid);
12439            pkg.setApplicationInfoCodePath(pkg.codePath);
12440            pkg.setApplicationInfoBaseCodePath(pkg.baseCodePath);
12441            pkg.setApplicationInfoSplitCodePaths(pkg.splitCodePaths);
12442            pkg.setApplicationInfoResourcePath(pkg.codePath);
12443            pkg.setApplicationInfoBaseResourcePath(pkg.baseCodePath);
12444            pkg.setApplicationInfoSplitResourcePaths(pkg.splitCodePaths);
12445
12446            return true;
12447        }
12448
12449        int doPostInstall(int status, int uid) {
12450            if (status != PackageManager.INSTALL_SUCCEEDED) {
12451                cleanUp();
12452            }
12453            return status;
12454        }
12455
12456        @Override
12457        String getCodePath() {
12458            return (codeFile != null) ? codeFile.getAbsolutePath() : null;
12459        }
12460
12461        @Override
12462        String getResourcePath() {
12463            return (resourceFile != null) ? resourceFile.getAbsolutePath() : null;
12464        }
12465
12466        private boolean cleanUp() {
12467            if (codeFile == null || !codeFile.exists()) {
12468                return false;
12469            }
12470
12471            removeCodePathLI(codeFile);
12472
12473            if (resourceFile != null && !FileUtils.contains(codeFile, resourceFile)) {
12474                resourceFile.delete();
12475            }
12476
12477            return true;
12478        }
12479
12480        void cleanUpResourcesLI() {
12481            // Try enumerating all code paths before deleting
12482            List<String> allCodePaths = Collections.EMPTY_LIST;
12483            if (codeFile != null && codeFile.exists()) {
12484                try {
12485                    final PackageLite pkg = PackageParser.parsePackageLite(codeFile, 0);
12486                    allCodePaths = pkg.getAllCodePaths();
12487                } catch (PackageParserException e) {
12488                    // Ignored; we tried our best
12489                }
12490            }
12491
12492            cleanUp();
12493            removeDexFiles(allCodePaths, instructionSets);
12494        }
12495
12496        boolean doPostDeleteLI(boolean delete) {
12497            // XXX err, shouldn't we respect the delete flag?
12498            cleanUpResourcesLI();
12499            return true;
12500        }
12501    }
12502
12503    private boolean isAsecExternal(String cid) {
12504        final String asecPath = PackageHelper.getSdFilesystem(cid);
12505        return !asecPath.startsWith(mAsecInternalPath);
12506    }
12507
12508    private static void maybeThrowExceptionForMultiArchCopy(String message, int copyRet) throws
12509            PackageManagerException {
12510        if (copyRet < 0) {
12511            if (copyRet != PackageManager.NO_NATIVE_LIBRARIES &&
12512                    copyRet != PackageManager.INSTALL_FAILED_NO_MATCHING_ABIS) {
12513                throw new PackageManagerException(copyRet, message);
12514            }
12515        }
12516    }
12517
12518    /**
12519     * Extract the MountService "container ID" from the full code path of an
12520     * .apk.
12521     */
12522    static String cidFromCodePath(String fullCodePath) {
12523        int eidx = fullCodePath.lastIndexOf("/");
12524        String subStr1 = fullCodePath.substring(0, eidx);
12525        int sidx = subStr1.lastIndexOf("/");
12526        return subStr1.substring(sidx+1, eidx);
12527    }
12528
12529    /**
12530     * Logic to handle installation of ASEC applications, including copying and
12531     * renaming logic.
12532     */
12533    class AsecInstallArgs extends InstallArgs {
12534        static final String RES_FILE_NAME = "pkg.apk";
12535        static final String PUBLIC_RES_FILE_NAME = "res.zip";
12536
12537        String cid;
12538        String packagePath;
12539        String resourcePath;
12540
12541        /** New install */
12542        AsecInstallArgs(InstallParams params) {
12543            super(params.origin, params.move, params.observer, params.installFlags,
12544                    params.installerPackageName, params.volumeUuid,
12545                    params.getUser(), null /* instruction sets */, params.packageAbiOverride,
12546                    params.grantedRuntimePermissions,
12547                    params.traceMethod, params.traceCookie);
12548        }
12549
12550        /** Existing install */
12551        AsecInstallArgs(String fullCodePath, String[] instructionSets,
12552                        boolean isExternal, boolean isForwardLocked) {
12553            super(OriginInfo.fromNothing(), null, null, (isExternal ? INSTALL_EXTERNAL : 0)
12554                    | (isForwardLocked ? INSTALL_FORWARD_LOCK : 0), null, null, null,
12555                    instructionSets, null, null, null, 0);
12556            // Hackily pretend we're still looking at a full code path
12557            if (!fullCodePath.endsWith(RES_FILE_NAME)) {
12558                fullCodePath = new File(fullCodePath, RES_FILE_NAME).getAbsolutePath();
12559            }
12560
12561            // Extract cid from fullCodePath
12562            int eidx = fullCodePath.lastIndexOf("/");
12563            String subStr1 = fullCodePath.substring(0, eidx);
12564            int sidx = subStr1.lastIndexOf("/");
12565            cid = subStr1.substring(sidx+1, eidx);
12566            setMountPath(subStr1);
12567        }
12568
12569        AsecInstallArgs(String cid, String[] instructionSets, boolean isForwardLocked) {
12570            super(OriginInfo.fromNothing(), null, null, (isAsecExternal(cid) ? INSTALL_EXTERNAL : 0)
12571                    | (isForwardLocked ? INSTALL_FORWARD_LOCK : 0), null, null, null,
12572                    instructionSets, null, null, null, 0);
12573            this.cid = cid;
12574            setMountPath(PackageHelper.getSdDir(cid));
12575        }
12576
12577        void createCopyFile() {
12578            cid = mInstallerService.allocateExternalStageCidLegacy();
12579        }
12580
12581        int copyApk(IMediaContainerService imcs, boolean temp) throws RemoteException {
12582            if (origin.staged && origin.cid != null) {
12583                if (DEBUG_INSTALL) Slog.d(TAG, origin.cid + " already staged; skipping copy");
12584                cid = origin.cid;
12585                setMountPath(PackageHelper.getSdDir(cid));
12586                return PackageManager.INSTALL_SUCCEEDED;
12587            }
12588
12589            if (temp) {
12590                createCopyFile();
12591            } else {
12592                /*
12593                 * Pre-emptively destroy the container since it's destroyed if
12594                 * copying fails due to it existing anyway.
12595                 */
12596                PackageHelper.destroySdDir(cid);
12597            }
12598
12599            final String newMountPath = imcs.copyPackageToContainer(
12600                    origin.file.getAbsolutePath(), cid, getEncryptKey(), isExternalAsec(),
12601                    isFwdLocked(), deriveAbiOverride(abiOverride, null /* settings */));
12602
12603            if (newMountPath != null) {
12604                setMountPath(newMountPath);
12605                return PackageManager.INSTALL_SUCCEEDED;
12606            } else {
12607                return PackageManager.INSTALL_FAILED_CONTAINER_ERROR;
12608            }
12609        }
12610
12611        @Override
12612        String getCodePath() {
12613            return packagePath;
12614        }
12615
12616        @Override
12617        String getResourcePath() {
12618            return resourcePath;
12619        }
12620
12621        int doPreInstall(int status) {
12622            if (status != PackageManager.INSTALL_SUCCEEDED) {
12623                // Destroy container
12624                PackageHelper.destroySdDir(cid);
12625            } else {
12626                boolean mounted = PackageHelper.isContainerMounted(cid);
12627                if (!mounted) {
12628                    String newMountPath = PackageHelper.mountSdDir(cid, getEncryptKey(),
12629                            Process.SYSTEM_UID);
12630                    if (newMountPath != null) {
12631                        setMountPath(newMountPath);
12632                    } else {
12633                        return PackageManager.INSTALL_FAILED_CONTAINER_ERROR;
12634                    }
12635                }
12636            }
12637            return status;
12638        }
12639
12640        boolean doRename(int status, PackageParser.Package pkg, String oldCodePath) {
12641            String newCacheId = getNextCodePath(oldCodePath, pkg.packageName, "/" + RES_FILE_NAME);
12642            String newMountPath = null;
12643            if (PackageHelper.isContainerMounted(cid)) {
12644                // Unmount the container
12645                if (!PackageHelper.unMountSdDir(cid)) {
12646                    Slog.i(TAG, "Failed to unmount " + cid + " before renaming");
12647                    return false;
12648                }
12649            }
12650            if (!PackageHelper.renameSdDir(cid, newCacheId)) {
12651                Slog.e(TAG, "Failed to rename " + cid + " to " + newCacheId +
12652                        " which might be stale. Will try to clean up.");
12653                // Clean up the stale container and proceed to recreate.
12654                if (!PackageHelper.destroySdDir(newCacheId)) {
12655                    Slog.e(TAG, "Very strange. Cannot clean up stale container " + newCacheId);
12656                    return false;
12657                }
12658                // Successfully cleaned up stale container. Try to rename again.
12659                if (!PackageHelper.renameSdDir(cid, newCacheId)) {
12660                    Slog.e(TAG, "Failed to rename " + cid + " to " + newCacheId
12661                            + " inspite of cleaning it up.");
12662                    return false;
12663                }
12664            }
12665            if (!PackageHelper.isContainerMounted(newCacheId)) {
12666                Slog.w(TAG, "Mounting container " + newCacheId);
12667                newMountPath = PackageHelper.mountSdDir(newCacheId,
12668                        getEncryptKey(), Process.SYSTEM_UID);
12669            } else {
12670                newMountPath = PackageHelper.getSdDir(newCacheId);
12671            }
12672            if (newMountPath == null) {
12673                Slog.w(TAG, "Failed to get cache path for  " + newCacheId);
12674                return false;
12675            }
12676            Log.i(TAG, "Succesfully renamed " + cid +
12677                    " to " + newCacheId +
12678                    " at new path: " + newMountPath);
12679            cid = newCacheId;
12680
12681            final File beforeCodeFile = new File(packagePath);
12682            setMountPath(newMountPath);
12683            final File afterCodeFile = new File(packagePath);
12684
12685            // Reflect the rename in scanned details
12686            pkg.setCodePath(afterCodeFile.getAbsolutePath());
12687            pkg.setBaseCodePath(FileUtils.rewriteAfterRename(beforeCodeFile,
12688                    afterCodeFile, pkg.baseCodePath));
12689            pkg.setSplitCodePaths(FileUtils.rewriteAfterRename(beforeCodeFile,
12690                    afterCodeFile, pkg.splitCodePaths));
12691
12692            // Reflect the rename in app info
12693            pkg.setApplicationVolumeUuid(pkg.volumeUuid);
12694            pkg.setApplicationInfoCodePath(pkg.codePath);
12695            pkg.setApplicationInfoBaseCodePath(pkg.baseCodePath);
12696            pkg.setApplicationInfoSplitCodePaths(pkg.splitCodePaths);
12697            pkg.setApplicationInfoResourcePath(pkg.codePath);
12698            pkg.setApplicationInfoBaseResourcePath(pkg.baseCodePath);
12699            pkg.setApplicationInfoSplitResourcePaths(pkg.splitCodePaths);
12700
12701            return true;
12702        }
12703
12704        private void setMountPath(String mountPath) {
12705            final File mountFile = new File(mountPath);
12706
12707            final File monolithicFile = new File(mountFile, RES_FILE_NAME);
12708            if (monolithicFile.exists()) {
12709                packagePath = monolithicFile.getAbsolutePath();
12710                if (isFwdLocked()) {
12711                    resourcePath = new File(mountFile, PUBLIC_RES_FILE_NAME).getAbsolutePath();
12712                } else {
12713                    resourcePath = packagePath;
12714                }
12715            } else {
12716                packagePath = mountFile.getAbsolutePath();
12717                resourcePath = packagePath;
12718            }
12719        }
12720
12721        int doPostInstall(int status, int uid) {
12722            if (status != PackageManager.INSTALL_SUCCEEDED) {
12723                cleanUp();
12724            } else {
12725                final int groupOwner;
12726                final String protectedFile;
12727                if (isFwdLocked()) {
12728                    groupOwner = UserHandle.getSharedAppGid(uid);
12729                    protectedFile = RES_FILE_NAME;
12730                } else {
12731                    groupOwner = -1;
12732                    protectedFile = null;
12733                }
12734
12735                if (uid < Process.FIRST_APPLICATION_UID
12736                        || !PackageHelper.fixSdPermissions(cid, groupOwner, protectedFile)) {
12737                    Slog.e(TAG, "Failed to finalize " + cid);
12738                    PackageHelper.destroySdDir(cid);
12739                    return PackageManager.INSTALL_FAILED_CONTAINER_ERROR;
12740                }
12741
12742                boolean mounted = PackageHelper.isContainerMounted(cid);
12743                if (!mounted) {
12744                    PackageHelper.mountSdDir(cid, getEncryptKey(), Process.myUid());
12745                }
12746            }
12747            return status;
12748        }
12749
12750        private void cleanUp() {
12751            if (DEBUG_SD_INSTALL) Slog.i(TAG, "cleanUp");
12752
12753            // Destroy secure container
12754            PackageHelper.destroySdDir(cid);
12755        }
12756
12757        private List<String> getAllCodePaths() {
12758            final File codeFile = new File(getCodePath());
12759            if (codeFile != null && codeFile.exists()) {
12760                try {
12761                    final PackageLite pkg = PackageParser.parsePackageLite(codeFile, 0);
12762                    return pkg.getAllCodePaths();
12763                } catch (PackageParserException e) {
12764                    // Ignored; we tried our best
12765                }
12766            }
12767            return Collections.EMPTY_LIST;
12768        }
12769
12770        void cleanUpResourcesLI() {
12771            // Enumerate all code paths before deleting
12772            cleanUpResourcesLI(getAllCodePaths());
12773        }
12774
12775        private void cleanUpResourcesLI(List<String> allCodePaths) {
12776            cleanUp();
12777            removeDexFiles(allCodePaths, instructionSets);
12778        }
12779
12780        String getPackageName() {
12781            return getAsecPackageName(cid);
12782        }
12783
12784        boolean doPostDeleteLI(boolean delete) {
12785            if (DEBUG_SD_INSTALL) Slog.i(TAG, "doPostDeleteLI() del=" + delete);
12786            final List<String> allCodePaths = getAllCodePaths();
12787            boolean mounted = PackageHelper.isContainerMounted(cid);
12788            if (mounted) {
12789                // Unmount first
12790                if (PackageHelper.unMountSdDir(cid)) {
12791                    mounted = false;
12792                }
12793            }
12794            if (!mounted && delete) {
12795                cleanUpResourcesLI(allCodePaths);
12796            }
12797            return !mounted;
12798        }
12799
12800        @Override
12801        int doPreCopy() {
12802            if (isFwdLocked()) {
12803                if (!PackageHelper.fixSdPermissions(cid, getPackageUid(DEFAULT_CONTAINER_PACKAGE,
12804                        MATCH_SYSTEM_ONLY, UserHandle.USER_SYSTEM), RES_FILE_NAME)) {
12805                    return PackageManager.INSTALL_FAILED_CONTAINER_ERROR;
12806                }
12807            }
12808
12809            return PackageManager.INSTALL_SUCCEEDED;
12810        }
12811
12812        @Override
12813        int doPostCopy(int uid) {
12814            if (isFwdLocked()) {
12815                if (uid < Process.FIRST_APPLICATION_UID
12816                        || !PackageHelper.fixSdPermissions(cid, UserHandle.getSharedAppGid(uid),
12817                                RES_FILE_NAME)) {
12818                    Slog.e(TAG, "Failed to finalize " + cid);
12819                    PackageHelper.destroySdDir(cid);
12820                    return PackageManager.INSTALL_FAILED_CONTAINER_ERROR;
12821                }
12822            }
12823
12824            return PackageManager.INSTALL_SUCCEEDED;
12825        }
12826    }
12827
12828    /**
12829     * Logic to handle movement of existing installed applications.
12830     */
12831    class MoveInstallArgs extends InstallArgs {
12832        private File codeFile;
12833        private File resourceFile;
12834
12835        /** New install */
12836        MoveInstallArgs(InstallParams params) {
12837            super(params.origin, params.move, params.observer, params.installFlags,
12838                    params.installerPackageName, params.volumeUuid,
12839                    params.getUser(), null /* instruction sets */, params.packageAbiOverride,
12840                    params.grantedRuntimePermissions,
12841                    params.traceMethod, params.traceCookie);
12842        }
12843
12844        int copyApk(IMediaContainerService imcs, boolean temp) {
12845            if (DEBUG_INSTALL) Slog.d(TAG, "Moving " + move.packageName + " from "
12846                    + move.fromUuid + " to " + move.toUuid);
12847            synchronized (mInstaller) {
12848                try {
12849                    mInstaller.moveCompleteApp(move.fromUuid, move.toUuid, move.packageName,
12850                            move.dataAppName, move.appId, move.seinfo, move.targetSdkVersion);
12851                } catch (InstallerException e) {
12852                    Slog.w(TAG, "Failed to move app", e);
12853                    return PackageManager.INSTALL_FAILED_INTERNAL_ERROR;
12854                }
12855            }
12856
12857            codeFile = new File(Environment.getDataAppDirectory(move.toUuid), move.dataAppName);
12858            resourceFile = codeFile;
12859            if (DEBUG_INSTALL) Slog.d(TAG, "codeFile after move is " + codeFile);
12860
12861            return PackageManager.INSTALL_SUCCEEDED;
12862        }
12863
12864        int doPreInstall(int status) {
12865            if (status != PackageManager.INSTALL_SUCCEEDED) {
12866                cleanUp(move.toUuid);
12867            }
12868            return status;
12869        }
12870
12871        boolean doRename(int status, PackageParser.Package pkg, String oldCodePath) {
12872            if (status != PackageManager.INSTALL_SUCCEEDED) {
12873                cleanUp(move.toUuid);
12874                return false;
12875            }
12876
12877            // Reflect the move in app info
12878            pkg.setApplicationVolumeUuid(pkg.volumeUuid);
12879            pkg.setApplicationInfoCodePath(pkg.codePath);
12880            pkg.setApplicationInfoBaseCodePath(pkg.baseCodePath);
12881            pkg.setApplicationInfoSplitCodePaths(pkg.splitCodePaths);
12882            pkg.setApplicationInfoResourcePath(pkg.codePath);
12883            pkg.setApplicationInfoBaseResourcePath(pkg.baseCodePath);
12884            pkg.setApplicationInfoSplitResourcePaths(pkg.splitCodePaths);
12885
12886            return true;
12887        }
12888
12889        int doPostInstall(int status, int uid) {
12890            if (status == PackageManager.INSTALL_SUCCEEDED) {
12891                cleanUp(move.fromUuid);
12892            } else {
12893                cleanUp(move.toUuid);
12894            }
12895            return status;
12896        }
12897
12898        @Override
12899        String getCodePath() {
12900            return (codeFile != null) ? codeFile.getAbsolutePath() : null;
12901        }
12902
12903        @Override
12904        String getResourcePath() {
12905            return (resourceFile != null) ? resourceFile.getAbsolutePath() : null;
12906        }
12907
12908        private boolean cleanUp(String volumeUuid) {
12909            final File codeFile = new File(Environment.getDataAppDirectory(volumeUuid),
12910                    move.dataAppName);
12911            Slog.d(TAG, "Cleaning up " + move.packageName + " on " + volumeUuid);
12912            synchronized (mInstallLock) {
12913                // Clean up both app data and code
12914                removeDataDirsLI(volumeUuid, move.packageName);
12915                removeCodePathLI(codeFile);
12916            }
12917            return true;
12918        }
12919
12920        void cleanUpResourcesLI() {
12921            throw new UnsupportedOperationException();
12922        }
12923
12924        boolean doPostDeleteLI(boolean delete) {
12925            throw new UnsupportedOperationException();
12926        }
12927    }
12928
12929    static String getAsecPackageName(String packageCid) {
12930        int idx = packageCid.lastIndexOf("-");
12931        if (idx == -1) {
12932            return packageCid;
12933        }
12934        return packageCid.substring(0, idx);
12935    }
12936
12937    // Utility method used to create code paths based on package name and available index.
12938    private static String getNextCodePath(String oldCodePath, String prefix, String suffix) {
12939        String idxStr = "";
12940        int idx = 1;
12941        // Fall back to default value of idx=1 if prefix is not
12942        // part of oldCodePath
12943        if (oldCodePath != null) {
12944            String subStr = oldCodePath;
12945            // Drop the suffix right away
12946            if (suffix != null && subStr.endsWith(suffix)) {
12947                subStr = subStr.substring(0, subStr.length() - suffix.length());
12948            }
12949            // If oldCodePath already contains prefix find out the
12950            // ending index to either increment or decrement.
12951            int sidx = subStr.lastIndexOf(prefix);
12952            if (sidx != -1) {
12953                subStr = subStr.substring(sidx + prefix.length());
12954                if (subStr != null) {
12955                    if (subStr.startsWith(INSTALL_PACKAGE_SUFFIX)) {
12956                        subStr = subStr.substring(INSTALL_PACKAGE_SUFFIX.length());
12957                    }
12958                    try {
12959                        idx = Integer.parseInt(subStr);
12960                        if (idx <= 1) {
12961                            idx++;
12962                        } else {
12963                            idx--;
12964                        }
12965                    } catch(NumberFormatException e) {
12966                    }
12967                }
12968            }
12969        }
12970        idxStr = INSTALL_PACKAGE_SUFFIX + Integer.toString(idx);
12971        return prefix + idxStr;
12972    }
12973
12974    private File getNextCodePath(File targetDir, String packageName) {
12975        int suffix = 1;
12976        File result;
12977        do {
12978            result = new File(targetDir, packageName + "-" + suffix);
12979            suffix++;
12980        } while (result.exists());
12981        return result;
12982    }
12983
12984    // Utility method that returns the relative package path with respect
12985    // to the installation directory. Like say for /data/data/com.test-1.apk
12986    // string com.test-1 is returned.
12987    static String deriveCodePathName(String codePath) {
12988        if (codePath == null) {
12989            return null;
12990        }
12991        final File codeFile = new File(codePath);
12992        final String name = codeFile.getName();
12993        if (codeFile.isDirectory()) {
12994            return name;
12995        } else if (name.endsWith(".apk") || name.endsWith(".tmp")) {
12996            final int lastDot = name.lastIndexOf('.');
12997            return name.substring(0, lastDot);
12998        } else {
12999            Slog.w(TAG, "Odd, " + codePath + " doesn't look like an APK");
13000            return null;
13001        }
13002    }
13003
13004    static class PackageInstalledInfo {
13005        String name;
13006        int uid;
13007        // The set of users that originally had this package installed.
13008        int[] origUsers;
13009        // The set of users that now have this package installed.
13010        int[] newUsers;
13011        PackageParser.Package pkg;
13012        int returnCode;
13013        String returnMsg;
13014        PackageRemovedInfo removedInfo;
13015        ArrayMap<String, PackageInstalledInfo> addedChildPackages;
13016
13017        public void setError(int code, String msg) {
13018            setReturnCode(code);
13019            setReturnMessage(msg);
13020            Slog.w(TAG, msg);
13021        }
13022
13023        public void setError(String msg, PackageParserException e) {
13024            setReturnCode(e.error);
13025            setReturnMessage(ExceptionUtils.getCompleteMessage(msg, e));
13026            Slog.w(TAG, msg, e);
13027        }
13028
13029        public void setError(String msg, PackageManagerException e) {
13030            returnCode = e.error;
13031            setReturnMessage(ExceptionUtils.getCompleteMessage(msg, e));
13032            Slog.w(TAG, msg, e);
13033        }
13034
13035        public void setReturnCode(int returnCode) {
13036            this.returnCode = returnCode;
13037            final int childCount = (addedChildPackages != null) ? addedChildPackages.size() : 0;
13038            for (int i = 0; i < childCount; i++) {
13039                addedChildPackages.valueAt(i).returnCode = returnCode;
13040            }
13041        }
13042
13043        private void setReturnMessage(String returnMsg) {
13044            this.returnMsg = returnMsg;
13045            final int childCount = (addedChildPackages != null) ? addedChildPackages.size() : 0;
13046            for (int i = 0; i < childCount; i++) {
13047                addedChildPackages.valueAt(i).returnMsg = returnMsg;
13048            }
13049        }
13050
13051        // In some error cases we want to convey more info back to the observer
13052        String origPackage;
13053        String origPermission;
13054    }
13055
13056    /*
13057     * Install a non-existing package.
13058     */
13059    private void installNewPackageLI(PackageParser.Package pkg, int parseFlags, int scanFlags,
13060            UserHandle user, String installerPackageName, String volumeUuid,
13061            PackageInstalledInfo res) {
13062        Trace.traceBegin(TRACE_TAG_PACKAGE_MANAGER, "installNewPackage");
13063
13064        // Remember this for later, in case we need to rollback this install
13065        String pkgName = pkg.packageName;
13066
13067        if (DEBUG_INSTALL) Slog.d(TAG, "installNewPackageLI: " + pkg);
13068
13069        synchronized(mPackages) {
13070            if (mSettings.mRenamedPackages.containsKey(pkgName)) {
13071                // A package with the same name is already installed, though
13072                // it has been renamed to an older name.  The package we
13073                // are trying to install should be installed as an update to
13074                // the existing one, but that has not been requested, so bail.
13075                res.setError(INSTALL_FAILED_ALREADY_EXISTS, "Attempt to re-install " + pkgName
13076                        + " without first uninstalling package running as "
13077                        + mSettings.mRenamedPackages.get(pkgName));
13078                return;
13079            }
13080            if (mPackages.containsKey(pkgName)) {
13081                // Don't allow installation over an existing package with the same name.
13082                res.setError(INSTALL_FAILED_ALREADY_EXISTS, "Attempt to re-install " + pkgName
13083                        + " without first uninstalling.");
13084                return;
13085            }
13086        }
13087
13088        try {
13089            PackageParser.Package newPackage = scanPackageTracedLI(pkg, parseFlags, scanFlags,
13090                    System.currentTimeMillis(), user);
13091
13092            updateSettingsLI(newPackage, installerPackageName, null, res, user);
13093
13094            if (res.returnCode == PackageManager.INSTALL_SUCCEEDED) {
13095                prepareAppDataAfterInstall(newPackage);
13096
13097            } else {
13098                // Remove package from internal structures, but keep around any
13099                // data that might have already existed
13100                deletePackageLI(pkgName, UserHandle.ALL, false, null,
13101                        PackageManager.DELETE_KEEP_DATA, res.removedInfo, true, null);
13102            }
13103        } catch (PackageManagerException e) {
13104            res.setError("Package couldn't be installed in " + pkg.codePath, e);
13105        }
13106
13107        Trace.traceEnd(TRACE_TAG_PACKAGE_MANAGER);
13108    }
13109
13110    private boolean shouldCheckUpgradeKeySetLP(PackageSetting oldPs, int scanFlags) {
13111        // Can't rotate keys during boot or if sharedUser.
13112        if (oldPs == null || (scanFlags&SCAN_INITIAL) != 0 || oldPs.sharedUser != null
13113                || !oldPs.keySetData.isUsingUpgradeKeySets()) {
13114            return false;
13115        }
13116        // app is using upgradeKeySets; make sure all are valid
13117        KeySetManagerService ksms = mSettings.mKeySetManagerService;
13118        long[] upgradeKeySets = oldPs.keySetData.getUpgradeKeySets();
13119        for (int i = 0; i < upgradeKeySets.length; i++) {
13120            if (!ksms.isIdValidKeySetId(upgradeKeySets[i])) {
13121                Slog.wtf(TAG, "Package "
13122                         + (oldPs.name != null ? oldPs.name : "<null>")
13123                         + " contains upgrade-key-set reference to unknown key-set: "
13124                         + upgradeKeySets[i]
13125                         + " reverting to signatures check.");
13126                return false;
13127            }
13128        }
13129        return true;
13130    }
13131
13132    private boolean checkUpgradeKeySetLP(PackageSetting oldPS, PackageParser.Package newPkg) {
13133        // Upgrade keysets are being used.  Determine if new package has a superset of the
13134        // required keys.
13135        long[] upgradeKeySets = oldPS.keySetData.getUpgradeKeySets();
13136        KeySetManagerService ksms = mSettings.mKeySetManagerService;
13137        for (int i = 0; i < upgradeKeySets.length; i++) {
13138            Set<PublicKey> upgradeSet = ksms.getPublicKeysFromKeySetLPr(upgradeKeySets[i]);
13139            if (upgradeSet != null && newPkg.mSigningKeys.containsAll(upgradeSet)) {
13140                return true;
13141            }
13142        }
13143        return false;
13144    }
13145
13146    private void replacePackageLI(PackageParser.Package pkg, int parseFlags, int scanFlags,
13147            UserHandle user, String installerPackageName, PackageInstalledInfo res) {
13148        final boolean isEphemeral = (parseFlags & PackageParser.PARSE_IS_EPHEMERAL) != 0;
13149
13150        final PackageParser.Package oldPackage;
13151        final String pkgName = pkg.packageName;
13152        final int[] allUsers;
13153        final boolean weFroze;
13154
13155        // First find the old package info and check signatures
13156        synchronized(mPackages) {
13157            oldPackage = mPackages.get(pkgName);
13158            final boolean oldIsEphemeral = oldPackage.applicationInfo.isEphemeralApp();
13159            if (isEphemeral && !oldIsEphemeral) {
13160                // can't downgrade from full to ephemeral
13161                Slog.w(TAG, "Can't replace app with ephemeral: " + pkgName);
13162                res.setReturnCode(PackageManager.INSTALL_FAILED_EPHEMERAL_INVALID);
13163                return;
13164            }
13165            if (DEBUG_INSTALL) Slog.d(TAG, "replacePackageLI: new=" + pkg + ", old=" + oldPackage);
13166            final PackageSetting ps = mSettings.mPackages.get(pkgName);
13167            if (shouldCheckUpgradeKeySetLP(ps, scanFlags)) {
13168                if (!checkUpgradeKeySetLP(ps, pkg)) {
13169                    res.setError(INSTALL_FAILED_UPDATE_INCOMPATIBLE,
13170                            "New package not signed by keys specified by upgrade-keysets: "
13171                                    + pkgName);
13172                    return;
13173                }
13174            } else {
13175                // default to original signature matching
13176                if (compareSignatures(oldPackage.mSignatures, pkg.mSignatures)
13177                        != PackageManager.SIGNATURE_MATCH) {
13178                    res.setError(INSTALL_FAILED_UPDATE_INCOMPATIBLE,
13179                            "New package has a different signature: " + pkgName);
13180                    return;
13181                }
13182            }
13183
13184            // In case of rollback, remember per-user/profile install state
13185            allUsers = sUserManager.getUserIds();
13186
13187            // Mark the app as frozen to prevent launching during the upgrade
13188            // process, and then kill all running instances
13189            if (!ps.frozen) {
13190                ps.frozen = true;
13191                weFroze = true;
13192            } else {
13193                weFroze = false;
13194            }
13195        }
13196
13197        try {
13198            replacePackageDirtyLI(pkg, oldPackage, parseFlags, scanFlags, user, allUsers,
13199                    installerPackageName, res);
13200        } finally {
13201            // Regardless of success or failure of upgrade steps above, always
13202            // unfreeze the package if we froze it
13203            if (weFroze) {
13204                unfreezePackage(pkgName);
13205            }
13206        }
13207    }
13208
13209    private void replacePackageDirtyLI(PackageParser.Package pkg, PackageParser.Package oldPackage,
13210            int parseFlags, int scanFlags, UserHandle user, int[] allUsers,
13211            String installerPackageName, PackageInstalledInfo res) {
13212        // Update what is removed
13213        res.removedInfo = new PackageRemovedInfo();
13214        res.removedInfo.uid = oldPackage.applicationInfo.uid;
13215        res.removedInfo.removedPackage = oldPackage.packageName;
13216        res.removedInfo.isUpdate = true;
13217        final int childCount = (oldPackage.childPackages != null)
13218                ? oldPackage.childPackages.size() : 0;
13219        for (int i = 0; i < childCount; i++) {
13220            boolean childPackageUpdated = false;
13221            PackageParser.Package childPkg = oldPackage.childPackages.get(i);
13222            if (res.addedChildPackages != null) {
13223                PackageInstalledInfo childRes = res.addedChildPackages.get(childPkg.packageName);
13224                if (childRes != null) {
13225                    childRes.removedInfo.uid = childPkg.applicationInfo.uid;
13226                    childRes.removedInfo.removedPackage = childPkg.packageName;
13227                    childRes.removedInfo.isUpdate = true;
13228                    childPackageUpdated = true;
13229                }
13230            }
13231            if (!childPackageUpdated) {
13232                PackageRemovedInfo childRemovedRes = new PackageRemovedInfo();
13233                childRemovedRes.removedPackage = childPkg.packageName;
13234                childRemovedRes.isUpdate = false;
13235                childRemovedRes.dataRemoved = true;
13236                synchronized (mPackages) {
13237                    PackageSetting childPs = mSettings.peekPackageLPr(childPkg.packageName);
13238                    if (childPs != null) {
13239                        childRemovedRes.origUsers = childPs.queryInstalledUsers(allUsers, true);
13240                    }
13241                }
13242                if (res.removedInfo.removedChildPackages == null) {
13243                    res.removedInfo.removedChildPackages = new ArrayMap<>();
13244                }
13245                res.removedInfo.removedChildPackages.put(childPkg.packageName, childRemovedRes);
13246            }
13247        }
13248
13249        boolean sysPkg = (isSystemApp(oldPackage));
13250        if (sysPkg) {
13251            replaceSystemPackageLI(oldPackage, pkg, parseFlags, scanFlags,
13252                    user, allUsers, installerPackageName, res);
13253        } else {
13254            replaceNonSystemPackageLI(oldPackage, pkg, parseFlags, scanFlags,
13255                    user, allUsers, installerPackageName, res);
13256        }
13257    }
13258
13259    public List<String> getPreviousCodePaths(String packageName) {
13260        final PackageSetting ps = mSettings.mPackages.get(packageName);
13261        final List<String> result = new ArrayList<String>();
13262        if (ps != null && ps.oldCodePaths != null) {
13263            result.addAll(ps.oldCodePaths);
13264        }
13265        return result;
13266    }
13267
13268    private void replaceNonSystemPackageLI(PackageParser.Package deletedPackage,
13269            PackageParser.Package pkg, int parseFlags, int scanFlags, UserHandle user,
13270            int[] allUsers, String installerPackageName, PackageInstalledInfo res) {
13271        if (DEBUG_INSTALL) Slog.d(TAG, "replaceNonSystemPackageLI: new=" + pkg + ", old="
13272                + deletedPackage);
13273
13274        String pkgName = deletedPackage.packageName;
13275        boolean deletedPkg = true;
13276        boolean addedPkg = false;
13277        boolean updatedSettings = false;
13278        final boolean killApp = (scanFlags & SCAN_DONT_KILL_APP) == 0;
13279        final int deleteFlags = PackageManager.DELETE_KEEP_DATA
13280                | (killApp ? 0 : PackageManager.DELETE_DONT_KILL_APP);
13281
13282        final long origUpdateTime = (pkg.mExtras != null)
13283                ? ((PackageSetting)pkg.mExtras).lastUpdateTime : 0;
13284
13285        // First delete the existing package while retaining the data directory
13286        if (!deletePackageLI(pkgName, null, true, allUsers, deleteFlags,
13287                res.removedInfo, true, pkg)) {
13288            // If the existing package wasn't successfully deleted
13289            res.setError(INSTALL_FAILED_REPLACE_COULDNT_DELETE, "replaceNonSystemPackageLI");
13290            deletedPkg = false;
13291        } else {
13292            // Successfully deleted the old package; proceed with replace.
13293
13294            // If deleted package lived in a container, give users a chance to
13295            // relinquish resources before killing.
13296            if (deletedPackage.isForwardLocked() || isExternal(deletedPackage)) {
13297                if (DEBUG_INSTALL) {
13298                    Slog.i(TAG, "upgrading pkg " + deletedPackage + " is ASEC-hosted -> UNAVAILABLE");
13299                }
13300                final int[] uidArray = new int[] { deletedPackage.applicationInfo.uid };
13301                final ArrayList<String> pkgList = new ArrayList<String>(1);
13302                pkgList.add(deletedPackage.applicationInfo.packageName);
13303                sendResourcesChangedBroadcast(false, true, pkgList, uidArray, null);
13304            }
13305
13306            deleteCodeCacheDirsLI(pkg);
13307            deleteProfilesLI(pkg, /*destroy*/ false);
13308
13309            try {
13310                final PackageParser.Package newPackage = scanPackageTracedLI(pkg, parseFlags,
13311                        scanFlags | SCAN_UPDATE_TIME, System.currentTimeMillis(), user);
13312                updateSettingsLI(newPackage, installerPackageName, allUsers, res, user);
13313
13314                // Update the in-memory copy of the previous code paths.
13315                PackageSetting ps = mSettings.mPackages.get(pkgName);
13316                if (!killApp) {
13317                    if (ps.oldCodePaths == null) {
13318                        ps.oldCodePaths = new ArraySet<>();
13319                    }
13320                    Collections.addAll(ps.oldCodePaths, deletedPackage.baseCodePath);
13321                    if (deletedPackage.splitCodePaths != null) {
13322                        Collections.addAll(ps.oldCodePaths, deletedPackage.splitCodePaths);
13323                    }
13324                } else {
13325                    ps.oldCodePaths = null;
13326                }
13327                if (ps.childPackageNames != null) {
13328                    for (int i = ps.childPackageNames.size() - 1; i >= 0; --i) {
13329                        final String childPkgName = ps.childPackageNames.get(i);
13330                        final PackageSetting childPs = mSettings.mPackages.get(childPkgName);
13331                        childPs.oldCodePaths = ps.oldCodePaths;
13332                    }
13333                }
13334                prepareAppDataAfterInstall(newPackage);
13335                addedPkg = true;
13336            } catch (PackageManagerException e) {
13337                res.setError("Package couldn't be installed in " + pkg.codePath, e);
13338            }
13339        }
13340
13341        if (res.returnCode != PackageManager.INSTALL_SUCCEEDED) {
13342            if (DEBUG_INSTALL) Slog.d(TAG, "Install failed, rolling pack: " + pkgName);
13343
13344            // Revert all internal state mutations and added folders for the failed install
13345            if (addedPkg) {
13346                deletePackageLI(pkgName, null, true, allUsers, deleteFlags,
13347                        res.removedInfo, true, null);
13348            }
13349
13350            // Restore the old package
13351            if (deletedPkg) {
13352                if (DEBUG_INSTALL) Slog.d(TAG, "Install failed, reinstalling: " + deletedPackage);
13353                File restoreFile = new File(deletedPackage.codePath);
13354                // Parse old package
13355                boolean oldExternal = isExternal(deletedPackage);
13356                int oldParseFlags  = mDefParseFlags | PackageParser.PARSE_CHATTY |
13357                        (deletedPackage.isForwardLocked() ? PackageParser.PARSE_FORWARD_LOCK : 0) |
13358                        (oldExternal ? PackageParser.PARSE_EXTERNAL_STORAGE : 0);
13359                int oldScanFlags = SCAN_UPDATE_SIGNATURE | SCAN_UPDATE_TIME;
13360                try {
13361                    scanPackageTracedLI(restoreFile, oldParseFlags, oldScanFlags, origUpdateTime,
13362                            null);
13363                } catch (PackageManagerException e) {
13364                    Slog.e(TAG, "Failed to restore package : " + pkgName + " after failed upgrade: "
13365                            + e.getMessage());
13366                    return;
13367                }
13368
13369                synchronized (mPackages) {
13370                    // Ensure the installer package name up to date
13371                    setInstallerPackageNameLPw(deletedPackage, installerPackageName);
13372
13373                    // Update permissions for restored package
13374                    updatePermissionsLPw(deletedPackage, UPDATE_PERMISSIONS_ALL);
13375
13376                    mSettings.writeLPr();
13377                }
13378
13379                Slog.i(TAG, "Successfully restored package : " + pkgName + " after failed upgrade");
13380            }
13381        } else {
13382            synchronized (mPackages) {
13383                PackageSetting ps = mSettings.peekPackageLPr(pkg.packageName);
13384                if (ps != null) {
13385                    res.removedInfo.removedForAllUsers = mPackages.get(ps.name) == null;
13386                    if (res.removedInfo.removedChildPackages != null) {
13387                        final int childCount = res.removedInfo.removedChildPackages.size();
13388                        // Iterate in reverse as we may modify the collection
13389                        for (int i = childCount - 1; i >= 0; i--) {
13390                            String childPackageName = res.removedInfo.removedChildPackages.keyAt(i);
13391                            if (res.addedChildPackages.containsKey(childPackageName)) {
13392                                res.removedInfo.removedChildPackages.removeAt(i);
13393                            } else {
13394                                PackageRemovedInfo childInfo = res.removedInfo
13395                                        .removedChildPackages.valueAt(i);
13396                                childInfo.removedForAllUsers = mPackages.get(
13397                                        childInfo.removedPackage) == null;
13398                            }
13399                        }
13400                    }
13401                }
13402            }
13403        }
13404    }
13405
13406    private void replaceSystemPackageLI(PackageParser.Package deletedPackage,
13407            PackageParser.Package pkg, int parseFlags, int scanFlags, UserHandle user,
13408            int[] allUsers, String installerPackageName, PackageInstalledInfo res) {
13409        if (DEBUG_INSTALL) Slog.d(TAG, "replaceSystemPackageLI: new=" + pkg
13410                + ", old=" + deletedPackage);
13411
13412        final boolean disabledSystem;
13413
13414        // Set the system/privileged flags as needed
13415        parseFlags |= PackageParser.PARSE_IS_SYSTEM;
13416        if ((deletedPackage.applicationInfo.privateFlags & ApplicationInfo.PRIVATE_FLAG_PRIVILEGED)
13417                != 0) {
13418            parseFlags |= PackageParser.PARSE_IS_PRIVILEGED;
13419        }
13420
13421        // Kill package processes including services, providers, etc.
13422        killPackage(deletedPackage, "replace sys pkg");
13423
13424        // Remove existing system package
13425        removePackageLI(deletedPackage, true);
13426
13427        disabledSystem = disableSystemPackageLPw(deletedPackage, pkg);
13428        if (!disabledSystem) {
13429            // We didn't need to disable the .apk as a current system package,
13430            // which means we are replacing another update that is already
13431            // installed.  We need to make sure to delete the older one's .apk.
13432            res.removedInfo.args = createInstallArgsForExisting(0,
13433                    deletedPackage.applicationInfo.getCodePath(),
13434                    deletedPackage.applicationInfo.getResourcePath(),
13435                    getAppDexInstructionSets(deletedPackage.applicationInfo));
13436        } else {
13437            res.removedInfo.args = null;
13438        }
13439
13440        // Successfully disabled the old package. Now proceed with re-installation
13441        deleteCodeCacheDirsLI(pkg);
13442        deleteProfilesLI(pkg, /*destroy*/ false);
13443
13444        res.setReturnCode(PackageManager.INSTALL_SUCCEEDED);
13445        pkg.setApplicationInfoFlags(ApplicationInfo.FLAG_UPDATED_SYSTEM_APP,
13446                ApplicationInfo.FLAG_UPDATED_SYSTEM_APP);
13447
13448        PackageParser.Package newPackage = null;
13449        try {
13450            // Add the package to the internal data structures
13451            newPackage = scanPackageTracedLI(pkg, parseFlags, scanFlags, 0, user);
13452
13453            // Set the update and install times
13454            PackageSetting deletedPkgSetting = (PackageSetting) deletedPackage.mExtras;
13455            setInstallAndUpdateTime(newPackage, deletedPkgSetting.firstInstallTime,
13456                    System.currentTimeMillis());
13457
13458            // Check for shared user id changes
13459            String invalidPackageName = getParentOrChildPackageChangedSharedUser(
13460                    deletedPackage, newPackage);
13461            if (invalidPackageName != null) {
13462                res.setError(INSTALL_FAILED_SHARED_USER_INCOMPATIBLE,
13463                        "Forbidding shared user change from " + deletedPkgSetting.sharedUser
13464                                + " to " + invalidPackageName);
13465            }
13466
13467            // Update the package dynamic state if succeeded
13468            if (res.returnCode == PackageManager.INSTALL_SUCCEEDED) {
13469                // Now that the install succeeded make sure we remove data
13470                // directories for any child package the update removed.
13471                final int deletedChildCount = (deletedPackage.childPackages != null)
13472                        ? deletedPackage.childPackages.size() : 0;
13473                final int newChildCount = (newPackage.childPackages != null)
13474                        ? newPackage.childPackages.size() : 0;
13475                for (int i = 0; i < deletedChildCount; i++) {
13476                    PackageParser.Package deletedChildPkg = deletedPackage.childPackages.get(i);
13477                    boolean childPackageDeleted = true;
13478                    for (int j = 0; j < newChildCount; j++) {
13479                        PackageParser.Package newChildPkg = newPackage.childPackages.get(j);
13480                        if (deletedChildPkg.packageName.equals(newChildPkg.packageName)) {
13481                            childPackageDeleted = false;
13482                            break;
13483                        }
13484                    }
13485                    if (childPackageDeleted) {
13486                        PackageSetting ps = mSettings.getDisabledSystemPkgLPr(
13487                                deletedChildPkg.packageName);
13488                        if (ps != null && res.removedInfo.removedChildPackages != null) {
13489                            PackageRemovedInfo removedChildRes = res.removedInfo
13490                                    .removedChildPackages.get(deletedChildPkg.packageName);
13491                            removePackageDataLI(ps, allUsers, removedChildRes, 0, false);
13492                            removedChildRes.removedForAllUsers = mPackages.get(ps.name) == null;
13493                        }
13494                    }
13495                }
13496
13497                updateSettingsLI(newPackage, installerPackageName, allUsers, res, user);
13498                prepareAppDataAfterInstall(newPackage);
13499            }
13500        } catch (PackageManagerException e) {
13501            res.setReturnCode(INSTALL_FAILED_INTERNAL_ERROR);
13502            res.setError("Package couldn't be installed in " + pkg.codePath, e);
13503        }
13504
13505        if (res.returnCode != PackageManager.INSTALL_SUCCEEDED) {
13506            // Re installation failed. Restore old information
13507            // Remove new pkg information
13508            if (newPackage != null) {
13509                removeInstalledPackageLI(newPackage, true);
13510            }
13511            // Add back the old system package
13512            try {
13513                scanPackageTracedLI(deletedPackage, parseFlags, SCAN_UPDATE_SIGNATURE, 0, user);
13514            } catch (PackageManagerException e) {
13515                Slog.e(TAG, "Failed to restore original package: " + e.getMessage());
13516            }
13517
13518            synchronized (mPackages) {
13519                if (disabledSystem) {
13520                    enableSystemPackageLPw(deletedPackage);
13521                }
13522
13523                // Ensure the installer package name up to date
13524                setInstallerPackageNameLPw(deletedPackage, installerPackageName);
13525
13526                // Update permissions for restored package
13527                updatePermissionsLPw(deletedPackage, UPDATE_PERMISSIONS_ALL);
13528
13529                mSettings.writeLPr();
13530            }
13531
13532            Slog.i(TAG, "Successfully restored package : " + deletedPackage.packageName
13533                    + " after failed upgrade");
13534        }
13535    }
13536
13537    /**
13538     * Checks whether the parent or any of the child packages have a change shared
13539     * user. For a package to be a valid update the shred users of the parent and
13540     * the children should match. We may later support changing child shared users.
13541     * @param oldPkg The updated package.
13542     * @param newPkg The update package.
13543     * @return The shared user that change between the versions.
13544     */
13545    private String getParentOrChildPackageChangedSharedUser(PackageParser.Package oldPkg,
13546            PackageParser.Package newPkg) {
13547        // Check parent shared user
13548        if (!Objects.equals(oldPkg.mSharedUserId, newPkg.mSharedUserId)) {
13549            return newPkg.packageName;
13550        }
13551        // Check child shared users
13552        final int oldChildCount = (oldPkg.childPackages != null) ? oldPkg.childPackages.size() : 0;
13553        final int newChildCount = (newPkg.childPackages != null) ? newPkg.childPackages.size() : 0;
13554        for (int i = 0; i < newChildCount; i++) {
13555            PackageParser.Package newChildPkg = newPkg.childPackages.get(i);
13556            // If this child was present, did it have the same shared user?
13557            for (int j = 0; j < oldChildCount; j++) {
13558                PackageParser.Package oldChildPkg = oldPkg.childPackages.get(j);
13559                if (newChildPkg.packageName.equals(oldChildPkg.packageName)
13560                        && !Objects.equals(newChildPkg.mSharedUserId, oldChildPkg.mSharedUserId)) {
13561                    return newChildPkg.packageName;
13562                }
13563            }
13564        }
13565        return null;
13566    }
13567
13568    private void removeNativeBinariesLI(PackageSetting ps) {
13569        // Remove the lib path for the parent package
13570        if (ps != null) {
13571            NativeLibraryHelper.removeNativeBinariesLI(ps.legacyNativeLibraryPathString);
13572            // Remove the lib path for the child packages
13573            final int childCount = (ps.childPackageNames != null) ? ps.childPackageNames.size() : 0;
13574            for (int i = 0; i < childCount; i++) {
13575                PackageSetting childPs = null;
13576                synchronized (mPackages) {
13577                    childPs = mSettings.peekPackageLPr(ps.childPackageNames.get(i));
13578                }
13579                if (childPs != null) {
13580                    NativeLibraryHelper.removeNativeBinariesLI(childPs
13581                            .legacyNativeLibraryPathString);
13582                }
13583            }
13584        }
13585    }
13586
13587    private void enableSystemPackageLPw(PackageParser.Package pkg) {
13588        // Enable the parent package
13589        mSettings.enableSystemPackageLPw(pkg.packageName);
13590        // Enable the child packages
13591        final int childCount = (pkg.childPackages != null) ? pkg.childPackages.size() : 0;
13592        for (int i = 0; i < childCount; i++) {
13593            PackageParser.Package childPkg = pkg.childPackages.get(i);
13594            mSettings.enableSystemPackageLPw(childPkg.packageName);
13595        }
13596    }
13597
13598    private boolean disableSystemPackageLPw(PackageParser.Package oldPkg,
13599            PackageParser.Package newPkg) {
13600        // Disable the parent package (parent always replaced)
13601        boolean disabled = mSettings.disableSystemPackageLPw(oldPkg.packageName, true);
13602        // Disable the child packages
13603        final int childCount = (oldPkg.childPackages != null) ? oldPkg.childPackages.size() : 0;
13604        for (int i = 0; i < childCount; i++) {
13605            PackageParser.Package childPkg = oldPkg.childPackages.get(i);
13606            final boolean replace = newPkg.hasChildPackage(childPkg.packageName);
13607            disabled |= mSettings.disableSystemPackageLPw(childPkg.packageName, replace);
13608        }
13609        return disabled;
13610    }
13611
13612    private void setInstallerPackageNameLPw(PackageParser.Package pkg,
13613            String installerPackageName) {
13614        // Enable the parent package
13615        mSettings.setInstallerPackageName(pkg.packageName, installerPackageName);
13616        // Enable the child packages
13617        final int childCount = (pkg.childPackages != null) ? pkg.childPackages.size() : 0;
13618        for (int i = 0; i < childCount; i++) {
13619            PackageParser.Package childPkg = pkg.childPackages.get(i);
13620            mSettings.setInstallerPackageName(childPkg.packageName, installerPackageName);
13621        }
13622    }
13623
13624    private int[] revokeUnusedSharedUserPermissionsLPw(SharedUserSetting su, int[] allUserIds) {
13625        // Collect all used permissions in the UID
13626        ArraySet<String> usedPermissions = new ArraySet<>();
13627        final int packageCount = su.packages.size();
13628        for (int i = 0; i < packageCount; i++) {
13629            PackageSetting ps = su.packages.valueAt(i);
13630            if (ps.pkg == null) {
13631                continue;
13632            }
13633            final int requestedPermCount = ps.pkg.requestedPermissions.size();
13634            for (int j = 0; j < requestedPermCount; j++) {
13635                String permission = ps.pkg.requestedPermissions.get(j);
13636                BasePermission bp = mSettings.mPermissions.get(permission);
13637                if (bp != null) {
13638                    usedPermissions.add(permission);
13639                }
13640            }
13641        }
13642
13643        PermissionsState permissionsState = su.getPermissionsState();
13644        // Prune install permissions
13645        List<PermissionState> installPermStates = permissionsState.getInstallPermissionStates();
13646        final int installPermCount = installPermStates.size();
13647        for (int i = installPermCount - 1; i >= 0;  i--) {
13648            PermissionState permissionState = installPermStates.get(i);
13649            if (!usedPermissions.contains(permissionState.getName())) {
13650                BasePermission bp = mSettings.mPermissions.get(permissionState.getName());
13651                if (bp != null) {
13652                    permissionsState.revokeInstallPermission(bp);
13653                    permissionsState.updatePermissionFlags(bp, UserHandle.USER_ALL,
13654                            PackageManager.MASK_PERMISSION_FLAGS, 0);
13655                }
13656            }
13657        }
13658
13659        int[] runtimePermissionChangedUserIds = EmptyArray.INT;
13660
13661        // Prune runtime permissions
13662        for (int userId : allUserIds) {
13663            List<PermissionState> runtimePermStates = permissionsState
13664                    .getRuntimePermissionStates(userId);
13665            final int runtimePermCount = runtimePermStates.size();
13666            for (int i = runtimePermCount - 1; i >= 0; i--) {
13667                PermissionState permissionState = runtimePermStates.get(i);
13668                if (!usedPermissions.contains(permissionState.getName())) {
13669                    BasePermission bp = mSettings.mPermissions.get(permissionState.getName());
13670                    if (bp != null) {
13671                        permissionsState.revokeRuntimePermission(bp, userId);
13672                        permissionsState.updatePermissionFlags(bp, userId,
13673                                PackageManager.MASK_PERMISSION_FLAGS, 0);
13674                        runtimePermissionChangedUserIds = ArrayUtils.appendInt(
13675                                runtimePermissionChangedUserIds, userId);
13676                    }
13677                }
13678            }
13679        }
13680
13681        return runtimePermissionChangedUserIds;
13682    }
13683
13684    private void updateSettingsLI(PackageParser.Package newPackage, String installerPackageName,
13685            int[] allUsers, PackageInstalledInfo res, UserHandle user) {
13686        // Update the parent package setting
13687        updateSettingsInternalLI(newPackage, installerPackageName, allUsers, res.origUsers,
13688                res, user);
13689        // Update the child packages setting
13690        final int childCount = (newPackage.childPackages != null)
13691                ? newPackage.childPackages.size() : 0;
13692        for (int i = 0; i < childCount; i++) {
13693            PackageParser.Package childPackage = newPackage.childPackages.get(i);
13694            PackageInstalledInfo childRes = res.addedChildPackages.get(childPackage.packageName);
13695            updateSettingsInternalLI(childPackage, installerPackageName, allUsers,
13696                    childRes.origUsers, childRes, user);
13697        }
13698    }
13699
13700    private void updateSettingsInternalLI(PackageParser.Package newPackage,
13701            String installerPackageName, int[] allUsers, int[] installedForUsers,
13702            PackageInstalledInfo res, UserHandle user) {
13703        Trace.traceBegin(TRACE_TAG_PACKAGE_MANAGER, "updateSettings");
13704
13705        String pkgName = newPackage.packageName;
13706        synchronized (mPackages) {
13707            //write settings. the installStatus will be incomplete at this stage.
13708            //note that the new package setting would have already been
13709            //added to mPackages. It hasn't been persisted yet.
13710            mSettings.setInstallStatus(pkgName, PackageSettingBase.PKG_INSTALL_INCOMPLETE);
13711            Trace.traceBegin(TRACE_TAG_PACKAGE_MANAGER, "writeSettings");
13712            mSettings.writeLPr();
13713            Trace.traceEnd(TRACE_TAG_PACKAGE_MANAGER);
13714        }
13715
13716        if (DEBUG_INSTALL) Slog.d(TAG, "New package installed in " + newPackage.codePath);
13717        synchronized (mPackages) {
13718            updatePermissionsLPw(newPackage.packageName, newPackage,
13719                    UPDATE_PERMISSIONS_REPLACE_PKG | (newPackage.permissions.size() > 0
13720                            ? UPDATE_PERMISSIONS_ALL : 0));
13721            // For system-bundled packages, we assume that installing an upgraded version
13722            // of the package implies that the user actually wants to run that new code,
13723            // so we enable the package.
13724            PackageSetting ps = mSettings.mPackages.get(pkgName);
13725            final int userId = user.getIdentifier();
13726            if (ps != null) {
13727                if (isSystemApp(newPackage)) {
13728                    if (DEBUG_INSTALL) {
13729                        Slog.d(TAG, "Implicitly enabling system package on upgrade: " + pkgName);
13730                    }
13731                    // Enable system package for requested users
13732                    if (res.origUsers != null) {
13733                        for (int origUserId : res.origUsers) {
13734                            if (userId == UserHandle.USER_ALL || userId == origUserId) {
13735                                ps.setEnabled(COMPONENT_ENABLED_STATE_DEFAULT,
13736                                        origUserId, installerPackageName);
13737                            }
13738                        }
13739                    }
13740                    // Also convey the prior install/uninstall state
13741                    if (allUsers != null && installedForUsers != null) {
13742                        for (int currentUserId : allUsers) {
13743                            final boolean installed = ArrayUtils.contains(
13744                                    installedForUsers, currentUserId);
13745                            if (DEBUG_INSTALL) {
13746                                Slog.d(TAG, "    user " + currentUserId + " => " + installed);
13747                            }
13748                            ps.setInstalled(installed, currentUserId);
13749                        }
13750                        // these install state changes will be persisted in the
13751                        // upcoming call to mSettings.writeLPr().
13752                    }
13753                }
13754                // It's implied that when a user requests installation, they want the app to be
13755                // installed and enabled.
13756                if (userId != UserHandle.USER_ALL) {
13757                    ps.setInstalled(true, userId);
13758                    ps.setEnabled(COMPONENT_ENABLED_STATE_DEFAULT, userId, installerPackageName);
13759                }
13760            }
13761            res.name = pkgName;
13762            res.uid = newPackage.applicationInfo.uid;
13763            res.pkg = newPackage;
13764            mSettings.setInstallStatus(pkgName, PackageSettingBase.PKG_INSTALL_COMPLETE);
13765            mSettings.setInstallerPackageName(pkgName, installerPackageName);
13766            res.setReturnCode(PackageManager.INSTALL_SUCCEEDED);
13767            //to update install status
13768            Trace.traceBegin(TRACE_TAG_PACKAGE_MANAGER, "writeSettings");
13769            mSettings.writeLPr();
13770            Trace.traceEnd(TRACE_TAG_PACKAGE_MANAGER);
13771        }
13772
13773        Trace.traceEnd(TRACE_TAG_PACKAGE_MANAGER);
13774    }
13775
13776    private void installPackageTracedLI(InstallArgs args, PackageInstalledInfo res) {
13777        try {
13778            Trace.traceBegin(TRACE_TAG_PACKAGE_MANAGER, "installPackage");
13779            installPackageLI(args, res);
13780        } finally {
13781            Trace.traceEnd(TRACE_TAG_PACKAGE_MANAGER);
13782        }
13783    }
13784
13785    private void installPackageLI(InstallArgs args, PackageInstalledInfo res) {
13786        final int installFlags = args.installFlags;
13787        final String installerPackageName = args.installerPackageName;
13788        final String volumeUuid = args.volumeUuid;
13789        final File tmpPackageFile = new File(args.getCodePath());
13790        final boolean forwardLocked = ((installFlags & PackageManager.INSTALL_FORWARD_LOCK) != 0);
13791        final boolean onExternal = (((installFlags & PackageManager.INSTALL_EXTERNAL) != 0)
13792                || (args.volumeUuid != null));
13793        final boolean ephemeral = ((installFlags & PackageManager.INSTALL_EPHEMERAL) != 0);
13794        boolean replace = false;
13795        int scanFlags = SCAN_NEW_INSTALL | SCAN_UPDATE_SIGNATURE;
13796        if (args.move != null) {
13797            // moving a complete application; perform an initial scan on the new install location
13798            scanFlags |= SCAN_INITIAL;
13799        }
13800        if ((installFlags & PackageManager.INSTALL_DONT_KILL_APP) != 0) {
13801            scanFlags |= SCAN_DONT_KILL_APP;
13802        }
13803
13804        // Result object to be returned
13805        res.setReturnCode(PackageManager.INSTALL_SUCCEEDED);
13806
13807        if (DEBUG_INSTALL) Slog.d(TAG, "installPackageLI: path=" + tmpPackageFile);
13808
13809        // Sanity check
13810        if (ephemeral && (forwardLocked || onExternal)) {
13811            Slog.i(TAG, "Incompatible ephemeral install; fwdLocked=" + forwardLocked
13812                    + " external=" + onExternal);
13813            res.setReturnCode(PackageManager.INSTALL_FAILED_EPHEMERAL_INVALID);
13814            return;
13815        }
13816
13817        // Retrieve PackageSettings and parse package
13818        final int parseFlags = mDefParseFlags | PackageParser.PARSE_CHATTY
13819                | PackageParser.PARSE_ENFORCE_CODE
13820                | (forwardLocked ? PackageParser.PARSE_FORWARD_LOCK : 0)
13821                | (onExternal ? PackageParser.PARSE_EXTERNAL_STORAGE : 0)
13822                | (ephemeral ? PackageParser.PARSE_IS_EPHEMERAL : 0);
13823        PackageParser pp = new PackageParser();
13824        pp.setSeparateProcesses(mSeparateProcesses);
13825        pp.setDisplayMetrics(mMetrics);
13826
13827        Trace.traceBegin(TRACE_TAG_PACKAGE_MANAGER, "parsePackage");
13828        final PackageParser.Package pkg;
13829        try {
13830            pkg = pp.parsePackage(tmpPackageFile, parseFlags);
13831        } catch (PackageParserException e) {
13832            res.setError("Failed parse during installPackageLI", e);
13833            return;
13834        } finally {
13835            Trace.traceEnd(TRACE_TAG_PACKAGE_MANAGER);
13836        }
13837
13838        // If we are installing a clustered package add results for the children
13839        if (pkg.childPackages != null) {
13840            synchronized (mPackages) {
13841                final int childCount = pkg.childPackages.size();
13842                for (int i = 0; i < childCount; i++) {
13843                    PackageParser.Package childPkg = pkg.childPackages.get(i);
13844                    PackageInstalledInfo childRes = new PackageInstalledInfo();
13845                    childRes.setReturnCode(PackageManager.INSTALL_SUCCEEDED);
13846                    childRes.pkg = childPkg;
13847                    childRes.name = childPkg.packageName;
13848                    PackageSetting childPs = mSettings.peekPackageLPr(childPkg.packageName);
13849                    if (childPs != null) {
13850                        childRes.origUsers = childPs.queryInstalledUsers(
13851                                sUserManager.getUserIds(), true);
13852                    }
13853                    if ((mPackages.containsKey(childPkg.packageName))) {
13854                        childRes.removedInfo = new PackageRemovedInfo();
13855                        childRes.removedInfo.removedPackage = childPkg.packageName;
13856                    }
13857                    if (res.addedChildPackages == null) {
13858                        res.addedChildPackages = new ArrayMap<>();
13859                    }
13860                    res.addedChildPackages.put(childPkg.packageName, childRes);
13861                }
13862            }
13863        }
13864
13865        // If package doesn't declare API override, mark that we have an install
13866        // time CPU ABI override.
13867        if (TextUtils.isEmpty(pkg.cpuAbiOverride)) {
13868            pkg.cpuAbiOverride = args.abiOverride;
13869        }
13870
13871        String pkgName = res.name = pkg.packageName;
13872        if ((pkg.applicationInfo.flags&ApplicationInfo.FLAG_TEST_ONLY) != 0) {
13873            if ((installFlags & PackageManager.INSTALL_ALLOW_TEST) == 0) {
13874                res.setError(INSTALL_FAILED_TEST_ONLY, "installPackageLI");
13875                return;
13876            }
13877        }
13878
13879        Trace.traceBegin(TRACE_TAG_PACKAGE_MANAGER, "collectCertificates");
13880        try {
13881            PackageParser.collectCertificates(pkg, parseFlags);
13882        } catch (PackageParserException e) {
13883            res.setError("Failed collect during installPackageLI", e);
13884            return;
13885        } finally {
13886            Trace.traceEnd(TRACE_TAG_PACKAGE_MANAGER);
13887        }
13888
13889        // Get rid of all references to package scan path via parser.
13890        pp = null;
13891        String oldCodePath = null;
13892        boolean systemApp = false;
13893        synchronized (mPackages) {
13894            // Check if installing already existing package
13895            if ((installFlags & PackageManager.INSTALL_REPLACE_EXISTING) != 0) {
13896                String oldName = mSettings.mRenamedPackages.get(pkgName);
13897                if (pkg.mOriginalPackages != null
13898                        && pkg.mOriginalPackages.contains(oldName)
13899                        && mPackages.containsKey(oldName)) {
13900                    // This package is derived from an original package,
13901                    // and this device has been updating from that original
13902                    // name.  We must continue using the original name, so
13903                    // rename the new package here.
13904                    pkg.setPackageName(oldName);
13905                    pkgName = pkg.packageName;
13906                    replace = true;
13907                    if (DEBUG_INSTALL) Slog.d(TAG, "Replacing existing renamed package: oldName="
13908                            + oldName + " pkgName=" + pkgName);
13909                } else if (mPackages.containsKey(pkgName)) {
13910                    // This package, under its official name, already exists
13911                    // on the device; we should replace it.
13912                    replace = true;
13913                    if (DEBUG_INSTALL) Slog.d(TAG, "Replace existing pacakge: " + pkgName);
13914                }
13915
13916                // Child packages are installed through the parent package
13917                if (pkg.parentPackage != null) {
13918                    res.setError(PackageManager.INSTALL_PARSE_FAILED_BAD_PACKAGE_NAME,
13919                            "Package " + pkg.packageName + " is child of package "
13920                                    + pkg.parentPackage.parentPackage + ". Child packages "
13921                                    + "can be updated only through the parent package.");
13922                    return;
13923                }
13924
13925                if (replace) {
13926                    // Prevent apps opting out from runtime permissions
13927                    PackageParser.Package oldPackage = mPackages.get(pkgName);
13928                    final int oldTargetSdk = oldPackage.applicationInfo.targetSdkVersion;
13929                    final int newTargetSdk = pkg.applicationInfo.targetSdkVersion;
13930                    if (oldTargetSdk > Build.VERSION_CODES.LOLLIPOP_MR1
13931                            && newTargetSdk <= Build.VERSION_CODES.LOLLIPOP_MR1) {
13932                        res.setError(PackageManager.INSTALL_FAILED_PERMISSION_MODEL_DOWNGRADE,
13933                                "Package " + pkg.packageName + " new target SDK " + newTargetSdk
13934                                        + " doesn't support runtime permissions but the old"
13935                                        + " target SDK " + oldTargetSdk + " does.");
13936                        return;
13937                    }
13938
13939                    // Prevent installing of child packages
13940                    if (oldPackage.parentPackage != null) {
13941                        res.setError(PackageManager.INSTALL_PARSE_FAILED_BAD_PACKAGE_NAME,
13942                                "Package " + pkg.packageName + " is child of package "
13943                                        + oldPackage.parentPackage + ". Child packages "
13944                                        + "can be updated only through the parent package.");
13945                        return;
13946                    }
13947                }
13948            }
13949
13950            PackageSetting ps = mSettings.mPackages.get(pkgName);
13951            if (ps != null) {
13952                if (DEBUG_INSTALL) Slog.d(TAG, "Existing package: " + ps);
13953
13954                // Quick sanity check that we're signed correctly if updating;
13955                // we'll check this again later when scanning, but we want to
13956                // bail early here before tripping over redefined permissions.
13957                if (shouldCheckUpgradeKeySetLP(ps, scanFlags)) {
13958                    if (!checkUpgradeKeySetLP(ps, pkg)) {
13959                        res.setError(INSTALL_FAILED_UPDATE_INCOMPATIBLE, "Package "
13960                                + pkg.packageName + " upgrade keys do not match the "
13961                                + "previously installed version");
13962                        return;
13963                    }
13964                } else {
13965                    try {
13966                        verifySignaturesLP(ps, pkg);
13967                    } catch (PackageManagerException e) {
13968                        res.setError(e.error, e.getMessage());
13969                        return;
13970                    }
13971                }
13972
13973                oldCodePath = mSettings.mPackages.get(pkgName).codePathString;
13974                if (ps.pkg != null && ps.pkg.applicationInfo != null) {
13975                    systemApp = (ps.pkg.applicationInfo.flags &
13976                            ApplicationInfo.FLAG_SYSTEM) != 0;
13977                }
13978                res.origUsers = ps.queryInstalledUsers(sUserManager.getUserIds(), true);
13979            }
13980
13981            // Check whether the newly-scanned package wants to define an already-defined perm
13982            int N = pkg.permissions.size();
13983            for (int i = N-1; i >= 0; i--) {
13984                PackageParser.Permission perm = pkg.permissions.get(i);
13985                BasePermission bp = mSettings.mPermissions.get(perm.info.name);
13986                if (bp != null) {
13987                    // If the defining package is signed with our cert, it's okay.  This
13988                    // also includes the "updating the same package" case, of course.
13989                    // "updating same package" could also involve key-rotation.
13990                    final boolean sigsOk;
13991                    if (bp.sourcePackage.equals(pkg.packageName)
13992                            && (bp.packageSetting instanceof PackageSetting)
13993                            && (shouldCheckUpgradeKeySetLP((PackageSetting) bp.packageSetting,
13994                                    scanFlags))) {
13995                        sigsOk = checkUpgradeKeySetLP((PackageSetting) bp.packageSetting, pkg);
13996                    } else {
13997                        sigsOk = compareSignatures(bp.packageSetting.signatures.mSignatures,
13998                                pkg.mSignatures) == PackageManager.SIGNATURE_MATCH;
13999                    }
14000                    if (!sigsOk) {
14001                        // If the owning package is the system itself, we log but allow
14002                        // install to proceed; we fail the install on all other permission
14003                        // redefinitions.
14004                        if (!bp.sourcePackage.equals("android")) {
14005                            res.setError(INSTALL_FAILED_DUPLICATE_PERMISSION, "Package "
14006                                    + pkg.packageName + " attempting to redeclare permission "
14007                                    + perm.info.name + " already owned by " + bp.sourcePackage);
14008                            res.origPermission = perm.info.name;
14009                            res.origPackage = bp.sourcePackage;
14010                            return;
14011                        } else {
14012                            Slog.w(TAG, "Package " + pkg.packageName
14013                                    + " attempting to redeclare system permission "
14014                                    + perm.info.name + "; ignoring new declaration");
14015                            pkg.permissions.remove(i);
14016                        }
14017                    }
14018                }
14019            }
14020        }
14021
14022        if (systemApp) {
14023            if (onExternal) {
14024                // Abort update; system app can't be replaced with app on sdcard
14025                res.setError(INSTALL_FAILED_INVALID_INSTALL_LOCATION,
14026                        "Cannot install updates to system apps on sdcard");
14027                return;
14028            } else if (ephemeral) {
14029                // Abort update; system app can't be replaced with an ephemeral app
14030                res.setError(INSTALL_FAILED_EPHEMERAL_INVALID,
14031                        "Cannot update a system app with an ephemeral app");
14032                return;
14033            }
14034        }
14035
14036        if (args.move != null) {
14037            // We did an in-place move, so dex is ready to roll
14038            scanFlags |= SCAN_NO_DEX;
14039            scanFlags |= SCAN_MOVE;
14040
14041            synchronized (mPackages) {
14042                final PackageSetting ps = mSettings.mPackages.get(pkgName);
14043                if (ps == null) {
14044                    res.setError(INSTALL_FAILED_INTERNAL_ERROR,
14045                            "Missing settings for moved package " + pkgName);
14046                }
14047
14048                // We moved the entire application as-is, so bring over the
14049                // previously derived ABI information.
14050                pkg.applicationInfo.primaryCpuAbi = ps.primaryCpuAbiString;
14051                pkg.applicationInfo.secondaryCpuAbi = ps.secondaryCpuAbiString;
14052            }
14053
14054        } else if (!forwardLocked && !pkg.applicationInfo.isExternalAsec()) {
14055            // Enable SCAN_NO_DEX flag to skip dexopt at a later stage
14056            scanFlags |= SCAN_NO_DEX;
14057
14058            try {
14059                String abiOverride = (TextUtils.isEmpty(pkg.cpuAbiOverride) ?
14060                    args.abiOverride : pkg.cpuAbiOverride);
14061                derivePackageAbi(pkg, new File(pkg.codePath), abiOverride,
14062                        true /* extract libs */);
14063            } catch (PackageManagerException pme) {
14064                Slog.e(TAG, "Error deriving application ABI", pme);
14065                res.setError(INSTALL_FAILED_INTERNAL_ERROR, "Error deriving application ABI");
14066                return;
14067            }
14068
14069
14070            Trace.traceBegin(TRACE_TAG_PACKAGE_MANAGER, "dexopt");
14071            // Do not run PackageDexOptimizer through the local performDexOpt
14072            // method because `pkg` is not in `mPackages` yet.
14073            int result = mPackageDexOptimizer.performDexOpt(pkg, null /* instructionSets */,
14074                    false /* checkProfiles */, getCompilerFilterForReason(REASON_INSTALL));
14075            Trace.traceEnd(TRACE_TAG_PACKAGE_MANAGER);
14076            if (result == PackageDexOptimizer.DEX_OPT_FAILED) {
14077                String msg = "Extracking package failed for " + pkgName;
14078                res.setError(INSTALL_FAILED_DEXOPT, msg);
14079                return;
14080            }
14081        }
14082
14083        if (!args.doRename(res.returnCode, pkg, oldCodePath)) {
14084            res.setError(INSTALL_FAILED_INSUFFICIENT_STORAGE, "Failed rename");
14085            return;
14086        }
14087
14088        startIntentFilterVerifications(args.user.getIdentifier(), replace, pkg);
14089
14090        if (replace) {
14091            replacePackageLI(pkg, parseFlags, scanFlags | SCAN_REPLACING, args.user,
14092                    installerPackageName, res);
14093        } else {
14094            installNewPackageLI(pkg, parseFlags, scanFlags | SCAN_DELETE_DATA_ON_FAILURES,
14095                    args.user, installerPackageName, volumeUuid, res);
14096        }
14097        synchronized (mPackages) {
14098            final PackageSetting ps = mSettings.mPackages.get(pkgName);
14099            if (ps != null) {
14100                res.newUsers = ps.queryInstalledUsers(sUserManager.getUserIds(), true);
14101            }
14102
14103            final int childCount = (pkg.childPackages != null) ? pkg.childPackages.size() : 0;
14104            for (int i = 0; i < childCount; i++) {
14105                PackageParser.Package childPkg = pkg.childPackages.get(i);
14106                PackageInstalledInfo childRes = res.addedChildPackages.get(childPkg.packageName);
14107                PackageSetting childPs = mSettings.peekPackageLPr(childPkg.packageName);
14108                if (childPs != null) {
14109                    childRes.newUsers = childPs.queryInstalledUsers(
14110                            sUserManager.getUserIds(), true);
14111                }
14112            }
14113        }
14114    }
14115
14116    private void startIntentFilterVerifications(int userId, boolean replacing,
14117            PackageParser.Package pkg) {
14118        if (mIntentFilterVerifierComponent == null) {
14119            Slog.w(TAG, "No IntentFilter verification will not be done as "
14120                    + "there is no IntentFilterVerifier available!");
14121            return;
14122        }
14123
14124        final int verifierUid = getPackageUid(
14125                mIntentFilterVerifierComponent.getPackageName(),
14126                MATCH_DEBUG_TRIAGED_MISSING,
14127                (userId == UserHandle.USER_ALL) ? UserHandle.USER_SYSTEM : userId);
14128
14129        Message msg = mHandler.obtainMessage(START_INTENT_FILTER_VERIFICATIONS);
14130        msg.obj = new IFVerificationParams(pkg, replacing, userId, verifierUid);
14131        mHandler.sendMessage(msg);
14132
14133        final int childCount = (pkg.childPackages != null) ? pkg.childPackages.size() : 0;
14134        for (int i = 0; i < childCount; i++) {
14135            PackageParser.Package childPkg = pkg.childPackages.get(i);
14136            msg = mHandler.obtainMessage(START_INTENT_FILTER_VERIFICATIONS);
14137            msg.obj = new IFVerificationParams(childPkg, replacing, userId, verifierUid);
14138            mHandler.sendMessage(msg);
14139        }
14140    }
14141
14142    private void verifyIntentFiltersIfNeeded(int userId, int verifierUid, boolean replacing,
14143            PackageParser.Package pkg) {
14144        int size = pkg.activities.size();
14145        if (size == 0) {
14146            if (DEBUG_DOMAIN_VERIFICATION) Slog.d(TAG,
14147                    "No activity, so no need to verify any IntentFilter!");
14148            return;
14149        }
14150
14151        final boolean hasDomainURLs = hasDomainURLs(pkg);
14152        if (!hasDomainURLs) {
14153            if (DEBUG_DOMAIN_VERIFICATION) Slog.d(TAG,
14154                    "No domain URLs, so no need to verify any IntentFilter!");
14155            return;
14156        }
14157
14158        if (DEBUG_DOMAIN_VERIFICATION) Slog.d(TAG, "Checking for userId:" + userId
14159                + " if any IntentFilter from the " + size
14160                + " Activities needs verification ...");
14161
14162        int count = 0;
14163        final String packageName = pkg.packageName;
14164
14165        synchronized (mPackages) {
14166            // If this is a new install and we see that we've already run verification for this
14167            // package, we have nothing to do: it means the state was restored from backup.
14168            if (!replacing) {
14169                IntentFilterVerificationInfo ivi =
14170                        mSettings.getIntentFilterVerificationLPr(packageName);
14171                if (ivi != null) {
14172                    if (DEBUG_DOMAIN_VERIFICATION) {
14173                        Slog.i(TAG, "Package " + packageName+ " already verified: status="
14174                                + ivi.getStatusString());
14175                    }
14176                    return;
14177                }
14178            }
14179
14180            // If any filters need to be verified, then all need to be.
14181            boolean needToVerify = false;
14182            for (PackageParser.Activity a : pkg.activities) {
14183                for (ActivityIntentInfo filter : a.intents) {
14184                    if (filter.needsVerification() && needsNetworkVerificationLPr(filter)) {
14185                        if (DEBUG_DOMAIN_VERIFICATION) {
14186                            Slog.d(TAG, "Intent filter needs verification, so processing all filters");
14187                        }
14188                        needToVerify = true;
14189                        break;
14190                    }
14191                }
14192            }
14193
14194            if (needToVerify) {
14195                final int verificationId = mIntentFilterVerificationToken++;
14196                for (PackageParser.Activity a : pkg.activities) {
14197                    for (ActivityIntentInfo filter : a.intents) {
14198                        if (filter.handlesWebUris(true) && needsNetworkVerificationLPr(filter)) {
14199                            if (DEBUG_DOMAIN_VERIFICATION) Slog.d(TAG,
14200                                    "Verification needed for IntentFilter:" + filter.toString());
14201                            mIntentFilterVerifier.addOneIntentFilterVerification(
14202                                    verifierUid, userId, verificationId, filter, packageName);
14203                            count++;
14204                        }
14205                    }
14206                }
14207            }
14208        }
14209
14210        if (count > 0) {
14211            if (DEBUG_DOMAIN_VERIFICATION) Slog.d(TAG, "Starting " + count
14212                    + " IntentFilter verification" + (count > 1 ? "s" : "")
14213                    +  " for userId:" + userId);
14214            mIntentFilterVerifier.startVerifications(userId);
14215        } else {
14216            if (DEBUG_DOMAIN_VERIFICATION) {
14217                Slog.d(TAG, "No filters or not all autoVerify for " + packageName);
14218            }
14219        }
14220    }
14221
14222    private boolean needsNetworkVerificationLPr(ActivityIntentInfo filter) {
14223        final ComponentName cn  = filter.activity.getComponentName();
14224        final String packageName = cn.getPackageName();
14225
14226        IntentFilterVerificationInfo ivi = mSettings.getIntentFilterVerificationLPr(
14227                packageName);
14228        if (ivi == null) {
14229            return true;
14230        }
14231        int status = ivi.getStatus();
14232        switch (status) {
14233            case INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_UNDEFINED:
14234            case INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_ASK:
14235                return true;
14236
14237            default:
14238                // Nothing to do
14239                return false;
14240        }
14241    }
14242
14243    private static boolean isMultiArch(ApplicationInfo info) {
14244        return (info.flags & ApplicationInfo.FLAG_MULTIARCH) != 0;
14245    }
14246
14247    private static boolean isExternal(PackageParser.Package pkg) {
14248        return (pkg.applicationInfo.flags & ApplicationInfo.FLAG_EXTERNAL_STORAGE) != 0;
14249    }
14250
14251    private static boolean isExternal(PackageSetting ps) {
14252        return (ps.pkgFlags & ApplicationInfo.FLAG_EXTERNAL_STORAGE) != 0;
14253    }
14254
14255    private static boolean isEphemeral(PackageParser.Package pkg) {
14256        return pkg.applicationInfo.isEphemeralApp();
14257    }
14258
14259    private static boolean isEphemeral(PackageSetting ps) {
14260        return ps.pkg != null && isEphemeral(ps.pkg);
14261    }
14262
14263    private static boolean isSystemApp(PackageParser.Package pkg) {
14264        return (pkg.applicationInfo.flags & ApplicationInfo.FLAG_SYSTEM) != 0;
14265    }
14266
14267    private static boolean isPrivilegedApp(PackageParser.Package pkg) {
14268        return (pkg.applicationInfo.privateFlags & ApplicationInfo.PRIVATE_FLAG_PRIVILEGED) != 0;
14269    }
14270
14271    private static boolean hasDomainURLs(PackageParser.Package pkg) {
14272        return (pkg.applicationInfo.privateFlags & ApplicationInfo.PRIVATE_FLAG_HAS_DOMAIN_URLS) != 0;
14273    }
14274
14275    private static boolean isSystemApp(PackageSetting ps) {
14276        return (ps.pkgFlags & ApplicationInfo.FLAG_SYSTEM) != 0;
14277    }
14278
14279    private static boolean isUpdatedSystemApp(PackageSetting ps) {
14280        return (ps.pkgFlags & ApplicationInfo.FLAG_UPDATED_SYSTEM_APP) != 0;
14281    }
14282
14283    private int packageFlagsToInstallFlags(PackageSetting ps) {
14284        int installFlags = 0;
14285        if (isEphemeral(ps)) {
14286            installFlags |= PackageManager.INSTALL_EPHEMERAL;
14287        }
14288        if (isExternal(ps) && TextUtils.isEmpty(ps.volumeUuid)) {
14289            // This existing package was an external ASEC install when we have
14290            // the external flag without a UUID
14291            installFlags |= PackageManager.INSTALL_EXTERNAL;
14292        }
14293        if (ps.isForwardLocked()) {
14294            installFlags |= PackageManager.INSTALL_FORWARD_LOCK;
14295        }
14296        return installFlags;
14297    }
14298
14299    private String getVolumeUuidForPackage(PackageParser.Package pkg) {
14300        if (isExternal(pkg)) {
14301            if (TextUtils.isEmpty(pkg.volumeUuid)) {
14302                return StorageManager.UUID_PRIMARY_PHYSICAL;
14303            } else {
14304                return pkg.volumeUuid;
14305            }
14306        } else {
14307            return StorageManager.UUID_PRIVATE_INTERNAL;
14308        }
14309    }
14310
14311    private VersionInfo getSettingsVersionForPackage(PackageParser.Package pkg) {
14312        if (isExternal(pkg)) {
14313            if (TextUtils.isEmpty(pkg.volumeUuid)) {
14314                return mSettings.getExternalVersion();
14315            } else {
14316                return mSettings.findOrCreateVersion(pkg.volumeUuid);
14317            }
14318        } else {
14319            return mSettings.getInternalVersion();
14320        }
14321    }
14322
14323    private void deleteTempPackageFiles() {
14324        final FilenameFilter filter = new FilenameFilter() {
14325            public boolean accept(File dir, String name) {
14326                return name.startsWith("vmdl") && name.endsWith(".tmp");
14327            }
14328        };
14329        for (File file : mDrmAppPrivateInstallDir.listFiles(filter)) {
14330            file.delete();
14331        }
14332    }
14333
14334    @Override
14335    public void deletePackageAsUser(String packageName, IPackageDeleteObserver observer, int userId,
14336            int flags) {
14337        deletePackage(packageName, new LegacyPackageDeleteObserver(observer).getBinder(), userId,
14338                flags);
14339    }
14340
14341    @Override
14342    public void deletePackage(final String packageName,
14343            final IPackageDeleteObserver2 observer, final int userId, final int flags) {
14344        mContext.enforceCallingOrSelfPermission(
14345                android.Manifest.permission.DELETE_PACKAGES, null);
14346        Preconditions.checkNotNull(packageName);
14347        Preconditions.checkNotNull(observer);
14348        final int uid = Binder.getCallingUid();
14349        final boolean deleteAllUsers = (flags & PackageManager.DELETE_ALL_USERS) != 0;
14350        final int[] users = deleteAllUsers ? sUserManager.getUserIds() : new int[]{ userId };
14351        if (UserHandle.getUserId(uid) != userId || (deleteAllUsers && users.length > 1)) {
14352            mContext.enforceCallingOrSelfPermission(
14353                    android.Manifest.permission.INTERACT_ACROSS_USERS_FULL,
14354                    "deletePackage for user " + userId);
14355        }
14356
14357        if (isUserRestricted(userId, UserManager.DISALLOW_UNINSTALL_APPS)) {
14358            try {
14359                observer.onPackageDeleted(packageName,
14360                        PackageManager.DELETE_FAILED_USER_RESTRICTED, null);
14361            } catch (RemoteException re) {
14362            }
14363            return;
14364        }
14365
14366        if (!deleteAllUsers && getBlockUninstallForUser(packageName, userId)) {
14367            try {
14368                observer.onPackageDeleted(packageName,
14369                        PackageManager.DELETE_FAILED_OWNER_BLOCKED, null);
14370            } catch (RemoteException re) {
14371            }
14372            return;
14373        }
14374
14375        if (DEBUG_REMOVE) {
14376            Slog.d(TAG, "deletePackageAsUser: pkg=" + packageName + " user=" + userId
14377                    + " deleteAllUsers: " + deleteAllUsers );
14378        }
14379        // Queue up an async operation since the package deletion may take a little while.
14380        mHandler.post(new Runnable() {
14381            public void run() {
14382                mHandler.removeCallbacks(this);
14383                int returnCode;
14384                if (!deleteAllUsers) {
14385                    returnCode = deletePackageX(packageName, userId, flags);
14386                } else {
14387                    int[] blockUninstallUserIds = getBlockUninstallForUsers(packageName, users);
14388                    // If nobody is blocking uninstall, proceed with delete for all users
14389                    if (ArrayUtils.isEmpty(blockUninstallUserIds)) {
14390                        returnCode = deletePackageX(packageName, userId, flags);
14391                    } else {
14392                        // Otherwise uninstall individually for users with blockUninstalls=false
14393                        final int userFlags = flags & ~PackageManager.DELETE_ALL_USERS;
14394                        for (int userId : users) {
14395                            if (!ArrayUtils.contains(blockUninstallUserIds, userId)) {
14396                                returnCode = deletePackageX(packageName, userId, userFlags);
14397                                if (returnCode != PackageManager.DELETE_SUCCEEDED) {
14398                                    Slog.w(TAG, "Package delete failed for user " + userId
14399                                            + ", returnCode " + returnCode);
14400                                }
14401                            }
14402                        }
14403                        // The app has only been marked uninstalled for certain users.
14404                        // We still need to report that delete was blocked
14405                        returnCode = PackageManager.DELETE_FAILED_OWNER_BLOCKED;
14406                    }
14407                }
14408                try {
14409                    observer.onPackageDeleted(packageName, returnCode, null);
14410                } catch (RemoteException e) {
14411                    Log.i(TAG, "Observer no longer exists.");
14412                } //end catch
14413            } //end run
14414        });
14415    }
14416
14417    private int[] getBlockUninstallForUsers(String packageName, int[] userIds) {
14418        int[] result = EMPTY_INT_ARRAY;
14419        for (int userId : userIds) {
14420            if (getBlockUninstallForUser(packageName, userId)) {
14421                result = ArrayUtils.appendInt(result, userId);
14422            }
14423        }
14424        return result;
14425    }
14426
14427    @Override
14428    public boolean isPackageDeviceAdminOnAnyUser(String packageName) {
14429        return isPackageDeviceAdmin(packageName, UserHandle.USER_ALL);
14430    }
14431
14432    private boolean isPackageDeviceAdmin(String packageName, int userId) {
14433        IDevicePolicyManager dpm = IDevicePolicyManager.Stub.asInterface(
14434                ServiceManager.getService(Context.DEVICE_POLICY_SERVICE));
14435        try {
14436            if (dpm != null) {
14437                final ComponentName deviceOwnerComponentName = dpm.getDeviceOwnerComponent(
14438                        /* callingUserOnly =*/ false);
14439                final String deviceOwnerPackageName = deviceOwnerComponentName == null ? null
14440                        : deviceOwnerComponentName.getPackageName();
14441                // Does the package contains the device owner?
14442                // TODO Do we have to do it even if userId != UserHandle.USER_ALL?  Otherwise,
14443                // this check is probably not needed, since DO should be registered as a device
14444                // admin on some user too. (Original bug for this: b/17657954)
14445                if (packageName.equals(deviceOwnerPackageName)) {
14446                    return true;
14447                }
14448                // Does it contain a device admin for any user?
14449                int[] users;
14450                if (userId == UserHandle.USER_ALL) {
14451                    users = sUserManager.getUserIds();
14452                } else {
14453                    users = new int[]{userId};
14454                }
14455                for (int i = 0; i < users.length; ++i) {
14456                    if (dpm.packageHasActiveAdmins(packageName, users[i])) {
14457                        return true;
14458                    }
14459                }
14460            }
14461        } catch (RemoteException e) {
14462        }
14463        return false;
14464    }
14465
14466    private boolean shouldKeepUninstalledPackageLPr(String packageName) {
14467        return mKeepUninstalledPackages != null && mKeepUninstalledPackages.contains(packageName);
14468    }
14469
14470    /**
14471     *  This method is an internal method that could be get invoked either
14472     *  to delete an installed package or to clean up a failed installation.
14473     *  After deleting an installed package, a broadcast is sent to notify any
14474     *  listeners that the package has been installed. For cleaning up a failed
14475     *  installation, the broadcast is not necessary since the package's
14476     *  installation wouldn't have sent the initial broadcast either
14477     *  The key steps in deleting a package are
14478     *  deleting the package information in internal structures like mPackages,
14479     *  deleting the packages base directories through installd
14480     *  updating mSettings to reflect current status
14481     *  persisting settings for later use
14482     *  sending a broadcast if necessary
14483     */
14484    private int deletePackageX(String packageName, int userId, int flags) {
14485        final PackageRemovedInfo info = new PackageRemovedInfo();
14486        final boolean res;
14487
14488        final UserHandle removeForUser = (flags & PackageManager.DELETE_ALL_USERS) != 0
14489                ? UserHandle.ALL : new UserHandle(userId);
14490
14491        if (isPackageDeviceAdmin(packageName, removeForUser.getIdentifier())) {
14492            Slog.w(TAG, "Not removing package " + packageName + ": has active device admin");
14493            return PackageManager.DELETE_FAILED_DEVICE_POLICY_MANAGER;
14494        }
14495
14496        PackageSetting uninstalledPs = null;
14497
14498        // for the uninstall-updates case and restricted profiles, remember the per-
14499        // user handle installed state
14500        int[] allUsers;
14501        synchronized (mPackages) {
14502            uninstalledPs = mSettings.mPackages.get(packageName);
14503            if (uninstalledPs == null) {
14504                Slog.w(TAG, "Not removing non-existent package " + packageName);
14505                return PackageManager.DELETE_FAILED_INTERNAL_ERROR;
14506            }
14507            allUsers = sUserManager.getUserIds();
14508            info.origUsers = uninstalledPs.queryInstalledUsers(allUsers, true);
14509        }
14510
14511        synchronized (mInstallLock) {
14512            if (DEBUG_REMOVE) Slog.d(TAG, "deletePackageX: pkg=" + packageName + " user=" + userId);
14513            res = deletePackageLI(packageName, removeForUser, true, allUsers,
14514                    flags | REMOVE_CHATTY, info, true, null);
14515            deleteProfilesLI(packageName, /*destroy*/ true);
14516            synchronized (mPackages) {
14517                if (res) {
14518                    mEphemeralApplicationRegistry.onPackageUninstalledLPw(uninstalledPs.pkg);
14519                }
14520            }
14521        }
14522
14523        if (res) {
14524            final boolean killApp = (flags & PackageManager.INSTALL_DONT_KILL_APP) == 0;
14525            info.sendPackageRemovedBroadcasts(killApp);
14526            info.sendSystemPackageUpdatedBroadcasts();
14527            info.sendSystemPackageAppearedBroadcasts();
14528        }
14529        // Force a gc here.
14530        Runtime.getRuntime().gc();
14531        // Delete the resources here after sending the broadcast to let
14532        // other processes clean up before deleting resources.
14533        if (info.args != null) {
14534            synchronized (mInstallLock) {
14535                info.args.doPostDeleteLI(true);
14536            }
14537        }
14538
14539        return res ? PackageManager.DELETE_SUCCEEDED : PackageManager.DELETE_FAILED_INTERNAL_ERROR;
14540    }
14541
14542    class PackageRemovedInfo {
14543        String removedPackage;
14544        int uid = -1;
14545        int removedAppId = -1;
14546        int[] origUsers;
14547        int[] removedUsers = null;
14548        boolean isRemovedPackageSystemUpdate = false;
14549        boolean isUpdate;
14550        boolean dataRemoved;
14551        boolean removedForAllUsers;
14552        // Clean up resources deleted packages.
14553        InstallArgs args = null;
14554        ArrayMap<String, PackageRemovedInfo> removedChildPackages;
14555        ArrayMap<String, PackageInstalledInfo> appearedChildPackages;
14556
14557        void sendPackageRemovedBroadcasts(boolean killApp) {
14558            sendPackageRemovedBroadcastInternal(killApp);
14559            final int childCount = removedChildPackages != null ? removedChildPackages.size() : 0;
14560            for (int i = 0; i < childCount; i++) {
14561                PackageRemovedInfo childInfo = removedChildPackages.valueAt(i);
14562                childInfo.sendPackageRemovedBroadcastInternal(killApp);
14563            }
14564        }
14565
14566        void sendSystemPackageUpdatedBroadcasts() {
14567            if (isRemovedPackageSystemUpdate) {
14568                sendSystemPackageUpdatedBroadcastsInternal();
14569                final int childCount = (removedChildPackages != null)
14570                        ? removedChildPackages.size() : 0;
14571                for (int i = 0; i < childCount; i++) {
14572                    PackageRemovedInfo childInfo = removedChildPackages.valueAt(i);
14573                    if (childInfo.isRemovedPackageSystemUpdate) {
14574                        childInfo.sendSystemPackageUpdatedBroadcastsInternal();
14575                    }
14576                }
14577            }
14578        }
14579
14580        void sendSystemPackageAppearedBroadcasts() {
14581            final int packageCount = (appearedChildPackages != null)
14582                    ? appearedChildPackages.size() : 0;
14583            for (int i = 0; i < packageCount; i++) {
14584                PackageInstalledInfo installedInfo = appearedChildPackages.valueAt(i);
14585                for (int userId : installedInfo.newUsers) {
14586                    sendPackageAddedForUser(installedInfo.name, true,
14587                            UserHandle.getAppId(installedInfo.uid), userId);
14588                }
14589            }
14590        }
14591
14592        private void sendSystemPackageUpdatedBroadcastsInternal() {
14593            Bundle extras = new Bundle(2);
14594            extras.putInt(Intent.EXTRA_UID, removedAppId >= 0 ? removedAppId : uid);
14595            extras.putBoolean(Intent.EXTRA_REPLACING, true);
14596            sendPackageBroadcast(Intent.ACTION_PACKAGE_ADDED, removedPackage,
14597                    extras, 0, null, null, null);
14598            sendPackageBroadcast(Intent.ACTION_PACKAGE_REPLACED, removedPackage,
14599                    extras, 0, null, null, null);
14600            sendPackageBroadcast(Intent.ACTION_MY_PACKAGE_REPLACED, null,
14601                    null, 0, removedPackage, null, null);
14602        }
14603
14604        private void sendPackageRemovedBroadcastInternal(boolean killApp) {
14605            Bundle extras = new Bundle(2);
14606            extras.putInt(Intent.EXTRA_UID, removedAppId >= 0  ? removedAppId : uid);
14607            extras.putBoolean(Intent.EXTRA_DATA_REMOVED, dataRemoved);
14608            extras.putBoolean(Intent.EXTRA_DONT_KILL_APP, !killApp);
14609            if (isUpdate || isRemovedPackageSystemUpdate) {
14610                extras.putBoolean(Intent.EXTRA_REPLACING, true);
14611            }
14612            extras.putBoolean(Intent.EXTRA_REMOVED_FOR_ALL_USERS, removedForAllUsers);
14613            if (removedPackage != null) {
14614                sendPackageBroadcast(Intent.ACTION_PACKAGE_REMOVED, removedPackage,
14615                        extras, 0, null, null, removedUsers);
14616                if (dataRemoved && !isRemovedPackageSystemUpdate) {
14617                    sendPackageBroadcast(Intent.ACTION_PACKAGE_FULLY_REMOVED,
14618                            removedPackage, extras, 0, null, null, removedUsers);
14619                }
14620            }
14621            if (removedAppId >= 0) {
14622                sendPackageBroadcast(Intent.ACTION_UID_REMOVED, null, extras, 0, null, null,
14623                        removedUsers);
14624            }
14625        }
14626    }
14627
14628    /*
14629     * This method deletes the package from internal data structures. If the DONT_DELETE_DATA
14630     * flag is not set, the data directory is removed as well.
14631     * make sure this flag is set for partially installed apps. If not its meaningless to
14632     * delete a partially installed application.
14633     */
14634    private void removePackageDataLI(PackageSetting ps, int[] allUserHandles,
14635            PackageRemovedInfo outInfo, int flags, boolean writeSettings) {
14636        String packageName = ps.name;
14637        if (DEBUG_REMOVE) Slog.d(TAG, "removePackageDataLI: " + ps);
14638        removePackageLI(ps, (flags&REMOVE_CHATTY) != 0);
14639        // Retrieve object to delete permissions for shared user later on
14640        final PackageSetting deletedPs;
14641        // reader
14642        synchronized (mPackages) {
14643            deletedPs = mSettings.mPackages.get(packageName);
14644            if (outInfo != null) {
14645                outInfo.removedPackage = packageName;
14646                outInfo.removedUsers = deletedPs != null
14647                        ? deletedPs.queryInstalledUsers(sUserManager.getUserIds(), true)
14648                        : null;
14649            }
14650        }
14651        if ((flags&PackageManager.DELETE_KEEP_DATA) == 0) {
14652            removeDataDirsLI(ps.volumeUuid, packageName);
14653            if (outInfo != null) {
14654                outInfo.dataRemoved = true;
14655            }
14656            schedulePackageCleaning(packageName, UserHandle.USER_ALL, true);
14657        }
14658        // writer
14659        synchronized (mPackages) {
14660            if (deletedPs != null) {
14661                if ((flags&PackageManager.DELETE_KEEP_DATA) == 0) {
14662                    clearIntentFilterVerificationsLPw(deletedPs.name, UserHandle.USER_ALL);
14663                    clearDefaultBrowserIfNeeded(packageName);
14664                    if (outInfo != null) {
14665                        mSettings.mKeySetManagerService.removeAppKeySetDataLPw(packageName);
14666                        outInfo.removedAppId = mSettings.removePackageLPw(packageName);
14667                    }
14668                    updatePermissionsLPw(deletedPs.name, null, 0);
14669                    if (deletedPs.sharedUser != null) {
14670                        // Remove permissions associated with package. Since runtime
14671                        // permissions are per user we have to kill the removed package
14672                        // or packages running under the shared user of the removed
14673                        // package if revoking the permissions requested only by the removed
14674                        // package is successful and this causes a change in gids.
14675                        for (int userId : UserManagerService.getInstance().getUserIds()) {
14676                            final int userIdToKill = mSettings.updateSharedUserPermsLPw(deletedPs,
14677                                    userId);
14678                            if (userIdToKill == UserHandle.USER_ALL
14679                                    || userIdToKill >= UserHandle.USER_SYSTEM) {
14680                                // If gids changed for this user, kill all affected packages.
14681                                mHandler.post(new Runnable() {
14682                                    @Override
14683                                    public void run() {
14684                                        // This has to happen with no lock held.
14685                                        killApplication(deletedPs.name, deletedPs.appId,
14686                                                KILL_APP_REASON_GIDS_CHANGED);
14687                                    }
14688                                });
14689                                break;
14690                            }
14691                        }
14692                    }
14693                    clearPackagePreferredActivitiesLPw(deletedPs.name, UserHandle.USER_ALL);
14694                }
14695                // make sure to preserve per-user disabled state if this removal was just
14696                // a downgrade of a system app to the factory package
14697                if (allUserHandles != null && outInfo != null && outInfo.origUsers != null) {
14698                    if (DEBUG_REMOVE) {
14699                        Slog.d(TAG, "Propagating install state across downgrade");
14700                    }
14701                    for (int userId : allUserHandles) {
14702                        final boolean installed = ArrayUtils.contains(outInfo.origUsers, userId);
14703                        if (DEBUG_REMOVE) {
14704                            Slog.d(TAG, "    user " + userId + " => " + installed);
14705                        }
14706                        ps.setInstalled(installed, userId);
14707                    }
14708                }
14709            }
14710            // can downgrade to reader
14711            if (writeSettings) {
14712                // Save settings now
14713                mSettings.writeLPr();
14714            }
14715        }
14716        if (outInfo != null) {
14717            // A user ID was deleted here. Go through all users and remove it
14718            // from KeyStore.
14719            removeKeystoreDataIfNeeded(UserHandle.USER_ALL, outInfo.removedAppId);
14720        }
14721    }
14722
14723    static boolean locationIsPrivileged(File path) {
14724        try {
14725            final String privilegedAppDir = new File(Environment.getRootDirectory(), "priv-app")
14726                    .getCanonicalPath();
14727            return path.getCanonicalPath().startsWith(privilegedAppDir);
14728        } catch (IOException e) {
14729            Slog.e(TAG, "Unable to access code path " + path);
14730        }
14731        return false;
14732    }
14733
14734    /*
14735     * Tries to delete system package.
14736     */
14737    private boolean deleteSystemPackageLI(PackageParser.Package deletedPkg,
14738            PackageSetting deletedPs, int[] allUserHandles, int flags, PackageRemovedInfo outInfo,
14739            boolean writeSettings) {
14740        if (deletedPs.parentPackageName != null) {
14741            Slog.w(TAG, "Attempt to delete child system package " + deletedPkg.packageName);
14742            return false;
14743        }
14744
14745        final boolean applyUserRestrictions
14746                = (allUserHandles != null) && (outInfo.origUsers != null);
14747        final PackageSetting disabledPs;
14748        // Confirm if the system package has been updated
14749        // An updated system app can be deleted. This will also have to restore
14750        // the system pkg from system partition
14751        // reader
14752        synchronized (mPackages) {
14753            disabledPs = mSettings.getDisabledSystemPkgLPr(deletedPs.name);
14754        }
14755
14756        if (DEBUG_REMOVE) Slog.d(TAG, "deleteSystemPackageLI: newPs=" + deletedPkg.packageName
14757                + " disabledPs=" + disabledPs);
14758
14759        if (disabledPs == null) {
14760            Slog.w(TAG, "Attempt to delete unknown system package "+ deletedPkg.packageName);
14761            return false;
14762        } else if (DEBUG_REMOVE) {
14763            Slog.d(TAG, "Deleting system pkg from data partition");
14764        }
14765
14766        if (DEBUG_REMOVE) {
14767            if (applyUserRestrictions) {
14768                Slog.d(TAG, "Remembering install states:");
14769                for (int userId : allUserHandles) {
14770                    final boolean finstalled = ArrayUtils.contains(outInfo.origUsers, userId);
14771                    Slog.d(TAG, "   u=" + userId + " inst=" + finstalled);
14772                }
14773            }
14774        }
14775
14776        // Delete the updated package
14777        outInfo.isRemovedPackageSystemUpdate = true;
14778        if (outInfo.removedChildPackages != null) {
14779            final int childCount = (deletedPs.childPackageNames != null)
14780                    ? deletedPs.childPackageNames.size() : 0;
14781            for (int i = 0; i < childCount; i++) {
14782                String childPackageName = deletedPs.childPackageNames.get(i);
14783                if (disabledPs.childPackageNames != null && disabledPs.childPackageNames
14784                        .contains(childPackageName)) {
14785                    PackageRemovedInfo childInfo = outInfo.removedChildPackages.get(
14786                            childPackageName);
14787                    if (childInfo != null) {
14788                        childInfo.isRemovedPackageSystemUpdate = true;
14789                    }
14790                }
14791            }
14792        }
14793
14794        if (disabledPs.versionCode < deletedPs.versionCode) {
14795            // Delete data for downgrades
14796            flags &= ~PackageManager.DELETE_KEEP_DATA;
14797        } else {
14798            // Preserve data by setting flag
14799            flags |= PackageManager.DELETE_KEEP_DATA;
14800        }
14801
14802        boolean ret = deleteInstalledPackageLI(deletedPs, true, flags, allUserHandles,
14803                outInfo, writeSettings, disabledPs.pkg);
14804        if (!ret) {
14805            return false;
14806        }
14807
14808        // writer
14809        synchronized (mPackages) {
14810            // Reinstate the old system package
14811            enableSystemPackageLPw(disabledPs.pkg);
14812            // Remove any native libraries from the upgraded package.
14813            removeNativeBinariesLI(deletedPs);
14814        }
14815
14816        // Install the system package
14817        if (DEBUG_REMOVE) Slog.d(TAG, "Re-installing system package: " + disabledPs);
14818        int parseFlags = PackageParser.PARSE_MUST_BE_APK | PackageParser.PARSE_IS_SYSTEM;
14819        if (locationIsPrivileged(disabledPs.codePath)) {
14820            parseFlags |= PackageParser.PARSE_IS_PRIVILEGED;
14821        }
14822
14823        final PackageParser.Package newPkg;
14824        try {
14825            newPkg = scanPackageTracedLI(disabledPs.codePath, parseFlags, SCAN_NO_PATHS, 0, null);
14826        } catch (PackageManagerException e) {
14827            Slog.w(TAG, "Failed to restore system package:" + deletedPkg.packageName + ": "
14828                    + e.getMessage());
14829            return false;
14830        }
14831
14832        prepareAppDataAfterInstall(newPkg);
14833
14834        // writer
14835        synchronized (mPackages) {
14836            PackageSetting ps = mSettings.mPackages.get(newPkg.packageName);
14837
14838            // Propagate the permissions state as we do not want to drop on the floor
14839            // runtime permissions. The update permissions method below will take
14840            // care of removing obsolete permissions and grant install permissions.
14841            ps.getPermissionsState().copyFrom(deletedPs.getPermissionsState());
14842            updatePermissionsLPw(newPkg.packageName, newPkg,
14843                    UPDATE_PERMISSIONS_ALL | UPDATE_PERMISSIONS_REPLACE_PKG);
14844
14845            if (applyUserRestrictions) {
14846                if (DEBUG_REMOVE) {
14847                    Slog.d(TAG, "Propagating install state across reinstall");
14848                }
14849                for (int userId : allUserHandles) {
14850                    final boolean installed = ArrayUtils.contains(outInfo.origUsers, userId);
14851                    if (DEBUG_REMOVE) {
14852                        Slog.d(TAG, "    user " + userId + " => " + installed);
14853                    }
14854                    ps.setInstalled(installed, userId);
14855
14856                    mSettings.writeRuntimePermissionsForUserLPr(userId, false);
14857                }
14858                // Regardless of writeSettings we need to ensure that this restriction
14859                // state propagation is persisted
14860                mSettings.writeAllUsersPackageRestrictionsLPr();
14861            }
14862            // can downgrade to reader here
14863            if (writeSettings) {
14864                mSettings.writeLPr();
14865            }
14866        }
14867        return true;
14868    }
14869
14870    private boolean deleteInstalledPackageLI(PackageSetting ps,
14871            boolean deleteCodeAndResources, int flags, int[] allUserHandles,
14872            PackageRemovedInfo outInfo, boolean writeSettings,
14873            PackageParser.Package replacingPackage) {
14874        synchronized (mPackages) {
14875            if (outInfo != null) {
14876                outInfo.uid = ps.appId;
14877            }
14878
14879            if (outInfo != null && outInfo.removedChildPackages != null) {
14880                final int childCount = (ps.childPackageNames != null)
14881                        ? ps.childPackageNames.size() : 0;
14882                for (int i = 0; i < childCount; i++) {
14883                    String childPackageName = ps.childPackageNames.get(i);
14884                    PackageSetting childPs = mSettings.mPackages.get(childPackageName);
14885                    if (childPs == null) {
14886                        return false;
14887                    }
14888                    PackageRemovedInfo childInfo = outInfo.removedChildPackages.get(
14889                            childPackageName);
14890                    if (childInfo != null) {
14891                        childInfo.uid = childPs.appId;
14892                    }
14893                }
14894            }
14895        }
14896
14897        // Delete package data from internal structures and also remove data if flag is set
14898        removePackageDataLI(ps, allUserHandles, outInfo, flags, writeSettings);
14899
14900        // Delete the child packages data
14901        final int childCount = (ps.childPackageNames != null) ? ps.childPackageNames.size() : 0;
14902        for (int i = 0; i < childCount; i++) {
14903            PackageSetting childPs;
14904            synchronized (mPackages) {
14905                childPs = mSettings.peekPackageLPr(ps.childPackageNames.get(i));
14906            }
14907            if (childPs != null) {
14908                PackageRemovedInfo childOutInfo = (outInfo != null
14909                        && outInfo.removedChildPackages != null)
14910                        ? outInfo.removedChildPackages.get(childPs.name) : null;
14911                final int deleteFlags = (flags & DELETE_KEEP_DATA) != 0
14912                        && (replacingPackage != null
14913                        && !replacingPackage.hasChildPackage(childPs.name))
14914                        ? flags & ~DELETE_KEEP_DATA : flags;
14915                removePackageDataLI(childPs, allUserHandles, childOutInfo,
14916                        deleteFlags, writeSettings);
14917            }
14918        }
14919
14920        // Delete application code and resources only for parent packages
14921        if (ps.parentPackageName == null) {
14922            if (deleteCodeAndResources && (outInfo != null)) {
14923                outInfo.args = createInstallArgsForExisting(packageFlagsToInstallFlags(ps),
14924                        ps.codePathString, ps.resourcePathString, getAppDexInstructionSets(ps));
14925                if (DEBUG_SD_INSTALL) Slog.i(TAG, "args=" + outInfo.args);
14926            }
14927        }
14928
14929        return true;
14930    }
14931
14932    @Override
14933    public boolean setBlockUninstallForUser(String packageName, boolean blockUninstall,
14934            int userId) {
14935        mContext.enforceCallingOrSelfPermission(
14936                android.Manifest.permission.DELETE_PACKAGES, null);
14937        synchronized (mPackages) {
14938            PackageSetting ps = mSettings.mPackages.get(packageName);
14939            if (ps == null) {
14940                Log.i(TAG, "Package doesn't exist in set block uninstall " + packageName);
14941                return false;
14942            }
14943            if (!ps.getInstalled(userId)) {
14944                // Can't block uninstall for an app that is not installed or enabled.
14945                Log.i(TAG, "Package not installed in set block uninstall " + packageName);
14946                return false;
14947            }
14948            ps.setBlockUninstall(blockUninstall, userId);
14949            mSettings.writePackageRestrictionsLPr(userId);
14950        }
14951        return true;
14952    }
14953
14954    @Override
14955    public boolean getBlockUninstallForUser(String packageName, int userId) {
14956        synchronized (mPackages) {
14957            PackageSetting ps = mSettings.mPackages.get(packageName);
14958            if (ps == null) {
14959                Log.i(TAG, "Package doesn't exist in get block uninstall " + packageName);
14960                return false;
14961            }
14962            return ps.getBlockUninstall(userId);
14963        }
14964    }
14965
14966    @Override
14967    public boolean setRequiredForSystemUser(String packageName, boolean systemUserApp) {
14968        int callingUid = Binder.getCallingUid();
14969        if (callingUid != Process.SYSTEM_UID && callingUid != Process.ROOT_UID) {
14970            throw new SecurityException(
14971                    "setRequiredForSystemUser can only be run by the system or root");
14972        }
14973        synchronized (mPackages) {
14974            PackageSetting ps = mSettings.mPackages.get(packageName);
14975            if (ps == null) {
14976                Log.w(TAG, "Package doesn't exist: " + packageName);
14977                return false;
14978            }
14979            if (systemUserApp) {
14980                ps.pkgPrivateFlags |= ApplicationInfo.PRIVATE_FLAG_REQUIRED_FOR_SYSTEM_USER;
14981            } else {
14982                ps.pkgPrivateFlags &= ~ApplicationInfo.PRIVATE_FLAG_REQUIRED_FOR_SYSTEM_USER;
14983            }
14984            mSettings.writeLPr();
14985        }
14986        return true;
14987    }
14988
14989    /*
14990     * This method handles package deletion in general
14991     */
14992    private boolean deletePackageLI(String packageName, UserHandle user,
14993            boolean deleteCodeAndResources, int[] allUserHandles, int flags,
14994            PackageRemovedInfo outInfo, boolean writeSettings,
14995            PackageParser.Package replacingPackage) {
14996        if (packageName == null) {
14997            Slog.w(TAG, "Attempt to delete null packageName.");
14998            return false;
14999        }
15000
15001        if (DEBUG_REMOVE) Slog.d(TAG, "deletePackageLI: " + packageName + " user " + user);
15002
15003        PackageSetting ps;
15004
15005        synchronized (mPackages) {
15006            ps = mSettings.mPackages.get(packageName);
15007            if (ps == null) {
15008                Slog.w(TAG, "Package named '" + packageName + "' doesn't exist.");
15009                return false;
15010            }
15011
15012            if (ps.parentPackageName != null && (!isSystemApp(ps)
15013                    || (flags & PackageManager.DELETE_SYSTEM_APP) != 0)) {
15014                if (DEBUG_REMOVE) {
15015                    Slog.d(TAG, "Uninstalled child package:" + packageName + " for user:"
15016                            + ((user == null) ? UserHandle.USER_ALL : user));
15017                }
15018                final int removedUserId = (user != null) ? user.getIdentifier()
15019                        : UserHandle.USER_ALL;
15020                if (!clearPackageStateForUser(ps, removedUserId, outInfo)) {
15021                    return false;
15022                }
15023                markPackageUninstalledForUserLPw(ps, user);
15024                scheduleWritePackageRestrictionsLocked(user);
15025                return true;
15026            }
15027        }
15028
15029        if (((!isSystemApp(ps) || (flags&PackageManager.DELETE_SYSTEM_APP) != 0) && user != null
15030                && user.getIdentifier() != UserHandle.USER_ALL)) {
15031            // The caller is asking that the package only be deleted for a single
15032            // user.  To do this, we just mark its uninstalled state and delete
15033            // its data. If this is a system app, we only allow this to happen if
15034            // they have set the special DELETE_SYSTEM_APP which requests different
15035            // semantics than normal for uninstalling system apps.
15036            markPackageUninstalledForUserLPw(ps, user);
15037
15038            if (!isSystemApp(ps)) {
15039                // Do not uninstall the APK if an app should be cached
15040                boolean keepUninstalledPackage = shouldKeepUninstalledPackageLPr(packageName);
15041                if (ps.isAnyInstalled(sUserManager.getUserIds()) || keepUninstalledPackage) {
15042                    // Other user still have this package installed, so all
15043                    // we need to do is clear this user's data and save that
15044                    // it is uninstalled.
15045                    if (DEBUG_REMOVE) Slog.d(TAG, "Still installed by other users");
15046                    if (!clearPackageStateForUser(ps, user.getIdentifier(), outInfo)) {
15047                        return false;
15048                    }
15049                    scheduleWritePackageRestrictionsLocked(user);
15050                    return true;
15051                } else {
15052                    // We need to set it back to 'installed' so the uninstall
15053                    // broadcasts will be sent correctly.
15054                    if (DEBUG_REMOVE) Slog.d(TAG, "Not installed by other users, full delete");
15055                    ps.setInstalled(true, user.getIdentifier());
15056                }
15057            } else {
15058                // This is a system app, so we assume that the
15059                // other users still have this package installed, so all
15060                // we need to do is clear this user's data and save that
15061                // it is uninstalled.
15062                if (DEBUG_REMOVE) Slog.d(TAG, "Deleting system app");
15063                if (!clearPackageStateForUser(ps, user.getIdentifier(), outInfo)) {
15064                    return false;
15065                }
15066                scheduleWritePackageRestrictionsLocked(user);
15067                return true;
15068            }
15069        }
15070
15071        // If we are deleting a composite package for all users, keep track
15072        // of result for each child.
15073        if (ps.childPackageNames != null && outInfo != null) {
15074            synchronized (mPackages) {
15075                final int childCount = ps.childPackageNames.size();
15076                outInfo.removedChildPackages = new ArrayMap<>(childCount);
15077                for (int i = 0; i < childCount; i++) {
15078                    String childPackageName = ps.childPackageNames.get(i);
15079                    PackageRemovedInfo childInfo = new PackageRemovedInfo();
15080                    childInfo.removedPackage = childPackageName;
15081                    outInfo.removedChildPackages.put(childPackageName, childInfo);
15082                    PackageSetting childPs = mSettings.peekPackageLPr(childPackageName);
15083                    if (childPs != null) {
15084                        childInfo.origUsers = childPs.queryInstalledUsers(allUserHandles, true);
15085                    }
15086                }
15087            }
15088        }
15089
15090        boolean ret = false;
15091        if (isSystemApp(ps)) {
15092            if (DEBUG_REMOVE) Slog.d(TAG, "Removing system package: " + ps.name);
15093            // When an updated system application is deleted we delete the existing resources
15094            // as well and fall back to existing code in system partition
15095            ret = deleteSystemPackageLI(ps.pkg, ps, allUserHandles, flags, outInfo, writeSettings);
15096        } else {
15097            if (DEBUG_REMOVE) Slog.d(TAG, "Removing non-system package: " + ps.name);
15098            // Kill application pre-emptively especially for apps on sd.
15099            final boolean killApp = (flags & PackageManager.DELETE_DONT_KILL_APP) == 0;
15100            if (killApp) {
15101                killApplication(packageName, ps.appId, "uninstall pkg");
15102            }
15103            ret = deleteInstalledPackageLI(ps, deleteCodeAndResources, flags, allUserHandles,
15104                    outInfo, writeSettings, replacingPackage);
15105        }
15106
15107        // Take a note whether we deleted the package for all users
15108        if (outInfo != null) {
15109            outInfo.removedForAllUsers = mPackages.get(ps.name) == null;
15110            if (outInfo.removedChildPackages != null) {
15111                synchronized (mPackages) {
15112                    final int childCount = outInfo.removedChildPackages.size();
15113                    for (int i = 0; i < childCount; i++) {
15114                        PackageRemovedInfo childInfo = outInfo.removedChildPackages.valueAt(i);
15115                        if (childInfo != null) {
15116                            childInfo.removedForAllUsers = mPackages.get(
15117                                    childInfo.removedPackage) == null;
15118                        }
15119                    }
15120                }
15121            }
15122            // If we uninstalled an update to a system app there may be some
15123            // child packages that appeared as they are declared in the system
15124            // app but were not declared in the update.
15125            if (isSystemApp(ps)) {
15126                synchronized (mPackages) {
15127                    PackageSetting updatedPs = mSettings.peekPackageLPr(ps.name);
15128                    final int childCount = (updatedPs.childPackageNames != null)
15129                            ? updatedPs.childPackageNames.size() : 0;
15130                    for (int i = 0; i < childCount; i++) {
15131                        String childPackageName = updatedPs.childPackageNames.get(i);
15132                        if (outInfo.removedChildPackages == null
15133                                || outInfo.removedChildPackages.indexOfKey(childPackageName) < 0) {
15134                            PackageSetting childPs = mSettings.peekPackageLPr(childPackageName);
15135                            if (childPs == null) {
15136                                continue;
15137                            }
15138                            PackageInstalledInfo installRes = new PackageInstalledInfo();
15139                            installRes.name = childPackageName;
15140                            installRes.newUsers = childPs.queryInstalledUsers(allUserHandles, true);
15141                            installRes.pkg = mPackages.get(childPackageName);
15142                            installRes.uid = childPs.pkg.applicationInfo.uid;
15143                            if (outInfo.appearedChildPackages == null) {
15144                                outInfo.appearedChildPackages = new ArrayMap<>();
15145                            }
15146                            outInfo.appearedChildPackages.put(childPackageName, installRes);
15147                        }
15148                    }
15149                }
15150            }
15151        }
15152
15153        return ret;
15154    }
15155
15156    private void markPackageUninstalledForUserLPw(PackageSetting ps, UserHandle user) {
15157        final int[] userIds = (user == null || user.getIdentifier() == UserHandle.USER_ALL)
15158                ? sUserManager.getUserIds() : new int[] {user.getIdentifier()};
15159        for (int nextUserId : userIds) {
15160            if (DEBUG_REMOVE) {
15161                Slog.d(TAG, "Marking package:" + ps.name + " uninstalled for user:" + nextUserId);
15162            }
15163            ps.setUserState(nextUserId, COMPONENT_ENABLED_STATE_DEFAULT,
15164                    false /*installed*/, true /*stopped*/, true /*notLaunched*/,
15165                    false /*hidden*/, false /*suspended*/, null, null, null,
15166                    false /*blockUninstall*/,
15167                    ps.readUserState(nextUserId).domainVerificationStatus, 0);
15168        }
15169    }
15170
15171    private boolean clearPackageStateForUser(PackageSetting ps, int userId,
15172            PackageRemovedInfo outInfo) {
15173        final int[] userIds = (userId == UserHandle.USER_ALL) ? sUserManager.getUserIds()
15174                : new int[] {userId};
15175        for (int nextUserId : userIds) {
15176            if (DEBUG_REMOVE) {
15177                Slog.d(TAG, "Updating package:" + ps.name + " install state for user:"
15178                        + nextUserId);
15179            }
15180            final int flags =  StorageManager.FLAG_STORAGE_CE|  StorageManager.FLAG_STORAGE_DE;
15181            try {
15182                mInstaller.destroyAppData(ps.volumeUuid, ps.name, nextUserId, flags);
15183            } catch (InstallerException e) {
15184                Slog.w(TAG, "Couldn't remove cache files for package " + ps.name, e);
15185                return false;
15186            }
15187            removeKeystoreDataIfNeeded(nextUserId, ps.appId);
15188            schedulePackageCleaning(ps.name, nextUserId, false);
15189            synchronized (mPackages) {
15190                if (clearPackagePreferredActivitiesLPw(ps.name, nextUserId)) {
15191                    scheduleWritePackageRestrictionsLocked(nextUserId);
15192                }
15193                resetUserChangesToRuntimePermissionsAndFlagsLPw(ps, nextUserId);
15194            }
15195        }
15196
15197        if (outInfo != null) {
15198            outInfo.removedPackage = ps.name;
15199            outInfo.removedAppId = ps.appId;
15200            outInfo.removedUsers = userIds;
15201        }
15202
15203        return true;
15204    }
15205
15206    private final class ClearStorageConnection implements ServiceConnection {
15207        IMediaContainerService mContainerService;
15208
15209        @Override
15210        public void onServiceConnected(ComponentName name, IBinder service) {
15211            synchronized (this) {
15212                mContainerService = IMediaContainerService.Stub.asInterface(service);
15213                notifyAll();
15214            }
15215        }
15216
15217        @Override
15218        public void onServiceDisconnected(ComponentName name) {
15219        }
15220    }
15221
15222    private void clearExternalStorageDataSync(String packageName, int userId, boolean allData) {
15223        final boolean mounted;
15224        if (Environment.isExternalStorageEmulated()) {
15225            mounted = true;
15226        } else {
15227            final String status = Environment.getExternalStorageState();
15228
15229            mounted = status.equals(Environment.MEDIA_MOUNTED)
15230                    || status.equals(Environment.MEDIA_MOUNTED_READ_ONLY);
15231        }
15232
15233        if (!mounted) {
15234            return;
15235        }
15236
15237        final Intent containerIntent = new Intent().setComponent(DEFAULT_CONTAINER_COMPONENT);
15238        int[] users;
15239        if (userId == UserHandle.USER_ALL) {
15240            users = sUserManager.getUserIds();
15241        } else {
15242            users = new int[] { userId };
15243        }
15244        final ClearStorageConnection conn = new ClearStorageConnection();
15245        if (mContext.bindServiceAsUser(
15246                containerIntent, conn, Context.BIND_AUTO_CREATE, UserHandle.SYSTEM)) {
15247            try {
15248                for (int curUser : users) {
15249                    long timeout = SystemClock.uptimeMillis() + 5000;
15250                    synchronized (conn) {
15251                        long now = SystemClock.uptimeMillis();
15252                        while (conn.mContainerService == null && now < timeout) {
15253                            try {
15254                                conn.wait(timeout - now);
15255                            } catch (InterruptedException e) {
15256                            }
15257                        }
15258                    }
15259                    if (conn.mContainerService == null) {
15260                        return;
15261                    }
15262
15263                    final UserEnvironment userEnv = new UserEnvironment(curUser);
15264                    clearDirectory(conn.mContainerService,
15265                            userEnv.buildExternalStorageAppCacheDirs(packageName));
15266                    if (allData) {
15267                        clearDirectory(conn.mContainerService,
15268                                userEnv.buildExternalStorageAppDataDirs(packageName));
15269                        clearDirectory(conn.mContainerService,
15270                                userEnv.buildExternalStorageAppMediaDirs(packageName));
15271                    }
15272                }
15273            } finally {
15274                mContext.unbindService(conn);
15275            }
15276        }
15277    }
15278
15279    @Override
15280    public void clearApplicationProfileData(String packageName) {
15281        enforceSystemOrRoot("Only the system can clear all profile data");
15282        try {
15283            mInstaller.clearAppProfiles(packageName);
15284        } catch (InstallerException ex) {
15285            Log.e(TAG, "Could not clear profile data of package " + packageName);
15286        }
15287    }
15288
15289    @Override
15290    public void clearApplicationUserData(final String packageName,
15291            final IPackageDataObserver observer, final int userId) {
15292        mContext.enforceCallingOrSelfPermission(
15293                android.Manifest.permission.CLEAR_APP_USER_DATA, null);
15294
15295        enforceCrossUserPermission(Binder.getCallingUid(), userId,
15296                true /* requireFullPermission */, false /* checkShell */, "clear application data");
15297
15298        final DevicePolicyManagerInternal dpmi = LocalServices
15299                .getService(DevicePolicyManagerInternal.class);
15300        if (dpmi != null && dpmi.hasDeviceOwnerOrProfileOwner(packageName, userId)) {
15301            throw new SecurityException("Cannot clear data for a device owner or a profile owner");
15302        }
15303        // Queue up an async operation since the package deletion may take a little while.
15304        mHandler.post(new Runnable() {
15305            public void run() {
15306                mHandler.removeCallbacks(this);
15307                final boolean succeeded;
15308                synchronized (mInstallLock) {
15309                    succeeded = clearApplicationUserDataLI(packageName, userId);
15310                }
15311                clearExternalStorageDataSync(packageName, userId, true);
15312                if (succeeded) {
15313                    // invoke DeviceStorageMonitor's update method to clear any notifications
15314                    DeviceStorageMonitorInternal dsm = LocalServices
15315                            .getService(DeviceStorageMonitorInternal.class);
15316                    if (dsm != null) {
15317                        dsm.checkMemory();
15318                    }
15319                }
15320                if(observer != null) {
15321                    try {
15322                        observer.onRemoveCompleted(packageName, succeeded);
15323                    } catch (RemoteException e) {
15324                        Log.i(TAG, "Observer no longer exists.");
15325                    }
15326                } //end if observer
15327            } //end run
15328        });
15329    }
15330
15331    private boolean clearApplicationUserDataLI(String packageName, int userId) {
15332        if (packageName == null) {
15333            Slog.w(TAG, "Attempt to delete null packageName.");
15334            return false;
15335        }
15336
15337        // Try finding details about the requested package
15338        PackageParser.Package pkg;
15339        synchronized (mPackages) {
15340            pkg = mPackages.get(packageName);
15341            if (pkg == null) {
15342                final PackageSetting ps = mSettings.mPackages.get(packageName);
15343                if (ps != null) {
15344                    pkg = ps.pkg;
15345                }
15346            }
15347
15348            if (pkg == null) {
15349                Slog.w(TAG, "Package named '" + packageName + "' doesn't exist.");
15350                return false;
15351            }
15352
15353            PackageSetting ps = (PackageSetting) pkg.mExtras;
15354            resetUserChangesToRuntimePermissionsAndFlagsLPw(ps, userId);
15355        }
15356
15357        // Always delete data directories for package, even if we found no other
15358        // record of app. This helps users recover from UID mismatches without
15359        // resorting to a full data wipe.
15360        // TODO: triage flags as part of 26466827
15361        final int flags = StorageManager.FLAG_STORAGE_CE | StorageManager.FLAG_STORAGE_DE;
15362        try {
15363            mInstaller.clearAppData(pkg.volumeUuid, packageName, userId, flags);
15364        } catch (InstallerException e) {
15365            Slog.w(TAG, "Couldn't remove cache files for package " + packageName, e);
15366            return false;
15367        }
15368
15369        final int appId = UserHandle.getAppId(pkg.applicationInfo.uid);
15370        removeKeystoreDataIfNeeded(userId, appId);
15371
15372        // Create a native library symlink only if we have native libraries
15373        // and if the native libraries are 32 bit libraries. We do not provide
15374        // this symlink for 64 bit libraries.
15375        if (pkg.applicationInfo.primaryCpuAbi != null &&
15376                !VMRuntime.is64BitAbi(pkg.applicationInfo.primaryCpuAbi)) {
15377            final String nativeLibPath = pkg.applicationInfo.nativeLibraryDir;
15378            try {
15379                mInstaller.linkNativeLibraryDirectory(pkg.volumeUuid, pkg.packageName,
15380                        nativeLibPath, userId);
15381            } catch (InstallerException e) {
15382                Slog.w(TAG, "Failed linking native library dir", e);
15383                return false;
15384            }
15385        }
15386
15387        return true;
15388    }
15389
15390    /**
15391     * Reverts user permission state changes (permissions and flags) in
15392     * all packages for a given user.
15393     *
15394     * @param userId The device user for which to do a reset.
15395     */
15396    private void resetUserChangesToRuntimePermissionsAndFlagsLPw(int userId) {
15397        final int packageCount = mPackages.size();
15398        for (int i = 0; i < packageCount; i++) {
15399            PackageParser.Package pkg = mPackages.valueAt(i);
15400            PackageSetting ps = (PackageSetting) pkg.mExtras;
15401            resetUserChangesToRuntimePermissionsAndFlagsLPw(ps, userId);
15402        }
15403    }
15404
15405    /**
15406     * Reverts user permission state changes (permissions and flags).
15407     *
15408     * @param ps The package for which to reset.
15409     * @param userId The device user for which to do a reset.
15410     */
15411    private void resetUserChangesToRuntimePermissionsAndFlagsLPw(
15412            final PackageSetting ps, final int userId) {
15413        if (ps.pkg == null) {
15414            return;
15415        }
15416
15417        // These are flags that can change base on user actions.
15418        final int userSettableMask = FLAG_PERMISSION_USER_SET
15419                | FLAG_PERMISSION_USER_FIXED
15420                | FLAG_PERMISSION_REVOKE_ON_UPGRADE
15421                | FLAG_PERMISSION_REVIEW_REQUIRED;
15422
15423        final int policyOrSystemFlags = FLAG_PERMISSION_SYSTEM_FIXED
15424                | FLAG_PERMISSION_POLICY_FIXED;
15425
15426        boolean writeInstallPermissions = false;
15427        boolean writeRuntimePermissions = false;
15428
15429        final int permissionCount = ps.pkg.requestedPermissions.size();
15430        for (int i = 0; i < permissionCount; i++) {
15431            String permission = ps.pkg.requestedPermissions.get(i);
15432
15433            BasePermission bp = mSettings.mPermissions.get(permission);
15434            if (bp == null) {
15435                continue;
15436            }
15437
15438            // If shared user we just reset the state to which only this app contributed.
15439            if (ps.sharedUser != null) {
15440                boolean used = false;
15441                final int packageCount = ps.sharedUser.packages.size();
15442                for (int j = 0; j < packageCount; j++) {
15443                    PackageSetting pkg = ps.sharedUser.packages.valueAt(j);
15444                    if (pkg.pkg != null && !pkg.pkg.packageName.equals(ps.pkg.packageName)
15445                            && pkg.pkg.requestedPermissions.contains(permission)) {
15446                        used = true;
15447                        break;
15448                    }
15449                }
15450                if (used) {
15451                    continue;
15452                }
15453            }
15454
15455            PermissionsState permissionsState = ps.getPermissionsState();
15456
15457            final int oldFlags = permissionsState.getPermissionFlags(bp.name, userId);
15458
15459            // Always clear the user settable flags.
15460            final boolean hasInstallState = permissionsState.getInstallPermissionState(
15461                    bp.name) != null;
15462            // If permission review is enabled and this is a legacy app, mark the
15463            // permission as requiring a review as this is the initial state.
15464            int flags = 0;
15465            if (Build.PERMISSIONS_REVIEW_REQUIRED
15466                    && ps.pkg.applicationInfo.targetSdkVersion < Build.VERSION_CODES.M) {
15467                flags |= FLAG_PERMISSION_REVIEW_REQUIRED;
15468            }
15469            if (permissionsState.updatePermissionFlags(bp, userId, userSettableMask, flags)) {
15470                if (hasInstallState) {
15471                    writeInstallPermissions = true;
15472                } else {
15473                    writeRuntimePermissions = true;
15474                }
15475            }
15476
15477            // Below is only runtime permission handling.
15478            if (!bp.isRuntime()) {
15479                continue;
15480            }
15481
15482            // Never clobber system or policy.
15483            if ((oldFlags & policyOrSystemFlags) != 0) {
15484                continue;
15485            }
15486
15487            // If this permission was granted by default, make sure it is.
15488            if ((oldFlags & FLAG_PERMISSION_GRANTED_BY_DEFAULT) != 0) {
15489                if (permissionsState.grantRuntimePermission(bp, userId)
15490                        != PERMISSION_OPERATION_FAILURE) {
15491                    writeRuntimePermissions = true;
15492                }
15493            // If permission review is enabled the permissions for a legacy apps
15494            // are represented as constantly granted runtime ones, so don't revoke.
15495            } else if ((flags & FLAG_PERMISSION_REVIEW_REQUIRED) == 0) {
15496                // Otherwise, reset the permission.
15497                final int revokeResult = permissionsState.revokeRuntimePermission(bp, userId);
15498                switch (revokeResult) {
15499                    case PERMISSION_OPERATION_SUCCESS: {
15500                        writeRuntimePermissions = true;
15501                    } break;
15502
15503                    case PERMISSION_OPERATION_SUCCESS_GIDS_CHANGED: {
15504                        writeRuntimePermissions = true;
15505                        final int appId = ps.appId;
15506                        mHandler.post(new Runnable() {
15507                            @Override
15508                            public void run() {
15509                                killUid(appId, userId, KILL_APP_REASON_GIDS_CHANGED);
15510                            }
15511                        });
15512                    } break;
15513                }
15514            }
15515        }
15516
15517        // Synchronously write as we are taking permissions away.
15518        if (writeRuntimePermissions) {
15519            mSettings.writeRuntimePermissionsForUserLPr(userId, true);
15520        }
15521
15522        // Synchronously write as we are taking permissions away.
15523        if (writeInstallPermissions) {
15524            mSettings.writeLPr();
15525        }
15526    }
15527
15528    /**
15529     * Remove entries from the keystore daemon. Will only remove it if the
15530     * {@code appId} is valid.
15531     */
15532    private static void removeKeystoreDataIfNeeded(int userId, int appId) {
15533        if (appId < 0) {
15534            return;
15535        }
15536
15537        final KeyStore keyStore = KeyStore.getInstance();
15538        if (keyStore != null) {
15539            if (userId == UserHandle.USER_ALL) {
15540                for (final int individual : sUserManager.getUserIds()) {
15541                    keyStore.clearUid(UserHandle.getUid(individual, appId));
15542                }
15543            } else {
15544                keyStore.clearUid(UserHandle.getUid(userId, appId));
15545            }
15546        } else {
15547            Slog.w(TAG, "Could not contact keystore to clear entries for app id " + appId);
15548        }
15549    }
15550
15551    @Override
15552    public void deleteApplicationCacheFiles(final String packageName,
15553            final IPackageDataObserver observer) {
15554        mContext.enforceCallingOrSelfPermission(
15555                android.Manifest.permission.DELETE_CACHE_FILES, null);
15556        // Queue up an async operation since the package deletion may take a little while.
15557        final int userId = UserHandle.getCallingUserId();
15558        mHandler.post(new Runnable() {
15559            public void run() {
15560                mHandler.removeCallbacks(this);
15561                final boolean succeded;
15562                synchronized (mInstallLock) {
15563                    succeded = deleteApplicationCacheFilesLI(packageName, userId);
15564                }
15565                clearExternalStorageDataSync(packageName, userId, false);
15566                if (observer != null) {
15567                    try {
15568                        observer.onRemoveCompleted(packageName, succeded);
15569                    } catch (RemoteException e) {
15570                        Log.i(TAG, "Observer no longer exists.");
15571                    }
15572                } //end if observer
15573            } //end run
15574        });
15575    }
15576
15577    private boolean deleteApplicationCacheFilesLI(String packageName, int userId) {
15578        if (packageName == null) {
15579            Slog.w(TAG, "Attempt to delete null packageName.");
15580            return false;
15581        }
15582        PackageParser.Package p;
15583        synchronized (mPackages) {
15584            p = mPackages.get(packageName);
15585        }
15586        if (p == null) {
15587            Slog.w(TAG, "Package named '" + packageName +"' doesn't exist.");
15588            return false;
15589        }
15590        final ApplicationInfo applicationInfo = p.applicationInfo;
15591        if (applicationInfo == null) {
15592            Slog.w(TAG, "Package " + packageName + " has no applicationInfo.");
15593            return false;
15594        }
15595        // TODO: triage flags as part of 26466827
15596        final int flags = StorageManager.FLAG_STORAGE_CE | StorageManager.FLAG_STORAGE_DE;
15597        try {
15598            mInstaller.clearAppData(p.volumeUuid, packageName, userId,
15599                    flags | Installer.FLAG_CLEAR_CACHE_ONLY);
15600        } catch (InstallerException e) {
15601            Slog.w(TAG, "Couldn't remove cache files for package "
15602                    + packageName + " u" + userId, e);
15603            return false;
15604        }
15605        return true;
15606    }
15607
15608    @Override
15609    public void getPackageSizeInfo(final String packageName, int userHandle,
15610            final IPackageStatsObserver observer) {
15611        mContext.enforceCallingOrSelfPermission(
15612                android.Manifest.permission.GET_PACKAGE_SIZE, null);
15613        if (packageName == null) {
15614            throw new IllegalArgumentException("Attempt to get size of null packageName");
15615        }
15616
15617        PackageStats stats = new PackageStats(packageName, userHandle);
15618
15619        /*
15620         * Queue up an async operation since the package measurement may take a
15621         * little while.
15622         */
15623        Message msg = mHandler.obtainMessage(INIT_COPY);
15624        msg.obj = new MeasureParams(stats, observer);
15625        mHandler.sendMessage(msg);
15626    }
15627
15628    private boolean getPackageSizeInfoLI(String packageName, int userHandle,
15629            PackageStats pStats) {
15630        if (packageName == null) {
15631            Slog.w(TAG, "Attempt to get size of null packageName.");
15632            return false;
15633        }
15634        PackageParser.Package p;
15635        boolean dataOnly = false;
15636        String libDirRoot = null;
15637        String asecPath = null;
15638        PackageSetting ps = null;
15639        synchronized (mPackages) {
15640            p = mPackages.get(packageName);
15641            ps = mSettings.mPackages.get(packageName);
15642            if(p == null) {
15643                dataOnly = true;
15644                if((ps == null) || (ps.pkg == null)) {
15645                    Slog.w(TAG, "Package named '" + packageName +"' doesn't exist.");
15646                    return false;
15647                }
15648                p = ps.pkg;
15649            }
15650            if (ps != null) {
15651                libDirRoot = ps.legacyNativeLibraryPathString;
15652            }
15653            if (p != null && (p.isForwardLocked() || p.applicationInfo.isExternalAsec())) {
15654                final long token = Binder.clearCallingIdentity();
15655                try {
15656                    String secureContainerId = cidFromCodePath(p.applicationInfo.getBaseCodePath());
15657                    if (secureContainerId != null) {
15658                        asecPath = PackageHelper.getSdFilesystem(secureContainerId);
15659                    }
15660                } finally {
15661                    Binder.restoreCallingIdentity(token);
15662                }
15663            }
15664        }
15665        String publicSrcDir = null;
15666        if(!dataOnly) {
15667            final ApplicationInfo applicationInfo = p.applicationInfo;
15668            if (applicationInfo == null) {
15669                Slog.w(TAG, "Package " + packageName + " has no applicationInfo.");
15670                return false;
15671            }
15672            if (p.isForwardLocked()) {
15673                publicSrcDir = applicationInfo.getBaseResourcePath();
15674            }
15675        }
15676        // TODO: extend to measure size of split APKs
15677        // TODO(multiArch): Extend getSizeInfo to look at the full subdirectory tree,
15678        // not just the first level.
15679        // TODO(multiArch): Extend getSizeInfo to look at *all* instruction sets, not
15680        // just the primary.
15681        String[] dexCodeInstructionSets = getDexCodeInstructionSets(getAppDexInstructionSets(ps));
15682
15683        String apkPath;
15684        File packageDir = new File(p.codePath);
15685
15686        if (packageDir.isDirectory() && p.canHaveOatDir()) {
15687            apkPath = packageDir.getAbsolutePath();
15688            // If libDirRoot is inside a package dir, set it to null to avoid it being counted twice
15689            if (libDirRoot != null && libDirRoot.startsWith(apkPath)) {
15690                libDirRoot = null;
15691            }
15692        } else {
15693            apkPath = p.baseCodePath;
15694        }
15695
15696        // TODO: triage flags as part of 26466827
15697        final int flags = StorageManager.FLAG_STORAGE_CE | StorageManager.FLAG_STORAGE_DE;
15698        try {
15699            mInstaller.getAppSize(p.volumeUuid, packageName, userHandle, flags, apkPath,
15700                    libDirRoot, publicSrcDir, asecPath, dexCodeInstructionSets, pStats);
15701        } catch (InstallerException e) {
15702            return false;
15703        }
15704
15705        // Fix-up for forward-locked applications in ASEC containers.
15706        if (!isExternal(p)) {
15707            pStats.codeSize += pStats.externalCodeSize;
15708            pStats.externalCodeSize = 0L;
15709        }
15710
15711        return true;
15712    }
15713
15714    private int getUidTargetSdkVersionLockedLPr(int uid) {
15715        Object obj = mSettings.getUserIdLPr(uid);
15716        if (obj instanceof SharedUserSetting) {
15717            final SharedUserSetting sus = (SharedUserSetting) obj;
15718            int vers = Build.VERSION_CODES.CUR_DEVELOPMENT;
15719            final Iterator<PackageSetting> it = sus.packages.iterator();
15720            while (it.hasNext()) {
15721                final PackageSetting ps = it.next();
15722                if (ps.pkg != null) {
15723                    int v = ps.pkg.applicationInfo.targetSdkVersion;
15724                    if (v < vers) vers = v;
15725                }
15726            }
15727            return vers;
15728        } else if (obj instanceof PackageSetting) {
15729            final PackageSetting ps = (PackageSetting) obj;
15730            if (ps.pkg != null) {
15731                return ps.pkg.applicationInfo.targetSdkVersion;
15732            }
15733        }
15734        return Build.VERSION_CODES.CUR_DEVELOPMENT;
15735    }
15736
15737    @Override
15738    public void addPreferredActivity(IntentFilter filter, int match,
15739            ComponentName[] set, ComponentName activity, int userId) {
15740        addPreferredActivityInternal(filter, match, set, activity, true, userId,
15741                "Adding preferred");
15742    }
15743
15744    private void addPreferredActivityInternal(IntentFilter filter, int match,
15745            ComponentName[] set, ComponentName activity, boolean always, int userId,
15746            String opname) {
15747        // writer
15748        int callingUid = Binder.getCallingUid();
15749        enforceCrossUserPermission(callingUid, userId,
15750                true /* requireFullPermission */, false /* checkShell */, "add preferred activity");
15751        if (filter.countActions() == 0) {
15752            Slog.w(TAG, "Cannot set a preferred activity with no filter actions");
15753            return;
15754        }
15755        synchronized (mPackages) {
15756            if (mContext.checkCallingOrSelfPermission(
15757                    android.Manifest.permission.SET_PREFERRED_APPLICATIONS)
15758                    != PackageManager.PERMISSION_GRANTED) {
15759                if (getUidTargetSdkVersionLockedLPr(callingUid)
15760                        < Build.VERSION_CODES.FROYO) {
15761                    Slog.w(TAG, "Ignoring addPreferredActivity() from uid "
15762                            + callingUid);
15763                    return;
15764                }
15765                mContext.enforceCallingOrSelfPermission(
15766                        android.Manifest.permission.SET_PREFERRED_APPLICATIONS, null);
15767            }
15768
15769            PreferredIntentResolver pir = mSettings.editPreferredActivitiesLPw(userId);
15770            Slog.i(TAG, opname + " activity " + activity.flattenToShortString() + " for user "
15771                    + userId + ":");
15772            filter.dump(new LogPrinter(Log.INFO, TAG), "  ");
15773            pir.addFilter(new PreferredActivity(filter, match, set, activity, always));
15774            scheduleWritePackageRestrictionsLocked(userId);
15775        }
15776    }
15777
15778    @Override
15779    public void replacePreferredActivity(IntentFilter filter, int match,
15780            ComponentName[] set, ComponentName activity, int userId) {
15781        if (filter.countActions() != 1) {
15782            throw new IllegalArgumentException(
15783                    "replacePreferredActivity expects filter to have only 1 action.");
15784        }
15785        if (filter.countDataAuthorities() != 0
15786                || filter.countDataPaths() != 0
15787                || filter.countDataSchemes() > 1
15788                || filter.countDataTypes() != 0) {
15789            throw new IllegalArgumentException(
15790                    "replacePreferredActivity expects filter to have no data authorities, " +
15791                    "paths, or types; and at most one scheme.");
15792        }
15793
15794        final int callingUid = Binder.getCallingUid();
15795        enforceCrossUserPermission(callingUid, userId,
15796                true /* requireFullPermission */, false /* checkShell */,
15797                "replace preferred activity");
15798        synchronized (mPackages) {
15799            if (mContext.checkCallingOrSelfPermission(
15800                    android.Manifest.permission.SET_PREFERRED_APPLICATIONS)
15801                    != PackageManager.PERMISSION_GRANTED) {
15802                if (getUidTargetSdkVersionLockedLPr(callingUid)
15803                        < Build.VERSION_CODES.FROYO) {
15804                    Slog.w(TAG, "Ignoring replacePreferredActivity() from uid "
15805                            + Binder.getCallingUid());
15806                    return;
15807                }
15808                mContext.enforceCallingOrSelfPermission(
15809                        android.Manifest.permission.SET_PREFERRED_APPLICATIONS, null);
15810            }
15811
15812            PreferredIntentResolver pir = mSettings.mPreferredActivities.get(userId);
15813            if (pir != null) {
15814                // Get all of the existing entries that exactly match this filter.
15815                ArrayList<PreferredActivity> existing = pir.findFilters(filter);
15816                if (existing != null && existing.size() == 1) {
15817                    PreferredActivity cur = existing.get(0);
15818                    if (DEBUG_PREFERRED) {
15819                        Slog.i(TAG, "Checking replace of preferred:");
15820                        filter.dump(new LogPrinter(Log.INFO, TAG), "  ");
15821                        if (!cur.mPref.mAlways) {
15822                            Slog.i(TAG, "  -- CUR; not mAlways!");
15823                        } else {
15824                            Slog.i(TAG, "  -- CUR: mMatch=" + cur.mPref.mMatch);
15825                            Slog.i(TAG, "  -- CUR: mSet="
15826                                    + Arrays.toString(cur.mPref.mSetComponents));
15827                            Slog.i(TAG, "  -- CUR: mComponent=" + cur.mPref.mShortComponent);
15828                            Slog.i(TAG, "  -- NEW: mMatch="
15829                                    + (match&IntentFilter.MATCH_CATEGORY_MASK));
15830                            Slog.i(TAG, "  -- CUR: mSet=" + Arrays.toString(set));
15831                            Slog.i(TAG, "  -- CUR: mComponent=" + activity.flattenToShortString());
15832                        }
15833                    }
15834                    if (cur.mPref.mAlways && cur.mPref.mComponent.equals(activity)
15835                            && cur.mPref.mMatch == (match&IntentFilter.MATCH_CATEGORY_MASK)
15836                            && cur.mPref.sameSet(set)) {
15837                        // Setting the preferred activity to what it happens to be already
15838                        if (DEBUG_PREFERRED) {
15839                            Slog.i(TAG, "Replacing with same preferred activity "
15840                                    + cur.mPref.mShortComponent + " for user "
15841                                    + userId + ":");
15842                            filter.dump(new LogPrinter(Log.INFO, TAG), "  ");
15843                        }
15844                        return;
15845                    }
15846                }
15847
15848                if (existing != null) {
15849                    if (DEBUG_PREFERRED) {
15850                        Slog.i(TAG, existing.size() + " existing preferred matches for:");
15851                        filter.dump(new LogPrinter(Log.INFO, TAG), "  ");
15852                    }
15853                    for (int i = 0; i < existing.size(); i++) {
15854                        PreferredActivity pa = existing.get(i);
15855                        if (DEBUG_PREFERRED) {
15856                            Slog.i(TAG, "Removing existing preferred activity "
15857                                    + pa.mPref.mComponent + ":");
15858                            pa.dump(new LogPrinter(Log.INFO, TAG), "  ");
15859                        }
15860                        pir.removeFilter(pa);
15861                    }
15862                }
15863            }
15864            addPreferredActivityInternal(filter, match, set, activity, true, userId,
15865                    "Replacing preferred");
15866        }
15867    }
15868
15869    @Override
15870    public void clearPackagePreferredActivities(String packageName) {
15871        final int uid = Binder.getCallingUid();
15872        // writer
15873        synchronized (mPackages) {
15874            PackageParser.Package pkg = mPackages.get(packageName);
15875            if (pkg == null || pkg.applicationInfo.uid != uid) {
15876                if (mContext.checkCallingOrSelfPermission(
15877                        android.Manifest.permission.SET_PREFERRED_APPLICATIONS)
15878                        != PackageManager.PERMISSION_GRANTED) {
15879                    if (getUidTargetSdkVersionLockedLPr(Binder.getCallingUid())
15880                            < Build.VERSION_CODES.FROYO) {
15881                        Slog.w(TAG, "Ignoring clearPackagePreferredActivities() from uid "
15882                                + Binder.getCallingUid());
15883                        return;
15884                    }
15885                    mContext.enforceCallingOrSelfPermission(
15886                            android.Manifest.permission.SET_PREFERRED_APPLICATIONS, null);
15887                }
15888            }
15889
15890            int user = UserHandle.getCallingUserId();
15891            if (clearPackagePreferredActivitiesLPw(packageName, user)) {
15892                scheduleWritePackageRestrictionsLocked(user);
15893            }
15894        }
15895    }
15896
15897    /** This method takes a specific user id as well as UserHandle.USER_ALL. */
15898    boolean clearPackagePreferredActivitiesLPw(String packageName, int userId) {
15899        ArrayList<PreferredActivity> removed = null;
15900        boolean changed = false;
15901        for (int i=0; i<mSettings.mPreferredActivities.size(); i++) {
15902            final int thisUserId = mSettings.mPreferredActivities.keyAt(i);
15903            PreferredIntentResolver pir = mSettings.mPreferredActivities.valueAt(i);
15904            if (userId != UserHandle.USER_ALL && userId != thisUserId) {
15905                continue;
15906            }
15907            Iterator<PreferredActivity> it = pir.filterIterator();
15908            while (it.hasNext()) {
15909                PreferredActivity pa = it.next();
15910                // Mark entry for removal only if it matches the package name
15911                // and the entry is of type "always".
15912                if (packageName == null ||
15913                        (pa.mPref.mComponent.getPackageName().equals(packageName)
15914                                && pa.mPref.mAlways)) {
15915                    if (removed == null) {
15916                        removed = new ArrayList<PreferredActivity>();
15917                    }
15918                    removed.add(pa);
15919                }
15920            }
15921            if (removed != null) {
15922                for (int j=0; j<removed.size(); j++) {
15923                    PreferredActivity pa = removed.get(j);
15924                    pir.removeFilter(pa);
15925                }
15926                changed = true;
15927            }
15928        }
15929        return changed;
15930    }
15931
15932    /** This method takes a specific user id as well as UserHandle.USER_ALL. */
15933    private void clearIntentFilterVerificationsLPw(int userId) {
15934        final int packageCount = mPackages.size();
15935        for (int i = 0; i < packageCount; i++) {
15936            PackageParser.Package pkg = mPackages.valueAt(i);
15937            clearIntentFilterVerificationsLPw(pkg.packageName, userId);
15938        }
15939    }
15940
15941    /** This method takes a specific user id as well as UserHandle.USER_ALL. */
15942    void clearIntentFilterVerificationsLPw(String packageName, int userId) {
15943        if (userId == UserHandle.USER_ALL) {
15944            if (mSettings.removeIntentFilterVerificationLPw(packageName,
15945                    sUserManager.getUserIds())) {
15946                for (int oneUserId : sUserManager.getUserIds()) {
15947                    scheduleWritePackageRestrictionsLocked(oneUserId);
15948                }
15949            }
15950        } else {
15951            if (mSettings.removeIntentFilterVerificationLPw(packageName, userId)) {
15952                scheduleWritePackageRestrictionsLocked(userId);
15953            }
15954        }
15955    }
15956
15957    void clearDefaultBrowserIfNeeded(String packageName) {
15958        for (int oneUserId : sUserManager.getUserIds()) {
15959            String defaultBrowserPackageName = getDefaultBrowserPackageName(oneUserId);
15960            if (TextUtils.isEmpty(defaultBrowserPackageName)) continue;
15961            if (packageName.equals(defaultBrowserPackageName)) {
15962                setDefaultBrowserPackageName(null, oneUserId);
15963            }
15964        }
15965    }
15966
15967    @Override
15968    public void resetApplicationPreferences(int userId) {
15969        mContext.enforceCallingOrSelfPermission(
15970                android.Manifest.permission.SET_PREFERRED_APPLICATIONS, null);
15971        // writer
15972        synchronized (mPackages) {
15973            final long identity = Binder.clearCallingIdentity();
15974            try {
15975                clearPackagePreferredActivitiesLPw(null, userId);
15976                mSettings.applyDefaultPreferredAppsLPw(this, userId);
15977                // TODO: We have to reset the default SMS and Phone. This requires
15978                // significant refactoring to keep all default apps in the package
15979                // manager (cleaner but more work) or have the services provide
15980                // callbacks to the package manager to request a default app reset.
15981                applyFactoryDefaultBrowserLPw(userId);
15982                clearIntentFilterVerificationsLPw(userId);
15983                primeDomainVerificationsLPw(userId);
15984                resetUserChangesToRuntimePermissionsAndFlagsLPw(userId);
15985                scheduleWritePackageRestrictionsLocked(userId);
15986            } finally {
15987                Binder.restoreCallingIdentity(identity);
15988            }
15989        }
15990    }
15991
15992    @Override
15993    public int getPreferredActivities(List<IntentFilter> outFilters,
15994            List<ComponentName> outActivities, String packageName) {
15995
15996        int num = 0;
15997        final int userId = UserHandle.getCallingUserId();
15998        // reader
15999        synchronized (mPackages) {
16000            PreferredIntentResolver pir = mSettings.mPreferredActivities.get(userId);
16001            if (pir != null) {
16002                final Iterator<PreferredActivity> it = pir.filterIterator();
16003                while (it.hasNext()) {
16004                    final PreferredActivity pa = it.next();
16005                    if (packageName == null
16006                            || (pa.mPref.mComponent.getPackageName().equals(packageName)
16007                                    && pa.mPref.mAlways)) {
16008                        if (outFilters != null) {
16009                            outFilters.add(new IntentFilter(pa));
16010                        }
16011                        if (outActivities != null) {
16012                            outActivities.add(pa.mPref.mComponent);
16013                        }
16014                    }
16015                }
16016            }
16017        }
16018
16019        return num;
16020    }
16021
16022    @Override
16023    public void addPersistentPreferredActivity(IntentFilter filter, ComponentName activity,
16024            int userId) {
16025        int callingUid = Binder.getCallingUid();
16026        if (callingUid != Process.SYSTEM_UID) {
16027            throw new SecurityException(
16028                    "addPersistentPreferredActivity can only be run by the system");
16029        }
16030        if (filter.countActions() == 0) {
16031            Slog.w(TAG, "Cannot set a preferred activity with no filter actions");
16032            return;
16033        }
16034        synchronized (mPackages) {
16035            Slog.i(TAG, "Adding persistent preferred activity " + activity + " for user " + userId +
16036                    ":");
16037            filter.dump(new LogPrinter(Log.INFO, TAG), "  ");
16038            mSettings.editPersistentPreferredActivitiesLPw(userId).addFilter(
16039                    new PersistentPreferredActivity(filter, activity));
16040            scheduleWritePackageRestrictionsLocked(userId);
16041        }
16042    }
16043
16044    @Override
16045    public void clearPackagePersistentPreferredActivities(String packageName, int userId) {
16046        int callingUid = Binder.getCallingUid();
16047        if (callingUid != Process.SYSTEM_UID) {
16048            throw new SecurityException(
16049                    "clearPackagePersistentPreferredActivities can only be run by the system");
16050        }
16051        ArrayList<PersistentPreferredActivity> removed = null;
16052        boolean changed = false;
16053        synchronized (mPackages) {
16054            for (int i=0; i<mSettings.mPersistentPreferredActivities.size(); i++) {
16055                final int thisUserId = mSettings.mPersistentPreferredActivities.keyAt(i);
16056                PersistentPreferredIntentResolver ppir = mSettings.mPersistentPreferredActivities
16057                        .valueAt(i);
16058                if (userId != thisUserId) {
16059                    continue;
16060                }
16061                Iterator<PersistentPreferredActivity> it = ppir.filterIterator();
16062                while (it.hasNext()) {
16063                    PersistentPreferredActivity ppa = it.next();
16064                    // Mark entry for removal only if it matches the package name.
16065                    if (ppa.mComponent.getPackageName().equals(packageName)) {
16066                        if (removed == null) {
16067                            removed = new ArrayList<PersistentPreferredActivity>();
16068                        }
16069                        removed.add(ppa);
16070                    }
16071                }
16072                if (removed != null) {
16073                    for (int j=0; j<removed.size(); j++) {
16074                        PersistentPreferredActivity ppa = removed.get(j);
16075                        ppir.removeFilter(ppa);
16076                    }
16077                    changed = true;
16078                }
16079            }
16080
16081            if (changed) {
16082                scheduleWritePackageRestrictionsLocked(userId);
16083            }
16084        }
16085    }
16086
16087    /**
16088     * Common machinery for picking apart a restored XML blob and passing
16089     * it to a caller-supplied functor to be applied to the running system.
16090     */
16091    private void restoreFromXml(XmlPullParser parser, int userId,
16092            String expectedStartTag, BlobXmlRestorer functor)
16093            throws IOException, XmlPullParserException {
16094        int type;
16095        while ((type = parser.next()) != XmlPullParser.START_TAG
16096                && type != XmlPullParser.END_DOCUMENT) {
16097        }
16098        if (type != XmlPullParser.START_TAG) {
16099            // oops didn't find a start tag?!
16100            if (DEBUG_BACKUP) {
16101                Slog.e(TAG, "Didn't find start tag during restore");
16102            }
16103            return;
16104        }
16105Slog.v(TAG, ":: restoreFromXml() : got to tag " + parser.getName());
16106        // this is supposed to be TAG_PREFERRED_BACKUP
16107        if (!expectedStartTag.equals(parser.getName())) {
16108            if (DEBUG_BACKUP) {
16109                Slog.e(TAG, "Found unexpected tag " + parser.getName());
16110            }
16111            return;
16112        }
16113
16114        // skip interfering stuff, then we're aligned with the backing implementation
16115        while ((type = parser.next()) == XmlPullParser.TEXT) { }
16116Slog.v(TAG, ":: stepped forward, applying functor at tag " + parser.getName());
16117        functor.apply(parser, userId);
16118    }
16119
16120    private interface BlobXmlRestorer {
16121        public void apply(XmlPullParser parser, int userId) throws IOException, XmlPullParserException;
16122    }
16123
16124    /**
16125     * Non-Binder method, support for the backup/restore mechanism: write the
16126     * full set of preferred activities in its canonical XML format.  Returns the
16127     * XML output as a byte array, or null if there is none.
16128     */
16129    @Override
16130    public byte[] getPreferredActivityBackup(int userId) {
16131        if (Binder.getCallingUid() != Process.SYSTEM_UID) {
16132            throw new SecurityException("Only the system may call getPreferredActivityBackup()");
16133        }
16134
16135        ByteArrayOutputStream dataStream = new ByteArrayOutputStream();
16136        try {
16137            final XmlSerializer serializer = new FastXmlSerializer();
16138            serializer.setOutput(dataStream, StandardCharsets.UTF_8.name());
16139            serializer.startDocument(null, true);
16140            serializer.startTag(null, TAG_PREFERRED_BACKUP);
16141
16142            synchronized (mPackages) {
16143                mSettings.writePreferredActivitiesLPr(serializer, userId, true);
16144            }
16145
16146            serializer.endTag(null, TAG_PREFERRED_BACKUP);
16147            serializer.endDocument();
16148            serializer.flush();
16149        } catch (Exception e) {
16150            if (DEBUG_BACKUP) {
16151                Slog.e(TAG, "Unable to write preferred activities for backup", e);
16152            }
16153            return null;
16154        }
16155
16156        return dataStream.toByteArray();
16157    }
16158
16159    @Override
16160    public void restorePreferredActivities(byte[] backup, int userId) {
16161        if (Binder.getCallingUid() != Process.SYSTEM_UID) {
16162            throw new SecurityException("Only the system may call restorePreferredActivities()");
16163        }
16164
16165        try {
16166            final XmlPullParser parser = Xml.newPullParser();
16167            parser.setInput(new ByteArrayInputStream(backup), StandardCharsets.UTF_8.name());
16168            restoreFromXml(parser, userId, TAG_PREFERRED_BACKUP,
16169                    new BlobXmlRestorer() {
16170                        @Override
16171                        public void apply(XmlPullParser parser, int userId)
16172                                throws XmlPullParserException, IOException {
16173                            synchronized (mPackages) {
16174                                mSettings.readPreferredActivitiesLPw(parser, userId);
16175                            }
16176                        }
16177                    } );
16178        } catch (Exception e) {
16179            if (DEBUG_BACKUP) {
16180                Slog.e(TAG, "Exception restoring preferred activities: " + e.getMessage());
16181            }
16182        }
16183    }
16184
16185    /**
16186     * Non-Binder method, support for the backup/restore mechanism: write the
16187     * default browser (etc) settings in its canonical XML format.  Returns the default
16188     * browser XML representation as a byte array, or null if there is none.
16189     */
16190    @Override
16191    public byte[] getDefaultAppsBackup(int userId) {
16192        if (Binder.getCallingUid() != Process.SYSTEM_UID) {
16193            throw new SecurityException("Only the system may call getDefaultAppsBackup()");
16194        }
16195
16196        ByteArrayOutputStream dataStream = new ByteArrayOutputStream();
16197        try {
16198            final XmlSerializer serializer = new FastXmlSerializer();
16199            serializer.setOutput(dataStream, StandardCharsets.UTF_8.name());
16200            serializer.startDocument(null, true);
16201            serializer.startTag(null, TAG_DEFAULT_APPS);
16202
16203            synchronized (mPackages) {
16204                mSettings.writeDefaultAppsLPr(serializer, userId);
16205            }
16206
16207            serializer.endTag(null, TAG_DEFAULT_APPS);
16208            serializer.endDocument();
16209            serializer.flush();
16210        } catch (Exception e) {
16211            if (DEBUG_BACKUP) {
16212                Slog.e(TAG, "Unable to write default apps for backup", e);
16213            }
16214            return null;
16215        }
16216
16217        return dataStream.toByteArray();
16218    }
16219
16220    @Override
16221    public void restoreDefaultApps(byte[] backup, int userId) {
16222        if (Binder.getCallingUid() != Process.SYSTEM_UID) {
16223            throw new SecurityException("Only the system may call restoreDefaultApps()");
16224        }
16225
16226        try {
16227            final XmlPullParser parser = Xml.newPullParser();
16228            parser.setInput(new ByteArrayInputStream(backup), StandardCharsets.UTF_8.name());
16229            restoreFromXml(parser, userId, TAG_DEFAULT_APPS,
16230                    new BlobXmlRestorer() {
16231                        @Override
16232                        public void apply(XmlPullParser parser, int userId)
16233                                throws XmlPullParserException, IOException {
16234                            synchronized (mPackages) {
16235                                mSettings.readDefaultAppsLPw(parser, userId);
16236                            }
16237                        }
16238                    } );
16239        } catch (Exception e) {
16240            if (DEBUG_BACKUP) {
16241                Slog.e(TAG, "Exception restoring default apps: " + e.getMessage());
16242            }
16243        }
16244    }
16245
16246    @Override
16247    public byte[] getIntentFilterVerificationBackup(int userId) {
16248        if (Binder.getCallingUid() != Process.SYSTEM_UID) {
16249            throw new SecurityException("Only the system may call getIntentFilterVerificationBackup()");
16250        }
16251
16252        ByteArrayOutputStream dataStream = new ByteArrayOutputStream();
16253        try {
16254            final XmlSerializer serializer = new FastXmlSerializer();
16255            serializer.setOutput(dataStream, StandardCharsets.UTF_8.name());
16256            serializer.startDocument(null, true);
16257            serializer.startTag(null, TAG_INTENT_FILTER_VERIFICATION);
16258
16259            synchronized (mPackages) {
16260                mSettings.writeAllDomainVerificationsLPr(serializer, userId);
16261            }
16262
16263            serializer.endTag(null, TAG_INTENT_FILTER_VERIFICATION);
16264            serializer.endDocument();
16265            serializer.flush();
16266        } catch (Exception e) {
16267            if (DEBUG_BACKUP) {
16268                Slog.e(TAG, "Unable to write default apps for backup", e);
16269            }
16270            return null;
16271        }
16272
16273        return dataStream.toByteArray();
16274    }
16275
16276    @Override
16277    public void restoreIntentFilterVerification(byte[] backup, int userId) {
16278        if (Binder.getCallingUid() != Process.SYSTEM_UID) {
16279            throw new SecurityException("Only the system may call restorePreferredActivities()");
16280        }
16281
16282        try {
16283            final XmlPullParser parser = Xml.newPullParser();
16284            parser.setInput(new ByteArrayInputStream(backup), StandardCharsets.UTF_8.name());
16285            restoreFromXml(parser, userId, TAG_INTENT_FILTER_VERIFICATION,
16286                    new BlobXmlRestorer() {
16287                        @Override
16288                        public void apply(XmlPullParser parser, int userId)
16289                                throws XmlPullParserException, IOException {
16290                            synchronized (mPackages) {
16291                                mSettings.readAllDomainVerificationsLPr(parser, userId);
16292                                mSettings.writeLPr();
16293                            }
16294                        }
16295                    } );
16296        } catch (Exception e) {
16297            if (DEBUG_BACKUP) {
16298                Slog.e(TAG, "Exception restoring preferred activities: " + e.getMessage());
16299            }
16300        }
16301    }
16302
16303    @Override
16304    public byte[] getPermissionGrantBackup(int userId) {
16305        if (Binder.getCallingUid() != Process.SYSTEM_UID) {
16306            throw new SecurityException("Only the system may call getPermissionGrantBackup()");
16307        }
16308
16309        ByteArrayOutputStream dataStream = new ByteArrayOutputStream();
16310        try {
16311            final XmlSerializer serializer = new FastXmlSerializer();
16312            serializer.setOutput(dataStream, StandardCharsets.UTF_8.name());
16313            serializer.startDocument(null, true);
16314            serializer.startTag(null, TAG_PERMISSION_BACKUP);
16315
16316            synchronized (mPackages) {
16317                serializeRuntimePermissionGrantsLPr(serializer, userId);
16318            }
16319
16320            serializer.endTag(null, TAG_PERMISSION_BACKUP);
16321            serializer.endDocument();
16322            serializer.flush();
16323        } catch (Exception e) {
16324            if (DEBUG_BACKUP) {
16325                Slog.e(TAG, "Unable to write default apps for backup", e);
16326            }
16327            return null;
16328        }
16329
16330        return dataStream.toByteArray();
16331    }
16332
16333    @Override
16334    public void restorePermissionGrants(byte[] backup, int userId) {
16335        if (Binder.getCallingUid() != Process.SYSTEM_UID) {
16336            throw new SecurityException("Only the system may call restorePermissionGrants()");
16337        }
16338
16339        try {
16340            final XmlPullParser parser = Xml.newPullParser();
16341            parser.setInput(new ByteArrayInputStream(backup), StandardCharsets.UTF_8.name());
16342            restoreFromXml(parser, userId, TAG_PERMISSION_BACKUP,
16343                    new BlobXmlRestorer() {
16344                        @Override
16345                        public void apply(XmlPullParser parser, int userId)
16346                                throws XmlPullParserException, IOException {
16347                            synchronized (mPackages) {
16348                                processRestoredPermissionGrantsLPr(parser, userId);
16349                            }
16350                        }
16351                    } );
16352        } catch (Exception e) {
16353            if (DEBUG_BACKUP) {
16354                Slog.e(TAG, "Exception restoring preferred activities: " + e.getMessage());
16355            }
16356        }
16357    }
16358
16359    private void serializeRuntimePermissionGrantsLPr(XmlSerializer serializer, final int userId)
16360            throws IOException {
16361        serializer.startTag(null, TAG_ALL_GRANTS);
16362
16363        final int N = mSettings.mPackages.size();
16364        for (int i = 0; i < N; i++) {
16365            final PackageSetting ps = mSettings.mPackages.valueAt(i);
16366            boolean pkgGrantsKnown = false;
16367
16368            PermissionsState packagePerms = ps.getPermissionsState();
16369
16370            for (PermissionState state : packagePerms.getRuntimePermissionStates(userId)) {
16371                final int grantFlags = state.getFlags();
16372                // only look at grants that are not system/policy fixed
16373                if ((grantFlags & SYSTEM_RUNTIME_GRANT_MASK) == 0) {
16374                    final boolean isGranted = state.isGranted();
16375                    // And only back up the user-twiddled state bits
16376                    if (isGranted || (grantFlags & USER_RUNTIME_GRANT_MASK) != 0) {
16377                        final String packageName = mSettings.mPackages.keyAt(i);
16378                        if (!pkgGrantsKnown) {
16379                            serializer.startTag(null, TAG_GRANT);
16380                            serializer.attribute(null, ATTR_PACKAGE_NAME, packageName);
16381                            pkgGrantsKnown = true;
16382                        }
16383
16384                        final boolean userSet =
16385                                (grantFlags & FLAG_PERMISSION_USER_SET) != 0;
16386                        final boolean userFixed =
16387                                (grantFlags & FLAG_PERMISSION_USER_FIXED) != 0;
16388                        final boolean revoke =
16389                                (grantFlags & FLAG_PERMISSION_REVOKE_ON_UPGRADE) != 0;
16390
16391                        serializer.startTag(null, TAG_PERMISSION);
16392                        serializer.attribute(null, ATTR_PERMISSION_NAME, state.getName());
16393                        if (isGranted) {
16394                            serializer.attribute(null, ATTR_IS_GRANTED, "true");
16395                        }
16396                        if (userSet) {
16397                            serializer.attribute(null, ATTR_USER_SET, "true");
16398                        }
16399                        if (userFixed) {
16400                            serializer.attribute(null, ATTR_USER_FIXED, "true");
16401                        }
16402                        if (revoke) {
16403                            serializer.attribute(null, ATTR_REVOKE_ON_UPGRADE, "true");
16404                        }
16405                        serializer.endTag(null, TAG_PERMISSION);
16406                    }
16407                }
16408            }
16409
16410            if (pkgGrantsKnown) {
16411                serializer.endTag(null, TAG_GRANT);
16412            }
16413        }
16414
16415        serializer.endTag(null, TAG_ALL_GRANTS);
16416    }
16417
16418    private void processRestoredPermissionGrantsLPr(XmlPullParser parser, int userId)
16419            throws XmlPullParserException, IOException {
16420        String pkgName = null;
16421        int outerDepth = parser.getDepth();
16422        int type;
16423        while ((type = parser.next()) != XmlPullParser.END_DOCUMENT
16424                && (type != XmlPullParser.END_TAG || parser.getDepth() > outerDepth)) {
16425            if (type == XmlPullParser.END_TAG || type == XmlPullParser.TEXT) {
16426                continue;
16427            }
16428
16429            final String tagName = parser.getName();
16430            if (tagName.equals(TAG_GRANT)) {
16431                pkgName = parser.getAttributeValue(null, ATTR_PACKAGE_NAME);
16432                if (DEBUG_BACKUP) {
16433                    Slog.v(TAG, "+++ Restoring grants for package " + pkgName);
16434                }
16435            } else if (tagName.equals(TAG_PERMISSION)) {
16436
16437                final boolean isGranted = "true".equals(parser.getAttributeValue(null, ATTR_IS_GRANTED));
16438                final String permName = parser.getAttributeValue(null, ATTR_PERMISSION_NAME);
16439
16440                int newFlagSet = 0;
16441                if ("true".equals(parser.getAttributeValue(null, ATTR_USER_SET))) {
16442                    newFlagSet |= FLAG_PERMISSION_USER_SET;
16443                }
16444                if ("true".equals(parser.getAttributeValue(null, ATTR_USER_FIXED))) {
16445                    newFlagSet |= FLAG_PERMISSION_USER_FIXED;
16446                }
16447                if ("true".equals(parser.getAttributeValue(null, ATTR_REVOKE_ON_UPGRADE))) {
16448                    newFlagSet |= FLAG_PERMISSION_REVOKE_ON_UPGRADE;
16449                }
16450                if (DEBUG_BACKUP) {
16451                    Slog.v(TAG, "  + Restoring grant: pkg=" + pkgName + " perm=" + permName
16452                            + " granted=" + isGranted + " bits=0x" + Integer.toHexString(newFlagSet));
16453                }
16454                final PackageSetting ps = mSettings.mPackages.get(pkgName);
16455                if (ps != null) {
16456                    // Already installed so we apply the grant immediately
16457                    if (DEBUG_BACKUP) {
16458                        Slog.v(TAG, "        + already installed; applying");
16459                    }
16460                    PermissionsState perms = ps.getPermissionsState();
16461                    BasePermission bp = mSettings.mPermissions.get(permName);
16462                    if (bp != null) {
16463                        if (isGranted) {
16464                            perms.grantRuntimePermission(bp, userId);
16465                        }
16466                        if (newFlagSet != 0) {
16467                            perms.updatePermissionFlags(bp, userId, USER_RUNTIME_GRANT_MASK, newFlagSet);
16468                        }
16469                    }
16470                } else {
16471                    // Need to wait for post-restore install to apply the grant
16472                    if (DEBUG_BACKUP) {
16473                        Slog.v(TAG, "        - not yet installed; saving for later");
16474                    }
16475                    mSettings.processRestoredPermissionGrantLPr(pkgName, permName,
16476                            isGranted, newFlagSet, userId);
16477                }
16478            } else {
16479                PackageManagerService.reportSettingsProblem(Log.WARN,
16480                        "Unknown element under <" + TAG_PERMISSION_BACKUP + ">: " + tagName);
16481                XmlUtils.skipCurrentTag(parser);
16482            }
16483        }
16484
16485        scheduleWriteSettingsLocked();
16486        mSettings.writeRuntimePermissionsForUserLPr(userId, false);
16487    }
16488
16489    @Override
16490    public void addCrossProfileIntentFilter(IntentFilter intentFilter, String ownerPackage,
16491            int sourceUserId, int targetUserId, int flags) {
16492        mContext.enforceCallingOrSelfPermission(
16493                        android.Manifest.permission.INTERACT_ACROSS_USERS_FULL, null);
16494        int callingUid = Binder.getCallingUid();
16495        enforceOwnerRights(ownerPackage, callingUid);
16496        enforceShellRestriction(UserManager.DISALLOW_DEBUGGING_FEATURES, callingUid, sourceUserId);
16497        if (intentFilter.countActions() == 0) {
16498            Slog.w(TAG, "Cannot set a crossProfile intent filter with no filter actions");
16499            return;
16500        }
16501        synchronized (mPackages) {
16502            CrossProfileIntentFilter newFilter = new CrossProfileIntentFilter(intentFilter,
16503                    ownerPackage, targetUserId, flags);
16504            CrossProfileIntentResolver resolver =
16505                    mSettings.editCrossProfileIntentResolverLPw(sourceUserId);
16506            ArrayList<CrossProfileIntentFilter> existing = resolver.findFilters(intentFilter);
16507            // We have all those whose filter is equal. Now checking if the rest is equal as well.
16508            if (existing != null) {
16509                int size = existing.size();
16510                for (int i = 0; i < size; i++) {
16511                    if (newFilter.equalsIgnoreFilter(existing.get(i))) {
16512                        return;
16513                    }
16514                }
16515            }
16516            resolver.addFilter(newFilter);
16517            scheduleWritePackageRestrictionsLocked(sourceUserId);
16518        }
16519    }
16520
16521    @Override
16522    public void clearCrossProfileIntentFilters(int sourceUserId, String ownerPackage) {
16523        mContext.enforceCallingOrSelfPermission(
16524                        android.Manifest.permission.INTERACT_ACROSS_USERS_FULL, null);
16525        int callingUid = Binder.getCallingUid();
16526        enforceOwnerRights(ownerPackage, callingUid);
16527        enforceShellRestriction(UserManager.DISALLOW_DEBUGGING_FEATURES, callingUid, sourceUserId);
16528        synchronized (mPackages) {
16529            CrossProfileIntentResolver resolver =
16530                    mSettings.editCrossProfileIntentResolverLPw(sourceUserId);
16531            ArraySet<CrossProfileIntentFilter> set =
16532                    new ArraySet<CrossProfileIntentFilter>(resolver.filterSet());
16533            for (CrossProfileIntentFilter filter : set) {
16534                if (filter.getOwnerPackage().equals(ownerPackage)) {
16535                    resolver.removeFilter(filter);
16536                }
16537            }
16538            scheduleWritePackageRestrictionsLocked(sourceUserId);
16539        }
16540    }
16541
16542    // Enforcing that callingUid is owning pkg on userId
16543    private void enforceOwnerRights(String pkg, int callingUid) {
16544        // The system owns everything.
16545        if (UserHandle.getAppId(callingUid) == Process.SYSTEM_UID) {
16546            return;
16547        }
16548        int callingUserId = UserHandle.getUserId(callingUid);
16549        PackageInfo pi = getPackageInfo(pkg, 0, callingUserId);
16550        if (pi == null) {
16551            throw new IllegalArgumentException("Unknown package " + pkg + " on user "
16552                    + callingUserId);
16553        }
16554        if (!UserHandle.isSameApp(pi.applicationInfo.uid, callingUid)) {
16555            throw new SecurityException("Calling uid " + callingUid
16556                    + " does not own package " + pkg);
16557        }
16558    }
16559
16560    @Override
16561    public ComponentName getHomeActivities(List<ResolveInfo> allHomeCandidates) {
16562        return getHomeActivitiesAsUser(allHomeCandidates, UserHandle.getCallingUserId());
16563    }
16564
16565    private Intent getHomeIntent() {
16566        Intent intent = new Intent(Intent.ACTION_MAIN);
16567        intent.addCategory(Intent.CATEGORY_HOME);
16568        return intent;
16569    }
16570
16571    private IntentFilter getHomeFilter() {
16572        IntentFilter filter = new IntentFilter(Intent.ACTION_MAIN);
16573        filter.addCategory(Intent.CATEGORY_HOME);
16574        filter.addCategory(Intent.CATEGORY_DEFAULT);
16575        return filter;
16576    }
16577
16578    ComponentName getHomeActivitiesAsUser(List<ResolveInfo> allHomeCandidates,
16579            int userId) {
16580        Intent intent  = getHomeIntent();
16581        List<ResolveInfo> list = queryIntentActivitiesInternal(intent, null,
16582                PackageManager.GET_META_DATA, userId);
16583        ResolveInfo preferred = findPreferredActivity(intent, null, 0, list, 0,
16584                true, false, false, userId);
16585
16586        allHomeCandidates.clear();
16587        if (list != null) {
16588            for (ResolveInfo ri : list) {
16589                allHomeCandidates.add(ri);
16590            }
16591        }
16592        return (preferred == null || preferred.activityInfo == null)
16593                ? null
16594                : new ComponentName(preferred.activityInfo.packageName,
16595                        preferred.activityInfo.name);
16596    }
16597
16598    @Override
16599    public void setHomeActivity(ComponentName comp, int userId) {
16600        ArrayList<ResolveInfo> homeActivities = new ArrayList<>();
16601        getHomeActivitiesAsUser(homeActivities, userId);
16602
16603        boolean found = false;
16604
16605        final int size = homeActivities.size();
16606        final ComponentName[] set = new ComponentName[size];
16607        for (int i = 0; i < size; i++) {
16608            final ResolveInfo candidate = homeActivities.get(i);
16609            final ActivityInfo info = candidate.activityInfo;
16610            final ComponentName activityName = new ComponentName(info.packageName, info.name);
16611            set[i] = activityName;
16612            if (!found && activityName.equals(comp)) {
16613                found = true;
16614            }
16615        }
16616        if (!found) {
16617            throw new IllegalArgumentException("Component " + comp + " cannot be home on user "
16618                    + userId);
16619        }
16620        replacePreferredActivity(getHomeFilter(), IntentFilter.MATCH_CATEGORY_EMPTY,
16621                set, comp, userId);
16622    }
16623
16624    @Override
16625    public void setApplicationEnabledSetting(String appPackageName,
16626            int newState, int flags, int userId, String callingPackage) {
16627        if (!sUserManager.exists(userId)) return;
16628        if (callingPackage == null) {
16629            callingPackage = Integer.toString(Binder.getCallingUid());
16630        }
16631        setEnabledSetting(appPackageName, null, newState, flags, userId, callingPackage);
16632    }
16633
16634    @Override
16635    public void setComponentEnabledSetting(ComponentName componentName,
16636            int newState, int flags, int userId) {
16637        if (!sUserManager.exists(userId)) return;
16638        setEnabledSetting(componentName.getPackageName(),
16639                componentName.getClassName(), newState, flags, userId, null);
16640    }
16641
16642    private void setEnabledSetting(final String packageName, String className, int newState,
16643            final int flags, int userId, String callingPackage) {
16644        if (!(newState == COMPONENT_ENABLED_STATE_DEFAULT
16645              || newState == COMPONENT_ENABLED_STATE_ENABLED
16646              || newState == COMPONENT_ENABLED_STATE_DISABLED
16647              || newState == COMPONENT_ENABLED_STATE_DISABLED_USER
16648              || newState == COMPONENT_ENABLED_STATE_DISABLED_UNTIL_USED)) {
16649            throw new IllegalArgumentException("Invalid new component state: "
16650                    + newState);
16651        }
16652        PackageSetting pkgSetting;
16653        final int uid = Binder.getCallingUid();
16654        final int permission = mContext.checkCallingOrSelfPermission(
16655                android.Manifest.permission.CHANGE_COMPONENT_ENABLED_STATE);
16656        enforceCrossUserPermission(uid, userId,
16657                false /* requireFullPermission */, true /* checkShell */, "set enabled");
16658        final boolean allowedByPermission = (permission == PackageManager.PERMISSION_GRANTED);
16659        boolean sendNow = false;
16660        boolean isApp = (className == null);
16661        String componentName = isApp ? packageName : className;
16662        int packageUid = -1;
16663        ArrayList<String> components;
16664
16665        // writer
16666        synchronized (mPackages) {
16667            pkgSetting = mSettings.mPackages.get(packageName);
16668            if (pkgSetting == null) {
16669                if (className == null) {
16670                    throw new IllegalArgumentException("Unknown package: " + packageName);
16671                }
16672                throw new IllegalArgumentException(
16673                        "Unknown component: " + packageName + "/" + className);
16674            }
16675            // Allow root and verify that userId is not being specified by a different user
16676            if (!allowedByPermission && !UserHandle.isSameApp(uid, pkgSetting.appId)) {
16677                throw new SecurityException(
16678                        "Permission Denial: attempt to change component state from pid="
16679                        + Binder.getCallingPid()
16680                        + ", uid=" + uid + ", package uid=" + pkgSetting.appId);
16681            }
16682            if (className == null) {
16683                // We're dealing with an application/package level state change
16684                if (pkgSetting.getEnabled(userId) == newState) {
16685                    // Nothing to do
16686                    return;
16687                }
16688                if (newState == PackageManager.COMPONENT_ENABLED_STATE_DEFAULT
16689                    || newState == PackageManager.COMPONENT_ENABLED_STATE_ENABLED) {
16690                    // Don't care about who enables an app.
16691                    callingPackage = null;
16692                }
16693                pkgSetting.setEnabled(newState, userId, callingPackage);
16694                // pkgSetting.pkg.mSetEnabled = newState;
16695            } else {
16696                // We're dealing with a component level state change
16697                // First, verify that this is a valid class name.
16698                PackageParser.Package pkg = pkgSetting.pkg;
16699                if (pkg == null || !pkg.hasComponentClassName(className)) {
16700                    if (pkg != null &&
16701                            pkg.applicationInfo.targetSdkVersion >=
16702                                    Build.VERSION_CODES.JELLY_BEAN) {
16703                        throw new IllegalArgumentException("Component class " + className
16704                                + " does not exist in " + packageName);
16705                    } else {
16706                        Slog.w(TAG, "Failed setComponentEnabledSetting: component class "
16707                                + className + " does not exist in " + packageName);
16708                    }
16709                }
16710                switch (newState) {
16711                case COMPONENT_ENABLED_STATE_ENABLED:
16712                    if (!pkgSetting.enableComponentLPw(className, userId)) {
16713                        return;
16714                    }
16715                    break;
16716                case COMPONENT_ENABLED_STATE_DISABLED:
16717                    if (!pkgSetting.disableComponentLPw(className, userId)) {
16718                        return;
16719                    }
16720                    break;
16721                case COMPONENT_ENABLED_STATE_DEFAULT:
16722                    if (!pkgSetting.restoreComponentLPw(className, userId)) {
16723                        return;
16724                    }
16725                    break;
16726                default:
16727                    Slog.e(TAG, "Invalid new component state: " + newState);
16728                    return;
16729                }
16730            }
16731            scheduleWritePackageRestrictionsLocked(userId);
16732            components = mPendingBroadcasts.get(userId, packageName);
16733            final boolean newPackage = components == null;
16734            if (newPackage) {
16735                components = new ArrayList<String>();
16736            }
16737            if (!components.contains(componentName)) {
16738                components.add(componentName);
16739            }
16740            if ((flags&PackageManager.DONT_KILL_APP) == 0) {
16741                sendNow = true;
16742                // Purge entry from pending broadcast list if another one exists already
16743                // since we are sending one right away.
16744                mPendingBroadcasts.remove(userId, packageName);
16745            } else {
16746                if (newPackage) {
16747                    mPendingBroadcasts.put(userId, packageName, components);
16748                }
16749                if (!mHandler.hasMessages(SEND_PENDING_BROADCAST)) {
16750                    // Schedule a message
16751                    mHandler.sendEmptyMessageDelayed(SEND_PENDING_BROADCAST, BROADCAST_DELAY);
16752                }
16753            }
16754        }
16755
16756        long callingId = Binder.clearCallingIdentity();
16757        try {
16758            if (sendNow) {
16759                packageUid = UserHandle.getUid(userId, pkgSetting.appId);
16760                sendPackageChangedBroadcast(packageName,
16761                        (flags&PackageManager.DONT_KILL_APP) != 0, components, packageUid);
16762            }
16763        } finally {
16764            Binder.restoreCallingIdentity(callingId);
16765        }
16766    }
16767
16768    @Override
16769    public void flushPackageRestrictionsAsUser(int userId) {
16770        if (!sUserManager.exists(userId)) {
16771            return;
16772        }
16773        enforceCrossUserPermission(Binder.getCallingUid(), userId, false /* requireFullPermission*/,
16774                false /* checkShell */, "flushPackageRestrictions");
16775        synchronized (mPackages) {
16776            mSettings.writePackageRestrictionsLPr(userId);
16777            mDirtyUsers.remove(userId);
16778            if (mDirtyUsers.isEmpty()) {
16779                mHandler.removeMessages(WRITE_PACKAGE_RESTRICTIONS);
16780            }
16781        }
16782    }
16783
16784    private void sendPackageChangedBroadcast(String packageName,
16785            boolean killFlag, ArrayList<String> componentNames, int packageUid) {
16786        if (DEBUG_INSTALL)
16787            Log.v(TAG, "Sending package changed: package=" + packageName + " components="
16788                    + componentNames);
16789        Bundle extras = new Bundle(4);
16790        extras.putString(Intent.EXTRA_CHANGED_COMPONENT_NAME, componentNames.get(0));
16791        String nameList[] = new String[componentNames.size()];
16792        componentNames.toArray(nameList);
16793        extras.putStringArray(Intent.EXTRA_CHANGED_COMPONENT_NAME_LIST, nameList);
16794        extras.putBoolean(Intent.EXTRA_DONT_KILL_APP, killFlag);
16795        extras.putInt(Intent.EXTRA_UID, packageUid);
16796        // If this is not reporting a change of the overall package, then only send it
16797        // to registered receivers.  We don't want to launch a swath of apps for every
16798        // little component state change.
16799        final int flags = !componentNames.contains(packageName)
16800                ? Intent.FLAG_RECEIVER_REGISTERED_ONLY : 0;
16801        sendPackageBroadcast(Intent.ACTION_PACKAGE_CHANGED,  packageName, extras, flags, null, null,
16802                new int[] {UserHandle.getUserId(packageUid)});
16803    }
16804
16805    @Override
16806    public void setPackageStoppedState(String packageName, boolean stopped, int userId) {
16807        if (!sUserManager.exists(userId)) return;
16808        final int uid = Binder.getCallingUid();
16809        final int permission = mContext.checkCallingOrSelfPermission(
16810                android.Manifest.permission.CHANGE_COMPONENT_ENABLED_STATE);
16811        final boolean allowedByPermission = (permission == PackageManager.PERMISSION_GRANTED);
16812        enforceCrossUserPermission(uid, userId,
16813                true /* requireFullPermission */, true /* checkShell */, "stop package");
16814        // writer
16815        synchronized (mPackages) {
16816            if (mSettings.setPackageStoppedStateLPw(this, packageName, stopped,
16817                    allowedByPermission, uid, userId)) {
16818                scheduleWritePackageRestrictionsLocked(userId);
16819            }
16820        }
16821    }
16822
16823    @Override
16824    public String getInstallerPackageName(String packageName) {
16825        // reader
16826        synchronized (mPackages) {
16827            return mSettings.getInstallerPackageNameLPr(packageName);
16828        }
16829    }
16830
16831    @Override
16832    public int getApplicationEnabledSetting(String packageName, int userId) {
16833        if (!sUserManager.exists(userId)) return COMPONENT_ENABLED_STATE_DISABLED;
16834        int uid = Binder.getCallingUid();
16835        enforceCrossUserPermission(uid, userId,
16836                false /* requireFullPermission */, false /* checkShell */, "get enabled");
16837        // reader
16838        synchronized (mPackages) {
16839            return mSettings.getApplicationEnabledSettingLPr(packageName, userId);
16840        }
16841    }
16842
16843    @Override
16844    public int getComponentEnabledSetting(ComponentName componentName, int userId) {
16845        if (!sUserManager.exists(userId)) return COMPONENT_ENABLED_STATE_DISABLED;
16846        int uid = Binder.getCallingUid();
16847        enforceCrossUserPermission(uid, userId,
16848                false /* requireFullPermission */, false /* checkShell */, "get component enabled");
16849        // reader
16850        synchronized (mPackages) {
16851            return mSettings.getComponentEnabledSettingLPr(componentName, userId);
16852        }
16853    }
16854
16855    @Override
16856    public void enterSafeMode() {
16857        enforceSystemOrRoot("Only the system can request entering safe mode");
16858
16859        if (!mSystemReady) {
16860            mSafeMode = true;
16861        }
16862    }
16863
16864    @Override
16865    public void systemReady() {
16866        mSystemReady = true;
16867
16868        // Read the compatibilty setting when the system is ready.
16869        boolean compatibilityModeEnabled = android.provider.Settings.Global.getInt(
16870                mContext.getContentResolver(),
16871                android.provider.Settings.Global.COMPATIBILITY_MODE, 1) == 1;
16872        PackageParser.setCompatibilityModeEnabled(compatibilityModeEnabled);
16873        if (DEBUG_SETTINGS) {
16874            Log.d(TAG, "compatibility mode:" + compatibilityModeEnabled);
16875        }
16876
16877        int[] grantPermissionsUserIds = EMPTY_INT_ARRAY;
16878
16879        synchronized (mPackages) {
16880            // Verify that all of the preferred activity components actually
16881            // exist.  It is possible for applications to be updated and at
16882            // that point remove a previously declared activity component that
16883            // had been set as a preferred activity.  We try to clean this up
16884            // the next time we encounter that preferred activity, but it is
16885            // possible for the user flow to never be able to return to that
16886            // situation so here we do a sanity check to make sure we haven't
16887            // left any junk around.
16888            ArrayList<PreferredActivity> removed = new ArrayList<PreferredActivity>();
16889            for (int i=0; i<mSettings.mPreferredActivities.size(); i++) {
16890                PreferredIntentResolver pir = mSettings.mPreferredActivities.valueAt(i);
16891                removed.clear();
16892                for (PreferredActivity pa : pir.filterSet()) {
16893                    if (mActivities.mActivities.get(pa.mPref.mComponent) == null) {
16894                        removed.add(pa);
16895                    }
16896                }
16897                if (removed.size() > 0) {
16898                    for (int r=0; r<removed.size(); r++) {
16899                        PreferredActivity pa = removed.get(r);
16900                        Slog.w(TAG, "Removing dangling preferred activity: "
16901                                + pa.mPref.mComponent);
16902                        pir.removeFilter(pa);
16903                    }
16904                    mSettings.writePackageRestrictionsLPr(
16905                            mSettings.mPreferredActivities.keyAt(i));
16906                }
16907            }
16908
16909            for (int userId : UserManagerService.getInstance().getUserIds()) {
16910                if (!mSettings.areDefaultRuntimePermissionsGrantedLPr(userId)) {
16911                    grantPermissionsUserIds = ArrayUtils.appendInt(
16912                            grantPermissionsUserIds, userId);
16913                }
16914            }
16915        }
16916        sUserManager.systemReady();
16917
16918        // If we upgraded grant all default permissions before kicking off.
16919        for (int userId : grantPermissionsUserIds) {
16920            mDefaultPermissionPolicy.grantDefaultPermissions(userId);
16921        }
16922
16923        // Kick off any messages waiting for system ready
16924        if (mPostSystemReadyMessages != null) {
16925            for (Message msg : mPostSystemReadyMessages) {
16926                msg.sendToTarget();
16927            }
16928            mPostSystemReadyMessages = null;
16929        }
16930
16931        // Watch for external volumes that come and go over time
16932        final StorageManager storage = mContext.getSystemService(StorageManager.class);
16933        storage.registerListener(mStorageListener);
16934
16935        mInstallerService.systemReady();
16936        mPackageDexOptimizer.systemReady();
16937
16938        MountServiceInternal mountServiceInternal = LocalServices.getService(
16939                MountServiceInternal.class);
16940        mountServiceInternal.addExternalStoragePolicy(
16941                new MountServiceInternal.ExternalStorageMountPolicy() {
16942            @Override
16943            public int getMountMode(int uid, String packageName) {
16944                if (Process.isIsolated(uid)) {
16945                    return Zygote.MOUNT_EXTERNAL_NONE;
16946                }
16947                if (checkUidPermission(WRITE_MEDIA_STORAGE, uid) == PERMISSION_GRANTED) {
16948                    return Zygote.MOUNT_EXTERNAL_DEFAULT;
16949                }
16950                if (checkUidPermission(READ_EXTERNAL_STORAGE, uid) == PERMISSION_DENIED) {
16951                    return Zygote.MOUNT_EXTERNAL_DEFAULT;
16952                }
16953                if (checkUidPermission(WRITE_EXTERNAL_STORAGE, uid) == PERMISSION_DENIED) {
16954                    return Zygote.MOUNT_EXTERNAL_READ;
16955                }
16956                return Zygote.MOUNT_EXTERNAL_WRITE;
16957            }
16958
16959            @Override
16960            public boolean hasExternalStorage(int uid, String packageName) {
16961                return true;
16962            }
16963        });
16964    }
16965
16966    @Override
16967    public boolean isSafeMode() {
16968        return mSafeMode;
16969    }
16970
16971    @Override
16972    public boolean hasSystemUidErrors() {
16973        return mHasSystemUidErrors;
16974    }
16975
16976    static String arrayToString(int[] array) {
16977        StringBuffer buf = new StringBuffer(128);
16978        buf.append('[');
16979        if (array != null) {
16980            for (int i=0; i<array.length; i++) {
16981                if (i > 0) buf.append(", ");
16982                buf.append(array[i]);
16983            }
16984        }
16985        buf.append(']');
16986        return buf.toString();
16987    }
16988
16989    static class DumpState {
16990        public static final int DUMP_LIBS = 1 << 0;
16991        public static final int DUMP_FEATURES = 1 << 1;
16992        public static final int DUMP_ACTIVITY_RESOLVERS = 1 << 2;
16993        public static final int DUMP_SERVICE_RESOLVERS = 1 << 3;
16994        public static final int DUMP_RECEIVER_RESOLVERS = 1 << 4;
16995        public static final int DUMP_CONTENT_RESOLVERS = 1 << 5;
16996        public static final int DUMP_PERMISSIONS = 1 << 6;
16997        public static final int DUMP_PACKAGES = 1 << 7;
16998        public static final int DUMP_SHARED_USERS = 1 << 8;
16999        public static final int DUMP_MESSAGES = 1 << 9;
17000        public static final int DUMP_PROVIDERS = 1 << 10;
17001        public static final int DUMP_VERIFIERS = 1 << 11;
17002        public static final int DUMP_PREFERRED = 1 << 12;
17003        public static final int DUMP_PREFERRED_XML = 1 << 13;
17004        public static final int DUMP_KEYSETS = 1 << 14;
17005        public static final int DUMP_VERSION = 1 << 15;
17006        public static final int DUMP_INSTALLS = 1 << 16;
17007        public static final int DUMP_INTENT_FILTER_VERIFIERS = 1 << 17;
17008        public static final int DUMP_DOMAIN_PREFERRED = 1 << 18;
17009
17010        public static final int OPTION_SHOW_FILTERS = 1 << 0;
17011
17012        private int mTypes;
17013
17014        private int mOptions;
17015
17016        private boolean mTitlePrinted;
17017
17018        private SharedUserSetting mSharedUser;
17019
17020        public boolean isDumping(int type) {
17021            if (mTypes == 0 && type != DUMP_PREFERRED_XML) {
17022                return true;
17023            }
17024
17025            return (mTypes & type) != 0;
17026        }
17027
17028        public void setDump(int type) {
17029            mTypes |= type;
17030        }
17031
17032        public boolean isOptionEnabled(int option) {
17033            return (mOptions & option) != 0;
17034        }
17035
17036        public void setOptionEnabled(int option) {
17037            mOptions |= option;
17038        }
17039
17040        public boolean onTitlePrinted() {
17041            final boolean printed = mTitlePrinted;
17042            mTitlePrinted = true;
17043            return printed;
17044        }
17045
17046        public boolean getTitlePrinted() {
17047            return mTitlePrinted;
17048        }
17049
17050        public void setTitlePrinted(boolean enabled) {
17051            mTitlePrinted = enabled;
17052        }
17053
17054        public SharedUserSetting getSharedUser() {
17055            return mSharedUser;
17056        }
17057
17058        public void setSharedUser(SharedUserSetting user) {
17059            mSharedUser = user;
17060        }
17061    }
17062
17063    @Override
17064    public void onShellCommand(FileDescriptor in, FileDescriptor out,
17065            FileDescriptor err, String[] args, ResultReceiver resultReceiver) {
17066        (new PackageManagerShellCommand(this)).exec(
17067                this, in, out, err, args, resultReceiver);
17068    }
17069
17070    @Override
17071    protected void dump(FileDescriptor fd, PrintWriter pw, String[] args) {
17072        if (mContext.checkCallingOrSelfPermission(android.Manifest.permission.DUMP)
17073                != PackageManager.PERMISSION_GRANTED) {
17074            pw.println("Permission Denial: can't dump ActivityManager from from pid="
17075                    + Binder.getCallingPid()
17076                    + ", uid=" + Binder.getCallingUid()
17077                    + " without permission "
17078                    + android.Manifest.permission.DUMP);
17079            return;
17080        }
17081
17082        DumpState dumpState = new DumpState();
17083        boolean fullPreferred = false;
17084        boolean checkin = false;
17085
17086        String packageName = null;
17087        ArraySet<String> permissionNames = null;
17088
17089        int opti = 0;
17090        while (opti < args.length) {
17091            String opt = args[opti];
17092            if (opt == null || opt.length() <= 0 || opt.charAt(0) != '-') {
17093                break;
17094            }
17095            opti++;
17096
17097            if ("-a".equals(opt)) {
17098                // Right now we only know how to print all.
17099            } else if ("-h".equals(opt)) {
17100                pw.println("Package manager dump options:");
17101                pw.println("  [-h] [-f] [--checkin] [cmd] ...");
17102                pw.println("    --checkin: dump for a checkin");
17103                pw.println("    -f: print details of intent filters");
17104                pw.println("    -h: print this help");
17105                pw.println("  cmd may be one of:");
17106                pw.println("    l[ibraries]: list known shared libraries");
17107                pw.println("    f[eatures]: list device features");
17108                pw.println("    k[eysets]: print known keysets");
17109                pw.println("    r[esolvers] [activity|service|receiver|content]: dump intent resolvers");
17110                pw.println("    perm[issions]: dump permissions");
17111                pw.println("    permission [name ...]: dump declaration and use of given permission");
17112                pw.println("    pref[erred]: print preferred package settings");
17113                pw.println("    preferred-xml [--full]: print preferred package settings as xml");
17114                pw.println("    prov[iders]: dump content providers");
17115                pw.println("    p[ackages]: dump installed packages");
17116                pw.println("    s[hared-users]: dump shared user IDs");
17117                pw.println("    m[essages]: print collected runtime messages");
17118                pw.println("    v[erifiers]: print package verifier info");
17119                pw.println("    d[omain-preferred-apps]: print domains preferred apps");
17120                pw.println("    i[ntent-filter-verifiers]|ifv: print intent filter verifier info");
17121                pw.println("    version: print database version info");
17122                pw.println("    write: write current settings now");
17123                pw.println("    installs: details about install sessions");
17124                pw.println("    check-permission <permission> <package> [<user>]: does pkg hold perm?");
17125                pw.println("    <package.name>: info about given package");
17126                return;
17127            } else if ("--checkin".equals(opt)) {
17128                checkin = true;
17129            } else if ("-f".equals(opt)) {
17130                dumpState.setOptionEnabled(DumpState.OPTION_SHOW_FILTERS);
17131            } else {
17132                pw.println("Unknown argument: " + opt + "; use -h for help");
17133            }
17134        }
17135
17136        // Is the caller requesting to dump a particular piece of data?
17137        if (opti < args.length) {
17138            String cmd = args[opti];
17139            opti++;
17140            // Is this a package name?
17141            if ("android".equals(cmd) || cmd.contains(".")) {
17142                packageName = cmd;
17143                // When dumping a single package, we always dump all of its
17144                // filter information since the amount of data will be reasonable.
17145                dumpState.setOptionEnabled(DumpState.OPTION_SHOW_FILTERS);
17146            } else if ("check-permission".equals(cmd)) {
17147                if (opti >= args.length) {
17148                    pw.println("Error: check-permission missing permission argument");
17149                    return;
17150                }
17151                String perm = args[opti];
17152                opti++;
17153                if (opti >= args.length) {
17154                    pw.println("Error: check-permission missing package argument");
17155                    return;
17156                }
17157                String pkg = args[opti];
17158                opti++;
17159                int user = UserHandle.getUserId(Binder.getCallingUid());
17160                if (opti < args.length) {
17161                    try {
17162                        user = Integer.parseInt(args[opti]);
17163                    } catch (NumberFormatException e) {
17164                        pw.println("Error: check-permission user argument is not a number: "
17165                                + args[opti]);
17166                        return;
17167                    }
17168                }
17169                pw.println(checkPermission(perm, pkg, user));
17170                return;
17171            } else if ("l".equals(cmd) || "libraries".equals(cmd)) {
17172                dumpState.setDump(DumpState.DUMP_LIBS);
17173            } else if ("f".equals(cmd) || "features".equals(cmd)) {
17174                dumpState.setDump(DumpState.DUMP_FEATURES);
17175            } else if ("r".equals(cmd) || "resolvers".equals(cmd)) {
17176                if (opti >= args.length) {
17177                    dumpState.setDump(DumpState.DUMP_ACTIVITY_RESOLVERS
17178                            | DumpState.DUMP_SERVICE_RESOLVERS
17179                            | DumpState.DUMP_RECEIVER_RESOLVERS
17180                            | DumpState.DUMP_CONTENT_RESOLVERS);
17181                } else {
17182                    while (opti < args.length) {
17183                        String name = args[opti];
17184                        if ("a".equals(name) || "activity".equals(name)) {
17185                            dumpState.setDump(DumpState.DUMP_ACTIVITY_RESOLVERS);
17186                        } else if ("s".equals(name) || "service".equals(name)) {
17187                            dumpState.setDump(DumpState.DUMP_SERVICE_RESOLVERS);
17188                        } else if ("r".equals(name) || "receiver".equals(name)) {
17189                            dumpState.setDump(DumpState.DUMP_RECEIVER_RESOLVERS);
17190                        } else if ("c".equals(name) || "content".equals(name)) {
17191                            dumpState.setDump(DumpState.DUMP_CONTENT_RESOLVERS);
17192                        } else {
17193                            pw.println("Error: unknown resolver table type: " + name);
17194                            return;
17195                        }
17196                        opti++;
17197                    }
17198                }
17199            } else if ("perm".equals(cmd) || "permissions".equals(cmd)) {
17200                dumpState.setDump(DumpState.DUMP_PERMISSIONS);
17201            } else if ("permission".equals(cmd)) {
17202                if (opti >= args.length) {
17203                    pw.println("Error: permission requires permission name");
17204                    return;
17205                }
17206                permissionNames = new ArraySet<>();
17207                while (opti < args.length) {
17208                    permissionNames.add(args[opti]);
17209                    opti++;
17210                }
17211                dumpState.setDump(DumpState.DUMP_PERMISSIONS
17212                        | DumpState.DUMP_PACKAGES | DumpState.DUMP_SHARED_USERS);
17213            } else if ("pref".equals(cmd) || "preferred".equals(cmd)) {
17214                dumpState.setDump(DumpState.DUMP_PREFERRED);
17215            } else if ("preferred-xml".equals(cmd)) {
17216                dumpState.setDump(DumpState.DUMP_PREFERRED_XML);
17217                if (opti < args.length && "--full".equals(args[opti])) {
17218                    fullPreferred = true;
17219                    opti++;
17220                }
17221            } else if ("d".equals(cmd) || "domain-preferred-apps".equals(cmd)) {
17222                dumpState.setDump(DumpState.DUMP_DOMAIN_PREFERRED);
17223            } else if ("p".equals(cmd) || "packages".equals(cmd)) {
17224                dumpState.setDump(DumpState.DUMP_PACKAGES);
17225            } else if ("s".equals(cmd) || "shared-users".equals(cmd)) {
17226                dumpState.setDump(DumpState.DUMP_SHARED_USERS);
17227            } else if ("prov".equals(cmd) || "providers".equals(cmd)) {
17228                dumpState.setDump(DumpState.DUMP_PROVIDERS);
17229            } else if ("m".equals(cmd) || "messages".equals(cmd)) {
17230                dumpState.setDump(DumpState.DUMP_MESSAGES);
17231            } else if ("v".equals(cmd) || "verifiers".equals(cmd)) {
17232                dumpState.setDump(DumpState.DUMP_VERIFIERS);
17233            } else if ("i".equals(cmd) || "ifv".equals(cmd)
17234                    || "intent-filter-verifiers".equals(cmd)) {
17235                dumpState.setDump(DumpState.DUMP_INTENT_FILTER_VERIFIERS);
17236            } else if ("version".equals(cmd)) {
17237                dumpState.setDump(DumpState.DUMP_VERSION);
17238            } else if ("k".equals(cmd) || "keysets".equals(cmd)) {
17239                dumpState.setDump(DumpState.DUMP_KEYSETS);
17240            } else if ("installs".equals(cmd)) {
17241                dumpState.setDump(DumpState.DUMP_INSTALLS);
17242            } else if ("write".equals(cmd)) {
17243                synchronized (mPackages) {
17244                    mSettings.writeLPr();
17245                    pw.println("Settings written.");
17246                    return;
17247                }
17248            }
17249        }
17250
17251        if (checkin) {
17252            pw.println("vers,1");
17253        }
17254
17255        // reader
17256        synchronized (mPackages) {
17257            if (dumpState.isDumping(DumpState.DUMP_VERSION) && packageName == null) {
17258                if (!checkin) {
17259                    if (dumpState.onTitlePrinted())
17260                        pw.println();
17261                    pw.println("Database versions:");
17262                    mSettings.dumpVersionLPr(new IndentingPrintWriter(pw, "  "));
17263                }
17264            }
17265
17266            if (dumpState.isDumping(DumpState.DUMP_VERIFIERS) && packageName == null) {
17267                if (!checkin) {
17268                    if (dumpState.onTitlePrinted())
17269                        pw.println();
17270                    pw.println("Verifiers:");
17271                    pw.print("  Required: ");
17272                    pw.print(mRequiredVerifierPackage);
17273                    pw.print(" (uid=");
17274                    pw.print(getPackageUid(mRequiredVerifierPackage, MATCH_DEBUG_TRIAGED_MISSING,
17275                            UserHandle.USER_SYSTEM));
17276                    pw.println(")");
17277                } else if (mRequiredVerifierPackage != null) {
17278                    pw.print("vrfy,"); pw.print(mRequiredVerifierPackage);
17279                    pw.print(",");
17280                    pw.println(getPackageUid(mRequiredVerifierPackage, MATCH_DEBUG_TRIAGED_MISSING,
17281                            UserHandle.USER_SYSTEM));
17282                }
17283            }
17284
17285            if (dumpState.isDumping(DumpState.DUMP_INTENT_FILTER_VERIFIERS) &&
17286                    packageName == null) {
17287                if (mIntentFilterVerifierComponent != null) {
17288                    String verifierPackageName = mIntentFilterVerifierComponent.getPackageName();
17289                    if (!checkin) {
17290                        if (dumpState.onTitlePrinted())
17291                            pw.println();
17292                        pw.println("Intent Filter Verifier:");
17293                        pw.print("  Using: ");
17294                        pw.print(verifierPackageName);
17295                        pw.print(" (uid=");
17296                        pw.print(getPackageUid(verifierPackageName, MATCH_DEBUG_TRIAGED_MISSING,
17297                                UserHandle.USER_SYSTEM));
17298                        pw.println(")");
17299                    } else if (verifierPackageName != null) {
17300                        pw.print("ifv,"); pw.print(verifierPackageName);
17301                        pw.print(",");
17302                        pw.println(getPackageUid(verifierPackageName, MATCH_DEBUG_TRIAGED_MISSING,
17303                                UserHandle.USER_SYSTEM));
17304                    }
17305                } else {
17306                    pw.println();
17307                    pw.println("No Intent Filter Verifier available!");
17308                }
17309            }
17310
17311            if (dumpState.isDumping(DumpState.DUMP_LIBS) && packageName == null) {
17312                boolean printedHeader = false;
17313                final Iterator<String> it = mSharedLibraries.keySet().iterator();
17314                while (it.hasNext()) {
17315                    String name = it.next();
17316                    SharedLibraryEntry ent = mSharedLibraries.get(name);
17317                    if (!checkin) {
17318                        if (!printedHeader) {
17319                            if (dumpState.onTitlePrinted())
17320                                pw.println();
17321                            pw.println("Libraries:");
17322                            printedHeader = true;
17323                        }
17324                        pw.print("  ");
17325                    } else {
17326                        pw.print("lib,");
17327                    }
17328                    pw.print(name);
17329                    if (!checkin) {
17330                        pw.print(" -> ");
17331                    }
17332                    if (ent.path != null) {
17333                        if (!checkin) {
17334                            pw.print("(jar) ");
17335                            pw.print(ent.path);
17336                        } else {
17337                            pw.print(",jar,");
17338                            pw.print(ent.path);
17339                        }
17340                    } else {
17341                        if (!checkin) {
17342                            pw.print("(apk) ");
17343                            pw.print(ent.apk);
17344                        } else {
17345                            pw.print(",apk,");
17346                            pw.print(ent.apk);
17347                        }
17348                    }
17349                    pw.println();
17350                }
17351            }
17352
17353            if (dumpState.isDumping(DumpState.DUMP_FEATURES) && packageName == null) {
17354                if (dumpState.onTitlePrinted())
17355                    pw.println();
17356                if (!checkin) {
17357                    pw.println("Features:");
17358                }
17359
17360                for (FeatureInfo feat : mAvailableFeatures.values()) {
17361                    if (checkin) {
17362                        pw.print("feat,");
17363                        pw.print(feat.name);
17364                        pw.print(",");
17365                        pw.println(feat.version);
17366                    } else {
17367                        pw.print("  ");
17368                        pw.print(feat.name);
17369                        if (feat.version > 0) {
17370                            pw.print(" version=");
17371                            pw.print(feat.version);
17372                        }
17373                        pw.println();
17374                    }
17375                }
17376            }
17377
17378            if (!checkin && dumpState.isDumping(DumpState.DUMP_ACTIVITY_RESOLVERS)) {
17379                if (mActivities.dump(pw, dumpState.getTitlePrinted() ? "\nActivity Resolver Table:"
17380                        : "Activity Resolver Table:", "  ", packageName,
17381                        dumpState.isOptionEnabled(DumpState.OPTION_SHOW_FILTERS), true)) {
17382                    dumpState.setTitlePrinted(true);
17383                }
17384            }
17385            if (!checkin && dumpState.isDumping(DumpState.DUMP_RECEIVER_RESOLVERS)) {
17386                if (mReceivers.dump(pw, dumpState.getTitlePrinted() ? "\nReceiver Resolver Table:"
17387                        : "Receiver Resolver Table:", "  ", packageName,
17388                        dumpState.isOptionEnabled(DumpState.OPTION_SHOW_FILTERS), true)) {
17389                    dumpState.setTitlePrinted(true);
17390                }
17391            }
17392            if (!checkin && dumpState.isDumping(DumpState.DUMP_SERVICE_RESOLVERS)) {
17393                if (mServices.dump(pw, dumpState.getTitlePrinted() ? "\nService Resolver Table:"
17394                        : "Service Resolver Table:", "  ", packageName,
17395                        dumpState.isOptionEnabled(DumpState.OPTION_SHOW_FILTERS), true)) {
17396                    dumpState.setTitlePrinted(true);
17397                }
17398            }
17399            if (!checkin && dumpState.isDumping(DumpState.DUMP_CONTENT_RESOLVERS)) {
17400                if (mProviders.dump(pw, dumpState.getTitlePrinted() ? "\nProvider Resolver Table:"
17401                        : "Provider Resolver Table:", "  ", packageName,
17402                        dumpState.isOptionEnabled(DumpState.OPTION_SHOW_FILTERS), true)) {
17403                    dumpState.setTitlePrinted(true);
17404                }
17405            }
17406
17407            if (!checkin && dumpState.isDumping(DumpState.DUMP_PREFERRED)) {
17408                for (int i=0; i<mSettings.mPreferredActivities.size(); i++) {
17409                    PreferredIntentResolver pir = mSettings.mPreferredActivities.valueAt(i);
17410                    int user = mSettings.mPreferredActivities.keyAt(i);
17411                    if (pir.dump(pw,
17412                            dumpState.getTitlePrinted()
17413                                ? "\nPreferred Activities User " + user + ":"
17414                                : "Preferred Activities User " + user + ":", "  ",
17415                            packageName, true, false)) {
17416                        dumpState.setTitlePrinted(true);
17417                    }
17418                }
17419            }
17420
17421            if (!checkin && dumpState.isDumping(DumpState.DUMP_PREFERRED_XML)) {
17422                pw.flush();
17423                FileOutputStream fout = new FileOutputStream(fd);
17424                BufferedOutputStream str = new BufferedOutputStream(fout);
17425                XmlSerializer serializer = new FastXmlSerializer();
17426                try {
17427                    serializer.setOutput(str, StandardCharsets.UTF_8.name());
17428                    serializer.startDocument(null, true);
17429                    serializer.setFeature(
17430                            "http://xmlpull.org/v1/doc/features.html#indent-output", true);
17431                    mSettings.writePreferredActivitiesLPr(serializer, 0, fullPreferred);
17432                    serializer.endDocument();
17433                    serializer.flush();
17434                } catch (IllegalArgumentException e) {
17435                    pw.println("Failed writing: " + e);
17436                } catch (IllegalStateException e) {
17437                    pw.println("Failed writing: " + e);
17438                } catch (IOException e) {
17439                    pw.println("Failed writing: " + e);
17440                }
17441            }
17442
17443            if (!checkin
17444                    && dumpState.isDumping(DumpState.DUMP_DOMAIN_PREFERRED)
17445                    && packageName == null) {
17446                pw.println();
17447                int count = mSettings.mPackages.size();
17448                if (count == 0) {
17449                    pw.println("No applications!");
17450                    pw.println();
17451                } else {
17452                    final String prefix = "  ";
17453                    Collection<PackageSetting> allPackageSettings = mSettings.mPackages.values();
17454                    if (allPackageSettings.size() == 0) {
17455                        pw.println("No domain preferred apps!");
17456                        pw.println();
17457                    } else {
17458                        pw.println("App verification status:");
17459                        pw.println();
17460                        count = 0;
17461                        for (PackageSetting ps : allPackageSettings) {
17462                            IntentFilterVerificationInfo ivi = ps.getIntentFilterVerificationInfo();
17463                            if (ivi == null || ivi.getPackageName() == null) continue;
17464                            pw.println(prefix + "Package: " + ivi.getPackageName());
17465                            pw.println(prefix + "Domains: " + ivi.getDomainsString());
17466                            pw.println(prefix + "Status:  " + ivi.getStatusString());
17467                            pw.println();
17468                            count++;
17469                        }
17470                        if (count == 0) {
17471                            pw.println(prefix + "No app verification established.");
17472                            pw.println();
17473                        }
17474                        for (int userId : sUserManager.getUserIds()) {
17475                            pw.println("App linkages for user " + userId + ":");
17476                            pw.println();
17477                            count = 0;
17478                            for (PackageSetting ps : allPackageSettings) {
17479                                final long status = ps.getDomainVerificationStatusForUser(userId);
17480                                if (status >> 32 == INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_UNDEFINED) {
17481                                    continue;
17482                                }
17483                                pw.println(prefix + "Package: " + ps.name);
17484                                pw.println(prefix + "Domains: " + dumpDomainString(ps.name));
17485                                String statusStr = IntentFilterVerificationInfo.
17486                                        getStatusStringFromValue(status);
17487                                pw.println(prefix + "Status:  " + statusStr);
17488                                pw.println();
17489                                count++;
17490                            }
17491                            if (count == 0) {
17492                                pw.println(prefix + "No configured app linkages.");
17493                                pw.println();
17494                            }
17495                        }
17496                    }
17497                }
17498            }
17499
17500            if (!checkin && dumpState.isDumping(DumpState.DUMP_PERMISSIONS)) {
17501                mSettings.dumpPermissionsLPr(pw, packageName, permissionNames, dumpState);
17502                if (packageName == null && permissionNames == null) {
17503                    for (int iperm=0; iperm<mAppOpPermissionPackages.size(); iperm++) {
17504                        if (iperm == 0) {
17505                            if (dumpState.onTitlePrinted())
17506                                pw.println();
17507                            pw.println("AppOp Permissions:");
17508                        }
17509                        pw.print("  AppOp Permission ");
17510                        pw.print(mAppOpPermissionPackages.keyAt(iperm));
17511                        pw.println(":");
17512                        ArraySet<String> pkgs = mAppOpPermissionPackages.valueAt(iperm);
17513                        for (int ipkg=0; ipkg<pkgs.size(); ipkg++) {
17514                            pw.print("    "); pw.println(pkgs.valueAt(ipkg));
17515                        }
17516                    }
17517                }
17518            }
17519
17520            if (!checkin && dumpState.isDumping(DumpState.DUMP_PROVIDERS)) {
17521                boolean printedSomething = false;
17522                for (PackageParser.Provider p : mProviders.mProviders.values()) {
17523                    if (packageName != null && !packageName.equals(p.info.packageName)) {
17524                        continue;
17525                    }
17526                    if (!printedSomething) {
17527                        if (dumpState.onTitlePrinted())
17528                            pw.println();
17529                        pw.println("Registered ContentProviders:");
17530                        printedSomething = true;
17531                    }
17532                    pw.print("  "); p.printComponentShortName(pw); pw.println(":");
17533                    pw.print("    "); pw.println(p.toString());
17534                }
17535                printedSomething = false;
17536                for (Map.Entry<String, PackageParser.Provider> entry :
17537                        mProvidersByAuthority.entrySet()) {
17538                    PackageParser.Provider p = entry.getValue();
17539                    if (packageName != null && !packageName.equals(p.info.packageName)) {
17540                        continue;
17541                    }
17542                    if (!printedSomething) {
17543                        if (dumpState.onTitlePrinted())
17544                            pw.println();
17545                        pw.println("ContentProvider Authorities:");
17546                        printedSomething = true;
17547                    }
17548                    pw.print("  ["); pw.print(entry.getKey()); pw.println("]:");
17549                    pw.print("    "); pw.println(p.toString());
17550                    if (p.info != null && p.info.applicationInfo != null) {
17551                        final String appInfo = p.info.applicationInfo.toString();
17552                        pw.print("      applicationInfo="); pw.println(appInfo);
17553                    }
17554                }
17555            }
17556
17557            if (!checkin && dumpState.isDumping(DumpState.DUMP_KEYSETS)) {
17558                mSettings.mKeySetManagerService.dumpLPr(pw, packageName, dumpState);
17559            }
17560
17561            if (dumpState.isDumping(DumpState.DUMP_PACKAGES)) {
17562                mSettings.dumpPackagesLPr(pw, packageName, permissionNames, dumpState, checkin);
17563            }
17564
17565            if (dumpState.isDumping(DumpState.DUMP_SHARED_USERS)) {
17566                mSettings.dumpSharedUsersLPr(pw, packageName, permissionNames, dumpState, checkin);
17567            }
17568
17569            if (!checkin && dumpState.isDumping(DumpState.DUMP_PERMISSIONS) && packageName == null) {
17570                mSettings.dumpRestoredPermissionGrantsLPr(pw, dumpState);
17571            }
17572
17573            if (!checkin && dumpState.isDumping(DumpState.DUMP_INSTALLS) && packageName == null) {
17574                // XXX should handle packageName != null by dumping only install data that
17575                // the given package is involved with.
17576                if (dumpState.onTitlePrinted()) pw.println();
17577                mInstallerService.dump(new IndentingPrintWriter(pw, "  ", 120));
17578            }
17579
17580            if (!checkin && dumpState.isDumping(DumpState.DUMP_MESSAGES) && packageName == null) {
17581                if (dumpState.onTitlePrinted()) pw.println();
17582                mSettings.dumpReadMessagesLPr(pw, dumpState);
17583
17584                pw.println();
17585                pw.println("Package warning messages:");
17586                BufferedReader in = null;
17587                String line = null;
17588                try {
17589                    in = new BufferedReader(new FileReader(getSettingsProblemFile()));
17590                    while ((line = in.readLine()) != null) {
17591                        if (line.contains("ignored: updated version")) continue;
17592                        pw.println(line);
17593                    }
17594                } catch (IOException ignored) {
17595                } finally {
17596                    IoUtils.closeQuietly(in);
17597                }
17598            }
17599
17600            if (checkin && dumpState.isDumping(DumpState.DUMP_MESSAGES)) {
17601                BufferedReader in = null;
17602                String line = null;
17603                try {
17604                    in = new BufferedReader(new FileReader(getSettingsProblemFile()));
17605                    while ((line = in.readLine()) != null) {
17606                        if (line.contains("ignored: updated version")) continue;
17607                        pw.print("msg,");
17608                        pw.println(line);
17609                    }
17610                } catch (IOException ignored) {
17611                } finally {
17612                    IoUtils.closeQuietly(in);
17613                }
17614            }
17615        }
17616    }
17617
17618    private String dumpDomainString(String packageName) {
17619        List<IntentFilterVerificationInfo> iviList = getIntentFilterVerifications(packageName)
17620                .getList();
17621        List<IntentFilter> filters = getAllIntentFilters(packageName).getList();
17622
17623        ArraySet<String> result = new ArraySet<>();
17624        if (iviList.size() > 0) {
17625            for (IntentFilterVerificationInfo ivi : iviList) {
17626                for (String host : ivi.getDomains()) {
17627                    result.add(host);
17628                }
17629            }
17630        }
17631        if (filters != null && filters.size() > 0) {
17632            for (IntentFilter filter : filters) {
17633                if (filter.hasCategory(Intent.CATEGORY_BROWSABLE)
17634                        && (filter.hasDataScheme(IntentFilter.SCHEME_HTTP) ||
17635                                filter.hasDataScheme(IntentFilter.SCHEME_HTTPS))) {
17636                    result.addAll(filter.getHostsList());
17637                }
17638            }
17639        }
17640
17641        StringBuilder sb = new StringBuilder(result.size() * 16);
17642        for (String domain : result) {
17643            if (sb.length() > 0) sb.append(" ");
17644            sb.append(domain);
17645        }
17646        return sb.toString();
17647    }
17648
17649    // ------- apps on sdcard specific code -------
17650    static final boolean DEBUG_SD_INSTALL = false;
17651
17652    private static final String SD_ENCRYPTION_KEYSTORE_NAME = "AppsOnSD";
17653
17654    private static final String SD_ENCRYPTION_ALGORITHM = "AES";
17655
17656    private boolean mMediaMounted = false;
17657
17658    static String getEncryptKey() {
17659        try {
17660            String sdEncKey = SystemKeyStore.getInstance().retrieveKeyHexString(
17661                    SD_ENCRYPTION_KEYSTORE_NAME);
17662            if (sdEncKey == null) {
17663                sdEncKey = SystemKeyStore.getInstance().generateNewKeyHexString(128,
17664                        SD_ENCRYPTION_ALGORITHM, SD_ENCRYPTION_KEYSTORE_NAME);
17665                if (sdEncKey == null) {
17666                    Slog.e(TAG, "Failed to create encryption keys");
17667                    return null;
17668                }
17669            }
17670            return sdEncKey;
17671        } catch (NoSuchAlgorithmException nsae) {
17672            Slog.e(TAG, "Failed to create encryption keys with exception: " + nsae);
17673            return null;
17674        } catch (IOException ioe) {
17675            Slog.e(TAG, "Failed to retrieve encryption keys with exception: " + ioe);
17676            return null;
17677        }
17678    }
17679
17680    /*
17681     * Update media status on PackageManager.
17682     */
17683    @Override
17684    public void updateExternalMediaStatus(final boolean mediaStatus, final boolean reportStatus) {
17685        int callingUid = Binder.getCallingUid();
17686        if (callingUid != 0 && callingUid != Process.SYSTEM_UID) {
17687            throw new SecurityException("Media status can only be updated by the system");
17688        }
17689        // reader; this apparently protects mMediaMounted, but should probably
17690        // be a different lock in that case.
17691        synchronized (mPackages) {
17692            Log.i(TAG, "Updating external media status from "
17693                    + (mMediaMounted ? "mounted" : "unmounted") + " to "
17694                    + (mediaStatus ? "mounted" : "unmounted"));
17695            if (DEBUG_SD_INSTALL)
17696                Log.i(TAG, "updateExternalMediaStatus:: mediaStatus=" + mediaStatus
17697                        + ", mMediaMounted=" + mMediaMounted);
17698            if (mediaStatus == mMediaMounted) {
17699                final Message msg = mHandler.obtainMessage(UPDATED_MEDIA_STATUS, reportStatus ? 1
17700                        : 0, -1);
17701                mHandler.sendMessage(msg);
17702                return;
17703            }
17704            mMediaMounted = mediaStatus;
17705        }
17706        // Queue up an async operation since the package installation may take a
17707        // little while.
17708        mHandler.post(new Runnable() {
17709            public void run() {
17710                updateExternalMediaStatusInner(mediaStatus, reportStatus, true);
17711            }
17712        });
17713    }
17714
17715    /**
17716     * Called by MountService when the initial ASECs to scan are available.
17717     * Should block until all the ASEC containers are finished being scanned.
17718     */
17719    public void scanAvailableAsecs() {
17720        updateExternalMediaStatusInner(true, false, false);
17721    }
17722
17723    /*
17724     * Collect information of applications on external media, map them against
17725     * existing containers and update information based on current mount status.
17726     * Please note that we always have to report status if reportStatus has been
17727     * set to true especially when unloading packages.
17728     */
17729    private void updateExternalMediaStatusInner(boolean isMounted, boolean reportStatus,
17730            boolean externalStorage) {
17731        ArrayMap<AsecInstallArgs, String> processCids = new ArrayMap<>();
17732        int[] uidArr = EmptyArray.INT;
17733
17734        final String[] list = PackageHelper.getSecureContainerList();
17735        if (ArrayUtils.isEmpty(list)) {
17736            Log.i(TAG, "No secure containers found");
17737        } else {
17738            // Process list of secure containers and categorize them
17739            // as active or stale based on their package internal state.
17740
17741            // reader
17742            synchronized (mPackages) {
17743                for (String cid : list) {
17744                    // Leave stages untouched for now; installer service owns them
17745                    if (PackageInstallerService.isStageName(cid)) continue;
17746
17747                    if (DEBUG_SD_INSTALL)
17748                        Log.i(TAG, "Processing container " + cid);
17749                    String pkgName = getAsecPackageName(cid);
17750                    if (pkgName == null) {
17751                        Slog.i(TAG, "Found stale container " + cid + " with no package name");
17752                        continue;
17753                    }
17754                    if (DEBUG_SD_INSTALL)
17755                        Log.i(TAG, "Looking for pkg : " + pkgName);
17756
17757                    final PackageSetting ps = mSettings.mPackages.get(pkgName);
17758                    if (ps == null) {
17759                        Slog.i(TAG, "Found stale container " + cid + " with no matching settings");
17760                        continue;
17761                    }
17762
17763                    /*
17764                     * Skip packages that are not external if we're unmounting
17765                     * external storage.
17766                     */
17767                    if (externalStorage && !isMounted && !isExternal(ps)) {
17768                        continue;
17769                    }
17770
17771                    final AsecInstallArgs args = new AsecInstallArgs(cid,
17772                            getAppDexInstructionSets(ps), ps.isForwardLocked());
17773                    // The package status is changed only if the code path
17774                    // matches between settings and the container id.
17775                    if (ps.codePathString != null
17776                            && ps.codePathString.startsWith(args.getCodePath())) {
17777                        if (DEBUG_SD_INSTALL) {
17778                            Log.i(TAG, "Container : " + cid + " corresponds to pkg : " + pkgName
17779                                    + " at code path: " + ps.codePathString);
17780                        }
17781
17782                        // We do have a valid package installed on sdcard
17783                        processCids.put(args, ps.codePathString);
17784                        final int uid = ps.appId;
17785                        if (uid != -1) {
17786                            uidArr = ArrayUtils.appendInt(uidArr, uid);
17787                        }
17788                    } else {
17789                        Slog.i(TAG, "Found stale container " + cid + ": expected codePath="
17790                                + ps.codePathString);
17791                    }
17792                }
17793            }
17794
17795            Arrays.sort(uidArr);
17796        }
17797
17798        // Process packages with valid entries.
17799        if (isMounted) {
17800            if (DEBUG_SD_INSTALL)
17801                Log.i(TAG, "Loading packages");
17802            loadMediaPackages(processCids, uidArr, externalStorage);
17803            startCleaningPackages();
17804            mInstallerService.onSecureContainersAvailable();
17805        } else {
17806            if (DEBUG_SD_INSTALL)
17807                Log.i(TAG, "Unloading packages");
17808            unloadMediaPackages(processCids, uidArr, reportStatus);
17809        }
17810    }
17811
17812    private void sendResourcesChangedBroadcast(boolean mediaStatus, boolean replacing,
17813            ArrayList<ApplicationInfo> infos, IIntentReceiver finishedReceiver) {
17814        final int size = infos.size();
17815        final String[] packageNames = new String[size];
17816        final int[] packageUids = new int[size];
17817        for (int i = 0; i < size; i++) {
17818            final ApplicationInfo info = infos.get(i);
17819            packageNames[i] = info.packageName;
17820            packageUids[i] = info.uid;
17821        }
17822        sendResourcesChangedBroadcast(mediaStatus, replacing, packageNames, packageUids,
17823                finishedReceiver);
17824    }
17825
17826    private void sendResourcesChangedBroadcast(boolean mediaStatus, boolean replacing,
17827            ArrayList<String> pkgList, int uidArr[], IIntentReceiver finishedReceiver) {
17828        sendResourcesChangedBroadcast(mediaStatus, replacing,
17829                pkgList.toArray(new String[pkgList.size()]), uidArr, finishedReceiver);
17830    }
17831
17832    private void sendResourcesChangedBroadcast(boolean mediaStatus, boolean replacing,
17833            String[] pkgList, int uidArr[], IIntentReceiver finishedReceiver) {
17834        int size = pkgList.length;
17835        if (size > 0) {
17836            // Send broadcasts here
17837            Bundle extras = new Bundle();
17838            extras.putStringArray(Intent.EXTRA_CHANGED_PACKAGE_LIST, pkgList);
17839            if (uidArr != null) {
17840                extras.putIntArray(Intent.EXTRA_CHANGED_UID_LIST, uidArr);
17841            }
17842            if (replacing) {
17843                extras.putBoolean(Intent.EXTRA_REPLACING, replacing);
17844            }
17845            String action = mediaStatus ? Intent.ACTION_EXTERNAL_APPLICATIONS_AVAILABLE
17846                    : Intent.ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE;
17847            sendPackageBroadcast(action, null, extras, 0, null, finishedReceiver, null);
17848        }
17849    }
17850
17851   /*
17852     * Look at potentially valid container ids from processCids If package
17853     * information doesn't match the one on record or package scanning fails,
17854     * the cid is added to list of removeCids. We currently don't delete stale
17855     * containers.
17856     */
17857    private void loadMediaPackages(ArrayMap<AsecInstallArgs, String> processCids, int[] uidArr,
17858            boolean externalStorage) {
17859        ArrayList<String> pkgList = new ArrayList<String>();
17860        Set<AsecInstallArgs> keys = processCids.keySet();
17861
17862        for (AsecInstallArgs args : keys) {
17863            String codePath = processCids.get(args);
17864            if (DEBUG_SD_INSTALL)
17865                Log.i(TAG, "Loading container : " + args.cid);
17866            int retCode = PackageManager.INSTALL_FAILED_CONTAINER_ERROR;
17867            try {
17868                // Make sure there are no container errors first.
17869                if (args.doPreInstall(PackageManager.INSTALL_SUCCEEDED) != PackageManager.INSTALL_SUCCEEDED) {
17870                    Slog.e(TAG, "Failed to mount cid : " + args.cid
17871                            + " when installing from sdcard");
17872                    continue;
17873                }
17874                // Check code path here.
17875                if (codePath == null || !codePath.startsWith(args.getCodePath())) {
17876                    Slog.e(TAG, "Container " + args.cid + " cachepath " + args.getCodePath()
17877                            + " does not match one in settings " + codePath);
17878                    continue;
17879                }
17880                // Parse package
17881                int parseFlags = mDefParseFlags;
17882                if (args.isExternalAsec()) {
17883                    parseFlags |= PackageParser.PARSE_EXTERNAL_STORAGE;
17884                }
17885                if (args.isFwdLocked()) {
17886                    parseFlags |= PackageParser.PARSE_FORWARD_LOCK;
17887                }
17888
17889                synchronized (mInstallLock) {
17890                    PackageParser.Package pkg = null;
17891                    try {
17892                        pkg = scanPackageTracedLI(new File(codePath), parseFlags, 0, 0, null);
17893                    } catch (PackageManagerException e) {
17894                        Slog.w(TAG, "Failed to scan " + codePath + ": " + e.getMessage());
17895                    }
17896                    // Scan the package
17897                    if (pkg != null) {
17898                        /*
17899                         * TODO why is the lock being held? doPostInstall is
17900                         * called in other places without the lock. This needs
17901                         * to be straightened out.
17902                         */
17903                        // writer
17904                        synchronized (mPackages) {
17905                            retCode = PackageManager.INSTALL_SUCCEEDED;
17906                            pkgList.add(pkg.packageName);
17907                            // Post process args
17908                            args.doPostInstall(PackageManager.INSTALL_SUCCEEDED,
17909                                    pkg.applicationInfo.uid);
17910                        }
17911                    } else {
17912                        Slog.i(TAG, "Failed to install pkg from  " + codePath + " from sdcard");
17913                    }
17914                }
17915
17916            } finally {
17917                if (retCode != PackageManager.INSTALL_SUCCEEDED) {
17918                    Log.w(TAG, "Container " + args.cid + " is stale, retCode=" + retCode);
17919                }
17920            }
17921        }
17922        // writer
17923        synchronized (mPackages) {
17924            // If the platform SDK has changed since the last time we booted,
17925            // we need to re-grant app permission to catch any new ones that
17926            // appear. This is really a hack, and means that apps can in some
17927            // cases get permissions that the user didn't initially explicitly
17928            // allow... it would be nice to have some better way to handle
17929            // this situation.
17930            final VersionInfo ver = externalStorage ? mSettings.getExternalVersion()
17931                    : mSettings.getInternalVersion();
17932            final String volumeUuid = externalStorage ? StorageManager.UUID_PRIMARY_PHYSICAL
17933                    : StorageManager.UUID_PRIVATE_INTERNAL;
17934
17935            int updateFlags = UPDATE_PERMISSIONS_ALL;
17936            if (ver.sdkVersion != mSdkVersion) {
17937                logCriticalInfo(Log.INFO, "Platform changed from " + ver.sdkVersion + " to "
17938                        + mSdkVersion + "; regranting permissions for external");
17939                updateFlags |= UPDATE_PERMISSIONS_REPLACE_PKG | UPDATE_PERMISSIONS_REPLACE_ALL;
17940            }
17941            updatePermissionsLPw(null, null, volumeUuid, updateFlags);
17942
17943            // Yay, everything is now upgraded
17944            ver.forceCurrent();
17945
17946            // can downgrade to reader
17947            // Persist settings
17948            mSettings.writeLPr();
17949        }
17950        // Send a broadcast to let everyone know we are done processing
17951        if (pkgList.size() > 0) {
17952            sendResourcesChangedBroadcast(true, false, pkgList, uidArr, null);
17953        }
17954    }
17955
17956   /*
17957     * Utility method to unload a list of specified containers
17958     */
17959    private void unloadAllContainers(Set<AsecInstallArgs> cidArgs) {
17960        // Just unmount all valid containers.
17961        for (AsecInstallArgs arg : cidArgs) {
17962            synchronized (mInstallLock) {
17963                arg.doPostDeleteLI(false);
17964           }
17965       }
17966   }
17967
17968    /*
17969     * Unload packages mounted on external media. This involves deleting package
17970     * data from internal structures, sending broadcasts about disabled packages,
17971     * gc'ing to free up references, unmounting all secure containers
17972     * corresponding to packages on external media, and posting a
17973     * UPDATED_MEDIA_STATUS message if status has been requested. Please note
17974     * that we always have to post this message if status has been requested no
17975     * matter what.
17976     */
17977    private void unloadMediaPackages(ArrayMap<AsecInstallArgs, String> processCids, int uidArr[],
17978            final boolean reportStatus) {
17979        if (DEBUG_SD_INSTALL)
17980            Log.i(TAG, "unloading media packages");
17981        ArrayList<String> pkgList = new ArrayList<String>();
17982        ArrayList<AsecInstallArgs> failedList = new ArrayList<AsecInstallArgs>();
17983        final Set<AsecInstallArgs> keys = processCids.keySet();
17984        for (AsecInstallArgs args : keys) {
17985            String pkgName = args.getPackageName();
17986            if (DEBUG_SD_INSTALL)
17987                Log.i(TAG, "Trying to unload pkg : " + pkgName);
17988            // Delete package internally
17989            PackageRemovedInfo outInfo = new PackageRemovedInfo();
17990            synchronized (mInstallLock) {
17991                boolean res = deletePackageLI(pkgName, null, false, null,
17992                        PackageManager.DELETE_KEEP_DATA, outInfo, false, null);
17993                if (res) {
17994                    pkgList.add(pkgName);
17995                } else {
17996                    Slog.e(TAG, "Failed to delete pkg from sdcard : " + pkgName);
17997                    failedList.add(args);
17998                }
17999            }
18000        }
18001
18002        // reader
18003        synchronized (mPackages) {
18004            // We didn't update the settings after removing each package;
18005            // write them now for all packages.
18006            mSettings.writeLPr();
18007        }
18008
18009        // We have to absolutely send UPDATED_MEDIA_STATUS only
18010        // after confirming that all the receivers processed the ordered
18011        // broadcast when packages get disabled, force a gc to clean things up.
18012        // and unload all the containers.
18013        if (pkgList.size() > 0) {
18014            sendResourcesChangedBroadcast(false, false, pkgList, uidArr,
18015                    new IIntentReceiver.Stub() {
18016                public void performReceive(Intent intent, int resultCode, String data,
18017                        Bundle extras, boolean ordered, boolean sticky,
18018                        int sendingUser) throws RemoteException {
18019                    Message msg = mHandler.obtainMessage(UPDATED_MEDIA_STATUS,
18020                            reportStatus ? 1 : 0, 1, keys);
18021                    mHandler.sendMessage(msg);
18022                }
18023            });
18024        } else {
18025            Message msg = mHandler.obtainMessage(UPDATED_MEDIA_STATUS, reportStatus ? 1 : 0, -1,
18026                    keys);
18027            mHandler.sendMessage(msg);
18028        }
18029    }
18030
18031    private void loadPrivatePackages(final VolumeInfo vol) {
18032        mHandler.post(new Runnable() {
18033            @Override
18034            public void run() {
18035                loadPrivatePackagesInner(vol);
18036            }
18037        });
18038    }
18039
18040    private void loadPrivatePackagesInner(VolumeInfo vol) {
18041        final String volumeUuid = vol.fsUuid;
18042        if (TextUtils.isEmpty(volumeUuid)) {
18043            Slog.e(TAG, "Loading internal storage is probably a mistake; ignoring");
18044            return;
18045        }
18046
18047        final ArrayList<ApplicationInfo> loaded = new ArrayList<>();
18048        final int parseFlags = mDefParseFlags | PackageParser.PARSE_EXTERNAL_STORAGE;
18049
18050        final VersionInfo ver;
18051        final List<PackageSetting> packages;
18052        synchronized (mPackages) {
18053            ver = mSettings.findOrCreateVersion(volumeUuid);
18054            packages = mSettings.getVolumePackagesLPr(volumeUuid);
18055        }
18056
18057        // TODO: introduce a new concept similar to "frozen" to prevent these
18058        // apps from being launched until after data has been fully reconciled
18059        for (PackageSetting ps : packages) {
18060            synchronized (mInstallLock) {
18061                final PackageParser.Package pkg;
18062                try {
18063                    pkg = scanPackageTracedLI(ps.codePath, parseFlags, SCAN_INITIAL, 0, null);
18064                    loaded.add(pkg.applicationInfo);
18065
18066                } catch (PackageManagerException e) {
18067                    Slog.w(TAG, "Failed to scan " + ps.codePath + ": " + e.getMessage());
18068                }
18069
18070                if (!Build.FINGERPRINT.equals(ver.fingerprint)) {
18071                    deleteCodeCacheDirsLI(ps.volumeUuid, ps.name);
18072                }
18073            }
18074        }
18075
18076        // Reconcile app data for all started/unlocked users
18077        final StorageManager sm = mContext.getSystemService(StorageManager.class);
18078        final UserManager um = mContext.getSystemService(UserManager.class);
18079        for (UserInfo user : um.getUsers()) {
18080            final int flags;
18081            if (um.isUserUnlocked(user.id)) {
18082                flags = StorageManager.FLAG_STORAGE_DE | StorageManager.FLAG_STORAGE_CE;
18083            } else if (um.isUserRunning(user.id)) {
18084                flags = StorageManager.FLAG_STORAGE_DE;
18085            } else {
18086                continue;
18087            }
18088
18089            sm.prepareUserStorage(volumeUuid, user.id, user.serialNumber, flags);
18090            reconcileAppsData(volumeUuid, user.id, flags);
18091        }
18092
18093        synchronized (mPackages) {
18094            int updateFlags = UPDATE_PERMISSIONS_ALL;
18095            if (ver.sdkVersion != mSdkVersion) {
18096                logCriticalInfo(Log.INFO, "Platform changed from " + ver.sdkVersion + " to "
18097                        + mSdkVersion + "; regranting permissions for " + volumeUuid);
18098                updateFlags |= UPDATE_PERMISSIONS_REPLACE_PKG | UPDATE_PERMISSIONS_REPLACE_ALL;
18099            }
18100            updatePermissionsLPw(null, null, volumeUuid, updateFlags);
18101
18102            // Yay, everything is now upgraded
18103            ver.forceCurrent();
18104
18105            mSettings.writeLPr();
18106        }
18107
18108        if (DEBUG_INSTALL) Slog.d(TAG, "Loaded packages " + loaded);
18109        sendResourcesChangedBroadcast(true, false, loaded, null);
18110    }
18111
18112    private void unloadPrivatePackages(final VolumeInfo vol) {
18113        mHandler.post(new Runnable() {
18114            @Override
18115            public void run() {
18116                unloadPrivatePackagesInner(vol);
18117            }
18118        });
18119    }
18120
18121    private void unloadPrivatePackagesInner(VolumeInfo vol) {
18122        final String volumeUuid = vol.fsUuid;
18123        if (TextUtils.isEmpty(volumeUuid)) {
18124            Slog.e(TAG, "Unloading internal storage is probably a mistake; ignoring");
18125            return;
18126        }
18127
18128        final ArrayList<ApplicationInfo> unloaded = new ArrayList<>();
18129        synchronized (mInstallLock) {
18130        synchronized (mPackages) {
18131            final List<PackageSetting> packages = mSettings.getVolumePackagesLPr(volumeUuid);
18132            for (PackageSetting ps : packages) {
18133                if (ps.pkg == null) continue;
18134
18135                final ApplicationInfo info = ps.pkg.applicationInfo;
18136                final PackageRemovedInfo outInfo = new PackageRemovedInfo();
18137                if (deletePackageLI(ps.name, null, false, null,
18138                        PackageManager.DELETE_KEEP_DATA, outInfo, false, null)) {
18139                    unloaded.add(info);
18140                } else {
18141                    Slog.w(TAG, "Failed to unload " + ps.codePath);
18142                }
18143            }
18144
18145            mSettings.writeLPr();
18146        }
18147        }
18148
18149        if (DEBUG_INSTALL) Slog.d(TAG, "Unloaded packages " + unloaded);
18150        sendResourcesChangedBroadcast(false, false, unloaded, null);
18151    }
18152
18153    /**
18154     * Examine all users present on given mounted volume, and destroy data
18155     * belonging to users that are no longer valid, or whose user ID has been
18156     * recycled.
18157     */
18158    private void reconcileUsers(String volumeUuid) {
18159        // TODO: also reconcile DE directories
18160        final File[] files = FileUtils
18161                .listFilesOrEmpty(Environment.getDataUserCeDirectory(volumeUuid));
18162        for (File file : files) {
18163            if (!file.isDirectory()) continue;
18164
18165            final int userId;
18166            final UserInfo info;
18167            try {
18168                userId = Integer.parseInt(file.getName());
18169                info = sUserManager.getUserInfo(userId);
18170            } catch (NumberFormatException e) {
18171                Slog.w(TAG, "Invalid user directory " + file);
18172                continue;
18173            }
18174
18175            boolean destroyUser = false;
18176            if (info == null) {
18177                logCriticalInfo(Log.WARN, "Destroying user directory " + file
18178                        + " because no matching user was found");
18179                destroyUser = true;
18180            } else {
18181                try {
18182                    UserManagerService.enforceSerialNumber(file, info.serialNumber);
18183                } catch (IOException e) {
18184                    logCriticalInfo(Log.WARN, "Destroying user directory " + file
18185                            + " because we failed to enforce serial number: " + e);
18186                    destroyUser = true;
18187                }
18188            }
18189
18190            if (destroyUser) {
18191                synchronized (mInstallLock) {
18192                    try {
18193                        mInstaller.removeUserDataDirs(volumeUuid, userId);
18194                    } catch (InstallerException e) {
18195                        Slog.w(TAG, "Failed to clean up user dirs", e);
18196                    }
18197                }
18198            }
18199        }
18200    }
18201
18202    private void assertPackageKnown(String volumeUuid, String packageName)
18203            throws PackageManagerException {
18204        synchronized (mPackages) {
18205            final PackageSetting ps = mSettings.mPackages.get(packageName);
18206            if (ps == null) {
18207                throw new PackageManagerException("Package " + packageName + " is unknown");
18208            } else if (!TextUtils.equals(volumeUuid, ps.volumeUuid)) {
18209                throw new PackageManagerException(
18210                        "Package " + packageName + " found on unknown volume " + volumeUuid
18211                                + "; expected volume " + ps.volumeUuid);
18212            }
18213        }
18214    }
18215
18216    private void assertPackageKnownAndInstalled(String volumeUuid, String packageName, int userId)
18217            throws PackageManagerException {
18218        synchronized (mPackages) {
18219            final PackageSetting ps = mSettings.mPackages.get(packageName);
18220            if (ps == null) {
18221                throw new PackageManagerException("Package " + packageName + " is unknown");
18222            } else if (!TextUtils.equals(volumeUuid, ps.volumeUuid)) {
18223                throw new PackageManagerException(
18224                        "Package " + packageName + " found on unknown volume " + volumeUuid
18225                                + "; expected volume " + ps.volumeUuid);
18226            } else if (!ps.getInstalled(userId)) {
18227                throw new PackageManagerException(
18228                        "Package " + packageName + " not installed for user " + userId);
18229            }
18230        }
18231    }
18232
18233    /**
18234     * Examine all apps present on given mounted volume, and destroy apps that
18235     * aren't expected, either due to uninstallation or reinstallation on
18236     * another volume.
18237     */
18238    private void reconcileApps(String volumeUuid) {
18239        final File[] files = FileUtils
18240                .listFilesOrEmpty(Environment.getDataAppDirectory(volumeUuid));
18241        for (File file : files) {
18242            final boolean isPackage = (isApkFile(file) || file.isDirectory())
18243                    && !PackageInstallerService.isStageName(file.getName());
18244            if (!isPackage) {
18245                // Ignore entries which are not packages
18246                continue;
18247            }
18248
18249            try {
18250                final PackageLite pkg = PackageParser.parsePackageLite(file,
18251                        PackageParser.PARSE_MUST_BE_APK);
18252                assertPackageKnown(volumeUuid, pkg.packageName);
18253
18254            } catch (PackageParserException | PackageManagerException e) {
18255                logCriticalInfo(Log.WARN, "Destroying " + file + " due to: " + e);
18256                synchronized (mInstallLock) {
18257                    removeCodePathLI(file);
18258                }
18259            }
18260        }
18261    }
18262
18263    /**
18264     * Reconcile all app data for the given user.
18265     * <p>
18266     * Verifies that directories exist and that ownership and labeling is
18267     * correct for all installed apps on all mounted volumes.
18268     */
18269    void reconcileAppsData(int userId, int flags) {
18270        final StorageManager storage = mContext.getSystemService(StorageManager.class);
18271        for (VolumeInfo vol : storage.getWritablePrivateVolumes()) {
18272            final String volumeUuid = vol.getFsUuid();
18273            reconcileAppsData(volumeUuid, userId, flags);
18274        }
18275    }
18276
18277    /**
18278     * Reconcile all app data on given mounted volume.
18279     * <p>
18280     * Destroys app data that isn't expected, either due to uninstallation or
18281     * reinstallation on another volume.
18282     * <p>
18283     * Verifies that directories exist and that ownership and labeling is
18284     * correct for all installed apps.
18285     */
18286    private void reconcileAppsData(String volumeUuid, int userId, int flags) {
18287        Slog.v(TAG, "reconcileAppsData for " + volumeUuid + " u" + userId + " 0x"
18288                + Integer.toHexString(flags));
18289
18290        final File ceDir = Environment.getDataUserCeDirectory(volumeUuid, userId);
18291        final File deDir = Environment.getDataUserDeDirectory(volumeUuid, userId);
18292
18293        boolean restoreconNeeded = false;
18294
18295        // First look for stale data that doesn't belong, and check if things
18296        // have changed since we did our last restorecon
18297        if ((flags & StorageManager.FLAG_STORAGE_CE) != 0) {
18298            if (!isUserKeyUnlocked(userId)) {
18299                throw new RuntimeException(
18300                        "Yikes, someone asked us to reconcile CE storage while " + userId
18301                                + " was still locked; this would have caused massive data loss!");
18302            }
18303
18304            restoreconNeeded |= SELinuxMMAC.isRestoreconNeeded(ceDir);
18305
18306            final File[] files = FileUtils.listFilesOrEmpty(ceDir);
18307            for (File file : files) {
18308                final String packageName = file.getName();
18309                try {
18310                    assertPackageKnownAndInstalled(volumeUuid, packageName, userId);
18311                } catch (PackageManagerException e) {
18312                    logCriticalInfo(Log.WARN, "Destroying " + file + " due to: " + e);
18313                    synchronized (mInstallLock) {
18314                        destroyAppDataLI(volumeUuid, packageName, userId,
18315                                StorageManager.FLAG_STORAGE_CE);
18316                    }
18317                }
18318            }
18319        }
18320        if ((flags & StorageManager.FLAG_STORAGE_DE) != 0) {
18321            restoreconNeeded |= SELinuxMMAC.isRestoreconNeeded(deDir);
18322
18323            final File[] files = FileUtils.listFilesOrEmpty(deDir);
18324            for (File file : files) {
18325                final String packageName = file.getName();
18326                try {
18327                    assertPackageKnownAndInstalled(volumeUuid, packageName, userId);
18328                } catch (PackageManagerException e) {
18329                    logCriticalInfo(Log.WARN, "Destroying " + file + " due to: " + e);
18330                    synchronized (mInstallLock) {
18331                        destroyAppDataLI(volumeUuid, packageName, userId,
18332                                StorageManager.FLAG_STORAGE_DE);
18333                    }
18334                }
18335            }
18336        }
18337
18338        // Ensure that data directories are ready to roll for all packages
18339        // installed for this volume and user
18340        final List<PackageSetting> packages;
18341        synchronized (mPackages) {
18342            packages = mSettings.getVolumePackagesLPr(volumeUuid);
18343        }
18344        int preparedCount = 0;
18345        for (PackageSetting ps : packages) {
18346            final String packageName = ps.name;
18347            if (ps.pkg == null) {
18348                Slog.w(TAG, "Odd, missing scanned package " + packageName);
18349                // TODO: might be due to legacy ASEC apps; we should circle back
18350                // and reconcile again once they're scanned
18351                continue;
18352            }
18353
18354            if (ps.getInstalled(userId)) {
18355                prepareAppData(volumeUuid, userId, flags, ps.pkg, restoreconNeeded);
18356
18357                if (maybeMigrateAppData(volumeUuid, userId, ps.pkg)) {
18358                    // We may have just shuffled around app data directories, so
18359                    // prepare them one more time
18360                    prepareAppData(volumeUuid, userId, flags, ps.pkg, restoreconNeeded);
18361                }
18362
18363                preparedCount++;
18364            }
18365        }
18366
18367        if (restoreconNeeded) {
18368            if ((flags & StorageManager.FLAG_STORAGE_CE) != 0) {
18369                SELinuxMMAC.setRestoreconDone(ceDir);
18370            }
18371            if ((flags & StorageManager.FLAG_STORAGE_DE) != 0) {
18372                SELinuxMMAC.setRestoreconDone(deDir);
18373            }
18374        }
18375
18376        Slog.v(TAG, "reconcileAppsData finished " + preparedCount
18377                + " packages; restoreconNeeded was " + restoreconNeeded);
18378    }
18379
18380    /**
18381     * Prepare app data for the given app just after it was installed or
18382     * upgraded. This method carefully only touches users that it's installed
18383     * for, and it forces a restorecon to handle any seinfo changes.
18384     * <p>
18385     * Verifies that directories exist and that ownership and labeling is
18386     * correct for all installed apps. If there is an ownership mismatch, it
18387     * will try recovering system apps by wiping data; third-party app data is
18388     * left intact.
18389     * <p>
18390     * <em>Note: To avoid a deadlock, do not call this method with {@code mPackages} lock held</em>
18391     */
18392    private void prepareAppDataAfterInstall(PackageParser.Package pkg) {
18393        prepareAppDataAfterInstallInternal(pkg);
18394        final int childCount = (pkg.childPackages != null) ? pkg.childPackages.size() : 0;
18395        for (int i = 0; i < childCount; i++) {
18396            PackageParser.Package childPackage = pkg.childPackages.get(i);
18397            prepareAppDataAfterInstallInternal(childPackage);
18398        }
18399    }
18400
18401    private void prepareAppDataAfterInstallInternal(PackageParser.Package pkg) {
18402        final PackageSetting ps;
18403        synchronized (mPackages) {
18404            ps = mSettings.mPackages.get(pkg.packageName);
18405            mSettings.writeKernelMappingLPr(ps);
18406        }
18407
18408        final UserManager um = mContext.getSystemService(UserManager.class);
18409        for (UserInfo user : um.getUsers()) {
18410            final int flags;
18411            if (um.isUserUnlocked(user.id)) {
18412                flags = StorageManager.FLAG_STORAGE_DE | StorageManager.FLAG_STORAGE_CE;
18413            } else if (um.isUserRunning(user.id)) {
18414                flags = StorageManager.FLAG_STORAGE_DE;
18415            } else {
18416                continue;
18417            }
18418
18419            if (ps.getInstalled(user.id)) {
18420                // Whenever an app changes, force a restorecon of its data
18421                // TODO: when user data is locked, mark that we're still dirty
18422                prepareAppData(pkg.volumeUuid, user.id, flags, pkg, true);
18423            }
18424        }
18425    }
18426
18427    /**
18428     * Prepare app data for the given app.
18429     * <p>
18430     * Verifies that directories exist and that ownership and labeling is
18431     * correct for all installed apps. If there is an ownership mismatch, this
18432     * will try recovering system apps by wiping data; third-party app data is
18433     * left intact.
18434     */
18435    private void prepareAppData(String volumeUuid, int userId, int flags,
18436            PackageParser.Package pkg, boolean restoreconNeeded) {
18437        if (DEBUG_APP_DATA) {
18438            Slog.v(TAG, "prepareAppData for " + pkg.packageName + " u" + userId + " 0x"
18439                    + Integer.toHexString(flags) + (restoreconNeeded ? " restoreconNeeded" : ""));
18440        }
18441
18442        final String packageName = pkg.packageName;
18443        final ApplicationInfo app = pkg.applicationInfo;
18444        final int appId = UserHandle.getAppId(app.uid);
18445
18446        Preconditions.checkNotNull(app.seinfo);
18447
18448        synchronized (mInstallLock) {
18449            try {
18450                mInstaller.createAppData(volumeUuid, packageName, userId, flags,
18451                        appId, app.seinfo, app.targetSdkVersion);
18452            } catch (InstallerException e) {
18453                if (app.isSystemApp()) {
18454                    logCriticalInfo(Log.ERROR, "Failed to create app data for " + packageName
18455                            + ", but trying to recover: " + e);
18456                    destroyAppDataLI(volumeUuid, packageName, userId, flags);
18457                    try {
18458                        mInstaller.createAppData(volumeUuid, packageName, userId, flags,
18459                                appId, app.seinfo, app.targetSdkVersion);
18460                        logCriticalInfo(Log.DEBUG, "Recovery succeeded!");
18461                    } catch (InstallerException e2) {
18462                        logCriticalInfo(Log.DEBUG, "Recovery failed!");
18463                    }
18464                } else {
18465                    Slog.e(TAG, "Failed to create app data for " + packageName + ": " + e);
18466                }
18467            }
18468
18469            if (restoreconNeeded) {
18470                restoreconAppDataLI(volumeUuid, packageName, userId, flags, appId, app.seinfo);
18471            }
18472
18473            if ((flags & StorageManager.FLAG_STORAGE_CE) != 0) {
18474                // Create a native library symlink only if we have native libraries
18475                // and if the native libraries are 32 bit libraries. We do not provide
18476                // this symlink for 64 bit libraries.
18477                if (app.primaryCpuAbi != null && !VMRuntime.is64BitAbi(app.primaryCpuAbi)) {
18478                    final String nativeLibPath = app.nativeLibraryDir;
18479                    try {
18480                        mInstaller.linkNativeLibraryDirectory(volumeUuid, packageName,
18481                                nativeLibPath, userId);
18482                    } catch (InstallerException e) {
18483                        Slog.e(TAG, "Failed to link native for " + packageName + ": " + e);
18484                    }
18485                }
18486            }
18487        }
18488    }
18489
18490    /**
18491     * For system apps on non-FBE devices, this method migrates any existing
18492     * CE/DE data to match the {@code defaultToDeviceProtectedStorage} flag
18493     * requested by the app.
18494     */
18495    private boolean maybeMigrateAppData(String volumeUuid, int userId, PackageParser.Package pkg) {
18496        if (pkg.isSystemApp() && !StorageManager.isFileEncryptedNativeOrEmulated()
18497                && PackageManager.APPLY_DEFAULT_TO_DEVICE_PROTECTED_STORAGE) {
18498            final int storageTarget = pkg.applicationInfo.isDefaultToDeviceProtectedStorage()
18499                    ? StorageManager.FLAG_STORAGE_DE : StorageManager.FLAG_STORAGE_CE;
18500            synchronized (mInstallLock) {
18501                try {
18502                    mInstaller.migrateAppData(volumeUuid, pkg.packageName, userId, storageTarget);
18503                } catch (InstallerException e) {
18504                    logCriticalInfo(Log.WARN,
18505                            "Failed to migrate " + pkg.packageName + ": " + e.getMessage());
18506                }
18507            }
18508            return true;
18509        } else {
18510            return false;
18511        }
18512    }
18513
18514    private void unfreezePackage(String packageName) {
18515        synchronized (mPackages) {
18516            final PackageSetting ps = mSettings.mPackages.get(packageName);
18517            if (ps != null) {
18518                ps.frozen = false;
18519            }
18520        }
18521    }
18522
18523    @Override
18524    public int movePackage(final String packageName, final String volumeUuid) {
18525        mContext.enforceCallingOrSelfPermission(android.Manifest.permission.MOVE_PACKAGE, null);
18526
18527        final int moveId = mNextMoveId.getAndIncrement();
18528        mHandler.post(new Runnable() {
18529            @Override
18530            public void run() {
18531                try {
18532                    movePackageInternal(packageName, volumeUuid, moveId);
18533                } catch (PackageManagerException e) {
18534                    Slog.w(TAG, "Failed to move " + packageName, e);
18535                    mMoveCallbacks.notifyStatusChanged(moveId,
18536                            PackageManager.MOVE_FAILED_INTERNAL_ERROR);
18537                }
18538            }
18539        });
18540        return moveId;
18541    }
18542
18543    private void movePackageInternal(final String packageName, final String volumeUuid,
18544            final int moveId) throws PackageManagerException {
18545        final UserHandle user = new UserHandle(UserHandle.getCallingUserId());
18546        final StorageManager storage = mContext.getSystemService(StorageManager.class);
18547        final PackageManager pm = mContext.getPackageManager();
18548
18549        final boolean currentAsec;
18550        final String currentVolumeUuid;
18551        final File codeFile;
18552        final String installerPackageName;
18553        final String packageAbiOverride;
18554        final int appId;
18555        final String seinfo;
18556        final String label;
18557        final int targetSdkVersion;
18558
18559        // reader
18560        synchronized (mPackages) {
18561            final PackageParser.Package pkg = mPackages.get(packageName);
18562            final PackageSetting ps = mSettings.mPackages.get(packageName);
18563            if (pkg == null || ps == null) {
18564                throw new PackageManagerException(MOVE_FAILED_DOESNT_EXIST, "Missing package");
18565            }
18566
18567            if (pkg.applicationInfo.isSystemApp()) {
18568                throw new PackageManagerException(MOVE_FAILED_SYSTEM_PACKAGE,
18569                        "Cannot move system application");
18570            }
18571
18572            if (pkg.applicationInfo.isExternalAsec()) {
18573                currentAsec = true;
18574                currentVolumeUuid = StorageManager.UUID_PRIMARY_PHYSICAL;
18575            } else if (pkg.applicationInfo.isForwardLocked()) {
18576                currentAsec = true;
18577                currentVolumeUuid = "forward_locked";
18578            } else {
18579                currentAsec = false;
18580                currentVolumeUuid = ps.volumeUuid;
18581
18582                final File probe = new File(pkg.codePath);
18583                final File probeOat = new File(probe, "oat");
18584                if (!probe.isDirectory() || !probeOat.isDirectory()) {
18585                    throw new PackageManagerException(MOVE_FAILED_INTERNAL_ERROR,
18586                            "Move only supported for modern cluster style installs");
18587                }
18588            }
18589
18590            if (Objects.equals(currentVolumeUuid, volumeUuid)) {
18591                throw new PackageManagerException(MOVE_FAILED_INTERNAL_ERROR,
18592                        "Package already moved to " + volumeUuid);
18593            }
18594            if (pkg.applicationInfo.isInternal() && isPackageDeviceAdminOnAnyUser(packageName)) {
18595                throw new PackageManagerException(MOVE_FAILED_DEVICE_ADMIN,
18596                        "Device admin cannot be moved");
18597            }
18598
18599            if (ps.frozen) {
18600                throw new PackageManagerException(MOVE_FAILED_OPERATION_PENDING,
18601                        "Failed to move already frozen package");
18602            }
18603            ps.frozen = true;
18604
18605            codeFile = new File(pkg.codePath);
18606            installerPackageName = ps.installerPackageName;
18607            packageAbiOverride = ps.cpuAbiOverrideString;
18608            appId = UserHandle.getAppId(pkg.applicationInfo.uid);
18609            seinfo = pkg.applicationInfo.seinfo;
18610            label = String.valueOf(pm.getApplicationLabel(pkg.applicationInfo));
18611            targetSdkVersion = pkg.applicationInfo.targetSdkVersion;
18612        }
18613
18614        // Now that we're guarded by frozen state, kill app during move
18615        final long token = Binder.clearCallingIdentity();
18616        try {
18617            killApplication(packageName, appId, "move pkg");
18618        } finally {
18619            Binder.restoreCallingIdentity(token);
18620        }
18621
18622        final Bundle extras = new Bundle();
18623        extras.putString(Intent.EXTRA_PACKAGE_NAME, packageName);
18624        extras.putString(Intent.EXTRA_TITLE, label);
18625        mMoveCallbacks.notifyCreated(moveId, extras);
18626
18627        int installFlags;
18628        final boolean moveCompleteApp;
18629        final File measurePath;
18630
18631        if (Objects.equals(StorageManager.UUID_PRIVATE_INTERNAL, volumeUuid)) {
18632            installFlags = INSTALL_INTERNAL;
18633            moveCompleteApp = !currentAsec;
18634            measurePath = Environment.getDataAppDirectory(volumeUuid);
18635        } else if (Objects.equals(StorageManager.UUID_PRIMARY_PHYSICAL, volumeUuid)) {
18636            installFlags = INSTALL_EXTERNAL;
18637            moveCompleteApp = false;
18638            measurePath = storage.getPrimaryPhysicalVolume().getPath();
18639        } else {
18640            final VolumeInfo volume = storage.findVolumeByUuid(volumeUuid);
18641            if (volume == null || volume.getType() != VolumeInfo.TYPE_PRIVATE
18642                    || !volume.isMountedWritable()) {
18643                unfreezePackage(packageName);
18644                throw new PackageManagerException(MOVE_FAILED_INTERNAL_ERROR,
18645                        "Move location not mounted private volume");
18646            }
18647
18648            Preconditions.checkState(!currentAsec);
18649
18650            installFlags = INSTALL_INTERNAL;
18651            moveCompleteApp = true;
18652            measurePath = Environment.getDataAppDirectory(volumeUuid);
18653        }
18654
18655        final PackageStats stats = new PackageStats(null, -1);
18656        synchronized (mInstaller) {
18657            if (!getPackageSizeInfoLI(packageName, -1, stats)) {
18658                unfreezePackage(packageName);
18659                throw new PackageManagerException(MOVE_FAILED_INTERNAL_ERROR,
18660                        "Failed to measure package size");
18661            }
18662        }
18663
18664        if (DEBUG_INSTALL) Slog.d(TAG, "Measured code size " + stats.codeSize + ", data size "
18665                + stats.dataSize);
18666
18667        final long startFreeBytes = measurePath.getFreeSpace();
18668        final long sizeBytes;
18669        if (moveCompleteApp) {
18670            sizeBytes = stats.codeSize + stats.dataSize;
18671        } else {
18672            sizeBytes = stats.codeSize;
18673        }
18674
18675        if (sizeBytes > storage.getStorageBytesUntilLow(measurePath)) {
18676            unfreezePackage(packageName);
18677            throw new PackageManagerException(MOVE_FAILED_INTERNAL_ERROR,
18678                    "Not enough free space to move");
18679        }
18680
18681        mMoveCallbacks.notifyStatusChanged(moveId, 10);
18682
18683        final CountDownLatch installedLatch = new CountDownLatch(1);
18684        final IPackageInstallObserver2 installObserver = new IPackageInstallObserver2.Stub() {
18685            @Override
18686            public void onUserActionRequired(Intent intent) throws RemoteException {
18687                throw new IllegalStateException();
18688            }
18689
18690            @Override
18691            public void onPackageInstalled(String basePackageName, int returnCode, String msg,
18692                    Bundle extras) throws RemoteException {
18693                if (DEBUG_INSTALL) Slog.d(TAG, "Install result for move: "
18694                        + PackageManager.installStatusToString(returnCode, msg));
18695
18696                installedLatch.countDown();
18697
18698                // Regardless of success or failure of the move operation,
18699                // always unfreeze the package
18700                unfreezePackage(packageName);
18701
18702                final int status = PackageManager.installStatusToPublicStatus(returnCode);
18703                switch (status) {
18704                    case PackageInstaller.STATUS_SUCCESS:
18705                        mMoveCallbacks.notifyStatusChanged(moveId,
18706                                PackageManager.MOVE_SUCCEEDED);
18707                        break;
18708                    case PackageInstaller.STATUS_FAILURE_STORAGE:
18709                        mMoveCallbacks.notifyStatusChanged(moveId,
18710                                PackageManager.MOVE_FAILED_INSUFFICIENT_STORAGE);
18711                        break;
18712                    default:
18713                        mMoveCallbacks.notifyStatusChanged(moveId,
18714                                PackageManager.MOVE_FAILED_INTERNAL_ERROR);
18715                        break;
18716                }
18717            }
18718        };
18719
18720        final MoveInfo move;
18721        if (moveCompleteApp) {
18722            // Kick off a thread to report progress estimates
18723            new Thread() {
18724                @Override
18725                public void run() {
18726                    while (true) {
18727                        try {
18728                            if (installedLatch.await(1, TimeUnit.SECONDS)) {
18729                                break;
18730                            }
18731                        } catch (InterruptedException ignored) {
18732                        }
18733
18734                        final long deltaFreeBytes = startFreeBytes - measurePath.getFreeSpace();
18735                        final int progress = 10 + (int) MathUtils.constrain(
18736                                ((deltaFreeBytes * 80) / sizeBytes), 0, 80);
18737                        mMoveCallbacks.notifyStatusChanged(moveId, progress);
18738                    }
18739                }
18740            }.start();
18741
18742            final String dataAppName = codeFile.getName();
18743            move = new MoveInfo(moveId, currentVolumeUuid, volumeUuid, packageName,
18744                    dataAppName, appId, seinfo, targetSdkVersion);
18745        } else {
18746            move = null;
18747        }
18748
18749        installFlags |= PackageManager.INSTALL_REPLACE_EXISTING;
18750
18751        final Message msg = mHandler.obtainMessage(INIT_COPY);
18752        final OriginInfo origin = OriginInfo.fromExistingFile(codeFile);
18753        final InstallParams params = new InstallParams(origin, move, installObserver, installFlags,
18754                installerPackageName, volumeUuid, null /*verificationInfo*/, user,
18755                packageAbiOverride, null);
18756        params.setTraceMethod("movePackage").setTraceCookie(System.identityHashCode(params));
18757        msg.obj = params;
18758
18759        Trace.asyncTraceBegin(TRACE_TAG_PACKAGE_MANAGER, "movePackage",
18760                System.identityHashCode(msg.obj));
18761        Trace.asyncTraceBegin(TRACE_TAG_PACKAGE_MANAGER, "queueInstall",
18762                System.identityHashCode(msg.obj));
18763
18764        mHandler.sendMessage(msg);
18765    }
18766
18767    @Override
18768    public int movePrimaryStorage(String volumeUuid) throws RemoteException {
18769        mContext.enforceCallingOrSelfPermission(android.Manifest.permission.MOVE_PACKAGE, null);
18770
18771        final int realMoveId = mNextMoveId.getAndIncrement();
18772        final Bundle extras = new Bundle();
18773        extras.putString(VolumeRecord.EXTRA_FS_UUID, volumeUuid);
18774        mMoveCallbacks.notifyCreated(realMoveId, extras);
18775
18776        final IPackageMoveObserver callback = new IPackageMoveObserver.Stub() {
18777            @Override
18778            public void onCreated(int moveId, Bundle extras) {
18779                // Ignored
18780            }
18781
18782            @Override
18783            public void onStatusChanged(int moveId, int status, long estMillis) {
18784                mMoveCallbacks.notifyStatusChanged(realMoveId, status, estMillis);
18785            }
18786        };
18787
18788        final StorageManager storage = mContext.getSystemService(StorageManager.class);
18789        storage.setPrimaryStorageUuid(volumeUuid, callback);
18790        return realMoveId;
18791    }
18792
18793    @Override
18794    public int getMoveStatus(int moveId) {
18795        mContext.enforceCallingOrSelfPermission(
18796                android.Manifest.permission.MOUNT_UNMOUNT_FILESYSTEMS, null);
18797        return mMoveCallbacks.mLastStatus.get(moveId);
18798    }
18799
18800    @Override
18801    public void registerMoveCallback(IPackageMoveObserver callback) {
18802        mContext.enforceCallingOrSelfPermission(
18803                android.Manifest.permission.MOUNT_UNMOUNT_FILESYSTEMS, null);
18804        mMoveCallbacks.register(callback);
18805    }
18806
18807    @Override
18808    public void unregisterMoveCallback(IPackageMoveObserver callback) {
18809        mContext.enforceCallingOrSelfPermission(
18810                android.Manifest.permission.MOUNT_UNMOUNT_FILESYSTEMS, null);
18811        mMoveCallbacks.unregister(callback);
18812    }
18813
18814    @Override
18815    public boolean setInstallLocation(int loc) {
18816        mContext.enforceCallingOrSelfPermission(android.Manifest.permission.WRITE_SECURE_SETTINGS,
18817                null);
18818        if (getInstallLocation() == loc) {
18819            return true;
18820        }
18821        if (loc == PackageHelper.APP_INSTALL_AUTO || loc == PackageHelper.APP_INSTALL_INTERNAL
18822                || loc == PackageHelper.APP_INSTALL_EXTERNAL) {
18823            android.provider.Settings.Global.putInt(mContext.getContentResolver(),
18824                    android.provider.Settings.Global.DEFAULT_INSTALL_LOCATION, loc);
18825            return true;
18826        }
18827        return false;
18828   }
18829
18830    @Override
18831    public int getInstallLocation() {
18832        return android.provider.Settings.Global.getInt(mContext.getContentResolver(),
18833                android.provider.Settings.Global.DEFAULT_INSTALL_LOCATION,
18834                PackageHelper.APP_INSTALL_AUTO);
18835    }
18836
18837    /** Called by UserManagerService */
18838    void cleanUpUser(UserManagerService userManager, int userHandle) {
18839        synchronized (mPackages) {
18840            mDirtyUsers.remove(userHandle);
18841            mUserNeedsBadging.delete(userHandle);
18842            mSettings.removeUserLPw(userHandle);
18843            mPendingBroadcasts.remove(userHandle);
18844            mEphemeralApplicationRegistry.onUserRemovedLPw(userHandle);
18845        }
18846        synchronized (mInstallLock) {
18847            final StorageManager storage = mContext.getSystemService(StorageManager.class);
18848            for (VolumeInfo vol : storage.getWritablePrivateVolumes()) {
18849                final String volumeUuid = vol.getFsUuid();
18850                if (DEBUG_INSTALL) Slog.d(TAG, "Removing user data on volume " + volumeUuid);
18851                try {
18852                    mInstaller.removeUserDataDirs(volumeUuid, userHandle);
18853                } catch (InstallerException e) {
18854                    Slog.w(TAG, "Failed to remove user data", e);
18855                }
18856            }
18857            synchronized (mPackages) {
18858                removeUnusedPackagesLILPw(userManager, userHandle);
18859            }
18860        }
18861    }
18862
18863    /**
18864     * We're removing userHandle and would like to remove any downloaded packages
18865     * that are no longer in use by any other user.
18866     * @param userHandle the user being removed
18867     */
18868    private void removeUnusedPackagesLILPw(UserManagerService userManager, final int userHandle) {
18869        final boolean DEBUG_CLEAN_APKS = false;
18870        int [] users = userManager.getUserIds();
18871        Iterator<PackageSetting> psit = mSettings.mPackages.values().iterator();
18872        while (psit.hasNext()) {
18873            PackageSetting ps = psit.next();
18874            if (ps.pkg == null) {
18875                continue;
18876            }
18877            final String packageName = ps.pkg.packageName;
18878            // Skip over if system app
18879            if ((ps.pkgFlags & ApplicationInfo.FLAG_SYSTEM) != 0) {
18880                continue;
18881            }
18882            if (DEBUG_CLEAN_APKS) {
18883                Slog.i(TAG, "Checking package " + packageName);
18884            }
18885            boolean keep = shouldKeepUninstalledPackageLPr(packageName);
18886            if (keep) {
18887                if (DEBUG_CLEAN_APKS) {
18888                    Slog.i(TAG, "  Keeping package " + packageName + " - requested by DO");
18889                }
18890            } else {
18891                for (int i = 0; i < users.length; i++) {
18892                    if (users[i] != userHandle && ps.getInstalled(users[i])) {
18893                        keep = true;
18894                        if (DEBUG_CLEAN_APKS) {
18895                            Slog.i(TAG, "  Keeping package " + packageName + " for user "
18896                                    + users[i]);
18897                        }
18898                        break;
18899                    }
18900                }
18901            }
18902            if (!keep) {
18903                if (DEBUG_CLEAN_APKS) {
18904                    Slog.i(TAG, "  Removing package " + packageName);
18905                }
18906                mHandler.post(new Runnable() {
18907                    public void run() {
18908                        deletePackageX(packageName, userHandle, 0);
18909                    } //end run
18910                });
18911            }
18912        }
18913    }
18914
18915    /** Called by UserManagerService */
18916    void createNewUser(int userHandle) {
18917        synchronized (mInstallLock) {
18918            try {
18919                mInstaller.createUserConfig(userHandle);
18920            } catch (InstallerException e) {
18921                Slog.w(TAG, "Failed to create user config", e);
18922            }
18923            mSettings.createNewUserLI(this, mInstaller, userHandle);
18924        }
18925        synchronized (mPackages) {
18926            applyFactoryDefaultBrowserLPw(userHandle);
18927            primeDomainVerificationsLPw(userHandle);
18928        }
18929    }
18930
18931    void newUserCreated(final int userHandle) {
18932        mDefaultPermissionPolicy.grantDefaultPermissions(userHandle);
18933        // If permission review for legacy apps is required, we represent
18934        // dagerous permissions for such apps as always granted runtime
18935        // permissions to keep per user flag state whether review is needed.
18936        // Hence, if a new user is added we have to propagate dangerous
18937        // permission grants for these legacy apps.
18938        if (Build.PERMISSIONS_REVIEW_REQUIRED) {
18939            updatePermissionsLPw(null, null, UPDATE_PERMISSIONS_ALL
18940                    | UPDATE_PERMISSIONS_REPLACE_ALL);
18941        }
18942    }
18943
18944    @Override
18945    public VerifierDeviceIdentity getVerifierDeviceIdentity() throws RemoteException {
18946        mContext.enforceCallingOrSelfPermission(
18947                android.Manifest.permission.PACKAGE_VERIFICATION_AGENT,
18948                "Only package verification agents can read the verifier device identity");
18949
18950        synchronized (mPackages) {
18951            return mSettings.getVerifierDeviceIdentityLPw();
18952        }
18953    }
18954
18955    @Override
18956    public void setPermissionEnforced(String permission, boolean enforced) {
18957        // TODO: Now that we no longer change GID for storage, this should to away.
18958        mContext.enforceCallingOrSelfPermission(Manifest.permission.GRANT_RUNTIME_PERMISSIONS,
18959                "setPermissionEnforced");
18960        if (READ_EXTERNAL_STORAGE.equals(permission)) {
18961            synchronized (mPackages) {
18962                if (mSettings.mReadExternalStorageEnforced == null
18963                        || mSettings.mReadExternalStorageEnforced != enforced) {
18964                    mSettings.mReadExternalStorageEnforced = enforced;
18965                    mSettings.writeLPr();
18966                }
18967            }
18968            // kill any non-foreground processes so we restart them and
18969            // grant/revoke the GID.
18970            final IActivityManager am = ActivityManagerNative.getDefault();
18971            if (am != null) {
18972                final long token = Binder.clearCallingIdentity();
18973                try {
18974                    am.killProcessesBelowForeground("setPermissionEnforcement");
18975                } catch (RemoteException e) {
18976                } finally {
18977                    Binder.restoreCallingIdentity(token);
18978                }
18979            }
18980        } else {
18981            throw new IllegalArgumentException("No selective enforcement for " + permission);
18982        }
18983    }
18984
18985    @Override
18986    @Deprecated
18987    public boolean isPermissionEnforced(String permission) {
18988        return true;
18989    }
18990
18991    @Override
18992    public boolean isStorageLow() {
18993        final long token = Binder.clearCallingIdentity();
18994        try {
18995            final DeviceStorageMonitorInternal
18996                    dsm = LocalServices.getService(DeviceStorageMonitorInternal.class);
18997            if (dsm != null) {
18998                return dsm.isMemoryLow();
18999            } else {
19000                return false;
19001            }
19002        } finally {
19003            Binder.restoreCallingIdentity(token);
19004        }
19005    }
19006
19007    @Override
19008    public IPackageInstaller getPackageInstaller() {
19009        return mInstallerService;
19010    }
19011
19012    private boolean userNeedsBadging(int userId) {
19013        int index = mUserNeedsBadging.indexOfKey(userId);
19014        if (index < 0) {
19015            final UserInfo userInfo;
19016            final long token = Binder.clearCallingIdentity();
19017            try {
19018                userInfo = sUserManager.getUserInfo(userId);
19019            } finally {
19020                Binder.restoreCallingIdentity(token);
19021            }
19022            final boolean b;
19023            if (userInfo != null && userInfo.isManagedProfile()) {
19024                b = true;
19025            } else {
19026                b = false;
19027            }
19028            mUserNeedsBadging.put(userId, b);
19029            return b;
19030        }
19031        return mUserNeedsBadging.valueAt(index);
19032    }
19033
19034    @Override
19035    public KeySet getKeySetByAlias(String packageName, String alias) {
19036        if (packageName == null || alias == null) {
19037            return null;
19038        }
19039        synchronized(mPackages) {
19040            final PackageParser.Package pkg = mPackages.get(packageName);
19041            if (pkg == null) {
19042                Slog.w(TAG, "KeySet requested for unknown package: " + packageName);
19043                throw new IllegalArgumentException("Unknown package: " + packageName);
19044            }
19045            KeySetManagerService ksms = mSettings.mKeySetManagerService;
19046            return new KeySet(ksms.getKeySetByAliasAndPackageNameLPr(packageName, alias));
19047        }
19048    }
19049
19050    @Override
19051    public KeySet getSigningKeySet(String packageName) {
19052        if (packageName == null) {
19053            return null;
19054        }
19055        synchronized(mPackages) {
19056            final PackageParser.Package pkg = mPackages.get(packageName);
19057            if (pkg == null) {
19058                Slog.w(TAG, "KeySet requested for unknown package: " + packageName);
19059                throw new IllegalArgumentException("Unknown package: " + packageName);
19060            }
19061            if (pkg.applicationInfo.uid != Binder.getCallingUid()
19062                    && Process.SYSTEM_UID != Binder.getCallingUid()) {
19063                throw new SecurityException("May not access signing KeySet of other apps.");
19064            }
19065            KeySetManagerService ksms = mSettings.mKeySetManagerService;
19066            return new KeySet(ksms.getSigningKeySetByPackageNameLPr(packageName));
19067        }
19068    }
19069
19070    @Override
19071    public boolean isPackageSignedByKeySet(String packageName, KeySet ks) {
19072        if (packageName == null || ks == null) {
19073            return false;
19074        }
19075        synchronized(mPackages) {
19076            final PackageParser.Package pkg = mPackages.get(packageName);
19077            if (pkg == null) {
19078                Slog.w(TAG, "KeySet requested for unknown package: " + packageName);
19079                throw new IllegalArgumentException("Unknown package: " + packageName);
19080            }
19081            IBinder ksh = ks.getToken();
19082            if (ksh instanceof KeySetHandle) {
19083                KeySetManagerService ksms = mSettings.mKeySetManagerService;
19084                return ksms.packageIsSignedByLPr(packageName, (KeySetHandle) ksh);
19085            }
19086            return false;
19087        }
19088    }
19089
19090    @Override
19091    public boolean isPackageSignedByKeySetExactly(String packageName, KeySet ks) {
19092        if (packageName == null || ks == null) {
19093            return false;
19094        }
19095        synchronized(mPackages) {
19096            final PackageParser.Package pkg = mPackages.get(packageName);
19097            if (pkg == null) {
19098                Slog.w(TAG, "KeySet requested for unknown package: " + packageName);
19099                throw new IllegalArgumentException("Unknown package: " + packageName);
19100            }
19101            IBinder ksh = ks.getToken();
19102            if (ksh instanceof KeySetHandle) {
19103                KeySetManagerService ksms = mSettings.mKeySetManagerService;
19104                return ksms.packageIsSignedByExactlyLPr(packageName, (KeySetHandle) ksh);
19105            }
19106            return false;
19107        }
19108    }
19109
19110    private void deletePackageIfUnusedLPr(final String packageName) {
19111        PackageSetting ps = mSettings.mPackages.get(packageName);
19112        if (ps == null) {
19113            return;
19114        }
19115        if (!ps.isAnyInstalled(sUserManager.getUserIds())) {
19116            // TODO Implement atomic delete if package is unused
19117            // It is currently possible that the package will be deleted even if it is installed
19118            // after this method returns.
19119            mHandler.post(new Runnable() {
19120                public void run() {
19121                    deletePackageX(packageName, 0, PackageManager.DELETE_ALL_USERS);
19122                }
19123            });
19124        }
19125    }
19126
19127    /**
19128     * Check and throw if the given before/after packages would be considered a
19129     * downgrade.
19130     */
19131    private static void checkDowngrade(PackageParser.Package before, PackageInfoLite after)
19132            throws PackageManagerException {
19133        if (after.versionCode < before.mVersionCode) {
19134            throw new PackageManagerException(INSTALL_FAILED_VERSION_DOWNGRADE,
19135                    "Update version code " + after.versionCode + " is older than current "
19136                    + before.mVersionCode);
19137        } else if (after.versionCode == before.mVersionCode) {
19138            if (after.baseRevisionCode < before.baseRevisionCode) {
19139                throw new PackageManagerException(INSTALL_FAILED_VERSION_DOWNGRADE,
19140                        "Update base revision code " + after.baseRevisionCode
19141                        + " is older than current " + before.baseRevisionCode);
19142            }
19143
19144            if (!ArrayUtils.isEmpty(after.splitNames)) {
19145                for (int i = 0; i < after.splitNames.length; i++) {
19146                    final String splitName = after.splitNames[i];
19147                    final int j = ArrayUtils.indexOf(before.splitNames, splitName);
19148                    if (j != -1) {
19149                        if (after.splitRevisionCodes[i] < before.splitRevisionCodes[j]) {
19150                            throw new PackageManagerException(INSTALL_FAILED_VERSION_DOWNGRADE,
19151                                    "Update split " + splitName + " revision code "
19152                                    + after.splitRevisionCodes[i] + " is older than current "
19153                                    + before.splitRevisionCodes[j]);
19154                        }
19155                    }
19156                }
19157            }
19158        }
19159    }
19160
19161    private static class MoveCallbacks extends Handler {
19162        private static final int MSG_CREATED = 1;
19163        private static final int MSG_STATUS_CHANGED = 2;
19164
19165        private final RemoteCallbackList<IPackageMoveObserver>
19166                mCallbacks = new RemoteCallbackList<>();
19167
19168        private final SparseIntArray mLastStatus = new SparseIntArray();
19169
19170        public MoveCallbacks(Looper looper) {
19171            super(looper);
19172        }
19173
19174        public void register(IPackageMoveObserver callback) {
19175            mCallbacks.register(callback);
19176        }
19177
19178        public void unregister(IPackageMoveObserver callback) {
19179            mCallbacks.unregister(callback);
19180        }
19181
19182        @Override
19183        public void handleMessage(Message msg) {
19184            final SomeArgs args = (SomeArgs) msg.obj;
19185            final int n = mCallbacks.beginBroadcast();
19186            for (int i = 0; i < n; i++) {
19187                final IPackageMoveObserver callback = mCallbacks.getBroadcastItem(i);
19188                try {
19189                    invokeCallback(callback, msg.what, args);
19190                } catch (RemoteException ignored) {
19191                }
19192            }
19193            mCallbacks.finishBroadcast();
19194            args.recycle();
19195        }
19196
19197        private void invokeCallback(IPackageMoveObserver callback, int what, SomeArgs args)
19198                throws RemoteException {
19199            switch (what) {
19200                case MSG_CREATED: {
19201                    callback.onCreated(args.argi1, (Bundle) args.arg2);
19202                    break;
19203                }
19204                case MSG_STATUS_CHANGED: {
19205                    callback.onStatusChanged(args.argi1, args.argi2, (long) args.arg3);
19206                    break;
19207                }
19208            }
19209        }
19210
19211        private void notifyCreated(int moveId, Bundle extras) {
19212            Slog.v(TAG, "Move " + moveId + " created " + extras.toString());
19213
19214            final SomeArgs args = SomeArgs.obtain();
19215            args.argi1 = moveId;
19216            args.arg2 = extras;
19217            obtainMessage(MSG_CREATED, args).sendToTarget();
19218        }
19219
19220        private void notifyStatusChanged(int moveId, int status) {
19221            notifyStatusChanged(moveId, status, -1);
19222        }
19223
19224        private void notifyStatusChanged(int moveId, int status, long estMillis) {
19225            Slog.v(TAG, "Move " + moveId + " status " + status);
19226
19227            final SomeArgs args = SomeArgs.obtain();
19228            args.argi1 = moveId;
19229            args.argi2 = status;
19230            args.arg3 = estMillis;
19231            obtainMessage(MSG_STATUS_CHANGED, args).sendToTarget();
19232
19233            synchronized (mLastStatus) {
19234                mLastStatus.put(moveId, status);
19235            }
19236        }
19237    }
19238
19239    private final static class OnPermissionChangeListeners extends Handler {
19240        private static final int MSG_ON_PERMISSIONS_CHANGED = 1;
19241
19242        private final RemoteCallbackList<IOnPermissionsChangeListener> mPermissionListeners =
19243                new RemoteCallbackList<>();
19244
19245        public OnPermissionChangeListeners(Looper looper) {
19246            super(looper);
19247        }
19248
19249        @Override
19250        public void handleMessage(Message msg) {
19251            switch (msg.what) {
19252                case MSG_ON_PERMISSIONS_CHANGED: {
19253                    final int uid = msg.arg1;
19254                    handleOnPermissionsChanged(uid);
19255                } break;
19256            }
19257        }
19258
19259        public void addListenerLocked(IOnPermissionsChangeListener listener) {
19260            mPermissionListeners.register(listener);
19261
19262        }
19263
19264        public void removeListenerLocked(IOnPermissionsChangeListener listener) {
19265            mPermissionListeners.unregister(listener);
19266        }
19267
19268        public void onPermissionsChanged(int uid) {
19269            if (mPermissionListeners.getRegisteredCallbackCount() > 0) {
19270                obtainMessage(MSG_ON_PERMISSIONS_CHANGED, uid, 0).sendToTarget();
19271            }
19272        }
19273
19274        private void handleOnPermissionsChanged(int uid) {
19275            final int count = mPermissionListeners.beginBroadcast();
19276            try {
19277                for (int i = 0; i < count; i++) {
19278                    IOnPermissionsChangeListener callback = mPermissionListeners
19279                            .getBroadcastItem(i);
19280                    try {
19281                        callback.onPermissionsChanged(uid);
19282                    } catch (RemoteException e) {
19283                        Log.e(TAG, "Permission listener is dead", e);
19284                    }
19285                }
19286            } finally {
19287                mPermissionListeners.finishBroadcast();
19288            }
19289        }
19290    }
19291
19292    private class PackageManagerInternalImpl extends PackageManagerInternal {
19293        @Override
19294        public void setLocationPackagesProvider(PackagesProvider provider) {
19295            synchronized (mPackages) {
19296                mDefaultPermissionPolicy.setLocationPackagesProviderLPw(provider);
19297            }
19298        }
19299
19300        @Override
19301        public void setVoiceInteractionPackagesProvider(PackagesProvider provider) {
19302            synchronized (mPackages) {
19303                mDefaultPermissionPolicy.setVoiceInteractionPackagesProviderLPw(provider);
19304            }
19305        }
19306
19307        @Override
19308        public void setSmsAppPackagesProvider(PackagesProvider provider) {
19309            synchronized (mPackages) {
19310                mDefaultPermissionPolicy.setSmsAppPackagesProviderLPw(provider);
19311            }
19312        }
19313
19314        @Override
19315        public void setDialerAppPackagesProvider(PackagesProvider provider) {
19316            synchronized (mPackages) {
19317                mDefaultPermissionPolicy.setDialerAppPackagesProviderLPw(provider);
19318            }
19319        }
19320
19321        @Override
19322        public void setSimCallManagerPackagesProvider(PackagesProvider provider) {
19323            synchronized (mPackages) {
19324                mDefaultPermissionPolicy.setSimCallManagerPackagesProviderLPw(provider);
19325            }
19326        }
19327
19328        @Override
19329        public void setSyncAdapterPackagesprovider(SyncAdapterPackagesProvider provider) {
19330            synchronized (mPackages) {
19331                mDefaultPermissionPolicy.setSyncAdapterPackagesProviderLPw(provider);
19332            }
19333        }
19334
19335        @Override
19336        public void grantDefaultPermissionsToDefaultSmsApp(String packageName, int userId) {
19337            synchronized (mPackages) {
19338                mDefaultPermissionPolicy.grantDefaultPermissionsToDefaultSmsAppLPr(
19339                        packageName, userId);
19340            }
19341        }
19342
19343        @Override
19344        public void grantDefaultPermissionsToDefaultDialerApp(String packageName, int userId) {
19345            synchronized (mPackages) {
19346                mDefaultPermissionPolicy.grantDefaultPermissionsToDefaultDialerAppLPr(
19347                        packageName, userId);
19348            }
19349        }
19350
19351        @Override
19352        public void grantDefaultPermissionsToDefaultSimCallManager(String packageName, int userId) {
19353            synchronized (mPackages) {
19354                mDefaultPermissionPolicy.grantDefaultPermissionsToDefaultSimCallManagerLPr(
19355                        packageName, userId);
19356            }
19357        }
19358
19359        @Override
19360        public void setKeepUninstalledPackages(final List<String> packageList) {
19361            Preconditions.checkNotNull(packageList);
19362            List<String> removedFromList = null;
19363            synchronized (mPackages) {
19364                if (mKeepUninstalledPackages != null) {
19365                    final int packagesCount = mKeepUninstalledPackages.size();
19366                    for (int i = 0; i < packagesCount; i++) {
19367                        String oldPackage = mKeepUninstalledPackages.get(i);
19368                        if (packageList != null && packageList.contains(oldPackage)) {
19369                            continue;
19370                        }
19371                        if (removedFromList == null) {
19372                            removedFromList = new ArrayList<>();
19373                        }
19374                        removedFromList.add(oldPackage);
19375                    }
19376                }
19377                mKeepUninstalledPackages = new ArrayList<>(packageList);
19378                if (removedFromList != null) {
19379                    final int removedCount = removedFromList.size();
19380                    for (int i = 0; i < removedCount; i++) {
19381                        deletePackageIfUnusedLPr(removedFromList.get(i));
19382                    }
19383                }
19384            }
19385        }
19386
19387        @Override
19388        public boolean isPermissionsReviewRequired(String packageName, int userId) {
19389            synchronized (mPackages) {
19390                // If we do not support permission review, done.
19391                if (!Build.PERMISSIONS_REVIEW_REQUIRED) {
19392                    return false;
19393                }
19394
19395                PackageSetting packageSetting = mSettings.mPackages.get(packageName);
19396                if (packageSetting == null) {
19397                    return false;
19398                }
19399
19400                // Permission review applies only to apps not supporting the new permission model.
19401                if (packageSetting.pkg.applicationInfo.targetSdkVersion >= Build.VERSION_CODES.M) {
19402                    return false;
19403                }
19404
19405                // Legacy apps have the permission and get user consent on launch.
19406                PermissionsState permissionsState = packageSetting.getPermissionsState();
19407                return permissionsState.isPermissionReviewRequired(userId);
19408            }
19409        }
19410
19411        @Override
19412        public ApplicationInfo getApplicationInfo(String packageName, int userId) {
19413            return PackageManagerService.this.getApplicationInfo(packageName, 0 /*flags*/, userId);
19414        }
19415
19416        @Override
19417        public ComponentName getHomeActivitiesAsUser(List<ResolveInfo> allHomeCandidates,
19418                int userId) {
19419            return PackageManagerService.this.getHomeActivitiesAsUser(allHomeCandidates, userId);
19420        }
19421    }
19422
19423    @Override
19424    public void grantDefaultPermissionsToEnabledCarrierApps(String[] packageNames, int userId) {
19425        enforceSystemOrPhoneCaller("grantPermissionsToEnabledCarrierApps");
19426        synchronized (mPackages) {
19427            final long identity = Binder.clearCallingIdentity();
19428            try {
19429                mDefaultPermissionPolicy.grantDefaultPermissionsToEnabledCarrierAppsLPr(
19430                        packageNames, userId);
19431            } finally {
19432                Binder.restoreCallingIdentity(identity);
19433            }
19434        }
19435    }
19436
19437    private static void enforceSystemOrPhoneCaller(String tag) {
19438        int callingUid = Binder.getCallingUid();
19439        if (callingUid != Process.PHONE_UID && callingUid != Process.SYSTEM_UID) {
19440            throw new SecurityException(
19441                    "Cannot call " + tag + " from UID " + callingUid);
19442        }
19443    }
19444
19445    boolean isHistoricalPackageUsageAvailable() {
19446        return mPackageUsage.isHistoricalPackageUsageAvailable();
19447    }
19448
19449    /**
19450     * Return a <b>copy</b> of the collection of packages known to the package manager.
19451     * @return A copy of the values of mPackages.
19452     */
19453    Collection<PackageParser.Package> getPackages() {
19454        synchronized (mPackages) {
19455            return new ArrayList<>(mPackages.values());
19456        }
19457    }
19458
19459    /**
19460     * Logs process start information (including base APK hash) to the security log.
19461     * @hide
19462     */
19463    public void logAppProcessStartIfNeeded(String processName, int uid, String seinfo,
19464            String apkFile, int pid) {
19465        if (!SecurityLog.isLoggingEnabled()) {
19466            return;
19467        }
19468        Bundle data = new Bundle();
19469        data.putLong("startTimestamp", System.currentTimeMillis());
19470        data.putString("processName", processName);
19471        data.putInt("uid", uid);
19472        data.putString("seinfo", seinfo);
19473        data.putString("apkFile", apkFile);
19474        data.putInt("pid", pid);
19475        Message msg = mProcessLoggingHandler.obtainMessage(
19476                ProcessLoggingHandler.LOG_APP_PROCESS_START_MSG);
19477        msg.setData(data);
19478        mProcessLoggingHandler.sendMessage(msg);
19479    }
19480}
19481