PackageManagerService.java revision d04aaa323c3a788d26f18fc66e0a59b47e525b38
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_FACTORY_ONLY;
68import static android.content.pm.PackageManager.MATCH_SYSTEM_ONLY;
69import static android.content.pm.PackageManager.MATCH_UNINSTALLED_PACKAGES;
70import static android.content.pm.PackageManager.MOVE_FAILED_DEVICE_ADMIN;
71import static android.content.pm.PackageManager.MOVE_FAILED_DOESNT_EXIST;
72import static android.content.pm.PackageManager.MOVE_FAILED_INTERNAL_ERROR;
73import static android.content.pm.PackageManager.MOVE_FAILED_OPERATION_PENDING;
74import static android.content.pm.PackageManager.MOVE_FAILED_SYSTEM_PACKAGE;
75import static android.content.pm.PackageManager.PERMISSION_DENIED;
76import static android.content.pm.PackageManager.PERMISSION_GRANTED;
77import static android.content.pm.PackageParser.PARSE_IS_PRIVILEGED;
78import static android.content.pm.PackageParser.isApkFile;
79import static android.os.Process.PACKAGE_INFO_GID;
80import static android.os.Process.SYSTEM_UID;
81import static android.os.Trace.TRACE_TAG_PACKAGE_MANAGER;
82import static android.system.OsConstants.O_CREAT;
83import static android.system.OsConstants.O_RDWR;
84
85import static com.android.internal.app.IntentForwarderActivity.FORWARD_INTENT_TO_MANAGED_PROFILE;
86import static com.android.internal.app.IntentForwarderActivity.FORWARD_INTENT_TO_PARENT;
87import static com.android.internal.content.NativeLibraryHelper.LIB64_DIR_NAME;
88import static com.android.internal.content.NativeLibraryHelper.LIB_DIR_NAME;
89import static com.android.internal.util.ArrayUtils.appendInt;
90import static com.android.server.pm.Installer.DEXOPT_PUBLIC;
91import static com.android.server.pm.InstructionSets.getAppDexInstructionSets;
92import static com.android.server.pm.InstructionSets.getDexCodeInstructionSet;
93import static com.android.server.pm.InstructionSets.getDexCodeInstructionSets;
94import static com.android.server.pm.InstructionSets.getPreferredInstructionSet;
95import static com.android.server.pm.InstructionSets.getPrimaryInstructionSet;
96import static com.android.server.pm.PackageManagerServiceCompilerMapping.getCompilerFilterForReason;
97import static com.android.server.pm.PackageManagerServiceCompilerMapping.getFullCompilerFilter;
98import static com.android.server.pm.PermissionsState.PERMISSION_OPERATION_FAILURE;
99import static com.android.server.pm.PermissionsState.PERMISSION_OPERATION_SUCCESS;
100import static com.android.server.pm.PermissionsState.PERMISSION_OPERATION_SUCCESS_GIDS_CHANGED;
101
102import android.Manifest;
103import android.annotation.NonNull;
104import android.annotation.Nullable;
105import android.annotation.UserIdInt;
106import android.app.ActivityManager;
107import android.app.ActivityManagerNative;
108import android.app.IActivityManager;
109import android.app.ResourcesManager;
110import android.app.admin.IDevicePolicyManager;
111import android.app.admin.SecurityLog;
112import android.app.backup.IBackupManager;
113import android.content.BroadcastReceiver;
114import android.content.ComponentName;
115import android.content.Context;
116import android.content.IIntentReceiver;
117import android.content.Intent;
118import android.content.IntentFilter;
119import android.content.IntentSender;
120import android.content.IntentSender.SendIntentException;
121import android.content.ServiceConnection;
122import android.content.pm.ActivityInfo;
123import android.content.pm.ApplicationInfo;
124import android.content.pm.AppsQueryHelper;
125import android.content.pm.ComponentInfo;
126import android.content.pm.EphemeralApplicationInfo;
127import android.content.pm.EphemeralResolveInfo;
128import android.content.pm.EphemeralResolveInfo.EphemeralResolveIntentInfo;
129import android.content.pm.FeatureInfo;
130import android.content.pm.IOnPermissionsChangeListener;
131import android.content.pm.IPackageDataObserver;
132import android.content.pm.IPackageDeleteObserver;
133import android.content.pm.IPackageDeleteObserver2;
134import android.content.pm.IPackageInstallObserver2;
135import android.content.pm.IPackageInstaller;
136import android.content.pm.IPackageManager;
137import android.content.pm.IPackageMoveObserver;
138import android.content.pm.IPackageStatsObserver;
139import android.content.pm.InstrumentationInfo;
140import android.content.pm.IntentFilterVerificationInfo;
141import android.content.pm.KeySet;
142import android.content.pm.PackageCleanItem;
143import android.content.pm.PackageInfo;
144import android.content.pm.PackageInfoLite;
145import android.content.pm.PackageInstaller;
146import android.content.pm.PackageManager;
147import android.content.pm.PackageManager.LegacyPackageDeleteObserver;
148import android.content.pm.PackageManagerInternal;
149import android.content.pm.PackageParser;
150import android.content.pm.PackageParser.ActivityIntentInfo;
151import android.content.pm.PackageParser.PackageLite;
152import android.content.pm.PackageParser.PackageParserException;
153import android.content.pm.PackageStats;
154import android.content.pm.PackageUserState;
155import android.content.pm.ParceledListSlice;
156import android.content.pm.PermissionGroupInfo;
157import android.content.pm.PermissionInfo;
158import android.content.pm.ProviderInfo;
159import android.content.pm.ResolveInfo;
160import android.content.pm.ServiceInfo;
161import android.content.pm.Signature;
162import android.content.pm.UserInfo;
163import android.content.pm.VerifierDeviceIdentity;
164import android.content.pm.VerifierInfo;
165import android.content.res.Resources;
166import android.graphics.Bitmap;
167import android.hardware.display.DisplayManager;
168import android.net.Uri;
169import android.os.Binder;
170import android.os.Build;
171import android.os.Bundle;
172import android.os.Debug;
173import android.os.Environment;
174import android.os.Environment.UserEnvironment;
175import android.os.FileUtils;
176import android.os.Handler;
177import android.os.IBinder;
178import android.os.Looper;
179import android.os.Message;
180import android.os.Parcel;
181import android.os.ParcelFileDescriptor;
182import android.os.Process;
183import android.os.RemoteCallbackList;
184import android.os.RemoteException;
185import android.os.ResultReceiver;
186import android.os.SELinux;
187import android.os.ServiceManager;
188import android.os.SystemClock;
189import android.os.SystemProperties;
190import android.os.Trace;
191import android.os.UserHandle;
192import android.os.UserManager;
193import android.os.UserManagerInternal;
194import android.os.storage.IMountService;
195import android.os.storage.MountServiceInternal;
196import android.os.storage.StorageEventListener;
197import android.os.storage.StorageManager;
198import android.os.storage.VolumeInfo;
199import android.os.storage.VolumeRecord;
200import android.security.KeyStore;
201import android.security.SystemKeyStore;
202import android.system.ErrnoException;
203import android.system.Os;
204import android.text.TextUtils;
205import android.text.format.DateUtils;
206import android.util.ArrayMap;
207import android.util.ArraySet;
208import android.util.AtomicFile;
209import android.util.DisplayMetrics;
210import android.util.EventLog;
211import android.util.ExceptionUtils;
212import android.util.Log;
213import android.util.LogPrinter;
214import android.util.MathUtils;
215import android.util.PrintStreamPrinter;
216import android.util.Slog;
217import android.util.SparseArray;
218import android.util.SparseBooleanArray;
219import android.util.SparseIntArray;
220import android.util.Xml;
221import android.util.jar.StrictJarFile;
222import android.view.Display;
223
224import com.android.internal.R;
225import com.android.internal.annotations.GuardedBy;
226import com.android.internal.app.IMediaContainerService;
227import com.android.internal.app.ResolverActivity;
228import com.android.internal.content.NativeLibraryHelper;
229import com.android.internal.content.PackageHelper;
230import com.android.internal.logging.MetricsLogger;
231import com.android.internal.os.IParcelFileDescriptorFactory;
232import com.android.internal.os.InstallerConnection.InstallerException;
233import com.android.internal.os.SomeArgs;
234import com.android.internal.os.Zygote;
235import com.android.internal.telephony.CarrierAppUtils;
236import com.android.internal.util.ArrayUtils;
237import com.android.internal.util.FastPrintWriter;
238import com.android.internal.util.FastXmlSerializer;
239import com.android.internal.util.IndentingPrintWriter;
240import com.android.internal.util.Preconditions;
241import com.android.internal.util.XmlUtils;
242import com.android.server.AttributeCache;
243import com.android.server.EventLogTags;
244import com.android.server.FgThread;
245import com.android.server.IntentResolver;
246import com.android.server.LocalServices;
247import com.android.server.ServiceThread;
248import com.android.server.SystemConfig;
249import com.android.server.Watchdog;
250import com.android.server.net.NetworkPolicyManagerInternal;
251import com.android.server.pm.PermissionsState.PermissionState;
252import com.android.server.pm.Settings.DatabaseVersion;
253import com.android.server.pm.Settings.VersionInfo;
254import com.android.server.storage.DeviceStorageMonitorInternal;
255
256import dalvik.system.CloseGuard;
257import dalvik.system.DexFile;
258import dalvik.system.VMRuntime;
259
260import libcore.io.IoUtils;
261import libcore.util.EmptyArray;
262
263import org.xmlpull.v1.XmlPullParser;
264import org.xmlpull.v1.XmlPullParserException;
265import org.xmlpull.v1.XmlSerializer;
266
267import java.io.BufferedInputStream;
268import java.io.BufferedOutputStream;
269import java.io.BufferedReader;
270import java.io.ByteArrayInputStream;
271import java.io.ByteArrayOutputStream;
272import java.io.File;
273import java.io.FileDescriptor;
274import java.io.FileInputStream;
275import java.io.FileNotFoundException;
276import java.io.FileOutputStream;
277import java.io.FileReader;
278import java.io.FilenameFilter;
279import java.io.IOException;
280import java.io.InputStream;
281import java.io.PrintWriter;
282import java.nio.charset.StandardCharsets;
283import java.security.DigestInputStream;
284import java.security.MessageDigest;
285import java.security.NoSuchAlgorithmException;
286import java.security.PublicKey;
287import java.security.cert.Certificate;
288import java.security.cert.CertificateEncodingException;
289import java.security.cert.CertificateException;
290import java.text.SimpleDateFormat;
291import java.util.ArrayList;
292import java.util.Arrays;
293import java.util.Collection;
294import java.util.Collections;
295import java.util.Comparator;
296import java.util.Date;
297import java.util.HashSet;
298import java.util.Iterator;
299import java.util.List;
300import java.util.Map;
301import java.util.Objects;
302import java.util.Set;
303import java.util.concurrent.CountDownLatch;
304import java.util.concurrent.TimeUnit;
305import java.util.concurrent.atomic.AtomicBoolean;
306import java.util.concurrent.atomic.AtomicInteger;
307import java.util.concurrent.atomic.AtomicLong;
308
309/**
310 * Keep track of all those APKs everywhere.
311 * <p>
312 * Internally there are two important locks:
313 * <ul>
314 * <li>{@link #mPackages} is used to guard all in-memory parsed package details
315 * and other related state. It is a fine-grained lock that should only be held
316 * momentarily, as it's one of the most contended locks in the system.
317 * <li>{@link #mInstallLock} is used to guard all {@code installd} access, whose
318 * operations typically involve heavy lifting of application data on disk. Since
319 * {@code installd} is single-threaded, and it's operations can often be slow,
320 * this lock should never be acquired while already holding {@link #mPackages}.
321 * Conversely, it's safe to acquire {@link #mPackages} momentarily while already
322 * holding {@link #mInstallLock}.
323 * </ul>
324 * Many internal methods rely on the caller to hold the appropriate locks, and
325 * this contract is expressed through method name suffixes:
326 * <ul>
327 * <li>fooLI(): the caller must hold {@link #mInstallLock}
328 * <li>fooLIF(): the caller must hold {@link #mInstallLock} and the package
329 * being modified must be frozen
330 * <li>fooLPr(): the caller must hold {@link #mPackages} for reading
331 * <li>fooLPw(): the caller must hold {@link #mPackages} for writing
332 * </ul>
333 * <p>
334 * Because this class is very central to the platform's security; please run all
335 * CTS and unit tests whenever making modifications:
336 *
337 * <pre>
338 * $ runtest -c android.content.pm.PackageManagerTests frameworks-core
339 * $ cts-tradefed run commandAndExit cts -m AppSecurityTests
340 * </pre>
341 */
342public class PackageManagerService extends IPackageManager.Stub {
343    static final String TAG = "PackageManager";
344    static final boolean DEBUG_SETTINGS = false;
345    static final boolean DEBUG_PREFERRED = false;
346    static final boolean DEBUG_UPGRADE = false;
347    static final boolean DEBUG_DOMAIN_VERIFICATION = false;
348    private static final boolean DEBUG_BACKUP = false;
349    private static final boolean DEBUG_INSTALL = false;
350    private static final boolean DEBUG_REMOVE = false;
351    private static final boolean DEBUG_BROADCASTS = false;
352    private static final boolean DEBUG_SHOW_INFO = false;
353    private static final boolean DEBUG_PACKAGE_INFO = false;
354    private static final boolean DEBUG_INTENT_MATCHING = false;
355    private static final boolean DEBUG_PACKAGE_SCANNING = false;
356    private static final boolean DEBUG_VERIFY = false;
357    private static final boolean DEBUG_FILTERS = false;
358
359    // Debug output for dexopting. This is shared between PackageManagerService, OtaDexoptService
360    // and PackageDexOptimizer. All these classes have their own flag to allow switching a single
361    // user, but by default initialize to this.
362    static final boolean DEBUG_DEXOPT = false;
363
364    private static final boolean DEBUG_ABI_SELECTION = false;
365    private static final boolean DEBUG_EPHEMERAL = false;
366    private static final boolean DEBUG_TRIAGED_MISSING = false;
367    private static final boolean DEBUG_APP_DATA = false;
368
369    static final boolean CLEAR_RUNTIME_PERMISSIONS_ON_UPGRADE = false;
370
371    private static final boolean DISABLE_EPHEMERAL_APPS = true;
372
373    private static final int RADIO_UID = Process.PHONE_UID;
374    private static final int LOG_UID = Process.LOG_UID;
375    private static final int NFC_UID = Process.NFC_UID;
376    private static final int BLUETOOTH_UID = Process.BLUETOOTH_UID;
377    private static final int SHELL_UID = Process.SHELL_UID;
378
379    // Cap the size of permission trees that 3rd party apps can define
380    private static final int MAX_PERMISSION_TREE_FOOTPRINT = 32768;     // characters of text
381
382    // Suffix used during package installation when copying/moving
383    // package apks to install directory.
384    private static final String INSTALL_PACKAGE_SUFFIX = "-";
385
386    static final int SCAN_NO_DEX = 1<<1;
387    static final int SCAN_FORCE_DEX = 1<<2;
388    static final int SCAN_UPDATE_SIGNATURE = 1<<3;
389    static final int SCAN_NEW_INSTALL = 1<<4;
390    static final int SCAN_NO_PATHS = 1<<5;
391    static final int SCAN_UPDATE_TIME = 1<<6;
392    static final int SCAN_DEFER_DEX = 1<<7;
393    static final int SCAN_BOOTING = 1<<8;
394    static final int SCAN_TRUSTED_OVERLAY = 1<<9;
395    static final int SCAN_DELETE_DATA_ON_FAILURES = 1<<10;
396    static final int SCAN_REPLACING = 1<<11;
397    static final int SCAN_REQUIRE_KNOWN = 1<<12;
398    static final int SCAN_MOVE = 1<<13;
399    static final int SCAN_INITIAL = 1<<14;
400    static final int SCAN_CHECK_ONLY = 1<<15;
401    static final int SCAN_DONT_KILL_APP = 1<<17;
402    static final int SCAN_IGNORE_FROZEN = 1<<18;
403
404    static final int REMOVE_CHATTY = 1<<16;
405
406    private static final int[] EMPTY_INT_ARRAY = new int[0];
407
408    /**
409     * Timeout (in milliseconds) after which the watchdog should declare that
410     * our handler thread is wedged.  The usual default for such things is one
411     * minute but we sometimes do very lengthy I/O operations on this thread,
412     * such as installing multi-gigabyte applications, so ours needs to be longer.
413     */
414    private static final long WATCHDOG_TIMEOUT = 1000*60*10;     // ten minutes
415
416    /**
417     * Wall-clock timeout (in milliseconds) after which we *require* that an fstrim
418     * be run on this device.  We use the value in the Settings.Global.MANDATORY_FSTRIM_INTERVAL
419     * settings entry if available, otherwise we use the hardcoded default.  If it's been
420     * more than this long since the last fstrim, we force one during the boot sequence.
421     *
422     * This backstops other fstrim scheduling:  if the device is alive at midnight+idle,
423     * one gets run at the next available charging+idle time.  This final mandatory
424     * no-fstrim check kicks in only of the other scheduling criteria is never met.
425     */
426    private static final long DEFAULT_MANDATORY_FSTRIM_INTERVAL = 3 * DateUtils.DAY_IN_MILLIS;
427
428    /**
429     * Whether verification is enabled by default.
430     */
431    private static final boolean DEFAULT_VERIFY_ENABLE = true;
432
433    /**
434     * The default maximum time to wait for the verification agent to return in
435     * milliseconds.
436     */
437    private static final long DEFAULT_VERIFICATION_TIMEOUT = 10 * 1000;
438
439    /**
440     * The default response for package verification timeout.
441     *
442     * This can be either PackageManager.VERIFICATION_ALLOW or
443     * PackageManager.VERIFICATION_REJECT.
444     */
445    private static final int DEFAULT_VERIFICATION_RESPONSE = PackageManager.VERIFICATION_ALLOW;
446
447    static final String PLATFORM_PACKAGE_NAME = "android";
448
449    static final String DEFAULT_CONTAINER_PACKAGE = "com.android.defcontainer";
450
451    static final ComponentName DEFAULT_CONTAINER_COMPONENT = new ComponentName(
452            DEFAULT_CONTAINER_PACKAGE,
453            "com.android.defcontainer.DefaultContainerService");
454
455    private static final String KILL_APP_REASON_GIDS_CHANGED =
456            "permission grant or revoke changed gids";
457
458    private static final String KILL_APP_REASON_PERMISSIONS_REVOKED =
459            "permissions revoked";
460
461    private static final String PACKAGE_MIME_TYPE = "application/vnd.android.package-archive";
462
463    private static final String VENDOR_OVERLAY_DIR = "/vendor/overlay";
464
465    /** Permission grant: not grant the permission. */
466    private static final int GRANT_DENIED = 1;
467
468    /** Permission grant: grant the permission as an install permission. */
469    private static final int GRANT_INSTALL = 2;
470
471    /** Permission grant: grant the permission as a runtime one. */
472    private static final int GRANT_RUNTIME = 3;
473
474    /** Permission grant: grant as runtime a permission that was granted as an install time one. */
475    private static final int GRANT_UPGRADE = 4;
476
477    /** Canonical intent used to identify what counts as a "web browser" app */
478    private static final Intent sBrowserIntent;
479    static {
480        sBrowserIntent = new Intent();
481        sBrowserIntent.setAction(Intent.ACTION_VIEW);
482        sBrowserIntent.addCategory(Intent.CATEGORY_BROWSABLE);
483        sBrowserIntent.setData(Uri.parse("http:"));
484    }
485
486    /**
487     * The set of all protected actions [i.e. those actions for which a high priority
488     * intent filter is disallowed].
489     */
490    private static final Set<String> PROTECTED_ACTIONS = new ArraySet<>();
491    static {
492        PROTECTED_ACTIONS.add(Intent.ACTION_SEND);
493        PROTECTED_ACTIONS.add(Intent.ACTION_SENDTO);
494        PROTECTED_ACTIONS.add(Intent.ACTION_SEND_MULTIPLE);
495        PROTECTED_ACTIONS.add(Intent.ACTION_VIEW);
496    }
497
498    // Compilation reasons.
499    public static final int REASON_FIRST_BOOT = 0;
500    public static final int REASON_BOOT = 1;
501    public static final int REASON_INSTALL = 2;
502    public static final int REASON_BACKGROUND_DEXOPT = 3;
503    public static final int REASON_AB_OTA = 4;
504    public static final int REASON_NON_SYSTEM_LIBRARY = 5;
505    public static final int REASON_SHARED_APK = 6;
506    public static final int REASON_FORCED_DEXOPT = 7;
507    public static final int REASON_CORE_APP = 8;
508
509    public static final int REASON_LAST = REASON_CORE_APP;
510
511    /** Special library name that skips shared libraries check during compilation. */
512    private static final String SKIP_SHARED_LIBRARY_CHECK = "&";
513
514    final ServiceThread mHandlerThread;
515
516    final PackageHandler mHandler;
517
518    private final ProcessLoggingHandler mProcessLoggingHandler;
519
520    /**
521     * Messages for {@link #mHandler} that need to wait for system ready before
522     * being dispatched.
523     */
524    private ArrayList<Message> mPostSystemReadyMessages;
525
526    final int mSdkVersion = Build.VERSION.SDK_INT;
527
528    final Context mContext;
529    final boolean mFactoryTest;
530    final boolean mOnlyCore;
531    final DisplayMetrics mMetrics;
532    final int mDefParseFlags;
533    final String[] mSeparateProcesses;
534    final boolean mIsUpgrade;
535    final boolean mIsPreNUpgrade;
536
537    /** The location for ASEC container files on internal storage. */
538    final String mAsecInternalPath;
539
540    // Used for privilege escalation. MUST NOT BE CALLED WITH mPackages
541    // LOCK HELD.  Can be called with mInstallLock held.
542    @GuardedBy("mInstallLock")
543    final Installer mInstaller;
544
545    /** Directory where installed third-party apps stored */
546    final File mAppInstallDir;
547    final File mEphemeralInstallDir;
548
549    /**
550     * Directory to which applications installed internally have their
551     * 32 bit native libraries copied.
552     */
553    private File mAppLib32InstallDir;
554
555    // Directory containing the private parts (e.g. code and non-resource assets) of forward-locked
556    // apps.
557    final File mDrmAppPrivateInstallDir;
558
559    // ----------------------------------------------------------------
560
561    // Lock for state used when installing and doing other long running
562    // operations.  Methods that must be called with this lock held have
563    // the suffix "LI".
564    final Object mInstallLock = new Object();
565
566    // ----------------------------------------------------------------
567
568    // Keys are String (package name), values are Package.  This also serves
569    // as the lock for the global state.  Methods that must be called with
570    // this lock held have the prefix "LP".
571    @GuardedBy("mPackages")
572    final ArrayMap<String, PackageParser.Package> mPackages =
573            new ArrayMap<String, PackageParser.Package>();
574
575    final ArrayMap<String, Set<String>> mKnownCodebase =
576            new ArrayMap<String, Set<String>>();
577
578    // Tracks available target package names -> overlay package paths.
579    final ArrayMap<String, ArrayMap<String, PackageParser.Package>> mOverlays =
580        new ArrayMap<String, ArrayMap<String, PackageParser.Package>>();
581
582    /**
583     * Tracks new system packages [received in an OTA] that we expect to
584     * find updated user-installed versions. Keys are package name, values
585     * are package location.
586     */
587    final private ArrayMap<String, File> mExpectingBetter = new ArrayMap<>();
588    /**
589     * Tracks high priority intent filters for protected actions. During boot, certain
590     * filter actions are protected and should never be allowed to have a high priority
591     * intent filter for them. However, there is one, and only one exception -- the
592     * setup wizard. It must be able to define a high priority intent filter for these
593     * actions to ensure there are no escapes from the wizard. We need to delay processing
594     * of these during boot as we need to look at all of the system packages in order
595     * to know which component is the setup wizard.
596     */
597    private final List<PackageParser.ActivityIntentInfo> mProtectedFilters = new ArrayList<>();
598    /**
599     * Whether or not processing protected filters should be deferred.
600     */
601    private boolean mDeferProtectedFilters = true;
602
603    /**
604     * Tracks existing system packages prior to receiving an OTA. Keys are package name.
605     */
606    final private ArraySet<String> mExistingSystemPackages = new ArraySet<>();
607    /**
608     * Whether or not system app permissions should be promoted from install to runtime.
609     */
610    boolean mPromoteSystemApps;
611
612    @GuardedBy("mPackages")
613    final Settings mSettings;
614
615    /**
616     * Set of package names that are currently "frozen", which means active
617     * surgery is being done on the code/data for that package. The platform
618     * will refuse to launch frozen packages to avoid race conditions.
619     *
620     * @see PackageFreezer
621     */
622    @GuardedBy("mPackages")
623    final ArraySet<String> mFrozenPackages = new ArraySet<>();
624
625    final ProtectedPackages mProtectedPackages = new ProtectedPackages();
626
627    boolean mRestoredSettings;
628
629    // System configuration read by SystemConfig.
630    final int[] mGlobalGids;
631    final SparseArray<ArraySet<String>> mSystemPermissions;
632    final ArrayMap<String, FeatureInfo> mAvailableFeatures;
633
634    // If mac_permissions.xml was found for seinfo labeling.
635    boolean mFoundPolicyFile;
636
637    private final EphemeralApplicationRegistry mEphemeralApplicationRegistry;
638
639    public static final class SharedLibraryEntry {
640        public final String path;
641        public final String apk;
642
643        SharedLibraryEntry(String _path, String _apk) {
644            path = _path;
645            apk = _apk;
646        }
647    }
648
649    // Currently known shared libraries.
650    final ArrayMap<String, SharedLibraryEntry> mSharedLibraries =
651            new ArrayMap<String, SharedLibraryEntry>();
652
653    // All available activities, for your resolving pleasure.
654    final ActivityIntentResolver mActivities =
655            new ActivityIntentResolver();
656
657    // All available receivers, for your resolving pleasure.
658    final ActivityIntentResolver mReceivers =
659            new ActivityIntentResolver();
660
661    // All available services, for your resolving pleasure.
662    final ServiceIntentResolver mServices = new ServiceIntentResolver();
663
664    // All available providers, for your resolving pleasure.
665    final ProviderIntentResolver mProviders = new ProviderIntentResolver();
666
667    // Mapping from provider base names (first directory in content URI codePath)
668    // to the provider information.
669    final ArrayMap<String, PackageParser.Provider> mProvidersByAuthority =
670            new ArrayMap<String, PackageParser.Provider>();
671
672    // Mapping from instrumentation class names to info about them.
673    final ArrayMap<ComponentName, PackageParser.Instrumentation> mInstrumentation =
674            new ArrayMap<ComponentName, PackageParser.Instrumentation>();
675
676    // Mapping from permission names to info about them.
677    final ArrayMap<String, PackageParser.PermissionGroup> mPermissionGroups =
678            new ArrayMap<String, PackageParser.PermissionGroup>();
679
680    // Packages whose data we have transfered into another package, thus
681    // should no longer exist.
682    final ArraySet<String> mTransferedPackages = new ArraySet<String>();
683
684    // Broadcast actions that are only available to the system.
685    final ArraySet<String> mProtectedBroadcasts = new ArraySet<String>();
686
687    /** List of packages waiting for verification. */
688    final SparseArray<PackageVerificationState> mPendingVerification
689            = new SparseArray<PackageVerificationState>();
690
691    /** Set of packages associated with each app op permission. */
692    final ArrayMap<String, ArraySet<String>> mAppOpPermissionPackages = new ArrayMap<>();
693
694    final PackageInstallerService mInstallerService;
695
696    private final PackageDexOptimizer mPackageDexOptimizer;
697
698    private AtomicInteger mNextMoveId = new AtomicInteger();
699    private final MoveCallbacks mMoveCallbacks;
700
701    private final OnPermissionChangeListeners mOnPermissionChangeListeners;
702
703    // Cache of users who need badging.
704    SparseBooleanArray mUserNeedsBadging = new SparseBooleanArray();
705
706    /** Token for keys in mPendingVerification. */
707    private int mPendingVerificationToken = 0;
708
709    volatile boolean mSystemReady;
710    volatile boolean mSafeMode;
711    volatile boolean mHasSystemUidErrors;
712
713    ApplicationInfo mAndroidApplication;
714    final ActivityInfo mResolveActivity = new ActivityInfo();
715    final ResolveInfo mResolveInfo = new ResolveInfo();
716    ComponentName mResolveComponentName;
717    PackageParser.Package mPlatformPackage;
718    ComponentName mCustomResolverComponentName;
719
720    boolean mResolverReplaced = false;
721
722    private final @Nullable ComponentName mIntentFilterVerifierComponent;
723    private final @Nullable IntentFilterVerifier<ActivityIntentInfo> mIntentFilterVerifier;
724
725    private int mIntentFilterVerificationToken = 0;
726
727    /** Component that knows whether or not an ephemeral application exists */
728    final ComponentName mEphemeralResolverComponent;
729    /** The service connection to the ephemeral resolver */
730    final EphemeralResolverConnection mEphemeralResolverConnection;
731
732    /** Component used to install ephemeral applications */
733    final ComponentName mEphemeralInstallerComponent;
734    final ActivityInfo mEphemeralInstallerActivity = new ActivityInfo();
735    final ResolveInfo mEphemeralInstallerInfo = new ResolveInfo();
736
737    final SparseArray<IntentFilterVerificationState> mIntentFilterVerificationStates
738            = new SparseArray<IntentFilterVerificationState>();
739
740    final DefaultPermissionGrantPolicy mDefaultPermissionPolicy =
741            new DefaultPermissionGrantPolicy(this);
742
743    // List of packages names to keep cached, even if they are uninstalled for all users
744    private List<String> mKeepUninstalledPackages;
745
746    private UserManagerInternal mUserManagerInternal;
747
748    private static class IFVerificationParams {
749        PackageParser.Package pkg;
750        boolean replacing;
751        int userId;
752        int verifierUid;
753
754        public IFVerificationParams(PackageParser.Package _pkg, boolean _replacing,
755                int _userId, int _verifierUid) {
756            pkg = _pkg;
757            replacing = _replacing;
758            userId = _userId;
759            replacing = _replacing;
760            verifierUid = _verifierUid;
761        }
762    }
763
764    private interface IntentFilterVerifier<T extends IntentFilter> {
765        boolean addOneIntentFilterVerification(int verifierId, int userId, int verificationId,
766                                               T filter, String packageName);
767        void startVerifications(int userId);
768        void receiveVerificationResponse(int verificationId);
769    }
770
771    private class IntentVerifierProxy implements IntentFilterVerifier<ActivityIntentInfo> {
772        private Context mContext;
773        private ComponentName mIntentFilterVerifierComponent;
774        private ArrayList<Integer> mCurrentIntentFilterVerifications = new ArrayList<Integer>();
775
776        public IntentVerifierProxy(Context context, ComponentName verifierComponent) {
777            mContext = context;
778            mIntentFilterVerifierComponent = verifierComponent;
779        }
780
781        private String getDefaultScheme() {
782            return IntentFilter.SCHEME_HTTPS;
783        }
784
785        @Override
786        public void startVerifications(int userId) {
787            // Launch verifications requests
788            int count = mCurrentIntentFilterVerifications.size();
789            for (int n=0; n<count; n++) {
790                int verificationId = mCurrentIntentFilterVerifications.get(n);
791                final IntentFilterVerificationState ivs =
792                        mIntentFilterVerificationStates.get(verificationId);
793
794                String packageName = ivs.getPackageName();
795
796                ArrayList<PackageParser.ActivityIntentInfo> filters = ivs.getFilters();
797                final int filterCount = filters.size();
798                ArraySet<String> domainsSet = new ArraySet<>();
799                for (int m=0; m<filterCount; m++) {
800                    PackageParser.ActivityIntentInfo filter = filters.get(m);
801                    domainsSet.addAll(filter.getHostsList());
802                }
803                ArrayList<String> domainsList = new ArrayList<>(domainsSet);
804                synchronized (mPackages) {
805                    if (mSettings.createIntentFilterVerificationIfNeededLPw(
806                            packageName, domainsList) != null) {
807                        scheduleWriteSettingsLocked();
808                    }
809                }
810                sendVerificationRequest(userId, verificationId, ivs);
811            }
812            mCurrentIntentFilterVerifications.clear();
813        }
814
815        private void sendVerificationRequest(int userId, int verificationId,
816                IntentFilterVerificationState ivs) {
817
818            Intent verificationIntent = new Intent(Intent.ACTION_INTENT_FILTER_NEEDS_VERIFICATION);
819            verificationIntent.putExtra(
820                    PackageManager.EXTRA_INTENT_FILTER_VERIFICATION_ID,
821                    verificationId);
822            verificationIntent.putExtra(
823                    PackageManager.EXTRA_INTENT_FILTER_VERIFICATION_URI_SCHEME,
824                    getDefaultScheme());
825            verificationIntent.putExtra(
826                    PackageManager.EXTRA_INTENT_FILTER_VERIFICATION_HOSTS,
827                    ivs.getHostsString());
828            verificationIntent.putExtra(
829                    PackageManager.EXTRA_INTENT_FILTER_VERIFICATION_PACKAGE_NAME,
830                    ivs.getPackageName());
831            verificationIntent.setComponent(mIntentFilterVerifierComponent);
832            verificationIntent.addFlags(Intent.FLAG_RECEIVER_FOREGROUND);
833
834            UserHandle user = new UserHandle(userId);
835            mContext.sendBroadcastAsUser(verificationIntent, user);
836            if (DEBUG_DOMAIN_VERIFICATION) Slog.d(TAG,
837                    "Sending IntentFilter verification broadcast");
838        }
839
840        public void receiveVerificationResponse(int verificationId) {
841            IntentFilterVerificationState ivs = mIntentFilterVerificationStates.get(verificationId);
842
843            final boolean verified = ivs.isVerified();
844
845            ArrayList<PackageParser.ActivityIntentInfo> filters = ivs.getFilters();
846            final int count = filters.size();
847            if (DEBUG_DOMAIN_VERIFICATION) {
848                Slog.i(TAG, "Received verification response " + verificationId
849                        + " for " + count + " filters, verified=" + verified);
850            }
851            for (int n=0; n<count; n++) {
852                PackageParser.ActivityIntentInfo filter = filters.get(n);
853                filter.setVerified(verified);
854
855                if (DEBUG_DOMAIN_VERIFICATION) Slog.d(TAG, "IntentFilter " + filter.toString()
856                        + " verified with result:" + verified + " and hosts:"
857                        + ivs.getHostsString());
858            }
859
860            mIntentFilterVerificationStates.remove(verificationId);
861
862            final String packageName = ivs.getPackageName();
863            IntentFilterVerificationInfo ivi = null;
864
865            synchronized (mPackages) {
866                ivi = mSettings.getIntentFilterVerificationLPr(packageName);
867            }
868            if (ivi == null) {
869                Slog.w(TAG, "IntentFilterVerificationInfo not found for verificationId:"
870                        + verificationId + " packageName:" + packageName);
871                return;
872            }
873            if (DEBUG_DOMAIN_VERIFICATION) Slog.d(TAG,
874                    "Updating IntentFilterVerificationInfo for package " + packageName
875                            +" verificationId:" + verificationId);
876
877            synchronized (mPackages) {
878                if (verified) {
879                    ivi.setStatus(INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_ALWAYS);
880                } else {
881                    ivi.setStatus(INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_ASK);
882                }
883                scheduleWriteSettingsLocked();
884
885                final int userId = ivs.getUserId();
886                if (userId != UserHandle.USER_ALL) {
887                    final int userStatus =
888                            mSettings.getIntentFilterVerificationStatusLPr(packageName, userId);
889
890                    int updatedStatus = INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_UNDEFINED;
891                    boolean needUpdate = false;
892
893                    // We cannot override the STATUS_ALWAYS / STATUS_NEVER states if they have
894                    // already been set by the User thru the Disambiguation dialog
895                    switch (userStatus) {
896                        case INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_UNDEFINED:
897                            if (verified) {
898                                updatedStatus = INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_ALWAYS;
899                            } else {
900                                updatedStatus = INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_ASK;
901                            }
902                            needUpdate = true;
903                            break;
904
905                        case INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_ASK:
906                            if (verified) {
907                                updatedStatus = INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_ALWAYS;
908                                needUpdate = true;
909                            }
910                            break;
911
912                        default:
913                            // Nothing to do
914                    }
915
916                    if (needUpdate) {
917                        mSettings.updateIntentFilterVerificationStatusLPw(
918                                packageName, updatedStatus, userId);
919                        scheduleWritePackageRestrictionsLocked(userId);
920                    }
921                }
922            }
923        }
924
925        @Override
926        public boolean addOneIntentFilterVerification(int verifierUid, int userId, int verificationId,
927                    ActivityIntentInfo filter, String packageName) {
928            if (!hasValidDomains(filter)) {
929                return false;
930            }
931            IntentFilterVerificationState ivs = mIntentFilterVerificationStates.get(verificationId);
932            if (ivs == null) {
933                ivs = createDomainVerificationState(verifierUid, userId, verificationId,
934                        packageName);
935            }
936            if (DEBUG_DOMAIN_VERIFICATION) {
937                Slog.d(TAG, "Adding verification filter for " + packageName + ": " + filter);
938            }
939            ivs.addFilter(filter);
940            return true;
941        }
942
943        private IntentFilterVerificationState createDomainVerificationState(int verifierUid,
944                int userId, int verificationId, String packageName) {
945            IntentFilterVerificationState ivs = new IntentFilterVerificationState(
946                    verifierUid, userId, packageName);
947            ivs.setPendingState();
948            synchronized (mPackages) {
949                mIntentFilterVerificationStates.append(verificationId, ivs);
950                mCurrentIntentFilterVerifications.add(verificationId);
951            }
952            return ivs;
953        }
954    }
955
956    private static boolean hasValidDomains(ActivityIntentInfo filter) {
957        return filter.hasCategory(Intent.CATEGORY_BROWSABLE)
958                && (filter.hasDataScheme(IntentFilter.SCHEME_HTTP) ||
959                        filter.hasDataScheme(IntentFilter.SCHEME_HTTPS));
960    }
961
962    // Set of pending broadcasts for aggregating enable/disable of components.
963    static class PendingPackageBroadcasts {
964        // for each user id, a map of <package name -> components within that package>
965        final SparseArray<ArrayMap<String, ArrayList<String>>> mUidMap;
966
967        public PendingPackageBroadcasts() {
968            mUidMap = new SparseArray<ArrayMap<String, ArrayList<String>>>(2);
969        }
970
971        public ArrayList<String> get(int userId, String packageName) {
972            ArrayMap<String, ArrayList<String>> packages = getOrAllocate(userId);
973            return packages.get(packageName);
974        }
975
976        public void put(int userId, String packageName, ArrayList<String> components) {
977            ArrayMap<String, ArrayList<String>> packages = getOrAllocate(userId);
978            packages.put(packageName, components);
979        }
980
981        public void remove(int userId, String packageName) {
982            ArrayMap<String, ArrayList<String>> packages = mUidMap.get(userId);
983            if (packages != null) {
984                packages.remove(packageName);
985            }
986        }
987
988        public void remove(int userId) {
989            mUidMap.remove(userId);
990        }
991
992        public int userIdCount() {
993            return mUidMap.size();
994        }
995
996        public int userIdAt(int n) {
997            return mUidMap.keyAt(n);
998        }
999
1000        public ArrayMap<String, ArrayList<String>> packagesForUserId(int userId) {
1001            return mUidMap.get(userId);
1002        }
1003
1004        public int size() {
1005            // total number of pending broadcast entries across all userIds
1006            int num = 0;
1007            for (int i = 0; i< mUidMap.size(); i++) {
1008                num += mUidMap.valueAt(i).size();
1009            }
1010            return num;
1011        }
1012
1013        public void clear() {
1014            mUidMap.clear();
1015        }
1016
1017        private ArrayMap<String, ArrayList<String>> getOrAllocate(int userId) {
1018            ArrayMap<String, ArrayList<String>> map = mUidMap.get(userId);
1019            if (map == null) {
1020                map = new ArrayMap<String, ArrayList<String>>();
1021                mUidMap.put(userId, map);
1022            }
1023            return map;
1024        }
1025    }
1026    final PendingPackageBroadcasts mPendingBroadcasts = new PendingPackageBroadcasts();
1027
1028    // Service Connection to remote media container service to copy
1029    // package uri's from external media onto secure containers
1030    // or internal storage.
1031    private IMediaContainerService mContainerService = null;
1032
1033    static final int SEND_PENDING_BROADCAST = 1;
1034    static final int MCS_BOUND = 3;
1035    static final int END_COPY = 4;
1036    static final int INIT_COPY = 5;
1037    static final int MCS_UNBIND = 6;
1038    static final int START_CLEANING_PACKAGE = 7;
1039    static final int FIND_INSTALL_LOC = 8;
1040    static final int POST_INSTALL = 9;
1041    static final int MCS_RECONNECT = 10;
1042    static final int MCS_GIVE_UP = 11;
1043    static final int UPDATED_MEDIA_STATUS = 12;
1044    static final int WRITE_SETTINGS = 13;
1045    static final int WRITE_PACKAGE_RESTRICTIONS = 14;
1046    static final int PACKAGE_VERIFIED = 15;
1047    static final int CHECK_PENDING_VERIFICATION = 16;
1048    static final int START_INTENT_FILTER_VERIFICATIONS = 17;
1049    static final int INTENT_FILTER_VERIFIED = 18;
1050    static final int WRITE_PACKAGE_LIST = 19;
1051
1052    static final int WRITE_SETTINGS_DELAY = 10*1000;  // 10 seconds
1053
1054    // Delay time in millisecs
1055    static final int BROADCAST_DELAY = 10 * 1000;
1056
1057    static UserManagerService sUserManager;
1058
1059    // Stores a list of users whose package restrictions file needs to be updated
1060    private ArraySet<Integer> mDirtyUsers = new ArraySet<Integer>();
1061
1062    final private DefaultContainerConnection mDefContainerConn =
1063            new DefaultContainerConnection();
1064    class DefaultContainerConnection implements ServiceConnection {
1065        public void onServiceConnected(ComponentName name, IBinder service) {
1066            if (DEBUG_SD_INSTALL) Log.i(TAG, "onServiceConnected");
1067            IMediaContainerService imcs =
1068                IMediaContainerService.Stub.asInterface(service);
1069            mHandler.sendMessage(mHandler.obtainMessage(MCS_BOUND, imcs));
1070        }
1071
1072        public void onServiceDisconnected(ComponentName name) {
1073            if (DEBUG_SD_INSTALL) Log.i(TAG, "onServiceDisconnected");
1074        }
1075    }
1076
1077    // Recordkeeping of restore-after-install operations that are currently in flight
1078    // between the Package Manager and the Backup Manager
1079    static class PostInstallData {
1080        public InstallArgs args;
1081        public PackageInstalledInfo res;
1082
1083        PostInstallData(InstallArgs _a, PackageInstalledInfo _r) {
1084            args = _a;
1085            res = _r;
1086        }
1087    }
1088
1089    final SparseArray<PostInstallData> mRunningInstalls = new SparseArray<PostInstallData>();
1090    int mNextInstallToken = 1;  // nonzero; will be wrapped back to 1 when ++ overflows
1091
1092    // XML tags for backup/restore of various bits of state
1093    private static final String TAG_PREFERRED_BACKUP = "pa";
1094    private static final String TAG_DEFAULT_APPS = "da";
1095    private static final String TAG_INTENT_FILTER_VERIFICATION = "iv";
1096
1097    private static final String TAG_PERMISSION_BACKUP = "perm-grant-backup";
1098    private static final String TAG_ALL_GRANTS = "rt-grants";
1099    private static final String TAG_GRANT = "grant";
1100    private static final String ATTR_PACKAGE_NAME = "pkg";
1101
1102    private static final String TAG_PERMISSION = "perm";
1103    private static final String ATTR_PERMISSION_NAME = "name";
1104    private static final String ATTR_IS_GRANTED = "g";
1105    private static final String ATTR_USER_SET = "set";
1106    private static final String ATTR_USER_FIXED = "fixed";
1107    private static final String ATTR_REVOKE_ON_UPGRADE = "rou";
1108
1109    // System/policy permission grants are not backed up
1110    private static final int SYSTEM_RUNTIME_GRANT_MASK =
1111            FLAG_PERMISSION_POLICY_FIXED
1112            | FLAG_PERMISSION_SYSTEM_FIXED
1113            | FLAG_PERMISSION_GRANTED_BY_DEFAULT;
1114
1115    // And we back up these user-adjusted states
1116    private static final int USER_RUNTIME_GRANT_MASK =
1117            FLAG_PERMISSION_USER_SET
1118            | FLAG_PERMISSION_USER_FIXED
1119            | FLAG_PERMISSION_REVOKE_ON_UPGRADE;
1120
1121    final @Nullable String mRequiredVerifierPackage;
1122    final @NonNull String mRequiredInstallerPackage;
1123    final @Nullable String mSetupWizardPackage;
1124    final @NonNull String mServicesSystemSharedLibraryPackageName;
1125    final @NonNull String mSharedSystemSharedLibraryPackageName;
1126
1127    private final PackageUsage mPackageUsage = new PackageUsage();
1128
1129    private class PackageUsage {
1130        private static final int WRITE_INTERVAL
1131            = (DEBUG_DEXOPT) ? 0 : 30*60*1000; // 30m in ms
1132
1133        private final Object mFileLock = new Object();
1134        private final AtomicLong mLastWritten = new AtomicLong(0);
1135        private final AtomicBoolean mBackgroundWriteRunning = new AtomicBoolean(false);
1136
1137        private boolean mIsHistoricalPackageUsageAvailable = true;
1138
1139        boolean isHistoricalPackageUsageAvailable() {
1140            return mIsHistoricalPackageUsageAvailable;
1141        }
1142
1143        void write(boolean force) {
1144            if (force) {
1145                writeInternal();
1146                return;
1147            }
1148            if (SystemClock.elapsedRealtime() - mLastWritten.get() < WRITE_INTERVAL
1149                && !DEBUG_DEXOPT) {
1150                return;
1151            }
1152            if (mBackgroundWriteRunning.compareAndSet(false, true)) {
1153                new Thread("PackageUsage_DiskWriter") {
1154                    @Override
1155                    public void run() {
1156                        try {
1157                            writeInternal();
1158                        } finally {
1159                            mBackgroundWriteRunning.set(false);
1160                        }
1161                    }
1162                }.start();
1163            }
1164        }
1165
1166        private void writeInternal() {
1167            synchronized (mPackages) {
1168                synchronized (mFileLock) {
1169                    AtomicFile file = getFile();
1170                    FileOutputStream f = null;
1171                    try {
1172                        f = file.startWrite();
1173                        BufferedOutputStream out = new BufferedOutputStream(f);
1174                        FileUtils.setPermissions(file.getBaseFile().getPath(),
1175                                0640, SYSTEM_UID, PACKAGE_INFO_GID);
1176                        StringBuilder sb = new StringBuilder();
1177
1178                        sb.append(USAGE_FILE_MAGIC_VERSION_1);
1179                        sb.append('\n');
1180                        out.write(sb.toString().getBytes(StandardCharsets.US_ASCII));
1181
1182                        for (PackageParser.Package pkg : mPackages.values()) {
1183                            if (pkg.getLatestPackageUseTimeInMills() == 0L) {
1184                                continue;
1185                            }
1186                            sb.setLength(0);
1187                            sb.append(pkg.packageName);
1188                            for (long usageTimeInMillis : pkg.mLastPackageUsageTimeInMills) {
1189                                sb.append(' ');
1190                                sb.append(usageTimeInMillis);
1191                            }
1192                            sb.append('\n');
1193                            out.write(sb.toString().getBytes(StandardCharsets.US_ASCII));
1194                        }
1195                        out.flush();
1196                        file.finishWrite(f);
1197                    } catch (IOException e) {
1198                        if (f != null) {
1199                            file.failWrite(f);
1200                        }
1201                        Log.e(TAG, "Failed to write package usage times", e);
1202                    }
1203                }
1204            }
1205            mLastWritten.set(SystemClock.elapsedRealtime());
1206        }
1207
1208        void readLP() {
1209            synchronized (mFileLock) {
1210                AtomicFile file = getFile();
1211                BufferedInputStream in = null;
1212                try {
1213                    in = new BufferedInputStream(file.openRead());
1214                    StringBuffer sb = new StringBuffer();
1215
1216                    String firstLine = readLine(in, sb);
1217                    if (firstLine.equals(USAGE_FILE_MAGIC_VERSION_1)) {
1218                        readVersion1LP(in, sb);
1219                    } else {
1220                        readVersion0LP(in, sb, firstLine);
1221                    }
1222                } catch (FileNotFoundException expected) {
1223                    mIsHistoricalPackageUsageAvailable = false;
1224                } catch (IOException e) {
1225                    Log.w(TAG, "Failed to read package usage times", e);
1226                } finally {
1227                    IoUtils.closeQuietly(in);
1228                }
1229            }
1230            mLastWritten.set(SystemClock.elapsedRealtime());
1231        }
1232
1233        private void readVersion0LP(InputStream in, StringBuffer sb, String firstLine)
1234                throws IOException {
1235            // Initial version of the file had no version number and stored one
1236            // package-timestamp pair per line.
1237            // Note that the first line has already been read from the InputStream.
1238            for (String line = firstLine; line != null; line = readLine(in, sb)) {
1239                String[] tokens = line.split(" ");
1240                if (tokens.length != 2) {
1241                    throw new IOException("Failed to parse " + line +
1242                            " as package-timestamp pair.");
1243                }
1244
1245                String packageName = tokens[0];
1246                PackageParser.Package pkg = mPackages.get(packageName);
1247                if (pkg == null) {
1248                    continue;
1249                }
1250
1251                long timestamp = parseAsLong(tokens[1]);
1252                for (int reason = 0;
1253                        reason < PackageManager.NOTIFY_PACKAGE_USE_REASONS_COUNT;
1254                        reason++) {
1255                    pkg.mLastPackageUsageTimeInMills[reason] = timestamp;
1256                }
1257            }
1258        }
1259
1260        private void readVersion1LP(InputStream in, StringBuffer sb) throws IOException {
1261            // Version 1 of the file started with the corresponding version
1262            // number and then stored a package name and eight timestamps per line.
1263            String line;
1264            while ((line = readLine(in, sb)) != null) {
1265                String[] tokens = line.split(" ");
1266                if (tokens.length != PackageManager.NOTIFY_PACKAGE_USE_REASONS_COUNT + 1) {
1267                    throw new IOException("Failed to parse " + line + " as a timestamp array.");
1268                }
1269
1270                String packageName = tokens[0];
1271                PackageParser.Package pkg = mPackages.get(packageName);
1272                if (pkg == null) {
1273                    continue;
1274                }
1275
1276                for (int reason = 0;
1277                        reason < PackageManager.NOTIFY_PACKAGE_USE_REASONS_COUNT;
1278                        reason++) {
1279                    pkg.mLastPackageUsageTimeInMills[reason] = parseAsLong(tokens[reason + 1]);
1280                }
1281            }
1282        }
1283
1284        private long parseAsLong(String token) throws IOException {
1285            try {
1286                return Long.parseLong(token);
1287            } catch (NumberFormatException e) {
1288                throw new IOException("Failed to parse " + token + " as a long.", e);
1289            }
1290        }
1291
1292        private String readLine(InputStream in, StringBuffer sb) throws IOException {
1293            return readToken(in, sb, '\n');
1294        }
1295
1296        private String readToken(InputStream in, StringBuffer sb, char endOfToken)
1297                throws IOException {
1298            sb.setLength(0);
1299            while (true) {
1300                int ch = in.read();
1301                if (ch == -1) {
1302                    if (sb.length() == 0) {
1303                        return null;
1304                    }
1305                    throw new IOException("Unexpected EOF");
1306                }
1307                if (ch == endOfToken) {
1308                    return sb.toString();
1309                }
1310                sb.append((char)ch);
1311            }
1312        }
1313
1314        private AtomicFile getFile() {
1315            File dataDir = Environment.getDataDirectory();
1316            File systemDir = new File(dataDir, "system");
1317            File fname = new File(systemDir, "package-usage.list");
1318            return new AtomicFile(fname);
1319        }
1320
1321        private static final String USAGE_FILE_MAGIC = "PACKAGE_USAGE__VERSION_";
1322        private static final String USAGE_FILE_MAGIC_VERSION_1 = USAGE_FILE_MAGIC + "1";
1323    }
1324
1325    class PackageHandler extends Handler {
1326        private boolean mBound = false;
1327        final ArrayList<HandlerParams> mPendingInstalls =
1328            new ArrayList<HandlerParams>();
1329
1330        private boolean connectToService() {
1331            if (DEBUG_SD_INSTALL) Log.i(TAG, "Trying to bind to" +
1332                    " DefaultContainerService");
1333            Intent service = new Intent().setComponent(DEFAULT_CONTAINER_COMPONENT);
1334            Process.setThreadPriority(Process.THREAD_PRIORITY_DEFAULT);
1335            if (mContext.bindServiceAsUser(service, mDefContainerConn,
1336                    Context.BIND_AUTO_CREATE, UserHandle.SYSTEM)) {
1337                Process.setThreadPriority(Process.THREAD_PRIORITY_BACKGROUND);
1338                mBound = true;
1339                return true;
1340            }
1341            Process.setThreadPriority(Process.THREAD_PRIORITY_BACKGROUND);
1342            return false;
1343        }
1344
1345        private void disconnectService() {
1346            mContainerService = null;
1347            mBound = false;
1348            Process.setThreadPriority(Process.THREAD_PRIORITY_DEFAULT);
1349            mContext.unbindService(mDefContainerConn);
1350            Process.setThreadPriority(Process.THREAD_PRIORITY_BACKGROUND);
1351        }
1352
1353        PackageHandler(Looper looper) {
1354            super(looper);
1355        }
1356
1357        public void handleMessage(Message msg) {
1358            try {
1359                doHandleMessage(msg);
1360            } finally {
1361                Process.setThreadPriority(Process.THREAD_PRIORITY_BACKGROUND);
1362            }
1363        }
1364
1365        void doHandleMessage(Message msg) {
1366            switch (msg.what) {
1367                case INIT_COPY: {
1368                    HandlerParams params = (HandlerParams) msg.obj;
1369                    int idx = mPendingInstalls.size();
1370                    if (DEBUG_INSTALL) Slog.i(TAG, "init_copy idx=" + idx + ": " + params);
1371                    // If a bind was already initiated we dont really
1372                    // need to do anything. The pending install
1373                    // will be processed later on.
1374                    if (!mBound) {
1375                        Trace.asyncTraceBegin(TRACE_TAG_PACKAGE_MANAGER, "bindingMCS",
1376                                System.identityHashCode(mHandler));
1377                        // If this is the only one pending we might
1378                        // have to bind to the service again.
1379                        if (!connectToService()) {
1380                            Slog.e(TAG, "Failed to bind to media container service");
1381                            params.serviceError();
1382                            Trace.asyncTraceEnd(TRACE_TAG_PACKAGE_MANAGER, "bindingMCS",
1383                                    System.identityHashCode(mHandler));
1384                            if (params.traceMethod != null) {
1385                                Trace.asyncTraceEnd(TRACE_TAG_PACKAGE_MANAGER, params.traceMethod,
1386                                        params.traceCookie);
1387                            }
1388                            return;
1389                        } else {
1390                            // Once we bind to the service, the first
1391                            // pending request will be processed.
1392                            mPendingInstalls.add(idx, params);
1393                        }
1394                    } else {
1395                        mPendingInstalls.add(idx, params);
1396                        // Already bound to the service. Just make
1397                        // sure we trigger off processing the first request.
1398                        if (idx == 0) {
1399                            mHandler.sendEmptyMessage(MCS_BOUND);
1400                        }
1401                    }
1402                    break;
1403                }
1404                case MCS_BOUND: {
1405                    if (DEBUG_INSTALL) Slog.i(TAG, "mcs_bound");
1406                    if (msg.obj != null) {
1407                        mContainerService = (IMediaContainerService) msg.obj;
1408                        Trace.asyncTraceEnd(TRACE_TAG_PACKAGE_MANAGER, "bindingMCS",
1409                                System.identityHashCode(mHandler));
1410                    }
1411                    if (mContainerService == null) {
1412                        if (!mBound) {
1413                            // Something seriously wrong since we are not bound and we are not
1414                            // waiting for connection. Bail out.
1415                            Slog.e(TAG, "Cannot bind to media container service");
1416                            for (HandlerParams params : mPendingInstalls) {
1417                                // Indicate service bind error
1418                                params.serviceError();
1419                                Trace.asyncTraceEnd(TRACE_TAG_PACKAGE_MANAGER, "queueInstall",
1420                                        System.identityHashCode(params));
1421                                if (params.traceMethod != null) {
1422                                    Trace.asyncTraceEnd(TRACE_TAG_PACKAGE_MANAGER,
1423                                            params.traceMethod, params.traceCookie);
1424                                }
1425                                return;
1426                            }
1427                            mPendingInstalls.clear();
1428                        } else {
1429                            Slog.w(TAG, "Waiting to connect to media container service");
1430                        }
1431                    } else if (mPendingInstalls.size() > 0) {
1432                        HandlerParams params = mPendingInstalls.get(0);
1433                        if (params != null) {
1434                            Trace.asyncTraceEnd(TRACE_TAG_PACKAGE_MANAGER, "queueInstall",
1435                                    System.identityHashCode(params));
1436                            Trace.traceBegin(TRACE_TAG_PACKAGE_MANAGER, "startCopy");
1437                            if (params.startCopy()) {
1438                                // We are done...  look for more work or to
1439                                // go idle.
1440                                if (DEBUG_SD_INSTALL) Log.i(TAG,
1441                                        "Checking for more work or unbind...");
1442                                // Delete pending install
1443                                if (mPendingInstalls.size() > 0) {
1444                                    mPendingInstalls.remove(0);
1445                                }
1446                                if (mPendingInstalls.size() == 0) {
1447                                    if (mBound) {
1448                                        if (DEBUG_SD_INSTALL) Log.i(TAG,
1449                                                "Posting delayed MCS_UNBIND");
1450                                        removeMessages(MCS_UNBIND);
1451                                        Message ubmsg = obtainMessage(MCS_UNBIND);
1452                                        // Unbind after a little delay, to avoid
1453                                        // continual thrashing.
1454                                        sendMessageDelayed(ubmsg, 10000);
1455                                    }
1456                                } else {
1457                                    // There are more pending requests in queue.
1458                                    // Just post MCS_BOUND message to trigger processing
1459                                    // of next pending install.
1460                                    if (DEBUG_SD_INSTALL) Log.i(TAG,
1461                                            "Posting MCS_BOUND for next work");
1462                                    mHandler.sendEmptyMessage(MCS_BOUND);
1463                                }
1464                            }
1465                            Trace.traceEnd(TRACE_TAG_PACKAGE_MANAGER);
1466                        }
1467                    } else {
1468                        // Should never happen ideally.
1469                        Slog.w(TAG, "Empty queue");
1470                    }
1471                    break;
1472                }
1473                case MCS_RECONNECT: {
1474                    if (DEBUG_INSTALL) Slog.i(TAG, "mcs_reconnect");
1475                    if (mPendingInstalls.size() > 0) {
1476                        if (mBound) {
1477                            disconnectService();
1478                        }
1479                        if (!connectToService()) {
1480                            Slog.e(TAG, "Failed to bind to media container service");
1481                            for (HandlerParams params : mPendingInstalls) {
1482                                // Indicate service bind error
1483                                params.serviceError();
1484                                Trace.asyncTraceEnd(TRACE_TAG_PACKAGE_MANAGER, "queueInstall",
1485                                        System.identityHashCode(params));
1486                            }
1487                            mPendingInstalls.clear();
1488                        }
1489                    }
1490                    break;
1491                }
1492                case MCS_UNBIND: {
1493                    // If there is no actual work left, then time to unbind.
1494                    if (DEBUG_INSTALL) Slog.i(TAG, "mcs_unbind");
1495
1496                    if (mPendingInstalls.size() == 0 && mPendingVerification.size() == 0) {
1497                        if (mBound) {
1498                            if (DEBUG_INSTALL) Slog.i(TAG, "calling disconnectService()");
1499
1500                            disconnectService();
1501                        }
1502                    } else if (mPendingInstalls.size() > 0) {
1503                        // There are more pending requests in queue.
1504                        // Just post MCS_BOUND message to trigger processing
1505                        // of next pending install.
1506                        mHandler.sendEmptyMessage(MCS_BOUND);
1507                    }
1508
1509                    break;
1510                }
1511                case MCS_GIVE_UP: {
1512                    if (DEBUG_INSTALL) Slog.i(TAG, "mcs_giveup too many retries");
1513                    HandlerParams params = mPendingInstalls.remove(0);
1514                    Trace.asyncTraceEnd(TRACE_TAG_PACKAGE_MANAGER, "queueInstall",
1515                            System.identityHashCode(params));
1516                    break;
1517                }
1518                case SEND_PENDING_BROADCAST: {
1519                    String packages[];
1520                    ArrayList<String> components[];
1521                    int size = 0;
1522                    int uids[];
1523                    Process.setThreadPriority(Process.THREAD_PRIORITY_DEFAULT);
1524                    synchronized (mPackages) {
1525                        if (mPendingBroadcasts == null) {
1526                            return;
1527                        }
1528                        size = mPendingBroadcasts.size();
1529                        if (size <= 0) {
1530                            // Nothing to be done. Just return
1531                            return;
1532                        }
1533                        packages = new String[size];
1534                        components = new ArrayList[size];
1535                        uids = new int[size];
1536                        int i = 0;  // filling out the above arrays
1537
1538                        for (int n = 0; n < mPendingBroadcasts.userIdCount(); n++) {
1539                            int packageUserId = mPendingBroadcasts.userIdAt(n);
1540                            Iterator<Map.Entry<String, ArrayList<String>>> it
1541                                    = mPendingBroadcasts.packagesForUserId(packageUserId)
1542                                            .entrySet().iterator();
1543                            while (it.hasNext() && i < size) {
1544                                Map.Entry<String, ArrayList<String>> ent = it.next();
1545                                packages[i] = ent.getKey();
1546                                components[i] = ent.getValue();
1547                                PackageSetting ps = mSettings.mPackages.get(ent.getKey());
1548                                uids[i] = (ps != null)
1549                                        ? UserHandle.getUid(packageUserId, ps.appId)
1550                                        : -1;
1551                                i++;
1552                            }
1553                        }
1554                        size = i;
1555                        mPendingBroadcasts.clear();
1556                    }
1557                    // Send broadcasts
1558                    for (int i = 0; i < size; i++) {
1559                        sendPackageChangedBroadcast(packages[i], true, components[i], uids[i]);
1560                    }
1561                    Process.setThreadPriority(Process.THREAD_PRIORITY_BACKGROUND);
1562                    break;
1563                }
1564                case START_CLEANING_PACKAGE: {
1565                    Process.setThreadPriority(Process.THREAD_PRIORITY_DEFAULT);
1566                    final String packageName = (String)msg.obj;
1567                    final int userId = msg.arg1;
1568                    final boolean andCode = msg.arg2 != 0;
1569                    synchronized (mPackages) {
1570                        if (userId == UserHandle.USER_ALL) {
1571                            int[] users = sUserManager.getUserIds();
1572                            for (int user : users) {
1573                                mSettings.addPackageToCleanLPw(
1574                                        new PackageCleanItem(user, packageName, andCode));
1575                            }
1576                        } else {
1577                            mSettings.addPackageToCleanLPw(
1578                                    new PackageCleanItem(userId, packageName, andCode));
1579                        }
1580                    }
1581                    Process.setThreadPriority(Process.THREAD_PRIORITY_BACKGROUND);
1582                    startCleaningPackages();
1583                } break;
1584                case POST_INSTALL: {
1585                    if (DEBUG_INSTALL) Log.v(TAG, "Handling post-install for " + msg.arg1);
1586
1587                    PostInstallData data = mRunningInstalls.get(msg.arg1);
1588                    final boolean didRestore = (msg.arg2 != 0);
1589                    mRunningInstalls.delete(msg.arg1);
1590
1591                    if (data != null) {
1592                        InstallArgs args = data.args;
1593                        PackageInstalledInfo parentRes = data.res;
1594
1595                        final boolean grantPermissions = (args.installFlags
1596                                & PackageManager.INSTALL_GRANT_RUNTIME_PERMISSIONS) != 0;
1597                        final boolean killApp = (args.installFlags
1598                                & PackageManager.INSTALL_DONT_KILL_APP) == 0;
1599                        final String[] grantedPermissions = args.installGrantPermissions;
1600
1601                        // Handle the parent package
1602                        handlePackagePostInstall(parentRes, grantPermissions, killApp,
1603                                grantedPermissions, didRestore, args.installerPackageName,
1604                                args.observer);
1605
1606                        // Handle the child packages
1607                        final int childCount = (parentRes.addedChildPackages != null)
1608                                ? parentRes.addedChildPackages.size() : 0;
1609                        for (int i = 0; i < childCount; i++) {
1610                            PackageInstalledInfo childRes = parentRes.addedChildPackages.valueAt(i);
1611                            handlePackagePostInstall(childRes, grantPermissions, killApp,
1612                                    grantedPermissions, false, args.installerPackageName,
1613                                    args.observer);
1614                        }
1615
1616                        // Log tracing if needed
1617                        if (args.traceMethod != null) {
1618                            Trace.asyncTraceEnd(TRACE_TAG_PACKAGE_MANAGER, args.traceMethod,
1619                                    args.traceCookie);
1620                        }
1621                    } else {
1622                        Slog.e(TAG, "Bogus post-install token " + msg.arg1);
1623                    }
1624
1625                    Trace.asyncTraceEnd(TRACE_TAG_PACKAGE_MANAGER, "postInstall", msg.arg1);
1626                } break;
1627                case UPDATED_MEDIA_STATUS: {
1628                    if (DEBUG_SD_INSTALL) Log.i(TAG, "Got message UPDATED_MEDIA_STATUS");
1629                    boolean reportStatus = msg.arg1 == 1;
1630                    boolean doGc = msg.arg2 == 1;
1631                    if (DEBUG_SD_INSTALL) Log.i(TAG, "reportStatus=" + reportStatus + ", doGc = " + doGc);
1632                    if (doGc) {
1633                        // Force a gc to clear up stale containers.
1634                        Runtime.getRuntime().gc();
1635                    }
1636                    if (msg.obj != null) {
1637                        @SuppressWarnings("unchecked")
1638                        Set<AsecInstallArgs> args = (Set<AsecInstallArgs>) msg.obj;
1639                        if (DEBUG_SD_INSTALL) Log.i(TAG, "Unloading all containers");
1640                        // Unload containers
1641                        unloadAllContainers(args);
1642                    }
1643                    if (reportStatus) {
1644                        try {
1645                            if (DEBUG_SD_INSTALL) Log.i(TAG, "Invoking MountService call back");
1646                            PackageHelper.getMountService().finishMediaUpdate();
1647                        } catch (RemoteException e) {
1648                            Log.e(TAG, "MountService not running?");
1649                        }
1650                    }
1651                } break;
1652                case WRITE_SETTINGS: {
1653                    Process.setThreadPriority(Process.THREAD_PRIORITY_DEFAULT);
1654                    synchronized (mPackages) {
1655                        removeMessages(WRITE_SETTINGS);
1656                        removeMessages(WRITE_PACKAGE_RESTRICTIONS);
1657                        mSettings.writeLPr();
1658                        mDirtyUsers.clear();
1659                    }
1660                    Process.setThreadPriority(Process.THREAD_PRIORITY_BACKGROUND);
1661                } break;
1662                case WRITE_PACKAGE_RESTRICTIONS: {
1663                    Process.setThreadPriority(Process.THREAD_PRIORITY_DEFAULT);
1664                    synchronized (mPackages) {
1665                        removeMessages(WRITE_PACKAGE_RESTRICTIONS);
1666                        for (int userId : mDirtyUsers) {
1667                            mSettings.writePackageRestrictionsLPr(userId);
1668                        }
1669                        mDirtyUsers.clear();
1670                    }
1671                    Process.setThreadPriority(Process.THREAD_PRIORITY_BACKGROUND);
1672                } break;
1673                case WRITE_PACKAGE_LIST: {
1674                    Process.setThreadPriority(Process.THREAD_PRIORITY_DEFAULT);
1675                    synchronized (mPackages) {
1676                        removeMessages(WRITE_PACKAGE_LIST);
1677                        mSettings.writePackageListLPr(msg.arg1);
1678                    }
1679                    Process.setThreadPriority(Process.THREAD_PRIORITY_BACKGROUND);
1680                } break;
1681                case CHECK_PENDING_VERIFICATION: {
1682                    final int verificationId = msg.arg1;
1683                    final PackageVerificationState state = mPendingVerification.get(verificationId);
1684
1685                    if ((state != null) && !state.timeoutExtended()) {
1686                        final InstallArgs args = state.getInstallArgs();
1687                        final Uri originUri = Uri.fromFile(args.origin.resolvedFile);
1688
1689                        Slog.i(TAG, "Verification timed out for " + originUri);
1690                        mPendingVerification.remove(verificationId);
1691
1692                        int ret = PackageManager.INSTALL_FAILED_VERIFICATION_FAILURE;
1693
1694                        if (getDefaultVerificationResponse() == PackageManager.VERIFICATION_ALLOW) {
1695                            Slog.i(TAG, "Continuing with installation of " + originUri);
1696                            state.setVerifierResponse(Binder.getCallingUid(),
1697                                    PackageManager.VERIFICATION_ALLOW_WITHOUT_SUFFICIENT);
1698                            broadcastPackageVerified(verificationId, originUri,
1699                                    PackageManager.VERIFICATION_ALLOW,
1700                                    state.getInstallArgs().getUser());
1701                            try {
1702                                ret = args.copyApk(mContainerService, true);
1703                            } catch (RemoteException e) {
1704                                Slog.e(TAG, "Could not contact the ContainerService");
1705                            }
1706                        } else {
1707                            broadcastPackageVerified(verificationId, originUri,
1708                                    PackageManager.VERIFICATION_REJECT,
1709                                    state.getInstallArgs().getUser());
1710                        }
1711
1712                        Trace.asyncTraceEnd(
1713                                TRACE_TAG_PACKAGE_MANAGER, "verification", verificationId);
1714
1715                        processPendingInstall(args, ret);
1716                        mHandler.sendEmptyMessage(MCS_UNBIND);
1717                    }
1718                    break;
1719                }
1720                case PACKAGE_VERIFIED: {
1721                    final int verificationId = msg.arg1;
1722
1723                    final PackageVerificationState state = mPendingVerification.get(verificationId);
1724                    if (state == null) {
1725                        Slog.w(TAG, "Invalid verification token " + verificationId + " received");
1726                        break;
1727                    }
1728
1729                    final PackageVerificationResponse response = (PackageVerificationResponse) msg.obj;
1730
1731                    state.setVerifierResponse(response.callerUid, response.code);
1732
1733                    if (state.isVerificationComplete()) {
1734                        mPendingVerification.remove(verificationId);
1735
1736                        final InstallArgs args = state.getInstallArgs();
1737                        final Uri originUri = Uri.fromFile(args.origin.resolvedFile);
1738
1739                        int ret;
1740                        if (state.isInstallAllowed()) {
1741                            ret = PackageManager.INSTALL_FAILED_INTERNAL_ERROR;
1742                            broadcastPackageVerified(verificationId, originUri,
1743                                    response.code, state.getInstallArgs().getUser());
1744                            try {
1745                                ret = args.copyApk(mContainerService, true);
1746                            } catch (RemoteException e) {
1747                                Slog.e(TAG, "Could not contact the ContainerService");
1748                            }
1749                        } else {
1750                            ret = PackageManager.INSTALL_FAILED_VERIFICATION_FAILURE;
1751                        }
1752
1753                        Trace.asyncTraceEnd(
1754                                TRACE_TAG_PACKAGE_MANAGER, "verification", verificationId);
1755
1756                        processPendingInstall(args, ret);
1757                        mHandler.sendEmptyMessage(MCS_UNBIND);
1758                    }
1759
1760                    break;
1761                }
1762                case START_INTENT_FILTER_VERIFICATIONS: {
1763                    IFVerificationParams params = (IFVerificationParams) msg.obj;
1764                    verifyIntentFiltersIfNeeded(params.userId, params.verifierUid,
1765                            params.replacing, params.pkg);
1766                    break;
1767                }
1768                case INTENT_FILTER_VERIFIED: {
1769                    final int verificationId = msg.arg1;
1770
1771                    final IntentFilterVerificationState state = mIntentFilterVerificationStates.get(
1772                            verificationId);
1773                    if (state == null) {
1774                        Slog.w(TAG, "Invalid IntentFilter verification token "
1775                                + verificationId + " received");
1776                        break;
1777                    }
1778
1779                    final int userId = state.getUserId();
1780
1781                    if (DEBUG_DOMAIN_VERIFICATION) Slog.d(TAG,
1782                            "Processing IntentFilter verification with token:"
1783                            + verificationId + " and userId:" + userId);
1784
1785                    final IntentFilterVerificationResponse response =
1786                            (IntentFilterVerificationResponse) msg.obj;
1787
1788                    state.setVerifierResponse(response.callerUid, response.code);
1789
1790                    if (DEBUG_DOMAIN_VERIFICATION) Slog.d(TAG,
1791                            "IntentFilter verification with token:" + verificationId
1792                            + " and userId:" + userId
1793                            + " is settings verifier response with response code:"
1794                            + response.code);
1795
1796                    if (response.code == PackageManager.INTENT_FILTER_VERIFICATION_FAILURE) {
1797                        if (DEBUG_DOMAIN_VERIFICATION) Slog.d(TAG, "Domains failing verification: "
1798                                + response.getFailedDomainsString());
1799                    }
1800
1801                    if (state.isVerificationComplete()) {
1802                        mIntentFilterVerifier.receiveVerificationResponse(verificationId);
1803                    } else {
1804                        if (DEBUG_DOMAIN_VERIFICATION) Slog.d(TAG,
1805                                "IntentFilter verification with token:" + verificationId
1806                                + " was not said to be complete");
1807                    }
1808
1809                    break;
1810                }
1811            }
1812        }
1813    }
1814
1815    private void handlePackagePostInstall(PackageInstalledInfo res, boolean grantPermissions,
1816            boolean killApp, String[] grantedPermissions,
1817            boolean launchedForRestore, String installerPackage,
1818            IPackageInstallObserver2 installObserver) {
1819        if (res.returnCode == PackageManager.INSTALL_SUCCEEDED) {
1820            // Send the removed broadcasts
1821            if (res.removedInfo != null) {
1822                res.removedInfo.sendPackageRemovedBroadcasts(killApp);
1823            }
1824
1825            // Now that we successfully installed the package, grant runtime
1826            // permissions if requested before broadcasting the install.
1827            if (grantPermissions && res.pkg.applicationInfo.targetSdkVersion
1828                    >= Build.VERSION_CODES.M) {
1829                grantRequestedRuntimePermissions(res.pkg, res.newUsers, grantedPermissions);
1830            }
1831
1832            final boolean update = res.removedInfo != null
1833                    && res.removedInfo.removedPackage != null;
1834
1835            // If this is the first time we have child packages for a disabled privileged
1836            // app that had no children, we grant requested runtime permissions to the new
1837            // children if the parent on the system image had them already granted.
1838            if (res.pkg.parentPackage != null) {
1839                synchronized (mPackages) {
1840                    grantRuntimePermissionsGrantedToDisabledPrivSysPackageParentLPw(res.pkg);
1841                }
1842            }
1843
1844            synchronized (mPackages) {
1845                mEphemeralApplicationRegistry.onPackageInstalledLPw(res.pkg);
1846            }
1847
1848            final String packageName = res.pkg.applicationInfo.packageName;
1849            Bundle extras = new Bundle(1);
1850            extras.putInt(Intent.EXTRA_UID, res.uid);
1851
1852            // Determine the set of users who are adding this package for
1853            // the first time vs. those who are seeing an update.
1854            int[] firstUsers = EMPTY_INT_ARRAY;
1855            int[] updateUsers = EMPTY_INT_ARRAY;
1856            if (res.origUsers == null || res.origUsers.length == 0) {
1857                firstUsers = res.newUsers;
1858            } else {
1859                for (int newUser : res.newUsers) {
1860                    boolean isNew = true;
1861                    for (int origUser : res.origUsers) {
1862                        if (origUser == newUser) {
1863                            isNew = false;
1864                            break;
1865                        }
1866                    }
1867                    if (isNew) {
1868                        firstUsers = ArrayUtils.appendInt(firstUsers, newUser);
1869                    } else {
1870                        updateUsers = ArrayUtils.appendInt(updateUsers, newUser);
1871                    }
1872                }
1873            }
1874
1875            // Send installed broadcasts if the install/update is not ephemeral
1876            if (!isEphemeral(res.pkg)) {
1877                mProcessLoggingHandler.invalidateProcessLoggingBaseApkHash(res.pkg.baseCodePath);
1878
1879                // Send added for users that see the package for the first time
1880                sendPackageBroadcast(Intent.ACTION_PACKAGE_ADDED, packageName,
1881                        extras, 0 /*flags*/, null /*targetPackage*/,
1882                        null /*finishedReceiver*/, firstUsers);
1883
1884                // Send added for users that don't see the package for the first time
1885                if (update) {
1886                    extras.putBoolean(Intent.EXTRA_REPLACING, true);
1887                }
1888                sendPackageBroadcast(Intent.ACTION_PACKAGE_ADDED, packageName,
1889                        extras, 0 /*flags*/, null /*targetPackage*/,
1890                        null /*finishedReceiver*/, updateUsers);
1891
1892                // Send replaced for users that don't see the package for the first time
1893                if (update) {
1894                    sendPackageBroadcast(Intent.ACTION_PACKAGE_REPLACED,
1895                            packageName, extras, 0 /*flags*/,
1896                            null /*targetPackage*/, null /*finishedReceiver*/,
1897                            updateUsers);
1898                    sendPackageBroadcast(Intent.ACTION_MY_PACKAGE_REPLACED,
1899                            null /*package*/, null /*extras*/, 0 /*flags*/,
1900                            packageName /*targetPackage*/,
1901                            null /*finishedReceiver*/, updateUsers);
1902                } else if (launchedForRestore && !isSystemApp(res.pkg)) {
1903                    // First-install and we did a restore, so we're responsible for the
1904                    // first-launch broadcast.
1905                    if (DEBUG_BACKUP) {
1906                        Slog.i(TAG, "Post-restore of " + packageName
1907                                + " sending FIRST_LAUNCH in " + Arrays.toString(firstUsers));
1908                    }
1909                    sendFirstLaunchBroadcast(packageName, installerPackage, firstUsers);
1910                }
1911
1912                // Send broadcast package appeared if forward locked/external for all users
1913                // treat asec-hosted packages like removable media on upgrade
1914                if (res.pkg.isForwardLocked() || isExternal(res.pkg)) {
1915                    if (DEBUG_INSTALL) {
1916                        Slog.i(TAG, "upgrading pkg " + res.pkg
1917                                + " is ASEC-hosted -> AVAILABLE");
1918                    }
1919                    final int[] uidArray = new int[]{res.pkg.applicationInfo.uid};
1920                    ArrayList<String> pkgList = new ArrayList<>(1);
1921                    pkgList.add(packageName);
1922                    sendResourcesChangedBroadcast(true, true, pkgList, uidArray, null);
1923                }
1924            }
1925
1926            // Work that needs to happen on first install within each user
1927            if (firstUsers != null && firstUsers.length > 0) {
1928                synchronized (mPackages) {
1929                    for (int userId : firstUsers) {
1930                        // If this app is a browser and it's newly-installed for some
1931                        // users, clear any default-browser state in those users. The
1932                        // app's nature doesn't depend on the user, so we can just check
1933                        // its browser nature in any user and generalize.
1934                        if (packageIsBrowser(packageName, userId)) {
1935                            mSettings.setDefaultBrowserPackageNameLPw(null, userId);
1936                        }
1937
1938                        // We may also need to apply pending (restored) runtime
1939                        // permission grants within these users.
1940                        mSettings.applyPendingPermissionGrantsLPw(packageName, userId);
1941                    }
1942                }
1943            }
1944
1945            // Log current value of "unknown sources" setting
1946            EventLog.writeEvent(EventLogTags.UNKNOWN_SOURCES_ENABLED,
1947                    getUnknownSourcesSettings());
1948
1949            // Force a gc to clear up things
1950            Runtime.getRuntime().gc();
1951
1952            // Remove the replaced package's older resources safely now
1953            // We delete after a gc for applications  on sdcard.
1954            if (res.removedInfo != null && res.removedInfo.args != null) {
1955                synchronized (mInstallLock) {
1956                    res.removedInfo.args.doPostDeleteLI(true);
1957                }
1958            }
1959        }
1960
1961        // If someone is watching installs - notify them
1962        if (installObserver != null) {
1963            try {
1964                Bundle extras = extrasForInstallResult(res);
1965                installObserver.onPackageInstalled(res.name, res.returnCode,
1966                        res.returnMsg, extras);
1967            } catch (RemoteException e) {
1968                Slog.i(TAG, "Observer no longer exists.");
1969            }
1970        }
1971    }
1972
1973    private void grantRuntimePermissionsGrantedToDisabledPrivSysPackageParentLPw(
1974            PackageParser.Package pkg) {
1975        if (pkg.parentPackage == null) {
1976            return;
1977        }
1978        if (pkg.requestedPermissions == null) {
1979            return;
1980        }
1981        final PackageSetting disabledSysParentPs = mSettings
1982                .getDisabledSystemPkgLPr(pkg.parentPackage.packageName);
1983        if (disabledSysParentPs == null || disabledSysParentPs.pkg == null
1984                || !disabledSysParentPs.isPrivileged()
1985                || (disabledSysParentPs.childPackageNames != null
1986                        && !disabledSysParentPs.childPackageNames.isEmpty())) {
1987            return;
1988        }
1989        final int[] allUserIds = sUserManager.getUserIds();
1990        final int permCount = pkg.requestedPermissions.size();
1991        for (int i = 0; i < permCount; i++) {
1992            String permission = pkg.requestedPermissions.get(i);
1993            BasePermission bp = mSettings.mPermissions.get(permission);
1994            if (bp == null || !(bp.isRuntime() || bp.isDevelopment())) {
1995                continue;
1996            }
1997            for (int userId : allUserIds) {
1998                if (disabledSysParentPs.getPermissionsState().hasRuntimePermission(
1999                        permission, userId)) {
2000                    grantRuntimePermission(pkg.packageName, permission, userId);
2001                }
2002            }
2003        }
2004    }
2005
2006    private StorageEventListener mStorageListener = new StorageEventListener() {
2007        @Override
2008        public void onVolumeStateChanged(VolumeInfo vol, int oldState, int newState) {
2009            if (vol.type == VolumeInfo.TYPE_PRIVATE) {
2010                if (vol.state == VolumeInfo.STATE_MOUNTED) {
2011                    final String volumeUuid = vol.getFsUuid();
2012
2013                    // Clean up any users or apps that were removed or recreated
2014                    // while this volume was missing
2015                    reconcileUsers(volumeUuid);
2016                    reconcileApps(volumeUuid);
2017
2018                    // Clean up any install sessions that expired or were
2019                    // cancelled while this volume was missing
2020                    mInstallerService.onPrivateVolumeMounted(volumeUuid);
2021
2022                    loadPrivatePackages(vol);
2023
2024                } else if (vol.state == VolumeInfo.STATE_EJECTING) {
2025                    unloadPrivatePackages(vol);
2026                }
2027            }
2028
2029            if (vol.type == VolumeInfo.TYPE_PUBLIC && vol.isPrimary()) {
2030                if (vol.state == VolumeInfo.STATE_MOUNTED) {
2031                    updateExternalMediaStatus(true, false);
2032                } else if (vol.state == VolumeInfo.STATE_EJECTING) {
2033                    updateExternalMediaStatus(false, false);
2034                }
2035            }
2036        }
2037
2038        @Override
2039        public void onVolumeForgotten(String fsUuid) {
2040            if (TextUtils.isEmpty(fsUuid)) {
2041                Slog.e(TAG, "Forgetting internal storage is probably a mistake; ignoring");
2042                return;
2043            }
2044
2045            // Remove any apps installed on the forgotten volume
2046            synchronized (mPackages) {
2047                final List<PackageSetting> packages = mSettings.getVolumePackagesLPr(fsUuid);
2048                for (PackageSetting ps : packages) {
2049                    Slog.d(TAG, "Destroying " + ps.name + " because volume was forgotten");
2050                    deletePackage(ps.name, new LegacyPackageDeleteObserver(null).getBinder(),
2051                            UserHandle.USER_SYSTEM, PackageManager.DELETE_ALL_USERS);
2052                }
2053
2054                mSettings.onVolumeForgotten(fsUuid);
2055                mSettings.writeLPr();
2056            }
2057        }
2058    };
2059
2060    private void grantRequestedRuntimePermissions(PackageParser.Package pkg, int[] userIds,
2061            String[] grantedPermissions) {
2062        for (int userId : userIds) {
2063            grantRequestedRuntimePermissionsForUser(pkg, userId, grantedPermissions);
2064        }
2065
2066        // We could have touched GID membership, so flush out packages.list
2067        synchronized (mPackages) {
2068            mSettings.writePackageListLPr();
2069        }
2070    }
2071
2072    private void grantRequestedRuntimePermissionsForUser(PackageParser.Package pkg, int userId,
2073            String[] grantedPermissions) {
2074        SettingBase sb = (SettingBase) pkg.mExtras;
2075        if (sb == null) {
2076            return;
2077        }
2078
2079        PermissionsState permissionsState = sb.getPermissionsState();
2080
2081        final int immutableFlags = PackageManager.FLAG_PERMISSION_SYSTEM_FIXED
2082                | PackageManager.FLAG_PERMISSION_POLICY_FIXED;
2083
2084        for (String permission : pkg.requestedPermissions) {
2085            final BasePermission bp;
2086            synchronized (mPackages) {
2087                bp = mSettings.mPermissions.get(permission);
2088            }
2089            if (bp != null && (bp.isRuntime() || bp.isDevelopment())
2090                    && (grantedPermissions == null
2091                           || ArrayUtils.contains(grantedPermissions, permission))) {
2092                final int flags = permissionsState.getPermissionFlags(permission, userId);
2093                // Installer cannot change immutable permissions.
2094                if ((flags & immutableFlags) == 0) {
2095                    grantRuntimePermission(pkg.packageName, permission, userId);
2096                }
2097            }
2098        }
2099    }
2100
2101    Bundle extrasForInstallResult(PackageInstalledInfo res) {
2102        Bundle extras = null;
2103        switch (res.returnCode) {
2104            case PackageManager.INSTALL_FAILED_DUPLICATE_PERMISSION: {
2105                extras = new Bundle();
2106                extras.putString(PackageManager.EXTRA_FAILURE_EXISTING_PERMISSION,
2107                        res.origPermission);
2108                extras.putString(PackageManager.EXTRA_FAILURE_EXISTING_PACKAGE,
2109                        res.origPackage);
2110                break;
2111            }
2112            case PackageManager.INSTALL_SUCCEEDED: {
2113                extras = new Bundle();
2114                extras.putBoolean(Intent.EXTRA_REPLACING,
2115                        res.removedInfo != null && res.removedInfo.removedPackage != null);
2116                break;
2117            }
2118        }
2119        return extras;
2120    }
2121
2122    void scheduleWriteSettingsLocked() {
2123        if (!mHandler.hasMessages(WRITE_SETTINGS)) {
2124            mHandler.sendEmptyMessageDelayed(WRITE_SETTINGS, WRITE_SETTINGS_DELAY);
2125        }
2126    }
2127
2128    void scheduleWritePackageListLocked(int userId) {
2129        if (!mHandler.hasMessages(WRITE_PACKAGE_LIST)) {
2130            Message msg = mHandler.obtainMessage(WRITE_PACKAGE_LIST);
2131            msg.arg1 = userId;
2132            mHandler.sendMessageDelayed(msg, WRITE_SETTINGS_DELAY);
2133        }
2134    }
2135
2136    void scheduleWritePackageRestrictionsLocked(UserHandle user) {
2137        final int userId = user == null ? UserHandle.USER_ALL : user.getIdentifier();
2138        scheduleWritePackageRestrictionsLocked(userId);
2139    }
2140
2141    void scheduleWritePackageRestrictionsLocked(int userId) {
2142        final int[] userIds = (userId == UserHandle.USER_ALL)
2143                ? sUserManager.getUserIds() : new int[]{userId};
2144        for (int nextUserId : userIds) {
2145            if (!sUserManager.exists(nextUserId)) return;
2146            mDirtyUsers.add(nextUserId);
2147            if (!mHandler.hasMessages(WRITE_PACKAGE_RESTRICTIONS)) {
2148                mHandler.sendEmptyMessageDelayed(WRITE_PACKAGE_RESTRICTIONS, WRITE_SETTINGS_DELAY);
2149            }
2150        }
2151    }
2152
2153    public static PackageManagerService main(Context context, Installer installer,
2154            boolean factoryTest, boolean onlyCore) {
2155        // Self-check for initial settings.
2156        PackageManagerServiceCompilerMapping.checkProperties();
2157
2158        PackageManagerService m = new PackageManagerService(context, installer,
2159                factoryTest, onlyCore);
2160        m.enableSystemUserPackages();
2161        // Disable any carrier apps. We do this very early in boot to prevent the apps from being
2162        // disabled after already being started.
2163        CarrierAppUtils.disableCarrierAppsUntilPrivileged(context.getOpPackageName(), m,
2164                UserHandle.USER_SYSTEM);
2165        ServiceManager.addService("package", m);
2166        return m;
2167    }
2168
2169    private void enableSystemUserPackages() {
2170        if (!UserManager.isSplitSystemUser()) {
2171            return;
2172        }
2173        // For system user, enable apps based on the following conditions:
2174        // - app is whitelisted or belong to one of these groups:
2175        //   -- system app which has no launcher icons
2176        //   -- system app which has INTERACT_ACROSS_USERS permission
2177        //   -- system IME app
2178        // - app is not in the blacklist
2179        AppsQueryHelper queryHelper = new AppsQueryHelper(this);
2180        Set<String> enableApps = new ArraySet<>();
2181        enableApps.addAll(queryHelper.queryApps(AppsQueryHelper.GET_NON_LAUNCHABLE_APPS
2182                | AppsQueryHelper.GET_APPS_WITH_INTERACT_ACROSS_USERS_PERM
2183                | AppsQueryHelper.GET_IMES, /* systemAppsOnly */ true, UserHandle.SYSTEM));
2184        ArraySet<String> wlApps = SystemConfig.getInstance().getSystemUserWhitelistedApps();
2185        enableApps.addAll(wlApps);
2186        enableApps.addAll(queryHelper.queryApps(AppsQueryHelper.GET_REQUIRED_FOR_SYSTEM_USER,
2187                /* systemAppsOnly */ false, UserHandle.SYSTEM));
2188        ArraySet<String> blApps = SystemConfig.getInstance().getSystemUserBlacklistedApps();
2189        enableApps.removeAll(blApps);
2190        Log.i(TAG, "Applications installed for system user: " + enableApps);
2191        List<String> allAps = queryHelper.queryApps(0, /* systemAppsOnly */ false,
2192                UserHandle.SYSTEM);
2193        final int allAppsSize = allAps.size();
2194        synchronized (mPackages) {
2195            for (int i = 0; i < allAppsSize; i++) {
2196                String pName = allAps.get(i);
2197                PackageSetting pkgSetting = mSettings.mPackages.get(pName);
2198                // Should not happen, but we shouldn't be failing if it does
2199                if (pkgSetting == null) {
2200                    continue;
2201                }
2202                boolean install = enableApps.contains(pName);
2203                if (pkgSetting.getInstalled(UserHandle.USER_SYSTEM) != install) {
2204                    Log.i(TAG, (install ? "Installing " : "Uninstalling ") + pName
2205                            + " for system user");
2206                    pkgSetting.setInstalled(install, UserHandle.USER_SYSTEM);
2207                }
2208            }
2209        }
2210    }
2211
2212    private static void getDefaultDisplayMetrics(Context context, DisplayMetrics metrics) {
2213        DisplayManager displayManager = (DisplayManager) context.getSystemService(
2214                Context.DISPLAY_SERVICE);
2215        displayManager.getDisplay(Display.DEFAULT_DISPLAY).getMetrics(metrics);
2216    }
2217
2218    public PackageManagerService(Context context, Installer installer,
2219            boolean factoryTest, boolean onlyCore) {
2220        EventLog.writeEvent(EventLogTags.BOOT_PROGRESS_PMS_START,
2221                SystemClock.uptimeMillis());
2222
2223        if (mSdkVersion <= 0) {
2224            Slog.w(TAG, "**** ro.build.version.sdk not set!");
2225        }
2226
2227        mContext = context;
2228        mFactoryTest = factoryTest;
2229        mOnlyCore = onlyCore;
2230        mMetrics = new DisplayMetrics();
2231        mSettings = new Settings(mPackages);
2232        mSettings.addSharedUserLPw("android.uid.system", Process.SYSTEM_UID,
2233                ApplicationInfo.FLAG_SYSTEM, ApplicationInfo.PRIVATE_FLAG_PRIVILEGED);
2234        mSettings.addSharedUserLPw("android.uid.phone", RADIO_UID,
2235                ApplicationInfo.FLAG_SYSTEM, ApplicationInfo.PRIVATE_FLAG_PRIVILEGED);
2236        mSettings.addSharedUserLPw("android.uid.log", LOG_UID,
2237                ApplicationInfo.FLAG_SYSTEM, ApplicationInfo.PRIVATE_FLAG_PRIVILEGED);
2238        mSettings.addSharedUserLPw("android.uid.nfc", NFC_UID,
2239                ApplicationInfo.FLAG_SYSTEM, ApplicationInfo.PRIVATE_FLAG_PRIVILEGED);
2240        mSettings.addSharedUserLPw("android.uid.bluetooth", BLUETOOTH_UID,
2241                ApplicationInfo.FLAG_SYSTEM, ApplicationInfo.PRIVATE_FLAG_PRIVILEGED);
2242        mSettings.addSharedUserLPw("android.uid.shell", SHELL_UID,
2243                ApplicationInfo.FLAG_SYSTEM, ApplicationInfo.PRIVATE_FLAG_PRIVILEGED);
2244
2245        String separateProcesses = SystemProperties.get("debug.separate_processes");
2246        if (separateProcesses != null && separateProcesses.length() > 0) {
2247            if ("*".equals(separateProcesses)) {
2248                mDefParseFlags = PackageParser.PARSE_IGNORE_PROCESSES;
2249                mSeparateProcesses = null;
2250                Slog.w(TAG, "Running with debug.separate_processes: * (ALL)");
2251            } else {
2252                mDefParseFlags = 0;
2253                mSeparateProcesses = separateProcesses.split(",");
2254                Slog.w(TAG, "Running with debug.separate_processes: "
2255                        + separateProcesses);
2256            }
2257        } else {
2258            mDefParseFlags = 0;
2259            mSeparateProcesses = null;
2260        }
2261
2262        mInstaller = installer;
2263        mPackageDexOptimizer = new PackageDexOptimizer(installer, mInstallLock, context,
2264                "*dexopt*");
2265        mMoveCallbacks = new MoveCallbacks(FgThread.get().getLooper());
2266
2267        mOnPermissionChangeListeners = new OnPermissionChangeListeners(
2268                FgThread.get().getLooper());
2269
2270        getDefaultDisplayMetrics(context, mMetrics);
2271
2272        SystemConfig systemConfig = SystemConfig.getInstance();
2273        mGlobalGids = systemConfig.getGlobalGids();
2274        mSystemPermissions = systemConfig.getSystemPermissions();
2275        mAvailableFeatures = systemConfig.getAvailableFeatures();
2276
2277        synchronized (mInstallLock) {
2278        // writer
2279        synchronized (mPackages) {
2280            mHandlerThread = new ServiceThread(TAG,
2281                    Process.THREAD_PRIORITY_BACKGROUND, true /*allowIo*/);
2282            mHandlerThread.start();
2283            mHandler = new PackageHandler(mHandlerThread.getLooper());
2284            mProcessLoggingHandler = new ProcessLoggingHandler();
2285            Watchdog.getInstance().addThread(mHandler, WATCHDOG_TIMEOUT);
2286
2287            File dataDir = Environment.getDataDirectory();
2288            mAppInstallDir = new File(dataDir, "app");
2289            mAppLib32InstallDir = new File(dataDir, "app-lib");
2290            mEphemeralInstallDir = new File(dataDir, "app-ephemeral");
2291            mAsecInternalPath = new File(dataDir, "app-asec").getPath();
2292            mDrmAppPrivateInstallDir = new File(dataDir, "app-private");
2293
2294            sUserManager = new UserManagerService(context, this, mPackages);
2295
2296            // Propagate permission configuration in to package manager.
2297            ArrayMap<String, SystemConfig.PermissionEntry> permConfig
2298                    = systemConfig.getPermissions();
2299            for (int i=0; i<permConfig.size(); i++) {
2300                SystemConfig.PermissionEntry perm = permConfig.valueAt(i);
2301                BasePermission bp = mSettings.mPermissions.get(perm.name);
2302                if (bp == null) {
2303                    bp = new BasePermission(perm.name, "android", BasePermission.TYPE_BUILTIN);
2304                    mSettings.mPermissions.put(perm.name, bp);
2305                }
2306                if (perm.gids != null) {
2307                    bp.setGids(perm.gids, perm.perUser);
2308                }
2309            }
2310
2311            ArrayMap<String, String> libConfig = systemConfig.getSharedLibraries();
2312            for (int i=0; i<libConfig.size(); i++) {
2313                mSharedLibraries.put(libConfig.keyAt(i),
2314                        new SharedLibraryEntry(libConfig.valueAt(i), null));
2315            }
2316
2317            mFoundPolicyFile = SELinuxMMAC.readInstallPolicy();
2318
2319            mRestoredSettings = mSettings.readLPw(sUserManager.getUsers(false));
2320
2321            String customResolverActivity = Resources.getSystem().getString(
2322                    R.string.config_customResolverActivity);
2323            if (TextUtils.isEmpty(customResolverActivity)) {
2324                customResolverActivity = null;
2325            } else {
2326                mCustomResolverComponentName = ComponentName.unflattenFromString(
2327                        customResolverActivity);
2328            }
2329
2330            long startTime = SystemClock.uptimeMillis();
2331
2332            EventLog.writeEvent(EventLogTags.BOOT_PROGRESS_PMS_SYSTEM_SCAN_START,
2333                    startTime);
2334
2335            // Set flag to monitor and not change apk file paths when
2336            // scanning install directories.
2337            final int scanFlags = SCAN_NO_PATHS | SCAN_DEFER_DEX | SCAN_BOOTING | SCAN_INITIAL;
2338
2339            final String bootClassPath = System.getenv("BOOTCLASSPATH");
2340            final String systemServerClassPath = System.getenv("SYSTEMSERVERCLASSPATH");
2341
2342            if (bootClassPath == null) {
2343                Slog.w(TAG, "No BOOTCLASSPATH found!");
2344            }
2345
2346            if (systemServerClassPath == null) {
2347                Slog.w(TAG, "No SYSTEMSERVERCLASSPATH found!");
2348            }
2349
2350            final List<String> allInstructionSets = InstructionSets.getAllInstructionSets();
2351            final String[] dexCodeInstructionSets =
2352                    getDexCodeInstructionSets(
2353                            allInstructionSets.toArray(new String[allInstructionSets.size()]));
2354
2355            /**
2356             * Ensure all external libraries have had dexopt run on them.
2357             */
2358            if (mSharedLibraries.size() > 0) {
2359                // NOTE: For now, we're compiling these system "shared libraries"
2360                // (and framework jars) into all available architectures. It's possible
2361                // to compile them only when we come across an app that uses them (there's
2362                // already logic for that in scanPackageLI) but that adds some complexity.
2363                for (String dexCodeInstructionSet : dexCodeInstructionSets) {
2364                    for (SharedLibraryEntry libEntry : mSharedLibraries.values()) {
2365                        final String lib = libEntry.path;
2366                        if (lib == null) {
2367                            continue;
2368                        }
2369
2370                        try {
2371                            // Shared libraries do not have profiles so we perform a full
2372                            // AOT compilation (if needed).
2373                            int dexoptNeeded = DexFile.getDexOptNeeded(
2374                                    lib, dexCodeInstructionSet,
2375                                    getCompilerFilterForReason(REASON_SHARED_APK),
2376                                    false /* newProfile */);
2377                            if (dexoptNeeded != DexFile.NO_DEXOPT_NEEDED) {
2378                                mInstaller.dexopt(lib, Process.SYSTEM_UID, dexCodeInstructionSet,
2379                                        dexoptNeeded, DEXOPT_PUBLIC /*dexFlags*/,
2380                                        getCompilerFilterForReason(REASON_SHARED_APK),
2381                                        StorageManager.UUID_PRIVATE_INTERNAL,
2382                                        SKIP_SHARED_LIBRARY_CHECK);
2383                            }
2384                        } catch (FileNotFoundException e) {
2385                            Slog.w(TAG, "Library not found: " + lib);
2386                        } catch (IOException | InstallerException e) {
2387                            Slog.w(TAG, "Cannot dexopt " + lib + "; is it an APK or JAR? "
2388                                    + e.getMessage());
2389                        }
2390                    }
2391                }
2392            }
2393
2394            File frameworkDir = new File(Environment.getRootDirectory(), "framework");
2395
2396            final VersionInfo ver = mSettings.getInternalVersion();
2397            mIsUpgrade = !Build.FINGERPRINT.equals(ver.fingerprint);
2398
2399            // when upgrading from pre-M, promote system app permissions from install to runtime
2400            mPromoteSystemApps =
2401                    mIsUpgrade && ver.sdkVersion <= Build.VERSION_CODES.LOLLIPOP_MR1;
2402
2403            // When upgrading from pre-N, we need to handle package extraction like first boot,
2404            // as there is no profiling data available.
2405            mIsPreNUpgrade = mIsUpgrade && ver.sdkVersion < Build.VERSION_CODES.N;
2406
2407            // save off the names of pre-existing system packages prior to scanning; we don't
2408            // want to automatically grant runtime permissions for new system apps
2409            if (mPromoteSystemApps) {
2410                Iterator<PackageSetting> pkgSettingIter = mSettings.mPackages.values().iterator();
2411                while (pkgSettingIter.hasNext()) {
2412                    PackageSetting ps = pkgSettingIter.next();
2413                    if (isSystemApp(ps)) {
2414                        mExistingSystemPackages.add(ps.name);
2415                    }
2416                }
2417            }
2418
2419            // Collect vendor overlay packages.
2420            // (Do this before scanning any apps.)
2421            // For security and version matching reason, only consider
2422            // overlay packages if they reside in VENDOR_OVERLAY_DIR.
2423            File vendorOverlayDir = new File(VENDOR_OVERLAY_DIR);
2424            scanDirTracedLI(vendorOverlayDir, mDefParseFlags
2425                    | PackageParser.PARSE_IS_SYSTEM
2426                    | PackageParser.PARSE_IS_SYSTEM_DIR
2427                    | PackageParser.PARSE_TRUSTED_OVERLAY, scanFlags | SCAN_TRUSTED_OVERLAY, 0);
2428
2429            // Find base frameworks (resource packages without code).
2430            scanDirTracedLI(frameworkDir, mDefParseFlags
2431                    | PackageParser.PARSE_IS_SYSTEM
2432                    | PackageParser.PARSE_IS_SYSTEM_DIR
2433                    | PackageParser.PARSE_IS_PRIVILEGED,
2434                    scanFlags | SCAN_NO_DEX, 0);
2435
2436            // Collected privileged system packages.
2437            final File privilegedAppDir = new File(Environment.getRootDirectory(), "priv-app");
2438            scanDirTracedLI(privilegedAppDir, mDefParseFlags
2439                    | PackageParser.PARSE_IS_SYSTEM
2440                    | PackageParser.PARSE_IS_SYSTEM_DIR
2441                    | PackageParser.PARSE_IS_PRIVILEGED, scanFlags, 0);
2442
2443            // Collect ordinary system packages.
2444            final File systemAppDir = new File(Environment.getRootDirectory(), "app");
2445            scanDirTracedLI(systemAppDir, mDefParseFlags
2446                    | PackageParser.PARSE_IS_SYSTEM
2447                    | PackageParser.PARSE_IS_SYSTEM_DIR, scanFlags, 0);
2448
2449            // Collect all vendor packages.
2450            File vendorAppDir = new File("/vendor/app");
2451            try {
2452                vendorAppDir = vendorAppDir.getCanonicalFile();
2453            } catch (IOException e) {
2454                // failed to look up canonical path, continue with original one
2455            }
2456            scanDirTracedLI(vendorAppDir, mDefParseFlags
2457                    | PackageParser.PARSE_IS_SYSTEM
2458                    | PackageParser.PARSE_IS_SYSTEM_DIR, scanFlags, 0);
2459
2460            // Collect all OEM packages.
2461            final File oemAppDir = new File(Environment.getOemDirectory(), "app");
2462            scanDirTracedLI(oemAppDir, mDefParseFlags
2463                    | PackageParser.PARSE_IS_SYSTEM
2464                    | PackageParser.PARSE_IS_SYSTEM_DIR, scanFlags, 0);
2465
2466            // Prune any system packages that no longer exist.
2467            final List<String> possiblyDeletedUpdatedSystemApps = new ArrayList<String>();
2468            if (!mOnlyCore) {
2469                Iterator<PackageSetting> psit = mSettings.mPackages.values().iterator();
2470                while (psit.hasNext()) {
2471                    PackageSetting ps = psit.next();
2472
2473                    /*
2474                     * If this is not a system app, it can't be a
2475                     * disable system app.
2476                     */
2477                    if ((ps.pkgFlags & ApplicationInfo.FLAG_SYSTEM) == 0) {
2478                        continue;
2479                    }
2480
2481                    /*
2482                     * If the package is scanned, it's not erased.
2483                     */
2484                    final PackageParser.Package scannedPkg = mPackages.get(ps.name);
2485                    if (scannedPkg != null) {
2486                        /*
2487                         * If the system app is both scanned and in the
2488                         * disabled packages list, then it must have been
2489                         * added via OTA. Remove it from the currently
2490                         * scanned package so the previously user-installed
2491                         * application can be scanned.
2492                         */
2493                        if (mSettings.isDisabledSystemPackageLPr(ps.name)) {
2494                            logCriticalInfo(Log.WARN, "Expecting better updated system app for "
2495                                    + ps.name + "; removing system app.  Last known codePath="
2496                                    + ps.codePathString + ", installStatus=" + ps.installStatus
2497                                    + ", versionCode=" + ps.versionCode + "; scanned versionCode="
2498                                    + scannedPkg.mVersionCode);
2499                            removePackageLI(scannedPkg, true);
2500                            mExpectingBetter.put(ps.name, ps.codePath);
2501                        }
2502
2503                        continue;
2504                    }
2505
2506                    if (!mSettings.isDisabledSystemPackageLPr(ps.name)) {
2507                        psit.remove();
2508                        logCriticalInfo(Log.WARN, "System package " + ps.name
2509                                + " no longer exists; it's data will be wiped");
2510                        // Actual deletion of code and data will be handled by later
2511                        // reconciliation step
2512                    } else {
2513                        final PackageSetting disabledPs = mSettings.getDisabledSystemPkgLPr(ps.name);
2514                        if (disabledPs.codePath == null || !disabledPs.codePath.exists()) {
2515                            possiblyDeletedUpdatedSystemApps.add(ps.name);
2516                        }
2517                    }
2518                }
2519            }
2520
2521            //look for any incomplete package installations
2522            ArrayList<PackageSetting> deletePkgsList = mSettings.getListOfIncompleteInstallPackagesLPr();
2523            for (int i = 0; i < deletePkgsList.size(); i++) {
2524                // Actual deletion of code and data will be handled by later
2525                // reconciliation step
2526                final String packageName = deletePkgsList.get(i).name;
2527                logCriticalInfo(Log.WARN, "Cleaning up incompletely installed app: " + packageName);
2528                synchronized (mPackages) {
2529                    mSettings.removePackageLPw(packageName);
2530                }
2531            }
2532
2533            //delete tmp files
2534            deleteTempPackageFiles();
2535
2536            // Remove any shared userIDs that have no associated packages
2537            mSettings.pruneSharedUsersLPw();
2538
2539            if (!mOnlyCore) {
2540                EventLog.writeEvent(EventLogTags.BOOT_PROGRESS_PMS_DATA_SCAN_START,
2541                        SystemClock.uptimeMillis());
2542                scanDirTracedLI(mAppInstallDir, 0, scanFlags | SCAN_REQUIRE_KNOWN, 0);
2543
2544                scanDirTracedLI(mDrmAppPrivateInstallDir, mDefParseFlags
2545                        | PackageParser.PARSE_FORWARD_LOCK,
2546                        scanFlags | SCAN_REQUIRE_KNOWN, 0);
2547
2548                scanDirLI(mEphemeralInstallDir, mDefParseFlags
2549                        | PackageParser.PARSE_IS_EPHEMERAL,
2550                        scanFlags | SCAN_REQUIRE_KNOWN, 0);
2551
2552                /**
2553                 * Remove disable package settings for any updated system
2554                 * apps that were removed via an OTA. If they're not a
2555                 * previously-updated app, remove them completely.
2556                 * Otherwise, just revoke their system-level permissions.
2557                 */
2558                for (String deletedAppName : possiblyDeletedUpdatedSystemApps) {
2559                    PackageParser.Package deletedPkg = mPackages.get(deletedAppName);
2560                    mSettings.removeDisabledSystemPackageLPw(deletedAppName);
2561
2562                    String msg;
2563                    if (deletedPkg == null) {
2564                        msg = "Updated system package " + deletedAppName
2565                                + " no longer exists; it's data will be wiped";
2566                        // Actual deletion of code and data will be handled by later
2567                        // reconciliation step
2568                    } else {
2569                        msg = "Updated system app + " + deletedAppName
2570                                + " no longer present; removing system privileges for "
2571                                + deletedAppName;
2572
2573                        deletedPkg.applicationInfo.flags &= ~ApplicationInfo.FLAG_SYSTEM;
2574
2575                        PackageSetting deletedPs = mSettings.mPackages.get(deletedAppName);
2576                        deletedPs.pkgFlags &= ~ApplicationInfo.FLAG_SYSTEM;
2577                    }
2578                    logCriticalInfo(Log.WARN, msg);
2579                }
2580
2581                /**
2582                 * Make sure all system apps that we expected to appear on
2583                 * the userdata partition actually showed up. If they never
2584                 * appeared, crawl back and revive the system version.
2585                 */
2586                for (int i = 0; i < mExpectingBetter.size(); i++) {
2587                    final String packageName = mExpectingBetter.keyAt(i);
2588                    if (!mPackages.containsKey(packageName)) {
2589                        final File scanFile = mExpectingBetter.valueAt(i);
2590
2591                        logCriticalInfo(Log.WARN, "Expected better " + packageName
2592                                + " but never showed up; reverting to system");
2593
2594                        int reparseFlags = mDefParseFlags;
2595                        if (FileUtils.contains(privilegedAppDir, scanFile)) {
2596                            reparseFlags = PackageParser.PARSE_IS_SYSTEM
2597                                    | PackageParser.PARSE_IS_SYSTEM_DIR
2598                                    | PackageParser.PARSE_IS_PRIVILEGED;
2599                        } else if (FileUtils.contains(systemAppDir, scanFile)) {
2600                            reparseFlags = PackageParser.PARSE_IS_SYSTEM
2601                                    | PackageParser.PARSE_IS_SYSTEM_DIR;
2602                        } else if (FileUtils.contains(vendorAppDir, scanFile)) {
2603                            reparseFlags = PackageParser.PARSE_IS_SYSTEM
2604                                    | PackageParser.PARSE_IS_SYSTEM_DIR;
2605                        } else if (FileUtils.contains(oemAppDir, scanFile)) {
2606                            reparseFlags = PackageParser.PARSE_IS_SYSTEM
2607                                    | PackageParser.PARSE_IS_SYSTEM_DIR;
2608                        } else {
2609                            Slog.e(TAG, "Ignoring unexpected fallback path " + scanFile);
2610                            continue;
2611                        }
2612
2613                        mSettings.enableSystemPackageLPw(packageName);
2614
2615                        try {
2616                            scanPackageTracedLI(scanFile, reparseFlags, scanFlags, 0, null);
2617                        } catch (PackageManagerException e) {
2618                            Slog.e(TAG, "Failed to parse original system package: "
2619                                    + e.getMessage());
2620                        }
2621                    }
2622                }
2623            }
2624            mExpectingBetter.clear();
2625
2626            // Resolve protected action filters. Only the setup wizard is allowed to
2627            // have a high priority filter for these actions.
2628            mSetupWizardPackage = getSetupWizardPackageName();
2629            if (mProtectedFilters.size() > 0) {
2630                if (DEBUG_FILTERS && mSetupWizardPackage == null) {
2631                    Slog.i(TAG, "No setup wizard;"
2632                        + " All protected intents capped to priority 0");
2633                }
2634                for (ActivityIntentInfo filter : mProtectedFilters) {
2635                    if (filter.activity.info.packageName.equals(mSetupWizardPackage)) {
2636                        if (DEBUG_FILTERS) {
2637                            Slog.i(TAG, "Found setup wizard;"
2638                                + " allow priority " + filter.getPriority() + ";"
2639                                + " package: " + filter.activity.info.packageName
2640                                + " activity: " + filter.activity.className
2641                                + " priority: " + filter.getPriority());
2642                        }
2643                        // skip setup wizard; allow it to keep the high priority filter
2644                        continue;
2645                    }
2646                    Slog.w(TAG, "Protected action; cap priority to 0;"
2647                            + " package: " + filter.activity.info.packageName
2648                            + " activity: " + filter.activity.className
2649                            + " origPrio: " + filter.getPriority());
2650                    filter.setPriority(0);
2651                }
2652            }
2653            mDeferProtectedFilters = false;
2654            mProtectedFilters.clear();
2655
2656            // Now that we know all of the shared libraries, update all clients to have
2657            // the correct library paths.
2658            updateAllSharedLibrariesLPw();
2659
2660            for (SharedUserSetting setting : mSettings.getAllSharedUsersLPw()) {
2661                // NOTE: We ignore potential failures here during a system scan (like
2662                // the rest of the commands above) because there's precious little we
2663                // can do about it. A settings error is reported, though.
2664                adjustCpuAbisForSharedUserLPw(setting.packages, null /* scanned package */,
2665                        false /* boot complete */);
2666            }
2667
2668            // Now that we know all the packages we are keeping,
2669            // read and update their last usage times.
2670            mPackageUsage.readLP();
2671
2672            EventLog.writeEvent(EventLogTags.BOOT_PROGRESS_PMS_SCAN_END,
2673                    SystemClock.uptimeMillis());
2674            Slog.i(TAG, "Time to scan packages: "
2675                    + ((SystemClock.uptimeMillis()-startTime)/1000f)
2676                    + " seconds");
2677
2678            // If the platform SDK has changed since the last time we booted,
2679            // we need to re-grant app permission to catch any new ones that
2680            // appear.  This is really a hack, and means that apps can in some
2681            // cases get permissions that the user didn't initially explicitly
2682            // allow...  it would be nice to have some better way to handle
2683            // this situation.
2684            int updateFlags = UPDATE_PERMISSIONS_ALL;
2685            if (ver.sdkVersion != mSdkVersion) {
2686                Slog.i(TAG, "Platform changed from " + ver.sdkVersion + " to "
2687                        + mSdkVersion + "; regranting permissions for internal storage");
2688                updateFlags |= UPDATE_PERMISSIONS_REPLACE_PKG | UPDATE_PERMISSIONS_REPLACE_ALL;
2689            }
2690            updatePermissionsLPw(null, null, StorageManager.UUID_PRIVATE_INTERNAL, updateFlags);
2691            ver.sdkVersion = mSdkVersion;
2692
2693            // If this is the first boot or an update from pre-M, and it is a normal
2694            // boot, then we need to initialize the default preferred apps across
2695            // all defined users.
2696            if (!onlyCore && (mPromoteSystemApps || !mRestoredSettings)) {
2697                for (UserInfo user : sUserManager.getUsers(true)) {
2698                    mSettings.applyDefaultPreferredAppsLPw(this, user.id);
2699                    applyFactoryDefaultBrowserLPw(user.id);
2700                    primeDomainVerificationsLPw(user.id);
2701                }
2702            }
2703
2704            // Prepare storage for system user really early during boot,
2705            // since core system apps like SettingsProvider and SystemUI
2706            // can't wait for user to start
2707            final int storageFlags;
2708            if (StorageManager.isFileEncryptedNativeOrEmulated()) {
2709                storageFlags = StorageManager.FLAG_STORAGE_DE;
2710            } else {
2711                storageFlags = StorageManager.FLAG_STORAGE_DE | StorageManager.FLAG_STORAGE_CE;
2712            }
2713            reconcileAppsDataLI(StorageManager.UUID_PRIVATE_INTERNAL, UserHandle.USER_SYSTEM,
2714                    storageFlags);
2715
2716            // If this is first boot after an OTA, and a normal boot, then
2717            // we need to clear code cache directories.
2718            // Note that we do *not* clear the application profiles. These remain valid
2719            // across OTAs and are used to drive profile verification (post OTA) and
2720            // profile compilation (without waiting to collect a fresh set of profiles).
2721            if (mIsUpgrade && !onlyCore) {
2722                Slog.i(TAG, "Build fingerprint changed; clearing code caches");
2723                for (int i = 0; i < mSettings.mPackages.size(); i++) {
2724                    final PackageSetting ps = mSettings.mPackages.valueAt(i);
2725                    if (Objects.equals(StorageManager.UUID_PRIVATE_INTERNAL, ps.volumeUuid)) {
2726                        // No apps are running this early, so no need to freeze
2727                        clearAppDataLIF(ps.pkg, UserHandle.USER_ALL,
2728                                StorageManager.FLAG_STORAGE_DE | StorageManager.FLAG_STORAGE_CE
2729                                        | Installer.FLAG_CLEAR_CODE_CACHE_ONLY);
2730                    }
2731                }
2732                ver.fingerprint = Build.FINGERPRINT;
2733            }
2734
2735            checkDefaultBrowser();
2736
2737            // clear only after permissions and other defaults have been updated
2738            mExistingSystemPackages.clear();
2739            mPromoteSystemApps = false;
2740
2741            // All the changes are done during package scanning.
2742            ver.databaseVersion = Settings.CURRENT_DATABASE_VERSION;
2743
2744            // can downgrade to reader
2745            mSettings.writeLPr();
2746
2747            // Perform dexopt on all apps that mark themselves as coreApps. We do this pretty
2748            // early on (before the package manager declares itself as early) because other
2749            // components in the system server might ask for package contexts for these apps.
2750            //
2751            // Note that "onlyCore" in this context means the system is encrypted or encrypting
2752            // (i.e, that the data partition is unavailable).
2753            if ((isFirstBoot() || isUpgrade() || VMRuntime.didPruneDalvikCache()) && !onlyCore) {
2754                long start = System.nanoTime();
2755                List<PackageParser.Package> coreApps = new ArrayList<>();
2756                for (PackageParser.Package pkg : mPackages.values()) {
2757                    if (pkg.coreApp) {
2758                        coreApps.add(pkg);
2759                    }
2760                }
2761
2762                int[] stats = performDexOpt(coreApps, false,
2763                        getCompilerFilterForReason(REASON_CORE_APP));
2764
2765                final int elapsedTimeSeconds =
2766                        (int) TimeUnit.NANOSECONDS.toSeconds(System.nanoTime() - start);
2767                MetricsLogger.histogram(mContext, "opt_coreapps_time_s", elapsedTimeSeconds);
2768
2769                if (DEBUG_DEXOPT) {
2770                    Slog.i(TAG, "Dex-opt core apps took : " + elapsedTimeSeconds + " seconds (" +
2771                            stats[0] + ", " + stats[1] + ", " + stats[2] + ")");
2772                }
2773
2774
2775                // TODO: Should we log these stats to tron too ?
2776                // MetricsLogger.histogram(mContext, "opt_coreapps_num_dexopted", stats[0]);
2777                // MetricsLogger.histogram(mContext, "opt_coreapps_num_skipped", stats[1]);
2778                // MetricsLogger.histogram(mContext, "opt_coreapps_num_failed", stats[2]);
2779                // MetricsLogger.histogram(mContext, "opt_coreapps_num_total", coreApps.size());
2780            }
2781
2782            EventLog.writeEvent(EventLogTags.BOOT_PROGRESS_PMS_READY,
2783                    SystemClock.uptimeMillis());
2784
2785            if (!mOnlyCore) {
2786                mRequiredVerifierPackage = getRequiredButNotReallyRequiredVerifierLPr();
2787                mRequiredInstallerPackage = getRequiredInstallerLPr();
2788                mIntentFilterVerifierComponent = getIntentFilterVerifierComponentNameLPr();
2789                mIntentFilterVerifier = new IntentVerifierProxy(mContext,
2790                        mIntentFilterVerifierComponent);
2791                mServicesSystemSharedLibraryPackageName = getRequiredSharedLibraryLPr(
2792                        PackageManager.SYSTEM_SHARED_LIBRARY_SERVICES);
2793                mSharedSystemSharedLibraryPackageName = getRequiredSharedLibraryLPr(
2794                        PackageManager.SYSTEM_SHARED_LIBRARY_SHARED);
2795            } else {
2796                mRequiredVerifierPackage = null;
2797                mRequiredInstallerPackage = null;
2798                mIntentFilterVerifierComponent = null;
2799                mIntentFilterVerifier = null;
2800                mServicesSystemSharedLibraryPackageName = null;
2801                mSharedSystemSharedLibraryPackageName = null;
2802            }
2803
2804            mInstallerService = new PackageInstallerService(context, this);
2805
2806            final ComponentName ephemeralResolverComponent = getEphemeralResolverLPr();
2807            final ComponentName ephemeralInstallerComponent = getEphemeralInstallerLPr();
2808            // both the installer and resolver must be present to enable ephemeral
2809            if (ephemeralInstallerComponent != null && ephemeralResolverComponent != null) {
2810                if (DEBUG_EPHEMERAL) {
2811                    Slog.i(TAG, "Ephemeral activated; resolver: " + ephemeralResolverComponent
2812                            + " installer:" + ephemeralInstallerComponent);
2813                }
2814                mEphemeralResolverComponent = ephemeralResolverComponent;
2815                mEphemeralInstallerComponent = ephemeralInstallerComponent;
2816                setUpEphemeralInstallerActivityLP(mEphemeralInstallerComponent);
2817                mEphemeralResolverConnection =
2818                        new EphemeralResolverConnection(mContext, mEphemeralResolverComponent);
2819            } else {
2820                if (DEBUG_EPHEMERAL) {
2821                    final String missingComponent =
2822                            (ephemeralResolverComponent == null)
2823                            ? (ephemeralInstallerComponent == null)
2824                                    ? "resolver and installer"
2825                                    : "resolver"
2826                            : "installer";
2827                    Slog.i(TAG, "Ephemeral deactivated; missing " + missingComponent);
2828                }
2829                mEphemeralResolverComponent = null;
2830                mEphemeralInstallerComponent = null;
2831                mEphemeralResolverConnection = null;
2832            }
2833
2834            mEphemeralApplicationRegistry = new EphemeralApplicationRegistry(this);
2835        } // synchronized (mPackages)
2836        } // synchronized (mInstallLock)
2837
2838        // Now after opening every single application zip, make sure they
2839        // are all flushed.  Not really needed, but keeps things nice and
2840        // tidy.
2841        Runtime.getRuntime().gc();
2842
2843        // The initial scanning above does many calls into installd while
2844        // holding the mPackages lock, but we're mostly interested in yelling
2845        // once we have a booted system.
2846        mInstaller.setWarnIfHeld(mPackages);
2847
2848        // Expose private service for system components to use.
2849        LocalServices.addService(PackageManagerInternal.class, new PackageManagerInternalImpl());
2850    }
2851
2852    @Override
2853    public boolean isFirstBoot() {
2854        return !mRestoredSettings;
2855    }
2856
2857    @Override
2858    public boolean isOnlyCoreApps() {
2859        return mOnlyCore;
2860    }
2861
2862    @Override
2863    public boolean isUpgrade() {
2864        return mIsUpgrade;
2865    }
2866
2867    private @Nullable String getRequiredButNotReallyRequiredVerifierLPr() {
2868        final Intent intent = new Intent(Intent.ACTION_PACKAGE_NEEDS_VERIFICATION);
2869
2870        final List<ResolveInfo> matches = queryIntentReceiversInternal(intent, PACKAGE_MIME_TYPE,
2871                MATCH_SYSTEM_ONLY | MATCH_DIRECT_BOOT_AWARE | MATCH_DIRECT_BOOT_UNAWARE,
2872                UserHandle.USER_SYSTEM);
2873        if (matches.size() == 1) {
2874            return matches.get(0).getComponentInfo().packageName;
2875        } else {
2876            Log.e(TAG, "There should probably be exactly one verifier; found " + matches);
2877            return null;
2878        }
2879    }
2880
2881    private @NonNull String getRequiredSharedLibraryLPr(String libraryName) {
2882        synchronized (mPackages) {
2883            SharedLibraryEntry libraryEntry = mSharedLibraries.get(libraryName);
2884            if (libraryEntry == null) {
2885                throw new IllegalStateException("Missing required shared library:" + libraryName);
2886            }
2887            return libraryEntry.apk;
2888        }
2889    }
2890
2891    private @NonNull String getRequiredInstallerLPr() {
2892        final Intent intent = new Intent(Intent.ACTION_INSTALL_PACKAGE);
2893        intent.addCategory(Intent.CATEGORY_DEFAULT);
2894        intent.setDataAndType(Uri.fromFile(new File("foo.apk")), PACKAGE_MIME_TYPE);
2895
2896        final List<ResolveInfo> matches = queryIntentActivitiesInternal(intent, PACKAGE_MIME_TYPE,
2897                MATCH_SYSTEM_ONLY | MATCH_DIRECT_BOOT_AWARE | MATCH_DIRECT_BOOT_UNAWARE,
2898                UserHandle.USER_SYSTEM);
2899        if (matches.size() == 1) {
2900            ResolveInfo resolveInfo = matches.get(0);
2901            if (!resolveInfo.activityInfo.applicationInfo.isPrivilegedApp()) {
2902                throw new RuntimeException("The installer must be a privileged app");
2903            }
2904            return matches.get(0).getComponentInfo().packageName;
2905        } else {
2906            throw new RuntimeException("There must be exactly one installer; found " + matches);
2907        }
2908    }
2909
2910    private @NonNull ComponentName getIntentFilterVerifierComponentNameLPr() {
2911        final Intent intent = new Intent(Intent.ACTION_INTENT_FILTER_NEEDS_VERIFICATION);
2912
2913        final List<ResolveInfo> matches = queryIntentReceiversInternal(intent, PACKAGE_MIME_TYPE,
2914                MATCH_SYSTEM_ONLY | MATCH_DIRECT_BOOT_AWARE | MATCH_DIRECT_BOOT_UNAWARE,
2915                UserHandle.USER_SYSTEM);
2916        ResolveInfo best = null;
2917        final int N = matches.size();
2918        for (int i = 0; i < N; i++) {
2919            final ResolveInfo cur = matches.get(i);
2920            final String packageName = cur.getComponentInfo().packageName;
2921            if (checkPermission(android.Manifest.permission.INTENT_FILTER_VERIFICATION_AGENT,
2922                    packageName, UserHandle.USER_SYSTEM) != PackageManager.PERMISSION_GRANTED) {
2923                continue;
2924            }
2925
2926            if (best == null || cur.priority > best.priority) {
2927                best = cur;
2928            }
2929        }
2930
2931        if (best != null) {
2932            return best.getComponentInfo().getComponentName();
2933        } else {
2934            throw new RuntimeException("There must be at least one intent filter verifier");
2935        }
2936    }
2937
2938    private @Nullable ComponentName getEphemeralResolverLPr() {
2939        final String[] packageArray =
2940                mContext.getResources().getStringArray(R.array.config_ephemeralResolverPackage);
2941        if (packageArray.length == 0) {
2942            if (DEBUG_EPHEMERAL) {
2943                Slog.d(TAG, "Ephemeral resolver NOT found; empty package list");
2944            }
2945            return null;
2946        }
2947
2948        final Intent resolverIntent = new Intent(Intent.ACTION_RESOLVE_EPHEMERAL_PACKAGE);
2949        final List<ResolveInfo> resolvers = queryIntentServicesInternal(resolverIntent, null,
2950                MATCH_SYSTEM_ONLY | MATCH_DIRECT_BOOT_AWARE | MATCH_DIRECT_BOOT_UNAWARE,
2951                UserHandle.USER_SYSTEM);
2952
2953        final int N = resolvers.size();
2954        if (N == 0) {
2955            if (DEBUG_EPHEMERAL) {
2956                Slog.d(TAG, "Ephemeral resolver NOT found; no matching intent filters");
2957            }
2958            return null;
2959        }
2960
2961        final Set<String> possiblePackages = new ArraySet<>(Arrays.asList(packageArray));
2962        for (int i = 0; i < N; i++) {
2963            final ResolveInfo info = resolvers.get(i);
2964
2965            if (info.serviceInfo == null) {
2966                continue;
2967            }
2968
2969            final String packageName = info.serviceInfo.packageName;
2970            if (!possiblePackages.contains(packageName)) {
2971                if (DEBUG_EPHEMERAL) {
2972                    Slog.d(TAG, "Ephemeral resolver not in allowed package list;"
2973                            + " pkg: " + packageName + ", info:" + info);
2974                }
2975                continue;
2976            }
2977
2978            if (DEBUG_EPHEMERAL) {
2979                Slog.v(TAG, "Ephemeral resolver found;"
2980                        + " pkg: " + packageName + ", info:" + info);
2981            }
2982            return new ComponentName(packageName, info.serviceInfo.name);
2983        }
2984        if (DEBUG_EPHEMERAL) {
2985            Slog.v(TAG, "Ephemeral resolver NOT found");
2986        }
2987        return null;
2988    }
2989
2990    private @Nullable ComponentName getEphemeralInstallerLPr() {
2991        final Intent intent = new Intent(Intent.ACTION_INSTALL_EPHEMERAL_PACKAGE);
2992        intent.addCategory(Intent.CATEGORY_DEFAULT);
2993        intent.setDataAndType(Uri.fromFile(new File("foo.apk")), PACKAGE_MIME_TYPE);
2994
2995        final List<ResolveInfo> matches = queryIntentActivitiesInternal(intent, PACKAGE_MIME_TYPE,
2996                MATCH_SYSTEM_ONLY | MATCH_DIRECT_BOOT_AWARE | MATCH_DIRECT_BOOT_UNAWARE,
2997                UserHandle.USER_SYSTEM);
2998        if (matches.size() == 0) {
2999            return null;
3000        } else if (matches.size() == 1) {
3001            return matches.get(0).getComponentInfo().getComponentName();
3002        } else {
3003            throw new RuntimeException(
3004                    "There must be at most one ephemeral installer; found " + matches);
3005        }
3006    }
3007
3008    private void primeDomainVerificationsLPw(int userId) {
3009        if (DEBUG_DOMAIN_VERIFICATION) {
3010            Slog.d(TAG, "Priming domain verifications in user " + userId);
3011        }
3012
3013        SystemConfig systemConfig = SystemConfig.getInstance();
3014        ArraySet<String> packages = systemConfig.getLinkedApps();
3015        ArraySet<String> domains = new ArraySet<String>();
3016
3017        for (String packageName : packages) {
3018            PackageParser.Package pkg = mPackages.get(packageName);
3019            if (pkg != null) {
3020                if (!pkg.isSystemApp()) {
3021                    Slog.w(TAG, "Non-system app '" + packageName + "' in sysconfig <app-link>");
3022                    continue;
3023                }
3024
3025                domains.clear();
3026                for (PackageParser.Activity a : pkg.activities) {
3027                    for (ActivityIntentInfo filter : a.intents) {
3028                        if (hasValidDomains(filter)) {
3029                            domains.addAll(filter.getHostsList());
3030                        }
3031                    }
3032                }
3033
3034                if (domains.size() > 0) {
3035                    if (DEBUG_DOMAIN_VERIFICATION) {
3036                        Slog.v(TAG, "      + " + packageName);
3037                    }
3038                    // 'Undefined' in the global IntentFilterVerificationInfo, i.e. the usual
3039                    // state w.r.t. the formal app-linkage "no verification attempted" state;
3040                    // and then 'always' in the per-user state actually used for intent resolution.
3041                    final IntentFilterVerificationInfo ivi;
3042                    ivi = mSettings.createIntentFilterVerificationIfNeededLPw(packageName,
3043                            new ArrayList<String>(domains));
3044                    ivi.setStatus(INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_UNDEFINED);
3045                    mSettings.updateIntentFilterVerificationStatusLPw(packageName,
3046                            INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_ALWAYS, userId);
3047                } else {
3048                    Slog.w(TAG, "Sysconfig <app-link> package '" + packageName
3049                            + "' does not handle web links");
3050                }
3051            } else {
3052                Slog.w(TAG, "Unknown package " + packageName + " in sysconfig <app-link>");
3053            }
3054        }
3055
3056        scheduleWritePackageRestrictionsLocked(userId);
3057        scheduleWriteSettingsLocked();
3058    }
3059
3060    private void applyFactoryDefaultBrowserLPw(int userId) {
3061        // The default browser app's package name is stored in a string resource,
3062        // with a product-specific overlay used for vendor customization.
3063        String browserPkg = mContext.getResources().getString(
3064                com.android.internal.R.string.default_browser);
3065        if (!TextUtils.isEmpty(browserPkg)) {
3066            // non-empty string => required to be a known package
3067            PackageSetting ps = mSettings.mPackages.get(browserPkg);
3068            if (ps == null) {
3069                Slog.e(TAG, "Product default browser app does not exist: " + browserPkg);
3070                browserPkg = null;
3071            } else {
3072                mSettings.setDefaultBrowserPackageNameLPw(browserPkg, userId);
3073            }
3074        }
3075
3076        // Nothing valid explicitly set? Make the factory-installed browser the explicit
3077        // default.  If there's more than one, just leave everything alone.
3078        if (browserPkg == null) {
3079            calculateDefaultBrowserLPw(userId);
3080        }
3081    }
3082
3083    private void calculateDefaultBrowserLPw(int userId) {
3084        List<String> allBrowsers = resolveAllBrowserApps(userId);
3085        final String browserPkg = (allBrowsers.size() == 1) ? allBrowsers.get(0) : null;
3086        mSettings.setDefaultBrowserPackageNameLPw(browserPkg, userId);
3087    }
3088
3089    private List<String> resolveAllBrowserApps(int userId) {
3090        // Resolve the canonical browser intent and check that the handleAllWebDataURI boolean is set
3091        List<ResolveInfo> list = queryIntentActivitiesInternal(sBrowserIntent, null,
3092                PackageManager.MATCH_ALL, userId);
3093
3094        final int count = list.size();
3095        List<String> result = new ArrayList<String>(count);
3096        for (int i=0; i<count; i++) {
3097            ResolveInfo info = list.get(i);
3098            if (info.activityInfo == null
3099                    || !info.handleAllWebDataURI
3100                    || (info.activityInfo.applicationInfo.flags & ApplicationInfo.FLAG_SYSTEM) == 0
3101                    || result.contains(info.activityInfo.packageName)) {
3102                continue;
3103            }
3104            result.add(info.activityInfo.packageName);
3105        }
3106
3107        return result;
3108    }
3109
3110    private boolean packageIsBrowser(String packageName, int userId) {
3111        List<ResolveInfo> list = queryIntentActivitiesInternal(sBrowserIntent, null,
3112                PackageManager.MATCH_ALL, userId);
3113        final int N = list.size();
3114        for (int i = 0; i < N; i++) {
3115            ResolveInfo info = list.get(i);
3116            if (packageName.equals(info.activityInfo.packageName)) {
3117                return true;
3118            }
3119        }
3120        return false;
3121    }
3122
3123    private void checkDefaultBrowser() {
3124        final int myUserId = UserHandle.myUserId();
3125        final String packageName = getDefaultBrowserPackageName(myUserId);
3126        if (packageName != null) {
3127            PackageInfo info = getPackageInfo(packageName, 0, myUserId);
3128            if (info == null) {
3129                Slog.w(TAG, "Default browser no longer installed: " + packageName);
3130                synchronized (mPackages) {
3131                    applyFactoryDefaultBrowserLPw(myUserId);    // leaves ambiguous when > 1
3132                }
3133            }
3134        }
3135    }
3136
3137    @Override
3138    public boolean onTransact(int code, Parcel data, Parcel reply, int flags)
3139            throws RemoteException {
3140        try {
3141            return super.onTransact(code, data, reply, flags);
3142        } catch (RuntimeException e) {
3143            if (!(e instanceof SecurityException) && !(e instanceof IllegalArgumentException)) {
3144                Slog.wtf(TAG, "Package Manager Crash", e);
3145            }
3146            throw e;
3147        }
3148    }
3149
3150    static int[] appendInts(int[] cur, int[] add) {
3151        if (add == null) return cur;
3152        if (cur == null) return add;
3153        final int N = add.length;
3154        for (int i=0; i<N; i++) {
3155            cur = appendInt(cur, add[i]);
3156        }
3157        return cur;
3158    }
3159
3160    private PackageInfo generatePackageInfo(PackageSetting ps, int flags, int userId) {
3161        if (!sUserManager.exists(userId)) return null;
3162        if (ps == null) {
3163            return null;
3164        }
3165        final PackageParser.Package p = ps.pkg;
3166        if (p == null) {
3167            return null;
3168        }
3169
3170        final PermissionsState permissionsState = ps.getPermissionsState();
3171
3172        final int[] gids = permissionsState.computeGids(userId);
3173        final Set<String> permissions = permissionsState.getPermissions(userId);
3174        final PackageUserState state = ps.readUserState(userId);
3175
3176        return PackageParser.generatePackageInfo(p, gids, flags,
3177                ps.firstInstallTime, ps.lastUpdateTime, permissions, state, userId);
3178    }
3179
3180    @Override
3181    public void checkPackageStartable(String packageName, int userId) {
3182        final boolean userKeyUnlocked = StorageManager.isUserKeyUnlocked(userId);
3183
3184        synchronized (mPackages) {
3185            final PackageSetting ps = mSettings.mPackages.get(packageName);
3186            if (ps == null) {
3187                throw new SecurityException("Package " + packageName + " was not found!");
3188            }
3189
3190            if (!ps.getInstalled(userId)) {
3191                throw new SecurityException(
3192                        "Package " + packageName + " was not installed for user " + userId + "!");
3193            }
3194
3195            if (mSafeMode && !ps.isSystem()) {
3196                throw new SecurityException("Package " + packageName + " not a system app!");
3197            }
3198
3199            if (mFrozenPackages.contains(packageName)) {
3200                throw new SecurityException("Package " + packageName + " is currently frozen!");
3201            }
3202
3203            if (!userKeyUnlocked && !(ps.pkg.applicationInfo.isDirectBootAware()
3204                    || ps.pkg.applicationInfo.isPartiallyDirectBootAware())) {
3205                throw new SecurityException("Package " + packageName + " is not encryption aware!");
3206            }
3207        }
3208    }
3209
3210    @Override
3211    public boolean isPackageAvailable(String packageName, int userId) {
3212        if (!sUserManager.exists(userId)) return false;
3213        enforceCrossUserPermission(Binder.getCallingUid(), userId,
3214                false /* requireFullPermission */, false /* checkShell */, "is package available");
3215        synchronized (mPackages) {
3216            PackageParser.Package p = mPackages.get(packageName);
3217            if (p != null) {
3218                final PackageSetting ps = (PackageSetting) p.mExtras;
3219                if (ps != null) {
3220                    final PackageUserState state = ps.readUserState(userId);
3221                    if (state != null) {
3222                        return PackageParser.isAvailable(state);
3223                    }
3224                }
3225            }
3226        }
3227        return false;
3228    }
3229
3230    @Override
3231    public PackageInfo getPackageInfo(String packageName, int flags, int userId) {
3232        if (!sUserManager.exists(userId)) return null;
3233        flags = updateFlagsForPackage(flags, userId, packageName);
3234        enforceCrossUserPermission(Binder.getCallingUid(), userId,
3235                false /* requireFullPermission */, false /* checkShell */, "get package info");
3236        // reader
3237        synchronized (mPackages) {
3238            final boolean matchFactoryOnly = (flags & MATCH_FACTORY_ONLY) != 0;
3239            PackageParser.Package p = null;
3240            if (matchFactoryOnly) {
3241                final PackageSetting ps = mSettings.getDisabledSystemPkgLPr(packageName);
3242                if (ps != null) {
3243                    return generatePackageInfo(ps, flags, userId);
3244                }
3245            }
3246            if (p == null) {
3247                p = mPackages.get(packageName);
3248                if (matchFactoryOnly && p != null && !isSystemApp(p)) {
3249                    return null;
3250                }
3251            }
3252            if (DEBUG_PACKAGE_INFO)
3253                Log.v(TAG, "getPackageInfo " + packageName + ": " + p);
3254            if (p != null) {
3255                return generatePackageInfo((PackageSetting)p.mExtras, flags, userId);
3256            }
3257            if (!matchFactoryOnly && (flags & MATCH_UNINSTALLED_PACKAGES) != 0) {
3258                final PackageSetting ps = mSettings.mPackages.get(packageName);
3259                return generatePackageInfo(ps, flags, userId);
3260            }
3261        }
3262        return null;
3263    }
3264
3265    @Override
3266    public String[] currentToCanonicalPackageNames(String[] names) {
3267        String[] out = new String[names.length];
3268        // reader
3269        synchronized (mPackages) {
3270            for (int i=names.length-1; i>=0; i--) {
3271                PackageSetting ps = mSettings.mPackages.get(names[i]);
3272                out[i] = ps != null && ps.realName != null ? ps.realName : names[i];
3273            }
3274        }
3275        return out;
3276    }
3277
3278    @Override
3279    public String[] canonicalToCurrentPackageNames(String[] names) {
3280        String[] out = new String[names.length];
3281        // reader
3282        synchronized (mPackages) {
3283            for (int i=names.length-1; i>=0; i--) {
3284                String cur = mSettings.mRenamedPackages.get(names[i]);
3285                out[i] = cur != null ? cur : names[i];
3286            }
3287        }
3288        return out;
3289    }
3290
3291    @Override
3292    public int getPackageUid(String packageName, int flags, int userId) {
3293        if (!sUserManager.exists(userId)) return -1;
3294        flags = updateFlagsForPackage(flags, userId, packageName);
3295        enforceCrossUserPermission(Binder.getCallingUid(), userId,
3296                false /* requireFullPermission */, false /* checkShell */, "get package uid");
3297
3298        // reader
3299        synchronized (mPackages) {
3300            final PackageParser.Package p = mPackages.get(packageName);
3301            if (p != null && p.isMatch(flags)) {
3302                return UserHandle.getUid(userId, p.applicationInfo.uid);
3303            }
3304            if ((flags & MATCH_UNINSTALLED_PACKAGES) != 0) {
3305                final PackageSetting ps = mSettings.mPackages.get(packageName);
3306                if (ps != null && ps.isMatch(flags)) {
3307                    return UserHandle.getUid(userId, ps.appId);
3308                }
3309            }
3310        }
3311
3312        return -1;
3313    }
3314
3315    @Override
3316    public int[] getPackageGids(String packageName, int flags, int userId) {
3317        if (!sUserManager.exists(userId)) return null;
3318        flags = updateFlagsForPackage(flags, userId, packageName);
3319        enforceCrossUserPermission(Binder.getCallingUid(), userId,
3320                false /* requireFullPermission */, false /* checkShell */,
3321                "getPackageGids");
3322
3323        // reader
3324        synchronized (mPackages) {
3325            final PackageParser.Package p = mPackages.get(packageName);
3326            if (p != null && p.isMatch(flags)) {
3327                PackageSetting ps = (PackageSetting) p.mExtras;
3328                return ps.getPermissionsState().computeGids(userId);
3329            }
3330            if ((flags & MATCH_UNINSTALLED_PACKAGES) != 0) {
3331                final PackageSetting ps = mSettings.mPackages.get(packageName);
3332                if (ps != null && ps.isMatch(flags)) {
3333                    return ps.getPermissionsState().computeGids(userId);
3334                }
3335            }
3336        }
3337
3338        return null;
3339    }
3340
3341    static PermissionInfo generatePermissionInfo(BasePermission bp, int flags) {
3342        if (bp.perm != null) {
3343            return PackageParser.generatePermissionInfo(bp.perm, flags);
3344        }
3345        PermissionInfo pi = new PermissionInfo();
3346        pi.name = bp.name;
3347        pi.packageName = bp.sourcePackage;
3348        pi.nonLocalizedLabel = bp.name;
3349        pi.protectionLevel = bp.protectionLevel;
3350        return pi;
3351    }
3352
3353    @Override
3354    public PermissionInfo getPermissionInfo(String name, int flags) {
3355        // reader
3356        synchronized (mPackages) {
3357            final BasePermission p = mSettings.mPermissions.get(name);
3358            if (p != null) {
3359                return generatePermissionInfo(p, flags);
3360            }
3361            return null;
3362        }
3363    }
3364
3365    @Override
3366    public @Nullable ParceledListSlice<PermissionInfo> queryPermissionsByGroup(String group,
3367            int flags) {
3368        // reader
3369        synchronized (mPackages) {
3370            if (group != null && !mPermissionGroups.containsKey(group)) {
3371                // This is thrown as NameNotFoundException
3372                return null;
3373            }
3374
3375            ArrayList<PermissionInfo> out = new ArrayList<PermissionInfo>(10);
3376            for (BasePermission p : mSettings.mPermissions.values()) {
3377                if (group == null) {
3378                    if (p.perm == null || p.perm.info.group == null) {
3379                        out.add(generatePermissionInfo(p, flags));
3380                    }
3381                } else {
3382                    if (p.perm != null && group.equals(p.perm.info.group)) {
3383                        out.add(PackageParser.generatePermissionInfo(p.perm, flags));
3384                    }
3385                }
3386            }
3387            return new ParceledListSlice<>(out);
3388        }
3389    }
3390
3391    @Override
3392    public PermissionGroupInfo getPermissionGroupInfo(String name, int flags) {
3393        // reader
3394        synchronized (mPackages) {
3395            return PackageParser.generatePermissionGroupInfo(
3396                    mPermissionGroups.get(name), flags);
3397        }
3398    }
3399
3400    @Override
3401    public @NonNull ParceledListSlice<PermissionGroupInfo> getAllPermissionGroups(int flags) {
3402        // reader
3403        synchronized (mPackages) {
3404            final int N = mPermissionGroups.size();
3405            ArrayList<PermissionGroupInfo> out
3406                    = new ArrayList<PermissionGroupInfo>(N);
3407            for (PackageParser.PermissionGroup pg : mPermissionGroups.values()) {
3408                out.add(PackageParser.generatePermissionGroupInfo(pg, flags));
3409            }
3410            return new ParceledListSlice<>(out);
3411        }
3412    }
3413
3414    private ApplicationInfo generateApplicationInfoFromSettingsLPw(String packageName, int flags,
3415            int userId) {
3416        if (!sUserManager.exists(userId)) return null;
3417        PackageSetting ps = mSettings.mPackages.get(packageName);
3418        if (ps != null) {
3419            if (ps.pkg == null) {
3420                final PackageInfo pInfo = generatePackageInfo(ps, flags, userId);
3421                if (pInfo != null) {
3422                    return pInfo.applicationInfo;
3423                }
3424                return null;
3425            }
3426            return PackageParser.generateApplicationInfo(ps.pkg, flags,
3427                    ps.readUserState(userId), userId);
3428        }
3429        return null;
3430    }
3431
3432    @Override
3433    public ApplicationInfo getApplicationInfo(String packageName, int flags, int userId) {
3434        if (!sUserManager.exists(userId)) return null;
3435        flags = updateFlagsForApplication(flags, userId, packageName);
3436        enforceCrossUserPermission(Binder.getCallingUid(), userId,
3437                false /* requireFullPermission */, false /* checkShell */, "get application info");
3438        // writer
3439        synchronized (mPackages) {
3440            PackageParser.Package p = mPackages.get(packageName);
3441            if (DEBUG_PACKAGE_INFO) Log.v(
3442                    TAG, "getApplicationInfo " + packageName
3443                    + ": " + p);
3444            if (p != null) {
3445                PackageSetting ps = mSettings.mPackages.get(packageName);
3446                if (ps == null) return null;
3447                // Note: isEnabledLP() does not apply here - always return info
3448                return PackageParser.generateApplicationInfo(
3449                        p, flags, ps.readUserState(userId), userId);
3450            }
3451            if ("android".equals(packageName)||"system".equals(packageName)) {
3452                return mAndroidApplication;
3453            }
3454            if ((flags & MATCH_UNINSTALLED_PACKAGES) != 0) {
3455                return generateApplicationInfoFromSettingsLPw(packageName, flags, userId);
3456            }
3457        }
3458        return null;
3459    }
3460
3461    @Override
3462    public void freeStorageAndNotify(final String volumeUuid, final long freeStorageSize,
3463            final IPackageDataObserver observer) {
3464        mContext.enforceCallingOrSelfPermission(
3465                android.Manifest.permission.CLEAR_APP_CACHE, null);
3466        // Queue up an async operation since clearing cache may take a little while.
3467        mHandler.post(new Runnable() {
3468            public void run() {
3469                mHandler.removeCallbacks(this);
3470                boolean success = true;
3471                synchronized (mInstallLock) {
3472                    try {
3473                        mInstaller.freeCache(volumeUuid, freeStorageSize);
3474                    } catch (InstallerException e) {
3475                        Slog.w(TAG, "Couldn't clear application caches: " + e);
3476                        success = false;
3477                    }
3478                }
3479                if (observer != null) {
3480                    try {
3481                        observer.onRemoveCompleted(null, success);
3482                    } catch (RemoteException e) {
3483                        Slog.w(TAG, "RemoveException when invoking call back");
3484                    }
3485                }
3486            }
3487        });
3488    }
3489
3490    @Override
3491    public void freeStorage(final String volumeUuid, final long freeStorageSize,
3492            final IntentSender pi) {
3493        mContext.enforceCallingOrSelfPermission(
3494                android.Manifest.permission.CLEAR_APP_CACHE, null);
3495        // Queue up an async operation since clearing cache may take a little while.
3496        mHandler.post(new Runnable() {
3497            public void run() {
3498                mHandler.removeCallbacks(this);
3499                boolean success = true;
3500                synchronized (mInstallLock) {
3501                    try {
3502                        mInstaller.freeCache(volumeUuid, freeStorageSize);
3503                    } catch (InstallerException e) {
3504                        Slog.w(TAG, "Couldn't clear application caches: " + e);
3505                        success = false;
3506                    }
3507                }
3508                if(pi != null) {
3509                    try {
3510                        // Callback via pending intent
3511                        int code = success ? 1 : 0;
3512                        pi.sendIntent(null, code, null,
3513                                null, null);
3514                    } catch (SendIntentException e1) {
3515                        Slog.i(TAG, "Failed to send pending intent");
3516                    }
3517                }
3518            }
3519        });
3520    }
3521
3522    void freeStorage(String volumeUuid, long freeStorageSize) throws IOException {
3523        synchronized (mInstallLock) {
3524            try {
3525                mInstaller.freeCache(volumeUuid, freeStorageSize);
3526            } catch (InstallerException e) {
3527                throw new IOException("Failed to free enough space", e);
3528            }
3529        }
3530    }
3531
3532    /**
3533     * Update given flags based on encryption status of current user.
3534     */
3535    private int updateFlags(int flags, int userId) {
3536        if ((flags & (PackageManager.MATCH_DIRECT_BOOT_UNAWARE
3537                | PackageManager.MATCH_DIRECT_BOOT_AWARE)) != 0) {
3538            // Caller expressed an explicit opinion about what encryption
3539            // aware/unaware components they want to see, so fall through and
3540            // give them what they want
3541        } else {
3542            // Caller expressed no opinion, so match based on user state
3543            if (getUserManagerInternal().isUserUnlockingOrUnlocked(userId)) {
3544                flags |= PackageManager.MATCH_DIRECT_BOOT_AWARE | MATCH_DIRECT_BOOT_UNAWARE;
3545            } else {
3546                flags |= PackageManager.MATCH_DIRECT_BOOT_AWARE;
3547            }
3548        }
3549        return flags;
3550    }
3551
3552    private UserManagerInternal getUserManagerInternal() {
3553        if (mUserManagerInternal == null) {
3554            mUserManagerInternal = LocalServices.getService(UserManagerInternal.class);
3555        }
3556        return mUserManagerInternal;
3557    }
3558
3559    /**
3560     * Update given flags when being used to request {@link PackageInfo}.
3561     */
3562    private int updateFlagsForPackage(int flags, int userId, Object cookie) {
3563        boolean triaged = true;
3564        if ((flags & (PackageManager.GET_ACTIVITIES | PackageManager.GET_RECEIVERS
3565                | PackageManager.GET_SERVICES | PackageManager.GET_PROVIDERS)) != 0) {
3566            // Caller is asking for component details, so they'd better be
3567            // asking for specific encryption matching behavior, or be triaged
3568            if ((flags & (PackageManager.MATCH_DIRECT_BOOT_UNAWARE
3569                    | PackageManager.MATCH_DIRECT_BOOT_AWARE
3570                    | PackageManager.MATCH_DEBUG_TRIAGED_MISSING)) == 0) {
3571                triaged = false;
3572            }
3573        }
3574        if ((flags & (PackageManager.MATCH_UNINSTALLED_PACKAGES
3575                | PackageManager.MATCH_SYSTEM_ONLY
3576                | PackageManager.MATCH_DEBUG_TRIAGED_MISSING)) == 0) {
3577            triaged = false;
3578        }
3579        if (DEBUG_TRIAGED_MISSING && (Binder.getCallingUid() == Process.SYSTEM_UID) && !triaged) {
3580            Log.w(TAG, "Caller hasn't been triaged for missing apps; they asked about " + cookie
3581                    + " with flags 0x" + Integer.toHexString(flags), new Throwable());
3582        }
3583        return updateFlags(flags, userId);
3584    }
3585
3586    /**
3587     * Update given flags when being used to request {@link ApplicationInfo}.
3588     */
3589    private int updateFlagsForApplication(int flags, int userId, Object cookie) {
3590        return updateFlagsForPackage(flags, userId, cookie);
3591    }
3592
3593    /**
3594     * Update given flags when being used to request {@link ComponentInfo}.
3595     */
3596    private int updateFlagsForComponent(int flags, int userId, Object cookie) {
3597        if (cookie instanceof Intent) {
3598            if ((((Intent) cookie).getFlags() & Intent.FLAG_DEBUG_TRIAGED_MISSING) != 0) {
3599                flags |= PackageManager.MATCH_DEBUG_TRIAGED_MISSING;
3600            }
3601        }
3602
3603        boolean triaged = true;
3604        // Caller is asking for component details, so they'd better be
3605        // asking for specific encryption matching behavior, or be triaged
3606        if ((flags & (PackageManager.MATCH_DIRECT_BOOT_UNAWARE
3607                | PackageManager.MATCH_DIRECT_BOOT_AWARE
3608                | PackageManager.MATCH_DEBUG_TRIAGED_MISSING)) == 0) {
3609            triaged = false;
3610        }
3611        if (DEBUG_TRIAGED_MISSING && (Binder.getCallingUid() == Process.SYSTEM_UID) && !triaged) {
3612            Log.w(TAG, "Caller hasn't been triaged for missing apps; they asked about " + cookie
3613                    + " with flags 0x" + Integer.toHexString(flags), new Throwable());
3614        }
3615
3616        return updateFlags(flags, userId);
3617    }
3618
3619    /**
3620     * Update given flags when being used to request {@link ResolveInfo}.
3621     */
3622    int updateFlagsForResolve(int flags, int userId, Object cookie) {
3623        // Safe mode means we shouldn't match any third-party components
3624        if (mSafeMode) {
3625            flags |= PackageManager.MATCH_SYSTEM_ONLY;
3626        }
3627
3628        return updateFlagsForComponent(flags, userId, cookie);
3629    }
3630
3631    @Override
3632    public ActivityInfo getActivityInfo(ComponentName component, int flags, int userId) {
3633        if (!sUserManager.exists(userId)) return null;
3634        flags = updateFlagsForComponent(flags, userId, component);
3635        enforceCrossUserPermission(Binder.getCallingUid(), userId,
3636                false /* requireFullPermission */, false /* checkShell */, "get activity info");
3637        synchronized (mPackages) {
3638            PackageParser.Activity a = mActivities.mActivities.get(component);
3639
3640            if (DEBUG_PACKAGE_INFO) Log.v(TAG, "getActivityInfo " + component + ": " + a);
3641            if (a != null && mSettings.isEnabledAndMatchLPr(a.info, flags, userId)) {
3642                PackageSetting ps = mSettings.mPackages.get(component.getPackageName());
3643                if (ps == null) return null;
3644                return PackageParser.generateActivityInfo(a, flags, ps.readUserState(userId),
3645                        userId);
3646            }
3647            if (mResolveComponentName.equals(component)) {
3648                return PackageParser.generateActivityInfo(mResolveActivity, flags,
3649                        new PackageUserState(), userId);
3650            }
3651        }
3652        return null;
3653    }
3654
3655    @Override
3656    public boolean activitySupportsIntent(ComponentName component, Intent intent,
3657            String resolvedType) {
3658        synchronized (mPackages) {
3659            if (component.equals(mResolveComponentName)) {
3660                // The resolver supports EVERYTHING!
3661                return true;
3662            }
3663            PackageParser.Activity a = mActivities.mActivities.get(component);
3664            if (a == null) {
3665                return false;
3666            }
3667            for (int i=0; i<a.intents.size(); i++) {
3668                if (a.intents.get(i).match(intent.getAction(), resolvedType, intent.getScheme(),
3669                        intent.getData(), intent.getCategories(), TAG) >= 0) {
3670                    return true;
3671                }
3672            }
3673            return false;
3674        }
3675    }
3676
3677    @Override
3678    public ActivityInfo getReceiverInfo(ComponentName component, int flags, int userId) {
3679        if (!sUserManager.exists(userId)) return null;
3680        flags = updateFlagsForComponent(flags, userId, component);
3681        enforceCrossUserPermission(Binder.getCallingUid(), userId,
3682                false /* requireFullPermission */, false /* checkShell */, "get receiver info");
3683        synchronized (mPackages) {
3684            PackageParser.Activity a = mReceivers.mActivities.get(component);
3685            if (DEBUG_PACKAGE_INFO) Log.v(
3686                TAG, "getReceiverInfo " + component + ": " + a);
3687            if (a != null && mSettings.isEnabledAndMatchLPr(a.info, flags, userId)) {
3688                PackageSetting ps = mSettings.mPackages.get(component.getPackageName());
3689                if (ps == null) return null;
3690                return PackageParser.generateActivityInfo(a, flags, ps.readUserState(userId),
3691                        userId);
3692            }
3693        }
3694        return null;
3695    }
3696
3697    @Override
3698    public ServiceInfo getServiceInfo(ComponentName component, int flags, int userId) {
3699        if (!sUserManager.exists(userId)) return null;
3700        flags = updateFlagsForComponent(flags, userId, component);
3701        enforceCrossUserPermission(Binder.getCallingUid(), userId,
3702                false /* requireFullPermission */, false /* checkShell */, "get service info");
3703        synchronized (mPackages) {
3704            PackageParser.Service s = mServices.mServices.get(component);
3705            if (DEBUG_PACKAGE_INFO) Log.v(
3706                TAG, "getServiceInfo " + component + ": " + s);
3707            if (s != null && mSettings.isEnabledAndMatchLPr(s.info, flags, userId)) {
3708                PackageSetting ps = mSettings.mPackages.get(component.getPackageName());
3709                if (ps == null) return null;
3710                return PackageParser.generateServiceInfo(s, flags, ps.readUserState(userId),
3711                        userId);
3712            }
3713        }
3714        return null;
3715    }
3716
3717    @Override
3718    public ProviderInfo getProviderInfo(ComponentName component, int flags, int userId) {
3719        if (!sUserManager.exists(userId)) return null;
3720        flags = updateFlagsForComponent(flags, userId, component);
3721        enforceCrossUserPermission(Binder.getCallingUid(), userId,
3722                false /* requireFullPermission */, false /* checkShell */, "get provider info");
3723        synchronized (mPackages) {
3724            PackageParser.Provider p = mProviders.mProviders.get(component);
3725            if (DEBUG_PACKAGE_INFO) Log.v(
3726                TAG, "getProviderInfo " + component + ": " + p);
3727            if (p != null && mSettings.isEnabledAndMatchLPr(p.info, flags, userId)) {
3728                PackageSetting ps = mSettings.mPackages.get(component.getPackageName());
3729                if (ps == null) return null;
3730                return PackageParser.generateProviderInfo(p, flags, ps.readUserState(userId),
3731                        userId);
3732            }
3733        }
3734        return null;
3735    }
3736
3737    @Override
3738    public String[] getSystemSharedLibraryNames() {
3739        Set<String> libSet;
3740        synchronized (mPackages) {
3741            libSet = mSharedLibraries.keySet();
3742            int size = libSet.size();
3743            if (size > 0) {
3744                String[] libs = new String[size];
3745                libSet.toArray(libs);
3746                return libs;
3747            }
3748        }
3749        return null;
3750    }
3751
3752    @Override
3753    public @NonNull String getServicesSystemSharedLibraryPackageName() {
3754        synchronized (mPackages) {
3755            return mServicesSystemSharedLibraryPackageName;
3756        }
3757    }
3758
3759    @Override
3760    public @NonNull String getSharedSystemSharedLibraryPackageName() {
3761        synchronized (mPackages) {
3762            return mSharedSystemSharedLibraryPackageName;
3763        }
3764    }
3765
3766    @Override
3767    public @NonNull ParceledListSlice<FeatureInfo> getSystemAvailableFeatures() {
3768        synchronized (mPackages) {
3769            final ArrayList<FeatureInfo> res = new ArrayList<>(mAvailableFeatures.values());
3770
3771            final FeatureInfo fi = new FeatureInfo();
3772            fi.reqGlEsVersion = SystemProperties.getInt("ro.opengles.version",
3773                    FeatureInfo.GL_ES_VERSION_UNDEFINED);
3774            res.add(fi);
3775
3776            return new ParceledListSlice<>(res);
3777        }
3778    }
3779
3780    @Override
3781    public boolean hasSystemFeature(String name, int version) {
3782        synchronized (mPackages) {
3783            final FeatureInfo feat = mAvailableFeatures.get(name);
3784            if (feat == null) {
3785                return false;
3786            } else {
3787                return feat.version >= version;
3788            }
3789        }
3790    }
3791
3792    @Override
3793    public int checkPermission(String permName, String pkgName, int userId) {
3794        if (!sUserManager.exists(userId)) {
3795            return PackageManager.PERMISSION_DENIED;
3796        }
3797
3798        synchronized (mPackages) {
3799            final PackageParser.Package p = mPackages.get(pkgName);
3800            if (p != null && p.mExtras != null) {
3801                final PackageSetting ps = (PackageSetting) p.mExtras;
3802                final PermissionsState permissionsState = ps.getPermissionsState();
3803                if (permissionsState.hasPermission(permName, userId)) {
3804                    return PackageManager.PERMISSION_GRANTED;
3805                }
3806                // Special case: ACCESS_FINE_LOCATION permission includes ACCESS_COARSE_LOCATION
3807                if (Manifest.permission.ACCESS_COARSE_LOCATION.equals(permName) && permissionsState
3808                        .hasPermission(Manifest.permission.ACCESS_FINE_LOCATION, userId)) {
3809                    return PackageManager.PERMISSION_GRANTED;
3810                }
3811            }
3812        }
3813
3814        return PackageManager.PERMISSION_DENIED;
3815    }
3816
3817    @Override
3818    public int checkUidPermission(String permName, int uid) {
3819        final int userId = UserHandle.getUserId(uid);
3820
3821        if (!sUserManager.exists(userId)) {
3822            return PackageManager.PERMISSION_DENIED;
3823        }
3824
3825        synchronized (mPackages) {
3826            Object obj = mSettings.getUserIdLPr(UserHandle.getAppId(uid));
3827            if (obj != null) {
3828                final SettingBase ps = (SettingBase) obj;
3829                final PermissionsState permissionsState = ps.getPermissionsState();
3830                if (permissionsState.hasPermission(permName, userId)) {
3831                    return PackageManager.PERMISSION_GRANTED;
3832                }
3833                // Special case: ACCESS_FINE_LOCATION permission includes ACCESS_COARSE_LOCATION
3834                if (Manifest.permission.ACCESS_COARSE_LOCATION.equals(permName) && permissionsState
3835                        .hasPermission(Manifest.permission.ACCESS_FINE_LOCATION, userId)) {
3836                    return PackageManager.PERMISSION_GRANTED;
3837                }
3838            } else {
3839                ArraySet<String> perms = mSystemPermissions.get(uid);
3840                if (perms != null) {
3841                    if (perms.contains(permName)) {
3842                        return PackageManager.PERMISSION_GRANTED;
3843                    }
3844                    if (Manifest.permission.ACCESS_COARSE_LOCATION.equals(permName) && perms
3845                            .contains(Manifest.permission.ACCESS_FINE_LOCATION)) {
3846                        return PackageManager.PERMISSION_GRANTED;
3847                    }
3848                }
3849            }
3850        }
3851
3852        return PackageManager.PERMISSION_DENIED;
3853    }
3854
3855    @Override
3856    public boolean isPermissionRevokedByPolicy(String permission, String packageName, int userId) {
3857        if (UserHandle.getCallingUserId() != userId) {
3858            mContext.enforceCallingPermission(
3859                    android.Manifest.permission.INTERACT_ACROSS_USERS_FULL,
3860                    "isPermissionRevokedByPolicy for user " + userId);
3861        }
3862
3863        if (checkPermission(permission, packageName, userId)
3864                == PackageManager.PERMISSION_GRANTED) {
3865            return false;
3866        }
3867
3868        final long identity = Binder.clearCallingIdentity();
3869        try {
3870            final int flags = getPermissionFlags(permission, packageName, userId);
3871            return (flags & PackageManager.FLAG_PERMISSION_POLICY_FIXED) != 0;
3872        } finally {
3873            Binder.restoreCallingIdentity(identity);
3874        }
3875    }
3876
3877    @Override
3878    public String getPermissionControllerPackageName() {
3879        synchronized (mPackages) {
3880            return mRequiredInstallerPackage;
3881        }
3882    }
3883
3884    /**
3885     * Checks if the request is from the system or an app that has INTERACT_ACROSS_USERS
3886     * or INTERACT_ACROSS_USERS_FULL permissions, if the userid is not for the caller.
3887     * @param checkShell whether to prevent shell from access if there's a debugging restriction
3888     * @param message the message to log on security exception
3889     */
3890    void enforceCrossUserPermission(int callingUid, int userId, boolean requireFullPermission,
3891            boolean checkShell, String message) {
3892        if (userId < 0) {
3893            throw new IllegalArgumentException("Invalid userId " + userId);
3894        }
3895        if (checkShell) {
3896            enforceShellRestriction(UserManager.DISALLOW_DEBUGGING_FEATURES, callingUid, userId);
3897        }
3898        if (userId == UserHandle.getUserId(callingUid)) return;
3899        if (callingUid != Process.SYSTEM_UID && callingUid != 0) {
3900            if (requireFullPermission) {
3901                mContext.enforceCallingOrSelfPermission(
3902                        android.Manifest.permission.INTERACT_ACROSS_USERS_FULL, message);
3903            } else {
3904                try {
3905                    mContext.enforceCallingOrSelfPermission(
3906                            android.Manifest.permission.INTERACT_ACROSS_USERS_FULL, message);
3907                } catch (SecurityException se) {
3908                    mContext.enforceCallingOrSelfPermission(
3909                            android.Manifest.permission.INTERACT_ACROSS_USERS, message);
3910                }
3911            }
3912        }
3913    }
3914
3915    void enforceShellRestriction(String restriction, int callingUid, int userHandle) {
3916        if (callingUid == Process.SHELL_UID) {
3917            if (userHandle >= 0
3918                    && sUserManager.hasUserRestriction(restriction, userHandle)) {
3919                throw new SecurityException("Shell does not have permission to access user "
3920                        + userHandle);
3921            } else if (userHandle < 0) {
3922                Slog.e(TAG, "Unable to check shell permission for user " + userHandle + "\n\t"
3923                        + Debug.getCallers(3));
3924            }
3925        }
3926    }
3927
3928    private BasePermission findPermissionTreeLP(String permName) {
3929        for(BasePermission bp : mSettings.mPermissionTrees.values()) {
3930            if (permName.startsWith(bp.name) &&
3931                    permName.length() > bp.name.length() &&
3932                    permName.charAt(bp.name.length()) == '.') {
3933                return bp;
3934            }
3935        }
3936        return null;
3937    }
3938
3939    private BasePermission checkPermissionTreeLP(String permName) {
3940        if (permName != null) {
3941            BasePermission bp = findPermissionTreeLP(permName);
3942            if (bp != null) {
3943                if (bp.uid == UserHandle.getAppId(Binder.getCallingUid())) {
3944                    return bp;
3945                }
3946                throw new SecurityException("Calling uid "
3947                        + Binder.getCallingUid()
3948                        + " is not allowed to add to permission tree "
3949                        + bp.name + " owned by uid " + bp.uid);
3950            }
3951        }
3952        throw new SecurityException("No permission tree found for " + permName);
3953    }
3954
3955    static boolean compareStrings(CharSequence s1, CharSequence s2) {
3956        if (s1 == null) {
3957            return s2 == null;
3958        }
3959        if (s2 == null) {
3960            return false;
3961        }
3962        if (s1.getClass() != s2.getClass()) {
3963            return false;
3964        }
3965        return s1.equals(s2);
3966    }
3967
3968    static boolean comparePermissionInfos(PermissionInfo pi1, PermissionInfo pi2) {
3969        if (pi1.icon != pi2.icon) return false;
3970        if (pi1.logo != pi2.logo) return false;
3971        if (pi1.protectionLevel != pi2.protectionLevel) return false;
3972        if (!compareStrings(pi1.name, pi2.name)) return false;
3973        if (!compareStrings(pi1.nonLocalizedLabel, pi2.nonLocalizedLabel)) return false;
3974        // We'll take care of setting this one.
3975        if (!compareStrings(pi1.packageName, pi2.packageName)) return false;
3976        // These are not currently stored in settings.
3977        //if (!compareStrings(pi1.group, pi2.group)) return false;
3978        //if (!compareStrings(pi1.nonLocalizedDescription, pi2.nonLocalizedDescription)) return false;
3979        //if (pi1.labelRes != pi2.labelRes) return false;
3980        //if (pi1.descriptionRes != pi2.descriptionRes) return false;
3981        return true;
3982    }
3983
3984    int permissionInfoFootprint(PermissionInfo info) {
3985        int size = info.name.length();
3986        if (info.nonLocalizedLabel != null) size += info.nonLocalizedLabel.length();
3987        if (info.nonLocalizedDescription != null) size += info.nonLocalizedDescription.length();
3988        return size;
3989    }
3990
3991    int calculateCurrentPermissionFootprintLocked(BasePermission tree) {
3992        int size = 0;
3993        for (BasePermission perm : mSettings.mPermissions.values()) {
3994            if (perm.uid == tree.uid) {
3995                size += perm.name.length() + permissionInfoFootprint(perm.perm.info);
3996            }
3997        }
3998        return size;
3999    }
4000
4001    void enforcePermissionCapLocked(PermissionInfo info, BasePermission tree) {
4002        // We calculate the max size of permissions defined by this uid and throw
4003        // if that plus the size of 'info' would exceed our stated maximum.
4004        if (tree.uid != Process.SYSTEM_UID) {
4005            final int curTreeSize = calculateCurrentPermissionFootprintLocked(tree);
4006            if (curTreeSize + permissionInfoFootprint(info) > MAX_PERMISSION_TREE_FOOTPRINT) {
4007                throw new SecurityException("Permission tree size cap exceeded");
4008            }
4009        }
4010    }
4011
4012    boolean addPermissionLocked(PermissionInfo info, boolean async) {
4013        if (info.labelRes == 0 && info.nonLocalizedLabel == null) {
4014            throw new SecurityException("Label must be specified in permission");
4015        }
4016        BasePermission tree = checkPermissionTreeLP(info.name);
4017        BasePermission bp = mSettings.mPermissions.get(info.name);
4018        boolean added = bp == null;
4019        boolean changed = true;
4020        int fixedLevel = PermissionInfo.fixProtectionLevel(info.protectionLevel);
4021        if (added) {
4022            enforcePermissionCapLocked(info, tree);
4023            bp = new BasePermission(info.name, tree.sourcePackage,
4024                    BasePermission.TYPE_DYNAMIC);
4025        } else if (bp.type != BasePermission.TYPE_DYNAMIC) {
4026            throw new SecurityException(
4027                    "Not allowed to modify non-dynamic permission "
4028                    + info.name);
4029        } else {
4030            if (bp.protectionLevel == fixedLevel
4031                    && bp.perm.owner.equals(tree.perm.owner)
4032                    && bp.uid == tree.uid
4033                    && comparePermissionInfos(bp.perm.info, info)) {
4034                changed = false;
4035            }
4036        }
4037        bp.protectionLevel = fixedLevel;
4038        info = new PermissionInfo(info);
4039        info.protectionLevel = fixedLevel;
4040        bp.perm = new PackageParser.Permission(tree.perm.owner, info);
4041        bp.perm.info.packageName = tree.perm.info.packageName;
4042        bp.uid = tree.uid;
4043        if (added) {
4044            mSettings.mPermissions.put(info.name, bp);
4045        }
4046        if (changed) {
4047            if (!async) {
4048                mSettings.writeLPr();
4049            } else {
4050                scheduleWriteSettingsLocked();
4051            }
4052        }
4053        return added;
4054    }
4055
4056    @Override
4057    public boolean addPermission(PermissionInfo info) {
4058        synchronized (mPackages) {
4059            return addPermissionLocked(info, false);
4060        }
4061    }
4062
4063    @Override
4064    public boolean addPermissionAsync(PermissionInfo info) {
4065        synchronized (mPackages) {
4066            return addPermissionLocked(info, true);
4067        }
4068    }
4069
4070    @Override
4071    public void removePermission(String name) {
4072        synchronized (mPackages) {
4073            checkPermissionTreeLP(name);
4074            BasePermission bp = mSettings.mPermissions.get(name);
4075            if (bp != null) {
4076                if (bp.type != BasePermission.TYPE_DYNAMIC) {
4077                    throw new SecurityException(
4078                            "Not allowed to modify non-dynamic permission "
4079                            + name);
4080                }
4081                mSettings.mPermissions.remove(name);
4082                mSettings.writeLPr();
4083            }
4084        }
4085    }
4086
4087    private static void enforceDeclaredAsUsedAndRuntimeOrDevelopmentPermission(PackageParser.Package pkg,
4088            BasePermission bp) {
4089        int index = pkg.requestedPermissions.indexOf(bp.name);
4090        if (index == -1) {
4091            throw new SecurityException("Package " + pkg.packageName
4092                    + " has not requested permission " + bp.name);
4093        }
4094        if (!bp.isRuntime() && !bp.isDevelopment()) {
4095            throw new SecurityException("Permission " + bp.name
4096                    + " is not a changeable permission type");
4097        }
4098    }
4099
4100    @Override
4101    public void grantRuntimePermission(String packageName, String name, final int userId) {
4102        if (!sUserManager.exists(userId)) {
4103            Log.e(TAG, "No such user:" + userId);
4104            return;
4105        }
4106
4107        mContext.enforceCallingOrSelfPermission(
4108                android.Manifest.permission.GRANT_RUNTIME_PERMISSIONS,
4109                "grantRuntimePermission");
4110
4111        enforceCrossUserPermission(Binder.getCallingUid(), userId,
4112                true /* requireFullPermission */, true /* checkShell */,
4113                "grantRuntimePermission");
4114
4115        final int uid;
4116        final SettingBase sb;
4117
4118        synchronized (mPackages) {
4119            final PackageParser.Package pkg = mPackages.get(packageName);
4120            if (pkg == null) {
4121                throw new IllegalArgumentException("Unknown package: " + packageName);
4122            }
4123
4124            final BasePermission bp = mSettings.mPermissions.get(name);
4125            if (bp == null) {
4126                throw new IllegalArgumentException("Unknown permission: " + name);
4127            }
4128
4129            enforceDeclaredAsUsedAndRuntimeOrDevelopmentPermission(pkg, bp);
4130
4131            // If a permission review is required for legacy apps we represent
4132            // their permissions as always granted runtime ones since we need
4133            // to keep the review required permission flag per user while an
4134            // install permission's state is shared across all users.
4135            if (Build.PERMISSIONS_REVIEW_REQUIRED
4136                    && pkg.applicationInfo.targetSdkVersion < Build.VERSION_CODES.M
4137                    && bp.isRuntime()) {
4138                return;
4139            }
4140
4141            uid = UserHandle.getUid(userId, pkg.applicationInfo.uid);
4142            sb = (SettingBase) pkg.mExtras;
4143            if (sb == null) {
4144                throw new IllegalArgumentException("Unknown package: " + packageName);
4145            }
4146
4147            final PermissionsState permissionsState = sb.getPermissionsState();
4148
4149            final int flags = permissionsState.getPermissionFlags(name, userId);
4150            if ((flags & PackageManager.FLAG_PERMISSION_SYSTEM_FIXED) != 0) {
4151                throw new SecurityException("Cannot grant system fixed permission "
4152                        + name + " for package " + packageName);
4153            }
4154
4155            if (bp.isDevelopment()) {
4156                // Development permissions must be handled specially, since they are not
4157                // normal runtime permissions.  For now they apply to all users.
4158                if (permissionsState.grantInstallPermission(bp) !=
4159                        PermissionsState.PERMISSION_OPERATION_FAILURE) {
4160                    scheduleWriteSettingsLocked();
4161                }
4162                return;
4163            }
4164
4165            if (pkg.applicationInfo.targetSdkVersion < Build.VERSION_CODES.M) {
4166                Slog.w(TAG, "Cannot grant runtime permission to a legacy app");
4167                return;
4168            }
4169
4170            final int result = permissionsState.grantRuntimePermission(bp, userId);
4171            switch (result) {
4172                case PermissionsState.PERMISSION_OPERATION_FAILURE: {
4173                    return;
4174                }
4175
4176                case PermissionsState.PERMISSION_OPERATION_SUCCESS_GIDS_CHANGED: {
4177                    final int appId = UserHandle.getAppId(pkg.applicationInfo.uid);
4178                    mHandler.post(new Runnable() {
4179                        @Override
4180                        public void run() {
4181                            killUid(appId, userId, KILL_APP_REASON_GIDS_CHANGED);
4182                        }
4183                    });
4184                }
4185                break;
4186            }
4187
4188            mOnPermissionChangeListeners.onPermissionsChanged(uid);
4189
4190            // Not critical if that is lost - app has to request again.
4191            mSettings.writeRuntimePermissionsForUserLPr(userId, false);
4192        }
4193
4194        // Only need to do this if user is initialized. Otherwise it's a new user
4195        // and there are no processes running as the user yet and there's no need
4196        // to make an expensive call to remount processes for the changed permissions.
4197        if (READ_EXTERNAL_STORAGE.equals(name)
4198                || WRITE_EXTERNAL_STORAGE.equals(name)) {
4199            final long token = Binder.clearCallingIdentity();
4200            try {
4201                if (sUserManager.isInitialized(userId)) {
4202                    MountServiceInternal mountServiceInternal = LocalServices.getService(
4203                            MountServiceInternal.class);
4204                    mountServiceInternal.onExternalStoragePolicyChanged(uid, packageName);
4205                }
4206            } finally {
4207                Binder.restoreCallingIdentity(token);
4208            }
4209        }
4210    }
4211
4212    @Override
4213    public void revokeRuntimePermission(String packageName, String name, int userId) {
4214        if (!sUserManager.exists(userId)) {
4215            Log.e(TAG, "No such user:" + userId);
4216            return;
4217        }
4218
4219        mContext.enforceCallingOrSelfPermission(
4220                android.Manifest.permission.REVOKE_RUNTIME_PERMISSIONS,
4221                "revokeRuntimePermission");
4222
4223        enforceCrossUserPermission(Binder.getCallingUid(), userId,
4224                true /* requireFullPermission */, true /* checkShell */,
4225                "revokeRuntimePermission");
4226
4227        final int appId;
4228
4229        synchronized (mPackages) {
4230            final PackageParser.Package pkg = mPackages.get(packageName);
4231            if (pkg == null) {
4232                throw new IllegalArgumentException("Unknown package: " + packageName);
4233            }
4234
4235            final BasePermission bp = mSettings.mPermissions.get(name);
4236            if (bp == null) {
4237                throw new IllegalArgumentException("Unknown permission: " + name);
4238            }
4239
4240            enforceDeclaredAsUsedAndRuntimeOrDevelopmentPermission(pkg, bp);
4241
4242            // If a permission review is required for legacy apps we represent
4243            // their permissions as always granted runtime ones since we need
4244            // to keep the review required permission flag per user while an
4245            // install permission's state is shared across all users.
4246            if (Build.PERMISSIONS_REVIEW_REQUIRED
4247                    && pkg.applicationInfo.targetSdkVersion < Build.VERSION_CODES.M
4248                    && bp.isRuntime()) {
4249                return;
4250            }
4251
4252            SettingBase sb = (SettingBase) pkg.mExtras;
4253            if (sb == null) {
4254                throw new IllegalArgumentException("Unknown package: " + packageName);
4255            }
4256
4257            final PermissionsState permissionsState = sb.getPermissionsState();
4258
4259            final int flags = permissionsState.getPermissionFlags(name, userId);
4260            if ((flags & PackageManager.FLAG_PERMISSION_SYSTEM_FIXED) != 0) {
4261                throw new SecurityException("Cannot revoke system fixed permission "
4262                        + name + " for package " + packageName);
4263            }
4264
4265            if (bp.isDevelopment()) {
4266                // Development permissions must be handled specially, since they are not
4267                // normal runtime permissions.  For now they apply to all users.
4268                if (permissionsState.revokeInstallPermission(bp) !=
4269                        PermissionsState.PERMISSION_OPERATION_FAILURE) {
4270                    scheduleWriteSettingsLocked();
4271                }
4272                return;
4273            }
4274
4275            if (permissionsState.revokeRuntimePermission(bp, userId) ==
4276                    PermissionsState.PERMISSION_OPERATION_FAILURE) {
4277                return;
4278            }
4279
4280            mOnPermissionChangeListeners.onPermissionsChanged(pkg.applicationInfo.uid);
4281
4282            // Critical, after this call app should never have the permission.
4283            mSettings.writeRuntimePermissionsForUserLPr(userId, true);
4284
4285            appId = UserHandle.getAppId(pkg.applicationInfo.uid);
4286        }
4287
4288        killUid(appId, userId, KILL_APP_REASON_PERMISSIONS_REVOKED);
4289    }
4290
4291    @Override
4292    public void resetRuntimePermissions() {
4293        mContext.enforceCallingOrSelfPermission(
4294                android.Manifest.permission.REVOKE_RUNTIME_PERMISSIONS,
4295                "revokeRuntimePermission");
4296
4297        int callingUid = Binder.getCallingUid();
4298        if (callingUid != Process.SYSTEM_UID && callingUid != 0) {
4299            mContext.enforceCallingOrSelfPermission(
4300                    android.Manifest.permission.INTERACT_ACROSS_USERS_FULL,
4301                    "resetRuntimePermissions");
4302        }
4303
4304        synchronized (mPackages) {
4305            updatePermissionsLPw(null, null, UPDATE_PERMISSIONS_ALL);
4306            for (int userId : UserManagerService.getInstance().getUserIds()) {
4307                final int packageCount = mPackages.size();
4308                for (int i = 0; i < packageCount; i++) {
4309                    PackageParser.Package pkg = mPackages.valueAt(i);
4310                    if (!(pkg.mExtras instanceof PackageSetting)) {
4311                        continue;
4312                    }
4313                    PackageSetting ps = (PackageSetting) pkg.mExtras;
4314                    resetUserChangesToRuntimePermissionsAndFlagsLPw(ps, userId);
4315                }
4316            }
4317        }
4318    }
4319
4320    @Override
4321    public int getPermissionFlags(String name, String packageName, int userId) {
4322        if (!sUserManager.exists(userId)) {
4323            return 0;
4324        }
4325
4326        enforceGrantRevokeRuntimePermissionPermissions("getPermissionFlags");
4327
4328        enforceCrossUserPermission(Binder.getCallingUid(), userId,
4329                true /* requireFullPermission */, false /* checkShell */,
4330                "getPermissionFlags");
4331
4332        synchronized (mPackages) {
4333            final PackageParser.Package pkg = mPackages.get(packageName);
4334            if (pkg == null) {
4335                return 0;
4336            }
4337
4338            final BasePermission bp = mSettings.mPermissions.get(name);
4339            if (bp == null) {
4340                return 0;
4341            }
4342
4343            SettingBase sb = (SettingBase) pkg.mExtras;
4344            if (sb == null) {
4345                return 0;
4346            }
4347
4348            PermissionsState permissionsState = sb.getPermissionsState();
4349            return permissionsState.getPermissionFlags(name, userId);
4350        }
4351    }
4352
4353    @Override
4354    public void updatePermissionFlags(String name, String packageName, int flagMask,
4355            int flagValues, int userId) {
4356        if (!sUserManager.exists(userId)) {
4357            return;
4358        }
4359
4360        enforceGrantRevokeRuntimePermissionPermissions("updatePermissionFlags");
4361
4362        enforceCrossUserPermission(Binder.getCallingUid(), userId,
4363                true /* requireFullPermission */, true /* checkShell */,
4364                "updatePermissionFlags");
4365
4366        // Only the system can change these flags and nothing else.
4367        if (getCallingUid() != Process.SYSTEM_UID) {
4368            flagMask &= ~PackageManager.FLAG_PERMISSION_SYSTEM_FIXED;
4369            flagValues &= ~PackageManager.FLAG_PERMISSION_SYSTEM_FIXED;
4370            flagMask &= ~PackageManager.FLAG_PERMISSION_GRANTED_BY_DEFAULT;
4371            flagValues &= ~PackageManager.FLAG_PERMISSION_GRANTED_BY_DEFAULT;
4372            flagValues &= ~PackageManager.FLAG_PERMISSION_REVIEW_REQUIRED;
4373        }
4374
4375        synchronized (mPackages) {
4376            final PackageParser.Package pkg = mPackages.get(packageName);
4377            if (pkg == null) {
4378                throw new IllegalArgumentException("Unknown package: " + packageName);
4379            }
4380
4381            final BasePermission bp = mSettings.mPermissions.get(name);
4382            if (bp == null) {
4383                throw new IllegalArgumentException("Unknown permission: " + name);
4384            }
4385
4386            SettingBase sb = (SettingBase) pkg.mExtras;
4387            if (sb == null) {
4388                throw new IllegalArgumentException("Unknown package: " + packageName);
4389            }
4390
4391            PermissionsState permissionsState = sb.getPermissionsState();
4392
4393            boolean hadState = permissionsState.getRuntimePermissionState(name, userId) != null;
4394
4395            if (permissionsState.updatePermissionFlags(bp, userId, flagMask, flagValues)) {
4396                // Install and runtime permissions are stored in different places,
4397                // so figure out what permission changed and persist the change.
4398                if (permissionsState.getInstallPermissionState(name) != null) {
4399                    scheduleWriteSettingsLocked();
4400                } else if (permissionsState.getRuntimePermissionState(name, userId) != null
4401                        || hadState) {
4402                    mSettings.writeRuntimePermissionsForUserLPr(userId, false);
4403                }
4404            }
4405        }
4406    }
4407
4408    /**
4409     * Update the permission flags for all packages and runtime permissions of a user in order
4410     * to allow device or profile owner to remove POLICY_FIXED.
4411     */
4412    @Override
4413    public void updatePermissionFlagsForAllApps(int flagMask, int flagValues, int userId) {
4414        if (!sUserManager.exists(userId)) {
4415            return;
4416        }
4417
4418        enforceGrantRevokeRuntimePermissionPermissions("updatePermissionFlagsForAllApps");
4419
4420        enforceCrossUserPermission(Binder.getCallingUid(), userId,
4421                true /* requireFullPermission */, true /* checkShell */,
4422                "updatePermissionFlagsForAllApps");
4423
4424        // Only the system can change system fixed flags.
4425        if (getCallingUid() != Process.SYSTEM_UID) {
4426            flagMask &= ~PackageManager.FLAG_PERMISSION_SYSTEM_FIXED;
4427            flagValues &= ~PackageManager.FLAG_PERMISSION_SYSTEM_FIXED;
4428        }
4429
4430        synchronized (mPackages) {
4431            boolean changed = false;
4432            final int packageCount = mPackages.size();
4433            for (int pkgIndex = 0; pkgIndex < packageCount; pkgIndex++) {
4434                final PackageParser.Package pkg = mPackages.valueAt(pkgIndex);
4435                SettingBase sb = (SettingBase) pkg.mExtras;
4436                if (sb == null) {
4437                    continue;
4438                }
4439                PermissionsState permissionsState = sb.getPermissionsState();
4440                changed |= permissionsState.updatePermissionFlagsForAllPermissions(
4441                        userId, flagMask, flagValues);
4442            }
4443            if (changed) {
4444                mSettings.writeRuntimePermissionsForUserLPr(userId, false);
4445            }
4446        }
4447    }
4448
4449    private void enforceGrantRevokeRuntimePermissionPermissions(String message) {
4450        if (mContext.checkCallingOrSelfPermission(Manifest.permission.GRANT_RUNTIME_PERMISSIONS)
4451                != PackageManager.PERMISSION_GRANTED
4452            && mContext.checkCallingOrSelfPermission(Manifest.permission.REVOKE_RUNTIME_PERMISSIONS)
4453                != PackageManager.PERMISSION_GRANTED) {
4454            throw new SecurityException(message + " requires "
4455                    + Manifest.permission.GRANT_RUNTIME_PERMISSIONS + " or "
4456                    + Manifest.permission.REVOKE_RUNTIME_PERMISSIONS);
4457        }
4458    }
4459
4460    @Override
4461    public boolean shouldShowRequestPermissionRationale(String permissionName,
4462            String packageName, int userId) {
4463        if (UserHandle.getCallingUserId() != userId) {
4464            mContext.enforceCallingPermission(
4465                    android.Manifest.permission.INTERACT_ACROSS_USERS_FULL,
4466                    "canShowRequestPermissionRationale for user " + userId);
4467        }
4468
4469        final int uid = getPackageUid(packageName, MATCH_DEBUG_TRIAGED_MISSING, userId);
4470        if (UserHandle.getAppId(getCallingUid()) != UserHandle.getAppId(uid)) {
4471            return false;
4472        }
4473
4474        if (checkPermission(permissionName, packageName, userId)
4475                == PackageManager.PERMISSION_GRANTED) {
4476            return false;
4477        }
4478
4479        final int flags;
4480
4481        final long identity = Binder.clearCallingIdentity();
4482        try {
4483            flags = getPermissionFlags(permissionName,
4484                    packageName, userId);
4485        } finally {
4486            Binder.restoreCallingIdentity(identity);
4487        }
4488
4489        final int fixedFlags = PackageManager.FLAG_PERMISSION_SYSTEM_FIXED
4490                | PackageManager.FLAG_PERMISSION_POLICY_FIXED
4491                | PackageManager.FLAG_PERMISSION_USER_FIXED;
4492
4493        if ((flags & fixedFlags) != 0) {
4494            return false;
4495        }
4496
4497        return (flags & PackageManager.FLAG_PERMISSION_USER_SET) != 0;
4498    }
4499
4500    @Override
4501    public void addOnPermissionsChangeListener(IOnPermissionsChangeListener listener) {
4502        mContext.enforceCallingOrSelfPermission(
4503                Manifest.permission.OBSERVE_GRANT_REVOKE_PERMISSIONS,
4504                "addOnPermissionsChangeListener");
4505
4506        synchronized (mPackages) {
4507            mOnPermissionChangeListeners.addListenerLocked(listener);
4508        }
4509    }
4510
4511    @Override
4512    public void removeOnPermissionsChangeListener(IOnPermissionsChangeListener listener) {
4513        synchronized (mPackages) {
4514            mOnPermissionChangeListeners.removeListenerLocked(listener);
4515        }
4516    }
4517
4518    @Override
4519    public boolean isProtectedBroadcast(String actionName) {
4520        synchronized (mPackages) {
4521            if (mProtectedBroadcasts.contains(actionName)) {
4522                return true;
4523            } else if (actionName != null) {
4524                // TODO: remove these terrible hacks
4525                if (actionName.startsWith("android.net.netmon.lingerExpired")
4526                        || actionName.startsWith("com.android.server.sip.SipWakeupTimer")
4527                        || actionName.startsWith("com.android.internal.telephony.data-reconnect")
4528                        || actionName.startsWith("android.net.netmon.launchCaptivePortalApp")) {
4529                    return true;
4530                }
4531            }
4532        }
4533        return false;
4534    }
4535
4536    @Override
4537    public int checkSignatures(String pkg1, String pkg2) {
4538        synchronized (mPackages) {
4539            final PackageParser.Package p1 = mPackages.get(pkg1);
4540            final PackageParser.Package p2 = mPackages.get(pkg2);
4541            if (p1 == null || p1.mExtras == null
4542                    || p2 == null || p2.mExtras == null) {
4543                return PackageManager.SIGNATURE_UNKNOWN_PACKAGE;
4544            }
4545            return compareSignatures(p1.mSignatures, p2.mSignatures);
4546        }
4547    }
4548
4549    @Override
4550    public int checkUidSignatures(int uid1, int uid2) {
4551        // Map to base uids.
4552        uid1 = UserHandle.getAppId(uid1);
4553        uid2 = UserHandle.getAppId(uid2);
4554        // reader
4555        synchronized (mPackages) {
4556            Signature[] s1;
4557            Signature[] s2;
4558            Object obj = mSettings.getUserIdLPr(uid1);
4559            if (obj != null) {
4560                if (obj instanceof SharedUserSetting) {
4561                    s1 = ((SharedUserSetting)obj).signatures.mSignatures;
4562                } else if (obj instanceof PackageSetting) {
4563                    s1 = ((PackageSetting)obj).signatures.mSignatures;
4564                } else {
4565                    return PackageManager.SIGNATURE_UNKNOWN_PACKAGE;
4566                }
4567            } else {
4568                return PackageManager.SIGNATURE_UNKNOWN_PACKAGE;
4569            }
4570            obj = mSettings.getUserIdLPr(uid2);
4571            if (obj != null) {
4572                if (obj instanceof SharedUserSetting) {
4573                    s2 = ((SharedUserSetting)obj).signatures.mSignatures;
4574                } else if (obj instanceof PackageSetting) {
4575                    s2 = ((PackageSetting)obj).signatures.mSignatures;
4576                } else {
4577                    return PackageManager.SIGNATURE_UNKNOWN_PACKAGE;
4578                }
4579            } else {
4580                return PackageManager.SIGNATURE_UNKNOWN_PACKAGE;
4581            }
4582            return compareSignatures(s1, s2);
4583        }
4584    }
4585
4586    /**
4587     * This method should typically only be used when granting or revoking
4588     * permissions, since the app may immediately restart after this call.
4589     * <p>
4590     * If you're doing surgery on app code/data, use {@link PackageFreezer} to
4591     * guard your work against the app being relaunched.
4592     */
4593    private void killUid(int appId, int userId, String reason) {
4594        final long identity = Binder.clearCallingIdentity();
4595        try {
4596            IActivityManager am = ActivityManagerNative.getDefault();
4597            if (am != null) {
4598                try {
4599                    am.killUid(appId, userId, reason);
4600                } catch (RemoteException e) {
4601                    /* ignore - same process */
4602                }
4603            }
4604        } finally {
4605            Binder.restoreCallingIdentity(identity);
4606        }
4607    }
4608
4609    /**
4610     * Compares two sets of signatures. Returns:
4611     * <br />
4612     * {@link PackageManager#SIGNATURE_NEITHER_SIGNED}: if both signature sets are null,
4613     * <br />
4614     * {@link PackageManager#SIGNATURE_FIRST_NOT_SIGNED}: if the first signature set is null,
4615     * <br />
4616     * {@link PackageManager#SIGNATURE_SECOND_NOT_SIGNED}: if the second signature set is null,
4617     * <br />
4618     * {@link PackageManager#SIGNATURE_MATCH}: if the two signature sets are identical,
4619     * <br />
4620     * {@link PackageManager#SIGNATURE_NO_MATCH}: if the two signature sets differ.
4621     */
4622    static int compareSignatures(Signature[] s1, Signature[] s2) {
4623        if (s1 == null) {
4624            return s2 == null
4625                    ? PackageManager.SIGNATURE_NEITHER_SIGNED
4626                    : PackageManager.SIGNATURE_FIRST_NOT_SIGNED;
4627        }
4628
4629        if (s2 == null) {
4630            return PackageManager.SIGNATURE_SECOND_NOT_SIGNED;
4631        }
4632
4633        if (s1.length != s2.length) {
4634            return PackageManager.SIGNATURE_NO_MATCH;
4635        }
4636
4637        // Since both signature sets are of size 1, we can compare without HashSets.
4638        if (s1.length == 1) {
4639            return s1[0].equals(s2[0]) ?
4640                    PackageManager.SIGNATURE_MATCH :
4641                    PackageManager.SIGNATURE_NO_MATCH;
4642        }
4643
4644        ArraySet<Signature> set1 = new ArraySet<Signature>();
4645        for (Signature sig : s1) {
4646            set1.add(sig);
4647        }
4648        ArraySet<Signature> set2 = new ArraySet<Signature>();
4649        for (Signature sig : s2) {
4650            set2.add(sig);
4651        }
4652        // Make sure s2 contains all signatures in s1.
4653        if (set1.equals(set2)) {
4654            return PackageManager.SIGNATURE_MATCH;
4655        }
4656        return PackageManager.SIGNATURE_NO_MATCH;
4657    }
4658
4659    /**
4660     * If the database version for this type of package (internal storage or
4661     * external storage) is less than the version where package signatures
4662     * were updated, return true.
4663     */
4664    private boolean isCompatSignatureUpdateNeeded(PackageParser.Package scannedPkg) {
4665        final VersionInfo ver = getSettingsVersionForPackage(scannedPkg);
4666        return ver.databaseVersion < DatabaseVersion.SIGNATURE_END_ENTITY;
4667    }
4668
4669    /**
4670     * Used for backward compatibility to make sure any packages with
4671     * certificate chains get upgraded to the new style. {@code existingSigs}
4672     * will be in the old format (since they were stored on disk from before the
4673     * system upgrade) and {@code scannedSigs} will be in the newer format.
4674     */
4675    private int compareSignaturesCompat(PackageSignatures existingSigs,
4676            PackageParser.Package scannedPkg) {
4677        if (!isCompatSignatureUpdateNeeded(scannedPkg)) {
4678            return PackageManager.SIGNATURE_NO_MATCH;
4679        }
4680
4681        ArraySet<Signature> existingSet = new ArraySet<Signature>();
4682        for (Signature sig : existingSigs.mSignatures) {
4683            existingSet.add(sig);
4684        }
4685        ArraySet<Signature> scannedCompatSet = new ArraySet<Signature>();
4686        for (Signature sig : scannedPkg.mSignatures) {
4687            try {
4688                Signature[] chainSignatures = sig.getChainSignatures();
4689                for (Signature chainSig : chainSignatures) {
4690                    scannedCompatSet.add(chainSig);
4691                }
4692            } catch (CertificateEncodingException e) {
4693                scannedCompatSet.add(sig);
4694            }
4695        }
4696        /*
4697         * Make sure the expanded scanned set contains all signatures in the
4698         * existing one.
4699         */
4700        if (scannedCompatSet.equals(existingSet)) {
4701            // Migrate the old signatures to the new scheme.
4702            existingSigs.assignSignatures(scannedPkg.mSignatures);
4703            // The new KeySets will be re-added later in the scanning process.
4704            synchronized (mPackages) {
4705                mSettings.mKeySetManagerService.removeAppKeySetDataLPw(scannedPkg.packageName);
4706            }
4707            return PackageManager.SIGNATURE_MATCH;
4708        }
4709        return PackageManager.SIGNATURE_NO_MATCH;
4710    }
4711
4712    private boolean isRecoverSignatureUpdateNeeded(PackageParser.Package scannedPkg) {
4713        final VersionInfo ver = getSettingsVersionForPackage(scannedPkg);
4714        return ver.databaseVersion < DatabaseVersion.SIGNATURE_MALFORMED_RECOVER;
4715    }
4716
4717    private int compareSignaturesRecover(PackageSignatures existingSigs,
4718            PackageParser.Package scannedPkg) {
4719        if (!isRecoverSignatureUpdateNeeded(scannedPkg)) {
4720            return PackageManager.SIGNATURE_NO_MATCH;
4721        }
4722
4723        String msg = null;
4724        try {
4725            if (Signature.areEffectiveMatch(existingSigs.mSignatures, scannedPkg.mSignatures)) {
4726                logCriticalInfo(Log.INFO, "Recovered effectively matching certificates for "
4727                        + scannedPkg.packageName);
4728                return PackageManager.SIGNATURE_MATCH;
4729            }
4730        } catch (CertificateException e) {
4731            msg = e.getMessage();
4732        }
4733
4734        logCriticalInfo(Log.INFO,
4735                "Failed to recover certificates for " + scannedPkg.packageName + ": " + msg);
4736        return PackageManager.SIGNATURE_NO_MATCH;
4737    }
4738
4739    @Override
4740    public List<String> getAllPackages() {
4741        synchronized (mPackages) {
4742            return new ArrayList<String>(mPackages.keySet());
4743        }
4744    }
4745
4746    @Override
4747    public String[] getPackagesForUid(int uid) {
4748        uid = UserHandle.getAppId(uid);
4749        // reader
4750        synchronized (mPackages) {
4751            Object obj = mSettings.getUserIdLPr(uid);
4752            if (obj instanceof SharedUserSetting) {
4753                final SharedUserSetting sus = (SharedUserSetting) obj;
4754                final int N = sus.packages.size();
4755                final String[] res = new String[N];
4756                final Iterator<PackageSetting> it = sus.packages.iterator();
4757                int i = 0;
4758                while (it.hasNext()) {
4759                    res[i++] = it.next().name;
4760                }
4761                return res;
4762            } else if (obj instanceof PackageSetting) {
4763                final PackageSetting ps = (PackageSetting) obj;
4764                return new String[] { ps.name };
4765            }
4766        }
4767        return null;
4768    }
4769
4770    @Override
4771    public String getNameForUid(int uid) {
4772        // reader
4773        synchronized (mPackages) {
4774            Object obj = mSettings.getUserIdLPr(UserHandle.getAppId(uid));
4775            if (obj instanceof SharedUserSetting) {
4776                final SharedUserSetting sus = (SharedUserSetting) obj;
4777                return sus.name + ":" + sus.userId;
4778            } else if (obj instanceof PackageSetting) {
4779                final PackageSetting ps = (PackageSetting) obj;
4780                return ps.name;
4781            }
4782        }
4783        return null;
4784    }
4785
4786    @Override
4787    public int getUidForSharedUser(String sharedUserName) {
4788        if(sharedUserName == null) {
4789            return -1;
4790        }
4791        // reader
4792        synchronized (mPackages) {
4793            final SharedUserSetting suid = mSettings.getSharedUserLPw(sharedUserName, 0, 0, false);
4794            if (suid == null) {
4795                return -1;
4796            }
4797            return suid.userId;
4798        }
4799    }
4800
4801    @Override
4802    public int getFlagsForUid(int uid) {
4803        synchronized (mPackages) {
4804            Object obj = mSettings.getUserIdLPr(UserHandle.getAppId(uid));
4805            if (obj instanceof SharedUserSetting) {
4806                final SharedUserSetting sus = (SharedUserSetting) obj;
4807                return sus.pkgFlags;
4808            } else if (obj instanceof PackageSetting) {
4809                final PackageSetting ps = (PackageSetting) obj;
4810                return ps.pkgFlags;
4811            }
4812        }
4813        return 0;
4814    }
4815
4816    @Override
4817    public int getPrivateFlagsForUid(int uid) {
4818        synchronized (mPackages) {
4819            Object obj = mSettings.getUserIdLPr(UserHandle.getAppId(uid));
4820            if (obj instanceof SharedUserSetting) {
4821                final SharedUserSetting sus = (SharedUserSetting) obj;
4822                return sus.pkgPrivateFlags;
4823            } else if (obj instanceof PackageSetting) {
4824                final PackageSetting ps = (PackageSetting) obj;
4825                return ps.pkgPrivateFlags;
4826            }
4827        }
4828        return 0;
4829    }
4830
4831    @Override
4832    public boolean isUidPrivileged(int uid) {
4833        uid = UserHandle.getAppId(uid);
4834        // reader
4835        synchronized (mPackages) {
4836            Object obj = mSettings.getUserIdLPr(uid);
4837            if (obj instanceof SharedUserSetting) {
4838                final SharedUserSetting sus = (SharedUserSetting) obj;
4839                final Iterator<PackageSetting> it = sus.packages.iterator();
4840                while (it.hasNext()) {
4841                    if (it.next().isPrivileged()) {
4842                        return true;
4843                    }
4844                }
4845            } else if (obj instanceof PackageSetting) {
4846                final PackageSetting ps = (PackageSetting) obj;
4847                return ps.isPrivileged();
4848            }
4849        }
4850        return false;
4851    }
4852
4853    @Override
4854    public String[] getAppOpPermissionPackages(String permissionName) {
4855        synchronized (mPackages) {
4856            ArraySet<String> pkgs = mAppOpPermissionPackages.get(permissionName);
4857            if (pkgs == null) {
4858                return null;
4859            }
4860            return pkgs.toArray(new String[pkgs.size()]);
4861        }
4862    }
4863
4864    @Override
4865    public ResolveInfo resolveIntent(Intent intent, String resolvedType,
4866            int flags, int userId) {
4867        try {
4868            Trace.traceBegin(TRACE_TAG_PACKAGE_MANAGER, "resolveIntent");
4869
4870            if (!sUserManager.exists(userId)) return null;
4871            flags = updateFlagsForResolve(flags, userId, intent);
4872            enforceCrossUserPermission(Binder.getCallingUid(), userId,
4873                    false /*requireFullPermission*/, false /*checkShell*/, "resolve intent");
4874
4875            Trace.traceBegin(TRACE_TAG_PACKAGE_MANAGER, "queryIntentActivities");
4876            final List<ResolveInfo> query = queryIntentActivitiesInternal(intent, resolvedType,
4877                    flags, userId);
4878            Trace.traceEnd(TRACE_TAG_PACKAGE_MANAGER);
4879
4880            final ResolveInfo bestChoice =
4881                    chooseBestActivity(intent, resolvedType, flags, query, userId);
4882
4883            if (isEphemeralAllowed(intent, query, userId)) {
4884                Trace.traceBegin(TRACE_TAG_PACKAGE_MANAGER, "resolveEphemeral");
4885                final EphemeralResolveInfo ai =
4886                        getEphemeralResolveInfo(intent, resolvedType, userId);
4887                if (ai != null) {
4888                    if (DEBUG_EPHEMERAL) {
4889                        Slog.v(TAG, "Returning an EphemeralResolveInfo");
4890                    }
4891                    bestChoice.ephemeralInstaller = mEphemeralInstallerInfo;
4892                    bestChoice.ephemeralResolveInfo = ai;
4893                }
4894                Trace.traceEnd(TRACE_TAG_PACKAGE_MANAGER);
4895            }
4896            return bestChoice;
4897        } finally {
4898            Trace.traceEnd(TRACE_TAG_PACKAGE_MANAGER);
4899        }
4900    }
4901
4902    @Override
4903    public void setLastChosenActivity(Intent intent, String resolvedType, int flags,
4904            IntentFilter filter, int match, ComponentName activity) {
4905        final int userId = UserHandle.getCallingUserId();
4906        if (DEBUG_PREFERRED) {
4907            Log.v(TAG, "setLastChosenActivity intent=" + intent
4908                + " resolvedType=" + resolvedType
4909                + " flags=" + flags
4910                + " filter=" + filter
4911                + " match=" + match
4912                + " activity=" + activity);
4913            filter.dump(new PrintStreamPrinter(System.out), "    ");
4914        }
4915        intent.setComponent(null);
4916        final List<ResolveInfo> query = queryIntentActivitiesInternal(intent, resolvedType, flags,
4917                userId);
4918        // Find any earlier preferred or last chosen entries and nuke them
4919        findPreferredActivity(intent, resolvedType,
4920                flags, query, 0, false, true, false, userId);
4921        // Add the new activity as the last chosen for this filter
4922        addPreferredActivityInternal(filter, match, null, activity, false, userId,
4923                "Setting last chosen");
4924    }
4925
4926    @Override
4927    public ResolveInfo getLastChosenActivity(Intent intent, String resolvedType, int flags) {
4928        final int userId = UserHandle.getCallingUserId();
4929        if (DEBUG_PREFERRED) Log.v(TAG, "Querying last chosen activity for " + intent);
4930        final List<ResolveInfo> query = queryIntentActivitiesInternal(intent, resolvedType, flags,
4931                userId);
4932        return findPreferredActivity(intent, resolvedType, flags, query, 0,
4933                false, false, false, userId);
4934    }
4935
4936
4937    private boolean isEphemeralAllowed(
4938            Intent intent, List<ResolveInfo> resolvedActivites, int userId) {
4939        // Short circuit and return early if possible.
4940        if (DISABLE_EPHEMERAL_APPS) {
4941            return false;
4942        }
4943        final int callingUser = UserHandle.getCallingUserId();
4944        if (callingUser != UserHandle.USER_SYSTEM) {
4945            return false;
4946        }
4947        if (mEphemeralResolverConnection == null) {
4948            return false;
4949        }
4950        if (intent.getComponent() != null) {
4951            return false;
4952        }
4953        if (intent.getPackage() != null) {
4954            return false;
4955        }
4956        final boolean isWebUri = hasWebURI(intent);
4957        if (!isWebUri) {
4958            return false;
4959        }
4960        // Deny ephemeral apps if the user chose _ALWAYS or _ALWAYS_ASK for intent resolution.
4961        synchronized (mPackages) {
4962            final int count = resolvedActivites.size();
4963            for (int n = 0; n < count; n++) {
4964                ResolveInfo info = resolvedActivites.get(n);
4965                String packageName = info.activityInfo.packageName;
4966                PackageSetting ps = mSettings.mPackages.get(packageName);
4967                if (ps != null) {
4968                    // Try to get the status from User settings first
4969                    long packedStatus = getDomainVerificationStatusLPr(ps, userId);
4970                    int status = (int) (packedStatus >> 32);
4971                    if (status == INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_ALWAYS
4972                            || status == INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_ALWAYS_ASK) {
4973                        if (DEBUG_EPHEMERAL) {
4974                            Slog.v(TAG, "DENY ephemeral apps;"
4975                                + " pkg: " + packageName + ", status: " + status);
4976                        }
4977                        return false;
4978                    }
4979                }
4980            }
4981        }
4982        // We've exhausted all ways to deny ephemeral application; let the system look for them.
4983        return true;
4984    }
4985
4986    private EphemeralResolveInfo getEphemeralResolveInfo(Intent intent, String resolvedType,
4987            int userId) {
4988        MessageDigest digest = null;
4989        try {
4990            digest = MessageDigest.getInstance(EphemeralResolveInfo.SHA_ALGORITHM);
4991        } catch (NoSuchAlgorithmException e) {
4992            // If we can't create a digest, ignore ephemeral apps.
4993            return null;
4994        }
4995
4996        final byte[] hostBytes = intent.getData().getHost().getBytes();
4997        final byte[] digestBytes = digest.digest(hostBytes);
4998        int shaPrefix =
4999                digestBytes[0] << 24
5000                | digestBytes[1] << 16
5001                | digestBytes[2] << 8
5002                | digestBytes[3] << 0;
5003        final List<EphemeralResolveInfo> ephemeralResolveInfoList =
5004                mEphemeralResolverConnection.getEphemeralResolveInfoList(shaPrefix);
5005        if (ephemeralResolveInfoList == null || ephemeralResolveInfoList.size() == 0) {
5006            // No hash prefix match; there are no ephemeral apps for this domain.
5007            return null;
5008        }
5009        for (int i = ephemeralResolveInfoList.size() - 1; i >= 0; --i) {
5010            EphemeralResolveInfo ephemeralApplication = ephemeralResolveInfoList.get(i);
5011            if (!Arrays.equals(digestBytes, ephemeralApplication.getDigestBytes())) {
5012                continue;
5013            }
5014            final List<IntentFilter> filters = ephemeralApplication.getFilters();
5015            // No filters; this should never happen.
5016            if (filters.isEmpty()) {
5017                continue;
5018            }
5019            // We have a domain match; resolve the filters to see if anything matches.
5020            final EphemeralIntentResolver ephemeralResolver = new EphemeralIntentResolver();
5021            for (int j = filters.size() - 1; j >= 0; --j) {
5022                final EphemeralResolveIntentInfo intentInfo =
5023                        new EphemeralResolveIntentInfo(filters.get(j), ephemeralApplication);
5024                ephemeralResolver.addFilter(intentInfo);
5025            }
5026            List<EphemeralResolveInfo> matchedResolveInfoList = ephemeralResolver.queryIntent(
5027                    intent, resolvedType, false /*defaultOnly*/, userId);
5028            if (!matchedResolveInfoList.isEmpty()) {
5029                return matchedResolveInfoList.get(0);
5030            }
5031        }
5032        // Hash or filter mis-match; no ephemeral apps for this domain.
5033        return null;
5034    }
5035
5036    private ResolveInfo chooseBestActivity(Intent intent, String resolvedType,
5037            int flags, List<ResolveInfo> query, int userId) {
5038        if (query != null) {
5039            final int N = query.size();
5040            if (N == 1) {
5041                return query.get(0);
5042            } else if (N > 1) {
5043                final boolean debug = ((intent.getFlags() & Intent.FLAG_DEBUG_LOG_RESOLUTION) != 0);
5044                // If there is more than one activity with the same priority,
5045                // then let the user decide between them.
5046                ResolveInfo r0 = query.get(0);
5047                ResolveInfo r1 = query.get(1);
5048                if (DEBUG_INTENT_MATCHING || debug) {
5049                    Slog.v(TAG, r0.activityInfo.name + "=" + r0.priority + " vs "
5050                            + r1.activityInfo.name + "=" + r1.priority);
5051                }
5052                // If the first activity has a higher priority, or a different
5053                // default, then it is always desirable to pick it.
5054                if (r0.priority != r1.priority
5055                        || r0.preferredOrder != r1.preferredOrder
5056                        || r0.isDefault != r1.isDefault) {
5057                    return query.get(0);
5058                }
5059                // If we have saved a preference for a preferred activity for
5060                // this Intent, use that.
5061                ResolveInfo ri = findPreferredActivity(intent, resolvedType,
5062                        flags, query, r0.priority, true, false, debug, userId);
5063                if (ri != null) {
5064                    return ri;
5065                }
5066                ri = new ResolveInfo(mResolveInfo);
5067                ri.activityInfo = new ActivityInfo(ri.activityInfo);
5068                ri.activityInfo.labelRes = ResolverActivity.getLabelRes(intent.getAction());
5069                // If all of the options come from the same package, show the application's
5070                // label and icon instead of the generic resolver's.
5071                // Some calls like Intent.resolveActivityInfo query the ResolveInfo from here
5072                // and then throw away the ResolveInfo itself, meaning that the caller loses
5073                // the resolvePackageName. Therefore the activityInfo.labelRes above provides
5074                // a fallback for this case; we only set the target package's resources on
5075                // the ResolveInfo, not the ActivityInfo.
5076                final String intentPackage = intent.getPackage();
5077                if (!TextUtils.isEmpty(intentPackage) && allHavePackage(query, intentPackage)) {
5078                    final ApplicationInfo appi = query.get(0).activityInfo.applicationInfo;
5079                    ri.resolvePackageName = intentPackage;
5080                    if (userNeedsBadging(userId)) {
5081                        ri.noResourceId = true;
5082                    } else {
5083                        ri.icon = appi.icon;
5084                    }
5085                    ri.iconResourceId = appi.icon;
5086                    ri.labelRes = appi.labelRes;
5087                }
5088                ri.activityInfo.applicationInfo = new ApplicationInfo(
5089                        ri.activityInfo.applicationInfo);
5090                if (userId != 0) {
5091                    ri.activityInfo.applicationInfo.uid = UserHandle.getUid(userId,
5092                            UserHandle.getAppId(ri.activityInfo.applicationInfo.uid));
5093                }
5094                // Make sure that the resolver is displayable in car mode
5095                if (ri.activityInfo.metaData == null) ri.activityInfo.metaData = new Bundle();
5096                ri.activityInfo.metaData.putBoolean(Intent.METADATA_DOCK_HOME, true);
5097                return ri;
5098            }
5099        }
5100        return null;
5101    }
5102
5103    /**
5104     * Return true if the given list is not empty and all of its contents have
5105     * an activityInfo with the given package name.
5106     */
5107    private boolean allHavePackage(List<ResolveInfo> list, String packageName) {
5108        if (ArrayUtils.isEmpty(list)) {
5109            return false;
5110        }
5111        for (int i = 0, N = list.size(); i < N; i++) {
5112            final ResolveInfo ri = list.get(i);
5113            final ActivityInfo ai = ri != null ? ri.activityInfo : null;
5114            if (ai == null || !packageName.equals(ai.packageName)) {
5115                return false;
5116            }
5117        }
5118        return true;
5119    }
5120
5121    private ResolveInfo findPersistentPreferredActivityLP(Intent intent, String resolvedType,
5122            int flags, List<ResolveInfo> query, boolean debug, int userId) {
5123        final int N = query.size();
5124        PersistentPreferredIntentResolver ppir = mSettings.mPersistentPreferredActivities
5125                .get(userId);
5126        // Get the list of persistent preferred activities that handle the intent
5127        if (DEBUG_PREFERRED || debug) Slog.v(TAG, "Looking for presistent preferred activities...");
5128        List<PersistentPreferredActivity> pprefs = ppir != null
5129                ? ppir.queryIntent(intent, resolvedType,
5130                        (flags & PackageManager.MATCH_DEFAULT_ONLY) != 0, userId)
5131                : null;
5132        if (pprefs != null && pprefs.size() > 0) {
5133            final int M = pprefs.size();
5134            for (int i=0; i<M; i++) {
5135                final PersistentPreferredActivity ppa = pprefs.get(i);
5136                if (DEBUG_PREFERRED || debug) {
5137                    Slog.v(TAG, "Checking PersistentPreferredActivity ds="
5138                            + (ppa.countDataSchemes() > 0 ? ppa.getDataScheme(0) : "<none>")
5139                            + "\n  component=" + ppa.mComponent);
5140                    ppa.dump(new LogPrinter(Log.VERBOSE, TAG, Log.LOG_ID_SYSTEM), "  ");
5141                }
5142                final ActivityInfo ai = getActivityInfo(ppa.mComponent,
5143                        flags | MATCH_DISABLED_COMPONENTS, userId);
5144                if (DEBUG_PREFERRED || debug) {
5145                    Slog.v(TAG, "Found persistent preferred activity:");
5146                    if (ai != null) {
5147                        ai.dump(new LogPrinter(Log.VERBOSE, TAG, Log.LOG_ID_SYSTEM), "  ");
5148                    } else {
5149                        Slog.v(TAG, "  null");
5150                    }
5151                }
5152                if (ai == null) {
5153                    // This previously registered persistent preferred activity
5154                    // component is no longer known. Ignore it and do NOT remove it.
5155                    continue;
5156                }
5157                for (int j=0; j<N; j++) {
5158                    final ResolveInfo ri = query.get(j);
5159                    if (!ri.activityInfo.applicationInfo.packageName
5160                            .equals(ai.applicationInfo.packageName)) {
5161                        continue;
5162                    }
5163                    if (!ri.activityInfo.name.equals(ai.name)) {
5164                        continue;
5165                    }
5166                    //  Found a persistent preference that can handle the intent.
5167                    if (DEBUG_PREFERRED || debug) {
5168                        Slog.v(TAG, "Returning persistent preferred activity: " +
5169                                ri.activityInfo.packageName + "/" + ri.activityInfo.name);
5170                    }
5171                    return ri;
5172                }
5173            }
5174        }
5175        return null;
5176    }
5177
5178    // TODO: handle preferred activities missing while user has amnesia
5179    ResolveInfo findPreferredActivity(Intent intent, String resolvedType, int flags,
5180            List<ResolveInfo> query, int priority, boolean always,
5181            boolean removeMatches, boolean debug, int userId) {
5182        if (!sUserManager.exists(userId)) return null;
5183        flags = updateFlagsForResolve(flags, userId, intent);
5184        // writer
5185        synchronized (mPackages) {
5186            if (intent.getSelector() != null) {
5187                intent = intent.getSelector();
5188            }
5189            if (DEBUG_PREFERRED) intent.addFlags(Intent.FLAG_DEBUG_LOG_RESOLUTION);
5190
5191            // Try to find a matching persistent preferred activity.
5192            ResolveInfo pri = findPersistentPreferredActivityLP(intent, resolvedType, flags, query,
5193                    debug, userId);
5194
5195            // If a persistent preferred activity matched, use it.
5196            if (pri != null) {
5197                return pri;
5198            }
5199
5200            PreferredIntentResolver pir = mSettings.mPreferredActivities.get(userId);
5201            // Get the list of preferred activities that handle the intent
5202            if (DEBUG_PREFERRED || debug) Slog.v(TAG, "Looking for preferred activities...");
5203            List<PreferredActivity> prefs = pir != null
5204                    ? pir.queryIntent(intent, resolvedType,
5205                            (flags & PackageManager.MATCH_DEFAULT_ONLY) != 0, userId)
5206                    : null;
5207            if (prefs != null && prefs.size() > 0) {
5208                boolean changed = false;
5209                try {
5210                    // First figure out how good the original match set is.
5211                    // We will only allow preferred activities that came
5212                    // from the same match quality.
5213                    int match = 0;
5214
5215                    if (DEBUG_PREFERRED || debug) Slog.v(TAG, "Figuring out best match...");
5216
5217                    final int N = query.size();
5218                    for (int j=0; j<N; j++) {
5219                        final ResolveInfo ri = query.get(j);
5220                        if (DEBUG_PREFERRED || debug) Slog.v(TAG, "Match for " + ri.activityInfo
5221                                + ": 0x" + Integer.toHexString(match));
5222                        if (ri.match > match) {
5223                            match = ri.match;
5224                        }
5225                    }
5226
5227                    if (DEBUG_PREFERRED || debug) Slog.v(TAG, "Best match: 0x"
5228                            + Integer.toHexString(match));
5229
5230                    match &= IntentFilter.MATCH_CATEGORY_MASK;
5231                    final int M = prefs.size();
5232                    for (int i=0; i<M; i++) {
5233                        final PreferredActivity pa = prefs.get(i);
5234                        if (DEBUG_PREFERRED || debug) {
5235                            Slog.v(TAG, "Checking PreferredActivity ds="
5236                                    + (pa.countDataSchemes() > 0 ? pa.getDataScheme(0) : "<none>")
5237                                    + "\n  component=" + pa.mPref.mComponent);
5238                            pa.dump(new LogPrinter(Log.VERBOSE, TAG, Log.LOG_ID_SYSTEM), "  ");
5239                        }
5240                        if (pa.mPref.mMatch != match) {
5241                            if (DEBUG_PREFERRED || debug) Slog.v(TAG, "Skipping bad match "
5242                                    + Integer.toHexString(pa.mPref.mMatch));
5243                            continue;
5244                        }
5245                        // If it's not an "always" type preferred activity and that's what we're
5246                        // looking for, skip it.
5247                        if (always && !pa.mPref.mAlways) {
5248                            if (DEBUG_PREFERRED || debug) Slog.v(TAG, "Skipping mAlways=false entry");
5249                            continue;
5250                        }
5251                        final ActivityInfo ai = getActivityInfo(
5252                                pa.mPref.mComponent, flags | MATCH_DISABLED_COMPONENTS
5253                                        | MATCH_DIRECT_BOOT_AWARE | MATCH_DIRECT_BOOT_UNAWARE,
5254                                userId);
5255                        if (DEBUG_PREFERRED || debug) {
5256                            Slog.v(TAG, "Found preferred activity:");
5257                            if (ai != null) {
5258                                ai.dump(new LogPrinter(Log.VERBOSE, TAG, Log.LOG_ID_SYSTEM), "  ");
5259                            } else {
5260                                Slog.v(TAG, "  null");
5261                            }
5262                        }
5263                        if (ai == null) {
5264                            // This previously registered preferred activity
5265                            // component is no longer known.  Most likely an update
5266                            // to the app was installed and in the new version this
5267                            // component no longer exists.  Clean it up by removing
5268                            // it from the preferred activities list, and skip it.
5269                            Slog.w(TAG, "Removing dangling preferred activity: "
5270                                    + pa.mPref.mComponent);
5271                            pir.removeFilter(pa);
5272                            changed = true;
5273                            continue;
5274                        }
5275                        for (int j=0; j<N; j++) {
5276                            final ResolveInfo ri = query.get(j);
5277                            if (!ri.activityInfo.applicationInfo.packageName
5278                                    .equals(ai.applicationInfo.packageName)) {
5279                                continue;
5280                            }
5281                            if (!ri.activityInfo.name.equals(ai.name)) {
5282                                continue;
5283                            }
5284
5285                            if (removeMatches) {
5286                                pir.removeFilter(pa);
5287                                changed = true;
5288                                if (DEBUG_PREFERRED) {
5289                                    Slog.v(TAG, "Removing match " + pa.mPref.mComponent);
5290                                }
5291                                break;
5292                            }
5293
5294                            // Okay we found a previously set preferred or last chosen app.
5295                            // If the result set is different from when this
5296                            // was created, we need to clear it and re-ask the
5297                            // user their preference, if we're looking for an "always" type entry.
5298                            if (always && !pa.mPref.sameSet(query)) {
5299                                Slog.i(TAG, "Result set changed, dropping preferred activity for "
5300                                        + intent + " type " + resolvedType);
5301                                if (DEBUG_PREFERRED) {
5302                                    Slog.v(TAG, "Removing preferred activity since set changed "
5303                                            + pa.mPref.mComponent);
5304                                }
5305                                pir.removeFilter(pa);
5306                                // Re-add the filter as a "last chosen" entry (!always)
5307                                PreferredActivity lastChosen = new PreferredActivity(
5308                                        pa, pa.mPref.mMatch, null, pa.mPref.mComponent, false);
5309                                pir.addFilter(lastChosen);
5310                                changed = true;
5311                                return null;
5312                            }
5313
5314                            // Yay! Either the set matched or we're looking for the last chosen
5315                            if (DEBUG_PREFERRED || debug) Slog.v(TAG, "Returning preferred activity: "
5316                                    + ri.activityInfo.packageName + "/" + ri.activityInfo.name);
5317                            return ri;
5318                        }
5319                    }
5320                } finally {
5321                    if (changed) {
5322                        if (DEBUG_PREFERRED) {
5323                            Slog.v(TAG, "Preferred activity bookkeeping changed; writing restrictions");
5324                        }
5325                        scheduleWritePackageRestrictionsLocked(userId);
5326                    }
5327                }
5328            }
5329        }
5330        if (DEBUG_PREFERRED || debug) Slog.v(TAG, "No preferred activity to return");
5331        return null;
5332    }
5333
5334    /*
5335     * Returns if intent can be forwarded from the sourceUserId to the targetUserId
5336     */
5337    @Override
5338    public boolean canForwardTo(Intent intent, String resolvedType, int sourceUserId,
5339            int targetUserId) {
5340        mContext.enforceCallingOrSelfPermission(
5341                android.Manifest.permission.INTERACT_ACROSS_USERS_FULL, null);
5342        List<CrossProfileIntentFilter> matches =
5343                getMatchingCrossProfileIntentFilters(intent, resolvedType, sourceUserId);
5344        if (matches != null) {
5345            int size = matches.size();
5346            for (int i = 0; i < size; i++) {
5347                if (matches.get(i).getTargetUserId() == targetUserId) return true;
5348            }
5349        }
5350        if (hasWebURI(intent)) {
5351            // cross-profile app linking works only towards the parent.
5352            final UserInfo parent = getProfileParent(sourceUserId);
5353            synchronized(mPackages) {
5354                int flags = updateFlagsForResolve(0, parent.id, intent);
5355                CrossProfileDomainInfo xpDomainInfo = getCrossProfileDomainPreferredLpr(
5356                        intent, resolvedType, flags, sourceUserId, parent.id);
5357                return xpDomainInfo != null;
5358            }
5359        }
5360        return false;
5361    }
5362
5363    private UserInfo getProfileParent(int userId) {
5364        final long identity = Binder.clearCallingIdentity();
5365        try {
5366            return sUserManager.getProfileParent(userId);
5367        } finally {
5368            Binder.restoreCallingIdentity(identity);
5369        }
5370    }
5371
5372    private List<CrossProfileIntentFilter> getMatchingCrossProfileIntentFilters(Intent intent,
5373            String resolvedType, int userId) {
5374        CrossProfileIntentResolver resolver = mSettings.mCrossProfileIntentResolvers.get(userId);
5375        if (resolver != null) {
5376            return resolver.queryIntent(intent, resolvedType, false, userId);
5377        }
5378        return null;
5379    }
5380
5381    @Override
5382    public @NonNull ParceledListSlice<ResolveInfo> queryIntentActivities(Intent intent,
5383            String resolvedType, int flags, int userId) {
5384        try {
5385            Trace.traceBegin(TRACE_TAG_PACKAGE_MANAGER, "queryIntentActivities");
5386
5387            return new ParceledListSlice<>(
5388                    queryIntentActivitiesInternal(intent, resolvedType, flags, userId));
5389        } finally {
5390            Trace.traceEnd(TRACE_TAG_PACKAGE_MANAGER);
5391        }
5392    }
5393
5394    private @NonNull List<ResolveInfo> queryIntentActivitiesInternal(Intent intent,
5395            String resolvedType, int flags, int userId) {
5396        if (!sUserManager.exists(userId)) return Collections.emptyList();
5397        flags = updateFlagsForResolve(flags, userId, intent);
5398        enforceCrossUserPermission(Binder.getCallingUid(), userId,
5399                false /* requireFullPermission */, false /* checkShell */,
5400                "query intent activities");
5401        ComponentName comp = intent.getComponent();
5402        if (comp == null) {
5403            if (intent.getSelector() != null) {
5404                intent = intent.getSelector();
5405                comp = intent.getComponent();
5406            }
5407        }
5408
5409        if (comp != null) {
5410            final List<ResolveInfo> list = new ArrayList<ResolveInfo>(1);
5411            final ActivityInfo ai = getActivityInfo(comp, flags, userId);
5412            if (ai != null) {
5413                final ResolveInfo ri = new ResolveInfo();
5414                ri.activityInfo = ai;
5415                list.add(ri);
5416            }
5417            return list;
5418        }
5419
5420        // reader
5421        synchronized (mPackages) {
5422            final String pkgName = intent.getPackage();
5423            if (pkgName == null) {
5424                List<CrossProfileIntentFilter> matchingFilters =
5425                        getMatchingCrossProfileIntentFilters(intent, resolvedType, userId);
5426                // Check for results that need to skip the current profile.
5427                ResolveInfo xpResolveInfo  = querySkipCurrentProfileIntents(matchingFilters, intent,
5428                        resolvedType, flags, userId);
5429                if (xpResolveInfo != null) {
5430                    List<ResolveInfo> result = new ArrayList<ResolveInfo>(1);
5431                    result.add(xpResolveInfo);
5432                    return filterIfNotSystemUser(result, userId);
5433                }
5434
5435                // Check for results in the current profile.
5436                List<ResolveInfo> result = mActivities.queryIntent(
5437                        intent, resolvedType, flags, userId);
5438                result = filterIfNotSystemUser(result, userId);
5439
5440                // Check for cross profile results.
5441                boolean hasNonNegativePriorityResult = hasNonNegativePriority(result);
5442                xpResolveInfo = queryCrossProfileIntents(
5443                        matchingFilters, intent, resolvedType, flags, userId,
5444                        hasNonNegativePriorityResult);
5445                if (xpResolveInfo != null && isUserEnabled(xpResolveInfo.targetUserId)) {
5446                    boolean isVisibleToUser = filterIfNotSystemUser(
5447                            Collections.singletonList(xpResolveInfo), userId).size() > 0;
5448                    if (isVisibleToUser) {
5449                        result.add(xpResolveInfo);
5450                        Collections.sort(result, mResolvePrioritySorter);
5451                    }
5452                }
5453                if (hasWebURI(intent)) {
5454                    CrossProfileDomainInfo xpDomainInfo = null;
5455                    final UserInfo parent = getProfileParent(userId);
5456                    if (parent != null) {
5457                        xpDomainInfo = getCrossProfileDomainPreferredLpr(intent, resolvedType,
5458                                flags, userId, parent.id);
5459                    }
5460                    if (xpDomainInfo != null) {
5461                        if (xpResolveInfo != null) {
5462                            // If we didn't remove it, the cross-profile ResolveInfo would be twice
5463                            // in the result.
5464                            result.remove(xpResolveInfo);
5465                        }
5466                        if (result.size() == 0) {
5467                            result.add(xpDomainInfo.resolveInfo);
5468                            return result;
5469                        }
5470                    } else if (result.size() <= 1) {
5471                        return result;
5472                    }
5473                    result = filterCandidatesWithDomainPreferredActivitiesLPr(intent, flags, result,
5474                            xpDomainInfo, userId);
5475                    Collections.sort(result, mResolvePrioritySorter);
5476                }
5477                return result;
5478            }
5479            final PackageParser.Package pkg = mPackages.get(pkgName);
5480            if (pkg != null) {
5481                return filterIfNotSystemUser(
5482                        mActivities.queryIntentForPackage(
5483                                intent, resolvedType, flags, pkg.activities, userId),
5484                        userId);
5485            }
5486            return new ArrayList<ResolveInfo>();
5487        }
5488    }
5489
5490    private static class CrossProfileDomainInfo {
5491        /* ResolveInfo for IntentForwarderActivity to send the intent to the other profile */
5492        ResolveInfo resolveInfo;
5493        /* Best domain verification status of the activities found in the other profile */
5494        int bestDomainVerificationStatus;
5495    }
5496
5497    private CrossProfileDomainInfo getCrossProfileDomainPreferredLpr(Intent intent,
5498            String resolvedType, int flags, int sourceUserId, int parentUserId) {
5499        if (!sUserManager.hasUserRestriction(UserManager.ALLOW_PARENT_PROFILE_APP_LINKING,
5500                sourceUserId)) {
5501            return null;
5502        }
5503        List<ResolveInfo> resultTargetUser = mActivities.queryIntent(intent,
5504                resolvedType, flags, parentUserId);
5505
5506        if (resultTargetUser == null || resultTargetUser.isEmpty()) {
5507            return null;
5508        }
5509        CrossProfileDomainInfo result = null;
5510        int size = resultTargetUser.size();
5511        for (int i = 0; i < size; i++) {
5512            ResolveInfo riTargetUser = resultTargetUser.get(i);
5513            // Intent filter verification is only for filters that specify a host. So don't return
5514            // those that handle all web uris.
5515            if (riTargetUser.handleAllWebDataURI) {
5516                continue;
5517            }
5518            String packageName = riTargetUser.activityInfo.packageName;
5519            PackageSetting ps = mSettings.mPackages.get(packageName);
5520            if (ps == null) {
5521                continue;
5522            }
5523            long verificationState = getDomainVerificationStatusLPr(ps, parentUserId);
5524            int status = (int)(verificationState >> 32);
5525            if (result == null) {
5526                result = new CrossProfileDomainInfo();
5527                result.resolveInfo = createForwardingResolveInfoUnchecked(new IntentFilter(),
5528                        sourceUserId, parentUserId);
5529                result.bestDomainVerificationStatus = status;
5530            } else {
5531                result.bestDomainVerificationStatus = bestDomainVerificationStatus(status,
5532                        result.bestDomainVerificationStatus);
5533            }
5534        }
5535        // Don't consider matches with status NEVER across profiles.
5536        if (result != null && result.bestDomainVerificationStatus
5537                == INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_NEVER) {
5538            return null;
5539        }
5540        return result;
5541    }
5542
5543    /**
5544     * Verification statuses are ordered from the worse to the best, except for
5545     * INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_NEVER, which is the worse.
5546     */
5547    private int bestDomainVerificationStatus(int status1, int status2) {
5548        if (status1 == INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_NEVER) {
5549            return status2;
5550        }
5551        if (status2 == INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_NEVER) {
5552            return status1;
5553        }
5554        return (int) MathUtils.max(status1, status2);
5555    }
5556
5557    private boolean isUserEnabled(int userId) {
5558        long callingId = Binder.clearCallingIdentity();
5559        try {
5560            UserInfo userInfo = sUserManager.getUserInfo(userId);
5561            return userInfo != null && userInfo.isEnabled();
5562        } finally {
5563            Binder.restoreCallingIdentity(callingId);
5564        }
5565    }
5566
5567    /**
5568     * Filter out activities with systemUserOnly flag set, when current user is not System.
5569     *
5570     * @return filtered list
5571     */
5572    private List<ResolveInfo> filterIfNotSystemUser(List<ResolveInfo> resolveInfos, int userId) {
5573        if (userId == UserHandle.USER_SYSTEM) {
5574            return resolveInfos;
5575        }
5576        for (int i = resolveInfos.size() - 1; i >= 0; i--) {
5577            ResolveInfo info = resolveInfos.get(i);
5578            if ((info.activityInfo.flags & ActivityInfo.FLAG_SYSTEM_USER_ONLY) != 0) {
5579                resolveInfos.remove(i);
5580            }
5581        }
5582        return resolveInfos;
5583    }
5584
5585    /**
5586     * @param resolveInfos list of resolve infos in descending priority order
5587     * @return if the list contains a resolve info with non-negative priority
5588     */
5589    private boolean hasNonNegativePriority(List<ResolveInfo> resolveInfos) {
5590        return resolveInfos.size() > 0 && resolveInfos.get(0).priority >= 0;
5591    }
5592
5593    private static boolean hasWebURI(Intent intent) {
5594        if (intent.getData() == null) {
5595            return false;
5596        }
5597        final String scheme = intent.getScheme();
5598        if (TextUtils.isEmpty(scheme)) {
5599            return false;
5600        }
5601        return scheme.equals(IntentFilter.SCHEME_HTTP) || scheme.equals(IntentFilter.SCHEME_HTTPS);
5602    }
5603
5604    private List<ResolveInfo> filterCandidatesWithDomainPreferredActivitiesLPr(Intent intent,
5605            int matchFlags, List<ResolveInfo> candidates, CrossProfileDomainInfo xpDomainInfo,
5606            int userId) {
5607        final boolean debug = (intent.getFlags() & Intent.FLAG_DEBUG_LOG_RESOLUTION) != 0;
5608
5609        if (DEBUG_PREFERRED || DEBUG_DOMAIN_VERIFICATION) {
5610            Slog.v(TAG, "Filtering results with preferred activities. Candidates count: " +
5611                    candidates.size());
5612        }
5613
5614        ArrayList<ResolveInfo> result = new ArrayList<ResolveInfo>();
5615        ArrayList<ResolveInfo> alwaysList = new ArrayList<ResolveInfo>();
5616        ArrayList<ResolveInfo> undefinedList = new ArrayList<ResolveInfo>();
5617        ArrayList<ResolveInfo> alwaysAskList = new ArrayList<ResolveInfo>();
5618        ArrayList<ResolveInfo> neverList = new ArrayList<ResolveInfo>();
5619        ArrayList<ResolveInfo> matchAllList = new ArrayList<ResolveInfo>();
5620
5621        synchronized (mPackages) {
5622            final int count = candidates.size();
5623            // First, try to use linked apps. Partition the candidates into four lists:
5624            // one for the final results, one for the "do not use ever", one for "undefined status"
5625            // and finally one for "browser app type".
5626            for (int n=0; n<count; n++) {
5627                ResolveInfo info = candidates.get(n);
5628                String packageName = info.activityInfo.packageName;
5629                PackageSetting ps = mSettings.mPackages.get(packageName);
5630                if (ps != null) {
5631                    // Add to the special match all list (Browser use case)
5632                    if (info.handleAllWebDataURI) {
5633                        matchAllList.add(info);
5634                        continue;
5635                    }
5636                    // Try to get the status from User settings first
5637                    long packedStatus = getDomainVerificationStatusLPr(ps, userId);
5638                    int status = (int)(packedStatus >> 32);
5639                    int linkGeneration = (int)(packedStatus & 0xFFFFFFFF);
5640                    if (status == INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_ALWAYS) {
5641                        if (DEBUG_DOMAIN_VERIFICATION) {
5642                            Slog.i(TAG, "  + always: " + info.activityInfo.packageName
5643                                    + " : linkgen=" + linkGeneration);
5644                        }
5645                        // Use link-enabled generation as preferredOrder, i.e.
5646                        // prefer newly-enabled over earlier-enabled.
5647                        info.preferredOrder = linkGeneration;
5648                        alwaysList.add(info);
5649                    } else if (status == INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_NEVER) {
5650                        if (DEBUG_DOMAIN_VERIFICATION) {
5651                            Slog.i(TAG, "  + never: " + info.activityInfo.packageName);
5652                        }
5653                        neverList.add(info);
5654                    } else if (status == INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_ALWAYS_ASK) {
5655                        if (DEBUG_DOMAIN_VERIFICATION) {
5656                            Slog.i(TAG, "  + always-ask: " + info.activityInfo.packageName);
5657                        }
5658                        alwaysAskList.add(info);
5659                    } else if (status == INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_UNDEFINED ||
5660                            status == INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_ASK) {
5661                        if (DEBUG_DOMAIN_VERIFICATION) {
5662                            Slog.i(TAG, "  + ask: " + info.activityInfo.packageName);
5663                        }
5664                        undefinedList.add(info);
5665                    }
5666                }
5667            }
5668
5669            // We'll want to include browser possibilities in a few cases
5670            boolean includeBrowser = false;
5671
5672            // First try to add the "always" resolution(s) for the current user, if any
5673            if (alwaysList.size() > 0) {
5674                result.addAll(alwaysList);
5675            } else {
5676                // Add all undefined apps as we want them to appear in the disambiguation dialog.
5677                result.addAll(undefinedList);
5678                // Maybe add one for the other profile.
5679                if (xpDomainInfo != null && (
5680                        xpDomainInfo.bestDomainVerificationStatus
5681                        != INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_NEVER)) {
5682                    result.add(xpDomainInfo.resolveInfo);
5683                }
5684                includeBrowser = true;
5685            }
5686
5687            // The presence of any 'always ask' alternatives means we'll also offer browsers.
5688            // If there were 'always' entries their preferred order has been set, so we also
5689            // back that off to make the alternatives equivalent
5690            if (alwaysAskList.size() > 0) {
5691                for (ResolveInfo i : result) {
5692                    i.preferredOrder = 0;
5693                }
5694                result.addAll(alwaysAskList);
5695                includeBrowser = true;
5696            }
5697
5698            if (includeBrowser) {
5699                // Also add browsers (all of them or only the default one)
5700                if (DEBUG_DOMAIN_VERIFICATION) {
5701                    Slog.v(TAG, "   ...including browsers in candidate set");
5702                }
5703                if ((matchFlags & MATCH_ALL) != 0) {
5704                    result.addAll(matchAllList);
5705                } else {
5706                    // Browser/generic handling case.  If there's a default browser, go straight
5707                    // to that (but only if there is no other higher-priority match).
5708                    final String defaultBrowserPackageName = getDefaultBrowserPackageName(userId);
5709                    int maxMatchPrio = 0;
5710                    ResolveInfo defaultBrowserMatch = null;
5711                    final int numCandidates = matchAllList.size();
5712                    for (int n = 0; n < numCandidates; n++) {
5713                        ResolveInfo info = matchAllList.get(n);
5714                        // track the highest overall match priority...
5715                        if (info.priority > maxMatchPrio) {
5716                            maxMatchPrio = info.priority;
5717                        }
5718                        // ...and the highest-priority default browser match
5719                        if (info.activityInfo.packageName.equals(defaultBrowserPackageName)) {
5720                            if (defaultBrowserMatch == null
5721                                    || (defaultBrowserMatch.priority < info.priority)) {
5722                                if (debug) {
5723                                    Slog.v(TAG, "Considering default browser match " + info);
5724                                }
5725                                defaultBrowserMatch = info;
5726                            }
5727                        }
5728                    }
5729                    if (defaultBrowserMatch != null
5730                            && defaultBrowserMatch.priority >= maxMatchPrio
5731                            && !TextUtils.isEmpty(defaultBrowserPackageName))
5732                    {
5733                        if (debug) {
5734                            Slog.v(TAG, "Default browser match " + defaultBrowserMatch);
5735                        }
5736                        result.add(defaultBrowserMatch);
5737                    } else {
5738                        result.addAll(matchAllList);
5739                    }
5740                }
5741
5742                // If there is nothing selected, add all candidates and remove the ones that the user
5743                // has explicitly put into the INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_NEVER state
5744                if (result.size() == 0) {
5745                    result.addAll(candidates);
5746                    result.removeAll(neverList);
5747                }
5748            }
5749        }
5750        if (DEBUG_PREFERRED || DEBUG_DOMAIN_VERIFICATION) {
5751            Slog.v(TAG, "Filtered results with preferred activities. New candidates count: " +
5752                    result.size());
5753            for (ResolveInfo info : result) {
5754                Slog.v(TAG, "  + " + info.activityInfo);
5755            }
5756        }
5757        return result;
5758    }
5759
5760    // Returns a packed value as a long:
5761    //
5762    // high 'int'-sized word: link status: undefined/ask/never/always.
5763    // low 'int'-sized word: relative priority among 'always' results.
5764    private long getDomainVerificationStatusLPr(PackageSetting ps, int userId) {
5765        long result = ps.getDomainVerificationStatusForUser(userId);
5766        // if none available, get the master status
5767        if (result >> 32 == INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_UNDEFINED) {
5768            if (ps.getIntentFilterVerificationInfo() != null) {
5769                result = ((long)ps.getIntentFilterVerificationInfo().getStatus()) << 32;
5770            }
5771        }
5772        return result;
5773    }
5774
5775    private ResolveInfo querySkipCurrentProfileIntents(
5776            List<CrossProfileIntentFilter> matchingFilters, Intent intent, String resolvedType,
5777            int flags, int sourceUserId) {
5778        if (matchingFilters != null) {
5779            int size = matchingFilters.size();
5780            for (int i = 0; i < size; i ++) {
5781                CrossProfileIntentFilter filter = matchingFilters.get(i);
5782                if ((filter.getFlags() & PackageManager.SKIP_CURRENT_PROFILE) != 0) {
5783                    // Checking if there are activities in the target user that can handle the
5784                    // intent.
5785                    ResolveInfo resolveInfo = createForwardingResolveInfo(filter, intent,
5786                            resolvedType, flags, sourceUserId);
5787                    if (resolveInfo != null) {
5788                        return resolveInfo;
5789                    }
5790                }
5791            }
5792        }
5793        return null;
5794    }
5795
5796    // Return matching ResolveInfo in target user if any.
5797    private ResolveInfo queryCrossProfileIntents(
5798            List<CrossProfileIntentFilter> matchingFilters, Intent intent, String resolvedType,
5799            int flags, int sourceUserId, boolean matchInCurrentProfile) {
5800        if (matchingFilters != null) {
5801            // Two {@link CrossProfileIntentFilter}s can have the same targetUserId and
5802            // match the same intent. For performance reasons, it is better not to
5803            // run queryIntent twice for the same userId
5804            SparseBooleanArray alreadyTriedUserIds = new SparseBooleanArray();
5805            int size = matchingFilters.size();
5806            for (int i = 0; i < size; i++) {
5807                CrossProfileIntentFilter filter = matchingFilters.get(i);
5808                int targetUserId = filter.getTargetUserId();
5809                boolean skipCurrentProfile =
5810                        (filter.getFlags() & PackageManager.SKIP_CURRENT_PROFILE) != 0;
5811                boolean skipCurrentProfileIfNoMatchFound =
5812                        (filter.getFlags() & PackageManager.ONLY_IF_NO_MATCH_FOUND) != 0;
5813                if (!skipCurrentProfile && !alreadyTriedUserIds.get(targetUserId)
5814                        && (!skipCurrentProfileIfNoMatchFound || !matchInCurrentProfile)) {
5815                    // Checking if there are activities in the target user that can handle the
5816                    // intent.
5817                    ResolveInfo resolveInfo = createForwardingResolveInfo(filter, intent,
5818                            resolvedType, flags, sourceUserId);
5819                    if (resolveInfo != null) return resolveInfo;
5820                    alreadyTriedUserIds.put(targetUserId, true);
5821                }
5822            }
5823        }
5824        return null;
5825    }
5826
5827    /**
5828     * If the filter's target user can handle the intent and is enabled: returns a ResolveInfo that
5829     * will forward the intent to the filter's target user.
5830     * Otherwise, returns null.
5831     */
5832    private ResolveInfo createForwardingResolveInfo(CrossProfileIntentFilter filter, Intent intent,
5833            String resolvedType, int flags, int sourceUserId) {
5834        int targetUserId = filter.getTargetUserId();
5835        List<ResolveInfo> resultTargetUser = mActivities.queryIntent(intent,
5836                resolvedType, flags, targetUserId);
5837        if (resultTargetUser != null && isUserEnabled(targetUserId)) {
5838            // If all the matches in the target profile are suspended, return null.
5839            for (int i = resultTargetUser.size() - 1; i >= 0; i--) {
5840                if ((resultTargetUser.get(i).activityInfo.applicationInfo.flags
5841                        & ApplicationInfo.FLAG_SUSPENDED) == 0) {
5842                    return createForwardingResolveInfoUnchecked(filter, sourceUserId,
5843                            targetUserId);
5844                }
5845            }
5846        }
5847        return null;
5848    }
5849
5850    private ResolveInfo createForwardingResolveInfoUnchecked(IntentFilter filter,
5851            int sourceUserId, int targetUserId) {
5852        ResolveInfo forwardingResolveInfo = new ResolveInfo();
5853        long ident = Binder.clearCallingIdentity();
5854        boolean targetIsProfile;
5855        try {
5856            targetIsProfile = sUserManager.getUserInfo(targetUserId).isManagedProfile();
5857        } finally {
5858            Binder.restoreCallingIdentity(ident);
5859        }
5860        String className;
5861        if (targetIsProfile) {
5862            className = FORWARD_INTENT_TO_MANAGED_PROFILE;
5863        } else {
5864            className = FORWARD_INTENT_TO_PARENT;
5865        }
5866        ComponentName forwardingActivityComponentName = new ComponentName(
5867                mAndroidApplication.packageName, className);
5868        ActivityInfo forwardingActivityInfo = getActivityInfo(forwardingActivityComponentName, 0,
5869                sourceUserId);
5870        if (!targetIsProfile) {
5871            forwardingActivityInfo.showUserIcon = targetUserId;
5872            forwardingResolveInfo.noResourceId = true;
5873        }
5874        forwardingResolveInfo.activityInfo = forwardingActivityInfo;
5875        forwardingResolveInfo.priority = 0;
5876        forwardingResolveInfo.preferredOrder = 0;
5877        forwardingResolveInfo.match = 0;
5878        forwardingResolveInfo.isDefault = true;
5879        forwardingResolveInfo.filter = filter;
5880        forwardingResolveInfo.targetUserId = targetUserId;
5881        return forwardingResolveInfo;
5882    }
5883
5884    @Override
5885    public @NonNull ParceledListSlice<ResolveInfo> queryIntentActivityOptions(ComponentName caller,
5886            Intent[] specifics, String[] specificTypes, Intent intent,
5887            String resolvedType, int flags, int userId) {
5888        return new ParceledListSlice<>(queryIntentActivityOptionsInternal(caller, specifics,
5889                specificTypes, intent, resolvedType, flags, userId));
5890    }
5891
5892    private @NonNull List<ResolveInfo> queryIntentActivityOptionsInternal(ComponentName caller,
5893            Intent[] specifics, String[] specificTypes, Intent intent,
5894            String resolvedType, int flags, int userId) {
5895        if (!sUserManager.exists(userId)) return Collections.emptyList();
5896        flags = updateFlagsForResolve(flags, userId, intent);
5897        enforceCrossUserPermission(Binder.getCallingUid(), userId,
5898                false /* requireFullPermission */, false /* checkShell */,
5899                "query intent activity options");
5900        final String resultsAction = intent.getAction();
5901
5902        final List<ResolveInfo> results = queryIntentActivitiesInternal(intent, resolvedType, flags
5903                | PackageManager.GET_RESOLVED_FILTER, userId);
5904
5905        if (DEBUG_INTENT_MATCHING) {
5906            Log.v(TAG, "Query " + intent + ": " + results);
5907        }
5908
5909        int specificsPos = 0;
5910        int N;
5911
5912        // todo: note that the algorithm used here is O(N^2).  This
5913        // isn't a problem in our current environment, but if we start running
5914        // into situations where we have more than 5 or 10 matches then this
5915        // should probably be changed to something smarter...
5916
5917        // First we go through and resolve each of the specific items
5918        // that were supplied, taking care of removing any corresponding
5919        // duplicate items in the generic resolve list.
5920        if (specifics != null) {
5921            for (int i=0; i<specifics.length; i++) {
5922                final Intent sintent = specifics[i];
5923                if (sintent == null) {
5924                    continue;
5925                }
5926
5927                if (DEBUG_INTENT_MATCHING) {
5928                    Log.v(TAG, "Specific #" + i + ": " + sintent);
5929                }
5930
5931                String action = sintent.getAction();
5932                if (resultsAction != null && resultsAction.equals(action)) {
5933                    // If this action was explicitly requested, then don't
5934                    // remove things that have it.
5935                    action = null;
5936                }
5937
5938                ResolveInfo ri = null;
5939                ActivityInfo ai = null;
5940
5941                ComponentName comp = sintent.getComponent();
5942                if (comp == null) {
5943                    ri = resolveIntent(
5944                        sintent,
5945                        specificTypes != null ? specificTypes[i] : null,
5946                            flags, userId);
5947                    if (ri == null) {
5948                        continue;
5949                    }
5950                    if (ri == mResolveInfo) {
5951                        // ACK!  Must do something better with this.
5952                    }
5953                    ai = ri.activityInfo;
5954                    comp = new ComponentName(ai.applicationInfo.packageName,
5955                            ai.name);
5956                } else {
5957                    ai = getActivityInfo(comp, flags, userId);
5958                    if (ai == null) {
5959                        continue;
5960                    }
5961                }
5962
5963                // Look for any generic query activities that are duplicates
5964                // of this specific one, and remove them from the results.
5965                if (DEBUG_INTENT_MATCHING) Log.v(TAG, "Specific #" + i + ": " + ai);
5966                N = results.size();
5967                int j;
5968                for (j=specificsPos; j<N; j++) {
5969                    ResolveInfo sri = results.get(j);
5970                    if ((sri.activityInfo.name.equals(comp.getClassName())
5971                            && sri.activityInfo.applicationInfo.packageName.equals(
5972                                    comp.getPackageName()))
5973                        || (action != null && sri.filter.matchAction(action))) {
5974                        results.remove(j);
5975                        if (DEBUG_INTENT_MATCHING) Log.v(
5976                            TAG, "Removing duplicate item from " + j
5977                            + " due to specific " + specificsPos);
5978                        if (ri == null) {
5979                            ri = sri;
5980                        }
5981                        j--;
5982                        N--;
5983                    }
5984                }
5985
5986                // Add this specific item to its proper place.
5987                if (ri == null) {
5988                    ri = new ResolveInfo();
5989                    ri.activityInfo = ai;
5990                }
5991                results.add(specificsPos, ri);
5992                ri.specificIndex = i;
5993                specificsPos++;
5994            }
5995        }
5996
5997        // Now we go through the remaining generic results and remove any
5998        // duplicate actions that are found here.
5999        N = results.size();
6000        for (int i=specificsPos; i<N-1; i++) {
6001            final ResolveInfo rii = results.get(i);
6002            if (rii.filter == null) {
6003                continue;
6004            }
6005
6006            // Iterate over all of the actions of this result's intent
6007            // filter...  typically this should be just one.
6008            final Iterator<String> it = rii.filter.actionsIterator();
6009            if (it == null) {
6010                continue;
6011            }
6012            while (it.hasNext()) {
6013                final String action = it.next();
6014                if (resultsAction != null && resultsAction.equals(action)) {
6015                    // If this action was explicitly requested, then don't
6016                    // remove things that have it.
6017                    continue;
6018                }
6019                for (int j=i+1; j<N; j++) {
6020                    final ResolveInfo rij = results.get(j);
6021                    if (rij.filter != null && rij.filter.hasAction(action)) {
6022                        results.remove(j);
6023                        if (DEBUG_INTENT_MATCHING) Log.v(
6024                            TAG, "Removing duplicate item from " + j
6025                            + " due to action " + action + " at " + i);
6026                        j--;
6027                        N--;
6028                    }
6029                }
6030            }
6031
6032            // If the caller didn't request filter information, drop it now
6033            // so we don't have to marshall/unmarshall it.
6034            if ((flags&PackageManager.GET_RESOLVED_FILTER) == 0) {
6035                rii.filter = null;
6036            }
6037        }
6038
6039        // Filter out the caller activity if so requested.
6040        if (caller != null) {
6041            N = results.size();
6042            for (int i=0; i<N; i++) {
6043                ActivityInfo ainfo = results.get(i).activityInfo;
6044                if (caller.getPackageName().equals(ainfo.applicationInfo.packageName)
6045                        && caller.getClassName().equals(ainfo.name)) {
6046                    results.remove(i);
6047                    break;
6048                }
6049            }
6050        }
6051
6052        // If the caller didn't request filter information,
6053        // drop them now so we don't have to
6054        // marshall/unmarshall it.
6055        if ((flags&PackageManager.GET_RESOLVED_FILTER) == 0) {
6056            N = results.size();
6057            for (int i=0; i<N; i++) {
6058                results.get(i).filter = null;
6059            }
6060        }
6061
6062        if (DEBUG_INTENT_MATCHING) Log.v(TAG, "Result: " + results);
6063        return results;
6064    }
6065
6066    @Override
6067    public @NonNull ParceledListSlice<ResolveInfo> queryIntentReceivers(Intent intent,
6068            String resolvedType, int flags, int userId) {
6069        return new ParceledListSlice<>(
6070                queryIntentReceiversInternal(intent, resolvedType, flags, userId));
6071    }
6072
6073    private @NonNull List<ResolveInfo> queryIntentReceiversInternal(Intent intent,
6074            String resolvedType, int flags, int userId) {
6075        if (!sUserManager.exists(userId)) return Collections.emptyList();
6076        flags = updateFlagsForResolve(flags, userId, intent);
6077        ComponentName comp = intent.getComponent();
6078        if (comp == null) {
6079            if (intent.getSelector() != null) {
6080                intent = intent.getSelector();
6081                comp = intent.getComponent();
6082            }
6083        }
6084        if (comp != null) {
6085            List<ResolveInfo> list = new ArrayList<ResolveInfo>(1);
6086            ActivityInfo ai = getReceiverInfo(comp, flags, userId);
6087            if (ai != null) {
6088                ResolveInfo ri = new ResolveInfo();
6089                ri.activityInfo = ai;
6090                list.add(ri);
6091            }
6092            return list;
6093        }
6094
6095        // reader
6096        synchronized (mPackages) {
6097            String pkgName = intent.getPackage();
6098            if (pkgName == null) {
6099                return mReceivers.queryIntent(intent, resolvedType, flags, userId);
6100            }
6101            final PackageParser.Package pkg = mPackages.get(pkgName);
6102            if (pkg != null) {
6103                return mReceivers.queryIntentForPackage(intent, resolvedType, flags, pkg.receivers,
6104                        userId);
6105            }
6106            return Collections.emptyList();
6107        }
6108    }
6109
6110    @Override
6111    public ResolveInfo resolveService(Intent intent, String resolvedType, int flags, int userId) {
6112        if (!sUserManager.exists(userId)) return null;
6113        flags = updateFlagsForResolve(flags, userId, intent);
6114        List<ResolveInfo> query = queryIntentServicesInternal(intent, resolvedType, flags, userId);
6115        if (query != null) {
6116            if (query.size() >= 1) {
6117                // If there is more than one service with the same priority,
6118                // just arbitrarily pick the first one.
6119                return query.get(0);
6120            }
6121        }
6122        return null;
6123    }
6124
6125    @Override
6126    public @NonNull ParceledListSlice<ResolveInfo> queryIntentServices(Intent intent,
6127            String resolvedType, int flags, int userId) {
6128        return new ParceledListSlice<>(
6129                queryIntentServicesInternal(intent, resolvedType, flags, userId));
6130    }
6131
6132    private @NonNull List<ResolveInfo> queryIntentServicesInternal(Intent intent,
6133            String resolvedType, int flags, int userId) {
6134        if (!sUserManager.exists(userId)) return Collections.emptyList();
6135        flags = updateFlagsForResolve(flags, userId, intent);
6136        ComponentName comp = intent.getComponent();
6137        if (comp == null) {
6138            if (intent.getSelector() != null) {
6139                intent = intent.getSelector();
6140                comp = intent.getComponent();
6141            }
6142        }
6143        if (comp != null) {
6144            final List<ResolveInfo> list = new ArrayList<ResolveInfo>(1);
6145            final ServiceInfo si = getServiceInfo(comp, flags, userId);
6146            if (si != null) {
6147                final ResolveInfo ri = new ResolveInfo();
6148                ri.serviceInfo = si;
6149                list.add(ri);
6150            }
6151            return list;
6152        }
6153
6154        // reader
6155        synchronized (mPackages) {
6156            String pkgName = intent.getPackage();
6157            if (pkgName == null) {
6158                return mServices.queryIntent(intent, resolvedType, flags, userId);
6159            }
6160            final PackageParser.Package pkg = mPackages.get(pkgName);
6161            if (pkg != null) {
6162                return mServices.queryIntentForPackage(intent, resolvedType, flags, pkg.services,
6163                        userId);
6164            }
6165            return Collections.emptyList();
6166        }
6167    }
6168
6169    @Override
6170    public @NonNull ParceledListSlice<ResolveInfo> queryIntentContentProviders(Intent intent,
6171            String resolvedType, int flags, int userId) {
6172        return new ParceledListSlice<>(
6173                queryIntentContentProvidersInternal(intent, resolvedType, flags, userId));
6174    }
6175
6176    private @NonNull List<ResolveInfo> queryIntentContentProvidersInternal(
6177            Intent intent, String resolvedType, int flags, int userId) {
6178        if (!sUserManager.exists(userId)) return Collections.emptyList();
6179        flags = updateFlagsForResolve(flags, userId, intent);
6180        ComponentName comp = intent.getComponent();
6181        if (comp == null) {
6182            if (intent.getSelector() != null) {
6183                intent = intent.getSelector();
6184                comp = intent.getComponent();
6185            }
6186        }
6187        if (comp != null) {
6188            final List<ResolveInfo> list = new ArrayList<ResolveInfo>(1);
6189            final ProviderInfo pi = getProviderInfo(comp, flags, userId);
6190            if (pi != null) {
6191                final ResolveInfo ri = new ResolveInfo();
6192                ri.providerInfo = pi;
6193                list.add(ri);
6194            }
6195            return list;
6196        }
6197
6198        // reader
6199        synchronized (mPackages) {
6200            String pkgName = intent.getPackage();
6201            if (pkgName == null) {
6202                return mProviders.queryIntent(intent, resolvedType, flags, userId);
6203            }
6204            final PackageParser.Package pkg = mPackages.get(pkgName);
6205            if (pkg != null) {
6206                return mProviders.queryIntentForPackage(
6207                        intent, resolvedType, flags, pkg.providers, userId);
6208            }
6209            return Collections.emptyList();
6210        }
6211    }
6212
6213    @Override
6214    public ParceledListSlice<PackageInfo> getInstalledPackages(int flags, int userId) {
6215        if (!sUserManager.exists(userId)) return ParceledListSlice.emptyList();
6216        flags = updateFlagsForPackage(flags, userId, null);
6217        final boolean listUninstalled = (flags & MATCH_UNINSTALLED_PACKAGES) != 0;
6218        enforceCrossUserPermission(Binder.getCallingUid(), userId,
6219                true /* requireFullPermission */, false /* checkShell */,
6220                "get installed packages");
6221
6222        // writer
6223        synchronized (mPackages) {
6224            ArrayList<PackageInfo> list;
6225            if (listUninstalled) {
6226                list = new ArrayList<PackageInfo>(mSettings.mPackages.size());
6227                for (PackageSetting ps : mSettings.mPackages.values()) {
6228                    final PackageInfo pi;
6229                    if (ps.pkg != null) {
6230                        pi = generatePackageInfo(ps, flags, userId);
6231                    } else {
6232                        pi = generatePackageInfo(ps, flags, userId);
6233                    }
6234                    if (pi != null) {
6235                        list.add(pi);
6236                    }
6237                }
6238            } else {
6239                list = new ArrayList<PackageInfo>(mPackages.size());
6240                for (PackageParser.Package p : mPackages.values()) {
6241                    final PackageInfo pi =
6242                            generatePackageInfo((PackageSetting)p.mExtras, flags, userId);
6243                    if (pi != null) {
6244                        list.add(pi);
6245                    }
6246                }
6247            }
6248
6249            return new ParceledListSlice<PackageInfo>(list);
6250        }
6251    }
6252
6253    private void addPackageHoldingPermissions(ArrayList<PackageInfo> list, PackageSetting ps,
6254            String[] permissions, boolean[] tmp, int flags, int userId) {
6255        int numMatch = 0;
6256        final PermissionsState permissionsState = ps.getPermissionsState();
6257        for (int i=0; i<permissions.length; i++) {
6258            final String permission = permissions[i];
6259            if (permissionsState.hasPermission(permission, userId)) {
6260                tmp[i] = true;
6261                numMatch++;
6262            } else {
6263                tmp[i] = false;
6264            }
6265        }
6266        if (numMatch == 0) {
6267            return;
6268        }
6269        final PackageInfo pi;
6270        if (ps.pkg != null) {
6271            pi = generatePackageInfo(ps, flags, userId);
6272        } else {
6273            pi = generatePackageInfo(ps, flags, userId);
6274        }
6275        // The above might return null in cases of uninstalled apps or install-state
6276        // skew across users/profiles.
6277        if (pi != null) {
6278            if ((flags&PackageManager.GET_PERMISSIONS) == 0) {
6279                if (numMatch == permissions.length) {
6280                    pi.requestedPermissions = permissions;
6281                } else {
6282                    pi.requestedPermissions = new String[numMatch];
6283                    numMatch = 0;
6284                    for (int i=0; i<permissions.length; i++) {
6285                        if (tmp[i]) {
6286                            pi.requestedPermissions[numMatch] = permissions[i];
6287                            numMatch++;
6288                        }
6289                    }
6290                }
6291            }
6292            list.add(pi);
6293        }
6294    }
6295
6296    @Override
6297    public ParceledListSlice<PackageInfo> getPackagesHoldingPermissions(
6298            String[] permissions, int flags, int userId) {
6299        if (!sUserManager.exists(userId)) return ParceledListSlice.emptyList();
6300        flags = updateFlagsForPackage(flags, userId, permissions);
6301        final boolean listUninstalled = (flags & MATCH_UNINSTALLED_PACKAGES) != 0;
6302
6303        // writer
6304        synchronized (mPackages) {
6305            ArrayList<PackageInfo> list = new ArrayList<PackageInfo>();
6306            boolean[] tmpBools = new boolean[permissions.length];
6307            if (listUninstalled) {
6308                for (PackageSetting ps : mSettings.mPackages.values()) {
6309                    addPackageHoldingPermissions(list, ps, permissions, tmpBools, flags, userId);
6310                }
6311            } else {
6312                for (PackageParser.Package pkg : mPackages.values()) {
6313                    PackageSetting ps = (PackageSetting)pkg.mExtras;
6314                    if (ps != null) {
6315                        addPackageHoldingPermissions(list, ps, permissions, tmpBools, flags,
6316                                userId);
6317                    }
6318                }
6319            }
6320
6321            return new ParceledListSlice<PackageInfo>(list);
6322        }
6323    }
6324
6325    @Override
6326    public ParceledListSlice<ApplicationInfo> getInstalledApplications(int flags, int userId) {
6327        if (!sUserManager.exists(userId)) return ParceledListSlice.emptyList();
6328        flags = updateFlagsForApplication(flags, userId, null);
6329        final boolean listUninstalled = (flags & MATCH_UNINSTALLED_PACKAGES) != 0;
6330
6331        // writer
6332        synchronized (mPackages) {
6333            ArrayList<ApplicationInfo> list;
6334            if (listUninstalled) {
6335                list = new ArrayList<ApplicationInfo>(mSettings.mPackages.size());
6336                for (PackageSetting ps : mSettings.mPackages.values()) {
6337                    ApplicationInfo ai;
6338                    if (ps.pkg != null) {
6339                        ai = PackageParser.generateApplicationInfo(ps.pkg, flags,
6340                                ps.readUserState(userId), userId);
6341                    } else {
6342                        ai = generateApplicationInfoFromSettingsLPw(ps.name, flags, userId);
6343                    }
6344                    if (ai != null) {
6345                        list.add(ai);
6346                    }
6347                }
6348            } else {
6349                list = new ArrayList<ApplicationInfo>(mPackages.size());
6350                for (PackageParser.Package p : mPackages.values()) {
6351                    if (p.mExtras != null) {
6352                        ApplicationInfo ai = PackageParser.generateApplicationInfo(p, flags,
6353                                ((PackageSetting)p.mExtras).readUserState(userId), userId);
6354                        if (ai != null) {
6355                            list.add(ai);
6356                        }
6357                    }
6358                }
6359            }
6360
6361            return new ParceledListSlice<ApplicationInfo>(list);
6362        }
6363    }
6364
6365    @Override
6366    public ParceledListSlice<EphemeralApplicationInfo> getEphemeralApplications(int userId) {
6367        if (DISABLE_EPHEMERAL_APPS) {
6368            return null;
6369        }
6370
6371        mContext.enforceCallingOrSelfPermission(Manifest.permission.ACCESS_EPHEMERAL_APPS,
6372                "getEphemeralApplications");
6373        enforceCrossUserPermission(Binder.getCallingUid(), userId,
6374                true /* requireFullPermission */, false /* checkShell */,
6375                "getEphemeralApplications");
6376        synchronized (mPackages) {
6377            List<EphemeralApplicationInfo> ephemeralApps = mEphemeralApplicationRegistry
6378                    .getEphemeralApplicationsLPw(userId);
6379            if (ephemeralApps != null) {
6380                return new ParceledListSlice<>(ephemeralApps);
6381            }
6382        }
6383        return null;
6384    }
6385
6386    @Override
6387    public boolean isEphemeralApplication(String packageName, int userId) {
6388        enforceCrossUserPermission(Binder.getCallingUid(), userId,
6389                true /* requireFullPermission */, false /* checkShell */,
6390                "isEphemeral");
6391        if (DISABLE_EPHEMERAL_APPS) {
6392            return false;
6393        }
6394
6395        if (!isCallerSameApp(packageName)) {
6396            return false;
6397        }
6398        synchronized (mPackages) {
6399            PackageParser.Package pkg = mPackages.get(packageName);
6400            if (pkg != null) {
6401                return pkg.applicationInfo.isEphemeralApp();
6402            }
6403        }
6404        return false;
6405    }
6406
6407    @Override
6408    public byte[] getEphemeralApplicationCookie(String packageName, int userId) {
6409        if (DISABLE_EPHEMERAL_APPS) {
6410            return null;
6411        }
6412
6413        enforceCrossUserPermission(Binder.getCallingUid(), userId,
6414                true /* requireFullPermission */, false /* checkShell */,
6415                "getCookie");
6416        if (!isCallerSameApp(packageName)) {
6417            return null;
6418        }
6419        synchronized (mPackages) {
6420            return mEphemeralApplicationRegistry.getEphemeralApplicationCookieLPw(
6421                    packageName, userId);
6422        }
6423    }
6424
6425    @Override
6426    public boolean setEphemeralApplicationCookie(String packageName, byte[] cookie, int userId) {
6427        if (DISABLE_EPHEMERAL_APPS) {
6428            return true;
6429        }
6430
6431        enforceCrossUserPermission(Binder.getCallingUid(), userId,
6432                true /* requireFullPermission */, true /* checkShell */,
6433                "setCookie");
6434        if (!isCallerSameApp(packageName)) {
6435            return false;
6436        }
6437        synchronized (mPackages) {
6438            return mEphemeralApplicationRegistry.setEphemeralApplicationCookieLPw(
6439                    packageName, cookie, userId);
6440        }
6441    }
6442
6443    @Override
6444    public Bitmap getEphemeralApplicationIcon(String packageName, int userId) {
6445        if (DISABLE_EPHEMERAL_APPS) {
6446            return null;
6447        }
6448
6449        mContext.enforceCallingOrSelfPermission(Manifest.permission.ACCESS_EPHEMERAL_APPS,
6450                "getEphemeralApplicationIcon");
6451        enforceCrossUserPermission(Binder.getCallingUid(), userId,
6452                true /* requireFullPermission */, false /* checkShell */,
6453                "getEphemeralApplicationIcon");
6454        synchronized (mPackages) {
6455            return mEphemeralApplicationRegistry.getEphemeralApplicationIconLPw(
6456                    packageName, userId);
6457        }
6458    }
6459
6460    private boolean isCallerSameApp(String packageName) {
6461        PackageParser.Package pkg = mPackages.get(packageName);
6462        return pkg != null
6463                && UserHandle.getAppId(Binder.getCallingUid()) == pkg.applicationInfo.uid;
6464    }
6465
6466    @Override
6467    public @NonNull ParceledListSlice<ApplicationInfo> getPersistentApplications(int flags) {
6468        return new ParceledListSlice<>(getPersistentApplicationsInternal(flags));
6469    }
6470
6471    private @NonNull List<ApplicationInfo> getPersistentApplicationsInternal(int flags) {
6472        final ArrayList<ApplicationInfo> finalList = new ArrayList<ApplicationInfo>();
6473
6474        // reader
6475        synchronized (mPackages) {
6476            final Iterator<PackageParser.Package> i = mPackages.values().iterator();
6477            final int userId = UserHandle.getCallingUserId();
6478            while (i.hasNext()) {
6479                final PackageParser.Package p = i.next();
6480                if (p.applicationInfo == null) continue;
6481
6482                final boolean matchesUnaware = ((flags & MATCH_DIRECT_BOOT_UNAWARE) != 0)
6483                        && !p.applicationInfo.isDirectBootAware();
6484                final boolean matchesAware = ((flags & MATCH_DIRECT_BOOT_AWARE) != 0)
6485                        && p.applicationInfo.isDirectBootAware();
6486
6487                if ((p.applicationInfo.flags & ApplicationInfo.FLAG_PERSISTENT) != 0
6488                        && (!mSafeMode || isSystemApp(p))
6489                        && (matchesUnaware || matchesAware)) {
6490                    PackageSetting ps = mSettings.mPackages.get(p.packageName);
6491                    if (ps != null) {
6492                        ApplicationInfo ai = PackageParser.generateApplicationInfo(p, flags,
6493                                ps.readUserState(userId), userId);
6494                        if (ai != null) {
6495                            finalList.add(ai);
6496                        }
6497                    }
6498                }
6499            }
6500        }
6501
6502        return finalList;
6503    }
6504
6505    @Override
6506    public ProviderInfo resolveContentProvider(String name, int flags, int userId) {
6507        if (!sUserManager.exists(userId)) return null;
6508        flags = updateFlagsForComponent(flags, userId, name);
6509        // reader
6510        synchronized (mPackages) {
6511            final PackageParser.Provider provider = mProvidersByAuthority.get(name);
6512            PackageSetting ps = provider != null
6513                    ? mSettings.mPackages.get(provider.owner.packageName)
6514                    : null;
6515            return ps != null
6516                    && mSettings.isEnabledAndMatchLPr(provider.info, flags, userId)
6517                    ? PackageParser.generateProviderInfo(provider, flags,
6518                            ps.readUserState(userId), userId)
6519                    : null;
6520        }
6521    }
6522
6523    /**
6524     * @deprecated
6525     */
6526    @Deprecated
6527    public void querySyncProviders(List<String> outNames, List<ProviderInfo> outInfo) {
6528        // reader
6529        synchronized (mPackages) {
6530            final Iterator<Map.Entry<String, PackageParser.Provider>> i = mProvidersByAuthority
6531                    .entrySet().iterator();
6532            final int userId = UserHandle.getCallingUserId();
6533            while (i.hasNext()) {
6534                Map.Entry<String, PackageParser.Provider> entry = i.next();
6535                PackageParser.Provider p = entry.getValue();
6536                PackageSetting ps = mSettings.mPackages.get(p.owner.packageName);
6537
6538                if (ps != null && p.syncable
6539                        && (!mSafeMode || (p.info.applicationInfo.flags
6540                                &ApplicationInfo.FLAG_SYSTEM) != 0)) {
6541                    ProviderInfo info = PackageParser.generateProviderInfo(p, 0,
6542                            ps.readUserState(userId), userId);
6543                    if (info != null) {
6544                        outNames.add(entry.getKey());
6545                        outInfo.add(info);
6546                    }
6547                }
6548            }
6549        }
6550    }
6551
6552    @Override
6553    public @NonNull ParceledListSlice<ProviderInfo> queryContentProviders(String processName,
6554            int uid, int flags) {
6555        final int userId = processName != null ? UserHandle.getUserId(uid)
6556                : UserHandle.getCallingUserId();
6557        if (!sUserManager.exists(userId)) return ParceledListSlice.emptyList();
6558        flags = updateFlagsForComponent(flags, userId, processName);
6559
6560        ArrayList<ProviderInfo> finalList = null;
6561        // reader
6562        synchronized (mPackages) {
6563            final Iterator<PackageParser.Provider> i = mProviders.mProviders.values().iterator();
6564            while (i.hasNext()) {
6565                final PackageParser.Provider p = i.next();
6566                PackageSetting ps = mSettings.mPackages.get(p.owner.packageName);
6567                if (ps != null && p.info.authority != null
6568                        && (processName == null
6569                                || (p.info.processName.equals(processName)
6570                                        && UserHandle.isSameApp(p.info.applicationInfo.uid, uid)))
6571                        && mSettings.isEnabledAndMatchLPr(p.info, flags, userId)) {
6572                    if (finalList == null) {
6573                        finalList = new ArrayList<ProviderInfo>(3);
6574                    }
6575                    ProviderInfo info = PackageParser.generateProviderInfo(p, flags,
6576                            ps.readUserState(userId), userId);
6577                    if (info != null) {
6578                        finalList.add(info);
6579                    }
6580                }
6581            }
6582        }
6583
6584        if (finalList != null) {
6585            Collections.sort(finalList, mProviderInitOrderSorter);
6586            return new ParceledListSlice<ProviderInfo>(finalList);
6587        }
6588
6589        return ParceledListSlice.emptyList();
6590    }
6591
6592    @Override
6593    public InstrumentationInfo getInstrumentationInfo(ComponentName name, int flags) {
6594        // reader
6595        synchronized (mPackages) {
6596            final PackageParser.Instrumentation i = mInstrumentation.get(name);
6597            return PackageParser.generateInstrumentationInfo(i, flags);
6598        }
6599    }
6600
6601    @Override
6602    public @NonNull ParceledListSlice<InstrumentationInfo> queryInstrumentation(
6603            String targetPackage, int flags) {
6604        return new ParceledListSlice<>(queryInstrumentationInternal(targetPackage, flags));
6605    }
6606
6607    private @NonNull List<InstrumentationInfo> queryInstrumentationInternal(String targetPackage,
6608            int flags) {
6609        ArrayList<InstrumentationInfo> finalList = new ArrayList<InstrumentationInfo>();
6610
6611        // reader
6612        synchronized (mPackages) {
6613            final Iterator<PackageParser.Instrumentation> i = mInstrumentation.values().iterator();
6614            while (i.hasNext()) {
6615                final PackageParser.Instrumentation p = i.next();
6616                if (targetPackage == null
6617                        || targetPackage.equals(p.info.targetPackage)) {
6618                    InstrumentationInfo ii = PackageParser.generateInstrumentationInfo(p,
6619                            flags);
6620                    if (ii != null) {
6621                        finalList.add(ii);
6622                    }
6623                }
6624            }
6625        }
6626
6627        return finalList;
6628    }
6629
6630    private void createIdmapsForPackageLI(PackageParser.Package pkg) {
6631        ArrayMap<String, PackageParser.Package> overlays = mOverlays.get(pkg.packageName);
6632        if (overlays == null) {
6633            Slog.w(TAG, "Unable to create idmap for " + pkg.packageName + ": no overlay packages");
6634            return;
6635        }
6636        for (PackageParser.Package opkg : overlays.values()) {
6637            // Not much to do if idmap fails: we already logged the error
6638            // and we certainly don't want to abort installation of pkg simply
6639            // because an overlay didn't fit properly. For these reasons,
6640            // ignore the return value of createIdmapForPackagePairLI.
6641            createIdmapForPackagePairLI(pkg, opkg);
6642        }
6643    }
6644
6645    private boolean createIdmapForPackagePairLI(PackageParser.Package pkg,
6646            PackageParser.Package opkg) {
6647        if (!opkg.mTrustedOverlay) {
6648            Slog.w(TAG, "Skipping target and overlay pair " + pkg.baseCodePath + " and " +
6649                    opkg.baseCodePath + ": overlay not trusted");
6650            return false;
6651        }
6652        ArrayMap<String, PackageParser.Package> overlaySet = mOverlays.get(pkg.packageName);
6653        if (overlaySet == null) {
6654            Slog.e(TAG, "was about to create idmap for " + pkg.baseCodePath + " and " +
6655                    opkg.baseCodePath + " but target package has no known overlays");
6656            return false;
6657        }
6658        final int sharedGid = UserHandle.getSharedAppGid(pkg.applicationInfo.uid);
6659        // TODO: generate idmap for split APKs
6660        try {
6661            mInstaller.idmap(pkg.baseCodePath, opkg.baseCodePath, sharedGid);
6662        } catch (InstallerException e) {
6663            Slog.e(TAG, "Failed to generate idmap for " + pkg.baseCodePath + " and "
6664                    + opkg.baseCodePath);
6665            return false;
6666        }
6667        PackageParser.Package[] overlayArray =
6668            overlaySet.values().toArray(new PackageParser.Package[0]);
6669        Comparator<PackageParser.Package> cmp = new Comparator<PackageParser.Package>() {
6670            public int compare(PackageParser.Package p1, PackageParser.Package p2) {
6671                return p1.mOverlayPriority - p2.mOverlayPriority;
6672            }
6673        };
6674        Arrays.sort(overlayArray, cmp);
6675
6676        pkg.applicationInfo.resourceDirs = new String[overlayArray.length];
6677        int i = 0;
6678        for (PackageParser.Package p : overlayArray) {
6679            pkg.applicationInfo.resourceDirs[i++] = p.baseCodePath;
6680        }
6681        return true;
6682    }
6683
6684    private void scanDirTracedLI(File dir, final int parseFlags, int scanFlags, long currentTime) {
6685        Trace.traceBegin(TRACE_TAG_PACKAGE_MANAGER, "scanDir");
6686        try {
6687            scanDirLI(dir, parseFlags, scanFlags, currentTime);
6688        } finally {
6689            Trace.traceEnd(TRACE_TAG_PACKAGE_MANAGER);
6690        }
6691    }
6692
6693    private void scanDirLI(File dir, final int parseFlags, int scanFlags, long currentTime) {
6694        final File[] files = dir.listFiles();
6695        if (ArrayUtils.isEmpty(files)) {
6696            Log.d(TAG, "No files in app dir " + dir);
6697            return;
6698        }
6699
6700        if (DEBUG_PACKAGE_SCANNING) {
6701            Log.d(TAG, "Scanning app dir " + dir + " scanFlags=" + scanFlags
6702                    + " flags=0x" + Integer.toHexString(parseFlags));
6703        }
6704
6705        for (File file : files) {
6706            final boolean isPackage = (isApkFile(file) || file.isDirectory())
6707                    && !PackageInstallerService.isStageName(file.getName());
6708            if (!isPackage) {
6709                // Ignore entries which are not packages
6710                continue;
6711            }
6712            try {
6713                scanPackageTracedLI(file, parseFlags | PackageParser.PARSE_MUST_BE_APK,
6714                        scanFlags, currentTime, null);
6715            } catch (PackageManagerException e) {
6716                Slog.w(TAG, "Failed to parse " + file + ": " + e.getMessage());
6717
6718                // Delete invalid userdata apps
6719                if ((parseFlags & PackageParser.PARSE_IS_SYSTEM) == 0 &&
6720                        e.error == PackageManager.INSTALL_FAILED_INVALID_APK) {
6721                    logCriticalInfo(Log.WARN, "Deleting invalid package at " + file);
6722                    removeCodePathLI(file);
6723                }
6724            }
6725        }
6726    }
6727
6728    private static File getSettingsProblemFile() {
6729        File dataDir = Environment.getDataDirectory();
6730        File systemDir = new File(dataDir, "system");
6731        File fname = new File(systemDir, "uiderrors.txt");
6732        return fname;
6733    }
6734
6735    static void reportSettingsProblem(int priority, String msg) {
6736        logCriticalInfo(priority, msg);
6737    }
6738
6739    static void logCriticalInfo(int priority, String msg) {
6740        Slog.println(priority, TAG, msg);
6741        EventLogTags.writePmCriticalInfo(msg);
6742        try {
6743            File fname = getSettingsProblemFile();
6744            FileOutputStream out = new FileOutputStream(fname, true);
6745            PrintWriter pw = new FastPrintWriter(out);
6746            SimpleDateFormat formatter = new SimpleDateFormat();
6747            String dateString = formatter.format(new Date(System.currentTimeMillis()));
6748            pw.println(dateString + ": " + msg);
6749            pw.close();
6750            FileUtils.setPermissions(
6751                    fname.toString(),
6752                    FileUtils.S_IRWXU|FileUtils.S_IRWXG|FileUtils.S_IROTH,
6753                    -1, -1);
6754        } catch (java.io.IOException e) {
6755        }
6756    }
6757
6758    private void collectCertificatesLI(PackageSetting ps, PackageParser.Package pkg, File srcFile,
6759            final int policyFlags) throws PackageManagerException {
6760        if (ps != null
6761                && ps.codePath.equals(srcFile)
6762                && ps.timeStamp == srcFile.lastModified()
6763                && !isCompatSignatureUpdateNeeded(pkg)
6764                && !isRecoverSignatureUpdateNeeded(pkg)) {
6765            long mSigningKeySetId = ps.keySetData.getProperSigningKeySet();
6766            KeySetManagerService ksms = mSettings.mKeySetManagerService;
6767            ArraySet<PublicKey> signingKs;
6768            synchronized (mPackages) {
6769                signingKs = ksms.getPublicKeysFromKeySetLPr(mSigningKeySetId);
6770            }
6771            if (ps.signatures.mSignatures != null
6772                    && ps.signatures.mSignatures.length != 0
6773                    && signingKs != null) {
6774                // Optimization: reuse the existing cached certificates
6775                // if the package appears to be unchanged.
6776                pkg.mSignatures = ps.signatures.mSignatures;
6777                pkg.mSigningKeys = signingKs;
6778                return;
6779            }
6780
6781            Slog.w(TAG, "PackageSetting for " + ps.name
6782                    + " is missing signatures.  Collecting certs again to recover them.");
6783        } else {
6784            Log.i(TAG, srcFile.toString() + " changed; collecting certs");
6785        }
6786
6787        try {
6788            PackageParser.collectCertificates(pkg, policyFlags);
6789        } catch (PackageParserException e) {
6790            throw PackageManagerException.from(e);
6791        }
6792    }
6793
6794    /**
6795     *  Traces a package scan.
6796     *  @see #scanPackageLI(File, int, int, long, UserHandle)
6797     */
6798    private PackageParser.Package scanPackageTracedLI(File scanFile, final int parseFlags,
6799            int scanFlags, long currentTime, UserHandle user) throws PackageManagerException {
6800        Trace.traceBegin(TRACE_TAG_PACKAGE_MANAGER, "scanPackage");
6801        try {
6802            return scanPackageLI(scanFile, parseFlags, scanFlags, currentTime, user);
6803        } finally {
6804            Trace.traceEnd(TRACE_TAG_PACKAGE_MANAGER);
6805        }
6806    }
6807
6808    /**
6809     *  Scans a package and returns the newly parsed package.
6810     *  Returns {@code null} in case of errors and the error code is stored in mLastScanError
6811     */
6812    private PackageParser.Package scanPackageLI(File scanFile, int parseFlags, int scanFlags,
6813            long currentTime, UserHandle user) throws PackageManagerException {
6814        if (DEBUG_INSTALL) Slog.d(TAG, "Parsing: " + scanFile);
6815        PackageParser pp = new PackageParser();
6816        pp.setSeparateProcesses(mSeparateProcesses);
6817        pp.setOnlyCoreApps(mOnlyCore);
6818        pp.setDisplayMetrics(mMetrics);
6819
6820        if ((scanFlags & SCAN_TRUSTED_OVERLAY) != 0) {
6821            parseFlags |= PackageParser.PARSE_TRUSTED_OVERLAY;
6822        }
6823
6824        Trace.traceBegin(TRACE_TAG_PACKAGE_MANAGER, "parsePackage");
6825        final PackageParser.Package pkg;
6826        try {
6827            pkg = pp.parsePackage(scanFile, parseFlags);
6828        } catch (PackageParserException e) {
6829            throw PackageManagerException.from(e);
6830        } finally {
6831            Trace.traceEnd(TRACE_TAG_PACKAGE_MANAGER);
6832        }
6833
6834        return scanPackageLI(pkg, scanFile, parseFlags, scanFlags, currentTime, user);
6835    }
6836
6837    /**
6838     *  Scans a package and returns the newly parsed package.
6839     *  @throws PackageManagerException on a parse error.
6840     */
6841    private PackageParser.Package scanPackageLI(PackageParser.Package pkg, File scanFile,
6842            final int policyFlags, int scanFlags, long currentTime, UserHandle user)
6843            throws PackageManagerException {
6844        // If the package has children and this is the first dive in the function
6845        // we scan the package with the SCAN_CHECK_ONLY flag set to see whether all
6846        // packages (parent and children) would be successfully scanned before the
6847        // actual scan since scanning mutates internal state and we want to atomically
6848        // install the package and its children.
6849        if ((scanFlags & SCAN_CHECK_ONLY) == 0) {
6850            if (pkg.childPackages != null && pkg.childPackages.size() > 0) {
6851                scanFlags |= SCAN_CHECK_ONLY;
6852            }
6853        } else {
6854            scanFlags &= ~SCAN_CHECK_ONLY;
6855        }
6856
6857        // Scan the parent
6858        PackageParser.Package scannedPkg = scanPackageInternalLI(pkg, scanFile, policyFlags,
6859                scanFlags, currentTime, user);
6860
6861        // Scan the children
6862        final int childCount = (pkg.childPackages != null) ? pkg.childPackages.size() : 0;
6863        for (int i = 0; i < childCount; i++) {
6864            PackageParser.Package childPackage = pkg.childPackages.get(i);
6865            scanPackageInternalLI(childPackage, scanFile, policyFlags, scanFlags,
6866                    currentTime, user);
6867        }
6868
6869
6870        if ((scanFlags & SCAN_CHECK_ONLY) != 0) {
6871            return scanPackageLI(pkg, scanFile, policyFlags, scanFlags, currentTime, user);
6872        }
6873
6874        return scannedPkg;
6875    }
6876
6877    /**
6878     *  Scans a package and returns the newly parsed package.
6879     *  @throws PackageManagerException on a parse error.
6880     */
6881    private PackageParser.Package scanPackageInternalLI(PackageParser.Package pkg, File scanFile,
6882            int policyFlags, int scanFlags, long currentTime, UserHandle user)
6883            throws PackageManagerException {
6884        PackageSetting ps = null;
6885        PackageSetting updatedPkg;
6886        // reader
6887        synchronized (mPackages) {
6888            // Look to see if we already know about this package.
6889            String oldName = mSettings.mRenamedPackages.get(pkg.packageName);
6890            if (pkg.mOriginalPackages != null && pkg.mOriginalPackages.contains(oldName)) {
6891                // This package has been renamed to its original name.  Let's
6892                // use that.
6893                ps = mSettings.peekPackageLPr(oldName);
6894            }
6895            // If there was no original package, see one for the real package name.
6896            if (ps == null) {
6897                ps = mSettings.peekPackageLPr(pkg.packageName);
6898            }
6899            // Check to see if this package could be hiding/updating a system
6900            // package.  Must look for it either under the original or real
6901            // package name depending on our state.
6902            updatedPkg = mSettings.getDisabledSystemPkgLPr(ps != null ? ps.name : pkg.packageName);
6903            if (DEBUG_INSTALL && updatedPkg != null) Slog.d(TAG, "updatedPkg = " + updatedPkg);
6904
6905            // If this is a package we don't know about on the system partition, we
6906            // may need to remove disabled child packages on the system partition
6907            // or may need to not add child packages if the parent apk is updated
6908            // on the data partition and no longer defines this child package.
6909            if ((policyFlags & PackageParser.PARSE_IS_SYSTEM) != 0) {
6910                // If this is a parent package for an updated system app and this system
6911                // app got an OTA update which no longer defines some of the child packages
6912                // we have to prune them from the disabled system packages.
6913                PackageSetting disabledPs = mSettings.getDisabledSystemPkgLPr(pkg.packageName);
6914                if (disabledPs != null) {
6915                    final int scannedChildCount = (pkg.childPackages != null)
6916                            ? pkg.childPackages.size() : 0;
6917                    final int disabledChildCount = disabledPs.childPackageNames != null
6918                            ? disabledPs.childPackageNames.size() : 0;
6919                    for (int i = 0; i < disabledChildCount; i++) {
6920                        String disabledChildPackageName = disabledPs.childPackageNames.get(i);
6921                        boolean disabledPackageAvailable = false;
6922                        for (int j = 0; j < scannedChildCount; j++) {
6923                            PackageParser.Package childPkg = pkg.childPackages.get(j);
6924                            if (childPkg.packageName.equals(disabledChildPackageName)) {
6925                                disabledPackageAvailable = true;
6926                                break;
6927                            }
6928                         }
6929                         if (!disabledPackageAvailable) {
6930                             mSettings.removeDisabledSystemPackageLPw(disabledChildPackageName);
6931                         }
6932                    }
6933                }
6934            }
6935        }
6936
6937        boolean updatedPkgBetter = false;
6938        // First check if this is a system package that may involve an update
6939        if (updatedPkg != null && (policyFlags & PackageParser.PARSE_IS_SYSTEM) != 0) {
6940            // If new package is not located in "/system/priv-app" (e.g. due to an OTA),
6941            // it needs to drop FLAG_PRIVILEGED.
6942            if (locationIsPrivileged(scanFile)) {
6943                updatedPkg.pkgPrivateFlags |= ApplicationInfo.PRIVATE_FLAG_PRIVILEGED;
6944            } else {
6945                updatedPkg.pkgPrivateFlags &= ~ApplicationInfo.PRIVATE_FLAG_PRIVILEGED;
6946            }
6947
6948            if (ps != null && !ps.codePath.equals(scanFile)) {
6949                // The path has changed from what was last scanned...  check the
6950                // version of the new path against what we have stored to determine
6951                // what to do.
6952                if (DEBUG_INSTALL) Slog.d(TAG, "Path changing from " + ps.codePath);
6953                if (pkg.mVersionCode <= ps.versionCode) {
6954                    // The system package has been updated and the code path does not match
6955                    // Ignore entry. Skip it.
6956                    if (DEBUG_INSTALL) Slog.i(TAG, "Package " + ps.name + " at " + scanFile
6957                            + " ignored: updated version " + ps.versionCode
6958                            + " better than this " + pkg.mVersionCode);
6959                    if (!updatedPkg.codePath.equals(scanFile)) {
6960                        Slog.w(PackageManagerService.TAG, "Code path for hidden system pkg "
6961                                + ps.name + " changing from " + updatedPkg.codePathString
6962                                + " to " + scanFile);
6963                        updatedPkg.codePath = scanFile;
6964                        updatedPkg.codePathString = scanFile.toString();
6965                        updatedPkg.resourcePath = scanFile;
6966                        updatedPkg.resourcePathString = scanFile.toString();
6967                    }
6968                    updatedPkg.pkg = pkg;
6969                    updatedPkg.versionCode = pkg.mVersionCode;
6970
6971                    // Update the disabled system child packages to point to the package too.
6972                    final int childCount = updatedPkg.childPackageNames != null
6973                            ? updatedPkg.childPackageNames.size() : 0;
6974                    for (int i = 0; i < childCount; i++) {
6975                        String childPackageName = updatedPkg.childPackageNames.get(i);
6976                        PackageSetting updatedChildPkg = mSettings.getDisabledSystemPkgLPr(
6977                                childPackageName);
6978                        if (updatedChildPkg != null) {
6979                            updatedChildPkg.pkg = pkg;
6980                            updatedChildPkg.versionCode = pkg.mVersionCode;
6981                        }
6982                    }
6983
6984                    throw new PackageManagerException(Log.WARN, "Package " + ps.name + " at "
6985                            + scanFile + " ignored: updated version " + ps.versionCode
6986                            + " better than this " + pkg.mVersionCode);
6987                } else {
6988                    // The current app on the system partition is better than
6989                    // what we have updated to on the data partition; switch
6990                    // back to the system partition version.
6991                    // At this point, its safely assumed that package installation for
6992                    // apps in system partition will go through. If not there won't be a working
6993                    // version of the app
6994                    // writer
6995                    synchronized (mPackages) {
6996                        // Just remove the loaded entries from package lists.
6997                        mPackages.remove(ps.name);
6998                    }
6999
7000                    logCriticalInfo(Log.WARN, "Package " + ps.name + " at " + scanFile
7001                            + " reverting from " + ps.codePathString
7002                            + ": new version " + pkg.mVersionCode
7003                            + " better than installed " + ps.versionCode);
7004
7005                    InstallArgs args = createInstallArgsForExisting(packageFlagsToInstallFlags(ps),
7006                            ps.codePathString, ps.resourcePathString, getAppDexInstructionSets(ps));
7007                    synchronized (mInstallLock) {
7008                        args.cleanUpResourcesLI();
7009                    }
7010                    synchronized (mPackages) {
7011                        mSettings.enableSystemPackageLPw(ps.name);
7012                    }
7013                    updatedPkgBetter = true;
7014                }
7015            }
7016        }
7017
7018        if (updatedPkg != null) {
7019            // An updated system app will not have the PARSE_IS_SYSTEM flag set
7020            // initially
7021            policyFlags |= PackageParser.PARSE_IS_SYSTEM;
7022
7023            // An updated privileged app will not have the PARSE_IS_PRIVILEGED
7024            // flag set initially
7025            if ((updatedPkg.pkgPrivateFlags & ApplicationInfo.PRIVATE_FLAG_PRIVILEGED) != 0) {
7026                policyFlags |= PackageParser.PARSE_IS_PRIVILEGED;
7027            }
7028        }
7029
7030        // Verify certificates against what was last scanned
7031        collectCertificatesLI(ps, pkg, scanFile, policyFlags);
7032
7033        /*
7034         * A new system app appeared, but we already had a non-system one of the
7035         * same name installed earlier.
7036         */
7037        boolean shouldHideSystemApp = false;
7038        if (updatedPkg == null && ps != null
7039                && (policyFlags & PackageParser.PARSE_IS_SYSTEM_DIR) != 0 && !isSystemApp(ps)) {
7040            /*
7041             * Check to make sure the signatures match first. If they don't,
7042             * wipe the installed application and its data.
7043             */
7044            if (compareSignatures(ps.signatures.mSignatures, pkg.mSignatures)
7045                    != PackageManager.SIGNATURE_MATCH) {
7046                logCriticalInfo(Log.WARN, "Package " + ps.name + " appeared on system, but"
7047                        + " signatures don't match existing userdata copy; removing");
7048                try (PackageFreezer freezer = freezePackage(pkg.packageName,
7049                        "scanPackageInternalLI")) {
7050                    deletePackageLIF(pkg.packageName, null, true, null, 0, null, false, null);
7051                }
7052                ps = null;
7053            } else {
7054                /*
7055                 * If the newly-added system app is an older version than the
7056                 * already installed version, hide it. It will be scanned later
7057                 * and re-added like an update.
7058                 */
7059                if (pkg.mVersionCode <= ps.versionCode) {
7060                    shouldHideSystemApp = true;
7061                    logCriticalInfo(Log.INFO, "Package " + ps.name + " appeared at " + scanFile
7062                            + " but new version " + pkg.mVersionCode + " better than installed "
7063                            + ps.versionCode + "; hiding system");
7064                } else {
7065                    /*
7066                     * The newly found system app is a newer version that the
7067                     * one previously installed. Simply remove the
7068                     * already-installed application and replace it with our own
7069                     * while keeping the application data.
7070                     */
7071                    logCriticalInfo(Log.WARN, "Package " + ps.name + " at " + scanFile
7072                            + " reverting from " + ps.codePathString + ": new version "
7073                            + pkg.mVersionCode + " better than installed " + ps.versionCode);
7074                    InstallArgs args = createInstallArgsForExisting(packageFlagsToInstallFlags(ps),
7075                            ps.codePathString, ps.resourcePathString, getAppDexInstructionSets(ps));
7076                    synchronized (mInstallLock) {
7077                        args.cleanUpResourcesLI();
7078                    }
7079                }
7080            }
7081        }
7082
7083        // The apk is forward locked (not public) if its code and resources
7084        // are kept in different files. (except for app in either system or
7085        // vendor path).
7086        // TODO grab this value from PackageSettings
7087        if ((policyFlags & PackageParser.PARSE_IS_SYSTEM_DIR) == 0) {
7088            if (ps != null && !ps.codePath.equals(ps.resourcePath)) {
7089                policyFlags |= PackageParser.PARSE_FORWARD_LOCK;
7090            }
7091        }
7092
7093        // TODO: extend to support forward-locked splits
7094        String resourcePath = null;
7095        String baseResourcePath = null;
7096        if ((policyFlags & PackageParser.PARSE_FORWARD_LOCK) != 0 && !updatedPkgBetter) {
7097            if (ps != null && ps.resourcePathString != null) {
7098                resourcePath = ps.resourcePathString;
7099                baseResourcePath = ps.resourcePathString;
7100            } else {
7101                // Should not happen at all. Just log an error.
7102                Slog.e(TAG, "Resource path not set for package " + pkg.packageName);
7103            }
7104        } else {
7105            resourcePath = pkg.codePath;
7106            baseResourcePath = pkg.baseCodePath;
7107        }
7108
7109        // Set application objects path explicitly.
7110        pkg.setApplicationVolumeUuid(pkg.volumeUuid);
7111        pkg.setApplicationInfoCodePath(pkg.codePath);
7112        pkg.setApplicationInfoBaseCodePath(pkg.baseCodePath);
7113        pkg.setApplicationInfoSplitCodePaths(pkg.splitCodePaths);
7114        pkg.setApplicationInfoResourcePath(resourcePath);
7115        pkg.setApplicationInfoBaseResourcePath(baseResourcePath);
7116        pkg.setApplicationInfoSplitResourcePaths(pkg.splitCodePaths);
7117
7118        // Note that we invoke the following method only if we are about to unpack an application
7119        PackageParser.Package scannedPkg = scanPackageLI(pkg, policyFlags, scanFlags
7120                | SCAN_UPDATE_SIGNATURE, currentTime, user);
7121
7122        /*
7123         * If the system app should be overridden by a previously installed
7124         * data, hide the system app now and let the /data/app scan pick it up
7125         * again.
7126         */
7127        if (shouldHideSystemApp) {
7128            synchronized (mPackages) {
7129                mSettings.disableSystemPackageLPw(pkg.packageName, true);
7130            }
7131        }
7132
7133        return scannedPkg;
7134    }
7135
7136    private static String fixProcessName(String defProcessName,
7137            String processName, int uid) {
7138        if (processName == null) {
7139            return defProcessName;
7140        }
7141        return processName;
7142    }
7143
7144    private void verifySignaturesLP(PackageSetting pkgSetting, PackageParser.Package pkg)
7145            throws PackageManagerException {
7146        if (pkgSetting.signatures.mSignatures != null) {
7147            // Already existing package. Make sure signatures match
7148            boolean match = compareSignatures(pkgSetting.signatures.mSignatures, pkg.mSignatures)
7149                    == PackageManager.SIGNATURE_MATCH;
7150            if (!match) {
7151                match = compareSignaturesCompat(pkgSetting.signatures, pkg)
7152                        == PackageManager.SIGNATURE_MATCH;
7153            }
7154            if (!match) {
7155                match = compareSignaturesRecover(pkgSetting.signatures, pkg)
7156                        == PackageManager.SIGNATURE_MATCH;
7157            }
7158            if (!match) {
7159                throw new PackageManagerException(INSTALL_FAILED_UPDATE_INCOMPATIBLE, "Package "
7160                        + pkg.packageName + " signatures do not match the "
7161                        + "previously installed version; ignoring!");
7162            }
7163        }
7164
7165        // Check for shared user signatures
7166        if (pkgSetting.sharedUser != null && pkgSetting.sharedUser.signatures.mSignatures != null) {
7167            // Already existing package. Make sure signatures match
7168            boolean match = compareSignatures(pkgSetting.sharedUser.signatures.mSignatures,
7169                    pkg.mSignatures) == PackageManager.SIGNATURE_MATCH;
7170            if (!match) {
7171                match = compareSignaturesCompat(pkgSetting.sharedUser.signatures, pkg)
7172                        == PackageManager.SIGNATURE_MATCH;
7173            }
7174            if (!match) {
7175                match = compareSignaturesRecover(pkgSetting.sharedUser.signatures, pkg)
7176                        == PackageManager.SIGNATURE_MATCH;
7177            }
7178            if (!match) {
7179                throw new PackageManagerException(INSTALL_FAILED_SHARED_USER_INCOMPATIBLE,
7180                        "Package " + pkg.packageName
7181                        + " has no signatures that match those in shared user "
7182                        + pkgSetting.sharedUser.name + "; ignoring!");
7183            }
7184        }
7185    }
7186
7187    /**
7188     * Enforces that only the system UID or root's UID can call a method exposed
7189     * via Binder.
7190     *
7191     * @param message used as message if SecurityException is thrown
7192     * @throws SecurityException if the caller is not system or root
7193     */
7194    private static final void enforceSystemOrRoot(String message) {
7195        final int uid = Binder.getCallingUid();
7196        if (uid != Process.SYSTEM_UID && uid != 0) {
7197            throw new SecurityException(message);
7198        }
7199    }
7200
7201    @Override
7202    public void performFstrimIfNeeded() {
7203        enforceSystemOrRoot("Only the system can request fstrim");
7204
7205        // Before everything else, see whether we need to fstrim.
7206        try {
7207            IMountService ms = PackageHelper.getMountService();
7208            if (ms != null) {
7209                final boolean isUpgrade = isUpgrade();
7210                boolean doTrim = isUpgrade;
7211                if (doTrim) {
7212                    Slog.w(TAG, "Running disk maintenance immediately due to system update");
7213                } else {
7214                    final long interval = android.provider.Settings.Global.getLong(
7215                            mContext.getContentResolver(),
7216                            android.provider.Settings.Global.FSTRIM_MANDATORY_INTERVAL,
7217                            DEFAULT_MANDATORY_FSTRIM_INTERVAL);
7218                    if (interval > 0) {
7219                        final long timeSinceLast = System.currentTimeMillis() - ms.lastMaintenance();
7220                        if (timeSinceLast > interval) {
7221                            doTrim = true;
7222                            Slog.w(TAG, "No disk maintenance in " + timeSinceLast
7223                                    + "; running immediately");
7224                        }
7225                    }
7226                }
7227                if (doTrim) {
7228                    if (!isFirstBoot()) {
7229                        try {
7230                            ActivityManagerNative.getDefault().showBootMessage(
7231                                    mContext.getResources().getString(
7232                                            R.string.android_upgrading_fstrim), true);
7233                        } catch (RemoteException e) {
7234                        }
7235                    }
7236                    ms.runMaintenance();
7237                }
7238            } else {
7239                Slog.e(TAG, "Mount service unavailable!");
7240            }
7241        } catch (RemoteException e) {
7242            // Can't happen; MountService is local
7243        }
7244    }
7245
7246    @Override
7247    public void updatePackagesIfNeeded() {
7248        enforceSystemOrRoot("Only the system can request package update");
7249
7250        // We need to re-extract after an OTA.
7251        boolean causeUpgrade = isUpgrade();
7252
7253        // First boot or factory reset.
7254        // Note: we also handle devices that are upgrading to N right now as if it is their
7255        //       first boot, as they do not have profile data.
7256        boolean causeFirstBoot = isFirstBoot() || mIsPreNUpgrade;
7257
7258        // We need to re-extract after a pruned cache, as AoT-ed files will be out of date.
7259        boolean causePrunedCache = VMRuntime.didPruneDalvikCache();
7260
7261        if (!causeUpgrade && !causeFirstBoot && !causePrunedCache) {
7262            return;
7263        }
7264
7265        List<PackageParser.Package> pkgs;
7266        synchronized (mPackages) {
7267            pkgs = PackageManagerServiceUtils.getPackagesForDexopt(mPackages.values(), this);
7268        }
7269
7270        final long startTime = System.nanoTime();
7271        final int[] stats = performDexOpt(pkgs, mIsPreNUpgrade /* showDialog */,
7272                    getCompilerFilterForReason(causeFirstBoot ? REASON_FIRST_BOOT : REASON_BOOT));
7273
7274        final int elapsedTimeSeconds =
7275                (int) TimeUnit.NANOSECONDS.toSeconds(System.nanoTime() - startTime);
7276
7277        MetricsLogger.histogram(mContext, "opt_dialog_num_dexopted", stats[0]);
7278        MetricsLogger.histogram(mContext, "opt_dialog_num_skipped", stats[1]);
7279        MetricsLogger.histogram(mContext, "opt_dialog_num_failed", stats[2]);
7280        MetricsLogger.histogram(mContext, "opt_dialog_num_total", getOptimizablePackages().size());
7281        MetricsLogger.histogram(mContext, "opt_dialog_time_s", elapsedTimeSeconds);
7282    }
7283
7284    /**
7285     * Performs dexopt on the set of packages in {@code packages} and returns an int array
7286     * containing statistics about the invocation. The array consists of three elements,
7287     * which are (in order) {@code numberOfPackagesOptimized}, {@code numberOfPackagesSkipped}
7288     * and {@code numberOfPackagesFailed}.
7289     */
7290    private int[] performDexOpt(List<PackageParser.Package> pkgs, boolean showDialog,
7291            String compilerFilter) {
7292
7293        int numberOfPackagesVisited = 0;
7294        int numberOfPackagesOptimized = 0;
7295        int numberOfPackagesSkipped = 0;
7296        int numberOfPackagesFailed = 0;
7297        final int numberOfPackagesToDexopt = pkgs.size();
7298
7299        for (PackageParser.Package pkg : pkgs) {
7300            numberOfPackagesVisited++;
7301
7302            if (!PackageDexOptimizer.canOptimizePackage(pkg)) {
7303                if (DEBUG_DEXOPT) {
7304                    Log.i(TAG, "Skipping update of of non-optimizable app " + pkg.packageName);
7305                }
7306                numberOfPackagesSkipped++;
7307                continue;
7308            }
7309
7310            if (DEBUG_DEXOPT) {
7311                Log.i(TAG, "Updating app " + numberOfPackagesVisited + " of " +
7312                        numberOfPackagesToDexopt + ": " + pkg.packageName);
7313            }
7314
7315            if (showDialog) {
7316                try {
7317                    ActivityManagerNative.getDefault().showBootMessage(
7318                            mContext.getResources().getString(R.string.android_upgrading_apk,
7319                                    numberOfPackagesVisited, numberOfPackagesToDexopt), true);
7320                } catch (RemoteException e) {
7321                }
7322            }
7323
7324            // checkProfiles is false to avoid merging profiles during boot which
7325            // might interfere with background compilation (b/28612421).
7326            // Unfortunately this will also means that "pm.dexopt.boot=speed-profile" will
7327            // behave differently than "pm.dexopt.bg-dexopt=speed-profile" but that's a
7328            // trade-off worth doing to save boot time work.
7329            int dexOptStatus = performDexOptTraced(pkg.packageName,
7330                    false /* checkProfiles */,
7331                    compilerFilter,
7332                    false /* force */);
7333            switch (dexOptStatus) {
7334                case PackageDexOptimizer.DEX_OPT_PERFORMED:
7335                    numberOfPackagesOptimized++;
7336                    break;
7337                case PackageDexOptimizer.DEX_OPT_SKIPPED:
7338                    numberOfPackagesSkipped++;
7339                    break;
7340                case PackageDexOptimizer.DEX_OPT_FAILED:
7341                    numberOfPackagesFailed++;
7342                    break;
7343                default:
7344                    Log.e(TAG, "Unexpected dexopt return code " + dexOptStatus);
7345                    break;
7346            }
7347        }
7348
7349        return new int[] { numberOfPackagesOptimized, numberOfPackagesSkipped,
7350                numberOfPackagesFailed };
7351    }
7352
7353    @Override
7354    public void notifyPackageUse(String packageName, int reason) {
7355        synchronized (mPackages) {
7356            PackageParser.Package p = mPackages.get(packageName);
7357            if (p == null) {
7358                return;
7359            }
7360            p.mLastPackageUsageTimeInMills[reason] = System.currentTimeMillis();
7361        }
7362    }
7363
7364    // TODO: this is not used nor needed. Delete it.
7365    @Override
7366    public boolean performDexOptIfNeeded(String packageName) {
7367        int dexOptStatus = performDexOptTraced(packageName,
7368                false /* checkProfiles */, getFullCompilerFilter(), false /* force */);
7369        return dexOptStatus != PackageDexOptimizer.DEX_OPT_FAILED;
7370    }
7371
7372    @Override
7373    public boolean performDexOpt(String packageName,
7374            boolean checkProfiles, int compileReason, boolean force) {
7375        int dexOptStatus = performDexOptTraced(packageName, checkProfiles,
7376                getCompilerFilterForReason(compileReason), force);
7377        return dexOptStatus != PackageDexOptimizer.DEX_OPT_FAILED;
7378    }
7379
7380    @Override
7381    public boolean performDexOptMode(String packageName,
7382            boolean checkProfiles, String targetCompilerFilter, boolean force) {
7383        int dexOptStatus = performDexOptTraced(packageName, checkProfiles,
7384                targetCompilerFilter, force);
7385        return dexOptStatus != PackageDexOptimizer.DEX_OPT_FAILED;
7386    }
7387
7388    private int performDexOptTraced(String packageName,
7389                boolean checkProfiles, String targetCompilerFilter, boolean force) {
7390        Trace.traceBegin(TRACE_TAG_PACKAGE_MANAGER, "dexopt");
7391        try {
7392            return performDexOptInternal(packageName, checkProfiles,
7393                    targetCompilerFilter, force);
7394        } finally {
7395            Trace.traceEnd(TRACE_TAG_PACKAGE_MANAGER);
7396        }
7397    }
7398
7399    // Run dexopt on a given package. Returns true if dexopt did not fail, i.e.
7400    // if the package can now be considered up to date for the given filter.
7401    private int performDexOptInternal(String packageName,
7402                boolean checkProfiles, String targetCompilerFilter, boolean force) {
7403        PackageParser.Package p;
7404        synchronized (mPackages) {
7405            p = mPackages.get(packageName);
7406            if (p == null) {
7407                // Package could not be found. Report failure.
7408                return PackageDexOptimizer.DEX_OPT_FAILED;
7409            }
7410            mPackageUsage.write(false);
7411        }
7412        long callingId = Binder.clearCallingIdentity();
7413        try {
7414            synchronized (mInstallLock) {
7415                return performDexOptInternalWithDependenciesLI(p, checkProfiles,
7416                        targetCompilerFilter, force);
7417            }
7418        } finally {
7419            Binder.restoreCallingIdentity(callingId);
7420        }
7421    }
7422
7423    public ArraySet<String> getOptimizablePackages() {
7424        ArraySet<String> pkgs = new ArraySet<String>();
7425        synchronized (mPackages) {
7426            for (PackageParser.Package p : mPackages.values()) {
7427                if (PackageDexOptimizer.canOptimizePackage(p)) {
7428                    pkgs.add(p.packageName);
7429                }
7430            }
7431        }
7432        return pkgs;
7433    }
7434
7435    private int performDexOptInternalWithDependenciesLI(PackageParser.Package p,
7436            boolean checkProfiles, String targetCompilerFilter,
7437            boolean force) {
7438        // Select the dex optimizer based on the force parameter.
7439        // Note: The force option is rarely used (cmdline input for testing, mostly), so it's OK to
7440        //       allocate an object here.
7441        PackageDexOptimizer pdo = force
7442                ? new PackageDexOptimizer.ForcedUpdatePackageDexOptimizer(mPackageDexOptimizer)
7443                : mPackageDexOptimizer;
7444
7445        // Optimize all dependencies first. Note: we ignore the return value and march on
7446        // on errors.
7447        Collection<PackageParser.Package> deps = findSharedNonSystemLibraries(p);
7448        final String[] instructionSets = getAppDexInstructionSets(p.applicationInfo);
7449        if (!deps.isEmpty()) {
7450            for (PackageParser.Package depPackage : deps) {
7451                // TODO: Analyze and investigate if we (should) profile libraries.
7452                // Currently this will do a full compilation of the library by default.
7453                pdo.performDexOpt(depPackage, null /* sharedLibraries */, instructionSets,
7454                        false /* checkProfiles */,
7455                        getCompilerFilterForReason(REASON_NON_SYSTEM_LIBRARY));
7456            }
7457        }
7458        return pdo.performDexOpt(p, p.usesLibraryFiles, instructionSets, checkProfiles,
7459                targetCompilerFilter);
7460    }
7461
7462    Collection<PackageParser.Package> findSharedNonSystemLibraries(PackageParser.Package p) {
7463        if (p.usesLibraries != null || p.usesOptionalLibraries != null) {
7464            ArrayList<PackageParser.Package> retValue = new ArrayList<>();
7465            Set<String> collectedNames = new HashSet<>();
7466            findSharedNonSystemLibrariesRecursive(p, retValue, collectedNames);
7467
7468            retValue.remove(p);
7469
7470            return retValue;
7471        } else {
7472            return Collections.emptyList();
7473        }
7474    }
7475
7476    private void findSharedNonSystemLibrariesRecursive(PackageParser.Package p,
7477            Collection<PackageParser.Package> collected, Set<String> collectedNames) {
7478        if (!collectedNames.contains(p.packageName)) {
7479            collectedNames.add(p.packageName);
7480            collected.add(p);
7481
7482            if (p.usesLibraries != null) {
7483                findSharedNonSystemLibrariesRecursive(p.usesLibraries, collected, collectedNames);
7484            }
7485            if (p.usesOptionalLibraries != null) {
7486                findSharedNonSystemLibrariesRecursive(p.usesOptionalLibraries, collected,
7487                        collectedNames);
7488            }
7489        }
7490    }
7491
7492    private void findSharedNonSystemLibrariesRecursive(Collection<String> libs,
7493            Collection<PackageParser.Package> collected, Set<String> collectedNames) {
7494        for (String libName : libs) {
7495            PackageParser.Package libPkg = findSharedNonSystemLibrary(libName);
7496            if (libPkg != null) {
7497                findSharedNonSystemLibrariesRecursive(libPkg, collected, collectedNames);
7498            }
7499        }
7500    }
7501
7502    private PackageParser.Package findSharedNonSystemLibrary(String libName) {
7503        synchronized (mPackages) {
7504            PackageManagerService.SharedLibraryEntry lib = mSharedLibraries.get(libName);
7505            if (lib != null && lib.apk != null) {
7506                return mPackages.get(lib.apk);
7507            }
7508        }
7509        return null;
7510    }
7511
7512    public void shutdown() {
7513        mPackageUsage.write(true);
7514    }
7515
7516    @Override
7517    public void dumpProfiles(String packageName) {
7518        PackageParser.Package pkg;
7519        synchronized (mPackages) {
7520            pkg = mPackages.get(packageName);
7521            if (pkg == null) {
7522                throw new IllegalArgumentException("Unknown package: " + packageName);
7523            }
7524        }
7525        /* Only the shell, root, or the app user should be able to dump profiles. */
7526        int callingUid = Binder.getCallingUid();
7527        if (callingUid != Process.SHELL_UID &&
7528            callingUid != Process.ROOT_UID &&
7529            callingUid != pkg.applicationInfo.uid) {
7530            throw new SecurityException("dumpProfiles");
7531        }
7532
7533        synchronized (mInstallLock) {
7534            Trace.traceBegin(TRACE_TAG_PACKAGE_MANAGER, "dump profiles");
7535            final int sharedGid = UserHandle.getSharedAppGid(pkg.applicationInfo.uid);
7536            try {
7537                List<String> allCodePaths = pkg.getAllCodePathsExcludingResourceOnly();
7538                String gid = Integer.toString(sharedGid);
7539                String codePaths = TextUtils.join(";", allCodePaths);
7540                mInstaller.dumpProfiles(gid, packageName, codePaths);
7541            } catch (InstallerException e) {
7542                Slog.w(TAG, "Failed to dump profiles", e);
7543            }
7544            Trace.traceEnd(TRACE_TAG_PACKAGE_MANAGER);
7545        }
7546    }
7547
7548    @Override
7549    public void forceDexOpt(String packageName) {
7550        enforceSystemOrRoot("forceDexOpt");
7551
7552        PackageParser.Package pkg;
7553        synchronized (mPackages) {
7554            pkg = mPackages.get(packageName);
7555            if (pkg == null) {
7556                throw new IllegalArgumentException("Unknown package: " + packageName);
7557            }
7558        }
7559
7560        synchronized (mInstallLock) {
7561            Trace.traceBegin(TRACE_TAG_PACKAGE_MANAGER, "dexopt");
7562
7563            // Whoever is calling forceDexOpt wants a fully compiled package.
7564            // Don't use profiles since that may cause compilation to be skipped.
7565            final int res = performDexOptInternalWithDependenciesLI(pkg,
7566                    false /* checkProfiles */, getCompilerFilterForReason(REASON_FORCED_DEXOPT),
7567                    true /* force */);
7568
7569            Trace.traceEnd(TRACE_TAG_PACKAGE_MANAGER);
7570            if (res != PackageDexOptimizer.DEX_OPT_PERFORMED) {
7571                throw new IllegalStateException("Failed to dexopt: " + res);
7572            }
7573        }
7574    }
7575
7576    private boolean verifyPackageUpdateLPr(PackageSetting oldPkg, PackageParser.Package newPkg) {
7577        if ((oldPkg.pkgFlags&ApplicationInfo.FLAG_SYSTEM) == 0) {
7578            Slog.w(TAG, "Unable to update from " + oldPkg.name
7579                    + " to " + newPkg.packageName
7580                    + ": old package not in system partition");
7581            return false;
7582        } else if (mPackages.get(oldPkg.name) != null) {
7583            Slog.w(TAG, "Unable to update from " + oldPkg.name
7584                    + " to " + newPkg.packageName
7585                    + ": old package still exists");
7586            return false;
7587        }
7588        return true;
7589    }
7590
7591    void removeCodePathLI(File codePath) {
7592        if (codePath.isDirectory()) {
7593            try {
7594                mInstaller.rmPackageDir(codePath.getAbsolutePath());
7595            } catch (InstallerException e) {
7596                Slog.w(TAG, "Failed to remove code path", e);
7597            }
7598        } else {
7599            codePath.delete();
7600        }
7601    }
7602
7603    private int[] resolveUserIds(int userId) {
7604        return (userId == UserHandle.USER_ALL) ? sUserManager.getUserIds() : new int[] { userId };
7605    }
7606
7607    private void clearAppDataLIF(PackageParser.Package pkg, int userId, int flags) {
7608        if (pkg == null) {
7609            Slog.wtf(TAG, "Package was null!", new Throwable());
7610            return;
7611        }
7612        clearAppDataLeafLIF(pkg, userId, flags);
7613        final int childCount = (pkg.childPackages != null) ? pkg.childPackages.size() : 0;
7614        for (int i = 0; i < childCount; i++) {
7615            clearAppDataLeafLIF(pkg.childPackages.get(i), userId, flags);
7616        }
7617    }
7618
7619    private void clearAppDataLeafLIF(PackageParser.Package pkg, int userId, int flags) {
7620        final PackageSetting ps;
7621        synchronized (mPackages) {
7622            ps = mSettings.mPackages.get(pkg.packageName);
7623        }
7624        for (int realUserId : resolveUserIds(userId)) {
7625            final long ceDataInode = (ps != null) ? ps.getCeDataInode(realUserId) : 0;
7626            try {
7627                mInstaller.clearAppData(pkg.volumeUuid, pkg.packageName, realUserId, flags,
7628                        ceDataInode);
7629            } catch (InstallerException e) {
7630                Slog.w(TAG, String.valueOf(e));
7631            }
7632        }
7633    }
7634
7635    private void destroyAppDataLIF(PackageParser.Package pkg, int userId, int flags) {
7636        if (pkg == null) {
7637            Slog.wtf(TAG, "Package was null!", new Throwable());
7638            return;
7639        }
7640        destroyAppDataLeafLIF(pkg, userId, flags);
7641        final int childCount = (pkg.childPackages != null) ? pkg.childPackages.size() : 0;
7642        for (int i = 0; i < childCount; i++) {
7643            destroyAppDataLeafLIF(pkg.childPackages.get(i), userId, flags);
7644        }
7645    }
7646
7647    private void destroyAppDataLeafLIF(PackageParser.Package pkg, int userId, int flags) {
7648        final PackageSetting ps;
7649        synchronized (mPackages) {
7650            ps = mSettings.mPackages.get(pkg.packageName);
7651        }
7652        for (int realUserId : resolveUserIds(userId)) {
7653            final long ceDataInode = (ps != null) ? ps.getCeDataInode(realUserId) : 0;
7654            try {
7655                mInstaller.destroyAppData(pkg.volumeUuid, pkg.packageName, realUserId, flags,
7656                        ceDataInode);
7657            } catch (InstallerException e) {
7658                Slog.w(TAG, String.valueOf(e));
7659            }
7660        }
7661    }
7662
7663    private void destroyAppProfilesLIF(PackageParser.Package pkg, int userId) {
7664        if (pkg == null) {
7665            Slog.wtf(TAG, "Package was null!", new Throwable());
7666            return;
7667        }
7668        destroyAppProfilesLeafLIF(pkg);
7669        destroyAppReferenceProfileLeafLIF(pkg, userId, true /* removeBaseMarker */);
7670        final int childCount = (pkg.childPackages != null) ? pkg.childPackages.size() : 0;
7671        for (int i = 0; i < childCount; i++) {
7672            destroyAppProfilesLeafLIF(pkg.childPackages.get(i));
7673            destroyAppReferenceProfileLeafLIF(pkg.childPackages.get(i), userId,
7674                    true /* removeBaseMarker */);
7675        }
7676    }
7677
7678    private void destroyAppReferenceProfileLeafLIF(PackageParser.Package pkg, int userId,
7679            boolean removeBaseMarker) {
7680        if (pkg.isForwardLocked()) {
7681            return;
7682        }
7683
7684        for (String path : pkg.getAllCodePathsExcludingResourceOnly()) {
7685            try {
7686                path = PackageManagerServiceUtils.realpath(new File(path));
7687            } catch (IOException e) {
7688                // TODO: Should we return early here ?
7689                Slog.w(TAG, "Failed to get canonical path", e);
7690                continue;
7691            }
7692
7693            final String useMarker = path.replace('/', '@');
7694            for (int realUserId : resolveUserIds(userId)) {
7695                File profileDir = Environment.getDataProfilesDeForeignDexDirectory(realUserId);
7696                if (removeBaseMarker) {
7697                    File foreignUseMark = new File(profileDir, useMarker);
7698                    if (foreignUseMark.exists()) {
7699                        if (!foreignUseMark.delete()) {
7700                            Slog.w(TAG, "Unable to delete foreign user mark for package: "
7701                                    + pkg.packageName);
7702                        }
7703                    }
7704                }
7705
7706                File[] markers = profileDir.listFiles();
7707                if (markers != null) {
7708                    final String searchString = "@" + pkg.packageName + "@";
7709                    // We also delete all markers that contain the package name we're
7710                    // uninstalling. These are associated with secondary dex-files belonging
7711                    // to the package. Reconstructing the path of these dex files is messy
7712                    // in general.
7713                    for (File marker : markers) {
7714                        if (marker.getName().indexOf(searchString) > 0) {
7715                            if (!marker.delete()) {
7716                                Slog.w(TAG, "Unable to delete foreign user mark for package: "
7717                                    + pkg.packageName);
7718                            }
7719                        }
7720                    }
7721                }
7722            }
7723        }
7724    }
7725
7726    private void destroyAppProfilesLeafLIF(PackageParser.Package pkg) {
7727        try {
7728            mInstaller.destroyAppProfiles(pkg.packageName);
7729        } catch (InstallerException e) {
7730            Slog.w(TAG, String.valueOf(e));
7731        }
7732    }
7733
7734    private void clearAppProfilesLIF(PackageParser.Package pkg, int userId) {
7735        if (pkg == null) {
7736            Slog.wtf(TAG, "Package was null!", new Throwable());
7737            return;
7738        }
7739        clearAppProfilesLeafLIF(pkg);
7740        // We don't remove the base foreign use marker when clearing profiles because
7741        // we will rename it when the app is updated. Unlike the actual profile contents,
7742        // the foreign use marker is good across installs.
7743        destroyAppReferenceProfileLeafLIF(pkg, userId, false /* removeBaseMarker */);
7744        final int childCount = (pkg.childPackages != null) ? pkg.childPackages.size() : 0;
7745        for (int i = 0; i < childCount; i++) {
7746            clearAppProfilesLeafLIF(pkg.childPackages.get(i));
7747        }
7748    }
7749
7750    private void clearAppProfilesLeafLIF(PackageParser.Package pkg) {
7751        try {
7752            mInstaller.clearAppProfiles(pkg.packageName);
7753        } catch (InstallerException e) {
7754            Slog.w(TAG, String.valueOf(e));
7755        }
7756    }
7757
7758    private void setInstallAndUpdateTime(PackageParser.Package pkg, long firstInstallTime,
7759            long lastUpdateTime) {
7760        // Set parent install/update time
7761        PackageSetting ps = (PackageSetting) pkg.mExtras;
7762        if (ps != null) {
7763            ps.firstInstallTime = firstInstallTime;
7764            ps.lastUpdateTime = lastUpdateTime;
7765        }
7766        // Set children install/update time
7767        final int childCount = (pkg.childPackages != null) ? pkg.childPackages.size() : 0;
7768        for (int i = 0; i < childCount; i++) {
7769            PackageParser.Package childPkg = pkg.childPackages.get(i);
7770            ps = (PackageSetting) childPkg.mExtras;
7771            if (ps != null) {
7772                ps.firstInstallTime = firstInstallTime;
7773                ps.lastUpdateTime = lastUpdateTime;
7774            }
7775        }
7776    }
7777
7778    private void addSharedLibraryLPw(ArraySet<String> usesLibraryFiles, SharedLibraryEntry file,
7779            PackageParser.Package changingLib) {
7780        if (file.path != null) {
7781            usesLibraryFiles.add(file.path);
7782            return;
7783        }
7784        PackageParser.Package p = mPackages.get(file.apk);
7785        if (changingLib != null && changingLib.packageName.equals(file.apk)) {
7786            // If we are doing this while in the middle of updating a library apk,
7787            // then we need to make sure to use that new apk for determining the
7788            // dependencies here.  (We haven't yet finished committing the new apk
7789            // to the package manager state.)
7790            if (p == null || p.packageName.equals(changingLib.packageName)) {
7791                p = changingLib;
7792            }
7793        }
7794        if (p != null) {
7795            usesLibraryFiles.addAll(p.getAllCodePaths());
7796        }
7797    }
7798
7799    private void updateSharedLibrariesLPw(PackageParser.Package pkg,
7800            PackageParser.Package changingLib) throws PackageManagerException {
7801        if (pkg.usesLibraries != null || pkg.usesOptionalLibraries != null) {
7802            final ArraySet<String> usesLibraryFiles = new ArraySet<>();
7803            int N = pkg.usesLibraries != null ? pkg.usesLibraries.size() : 0;
7804            for (int i=0; i<N; i++) {
7805                final SharedLibraryEntry file = mSharedLibraries.get(pkg.usesLibraries.get(i));
7806                if (file == null) {
7807                    throw new PackageManagerException(INSTALL_FAILED_MISSING_SHARED_LIBRARY,
7808                            "Package " + pkg.packageName + " requires unavailable shared library "
7809                            + pkg.usesLibraries.get(i) + "; failing!");
7810                }
7811                addSharedLibraryLPw(usesLibraryFiles, file, changingLib);
7812            }
7813            N = pkg.usesOptionalLibraries != null ? pkg.usesOptionalLibraries.size() : 0;
7814            for (int i=0; i<N; i++) {
7815                final SharedLibraryEntry file = mSharedLibraries.get(pkg.usesOptionalLibraries.get(i));
7816                if (file == null) {
7817                    Slog.w(TAG, "Package " + pkg.packageName
7818                            + " desires unavailable shared library "
7819                            + pkg.usesOptionalLibraries.get(i) + "; ignoring!");
7820                } else {
7821                    addSharedLibraryLPw(usesLibraryFiles, file, changingLib);
7822                }
7823            }
7824            N = usesLibraryFiles.size();
7825            if (N > 0) {
7826                pkg.usesLibraryFiles = usesLibraryFiles.toArray(new String[N]);
7827            } else {
7828                pkg.usesLibraryFiles = null;
7829            }
7830        }
7831    }
7832
7833    private static boolean hasString(List<String> list, List<String> which) {
7834        if (list == null) {
7835            return false;
7836        }
7837        for (int i=list.size()-1; i>=0; i--) {
7838            for (int j=which.size()-1; j>=0; j--) {
7839                if (which.get(j).equals(list.get(i))) {
7840                    return true;
7841                }
7842            }
7843        }
7844        return false;
7845    }
7846
7847    private void updateAllSharedLibrariesLPw() {
7848        for (PackageParser.Package pkg : mPackages.values()) {
7849            try {
7850                updateSharedLibrariesLPw(pkg, null);
7851            } catch (PackageManagerException e) {
7852                Slog.e(TAG, "updateAllSharedLibrariesLPw failed: " + e.getMessage());
7853            }
7854        }
7855    }
7856
7857    private ArrayList<PackageParser.Package> updateAllSharedLibrariesLPw(
7858            PackageParser.Package changingPkg) {
7859        ArrayList<PackageParser.Package> res = null;
7860        for (PackageParser.Package pkg : mPackages.values()) {
7861            if (hasString(pkg.usesLibraries, changingPkg.libraryNames)
7862                    || hasString(pkg.usesOptionalLibraries, changingPkg.libraryNames)) {
7863                if (res == null) {
7864                    res = new ArrayList<PackageParser.Package>();
7865                }
7866                res.add(pkg);
7867                try {
7868                    updateSharedLibrariesLPw(pkg, changingPkg);
7869                } catch (PackageManagerException e) {
7870                    Slog.e(TAG, "updateAllSharedLibrariesLPw failed: " + e.getMessage());
7871                }
7872            }
7873        }
7874        return res;
7875    }
7876
7877    /**
7878     * Derive the value of the {@code cpuAbiOverride} based on the provided
7879     * value and an optional stored value from the package settings.
7880     */
7881    private static String deriveAbiOverride(String abiOverride, PackageSetting settings) {
7882        String cpuAbiOverride = null;
7883
7884        if (NativeLibraryHelper.CLEAR_ABI_OVERRIDE.equals(abiOverride)) {
7885            cpuAbiOverride = null;
7886        } else if (abiOverride != null) {
7887            cpuAbiOverride = abiOverride;
7888        } else if (settings != null) {
7889            cpuAbiOverride = settings.cpuAbiOverrideString;
7890        }
7891
7892        return cpuAbiOverride;
7893    }
7894
7895    private PackageParser.Package scanPackageTracedLI(PackageParser.Package pkg,
7896            final int policyFlags, int scanFlags, long currentTime, UserHandle user)
7897                    throws PackageManagerException {
7898        Trace.traceBegin(TRACE_TAG_PACKAGE_MANAGER, "scanPackage");
7899        // If the package has children and this is the first dive in the function
7900        // we recursively scan the package with the SCAN_CHECK_ONLY flag set to see
7901        // whether all packages (parent and children) would be successfully scanned
7902        // before the actual scan since scanning mutates internal state and we want
7903        // to atomically install the package and its children.
7904        if ((scanFlags & SCAN_CHECK_ONLY) == 0) {
7905            if (pkg.childPackages != null && pkg.childPackages.size() > 0) {
7906                scanFlags |= SCAN_CHECK_ONLY;
7907            }
7908        } else {
7909            scanFlags &= ~SCAN_CHECK_ONLY;
7910        }
7911
7912        final PackageParser.Package scannedPkg;
7913        try {
7914            // Scan the parent
7915            scannedPkg = scanPackageLI(pkg, policyFlags, scanFlags, currentTime, user);
7916            // Scan the children
7917            final int childCount = (pkg.childPackages != null) ? pkg.childPackages.size() : 0;
7918            for (int i = 0; i < childCount; i++) {
7919                PackageParser.Package childPkg = pkg.childPackages.get(i);
7920                scanPackageLI(childPkg, policyFlags,
7921                        scanFlags, currentTime, user);
7922            }
7923        } finally {
7924            Trace.traceEnd(TRACE_TAG_PACKAGE_MANAGER);
7925        }
7926
7927        if ((scanFlags & SCAN_CHECK_ONLY) != 0) {
7928            return scanPackageTracedLI(pkg, policyFlags, scanFlags, currentTime, user);
7929        }
7930
7931        return scannedPkg;
7932    }
7933
7934    private PackageParser.Package scanPackageLI(PackageParser.Package pkg, final int policyFlags,
7935            int scanFlags, long currentTime, UserHandle user) throws PackageManagerException {
7936        boolean success = false;
7937        try {
7938            final PackageParser.Package res = scanPackageDirtyLI(pkg, policyFlags, scanFlags,
7939                    currentTime, user);
7940            success = true;
7941            return res;
7942        } finally {
7943            if (!success && (scanFlags & SCAN_DELETE_DATA_ON_FAILURES) != 0) {
7944                // DELETE_DATA_ON_FAILURES is only used by frozen paths
7945                destroyAppDataLIF(pkg, UserHandle.USER_ALL,
7946                        StorageManager.FLAG_STORAGE_DE | StorageManager.FLAG_STORAGE_CE);
7947                destroyAppProfilesLIF(pkg, UserHandle.USER_ALL);
7948            }
7949        }
7950    }
7951
7952    /**
7953     * Returns {@code true} if the given file contains code. Otherwise {@code false}.
7954     */
7955    private static boolean apkHasCode(String fileName) {
7956        StrictJarFile jarFile = null;
7957        try {
7958            jarFile = new StrictJarFile(fileName,
7959                    false /*verify*/, false /*signatureSchemeRollbackProtectionsEnforced*/);
7960            return jarFile.findEntry("classes.dex") != null;
7961        } catch (IOException ignore) {
7962        } finally {
7963            try {
7964                jarFile.close();
7965            } catch (IOException ignore) {}
7966        }
7967        return false;
7968    }
7969
7970    /**
7971     * Enforces code policy for the package. This ensures that if an APK has
7972     * declared hasCode="true" in its manifest that the APK actually contains
7973     * code.
7974     *
7975     * @throws PackageManagerException If bytecode could not be found when it should exist
7976     */
7977    private static void enforceCodePolicy(PackageParser.Package pkg)
7978            throws PackageManagerException {
7979        final boolean shouldHaveCode =
7980                (pkg.applicationInfo.flags & ApplicationInfo.FLAG_HAS_CODE) != 0;
7981        if (shouldHaveCode && !apkHasCode(pkg.baseCodePath)) {
7982            throw new PackageManagerException(INSTALL_FAILED_INVALID_APK,
7983                    "Package " + pkg.baseCodePath + " code is missing");
7984        }
7985
7986        if (!ArrayUtils.isEmpty(pkg.splitCodePaths)) {
7987            for (int i = 0; i < pkg.splitCodePaths.length; i++) {
7988                final boolean splitShouldHaveCode =
7989                        (pkg.splitFlags[i] & ApplicationInfo.FLAG_HAS_CODE) != 0;
7990                if (splitShouldHaveCode && !apkHasCode(pkg.splitCodePaths[i])) {
7991                    throw new PackageManagerException(INSTALL_FAILED_INVALID_APK,
7992                            "Package " + pkg.splitCodePaths[i] + " code is missing");
7993                }
7994            }
7995        }
7996    }
7997
7998    private PackageParser.Package scanPackageDirtyLI(PackageParser.Package pkg,
7999            final int policyFlags, final int scanFlags, long currentTime, UserHandle user)
8000            throws PackageManagerException {
8001        final File scanFile = new File(pkg.codePath);
8002        if (pkg.applicationInfo.getCodePath() == null ||
8003                pkg.applicationInfo.getResourcePath() == null) {
8004            // Bail out. The resource and code paths haven't been set.
8005            throw new PackageManagerException(INSTALL_FAILED_INVALID_APK,
8006                    "Code and resource paths haven't been set correctly");
8007        }
8008
8009        // Apply policy
8010        if ((policyFlags&PackageParser.PARSE_IS_SYSTEM) != 0) {
8011            pkg.applicationInfo.flags |= ApplicationInfo.FLAG_SYSTEM;
8012            if (pkg.applicationInfo.isDirectBootAware()) {
8013                // we're direct boot aware; set for all components
8014                for (PackageParser.Service s : pkg.services) {
8015                    s.info.encryptionAware = s.info.directBootAware = true;
8016                }
8017                for (PackageParser.Provider p : pkg.providers) {
8018                    p.info.encryptionAware = p.info.directBootAware = true;
8019                }
8020                for (PackageParser.Activity a : pkg.activities) {
8021                    a.info.encryptionAware = a.info.directBootAware = true;
8022                }
8023                for (PackageParser.Activity r : pkg.receivers) {
8024                    r.info.encryptionAware = r.info.directBootAware = true;
8025                }
8026            }
8027        } else {
8028            // Only allow system apps to be flagged as core apps.
8029            pkg.coreApp = false;
8030            // clear flags not applicable to regular apps
8031            pkg.applicationInfo.privateFlags &=
8032                    ~ApplicationInfo.PRIVATE_FLAG_DEFAULT_TO_DEVICE_PROTECTED_STORAGE;
8033            pkg.applicationInfo.privateFlags &=
8034                    ~ApplicationInfo.PRIVATE_FLAG_DIRECT_BOOT_AWARE;
8035        }
8036        pkg.mTrustedOverlay = (policyFlags&PackageParser.PARSE_TRUSTED_OVERLAY) != 0;
8037
8038        if ((policyFlags&PackageParser.PARSE_IS_PRIVILEGED) != 0) {
8039            pkg.applicationInfo.privateFlags |= ApplicationInfo.PRIVATE_FLAG_PRIVILEGED;
8040        }
8041
8042        if ((policyFlags & PackageParser.PARSE_ENFORCE_CODE) != 0) {
8043            enforceCodePolicy(pkg);
8044        }
8045
8046        if (mCustomResolverComponentName != null &&
8047                mCustomResolverComponentName.getPackageName().equals(pkg.packageName)) {
8048            setUpCustomResolverActivity(pkg);
8049        }
8050
8051        if (pkg.packageName.equals("android")) {
8052            synchronized (mPackages) {
8053                if (mAndroidApplication != null) {
8054                    Slog.w(TAG, "*************************************************");
8055                    Slog.w(TAG, "Core android package being redefined.  Skipping.");
8056                    Slog.w(TAG, " file=" + scanFile);
8057                    Slog.w(TAG, "*************************************************");
8058                    throw new PackageManagerException(INSTALL_FAILED_DUPLICATE_PACKAGE,
8059                            "Core android package being redefined.  Skipping.");
8060                }
8061
8062                if ((scanFlags & SCAN_CHECK_ONLY) == 0) {
8063                    // Set up information for our fall-back user intent resolution activity.
8064                    mPlatformPackage = pkg;
8065                    pkg.mVersionCode = mSdkVersion;
8066                    mAndroidApplication = pkg.applicationInfo;
8067
8068                    if (!mResolverReplaced) {
8069                        mResolveActivity.applicationInfo = mAndroidApplication;
8070                        mResolveActivity.name = ResolverActivity.class.getName();
8071                        mResolveActivity.packageName = mAndroidApplication.packageName;
8072                        mResolveActivity.processName = "system:ui";
8073                        mResolveActivity.launchMode = ActivityInfo.LAUNCH_MULTIPLE;
8074                        mResolveActivity.documentLaunchMode = ActivityInfo.DOCUMENT_LAUNCH_NEVER;
8075                        mResolveActivity.flags = ActivityInfo.FLAG_EXCLUDE_FROM_RECENTS;
8076                        mResolveActivity.theme = R.style.Theme_Material_Dialog_Alert;
8077                        mResolveActivity.exported = true;
8078                        mResolveActivity.enabled = true;
8079                        mResolveActivity.resizeMode = ActivityInfo.RESIZE_MODE_RESIZEABLE;
8080                        mResolveActivity.configChanges = ActivityInfo.CONFIG_SCREEN_SIZE
8081                                | ActivityInfo.CONFIG_SMALLEST_SCREEN_SIZE
8082                                | ActivityInfo.CONFIG_SCREEN_LAYOUT
8083                                | ActivityInfo.CONFIG_ORIENTATION
8084                                | ActivityInfo.CONFIG_KEYBOARD
8085                                | ActivityInfo.CONFIG_KEYBOARD_HIDDEN;
8086                        mResolveInfo.activityInfo = mResolveActivity;
8087                        mResolveInfo.priority = 0;
8088                        mResolveInfo.preferredOrder = 0;
8089                        mResolveInfo.match = 0;
8090                        mResolveComponentName = new ComponentName(
8091                                mAndroidApplication.packageName, mResolveActivity.name);
8092                    }
8093                }
8094            }
8095        }
8096
8097        if (DEBUG_PACKAGE_SCANNING) {
8098            if ((policyFlags & PackageParser.PARSE_CHATTY) != 0)
8099                Log.d(TAG, "Scanning package " + pkg.packageName);
8100        }
8101
8102        synchronized (mPackages) {
8103            if (mPackages.containsKey(pkg.packageName)
8104                    || mSharedLibraries.containsKey(pkg.packageName)) {
8105                throw new PackageManagerException(INSTALL_FAILED_DUPLICATE_PACKAGE,
8106                        "Application package " + pkg.packageName
8107                                + " already installed.  Skipping duplicate.");
8108            }
8109
8110            // If we're only installing presumed-existing packages, require that the
8111            // scanned APK is both already known and at the path previously established
8112            // for it.  Previously unknown packages we pick up normally, but if we have an
8113            // a priori expectation about this package's install presence, enforce it.
8114            // With a singular exception for new system packages. When an OTA contains
8115            // a new system package, we allow the codepath to change from a system location
8116            // to the user-installed location. If we don't allow this change, any newer,
8117            // user-installed version of the application will be ignored.
8118            if ((scanFlags & SCAN_REQUIRE_KNOWN) != 0) {
8119                if (mExpectingBetter.containsKey(pkg.packageName)) {
8120                    logCriticalInfo(Log.WARN,
8121                            "Relax SCAN_REQUIRE_KNOWN requirement for package " + pkg.packageName);
8122                } else {
8123                    PackageSetting known = mSettings.peekPackageLPr(pkg.packageName);
8124                    if (known != null) {
8125                        if (DEBUG_PACKAGE_SCANNING) {
8126                            Log.d(TAG, "Examining " + pkg.codePath
8127                                    + " and requiring known paths " + known.codePathString
8128                                    + " & " + known.resourcePathString);
8129                        }
8130                        if (!pkg.applicationInfo.getCodePath().equals(known.codePathString)
8131                                || !pkg.applicationInfo.getResourcePath().equals(
8132                                known.resourcePathString)) {
8133                            throw new PackageManagerException(INSTALL_FAILED_PACKAGE_CHANGED,
8134                                    "Application package " + pkg.packageName
8135                                            + " found at " + pkg.applicationInfo.getCodePath()
8136                                            + " but expected at " + known.codePathString
8137                                            + "; ignoring.");
8138                        }
8139                    }
8140                }
8141            }
8142        }
8143
8144        // Initialize package source and resource directories
8145        File destCodeFile = new File(pkg.applicationInfo.getCodePath());
8146        File destResourceFile = new File(pkg.applicationInfo.getResourcePath());
8147
8148        SharedUserSetting suid = null;
8149        PackageSetting pkgSetting = null;
8150
8151        if (!isSystemApp(pkg)) {
8152            // Only system apps can use these features.
8153            pkg.mOriginalPackages = null;
8154            pkg.mRealPackage = null;
8155            pkg.mAdoptPermissions = null;
8156        }
8157
8158        // Getting the package setting may have a side-effect, so if we
8159        // are only checking if scan would succeed, stash a copy of the
8160        // old setting to restore at the end.
8161        PackageSetting nonMutatedPs = null;
8162
8163        // writer
8164        synchronized (mPackages) {
8165            if (pkg.mSharedUserId != null) {
8166                suid = mSettings.getSharedUserLPw(pkg.mSharedUserId, 0, 0, true);
8167                if (suid == null) {
8168                    throw new PackageManagerException(INSTALL_FAILED_INSUFFICIENT_STORAGE,
8169                            "Creating application package " + pkg.packageName
8170                            + " for shared user failed");
8171                }
8172                if (DEBUG_PACKAGE_SCANNING) {
8173                    if ((policyFlags & PackageParser.PARSE_CHATTY) != 0)
8174                        Log.d(TAG, "Shared UserID " + pkg.mSharedUserId + " (uid=" + suid.userId
8175                                + "): packages=" + suid.packages);
8176                }
8177            }
8178
8179            // Check if we are renaming from an original package name.
8180            PackageSetting origPackage = null;
8181            String realName = null;
8182            if (pkg.mOriginalPackages != null) {
8183                // This package may need to be renamed to a previously
8184                // installed name.  Let's check on that...
8185                final String renamed = mSettings.mRenamedPackages.get(pkg.mRealPackage);
8186                if (pkg.mOriginalPackages.contains(renamed)) {
8187                    // This package had originally been installed as the
8188                    // original name, and we have already taken care of
8189                    // transitioning to the new one.  Just update the new
8190                    // one to continue using the old name.
8191                    realName = pkg.mRealPackage;
8192                    if (!pkg.packageName.equals(renamed)) {
8193                        // Callers into this function may have already taken
8194                        // care of renaming the package; only do it here if
8195                        // it is not already done.
8196                        pkg.setPackageName(renamed);
8197                    }
8198
8199                } else {
8200                    for (int i=pkg.mOriginalPackages.size()-1; i>=0; i--) {
8201                        if ((origPackage = mSettings.peekPackageLPr(
8202                                pkg.mOriginalPackages.get(i))) != null) {
8203                            // We do have the package already installed under its
8204                            // original name...  should we use it?
8205                            if (!verifyPackageUpdateLPr(origPackage, pkg)) {
8206                                // New package is not compatible with original.
8207                                origPackage = null;
8208                                continue;
8209                            } else if (origPackage.sharedUser != null) {
8210                                // Make sure uid is compatible between packages.
8211                                if (!origPackage.sharedUser.name.equals(pkg.mSharedUserId)) {
8212                                    Slog.w(TAG, "Unable to migrate data from " + origPackage.name
8213                                            + " to " + pkg.packageName + ": old uid "
8214                                            + origPackage.sharedUser.name
8215                                            + " differs from " + pkg.mSharedUserId);
8216                                    origPackage = null;
8217                                    continue;
8218                                }
8219                                // TODO: Add case when shared user id is added [b/28144775]
8220                            } else {
8221                                if (DEBUG_UPGRADE) Log.v(TAG, "Renaming new package "
8222                                        + pkg.packageName + " to old name " + origPackage.name);
8223                            }
8224                            break;
8225                        }
8226                    }
8227                }
8228            }
8229
8230            if (mTransferedPackages.contains(pkg.packageName)) {
8231                Slog.w(TAG, "Package " + pkg.packageName
8232                        + " was transferred to another, but its .apk remains");
8233            }
8234
8235            // See comments in nonMutatedPs declaration
8236            if ((scanFlags & SCAN_CHECK_ONLY) != 0) {
8237                PackageSetting foundPs = mSettings.peekPackageLPr(pkg.packageName);
8238                if (foundPs != null) {
8239                    nonMutatedPs = new PackageSetting(foundPs);
8240                }
8241            }
8242
8243            // Just create the setting, don't add it yet. For already existing packages
8244            // the PkgSetting exists already and doesn't have to be created.
8245            pkgSetting = mSettings.getPackageLPw(pkg, origPackage, realName, suid, destCodeFile,
8246                    destResourceFile, pkg.applicationInfo.nativeLibraryRootDir,
8247                    pkg.applicationInfo.primaryCpuAbi,
8248                    pkg.applicationInfo.secondaryCpuAbi,
8249                    pkg.applicationInfo.flags, pkg.applicationInfo.privateFlags,
8250                    user, false);
8251            if (pkgSetting == null) {
8252                throw new PackageManagerException(INSTALL_FAILED_INSUFFICIENT_STORAGE,
8253                        "Creating application package " + pkg.packageName + " failed");
8254            }
8255
8256            if (pkgSetting.origPackage != null) {
8257                // If we are first transitioning from an original package,
8258                // fix up the new package's name now.  We need to do this after
8259                // looking up the package under its new name, so getPackageLP
8260                // can take care of fiddling things correctly.
8261                pkg.setPackageName(origPackage.name);
8262
8263                // File a report about this.
8264                String msg = "New package " + pkgSetting.realName
8265                        + " renamed to replace old package " + pkgSetting.name;
8266                reportSettingsProblem(Log.WARN, msg);
8267
8268                // Make a note of it.
8269                if ((scanFlags & SCAN_CHECK_ONLY) == 0) {
8270                    mTransferedPackages.add(origPackage.name);
8271                }
8272
8273                // No longer need to retain this.
8274                pkgSetting.origPackage = null;
8275            }
8276
8277            if ((scanFlags & SCAN_CHECK_ONLY) == 0 && realName != null) {
8278                // Make a note of it.
8279                mTransferedPackages.add(pkg.packageName);
8280            }
8281
8282            if (mSettings.isDisabledSystemPackageLPr(pkg.packageName)) {
8283                pkg.applicationInfo.flags |= ApplicationInfo.FLAG_UPDATED_SYSTEM_APP;
8284            }
8285
8286            if ((policyFlags&PackageParser.PARSE_IS_SYSTEM_DIR) == 0) {
8287                // Check all shared libraries and map to their actual file path.
8288                // We only do this here for apps not on a system dir, because those
8289                // are the only ones that can fail an install due to this.  We
8290                // will take care of the system apps by updating all of their
8291                // library paths after the scan is done.
8292                updateSharedLibrariesLPw(pkg, null);
8293            }
8294
8295            if (mFoundPolicyFile) {
8296                SELinuxMMAC.assignSeinfoValue(pkg);
8297            }
8298
8299            pkg.applicationInfo.uid = pkgSetting.appId;
8300            pkg.mExtras = pkgSetting;
8301            if (shouldCheckUpgradeKeySetLP(pkgSetting, scanFlags)) {
8302                if (checkUpgradeKeySetLP(pkgSetting, pkg)) {
8303                    // We just determined the app is signed correctly, so bring
8304                    // over the latest parsed certs.
8305                    pkgSetting.signatures.mSignatures = pkg.mSignatures;
8306                } else {
8307                    if ((policyFlags & PackageParser.PARSE_IS_SYSTEM_DIR) == 0) {
8308                        throw new PackageManagerException(INSTALL_FAILED_UPDATE_INCOMPATIBLE,
8309                                "Package " + pkg.packageName + " upgrade keys do not match the "
8310                                + "previously installed version");
8311                    } else {
8312                        pkgSetting.signatures.mSignatures = pkg.mSignatures;
8313                        String msg = "System package " + pkg.packageName
8314                            + " signature changed; retaining data.";
8315                        reportSettingsProblem(Log.WARN, msg);
8316                    }
8317                }
8318            } else {
8319                try {
8320                    verifySignaturesLP(pkgSetting, pkg);
8321                    // We just determined the app is signed correctly, so bring
8322                    // over the latest parsed certs.
8323                    pkgSetting.signatures.mSignatures = pkg.mSignatures;
8324                } catch (PackageManagerException e) {
8325                    if ((policyFlags & PackageParser.PARSE_IS_SYSTEM_DIR) == 0) {
8326                        throw e;
8327                    }
8328                    // The signature has changed, but this package is in the system
8329                    // image...  let's recover!
8330                    pkgSetting.signatures.mSignatures = pkg.mSignatures;
8331                    // However...  if this package is part of a shared user, but it
8332                    // doesn't match the signature of the shared user, let's fail.
8333                    // What this means is that you can't change the signatures
8334                    // associated with an overall shared user, which doesn't seem all
8335                    // that unreasonable.
8336                    if (pkgSetting.sharedUser != null) {
8337                        if (compareSignatures(pkgSetting.sharedUser.signatures.mSignatures,
8338                                              pkg.mSignatures) != PackageManager.SIGNATURE_MATCH) {
8339                            throw new PackageManagerException(
8340                                    INSTALL_PARSE_FAILED_INCONSISTENT_CERTIFICATES,
8341                                            "Signature mismatch for shared user: "
8342                                            + pkgSetting.sharedUser);
8343                        }
8344                    }
8345                    // File a report about this.
8346                    String msg = "System package " + pkg.packageName
8347                        + " signature changed; retaining data.";
8348                    reportSettingsProblem(Log.WARN, msg);
8349                }
8350            }
8351            // Verify that this new package doesn't have any content providers
8352            // that conflict with existing packages.  Only do this if the
8353            // package isn't already installed, since we don't want to break
8354            // things that are installed.
8355            if ((scanFlags & SCAN_NEW_INSTALL) != 0) {
8356                final int N = pkg.providers.size();
8357                int i;
8358                for (i=0; i<N; i++) {
8359                    PackageParser.Provider p = pkg.providers.get(i);
8360                    if (p.info.authority != null) {
8361                        String names[] = p.info.authority.split(";");
8362                        for (int j = 0; j < names.length; j++) {
8363                            if (mProvidersByAuthority.containsKey(names[j])) {
8364                                PackageParser.Provider other = mProvidersByAuthority.get(names[j]);
8365                                final String otherPackageName =
8366                                        ((other != null && other.getComponentName() != null) ?
8367                                                other.getComponentName().getPackageName() : "?");
8368                                throw new PackageManagerException(
8369                                        INSTALL_FAILED_CONFLICTING_PROVIDER,
8370                                                "Can't install because provider name " + names[j]
8371                                                + " (in package " + pkg.applicationInfo.packageName
8372                                                + ") is already used by " + otherPackageName);
8373                            }
8374                        }
8375                    }
8376                }
8377            }
8378
8379            if ((scanFlags & SCAN_CHECK_ONLY) == 0 && pkg.mAdoptPermissions != null) {
8380                // This package wants to adopt ownership of permissions from
8381                // another package.
8382                for (int i = pkg.mAdoptPermissions.size() - 1; i >= 0; i--) {
8383                    final String origName = pkg.mAdoptPermissions.get(i);
8384                    final PackageSetting orig = mSettings.peekPackageLPr(origName);
8385                    if (orig != null) {
8386                        if (verifyPackageUpdateLPr(orig, pkg)) {
8387                            Slog.i(TAG, "Adopting permissions from " + origName + " to "
8388                                    + pkg.packageName);
8389                            mSettings.transferPermissionsLPw(origName, pkg.packageName);
8390                        }
8391                    }
8392                }
8393            }
8394        }
8395
8396        final String pkgName = pkg.packageName;
8397
8398        final long scanFileTime = scanFile.lastModified();
8399        final boolean forceDex = (scanFlags & SCAN_FORCE_DEX) != 0;
8400        pkg.applicationInfo.processName = fixProcessName(
8401                pkg.applicationInfo.packageName,
8402                pkg.applicationInfo.processName,
8403                pkg.applicationInfo.uid);
8404
8405        if (pkg != mPlatformPackage) {
8406            // Get all of our default paths setup
8407            pkg.applicationInfo.initForUser(UserHandle.USER_SYSTEM);
8408        }
8409
8410        final String path = scanFile.getPath();
8411        final String cpuAbiOverride = deriveAbiOverride(pkg.cpuAbiOverride, pkgSetting);
8412
8413        if ((scanFlags & SCAN_NEW_INSTALL) == 0) {
8414            derivePackageAbi(pkg, scanFile, cpuAbiOverride, true /* extract libs */);
8415
8416            // Some system apps still use directory structure for native libraries
8417            // in which case we might end up not detecting abi solely based on apk
8418            // structure. Try to detect abi based on directory structure.
8419            if (isSystemApp(pkg) && !pkg.isUpdatedSystemApp() &&
8420                    pkg.applicationInfo.primaryCpuAbi == null) {
8421                setBundledAppAbisAndRoots(pkg, pkgSetting);
8422                setNativeLibraryPaths(pkg);
8423            }
8424
8425        } else {
8426            if ((scanFlags & SCAN_MOVE) != 0) {
8427                // We haven't run dex-opt for this move (since we've moved the compiled output too)
8428                // but we already have this packages package info in the PackageSetting. We just
8429                // use that and derive the native library path based on the new codepath.
8430                pkg.applicationInfo.primaryCpuAbi = pkgSetting.primaryCpuAbiString;
8431                pkg.applicationInfo.secondaryCpuAbi = pkgSetting.secondaryCpuAbiString;
8432            }
8433
8434            // Set native library paths again. For moves, the path will be updated based on the
8435            // ABIs we've determined above. For non-moves, the path will be updated based on the
8436            // ABIs we determined during compilation, but the path will depend on the final
8437            // package path (after the rename away from the stage path).
8438            setNativeLibraryPaths(pkg);
8439        }
8440
8441        // This is a special case for the "system" package, where the ABI is
8442        // dictated by the zygote configuration (and init.rc). We should keep track
8443        // of this ABI so that we can deal with "normal" applications that run under
8444        // the same UID correctly.
8445        if (mPlatformPackage == pkg) {
8446            pkg.applicationInfo.primaryCpuAbi = VMRuntime.getRuntime().is64Bit() ?
8447                    Build.SUPPORTED_64_BIT_ABIS[0] : Build.SUPPORTED_32_BIT_ABIS[0];
8448        }
8449
8450        // If there's a mismatch between the abi-override in the package setting
8451        // and the abiOverride specified for the install. Warn about this because we
8452        // would've already compiled the app without taking the package setting into
8453        // account.
8454        if ((scanFlags & SCAN_NO_DEX) == 0 && (scanFlags & SCAN_NEW_INSTALL) != 0) {
8455            if (cpuAbiOverride == null && pkgSetting.cpuAbiOverrideString != null) {
8456                Slog.w(TAG, "Ignoring persisted ABI override " + cpuAbiOverride +
8457                        " for package " + pkg.packageName);
8458            }
8459        }
8460
8461        pkgSetting.primaryCpuAbiString = pkg.applicationInfo.primaryCpuAbi;
8462        pkgSetting.secondaryCpuAbiString = pkg.applicationInfo.secondaryCpuAbi;
8463        pkgSetting.cpuAbiOverrideString = cpuAbiOverride;
8464
8465        // Copy the derived override back to the parsed package, so that we can
8466        // update the package settings accordingly.
8467        pkg.cpuAbiOverride = cpuAbiOverride;
8468
8469        if (DEBUG_ABI_SELECTION) {
8470            Slog.d(TAG, "Resolved nativeLibraryRoot for " + pkg.applicationInfo.packageName
8471                    + " to root=" + pkg.applicationInfo.nativeLibraryRootDir + ", isa="
8472                    + pkg.applicationInfo.nativeLibraryRootRequiresIsa);
8473        }
8474
8475        // Push the derived path down into PackageSettings so we know what to
8476        // clean up at uninstall time.
8477        pkgSetting.legacyNativeLibraryPathString = pkg.applicationInfo.nativeLibraryRootDir;
8478
8479        if (DEBUG_ABI_SELECTION) {
8480            Log.d(TAG, "Abis for package[" + pkg.packageName + "] are" +
8481                    " primary=" + pkg.applicationInfo.primaryCpuAbi +
8482                    " secondary=" + pkg.applicationInfo.secondaryCpuAbi);
8483        }
8484
8485        if ((scanFlags & SCAN_BOOTING) == 0 && pkgSetting.sharedUser != null) {
8486            // We don't do this here during boot because we can do it all
8487            // at once after scanning all existing packages.
8488            //
8489            // We also do this *before* we perform dexopt on this package, so that
8490            // we can avoid redundant dexopts, and also to make sure we've got the
8491            // code and package path correct.
8492            adjustCpuAbisForSharedUserLPw(pkgSetting.sharedUser.packages,
8493                    pkg, true /* boot complete */);
8494        }
8495
8496        if (mFactoryTest && pkg.requestedPermissions.contains(
8497                android.Manifest.permission.FACTORY_TEST)) {
8498            pkg.applicationInfo.flags |= ApplicationInfo.FLAG_FACTORY_TEST;
8499        }
8500
8501        ArrayList<PackageParser.Package> clientLibPkgs = null;
8502
8503        if ((scanFlags & SCAN_CHECK_ONLY) != 0) {
8504            if (nonMutatedPs != null) {
8505                synchronized (mPackages) {
8506                    mSettings.mPackages.put(nonMutatedPs.name, nonMutatedPs);
8507                }
8508            }
8509            return pkg;
8510        }
8511
8512        // Only privileged apps and updated privileged apps can add child packages.
8513        if (pkg.childPackages != null && !pkg.childPackages.isEmpty()) {
8514            if ((policyFlags & PARSE_IS_PRIVILEGED) == 0) {
8515                throw new PackageManagerException("Only privileged apps and updated "
8516                        + "privileged apps can add child packages. Ignoring package "
8517                        + pkg.packageName);
8518            }
8519            final int childCount = pkg.childPackages.size();
8520            for (int i = 0; i < childCount; i++) {
8521                PackageParser.Package childPkg = pkg.childPackages.get(i);
8522                if (mSettings.hasOtherDisabledSystemPkgWithChildLPr(pkg.packageName,
8523                        childPkg.packageName)) {
8524                    throw new PackageManagerException("Cannot override a child package of "
8525                            + "another disabled system app. Ignoring package " + pkg.packageName);
8526                }
8527            }
8528        }
8529
8530        // writer
8531        synchronized (mPackages) {
8532            if ((pkg.applicationInfo.flags&ApplicationInfo.FLAG_SYSTEM) != 0) {
8533                // Only system apps can add new shared libraries.
8534                if (pkg.libraryNames != null) {
8535                    for (int i=0; i<pkg.libraryNames.size(); i++) {
8536                        String name = pkg.libraryNames.get(i);
8537                        boolean allowed = false;
8538                        if (pkg.isUpdatedSystemApp()) {
8539                            // New library entries can only be added through the
8540                            // system image.  This is important to get rid of a lot
8541                            // of nasty edge cases: for example if we allowed a non-
8542                            // system update of the app to add a library, then uninstalling
8543                            // the update would make the library go away, and assumptions
8544                            // we made such as through app install filtering would now
8545                            // have allowed apps on the device which aren't compatible
8546                            // with it.  Better to just have the restriction here, be
8547                            // conservative, and create many fewer cases that can negatively
8548                            // impact the user experience.
8549                            final PackageSetting sysPs = mSettings
8550                                    .getDisabledSystemPkgLPr(pkg.packageName);
8551                            if (sysPs.pkg != null && sysPs.pkg.libraryNames != null) {
8552                                for (int j=0; j<sysPs.pkg.libraryNames.size(); j++) {
8553                                    if (name.equals(sysPs.pkg.libraryNames.get(j))) {
8554                                        allowed = true;
8555                                        break;
8556                                    }
8557                                }
8558                            }
8559                        } else {
8560                            allowed = true;
8561                        }
8562                        if (allowed) {
8563                            if (!mSharedLibraries.containsKey(name)) {
8564                                mSharedLibraries.put(name, new SharedLibraryEntry(null, pkg.packageName));
8565                            } else if (!name.equals(pkg.packageName)) {
8566                                Slog.w(TAG, "Package " + pkg.packageName + " library "
8567                                        + name + " already exists; skipping");
8568                            }
8569                        } else {
8570                            Slog.w(TAG, "Package " + pkg.packageName + " declares lib "
8571                                    + name + " that is not declared on system image; skipping");
8572                        }
8573                    }
8574                    if ((scanFlags & SCAN_BOOTING) == 0) {
8575                        // If we are not booting, we need to update any applications
8576                        // that are clients of our shared library.  If we are booting,
8577                        // this will all be done once the scan is complete.
8578                        clientLibPkgs = updateAllSharedLibrariesLPw(pkg);
8579                    }
8580                }
8581            }
8582        }
8583
8584        if ((scanFlags & SCAN_BOOTING) != 0) {
8585            // No apps can run during boot scan, so they don't need to be frozen
8586        } else if ((scanFlags & SCAN_DONT_KILL_APP) != 0) {
8587            // Caller asked to not kill app, so it's probably not frozen
8588        } else if ((scanFlags & SCAN_IGNORE_FROZEN) != 0) {
8589            // Caller asked us to ignore frozen check for some reason; they
8590            // probably didn't know the package name
8591        } else {
8592            // We're doing major surgery on this package, so it better be frozen
8593            // right now to keep it from launching
8594            checkPackageFrozen(pkgName);
8595        }
8596
8597        // Also need to kill any apps that are dependent on the library.
8598        if (clientLibPkgs != null) {
8599            for (int i=0; i<clientLibPkgs.size(); i++) {
8600                PackageParser.Package clientPkg = clientLibPkgs.get(i);
8601                killApplication(clientPkg.applicationInfo.packageName,
8602                        clientPkg.applicationInfo.uid, "update lib");
8603            }
8604        }
8605
8606        // Make sure we're not adding any bogus keyset info
8607        KeySetManagerService ksms = mSettings.mKeySetManagerService;
8608        ksms.assertScannedPackageValid(pkg);
8609
8610        // writer
8611        Trace.traceBegin(TRACE_TAG_PACKAGE_MANAGER, "updateSettings");
8612
8613        boolean createIdmapFailed = false;
8614        synchronized (mPackages) {
8615            // We don't expect installation to fail beyond this point
8616
8617            if (pkgSetting.pkg != null) {
8618                // Note that |user| might be null during the initial boot scan. If a codePath
8619                // for an app has changed during a boot scan, it's due to an app update that's
8620                // part of the system partition and marker changes must be applied to all users.
8621                maybeRenameForeignDexMarkers(pkgSetting.pkg, pkg,
8622                    (user != null) ? user : UserHandle.ALL);
8623            }
8624
8625            // Add the new setting to mSettings
8626            mSettings.insertPackageSettingLPw(pkgSetting, pkg);
8627            // Add the new setting to mPackages
8628            mPackages.put(pkg.applicationInfo.packageName, pkg);
8629            // Make sure we don't accidentally delete its data.
8630            final Iterator<PackageCleanItem> iter = mSettings.mPackagesToBeCleaned.iterator();
8631            while (iter.hasNext()) {
8632                PackageCleanItem item = iter.next();
8633                if (pkgName.equals(item.packageName)) {
8634                    iter.remove();
8635                }
8636            }
8637
8638            // Take care of first install / last update times.
8639            if (currentTime != 0) {
8640                if (pkgSetting.firstInstallTime == 0) {
8641                    pkgSetting.firstInstallTime = pkgSetting.lastUpdateTime = currentTime;
8642                } else if ((scanFlags&SCAN_UPDATE_TIME) != 0) {
8643                    pkgSetting.lastUpdateTime = currentTime;
8644                }
8645            } else if (pkgSetting.firstInstallTime == 0) {
8646                // We need *something*.  Take time time stamp of the file.
8647                pkgSetting.firstInstallTime = pkgSetting.lastUpdateTime = scanFileTime;
8648            } else if ((policyFlags&PackageParser.PARSE_IS_SYSTEM_DIR) != 0) {
8649                if (scanFileTime != pkgSetting.timeStamp) {
8650                    // A package on the system image has changed; consider this
8651                    // to be an update.
8652                    pkgSetting.lastUpdateTime = scanFileTime;
8653                }
8654            }
8655
8656            // Add the package's KeySets to the global KeySetManagerService
8657            ksms.addScannedPackageLPw(pkg);
8658
8659            int N = pkg.providers.size();
8660            StringBuilder r = null;
8661            int i;
8662            for (i=0; i<N; i++) {
8663                PackageParser.Provider p = pkg.providers.get(i);
8664                p.info.processName = fixProcessName(pkg.applicationInfo.processName,
8665                        p.info.processName, pkg.applicationInfo.uid);
8666                mProviders.addProvider(p);
8667                p.syncable = p.info.isSyncable;
8668                if (p.info.authority != null) {
8669                    String names[] = p.info.authority.split(";");
8670                    p.info.authority = null;
8671                    for (int j = 0; j < names.length; j++) {
8672                        if (j == 1 && p.syncable) {
8673                            // We only want the first authority for a provider to possibly be
8674                            // syncable, so if we already added this provider using a different
8675                            // authority clear the syncable flag. We copy the provider before
8676                            // changing it because the mProviders object contains a reference
8677                            // to a provider that we don't want to change.
8678                            // Only do this for the second authority since the resulting provider
8679                            // object can be the same for all future authorities for this provider.
8680                            p = new PackageParser.Provider(p);
8681                            p.syncable = false;
8682                        }
8683                        if (!mProvidersByAuthority.containsKey(names[j])) {
8684                            mProvidersByAuthority.put(names[j], p);
8685                            if (p.info.authority == null) {
8686                                p.info.authority = names[j];
8687                            } else {
8688                                p.info.authority = p.info.authority + ";" + names[j];
8689                            }
8690                            if (DEBUG_PACKAGE_SCANNING) {
8691                                if ((policyFlags & PackageParser.PARSE_CHATTY) != 0)
8692                                    Log.d(TAG, "Registered content provider: " + names[j]
8693                                            + ", className = " + p.info.name + ", isSyncable = "
8694                                            + p.info.isSyncable);
8695                            }
8696                        } else {
8697                            PackageParser.Provider other = mProvidersByAuthority.get(names[j]);
8698                            Slog.w(TAG, "Skipping provider name " + names[j] +
8699                                    " (in package " + pkg.applicationInfo.packageName +
8700                                    "): name already used by "
8701                                    + ((other != null && other.getComponentName() != null)
8702                                            ? other.getComponentName().getPackageName() : "?"));
8703                        }
8704                    }
8705                }
8706                if ((policyFlags&PackageParser.PARSE_CHATTY) != 0) {
8707                    if (r == null) {
8708                        r = new StringBuilder(256);
8709                    } else {
8710                        r.append(' ');
8711                    }
8712                    r.append(p.info.name);
8713                }
8714            }
8715            if (r != null) {
8716                if (DEBUG_PACKAGE_SCANNING) Log.d(TAG, "  Providers: " + r);
8717            }
8718
8719            N = pkg.services.size();
8720            r = null;
8721            for (i=0; i<N; i++) {
8722                PackageParser.Service s = pkg.services.get(i);
8723                s.info.processName = fixProcessName(pkg.applicationInfo.processName,
8724                        s.info.processName, pkg.applicationInfo.uid);
8725                mServices.addService(s);
8726                if ((policyFlags&PackageParser.PARSE_CHATTY) != 0) {
8727                    if (r == null) {
8728                        r = new StringBuilder(256);
8729                    } else {
8730                        r.append(' ');
8731                    }
8732                    r.append(s.info.name);
8733                }
8734            }
8735            if (r != null) {
8736                if (DEBUG_PACKAGE_SCANNING) Log.d(TAG, "  Services: " + r);
8737            }
8738
8739            N = pkg.receivers.size();
8740            r = null;
8741            for (i=0; i<N; i++) {
8742                PackageParser.Activity a = pkg.receivers.get(i);
8743                a.info.processName = fixProcessName(pkg.applicationInfo.processName,
8744                        a.info.processName, pkg.applicationInfo.uid);
8745                mReceivers.addActivity(a, "receiver");
8746                if ((policyFlags&PackageParser.PARSE_CHATTY) != 0) {
8747                    if (r == null) {
8748                        r = new StringBuilder(256);
8749                    } else {
8750                        r.append(' ');
8751                    }
8752                    r.append(a.info.name);
8753                }
8754            }
8755            if (r != null) {
8756                if (DEBUG_PACKAGE_SCANNING) Log.d(TAG, "  Receivers: " + r);
8757            }
8758
8759            N = pkg.activities.size();
8760            r = null;
8761            for (i=0; i<N; i++) {
8762                PackageParser.Activity a = pkg.activities.get(i);
8763                a.info.processName = fixProcessName(pkg.applicationInfo.processName,
8764                        a.info.processName, pkg.applicationInfo.uid);
8765                mActivities.addActivity(a, "activity");
8766                if ((policyFlags&PackageParser.PARSE_CHATTY) != 0) {
8767                    if (r == null) {
8768                        r = new StringBuilder(256);
8769                    } else {
8770                        r.append(' ');
8771                    }
8772                    r.append(a.info.name);
8773                }
8774            }
8775            if (r != null) {
8776                if (DEBUG_PACKAGE_SCANNING) Log.d(TAG, "  Activities: " + r);
8777            }
8778
8779            N = pkg.permissionGroups.size();
8780            r = null;
8781            for (i=0; i<N; i++) {
8782                PackageParser.PermissionGroup pg = pkg.permissionGroups.get(i);
8783                PackageParser.PermissionGroup cur = mPermissionGroups.get(pg.info.name);
8784                if (cur == null) {
8785                    mPermissionGroups.put(pg.info.name, pg);
8786                    if ((policyFlags&PackageParser.PARSE_CHATTY) != 0) {
8787                        if (r == null) {
8788                            r = new StringBuilder(256);
8789                        } else {
8790                            r.append(' ');
8791                        }
8792                        r.append(pg.info.name);
8793                    }
8794                } else {
8795                    Slog.w(TAG, "Permission group " + pg.info.name + " from package "
8796                            + pg.info.packageName + " ignored: original from "
8797                            + cur.info.packageName);
8798                    if ((policyFlags&PackageParser.PARSE_CHATTY) != 0) {
8799                        if (r == null) {
8800                            r = new StringBuilder(256);
8801                        } else {
8802                            r.append(' ');
8803                        }
8804                        r.append("DUP:");
8805                        r.append(pg.info.name);
8806                    }
8807                }
8808            }
8809            if (r != null) {
8810                if (DEBUG_PACKAGE_SCANNING) Log.d(TAG, "  Permission Groups: " + r);
8811            }
8812
8813            N = pkg.permissions.size();
8814            r = null;
8815            for (i=0; i<N; i++) {
8816                PackageParser.Permission p = pkg.permissions.get(i);
8817
8818                // Assume by default that we did not install this permission into the system.
8819                p.info.flags &= ~PermissionInfo.FLAG_INSTALLED;
8820
8821                // Now that permission groups have a special meaning, we ignore permission
8822                // groups for legacy apps to prevent unexpected behavior. In particular,
8823                // permissions for one app being granted to someone just becase they happen
8824                // to be in a group defined by another app (before this had no implications).
8825                if (pkg.applicationInfo.targetSdkVersion > Build.VERSION_CODES.LOLLIPOP_MR1) {
8826                    p.group = mPermissionGroups.get(p.info.group);
8827                    // Warn for a permission in an unknown group.
8828                    if (p.info.group != null && p.group == null) {
8829                        Slog.w(TAG, "Permission " + p.info.name + " from package "
8830                                + p.info.packageName + " in an unknown group " + p.info.group);
8831                    }
8832                }
8833
8834                ArrayMap<String, BasePermission> permissionMap =
8835                        p.tree ? mSettings.mPermissionTrees
8836                                : mSettings.mPermissions;
8837                BasePermission bp = permissionMap.get(p.info.name);
8838
8839                // Allow system apps to redefine non-system permissions
8840                if (bp != null && !Objects.equals(bp.sourcePackage, p.info.packageName)) {
8841                    final boolean currentOwnerIsSystem = (bp.perm != null
8842                            && isSystemApp(bp.perm.owner));
8843                    if (isSystemApp(p.owner)) {
8844                        if (bp.type == BasePermission.TYPE_BUILTIN && bp.perm == null) {
8845                            // It's a built-in permission and no owner, take ownership now
8846                            bp.packageSetting = pkgSetting;
8847                            bp.perm = p;
8848                            bp.uid = pkg.applicationInfo.uid;
8849                            bp.sourcePackage = p.info.packageName;
8850                            p.info.flags |= PermissionInfo.FLAG_INSTALLED;
8851                        } else if (!currentOwnerIsSystem) {
8852                            String msg = "New decl " + p.owner + " of permission  "
8853                                    + p.info.name + " is system; overriding " + bp.sourcePackage;
8854                            reportSettingsProblem(Log.WARN, msg);
8855                            bp = null;
8856                        }
8857                    }
8858                }
8859
8860                if (bp == null) {
8861                    bp = new BasePermission(p.info.name, p.info.packageName,
8862                            BasePermission.TYPE_NORMAL);
8863                    permissionMap.put(p.info.name, bp);
8864                }
8865
8866                if (bp.perm == null) {
8867                    if (bp.sourcePackage == null
8868                            || bp.sourcePackage.equals(p.info.packageName)) {
8869                        BasePermission tree = findPermissionTreeLP(p.info.name);
8870                        if (tree == null
8871                                || tree.sourcePackage.equals(p.info.packageName)) {
8872                            bp.packageSetting = pkgSetting;
8873                            bp.perm = p;
8874                            bp.uid = pkg.applicationInfo.uid;
8875                            bp.sourcePackage = p.info.packageName;
8876                            p.info.flags |= PermissionInfo.FLAG_INSTALLED;
8877                            if ((policyFlags&PackageParser.PARSE_CHATTY) != 0) {
8878                                if (r == null) {
8879                                    r = new StringBuilder(256);
8880                                } else {
8881                                    r.append(' ');
8882                                }
8883                                r.append(p.info.name);
8884                            }
8885                        } else {
8886                            Slog.w(TAG, "Permission " + p.info.name + " from package "
8887                                    + p.info.packageName + " ignored: base tree "
8888                                    + tree.name + " is from package "
8889                                    + tree.sourcePackage);
8890                        }
8891                    } else {
8892                        Slog.w(TAG, "Permission " + p.info.name + " from package "
8893                                + p.info.packageName + " ignored: original from "
8894                                + bp.sourcePackage);
8895                    }
8896                } else if ((policyFlags&PackageParser.PARSE_CHATTY) != 0) {
8897                    if (r == null) {
8898                        r = new StringBuilder(256);
8899                    } else {
8900                        r.append(' ');
8901                    }
8902                    r.append("DUP:");
8903                    r.append(p.info.name);
8904                }
8905                if (bp.perm == p) {
8906                    bp.protectionLevel = p.info.protectionLevel;
8907                }
8908            }
8909
8910            if (r != null) {
8911                if (DEBUG_PACKAGE_SCANNING) Log.d(TAG, "  Permissions: " + r);
8912            }
8913
8914            N = pkg.instrumentation.size();
8915            r = null;
8916            for (i=0; i<N; i++) {
8917                PackageParser.Instrumentation a = pkg.instrumentation.get(i);
8918                a.info.packageName = pkg.applicationInfo.packageName;
8919                a.info.sourceDir = pkg.applicationInfo.sourceDir;
8920                a.info.publicSourceDir = pkg.applicationInfo.publicSourceDir;
8921                a.info.splitSourceDirs = pkg.applicationInfo.splitSourceDirs;
8922                a.info.splitPublicSourceDirs = pkg.applicationInfo.splitPublicSourceDirs;
8923                a.info.dataDir = pkg.applicationInfo.dataDir;
8924                a.info.deviceProtectedDataDir = pkg.applicationInfo.deviceProtectedDataDir;
8925                a.info.credentialProtectedDataDir = pkg.applicationInfo.credentialProtectedDataDir;
8926
8927                a.info.nativeLibraryDir = pkg.applicationInfo.nativeLibraryDir;
8928                a.info.secondaryNativeLibraryDir = pkg.applicationInfo.secondaryNativeLibraryDir;
8929                mInstrumentation.put(a.getComponentName(), a);
8930                if ((policyFlags&PackageParser.PARSE_CHATTY) != 0) {
8931                    if (r == null) {
8932                        r = new StringBuilder(256);
8933                    } else {
8934                        r.append(' ');
8935                    }
8936                    r.append(a.info.name);
8937                }
8938            }
8939            if (r != null) {
8940                if (DEBUG_PACKAGE_SCANNING) Log.d(TAG, "  Instrumentation: " + r);
8941            }
8942
8943            if (pkg.protectedBroadcasts != null) {
8944                N = pkg.protectedBroadcasts.size();
8945                for (i=0; i<N; i++) {
8946                    mProtectedBroadcasts.add(pkg.protectedBroadcasts.get(i));
8947                }
8948            }
8949
8950            pkgSetting.setTimeStamp(scanFileTime);
8951
8952            // Create idmap files for pairs of (packages, overlay packages).
8953            // Note: "android", ie framework-res.apk, is handled by native layers.
8954            if (pkg.mOverlayTarget != null) {
8955                // This is an overlay package.
8956                if (pkg.mOverlayTarget != null && !pkg.mOverlayTarget.equals("android")) {
8957                    if (!mOverlays.containsKey(pkg.mOverlayTarget)) {
8958                        mOverlays.put(pkg.mOverlayTarget,
8959                                new ArrayMap<String, PackageParser.Package>());
8960                    }
8961                    ArrayMap<String, PackageParser.Package> map = mOverlays.get(pkg.mOverlayTarget);
8962                    map.put(pkg.packageName, pkg);
8963                    PackageParser.Package orig = mPackages.get(pkg.mOverlayTarget);
8964                    if (orig != null && !createIdmapForPackagePairLI(orig, pkg)) {
8965                        createIdmapFailed = true;
8966                    }
8967                }
8968            } else if (mOverlays.containsKey(pkg.packageName) &&
8969                    !pkg.packageName.equals("android")) {
8970                // This is a regular package, with one or more known overlay packages.
8971                createIdmapsForPackageLI(pkg);
8972            }
8973        }
8974
8975        Trace.traceEnd(TRACE_TAG_PACKAGE_MANAGER);
8976
8977        if (createIdmapFailed) {
8978            throw new PackageManagerException(INSTALL_FAILED_UPDATE_INCOMPATIBLE,
8979                    "scanPackageLI failed to createIdmap");
8980        }
8981        return pkg;
8982    }
8983
8984    private void maybeRenameForeignDexMarkers(PackageParser.Package existing,
8985            PackageParser.Package update, UserHandle user) {
8986        if (existing.applicationInfo == null || update.applicationInfo == null) {
8987            // This isn't due to an app installation.
8988            return;
8989        }
8990
8991        final File oldCodePath = new File(existing.applicationInfo.getCodePath());
8992        final File newCodePath = new File(update.applicationInfo.getCodePath());
8993
8994        // The codePath hasn't changed, so there's nothing for us to do.
8995        if (Objects.equals(oldCodePath, newCodePath)) {
8996            return;
8997        }
8998
8999        File canonicalNewCodePath;
9000        try {
9001            canonicalNewCodePath = new File(PackageManagerServiceUtils.realpath(newCodePath));
9002        } catch (IOException e) {
9003            Slog.w(TAG, "Failed to get canonical path.", e);
9004            return;
9005        }
9006
9007        // This is a bit of a hack. The oldCodePath doesn't exist at this point (because
9008        // we've already renamed / deleted it) so we cannot call realpath on it. Here we assume
9009        // that the last component of the path (i.e, the name) doesn't need canonicalization
9010        // (i.e, that it isn't ".", ".." or a symbolic link). This is a valid assumption for now
9011        // but may change in the future. Hopefully this function won't exist at that point.
9012        final File canonicalOldCodePath = new File(canonicalNewCodePath.getParentFile(),
9013                oldCodePath.getName());
9014
9015        // Calculate the prefixes of the markers. These are just the paths with "/" replaced
9016        // with "@".
9017        String oldMarkerPrefix = canonicalOldCodePath.getAbsolutePath().replace('/', '@');
9018        if (!oldMarkerPrefix.endsWith("@")) {
9019            oldMarkerPrefix += "@";
9020        }
9021        String newMarkerPrefix = canonicalNewCodePath.getAbsolutePath().replace('/', '@');
9022        if (!newMarkerPrefix.endsWith("@")) {
9023            newMarkerPrefix += "@";
9024        }
9025
9026        List<String> updatedPaths = update.getAllCodePathsExcludingResourceOnly();
9027        List<String> markerSuffixes = new ArrayList<String>(updatedPaths.size());
9028        for (String updatedPath : updatedPaths) {
9029            String updatedPathName = new File(updatedPath).getName();
9030            markerSuffixes.add(updatedPathName.replace('/', '@'));
9031        }
9032
9033        for (int userId : resolveUserIds(user.getIdentifier())) {
9034            File profileDir = Environment.getDataProfilesDeForeignDexDirectory(userId);
9035
9036            for (String markerSuffix : markerSuffixes) {
9037                File oldForeignUseMark = new File(profileDir, oldMarkerPrefix + markerSuffix);
9038                File newForeignUseMark = new File(profileDir, newMarkerPrefix + markerSuffix);
9039                if (oldForeignUseMark.exists()) {
9040                    try {
9041                        Os.rename(oldForeignUseMark.getAbsolutePath(),
9042                                newForeignUseMark.getAbsolutePath());
9043                    } catch (ErrnoException e) {
9044                        Slog.w(TAG, "Failed to rename foreign use marker", e);
9045                        oldForeignUseMark.delete();
9046                    }
9047                }
9048            }
9049        }
9050    }
9051
9052    /**
9053     * Derive the ABI of a non-system package located at {@code scanFile}. This information
9054     * is derived purely on the basis of the contents of {@code scanFile} and
9055     * {@code cpuAbiOverride}.
9056     *
9057     * If {@code extractLibs} is true, native libraries are extracted from the app if required.
9058     */
9059    private void derivePackageAbi(PackageParser.Package pkg, File scanFile,
9060                                 String cpuAbiOverride, boolean extractLibs)
9061            throws PackageManagerException {
9062        // TODO: We can probably be smarter about this stuff. For installed apps,
9063        // we can calculate this information at install time once and for all. For
9064        // system apps, we can probably assume that this information doesn't change
9065        // after the first boot scan. As things stand, we do lots of unnecessary work.
9066
9067        // Give ourselves some initial paths; we'll come back for another
9068        // pass once we've determined ABI below.
9069        setNativeLibraryPaths(pkg);
9070
9071        // We would never need to extract libs for forward-locked and external packages,
9072        // since the container service will do it for us. We shouldn't attempt to
9073        // extract libs from system app when it was not updated.
9074        if (pkg.isForwardLocked() || pkg.applicationInfo.isExternalAsec() ||
9075                (isSystemApp(pkg) && !pkg.isUpdatedSystemApp())) {
9076            extractLibs = false;
9077        }
9078
9079        final String nativeLibraryRootStr = pkg.applicationInfo.nativeLibraryRootDir;
9080        final boolean useIsaSpecificSubdirs = pkg.applicationInfo.nativeLibraryRootRequiresIsa;
9081
9082        NativeLibraryHelper.Handle handle = null;
9083        try {
9084            handle = NativeLibraryHelper.Handle.create(pkg);
9085            // TODO(multiArch): This can be null for apps that didn't go through the
9086            // usual installation process. We can calculate it again, like we
9087            // do during install time.
9088            //
9089            // TODO(multiArch): Why do we need to rescan ASEC apps again ? It seems totally
9090            // unnecessary.
9091            final File nativeLibraryRoot = new File(nativeLibraryRootStr);
9092
9093            // Null out the abis so that they can be recalculated.
9094            pkg.applicationInfo.primaryCpuAbi = null;
9095            pkg.applicationInfo.secondaryCpuAbi = null;
9096            if (isMultiArch(pkg.applicationInfo)) {
9097                // Warn if we've set an abiOverride for multi-lib packages..
9098                // By definition, we need to copy both 32 and 64 bit libraries for
9099                // such packages.
9100                if (pkg.cpuAbiOverride != null
9101                        && !NativeLibraryHelper.CLEAR_ABI_OVERRIDE.equals(pkg.cpuAbiOverride)) {
9102                    Slog.w(TAG, "Ignoring abiOverride for multi arch application.");
9103                }
9104
9105                int abi32 = PackageManager.NO_NATIVE_LIBRARIES;
9106                int abi64 = PackageManager.NO_NATIVE_LIBRARIES;
9107                if (Build.SUPPORTED_32_BIT_ABIS.length > 0) {
9108                    if (extractLibs) {
9109                        abi32 = NativeLibraryHelper.copyNativeBinariesForSupportedAbi(handle,
9110                                nativeLibraryRoot, Build.SUPPORTED_32_BIT_ABIS,
9111                                useIsaSpecificSubdirs);
9112                    } else {
9113                        abi32 = NativeLibraryHelper.findSupportedAbi(handle, Build.SUPPORTED_32_BIT_ABIS);
9114                    }
9115                }
9116
9117                maybeThrowExceptionForMultiArchCopy(
9118                        "Error unpackaging 32 bit native libs for multiarch app.", abi32);
9119
9120                if (Build.SUPPORTED_64_BIT_ABIS.length > 0) {
9121                    if (extractLibs) {
9122                        abi64 = NativeLibraryHelper.copyNativeBinariesForSupportedAbi(handle,
9123                                nativeLibraryRoot, Build.SUPPORTED_64_BIT_ABIS,
9124                                useIsaSpecificSubdirs);
9125                    } else {
9126                        abi64 = NativeLibraryHelper.findSupportedAbi(handle, Build.SUPPORTED_64_BIT_ABIS);
9127                    }
9128                }
9129
9130                maybeThrowExceptionForMultiArchCopy(
9131                        "Error unpackaging 64 bit native libs for multiarch app.", abi64);
9132
9133                if (abi64 >= 0) {
9134                    pkg.applicationInfo.primaryCpuAbi = Build.SUPPORTED_64_BIT_ABIS[abi64];
9135                }
9136
9137                if (abi32 >= 0) {
9138                    final String abi = Build.SUPPORTED_32_BIT_ABIS[abi32];
9139                    if (abi64 >= 0) {
9140                        if (pkg.use32bitAbi) {
9141                            pkg.applicationInfo.secondaryCpuAbi = pkg.applicationInfo.primaryCpuAbi;
9142                            pkg.applicationInfo.primaryCpuAbi = abi;
9143                        } else {
9144                            pkg.applicationInfo.secondaryCpuAbi = abi;
9145                        }
9146                    } else {
9147                        pkg.applicationInfo.primaryCpuAbi = abi;
9148                    }
9149                }
9150
9151            } else {
9152                String[] abiList = (cpuAbiOverride != null) ?
9153                        new String[] { cpuAbiOverride } : Build.SUPPORTED_ABIS;
9154
9155                // Enable gross and lame hacks for apps that are built with old
9156                // SDK tools. We must scan their APKs for renderscript bitcode and
9157                // not launch them if it's present. Don't bother checking on devices
9158                // that don't have 64 bit support.
9159                boolean needsRenderScriptOverride = false;
9160                if (Build.SUPPORTED_64_BIT_ABIS.length > 0 && cpuAbiOverride == null &&
9161                        NativeLibraryHelper.hasRenderscriptBitcode(handle)) {
9162                    abiList = Build.SUPPORTED_32_BIT_ABIS;
9163                    needsRenderScriptOverride = true;
9164                }
9165
9166                final int copyRet;
9167                if (extractLibs) {
9168                    copyRet = NativeLibraryHelper.copyNativeBinariesForSupportedAbi(handle,
9169                            nativeLibraryRoot, abiList, useIsaSpecificSubdirs);
9170                } else {
9171                    copyRet = NativeLibraryHelper.findSupportedAbi(handle, abiList);
9172                }
9173
9174                if (copyRet < 0 && copyRet != PackageManager.NO_NATIVE_LIBRARIES) {
9175                    throw new PackageManagerException(INSTALL_FAILED_INTERNAL_ERROR,
9176                            "Error unpackaging native libs for app, errorCode=" + copyRet);
9177                }
9178
9179                if (copyRet >= 0) {
9180                    pkg.applicationInfo.primaryCpuAbi = abiList[copyRet];
9181                } else if (copyRet == PackageManager.NO_NATIVE_LIBRARIES && cpuAbiOverride != null) {
9182                    pkg.applicationInfo.primaryCpuAbi = cpuAbiOverride;
9183                } else if (needsRenderScriptOverride) {
9184                    pkg.applicationInfo.primaryCpuAbi = abiList[0];
9185                }
9186            }
9187        } catch (IOException ioe) {
9188            Slog.e(TAG, "Unable to get canonical file " + ioe.toString());
9189        } finally {
9190            IoUtils.closeQuietly(handle);
9191        }
9192
9193        // Now that we've calculated the ABIs and determined if it's an internal app,
9194        // we will go ahead and populate the nativeLibraryPath.
9195        setNativeLibraryPaths(pkg);
9196    }
9197
9198    /**
9199     * Adjusts ABIs for a set of packages belonging to a shared user so that they all match.
9200     * i.e, so that all packages can be run inside a single process if required.
9201     *
9202     * Optionally, callers can pass in a parsed package via {@code newPackage} in which case
9203     * this function will either try and make the ABI for all packages in {@code packagesForUser}
9204     * match {@code scannedPackage} or will update the ABI of {@code scannedPackage} to match
9205     * the ABI selected for {@code packagesForUser}. This variant is used when installing or
9206     * updating a package that belongs to a shared user.
9207     *
9208     * NOTE: We currently only match for the primary CPU abi string. Matching the secondary
9209     * adds unnecessary complexity.
9210     */
9211    private void adjustCpuAbisForSharedUserLPw(Set<PackageSetting> packagesForUser,
9212            PackageParser.Package scannedPackage, boolean bootComplete) {
9213        String requiredInstructionSet = null;
9214        if (scannedPackage != null && scannedPackage.applicationInfo.primaryCpuAbi != null) {
9215            requiredInstructionSet = VMRuntime.getInstructionSet(
9216                     scannedPackage.applicationInfo.primaryCpuAbi);
9217        }
9218
9219        PackageSetting requirer = null;
9220        for (PackageSetting ps : packagesForUser) {
9221            // If packagesForUser contains scannedPackage, we skip it. This will happen
9222            // when scannedPackage is an update of an existing package. Without this check,
9223            // we will never be able to change the ABI of any package belonging to a shared
9224            // user, even if it's compatible with other packages.
9225            if (scannedPackage == null || !scannedPackage.packageName.equals(ps.name)) {
9226                if (ps.primaryCpuAbiString == null) {
9227                    continue;
9228                }
9229
9230                final String instructionSet = VMRuntime.getInstructionSet(ps.primaryCpuAbiString);
9231                if (requiredInstructionSet != null && !instructionSet.equals(requiredInstructionSet)) {
9232                    // We have a mismatch between instruction sets (say arm vs arm64) warn about
9233                    // this but there's not much we can do.
9234                    String errorMessage = "Instruction set mismatch, "
9235                            + ((requirer == null) ? "[caller]" : requirer)
9236                            + " requires " + requiredInstructionSet + " whereas " + ps
9237                            + " requires " + instructionSet;
9238                    Slog.w(TAG, errorMessage);
9239                }
9240
9241                if (requiredInstructionSet == null) {
9242                    requiredInstructionSet = instructionSet;
9243                    requirer = ps;
9244                }
9245            }
9246        }
9247
9248        if (requiredInstructionSet != null) {
9249            String adjustedAbi;
9250            if (requirer != null) {
9251                // requirer != null implies that either scannedPackage was null or that scannedPackage
9252                // did not require an ABI, in which case we have to adjust scannedPackage to match
9253                // the ABI of the set (which is the same as requirer's ABI)
9254                adjustedAbi = requirer.primaryCpuAbiString;
9255                if (scannedPackage != null) {
9256                    scannedPackage.applicationInfo.primaryCpuAbi = adjustedAbi;
9257                }
9258            } else {
9259                // requirer == null implies that we're updating all ABIs in the set to
9260                // match scannedPackage.
9261                adjustedAbi =  scannedPackage.applicationInfo.primaryCpuAbi;
9262            }
9263
9264            for (PackageSetting ps : packagesForUser) {
9265                if (scannedPackage == null || !scannedPackage.packageName.equals(ps.name)) {
9266                    if (ps.primaryCpuAbiString != null) {
9267                        continue;
9268                    }
9269
9270                    ps.primaryCpuAbiString = adjustedAbi;
9271                    if (ps.pkg != null && ps.pkg.applicationInfo != null &&
9272                            !TextUtils.equals(adjustedAbi, ps.pkg.applicationInfo.primaryCpuAbi)) {
9273                        ps.pkg.applicationInfo.primaryCpuAbi = adjustedAbi;
9274                        Slog.i(TAG, "Adjusting ABI for " + ps.name + " to " + adjustedAbi
9275                                + " (requirer="
9276                                + (requirer == null ? "null" : requirer.pkg.packageName)
9277                                + ", scannedPackage="
9278                                + (scannedPackage != null ? scannedPackage.packageName : "null")
9279                                + ")");
9280                        try {
9281                            mInstaller.rmdex(ps.codePathString,
9282                                    getDexCodeInstructionSet(getPreferredInstructionSet()));
9283                        } catch (InstallerException ignored) {
9284                        }
9285                    }
9286                }
9287            }
9288        }
9289    }
9290
9291    private void setUpCustomResolverActivity(PackageParser.Package pkg) {
9292        synchronized (mPackages) {
9293            mResolverReplaced = true;
9294            // Set up information for custom user intent resolution activity.
9295            mResolveActivity.applicationInfo = pkg.applicationInfo;
9296            mResolveActivity.name = mCustomResolverComponentName.getClassName();
9297            mResolveActivity.packageName = pkg.applicationInfo.packageName;
9298            mResolveActivity.processName = pkg.applicationInfo.packageName;
9299            mResolveActivity.launchMode = ActivityInfo.LAUNCH_MULTIPLE;
9300            mResolveActivity.flags = ActivityInfo.FLAG_EXCLUDE_FROM_RECENTS |
9301                    ActivityInfo.FLAG_FINISH_ON_CLOSE_SYSTEM_DIALOGS;
9302            mResolveActivity.theme = 0;
9303            mResolveActivity.exported = true;
9304            mResolveActivity.enabled = true;
9305            mResolveInfo.activityInfo = mResolveActivity;
9306            mResolveInfo.priority = 0;
9307            mResolveInfo.preferredOrder = 0;
9308            mResolveInfo.match = 0;
9309            mResolveComponentName = mCustomResolverComponentName;
9310            Slog.i(TAG, "Replacing default ResolverActivity with custom activity: " +
9311                    mResolveComponentName);
9312        }
9313    }
9314
9315    private void setUpEphemeralInstallerActivityLP(ComponentName installerComponent) {
9316        final PackageParser.Package pkg = mPackages.get(installerComponent.getPackageName());
9317
9318        // Set up information for ephemeral installer activity
9319        mEphemeralInstallerActivity.applicationInfo = pkg.applicationInfo;
9320        mEphemeralInstallerActivity.name = mEphemeralInstallerComponent.getClassName();
9321        mEphemeralInstallerActivity.packageName = pkg.applicationInfo.packageName;
9322        mEphemeralInstallerActivity.processName = pkg.applicationInfo.packageName;
9323        mEphemeralInstallerActivity.launchMode = ActivityInfo.LAUNCH_MULTIPLE;
9324        mEphemeralInstallerActivity.flags = ActivityInfo.FLAG_EXCLUDE_FROM_RECENTS |
9325                ActivityInfo.FLAG_FINISH_ON_CLOSE_SYSTEM_DIALOGS;
9326        mEphemeralInstallerActivity.theme = 0;
9327        mEphemeralInstallerActivity.exported = true;
9328        mEphemeralInstallerActivity.enabled = true;
9329        mEphemeralInstallerInfo.activityInfo = mEphemeralInstallerActivity;
9330        mEphemeralInstallerInfo.priority = 0;
9331        mEphemeralInstallerInfo.preferredOrder = 0;
9332        mEphemeralInstallerInfo.match = 0;
9333
9334        if (DEBUG_EPHEMERAL) {
9335            Slog.d(TAG, "Set ephemeral installer activity: " + mEphemeralInstallerComponent);
9336        }
9337    }
9338
9339    private static String calculateBundledApkRoot(final String codePathString) {
9340        final File codePath = new File(codePathString);
9341        final File codeRoot;
9342        if (FileUtils.contains(Environment.getRootDirectory(), codePath)) {
9343            codeRoot = Environment.getRootDirectory();
9344        } else if (FileUtils.contains(Environment.getOemDirectory(), codePath)) {
9345            codeRoot = Environment.getOemDirectory();
9346        } else if (FileUtils.contains(Environment.getVendorDirectory(), codePath)) {
9347            codeRoot = Environment.getVendorDirectory();
9348        } else {
9349            // Unrecognized code path; take its top real segment as the apk root:
9350            // e.g. /something/app/blah.apk => /something
9351            try {
9352                File f = codePath.getCanonicalFile();
9353                File parent = f.getParentFile();    // non-null because codePath is a file
9354                File tmp;
9355                while ((tmp = parent.getParentFile()) != null) {
9356                    f = parent;
9357                    parent = tmp;
9358                }
9359                codeRoot = f;
9360                Slog.w(TAG, "Unrecognized code path "
9361                        + codePath + " - using " + codeRoot);
9362            } catch (IOException e) {
9363                // Can't canonicalize the code path -- shenanigans?
9364                Slog.w(TAG, "Can't canonicalize code path " + codePath);
9365                return Environment.getRootDirectory().getPath();
9366            }
9367        }
9368        return codeRoot.getPath();
9369    }
9370
9371    /**
9372     * Derive and set the location of native libraries for the given package,
9373     * which varies depending on where and how the package was installed.
9374     */
9375    private void setNativeLibraryPaths(PackageParser.Package pkg) {
9376        final ApplicationInfo info = pkg.applicationInfo;
9377        final String codePath = pkg.codePath;
9378        final File codeFile = new File(codePath);
9379        final boolean bundledApp = info.isSystemApp() && !info.isUpdatedSystemApp();
9380        final boolean asecApp = info.isForwardLocked() || info.isExternalAsec();
9381
9382        info.nativeLibraryRootDir = null;
9383        info.nativeLibraryRootRequiresIsa = false;
9384        info.nativeLibraryDir = null;
9385        info.secondaryNativeLibraryDir = null;
9386
9387        if (isApkFile(codeFile)) {
9388            // Monolithic install
9389            if (bundledApp) {
9390                // If "/system/lib64/apkname" exists, assume that is the per-package
9391                // native library directory to use; otherwise use "/system/lib/apkname".
9392                final String apkRoot = calculateBundledApkRoot(info.sourceDir);
9393                final boolean is64Bit = VMRuntime.is64BitInstructionSet(
9394                        getPrimaryInstructionSet(info));
9395
9396                // This is a bundled system app so choose the path based on the ABI.
9397                // if it's a 64 bit abi, use lib64 otherwise use lib32. Note that this
9398                // is just the default path.
9399                final String apkName = deriveCodePathName(codePath);
9400                final String libDir = is64Bit ? LIB64_DIR_NAME : LIB_DIR_NAME;
9401                info.nativeLibraryRootDir = Environment.buildPath(new File(apkRoot), libDir,
9402                        apkName).getAbsolutePath();
9403
9404                if (info.secondaryCpuAbi != null) {
9405                    final String secondaryLibDir = is64Bit ? LIB_DIR_NAME : LIB64_DIR_NAME;
9406                    info.secondaryNativeLibraryDir = Environment.buildPath(new File(apkRoot),
9407                            secondaryLibDir, apkName).getAbsolutePath();
9408                }
9409            } else if (asecApp) {
9410                info.nativeLibraryRootDir = new File(codeFile.getParentFile(), LIB_DIR_NAME)
9411                        .getAbsolutePath();
9412            } else {
9413                final String apkName = deriveCodePathName(codePath);
9414                info.nativeLibraryRootDir = new File(mAppLib32InstallDir, apkName)
9415                        .getAbsolutePath();
9416            }
9417
9418            info.nativeLibraryRootRequiresIsa = false;
9419            info.nativeLibraryDir = info.nativeLibraryRootDir;
9420        } else {
9421            // Cluster install
9422            info.nativeLibraryRootDir = new File(codeFile, LIB_DIR_NAME).getAbsolutePath();
9423            info.nativeLibraryRootRequiresIsa = true;
9424
9425            info.nativeLibraryDir = new File(info.nativeLibraryRootDir,
9426                    getPrimaryInstructionSet(info)).getAbsolutePath();
9427
9428            if (info.secondaryCpuAbi != null) {
9429                info.secondaryNativeLibraryDir = new File(info.nativeLibraryRootDir,
9430                        VMRuntime.getInstructionSet(info.secondaryCpuAbi)).getAbsolutePath();
9431            }
9432        }
9433    }
9434
9435    /**
9436     * Calculate the abis and roots for a bundled app. These can uniquely
9437     * be determined from the contents of the system partition, i.e whether
9438     * it contains 64 or 32 bit shared libraries etc. We do not validate any
9439     * of this information, and instead assume that the system was built
9440     * sensibly.
9441     */
9442    private void setBundledAppAbisAndRoots(PackageParser.Package pkg,
9443                                           PackageSetting pkgSetting) {
9444        final String apkName = deriveCodePathName(pkg.applicationInfo.getCodePath());
9445
9446        // If "/system/lib64/apkname" exists, assume that is the per-package
9447        // native library directory to use; otherwise use "/system/lib/apkname".
9448        final String apkRoot = calculateBundledApkRoot(pkg.applicationInfo.sourceDir);
9449        setBundledAppAbi(pkg, apkRoot, apkName);
9450        // pkgSetting might be null during rescan following uninstall of updates
9451        // to a bundled app, so accommodate that possibility.  The settings in
9452        // that case will be established later from the parsed package.
9453        //
9454        // If the settings aren't null, sync them up with what we've just derived.
9455        // note that apkRoot isn't stored in the package settings.
9456        if (pkgSetting != null) {
9457            pkgSetting.primaryCpuAbiString = pkg.applicationInfo.primaryCpuAbi;
9458            pkgSetting.secondaryCpuAbiString = pkg.applicationInfo.secondaryCpuAbi;
9459        }
9460    }
9461
9462    /**
9463     * Deduces the ABI of a bundled app and sets the relevant fields on the
9464     * parsed pkg object.
9465     *
9466     * @param apkRoot the root of the installed apk, something like {@code /system} or {@code /oem}
9467     *        under which system libraries are installed.
9468     * @param apkName the name of the installed package.
9469     */
9470    private static void setBundledAppAbi(PackageParser.Package pkg, String apkRoot, String apkName) {
9471        final File codeFile = new File(pkg.codePath);
9472
9473        final boolean has64BitLibs;
9474        final boolean has32BitLibs;
9475        if (isApkFile(codeFile)) {
9476            // Monolithic install
9477            has64BitLibs = (new File(apkRoot, new File(LIB64_DIR_NAME, apkName).getPath())).exists();
9478            has32BitLibs = (new File(apkRoot, new File(LIB_DIR_NAME, apkName).getPath())).exists();
9479        } else {
9480            // Cluster install
9481            final File rootDir = new File(codeFile, LIB_DIR_NAME);
9482            if (!ArrayUtils.isEmpty(Build.SUPPORTED_64_BIT_ABIS)
9483                    && !TextUtils.isEmpty(Build.SUPPORTED_64_BIT_ABIS[0])) {
9484                final String isa = VMRuntime.getInstructionSet(Build.SUPPORTED_64_BIT_ABIS[0]);
9485                has64BitLibs = (new File(rootDir, isa)).exists();
9486            } else {
9487                has64BitLibs = false;
9488            }
9489            if (!ArrayUtils.isEmpty(Build.SUPPORTED_32_BIT_ABIS)
9490                    && !TextUtils.isEmpty(Build.SUPPORTED_32_BIT_ABIS[0])) {
9491                final String isa = VMRuntime.getInstructionSet(Build.SUPPORTED_32_BIT_ABIS[0]);
9492                has32BitLibs = (new File(rootDir, isa)).exists();
9493            } else {
9494                has32BitLibs = false;
9495            }
9496        }
9497
9498        if (has64BitLibs && !has32BitLibs) {
9499            // The package has 64 bit libs, but not 32 bit libs. Its primary
9500            // ABI should be 64 bit. We can safely assume here that the bundled
9501            // native libraries correspond to the most preferred ABI in the list.
9502
9503            pkg.applicationInfo.primaryCpuAbi = Build.SUPPORTED_64_BIT_ABIS[0];
9504            pkg.applicationInfo.secondaryCpuAbi = null;
9505        } else if (has32BitLibs && !has64BitLibs) {
9506            // The package has 32 bit libs but not 64 bit libs. Its primary
9507            // ABI should be 32 bit.
9508
9509            pkg.applicationInfo.primaryCpuAbi = Build.SUPPORTED_32_BIT_ABIS[0];
9510            pkg.applicationInfo.secondaryCpuAbi = null;
9511        } else if (has32BitLibs && has64BitLibs) {
9512            // The application has both 64 and 32 bit bundled libraries. We check
9513            // here that the app declares multiArch support, and warn if it doesn't.
9514            //
9515            // We will be lenient here and record both ABIs. The primary will be the
9516            // ABI that's higher on the list, i.e, a device that's configured to prefer
9517            // 64 bit apps will see a 64 bit primary ABI,
9518
9519            if ((pkg.applicationInfo.flags & ApplicationInfo.FLAG_MULTIARCH) == 0) {
9520                Slog.e(TAG, "Package " + pkg + " has multiple bundled libs, but is not multiarch.");
9521            }
9522
9523            if (VMRuntime.is64BitInstructionSet(getPreferredInstructionSet())) {
9524                pkg.applicationInfo.primaryCpuAbi = Build.SUPPORTED_64_BIT_ABIS[0];
9525                pkg.applicationInfo.secondaryCpuAbi = Build.SUPPORTED_32_BIT_ABIS[0];
9526            } else {
9527                pkg.applicationInfo.primaryCpuAbi = Build.SUPPORTED_32_BIT_ABIS[0];
9528                pkg.applicationInfo.secondaryCpuAbi = Build.SUPPORTED_64_BIT_ABIS[0];
9529            }
9530        } else {
9531            pkg.applicationInfo.primaryCpuAbi = null;
9532            pkg.applicationInfo.secondaryCpuAbi = null;
9533        }
9534    }
9535
9536    private void killApplication(String pkgName, int appId, String reason) {
9537        // Request the ActivityManager to kill the process(only for existing packages)
9538        // so that we do not end up in a confused state while the user is still using the older
9539        // version of the application while the new one gets installed.
9540        final long token = Binder.clearCallingIdentity();
9541        try {
9542            IActivityManager am = ActivityManagerNative.getDefault();
9543            if (am != null) {
9544                try {
9545                    am.killApplicationWithAppId(pkgName, appId, reason);
9546                } catch (RemoteException e) {
9547                }
9548            }
9549        } finally {
9550            Binder.restoreCallingIdentity(token);
9551        }
9552    }
9553
9554    private void removePackageLI(PackageParser.Package pkg, boolean chatty) {
9555        // Remove the parent package setting
9556        PackageSetting ps = (PackageSetting) pkg.mExtras;
9557        if (ps != null) {
9558            removePackageLI(ps, chatty);
9559        }
9560        // Remove the child package setting
9561        final int childCount = (pkg.childPackages != null) ? pkg.childPackages.size() : 0;
9562        for (int i = 0; i < childCount; i++) {
9563            PackageParser.Package childPkg = pkg.childPackages.get(i);
9564            ps = (PackageSetting) childPkg.mExtras;
9565            if (ps != null) {
9566                removePackageLI(ps, chatty);
9567            }
9568        }
9569    }
9570
9571    void removePackageLI(PackageSetting ps, boolean chatty) {
9572        if (DEBUG_INSTALL) {
9573            if (chatty)
9574                Log.d(TAG, "Removing package " + ps.name);
9575        }
9576
9577        // writer
9578        synchronized (mPackages) {
9579            mPackages.remove(ps.name);
9580            final PackageParser.Package pkg = ps.pkg;
9581            if (pkg != null) {
9582                cleanPackageDataStructuresLILPw(pkg, chatty);
9583            }
9584        }
9585    }
9586
9587    void removeInstalledPackageLI(PackageParser.Package pkg, boolean chatty) {
9588        if (DEBUG_INSTALL) {
9589            if (chatty)
9590                Log.d(TAG, "Removing package " + pkg.applicationInfo.packageName);
9591        }
9592
9593        // writer
9594        synchronized (mPackages) {
9595            // Remove the parent package
9596            mPackages.remove(pkg.applicationInfo.packageName);
9597            cleanPackageDataStructuresLILPw(pkg, chatty);
9598
9599            // Remove the child packages
9600            final int childCount = (pkg.childPackages != null) ? pkg.childPackages.size() : 0;
9601            for (int i = 0; i < childCount; i++) {
9602                PackageParser.Package childPkg = pkg.childPackages.get(i);
9603                mPackages.remove(childPkg.applicationInfo.packageName);
9604                cleanPackageDataStructuresLILPw(childPkg, chatty);
9605            }
9606        }
9607    }
9608
9609    void cleanPackageDataStructuresLILPw(PackageParser.Package pkg, boolean chatty) {
9610        int N = pkg.providers.size();
9611        StringBuilder r = null;
9612        int i;
9613        for (i=0; i<N; i++) {
9614            PackageParser.Provider p = pkg.providers.get(i);
9615            mProviders.removeProvider(p);
9616            if (p.info.authority == null) {
9617
9618                /* There was another ContentProvider with this authority when
9619                 * this app was installed so this authority is null,
9620                 * Ignore it as we don't have to unregister the provider.
9621                 */
9622                continue;
9623            }
9624            String names[] = p.info.authority.split(";");
9625            for (int j = 0; j < names.length; j++) {
9626                if (mProvidersByAuthority.get(names[j]) == p) {
9627                    mProvidersByAuthority.remove(names[j]);
9628                    if (DEBUG_REMOVE) {
9629                        if (chatty)
9630                            Log.d(TAG, "Unregistered content provider: " + names[j]
9631                                    + ", className = " + p.info.name + ", isSyncable = "
9632                                    + p.info.isSyncable);
9633                    }
9634                }
9635            }
9636            if (DEBUG_REMOVE && chatty) {
9637                if (r == null) {
9638                    r = new StringBuilder(256);
9639                } else {
9640                    r.append(' ');
9641                }
9642                r.append(p.info.name);
9643            }
9644        }
9645        if (r != null) {
9646            if (DEBUG_REMOVE) Log.d(TAG, "  Providers: " + r);
9647        }
9648
9649        N = pkg.services.size();
9650        r = null;
9651        for (i=0; i<N; i++) {
9652            PackageParser.Service s = pkg.services.get(i);
9653            mServices.removeService(s);
9654            if (chatty) {
9655                if (r == null) {
9656                    r = new StringBuilder(256);
9657                } else {
9658                    r.append(' ');
9659                }
9660                r.append(s.info.name);
9661            }
9662        }
9663        if (r != null) {
9664            if (DEBUG_REMOVE) Log.d(TAG, "  Services: " + r);
9665        }
9666
9667        N = pkg.receivers.size();
9668        r = null;
9669        for (i=0; i<N; i++) {
9670            PackageParser.Activity a = pkg.receivers.get(i);
9671            mReceivers.removeActivity(a, "receiver");
9672            if (DEBUG_REMOVE && chatty) {
9673                if (r == null) {
9674                    r = new StringBuilder(256);
9675                } else {
9676                    r.append(' ');
9677                }
9678                r.append(a.info.name);
9679            }
9680        }
9681        if (r != null) {
9682            if (DEBUG_REMOVE) Log.d(TAG, "  Receivers: " + r);
9683        }
9684
9685        N = pkg.activities.size();
9686        r = null;
9687        for (i=0; i<N; i++) {
9688            PackageParser.Activity a = pkg.activities.get(i);
9689            mActivities.removeActivity(a, "activity");
9690            if (DEBUG_REMOVE && chatty) {
9691                if (r == null) {
9692                    r = new StringBuilder(256);
9693                } else {
9694                    r.append(' ');
9695                }
9696                r.append(a.info.name);
9697            }
9698        }
9699        if (r != null) {
9700            if (DEBUG_REMOVE) Log.d(TAG, "  Activities: " + r);
9701        }
9702
9703        N = pkg.permissions.size();
9704        r = null;
9705        for (i=0; i<N; i++) {
9706            PackageParser.Permission p = pkg.permissions.get(i);
9707            BasePermission bp = mSettings.mPermissions.get(p.info.name);
9708            if (bp == null) {
9709                bp = mSettings.mPermissionTrees.get(p.info.name);
9710            }
9711            if (bp != null && bp.perm == p) {
9712                bp.perm = null;
9713                if (DEBUG_REMOVE && chatty) {
9714                    if (r == null) {
9715                        r = new StringBuilder(256);
9716                    } else {
9717                        r.append(' ');
9718                    }
9719                    r.append(p.info.name);
9720                }
9721            }
9722            if ((p.info.protectionLevel&PermissionInfo.PROTECTION_FLAG_APPOP) != 0) {
9723                ArraySet<String> appOpPkgs = mAppOpPermissionPackages.get(p.info.name);
9724                if (appOpPkgs != null) {
9725                    appOpPkgs.remove(pkg.packageName);
9726                }
9727            }
9728        }
9729        if (r != null) {
9730            if (DEBUG_REMOVE) Log.d(TAG, "  Permissions: " + r);
9731        }
9732
9733        N = pkg.requestedPermissions.size();
9734        r = null;
9735        for (i=0; i<N; i++) {
9736            String perm = pkg.requestedPermissions.get(i);
9737            BasePermission bp = mSettings.mPermissions.get(perm);
9738            if (bp != null && (bp.protectionLevel&PermissionInfo.PROTECTION_FLAG_APPOP) != 0) {
9739                ArraySet<String> appOpPkgs = mAppOpPermissionPackages.get(perm);
9740                if (appOpPkgs != null) {
9741                    appOpPkgs.remove(pkg.packageName);
9742                    if (appOpPkgs.isEmpty()) {
9743                        mAppOpPermissionPackages.remove(perm);
9744                    }
9745                }
9746            }
9747        }
9748        if (r != null) {
9749            if (DEBUG_REMOVE) Log.d(TAG, "  Permissions: " + r);
9750        }
9751
9752        N = pkg.instrumentation.size();
9753        r = null;
9754        for (i=0; i<N; i++) {
9755            PackageParser.Instrumentation a = pkg.instrumentation.get(i);
9756            mInstrumentation.remove(a.getComponentName());
9757            if (DEBUG_REMOVE && chatty) {
9758                if (r == null) {
9759                    r = new StringBuilder(256);
9760                } else {
9761                    r.append(' ');
9762                }
9763                r.append(a.info.name);
9764            }
9765        }
9766        if (r != null) {
9767            if (DEBUG_REMOVE) Log.d(TAG, "  Instrumentation: " + r);
9768        }
9769
9770        r = null;
9771        if ((pkg.applicationInfo.flags&ApplicationInfo.FLAG_SYSTEM) != 0) {
9772            // Only system apps can hold shared libraries.
9773            if (pkg.libraryNames != null) {
9774                for (i=0; i<pkg.libraryNames.size(); i++) {
9775                    String name = pkg.libraryNames.get(i);
9776                    SharedLibraryEntry cur = mSharedLibraries.get(name);
9777                    if (cur != null && cur.apk != null && cur.apk.equals(pkg.packageName)) {
9778                        mSharedLibraries.remove(name);
9779                        if (DEBUG_REMOVE && chatty) {
9780                            if (r == null) {
9781                                r = new StringBuilder(256);
9782                            } else {
9783                                r.append(' ');
9784                            }
9785                            r.append(name);
9786                        }
9787                    }
9788                }
9789            }
9790        }
9791        if (r != null) {
9792            if (DEBUG_REMOVE) Log.d(TAG, "  Libraries: " + r);
9793        }
9794    }
9795
9796    private static boolean hasPermission(PackageParser.Package pkgInfo, String perm) {
9797        for (int i=pkgInfo.permissions.size()-1; i>=0; i--) {
9798            if (pkgInfo.permissions.get(i).info.name.equals(perm)) {
9799                return true;
9800            }
9801        }
9802        return false;
9803    }
9804
9805    static final int UPDATE_PERMISSIONS_ALL = 1<<0;
9806    static final int UPDATE_PERMISSIONS_REPLACE_PKG = 1<<1;
9807    static final int UPDATE_PERMISSIONS_REPLACE_ALL = 1<<2;
9808
9809    private void updatePermissionsLPw(PackageParser.Package pkg, int flags) {
9810        // Update the parent permissions
9811        updatePermissionsLPw(pkg.packageName, pkg, flags);
9812        // Update the child permissions
9813        final int childCount = (pkg.childPackages != null) ? pkg.childPackages.size() : 0;
9814        for (int i = 0; i < childCount; i++) {
9815            PackageParser.Package childPkg = pkg.childPackages.get(i);
9816            updatePermissionsLPw(childPkg.packageName, childPkg, flags);
9817        }
9818    }
9819
9820    private void updatePermissionsLPw(String changingPkg, PackageParser.Package pkgInfo,
9821            int flags) {
9822        final String volumeUuid = (pkgInfo != null) ? getVolumeUuidForPackage(pkgInfo) : null;
9823        updatePermissionsLPw(changingPkg, pkgInfo, volumeUuid, flags);
9824    }
9825
9826    private void updatePermissionsLPw(String changingPkg,
9827            PackageParser.Package pkgInfo, String replaceVolumeUuid, int flags) {
9828        // Make sure there are no dangling permission trees.
9829        Iterator<BasePermission> it = mSettings.mPermissionTrees.values().iterator();
9830        while (it.hasNext()) {
9831            final BasePermission bp = it.next();
9832            if (bp.packageSetting == null) {
9833                // We may not yet have parsed the package, so just see if
9834                // we still know about its settings.
9835                bp.packageSetting = mSettings.mPackages.get(bp.sourcePackage);
9836            }
9837            if (bp.packageSetting == null) {
9838                Slog.w(TAG, "Removing dangling permission tree: " + bp.name
9839                        + " from package " + bp.sourcePackage);
9840                it.remove();
9841            } else if (changingPkg != null && changingPkg.equals(bp.sourcePackage)) {
9842                if (pkgInfo == null || !hasPermission(pkgInfo, bp.name)) {
9843                    Slog.i(TAG, "Removing old permission tree: " + bp.name
9844                            + " from package " + bp.sourcePackage);
9845                    flags |= UPDATE_PERMISSIONS_ALL;
9846                    it.remove();
9847                }
9848            }
9849        }
9850
9851        // Make sure all dynamic permissions have been assigned to a package,
9852        // and make sure there are no dangling permissions.
9853        it = mSettings.mPermissions.values().iterator();
9854        while (it.hasNext()) {
9855            final BasePermission bp = it.next();
9856            if (bp.type == BasePermission.TYPE_DYNAMIC) {
9857                if (DEBUG_SETTINGS) Log.v(TAG, "Dynamic permission: name="
9858                        + bp.name + " pkg=" + bp.sourcePackage
9859                        + " info=" + bp.pendingInfo);
9860                if (bp.packageSetting == null && bp.pendingInfo != null) {
9861                    final BasePermission tree = findPermissionTreeLP(bp.name);
9862                    if (tree != null && tree.perm != null) {
9863                        bp.packageSetting = tree.packageSetting;
9864                        bp.perm = new PackageParser.Permission(tree.perm.owner,
9865                                new PermissionInfo(bp.pendingInfo));
9866                        bp.perm.info.packageName = tree.perm.info.packageName;
9867                        bp.perm.info.name = bp.name;
9868                        bp.uid = tree.uid;
9869                    }
9870                }
9871            }
9872            if (bp.packageSetting == null) {
9873                // We may not yet have parsed the package, so just see if
9874                // we still know about its settings.
9875                bp.packageSetting = mSettings.mPackages.get(bp.sourcePackage);
9876            }
9877            if (bp.packageSetting == null) {
9878                Slog.w(TAG, "Removing dangling permission: " + bp.name
9879                        + " from package " + bp.sourcePackage);
9880                it.remove();
9881            } else if (changingPkg != null && changingPkg.equals(bp.sourcePackage)) {
9882                if (pkgInfo == null || !hasPermission(pkgInfo, bp.name)) {
9883                    Slog.i(TAG, "Removing old permission: " + bp.name
9884                            + " from package " + bp.sourcePackage);
9885                    flags |= UPDATE_PERMISSIONS_ALL;
9886                    it.remove();
9887                }
9888            }
9889        }
9890
9891        // Now update the permissions for all packages, in particular
9892        // replace the granted permissions of the system packages.
9893        if ((flags&UPDATE_PERMISSIONS_ALL) != 0) {
9894            for (PackageParser.Package pkg : mPackages.values()) {
9895                if (pkg != pkgInfo) {
9896                    // Only replace for packages on requested volume
9897                    final String volumeUuid = getVolumeUuidForPackage(pkg);
9898                    final boolean replace = ((flags & UPDATE_PERMISSIONS_REPLACE_ALL) != 0)
9899                            && Objects.equals(replaceVolumeUuid, volumeUuid);
9900                    grantPermissionsLPw(pkg, replace, changingPkg);
9901                }
9902            }
9903        }
9904
9905        if (pkgInfo != null) {
9906            // Only replace for packages on requested volume
9907            final String volumeUuid = getVolumeUuidForPackage(pkgInfo);
9908            final boolean replace = ((flags & UPDATE_PERMISSIONS_REPLACE_PKG) != 0)
9909                    && Objects.equals(replaceVolumeUuid, volumeUuid);
9910            grantPermissionsLPw(pkgInfo, replace, changingPkg);
9911        }
9912    }
9913
9914    private void grantPermissionsLPw(PackageParser.Package pkg, boolean replace,
9915            String packageOfInterest) {
9916        // IMPORTANT: There are two types of permissions: install and runtime.
9917        // Install time permissions are granted when the app is installed to
9918        // all device users and users added in the future. Runtime permissions
9919        // are granted at runtime explicitly to specific users. Normal and signature
9920        // protected permissions are install time permissions. Dangerous permissions
9921        // are install permissions if the app's target SDK is Lollipop MR1 or older,
9922        // otherwise they are runtime permissions. This function does not manage
9923        // runtime permissions except for the case an app targeting Lollipop MR1
9924        // being upgraded to target a newer SDK, in which case dangerous permissions
9925        // are transformed from install time to runtime ones.
9926
9927        final PackageSetting ps = (PackageSetting) pkg.mExtras;
9928        if (ps == null) {
9929            return;
9930        }
9931
9932        Trace.traceBegin(TRACE_TAG_PACKAGE_MANAGER, "grantPermissions");
9933
9934        PermissionsState permissionsState = ps.getPermissionsState();
9935        PermissionsState origPermissions = permissionsState;
9936
9937        final int[] currentUserIds = UserManagerService.getInstance().getUserIds();
9938
9939        boolean runtimePermissionsRevoked = false;
9940        int[] changedRuntimePermissionUserIds = EMPTY_INT_ARRAY;
9941
9942        boolean changedInstallPermission = false;
9943
9944        if (replace) {
9945            ps.installPermissionsFixed = false;
9946            if (!ps.isSharedUser()) {
9947                origPermissions = new PermissionsState(permissionsState);
9948                permissionsState.reset();
9949            } else {
9950                // We need to know only about runtime permission changes since the
9951                // calling code always writes the install permissions state but
9952                // the runtime ones are written only if changed. The only cases of
9953                // changed runtime permissions here are promotion of an install to
9954                // runtime and revocation of a runtime from a shared user.
9955                changedRuntimePermissionUserIds = revokeUnusedSharedUserPermissionsLPw(
9956                        ps.sharedUser, UserManagerService.getInstance().getUserIds());
9957                if (!ArrayUtils.isEmpty(changedRuntimePermissionUserIds)) {
9958                    runtimePermissionsRevoked = true;
9959                }
9960            }
9961        }
9962
9963        permissionsState.setGlobalGids(mGlobalGids);
9964
9965        final int N = pkg.requestedPermissions.size();
9966        for (int i=0; i<N; i++) {
9967            final String name = pkg.requestedPermissions.get(i);
9968            final BasePermission bp = mSettings.mPermissions.get(name);
9969
9970            if (DEBUG_INSTALL) {
9971                Log.i(TAG, "Package " + pkg.packageName + " checking " + name + ": " + bp);
9972            }
9973
9974            if (bp == null || bp.packageSetting == null) {
9975                if (packageOfInterest == null || packageOfInterest.equals(pkg.packageName)) {
9976                    Slog.w(TAG, "Unknown permission " + name
9977                            + " in package " + pkg.packageName);
9978                }
9979                continue;
9980            }
9981
9982            final String perm = bp.name;
9983            boolean allowedSig = false;
9984            int grant = GRANT_DENIED;
9985
9986            // Keep track of app op permissions.
9987            if ((bp.protectionLevel & PermissionInfo.PROTECTION_FLAG_APPOP) != 0) {
9988                ArraySet<String> pkgs = mAppOpPermissionPackages.get(bp.name);
9989                if (pkgs == null) {
9990                    pkgs = new ArraySet<>();
9991                    mAppOpPermissionPackages.put(bp.name, pkgs);
9992                }
9993                pkgs.add(pkg.packageName);
9994            }
9995
9996            final int level = bp.protectionLevel & PermissionInfo.PROTECTION_MASK_BASE;
9997            final boolean appSupportsRuntimePermissions = pkg.applicationInfo.targetSdkVersion
9998                    >= Build.VERSION_CODES.M;
9999            switch (level) {
10000                case PermissionInfo.PROTECTION_NORMAL: {
10001                    // For all apps normal permissions are install time ones.
10002                    grant = GRANT_INSTALL;
10003                } break;
10004
10005                case PermissionInfo.PROTECTION_DANGEROUS: {
10006                    // If a permission review is required for legacy apps we represent
10007                    // their permissions as always granted runtime ones since we need
10008                    // to keep the review required permission flag per user while an
10009                    // install permission's state is shared across all users.
10010                    if (!appSupportsRuntimePermissions && !Build.PERMISSIONS_REVIEW_REQUIRED) {
10011                        // For legacy apps dangerous permissions are install time ones.
10012                        grant = GRANT_INSTALL;
10013                    } else if (origPermissions.hasInstallPermission(bp.name)) {
10014                        // For legacy apps that became modern, install becomes runtime.
10015                        grant = GRANT_UPGRADE;
10016                    } else if (mPromoteSystemApps
10017                            && isSystemApp(ps)
10018                            && mExistingSystemPackages.contains(ps.name)) {
10019                        // For legacy system apps, install becomes runtime.
10020                        // We cannot check hasInstallPermission() for system apps since those
10021                        // permissions were granted implicitly and not persisted pre-M.
10022                        grant = GRANT_UPGRADE;
10023                    } else {
10024                        // For modern apps keep runtime permissions unchanged.
10025                        grant = GRANT_RUNTIME;
10026                    }
10027                } break;
10028
10029                case PermissionInfo.PROTECTION_SIGNATURE: {
10030                    // For all apps signature permissions are install time ones.
10031                    allowedSig = grantSignaturePermission(perm, pkg, bp, origPermissions);
10032                    if (allowedSig) {
10033                        grant = GRANT_INSTALL;
10034                    }
10035                } break;
10036            }
10037
10038            if (DEBUG_INSTALL) {
10039                Log.i(TAG, "Package " + pkg.packageName + " granting " + perm);
10040            }
10041
10042            if (grant != GRANT_DENIED) {
10043                if (!isSystemApp(ps) && ps.installPermissionsFixed) {
10044                    // If this is an existing, non-system package, then
10045                    // we can't add any new permissions to it.
10046                    if (!allowedSig && !origPermissions.hasInstallPermission(perm)) {
10047                        // Except...  if this is a permission that was added
10048                        // to the platform (note: need to only do this when
10049                        // updating the platform).
10050                        if (!isNewPlatformPermissionForPackage(perm, pkg)) {
10051                            grant = GRANT_DENIED;
10052                        }
10053                    }
10054                }
10055
10056                switch (grant) {
10057                    case GRANT_INSTALL: {
10058                        // Revoke this as runtime permission to handle the case of
10059                        // a runtime permission being downgraded to an install one.
10060                        // Also in permission review mode we keep dangerous permissions
10061                        // for legacy apps
10062                        for (int userId : UserManagerService.getInstance().getUserIds()) {
10063                            if (origPermissions.getRuntimePermissionState(
10064                                    bp.name, userId) != null) {
10065                                // Revoke the runtime permission and clear the flags.
10066                                origPermissions.revokeRuntimePermission(bp, userId);
10067                                origPermissions.updatePermissionFlags(bp, userId,
10068                                      PackageManager.MASK_PERMISSION_FLAGS, 0);
10069                                // If we revoked a permission permission, we have to write.
10070                                changedRuntimePermissionUserIds = ArrayUtils.appendInt(
10071                                        changedRuntimePermissionUserIds, userId);
10072                            }
10073                        }
10074                        // Grant an install permission.
10075                        if (permissionsState.grantInstallPermission(bp) !=
10076                                PermissionsState.PERMISSION_OPERATION_FAILURE) {
10077                            changedInstallPermission = true;
10078                        }
10079                    } break;
10080
10081                    case GRANT_RUNTIME: {
10082                        // Grant previously granted runtime permissions.
10083                        for (int userId : UserManagerService.getInstance().getUserIds()) {
10084                            PermissionState permissionState = origPermissions
10085                                    .getRuntimePermissionState(bp.name, userId);
10086                            int flags = permissionState != null
10087                                    ? permissionState.getFlags() : 0;
10088                            if (origPermissions.hasRuntimePermission(bp.name, userId)) {
10089                                if (permissionsState.grantRuntimePermission(bp, userId) ==
10090                                        PermissionsState.PERMISSION_OPERATION_FAILURE) {
10091                                    // If we cannot put the permission as it was, we have to write.
10092                                    changedRuntimePermissionUserIds = ArrayUtils.appendInt(
10093                                            changedRuntimePermissionUserIds, userId);
10094                                }
10095                                // If the app supports runtime permissions no need for a review.
10096                                if (Build.PERMISSIONS_REVIEW_REQUIRED
10097                                        && appSupportsRuntimePermissions
10098                                        && (flags & PackageManager
10099                                                .FLAG_PERMISSION_REVIEW_REQUIRED) != 0) {
10100                                    flags &= ~PackageManager.FLAG_PERMISSION_REVIEW_REQUIRED;
10101                                    // Since we changed the flags, we have to write.
10102                                    changedRuntimePermissionUserIds = ArrayUtils.appendInt(
10103                                            changedRuntimePermissionUserIds, userId);
10104                                }
10105                            } else if (Build.PERMISSIONS_REVIEW_REQUIRED
10106                                    && !appSupportsRuntimePermissions) {
10107                                // For legacy apps that need a permission review, every new
10108                                // runtime permission is granted but it is pending a review.
10109                                // We also need to review only platform defined runtime
10110                                // permissions as these are the only ones the platform knows
10111                                // how to disable the API to simulate revocation as legacy
10112                                // apps don't expect to run with revoked permissions.
10113                                if (PLATFORM_PACKAGE_NAME.equals(bp.sourcePackage)) {
10114                                    if ((flags & FLAG_PERMISSION_REVIEW_REQUIRED) == 0) {
10115                                        flags |= FLAG_PERMISSION_REVIEW_REQUIRED;
10116                                        // We changed the flags, hence have to write.
10117                                        changedRuntimePermissionUserIds = ArrayUtils.appendInt(
10118                                                changedRuntimePermissionUserIds, userId);
10119                                    }
10120                                }
10121                                if (permissionsState.grantRuntimePermission(bp, userId)
10122                                        != PermissionsState.PERMISSION_OPERATION_FAILURE) {
10123                                    // We changed the permission, hence have to write.
10124                                    changedRuntimePermissionUserIds = ArrayUtils.appendInt(
10125                                            changedRuntimePermissionUserIds, userId);
10126                                }
10127                            }
10128                            // Propagate the permission flags.
10129                            permissionsState.updatePermissionFlags(bp, userId, flags, flags);
10130                        }
10131                    } break;
10132
10133                    case GRANT_UPGRADE: {
10134                        // Grant runtime permissions for a previously held install permission.
10135                        PermissionState permissionState = origPermissions
10136                                .getInstallPermissionState(bp.name);
10137                        final int flags = permissionState != null ? permissionState.getFlags() : 0;
10138
10139                        if (origPermissions.revokeInstallPermission(bp)
10140                                != PermissionsState.PERMISSION_OPERATION_FAILURE) {
10141                            // We will be transferring the permission flags, so clear them.
10142                            origPermissions.updatePermissionFlags(bp, UserHandle.USER_ALL,
10143                                    PackageManager.MASK_PERMISSION_FLAGS, 0);
10144                            changedInstallPermission = true;
10145                        }
10146
10147                        // If the permission is not to be promoted to runtime we ignore it and
10148                        // also its other flags as they are not applicable to install permissions.
10149                        if ((flags & PackageManager.FLAG_PERMISSION_REVOKE_ON_UPGRADE) == 0) {
10150                            for (int userId : currentUserIds) {
10151                                if (permissionsState.grantRuntimePermission(bp, userId) !=
10152                                        PermissionsState.PERMISSION_OPERATION_FAILURE) {
10153                                    // Transfer the permission flags.
10154                                    permissionsState.updatePermissionFlags(bp, userId,
10155                                            flags, flags);
10156                                    // If we granted the permission, we have to write.
10157                                    changedRuntimePermissionUserIds = ArrayUtils.appendInt(
10158                                            changedRuntimePermissionUserIds, userId);
10159                                }
10160                            }
10161                        }
10162                    } break;
10163
10164                    default: {
10165                        if (packageOfInterest == null
10166                                || packageOfInterest.equals(pkg.packageName)) {
10167                            Slog.w(TAG, "Not granting permission " + perm
10168                                    + " to package " + pkg.packageName
10169                                    + " because it was previously installed without");
10170                        }
10171                    } break;
10172                }
10173            } else {
10174                if (permissionsState.revokeInstallPermission(bp) !=
10175                        PermissionsState.PERMISSION_OPERATION_FAILURE) {
10176                    // Also drop the permission flags.
10177                    permissionsState.updatePermissionFlags(bp, UserHandle.USER_ALL,
10178                            PackageManager.MASK_PERMISSION_FLAGS, 0);
10179                    changedInstallPermission = true;
10180                    Slog.i(TAG, "Un-granting permission " + perm
10181                            + " from package " + pkg.packageName
10182                            + " (protectionLevel=" + bp.protectionLevel
10183                            + " flags=0x" + Integer.toHexString(pkg.applicationInfo.flags)
10184                            + ")");
10185                } else if ((bp.protectionLevel&PermissionInfo.PROTECTION_FLAG_APPOP) == 0) {
10186                    // Don't print warning for app op permissions, since it is fine for them
10187                    // not to be granted, there is a UI for the user to decide.
10188                    if (packageOfInterest == null || packageOfInterest.equals(pkg.packageName)) {
10189                        Slog.w(TAG, "Not granting permission " + perm
10190                                + " to package " + pkg.packageName
10191                                + " (protectionLevel=" + bp.protectionLevel
10192                                + " flags=0x" + Integer.toHexString(pkg.applicationInfo.flags)
10193                                + ")");
10194                    }
10195                }
10196            }
10197        }
10198
10199        if ((changedInstallPermission || replace) && !ps.installPermissionsFixed &&
10200                !isSystemApp(ps) || isUpdatedSystemApp(ps)){
10201            // This is the first that we have heard about this package, so the
10202            // permissions we have now selected are fixed until explicitly
10203            // changed.
10204            ps.installPermissionsFixed = true;
10205        }
10206
10207        // Persist the runtime permissions state for users with changes. If permissions
10208        // were revoked because no app in the shared user declares them we have to
10209        // write synchronously to avoid losing runtime permissions state.
10210        for (int userId : changedRuntimePermissionUserIds) {
10211            mSettings.writeRuntimePermissionsForUserLPr(userId, runtimePermissionsRevoked);
10212        }
10213
10214        Trace.traceEnd(TRACE_TAG_PACKAGE_MANAGER);
10215    }
10216
10217    private boolean isNewPlatformPermissionForPackage(String perm, PackageParser.Package pkg) {
10218        boolean allowed = false;
10219        final int NP = PackageParser.NEW_PERMISSIONS.length;
10220        for (int ip=0; ip<NP; ip++) {
10221            final PackageParser.NewPermissionInfo npi
10222                    = PackageParser.NEW_PERMISSIONS[ip];
10223            if (npi.name.equals(perm)
10224                    && pkg.applicationInfo.targetSdkVersion < npi.sdkVersion) {
10225                allowed = true;
10226                Log.i(TAG, "Auto-granting " + perm + " to old pkg "
10227                        + pkg.packageName);
10228                break;
10229            }
10230        }
10231        return allowed;
10232    }
10233
10234    private boolean grantSignaturePermission(String perm, PackageParser.Package pkg,
10235            BasePermission bp, PermissionsState origPermissions) {
10236        boolean allowed;
10237        allowed = (compareSignatures(
10238                bp.packageSetting.signatures.mSignatures, pkg.mSignatures)
10239                        == PackageManager.SIGNATURE_MATCH)
10240                || (compareSignatures(mPlatformPackage.mSignatures, pkg.mSignatures)
10241                        == PackageManager.SIGNATURE_MATCH);
10242        if (!allowed && (bp.protectionLevel
10243                & PermissionInfo.PROTECTION_FLAG_PRIVILEGED) != 0) {
10244            if (isSystemApp(pkg)) {
10245                // For updated system applications, a system permission
10246                // is granted only if it had been defined by the original application.
10247                if (pkg.isUpdatedSystemApp()) {
10248                    final PackageSetting sysPs = mSettings
10249                            .getDisabledSystemPkgLPr(pkg.packageName);
10250                    if (sysPs != null && sysPs.getPermissionsState().hasInstallPermission(perm)) {
10251                        // If the original was granted this permission, we take
10252                        // that grant decision as read and propagate it to the
10253                        // update.
10254                        if (sysPs.isPrivileged()) {
10255                            allowed = true;
10256                        }
10257                    } else {
10258                        // The system apk may have been updated with an older
10259                        // version of the one on the data partition, but which
10260                        // granted a new system permission that it didn't have
10261                        // before.  In this case we do want to allow the app to
10262                        // now get the new permission if the ancestral apk is
10263                        // privileged to get it.
10264                        if (sysPs != null && sysPs.pkg != null && sysPs.isPrivileged()) {
10265                            for (int j = 0; j < sysPs.pkg.requestedPermissions.size(); j++) {
10266                                if (perm.equals(sysPs.pkg.requestedPermissions.get(j))) {
10267                                    allowed = true;
10268                                    break;
10269                                }
10270                            }
10271                        }
10272                        // Also if a privileged parent package on the system image or any of
10273                        // its children requested a privileged permission, the updated child
10274                        // packages can also get the permission.
10275                        if (pkg.parentPackage != null) {
10276                            final PackageSetting disabledSysParentPs = mSettings
10277                                    .getDisabledSystemPkgLPr(pkg.parentPackage.packageName);
10278                            if (disabledSysParentPs != null && disabledSysParentPs.pkg != null
10279                                    && disabledSysParentPs.isPrivileged()) {
10280                                if (isPackageRequestingPermission(disabledSysParentPs.pkg, perm)) {
10281                                    allowed = true;
10282                                } else if (disabledSysParentPs.pkg.childPackages != null) {
10283                                    final int count = disabledSysParentPs.pkg.childPackages.size();
10284                                    for (int i = 0; i < count; i++) {
10285                                        PackageParser.Package disabledSysChildPkg =
10286                                                disabledSysParentPs.pkg.childPackages.get(i);
10287                                        if (isPackageRequestingPermission(disabledSysChildPkg,
10288                                                perm)) {
10289                                            allowed = true;
10290                                            break;
10291                                        }
10292                                    }
10293                                }
10294                            }
10295                        }
10296                    }
10297                } else {
10298                    allowed = isPrivilegedApp(pkg);
10299                }
10300            }
10301        }
10302        if (!allowed) {
10303            if (!allowed && (bp.protectionLevel
10304                    & PermissionInfo.PROTECTION_FLAG_PRE23) != 0
10305                    && pkg.applicationInfo.targetSdkVersion < Build.VERSION_CODES.M) {
10306                // If this was a previously normal/dangerous permission that got moved
10307                // to a system permission as part of the runtime permission redesign, then
10308                // we still want to blindly grant it to old apps.
10309                allowed = true;
10310            }
10311            if (!allowed && (bp.protectionLevel & PermissionInfo.PROTECTION_FLAG_INSTALLER) != 0
10312                    && pkg.packageName.equals(mRequiredInstallerPackage)) {
10313                // If this permission is to be granted to the system installer and
10314                // this app is an installer, then it gets the permission.
10315                allowed = true;
10316            }
10317            if (!allowed && (bp.protectionLevel & PermissionInfo.PROTECTION_FLAG_VERIFIER) != 0
10318                    && pkg.packageName.equals(mRequiredVerifierPackage)) {
10319                // If this permission is to be granted to the system verifier and
10320                // this app is a verifier, then it gets the permission.
10321                allowed = true;
10322            }
10323            if (!allowed && (bp.protectionLevel
10324                    & PermissionInfo.PROTECTION_FLAG_PREINSTALLED) != 0
10325                    && isSystemApp(pkg)) {
10326                // Any pre-installed system app is allowed to get this permission.
10327                allowed = true;
10328            }
10329            if (!allowed && (bp.protectionLevel
10330                    & PermissionInfo.PROTECTION_FLAG_DEVELOPMENT) != 0) {
10331                // For development permissions, a development permission
10332                // is granted only if it was already granted.
10333                allowed = origPermissions.hasInstallPermission(perm);
10334            }
10335            if (!allowed && (bp.protectionLevel & PermissionInfo.PROTECTION_FLAG_SETUP) != 0
10336                    && pkg.packageName.equals(mSetupWizardPackage)) {
10337                // If this permission is to be granted to the system setup wizard and
10338                // this app is a setup wizard, then it gets the permission.
10339                allowed = true;
10340            }
10341        }
10342        return allowed;
10343    }
10344
10345    private boolean isPackageRequestingPermission(PackageParser.Package pkg, String permission) {
10346        final int permCount = pkg.requestedPermissions.size();
10347        for (int j = 0; j < permCount; j++) {
10348            String requestedPermission = pkg.requestedPermissions.get(j);
10349            if (permission.equals(requestedPermission)) {
10350                return true;
10351            }
10352        }
10353        return false;
10354    }
10355
10356    final class ActivityIntentResolver
10357            extends IntentResolver<PackageParser.ActivityIntentInfo, ResolveInfo> {
10358        public List<ResolveInfo> queryIntent(Intent intent, String resolvedType,
10359                boolean defaultOnly, int userId) {
10360            if (!sUserManager.exists(userId)) return null;
10361            mFlags = defaultOnly ? PackageManager.MATCH_DEFAULT_ONLY : 0;
10362            return super.queryIntent(intent, resolvedType, defaultOnly, userId);
10363        }
10364
10365        public List<ResolveInfo> queryIntent(Intent intent, String resolvedType, int flags,
10366                int userId) {
10367            if (!sUserManager.exists(userId)) return null;
10368            mFlags = flags;
10369            return super.queryIntent(intent, resolvedType,
10370                    (flags & PackageManager.MATCH_DEFAULT_ONLY) != 0, userId);
10371        }
10372
10373        public List<ResolveInfo> queryIntentForPackage(Intent intent, String resolvedType,
10374                int flags, ArrayList<PackageParser.Activity> packageActivities, int userId) {
10375            if (!sUserManager.exists(userId)) return null;
10376            if (packageActivities == null) {
10377                return null;
10378            }
10379            mFlags = flags;
10380            final boolean defaultOnly = (flags&PackageManager.MATCH_DEFAULT_ONLY) != 0;
10381            final int N = packageActivities.size();
10382            ArrayList<PackageParser.ActivityIntentInfo[]> listCut =
10383                new ArrayList<PackageParser.ActivityIntentInfo[]>(N);
10384
10385            ArrayList<PackageParser.ActivityIntentInfo> intentFilters;
10386            for (int i = 0; i < N; ++i) {
10387                intentFilters = packageActivities.get(i).intents;
10388                if (intentFilters != null && intentFilters.size() > 0) {
10389                    PackageParser.ActivityIntentInfo[] array =
10390                            new PackageParser.ActivityIntentInfo[intentFilters.size()];
10391                    intentFilters.toArray(array);
10392                    listCut.add(array);
10393                }
10394            }
10395            return super.queryIntentFromList(intent, resolvedType, defaultOnly, listCut, userId);
10396        }
10397
10398        /**
10399         * Finds a privileged activity that matches the specified activity names.
10400         */
10401        private PackageParser.Activity findMatchingActivity(
10402                List<PackageParser.Activity> activityList, ActivityInfo activityInfo) {
10403            for (PackageParser.Activity sysActivity : activityList) {
10404                if (sysActivity.info.name.equals(activityInfo.name)) {
10405                    return sysActivity;
10406                }
10407                if (sysActivity.info.name.equals(activityInfo.targetActivity)) {
10408                    return sysActivity;
10409                }
10410                if (sysActivity.info.targetActivity != null) {
10411                    if (sysActivity.info.targetActivity.equals(activityInfo.name)) {
10412                        return sysActivity;
10413                    }
10414                    if (sysActivity.info.targetActivity.equals(activityInfo.targetActivity)) {
10415                        return sysActivity;
10416                    }
10417                }
10418            }
10419            return null;
10420        }
10421
10422        public class IterGenerator<E> {
10423            public Iterator<E> generate(ActivityIntentInfo info) {
10424                return null;
10425            }
10426        }
10427
10428        public class ActionIterGenerator extends IterGenerator<String> {
10429            @Override
10430            public Iterator<String> generate(ActivityIntentInfo info) {
10431                return info.actionsIterator();
10432            }
10433        }
10434
10435        public class CategoriesIterGenerator extends IterGenerator<String> {
10436            @Override
10437            public Iterator<String> generate(ActivityIntentInfo info) {
10438                return info.categoriesIterator();
10439            }
10440        }
10441
10442        public class SchemesIterGenerator extends IterGenerator<String> {
10443            @Override
10444            public Iterator<String> generate(ActivityIntentInfo info) {
10445                return info.schemesIterator();
10446            }
10447        }
10448
10449        public class AuthoritiesIterGenerator extends IterGenerator<IntentFilter.AuthorityEntry> {
10450            @Override
10451            public Iterator<IntentFilter.AuthorityEntry> generate(ActivityIntentInfo info) {
10452                return info.authoritiesIterator();
10453            }
10454        }
10455
10456        /**
10457         * <em>WARNING</em> for performance reasons, the passed in intentList WILL BE
10458         * MODIFIED. Do not pass in a list that should not be changed.
10459         */
10460        private <T> void getIntentListSubset(List<ActivityIntentInfo> intentList,
10461                IterGenerator<T> generator, Iterator<T> searchIterator) {
10462            // loop through the set of actions; every one must be found in the intent filter
10463            while (searchIterator.hasNext()) {
10464                // we must have at least one filter in the list to consider a match
10465                if (intentList.size() == 0) {
10466                    break;
10467                }
10468
10469                final T searchAction = searchIterator.next();
10470
10471                // loop through the set of intent filters
10472                final Iterator<ActivityIntentInfo> intentIter = intentList.iterator();
10473                while (intentIter.hasNext()) {
10474                    final ActivityIntentInfo intentInfo = intentIter.next();
10475                    boolean selectionFound = false;
10476
10477                    // loop through the intent filter's selection criteria; at least one
10478                    // of them must match the searched criteria
10479                    final Iterator<T> intentSelectionIter = generator.generate(intentInfo);
10480                    while (intentSelectionIter != null && intentSelectionIter.hasNext()) {
10481                        final T intentSelection = intentSelectionIter.next();
10482                        if (intentSelection != null && intentSelection.equals(searchAction)) {
10483                            selectionFound = true;
10484                            break;
10485                        }
10486                    }
10487
10488                    // the selection criteria wasn't found in this filter's set; this filter
10489                    // is not a potential match
10490                    if (!selectionFound) {
10491                        intentIter.remove();
10492                    }
10493                }
10494            }
10495        }
10496
10497        private boolean isProtectedAction(ActivityIntentInfo filter) {
10498            final Iterator<String> actionsIter = filter.actionsIterator();
10499            while (actionsIter != null && actionsIter.hasNext()) {
10500                final String filterAction = actionsIter.next();
10501                if (PROTECTED_ACTIONS.contains(filterAction)) {
10502                    return true;
10503                }
10504            }
10505            return false;
10506        }
10507
10508        /**
10509         * Adjusts the priority of the given intent filter according to policy.
10510         * <p>
10511         * <ul>
10512         * <li>The priority for non privileged applications is capped to '0'</li>
10513         * <li>The priority for protected actions on privileged applications is capped to '0'</li>
10514         * <li>The priority for unbundled updates to privileged applications is capped to the
10515         *      priority defined on the system partition</li>
10516         * </ul>
10517         * <p>
10518         * <em>NOTE:</em> There is one exception. For security reasons, the setup wizard is
10519         * allowed to obtain any priority on any action.
10520         */
10521        private void adjustPriority(
10522                List<PackageParser.Activity> systemActivities, ActivityIntentInfo intent) {
10523            // nothing to do; priority is fine as-is
10524            if (intent.getPriority() <= 0) {
10525                return;
10526            }
10527
10528            final ActivityInfo activityInfo = intent.activity.info;
10529            final ApplicationInfo applicationInfo = activityInfo.applicationInfo;
10530
10531            final boolean privilegedApp =
10532                    ((applicationInfo.privateFlags & ApplicationInfo.PRIVATE_FLAG_PRIVILEGED) != 0);
10533            if (!privilegedApp) {
10534                // non-privileged applications can never define a priority >0
10535                Slog.w(TAG, "Non-privileged app; cap priority to 0;"
10536                        + " package: " + applicationInfo.packageName
10537                        + " activity: " + intent.activity.className
10538                        + " origPrio: " + intent.getPriority());
10539                intent.setPriority(0);
10540                return;
10541            }
10542
10543            if (systemActivities == null) {
10544                // the system package is not disabled; we're parsing the system partition
10545                if (isProtectedAction(intent)) {
10546                    if (mDeferProtectedFilters) {
10547                        // We can't deal with these just yet. No component should ever obtain a
10548                        // >0 priority for a protected actions, with ONE exception -- the setup
10549                        // wizard. The setup wizard, however, cannot be known until we're able to
10550                        // query it for the category CATEGORY_SETUP_WIZARD. Which we can't do
10551                        // until all intent filters have been processed. Chicken, meet egg.
10552                        // Let the filter temporarily have a high priority and rectify the
10553                        // priorities after all system packages have been scanned.
10554                        mProtectedFilters.add(intent);
10555                        if (DEBUG_FILTERS) {
10556                            Slog.i(TAG, "Protected action; save for later;"
10557                                    + " package: " + applicationInfo.packageName
10558                                    + " activity: " + intent.activity.className
10559                                    + " origPrio: " + intent.getPriority());
10560                        }
10561                        return;
10562                    } else {
10563                        if (DEBUG_FILTERS && mSetupWizardPackage == null) {
10564                            Slog.i(TAG, "No setup wizard;"
10565                                + " All protected intents capped to priority 0");
10566                        }
10567                        if (intent.activity.info.packageName.equals(mSetupWizardPackage)) {
10568                            if (DEBUG_FILTERS) {
10569                                Slog.i(TAG, "Found setup wizard;"
10570                                    + " allow priority " + intent.getPriority() + ";"
10571                                    + " package: " + intent.activity.info.packageName
10572                                    + " activity: " + intent.activity.className
10573                                    + " priority: " + intent.getPriority());
10574                            }
10575                            // setup wizard gets whatever it wants
10576                            return;
10577                        }
10578                        Slog.w(TAG, "Protected action; cap priority to 0;"
10579                                + " package: " + intent.activity.info.packageName
10580                                + " activity: " + intent.activity.className
10581                                + " origPrio: " + intent.getPriority());
10582                        intent.setPriority(0);
10583                        return;
10584                    }
10585                }
10586                // privileged apps on the system image get whatever priority they request
10587                return;
10588            }
10589
10590            // privileged app unbundled update ... try to find the same activity
10591            final PackageParser.Activity foundActivity =
10592                    findMatchingActivity(systemActivities, activityInfo);
10593            if (foundActivity == null) {
10594                // this is a new activity; it cannot obtain >0 priority
10595                if (DEBUG_FILTERS) {
10596                    Slog.i(TAG, "New activity; cap priority to 0;"
10597                            + " package: " + applicationInfo.packageName
10598                            + " activity: " + intent.activity.className
10599                            + " origPrio: " + intent.getPriority());
10600                }
10601                intent.setPriority(0);
10602                return;
10603            }
10604
10605            // found activity, now check for filter equivalence
10606
10607            // a shallow copy is enough; we modify the list, not its contents
10608            final List<ActivityIntentInfo> intentListCopy =
10609                    new ArrayList<>(foundActivity.intents);
10610            final List<ActivityIntentInfo> foundFilters = findFilters(intent);
10611
10612            // find matching action subsets
10613            final Iterator<String> actionsIterator = intent.actionsIterator();
10614            if (actionsIterator != null) {
10615                getIntentListSubset(
10616                        intentListCopy, new ActionIterGenerator(), actionsIterator);
10617                if (intentListCopy.size() == 0) {
10618                    // no more intents to match; we're not equivalent
10619                    if (DEBUG_FILTERS) {
10620                        Slog.i(TAG, "Mismatched action; cap priority to 0;"
10621                                + " package: " + applicationInfo.packageName
10622                                + " activity: " + intent.activity.className
10623                                + " origPrio: " + intent.getPriority());
10624                    }
10625                    intent.setPriority(0);
10626                    return;
10627                }
10628            }
10629
10630            // find matching category subsets
10631            final Iterator<String> categoriesIterator = intent.categoriesIterator();
10632            if (categoriesIterator != null) {
10633                getIntentListSubset(intentListCopy, new CategoriesIterGenerator(),
10634                        categoriesIterator);
10635                if (intentListCopy.size() == 0) {
10636                    // no more intents to match; we're not equivalent
10637                    if (DEBUG_FILTERS) {
10638                        Slog.i(TAG, "Mismatched category; cap priority to 0;"
10639                                + " package: " + applicationInfo.packageName
10640                                + " activity: " + intent.activity.className
10641                                + " origPrio: " + intent.getPriority());
10642                    }
10643                    intent.setPriority(0);
10644                    return;
10645                }
10646            }
10647
10648            // find matching schemes subsets
10649            final Iterator<String> schemesIterator = intent.schemesIterator();
10650            if (schemesIterator != null) {
10651                getIntentListSubset(intentListCopy, new SchemesIterGenerator(),
10652                        schemesIterator);
10653                if (intentListCopy.size() == 0) {
10654                    // no more intents to match; we're not equivalent
10655                    if (DEBUG_FILTERS) {
10656                        Slog.i(TAG, "Mismatched scheme; cap priority to 0;"
10657                                + " package: " + applicationInfo.packageName
10658                                + " activity: " + intent.activity.className
10659                                + " origPrio: " + intent.getPriority());
10660                    }
10661                    intent.setPriority(0);
10662                    return;
10663                }
10664            }
10665
10666            // find matching authorities subsets
10667            final Iterator<IntentFilter.AuthorityEntry>
10668                    authoritiesIterator = intent.authoritiesIterator();
10669            if (authoritiesIterator != null) {
10670                getIntentListSubset(intentListCopy,
10671                        new AuthoritiesIterGenerator(),
10672                        authoritiesIterator);
10673                if (intentListCopy.size() == 0) {
10674                    // no more intents to match; we're not equivalent
10675                    if (DEBUG_FILTERS) {
10676                        Slog.i(TAG, "Mismatched authority; cap priority to 0;"
10677                                + " package: " + applicationInfo.packageName
10678                                + " activity: " + intent.activity.className
10679                                + " origPrio: " + intent.getPriority());
10680                    }
10681                    intent.setPriority(0);
10682                    return;
10683                }
10684            }
10685
10686            // we found matching filter(s); app gets the max priority of all intents
10687            int cappedPriority = 0;
10688            for (int i = intentListCopy.size() - 1; i >= 0; --i) {
10689                cappedPriority = Math.max(cappedPriority, intentListCopy.get(i).getPriority());
10690            }
10691            if (intent.getPriority() > cappedPriority) {
10692                if (DEBUG_FILTERS) {
10693                    Slog.i(TAG, "Found matching filter(s);"
10694                            + " cap priority to " + cappedPriority + ";"
10695                            + " package: " + applicationInfo.packageName
10696                            + " activity: " + intent.activity.className
10697                            + " origPrio: " + intent.getPriority());
10698                }
10699                intent.setPriority(cappedPriority);
10700                return;
10701            }
10702            // all this for nothing; the requested priority was <= what was on the system
10703        }
10704
10705        public final void addActivity(PackageParser.Activity a, String type) {
10706            mActivities.put(a.getComponentName(), a);
10707            if (DEBUG_SHOW_INFO)
10708                Log.v(
10709                TAG, "  " + type + " " +
10710                (a.info.nonLocalizedLabel != null ? a.info.nonLocalizedLabel : a.info.name) + ":");
10711            if (DEBUG_SHOW_INFO)
10712                Log.v(TAG, "    Class=" + a.info.name);
10713            final int NI = a.intents.size();
10714            for (int j=0; j<NI; j++) {
10715                PackageParser.ActivityIntentInfo intent = a.intents.get(j);
10716                if ("activity".equals(type)) {
10717                    final PackageSetting ps =
10718                            mSettings.getDisabledSystemPkgLPr(intent.activity.info.packageName);
10719                    final List<PackageParser.Activity> systemActivities =
10720                            ps != null && ps.pkg != null ? ps.pkg.activities : null;
10721                    adjustPriority(systemActivities, intent);
10722                }
10723                if (DEBUG_SHOW_INFO) {
10724                    Log.v(TAG, "    IntentFilter:");
10725                    intent.dump(new LogPrinter(Log.VERBOSE, TAG), "      ");
10726                }
10727                if (!intent.debugCheck()) {
10728                    Log.w(TAG, "==> For Activity " + a.info.name);
10729                }
10730                addFilter(intent);
10731            }
10732        }
10733
10734        public final void removeActivity(PackageParser.Activity a, String type) {
10735            mActivities.remove(a.getComponentName());
10736            if (DEBUG_SHOW_INFO) {
10737                Log.v(TAG, "  " + type + " "
10738                        + (a.info.nonLocalizedLabel != null ? a.info.nonLocalizedLabel
10739                                : a.info.name) + ":");
10740                Log.v(TAG, "    Class=" + a.info.name);
10741            }
10742            final int NI = a.intents.size();
10743            for (int j=0; j<NI; j++) {
10744                PackageParser.ActivityIntentInfo intent = a.intents.get(j);
10745                if (DEBUG_SHOW_INFO) {
10746                    Log.v(TAG, "    IntentFilter:");
10747                    intent.dump(new LogPrinter(Log.VERBOSE, TAG), "      ");
10748                }
10749                removeFilter(intent);
10750            }
10751        }
10752
10753        @Override
10754        protected boolean allowFilterResult(
10755                PackageParser.ActivityIntentInfo filter, List<ResolveInfo> dest) {
10756            ActivityInfo filterAi = filter.activity.info;
10757            for (int i=dest.size()-1; i>=0; i--) {
10758                ActivityInfo destAi = dest.get(i).activityInfo;
10759                if (destAi.name == filterAi.name
10760                        && destAi.packageName == filterAi.packageName) {
10761                    return false;
10762                }
10763            }
10764            return true;
10765        }
10766
10767        @Override
10768        protected ActivityIntentInfo[] newArray(int size) {
10769            return new ActivityIntentInfo[size];
10770        }
10771
10772        @Override
10773        protected boolean isFilterStopped(PackageParser.ActivityIntentInfo filter, int userId) {
10774            if (!sUserManager.exists(userId)) return true;
10775            PackageParser.Package p = filter.activity.owner;
10776            if (p != null) {
10777                PackageSetting ps = (PackageSetting)p.mExtras;
10778                if (ps != null) {
10779                    // System apps are never considered stopped for purposes of
10780                    // filtering, because there may be no way for the user to
10781                    // actually re-launch them.
10782                    return (ps.pkgFlags&ApplicationInfo.FLAG_SYSTEM) == 0
10783                            && ps.getStopped(userId);
10784                }
10785            }
10786            return false;
10787        }
10788
10789        @Override
10790        protected boolean isPackageForFilter(String packageName,
10791                PackageParser.ActivityIntentInfo info) {
10792            return packageName.equals(info.activity.owner.packageName);
10793        }
10794
10795        @Override
10796        protected ResolveInfo newResult(PackageParser.ActivityIntentInfo info,
10797                int match, int userId) {
10798            if (!sUserManager.exists(userId)) return null;
10799            if (!mSettings.isEnabledAndMatchLPr(info.activity.info, mFlags, userId)) {
10800                return null;
10801            }
10802            final PackageParser.Activity activity = info.activity;
10803            PackageSetting ps = (PackageSetting) activity.owner.mExtras;
10804            if (ps == null) {
10805                return null;
10806            }
10807            ActivityInfo ai = PackageParser.generateActivityInfo(activity, mFlags,
10808                    ps.readUserState(userId), userId);
10809            if (ai == null) {
10810                return null;
10811            }
10812            final ResolveInfo res = new ResolveInfo();
10813            res.activityInfo = ai;
10814            if ((mFlags&PackageManager.GET_RESOLVED_FILTER) != 0) {
10815                res.filter = info;
10816            }
10817            if (info != null) {
10818                res.handleAllWebDataURI = info.handleAllWebDataURI();
10819            }
10820            res.priority = info.getPriority();
10821            res.preferredOrder = activity.owner.mPreferredOrder;
10822            //System.out.println("Result: " + res.activityInfo.className +
10823            //                   " = " + res.priority);
10824            res.match = match;
10825            res.isDefault = info.hasDefault;
10826            res.labelRes = info.labelRes;
10827            res.nonLocalizedLabel = info.nonLocalizedLabel;
10828            if (userNeedsBadging(userId)) {
10829                res.noResourceId = true;
10830            } else {
10831                res.icon = info.icon;
10832            }
10833            res.iconResourceId = info.icon;
10834            res.system = res.activityInfo.applicationInfo.isSystemApp();
10835            return res;
10836        }
10837
10838        @Override
10839        protected void sortResults(List<ResolveInfo> results) {
10840            Collections.sort(results, mResolvePrioritySorter);
10841        }
10842
10843        @Override
10844        protected void dumpFilter(PrintWriter out, String prefix,
10845                PackageParser.ActivityIntentInfo filter) {
10846            out.print(prefix); out.print(
10847                    Integer.toHexString(System.identityHashCode(filter.activity)));
10848                    out.print(' ');
10849                    filter.activity.printComponentShortName(out);
10850                    out.print(" filter ");
10851                    out.println(Integer.toHexString(System.identityHashCode(filter)));
10852        }
10853
10854        @Override
10855        protected Object filterToLabel(PackageParser.ActivityIntentInfo filter) {
10856            return filter.activity;
10857        }
10858
10859        protected void dumpFilterLabel(PrintWriter out, String prefix, Object label, int count) {
10860            PackageParser.Activity activity = (PackageParser.Activity)label;
10861            out.print(prefix); out.print(
10862                    Integer.toHexString(System.identityHashCode(activity)));
10863                    out.print(' ');
10864                    activity.printComponentShortName(out);
10865            if (count > 1) {
10866                out.print(" ("); out.print(count); out.print(" filters)");
10867            }
10868            out.println();
10869        }
10870
10871        // Keys are String (activity class name), values are Activity.
10872        private final ArrayMap<ComponentName, PackageParser.Activity> mActivities
10873                = new ArrayMap<ComponentName, PackageParser.Activity>();
10874        private int mFlags;
10875    }
10876
10877    private final class ServiceIntentResolver
10878            extends IntentResolver<PackageParser.ServiceIntentInfo, ResolveInfo> {
10879        public List<ResolveInfo> queryIntent(Intent intent, String resolvedType,
10880                boolean defaultOnly, int userId) {
10881            mFlags = defaultOnly ? PackageManager.MATCH_DEFAULT_ONLY : 0;
10882            return super.queryIntent(intent, resolvedType, defaultOnly, userId);
10883        }
10884
10885        public List<ResolveInfo> queryIntent(Intent intent, String resolvedType, int flags,
10886                int userId) {
10887            if (!sUserManager.exists(userId)) return null;
10888            mFlags = flags;
10889            return super.queryIntent(intent, resolvedType,
10890                    (flags & PackageManager.MATCH_DEFAULT_ONLY) != 0, userId);
10891        }
10892
10893        public List<ResolveInfo> queryIntentForPackage(Intent intent, String resolvedType,
10894                int flags, ArrayList<PackageParser.Service> packageServices, int userId) {
10895            if (!sUserManager.exists(userId)) return null;
10896            if (packageServices == null) {
10897                return null;
10898            }
10899            mFlags = flags;
10900            final boolean defaultOnly = (flags&PackageManager.MATCH_DEFAULT_ONLY) != 0;
10901            final int N = packageServices.size();
10902            ArrayList<PackageParser.ServiceIntentInfo[]> listCut =
10903                new ArrayList<PackageParser.ServiceIntentInfo[]>(N);
10904
10905            ArrayList<PackageParser.ServiceIntentInfo> intentFilters;
10906            for (int i = 0; i < N; ++i) {
10907                intentFilters = packageServices.get(i).intents;
10908                if (intentFilters != null && intentFilters.size() > 0) {
10909                    PackageParser.ServiceIntentInfo[] array =
10910                            new PackageParser.ServiceIntentInfo[intentFilters.size()];
10911                    intentFilters.toArray(array);
10912                    listCut.add(array);
10913                }
10914            }
10915            return super.queryIntentFromList(intent, resolvedType, defaultOnly, listCut, userId);
10916        }
10917
10918        public final void addService(PackageParser.Service s) {
10919            mServices.put(s.getComponentName(), s);
10920            if (DEBUG_SHOW_INFO) {
10921                Log.v(TAG, "  "
10922                        + (s.info.nonLocalizedLabel != null
10923                        ? s.info.nonLocalizedLabel : s.info.name) + ":");
10924                Log.v(TAG, "    Class=" + s.info.name);
10925            }
10926            final int NI = s.intents.size();
10927            int j;
10928            for (j=0; j<NI; j++) {
10929                PackageParser.ServiceIntentInfo intent = s.intents.get(j);
10930                if (DEBUG_SHOW_INFO) {
10931                    Log.v(TAG, "    IntentFilter:");
10932                    intent.dump(new LogPrinter(Log.VERBOSE, TAG), "      ");
10933                }
10934                if (!intent.debugCheck()) {
10935                    Log.w(TAG, "==> For Service " + s.info.name);
10936                }
10937                addFilter(intent);
10938            }
10939        }
10940
10941        public final void removeService(PackageParser.Service s) {
10942            mServices.remove(s.getComponentName());
10943            if (DEBUG_SHOW_INFO) {
10944                Log.v(TAG, "  " + (s.info.nonLocalizedLabel != null
10945                        ? s.info.nonLocalizedLabel : s.info.name) + ":");
10946                Log.v(TAG, "    Class=" + s.info.name);
10947            }
10948            final int NI = s.intents.size();
10949            int j;
10950            for (j=0; j<NI; j++) {
10951                PackageParser.ServiceIntentInfo intent = s.intents.get(j);
10952                if (DEBUG_SHOW_INFO) {
10953                    Log.v(TAG, "    IntentFilter:");
10954                    intent.dump(new LogPrinter(Log.VERBOSE, TAG), "      ");
10955                }
10956                removeFilter(intent);
10957            }
10958        }
10959
10960        @Override
10961        protected boolean allowFilterResult(
10962                PackageParser.ServiceIntentInfo filter, List<ResolveInfo> dest) {
10963            ServiceInfo filterSi = filter.service.info;
10964            for (int i=dest.size()-1; i>=0; i--) {
10965                ServiceInfo destAi = dest.get(i).serviceInfo;
10966                if (destAi.name == filterSi.name
10967                        && destAi.packageName == filterSi.packageName) {
10968                    return false;
10969                }
10970            }
10971            return true;
10972        }
10973
10974        @Override
10975        protected PackageParser.ServiceIntentInfo[] newArray(int size) {
10976            return new PackageParser.ServiceIntentInfo[size];
10977        }
10978
10979        @Override
10980        protected boolean isFilterStopped(PackageParser.ServiceIntentInfo filter, int userId) {
10981            if (!sUserManager.exists(userId)) return true;
10982            PackageParser.Package p = filter.service.owner;
10983            if (p != null) {
10984                PackageSetting ps = (PackageSetting)p.mExtras;
10985                if (ps != null) {
10986                    // System apps are never considered stopped for purposes of
10987                    // filtering, because there may be no way for the user to
10988                    // actually re-launch them.
10989                    return (ps.pkgFlags & ApplicationInfo.FLAG_SYSTEM) == 0
10990                            && ps.getStopped(userId);
10991                }
10992            }
10993            return false;
10994        }
10995
10996        @Override
10997        protected boolean isPackageForFilter(String packageName,
10998                PackageParser.ServiceIntentInfo info) {
10999            return packageName.equals(info.service.owner.packageName);
11000        }
11001
11002        @Override
11003        protected ResolveInfo newResult(PackageParser.ServiceIntentInfo filter,
11004                int match, int userId) {
11005            if (!sUserManager.exists(userId)) return null;
11006            final PackageParser.ServiceIntentInfo info = (PackageParser.ServiceIntentInfo)filter;
11007            if (!mSettings.isEnabledAndMatchLPr(info.service.info, mFlags, userId)) {
11008                return null;
11009            }
11010            final PackageParser.Service service = info.service;
11011            PackageSetting ps = (PackageSetting) service.owner.mExtras;
11012            if (ps == null) {
11013                return null;
11014            }
11015            ServiceInfo si = PackageParser.generateServiceInfo(service, mFlags,
11016                    ps.readUserState(userId), userId);
11017            if (si == null) {
11018                return null;
11019            }
11020            final ResolveInfo res = new ResolveInfo();
11021            res.serviceInfo = si;
11022            if ((mFlags&PackageManager.GET_RESOLVED_FILTER) != 0) {
11023                res.filter = filter;
11024            }
11025            res.priority = info.getPriority();
11026            res.preferredOrder = service.owner.mPreferredOrder;
11027            res.match = match;
11028            res.isDefault = info.hasDefault;
11029            res.labelRes = info.labelRes;
11030            res.nonLocalizedLabel = info.nonLocalizedLabel;
11031            res.icon = info.icon;
11032            res.system = res.serviceInfo.applicationInfo.isSystemApp();
11033            return res;
11034        }
11035
11036        @Override
11037        protected void sortResults(List<ResolveInfo> results) {
11038            Collections.sort(results, mResolvePrioritySorter);
11039        }
11040
11041        @Override
11042        protected void dumpFilter(PrintWriter out, String prefix,
11043                PackageParser.ServiceIntentInfo filter) {
11044            out.print(prefix); out.print(
11045                    Integer.toHexString(System.identityHashCode(filter.service)));
11046                    out.print(' ');
11047                    filter.service.printComponentShortName(out);
11048                    out.print(" filter ");
11049                    out.println(Integer.toHexString(System.identityHashCode(filter)));
11050        }
11051
11052        @Override
11053        protected Object filterToLabel(PackageParser.ServiceIntentInfo filter) {
11054            return filter.service;
11055        }
11056
11057        protected void dumpFilterLabel(PrintWriter out, String prefix, Object label, int count) {
11058            PackageParser.Service service = (PackageParser.Service)label;
11059            out.print(prefix); out.print(
11060                    Integer.toHexString(System.identityHashCode(service)));
11061                    out.print(' ');
11062                    service.printComponentShortName(out);
11063            if (count > 1) {
11064                out.print(" ("); out.print(count); out.print(" filters)");
11065            }
11066            out.println();
11067        }
11068
11069//        List<ResolveInfo> filterEnabled(List<ResolveInfo> resolveInfoList) {
11070//            final Iterator<ResolveInfo> i = resolveInfoList.iterator();
11071//            final List<ResolveInfo> retList = Lists.newArrayList();
11072//            while (i.hasNext()) {
11073//                final ResolveInfo resolveInfo = (ResolveInfo) i;
11074//                if (isEnabledLP(resolveInfo.serviceInfo)) {
11075//                    retList.add(resolveInfo);
11076//                }
11077//            }
11078//            return retList;
11079//        }
11080
11081        // Keys are String (activity class name), values are Activity.
11082        private final ArrayMap<ComponentName, PackageParser.Service> mServices
11083                = new ArrayMap<ComponentName, PackageParser.Service>();
11084        private int mFlags;
11085    };
11086
11087    private final class ProviderIntentResolver
11088            extends IntentResolver<PackageParser.ProviderIntentInfo, ResolveInfo> {
11089        public List<ResolveInfo> queryIntent(Intent intent, String resolvedType,
11090                boolean defaultOnly, int userId) {
11091            mFlags = defaultOnly ? PackageManager.MATCH_DEFAULT_ONLY : 0;
11092            return super.queryIntent(intent, resolvedType, defaultOnly, userId);
11093        }
11094
11095        public List<ResolveInfo> queryIntent(Intent intent, String resolvedType, int flags,
11096                int userId) {
11097            if (!sUserManager.exists(userId))
11098                return null;
11099            mFlags = flags;
11100            return super.queryIntent(intent, resolvedType,
11101                    (flags & PackageManager.MATCH_DEFAULT_ONLY) != 0, userId);
11102        }
11103
11104        public List<ResolveInfo> queryIntentForPackage(Intent intent, String resolvedType,
11105                int flags, ArrayList<PackageParser.Provider> packageProviders, int userId) {
11106            if (!sUserManager.exists(userId))
11107                return null;
11108            if (packageProviders == null) {
11109                return null;
11110            }
11111            mFlags = flags;
11112            final boolean defaultOnly = (flags & PackageManager.MATCH_DEFAULT_ONLY) != 0;
11113            final int N = packageProviders.size();
11114            ArrayList<PackageParser.ProviderIntentInfo[]> listCut =
11115                    new ArrayList<PackageParser.ProviderIntentInfo[]>(N);
11116
11117            ArrayList<PackageParser.ProviderIntentInfo> intentFilters;
11118            for (int i = 0; i < N; ++i) {
11119                intentFilters = packageProviders.get(i).intents;
11120                if (intentFilters != null && intentFilters.size() > 0) {
11121                    PackageParser.ProviderIntentInfo[] array =
11122                            new PackageParser.ProviderIntentInfo[intentFilters.size()];
11123                    intentFilters.toArray(array);
11124                    listCut.add(array);
11125                }
11126            }
11127            return super.queryIntentFromList(intent, resolvedType, defaultOnly, listCut, userId);
11128        }
11129
11130        public final void addProvider(PackageParser.Provider p) {
11131            if (mProviders.containsKey(p.getComponentName())) {
11132                Slog.w(TAG, "Provider " + p.getComponentName() + " already defined; ignoring");
11133                return;
11134            }
11135
11136            mProviders.put(p.getComponentName(), p);
11137            if (DEBUG_SHOW_INFO) {
11138                Log.v(TAG, "  "
11139                        + (p.info.nonLocalizedLabel != null
11140                                ? p.info.nonLocalizedLabel : p.info.name) + ":");
11141                Log.v(TAG, "    Class=" + p.info.name);
11142            }
11143            final int NI = p.intents.size();
11144            int j;
11145            for (j = 0; j < NI; j++) {
11146                PackageParser.ProviderIntentInfo intent = p.intents.get(j);
11147                if (DEBUG_SHOW_INFO) {
11148                    Log.v(TAG, "    IntentFilter:");
11149                    intent.dump(new LogPrinter(Log.VERBOSE, TAG), "      ");
11150                }
11151                if (!intent.debugCheck()) {
11152                    Log.w(TAG, "==> For Provider " + p.info.name);
11153                }
11154                addFilter(intent);
11155            }
11156        }
11157
11158        public final void removeProvider(PackageParser.Provider p) {
11159            mProviders.remove(p.getComponentName());
11160            if (DEBUG_SHOW_INFO) {
11161                Log.v(TAG, "  " + (p.info.nonLocalizedLabel != null
11162                        ? p.info.nonLocalizedLabel : p.info.name) + ":");
11163                Log.v(TAG, "    Class=" + p.info.name);
11164            }
11165            final int NI = p.intents.size();
11166            int j;
11167            for (j = 0; j < NI; j++) {
11168                PackageParser.ProviderIntentInfo intent = p.intents.get(j);
11169                if (DEBUG_SHOW_INFO) {
11170                    Log.v(TAG, "    IntentFilter:");
11171                    intent.dump(new LogPrinter(Log.VERBOSE, TAG), "      ");
11172                }
11173                removeFilter(intent);
11174            }
11175        }
11176
11177        @Override
11178        protected boolean allowFilterResult(
11179                PackageParser.ProviderIntentInfo filter, List<ResolveInfo> dest) {
11180            ProviderInfo filterPi = filter.provider.info;
11181            for (int i = dest.size() - 1; i >= 0; i--) {
11182                ProviderInfo destPi = dest.get(i).providerInfo;
11183                if (destPi.name == filterPi.name
11184                        && destPi.packageName == filterPi.packageName) {
11185                    return false;
11186                }
11187            }
11188            return true;
11189        }
11190
11191        @Override
11192        protected PackageParser.ProviderIntentInfo[] newArray(int size) {
11193            return new PackageParser.ProviderIntentInfo[size];
11194        }
11195
11196        @Override
11197        protected boolean isFilterStopped(PackageParser.ProviderIntentInfo filter, int userId) {
11198            if (!sUserManager.exists(userId))
11199                return true;
11200            PackageParser.Package p = filter.provider.owner;
11201            if (p != null) {
11202                PackageSetting ps = (PackageSetting) p.mExtras;
11203                if (ps != null) {
11204                    // System apps are never considered stopped for purposes of
11205                    // filtering, because there may be no way for the user to
11206                    // actually re-launch them.
11207                    return (ps.pkgFlags & ApplicationInfo.FLAG_SYSTEM) == 0
11208                            && ps.getStopped(userId);
11209                }
11210            }
11211            return false;
11212        }
11213
11214        @Override
11215        protected boolean isPackageForFilter(String packageName,
11216                PackageParser.ProviderIntentInfo info) {
11217            return packageName.equals(info.provider.owner.packageName);
11218        }
11219
11220        @Override
11221        protected ResolveInfo newResult(PackageParser.ProviderIntentInfo filter,
11222                int match, int userId) {
11223            if (!sUserManager.exists(userId))
11224                return null;
11225            final PackageParser.ProviderIntentInfo info = filter;
11226            if (!mSettings.isEnabledAndMatchLPr(info.provider.info, mFlags, userId)) {
11227                return null;
11228            }
11229            final PackageParser.Provider provider = info.provider;
11230            PackageSetting ps = (PackageSetting) provider.owner.mExtras;
11231            if (ps == null) {
11232                return null;
11233            }
11234            ProviderInfo pi = PackageParser.generateProviderInfo(provider, mFlags,
11235                    ps.readUserState(userId), userId);
11236            if (pi == null) {
11237                return null;
11238            }
11239            final ResolveInfo res = new ResolveInfo();
11240            res.providerInfo = pi;
11241            if ((mFlags & PackageManager.GET_RESOLVED_FILTER) != 0) {
11242                res.filter = filter;
11243            }
11244            res.priority = info.getPriority();
11245            res.preferredOrder = provider.owner.mPreferredOrder;
11246            res.match = match;
11247            res.isDefault = info.hasDefault;
11248            res.labelRes = info.labelRes;
11249            res.nonLocalizedLabel = info.nonLocalizedLabel;
11250            res.icon = info.icon;
11251            res.system = res.providerInfo.applicationInfo.isSystemApp();
11252            return res;
11253        }
11254
11255        @Override
11256        protected void sortResults(List<ResolveInfo> results) {
11257            Collections.sort(results, mResolvePrioritySorter);
11258        }
11259
11260        @Override
11261        protected void dumpFilter(PrintWriter out, String prefix,
11262                PackageParser.ProviderIntentInfo filter) {
11263            out.print(prefix);
11264            out.print(
11265                    Integer.toHexString(System.identityHashCode(filter.provider)));
11266            out.print(' ');
11267            filter.provider.printComponentShortName(out);
11268            out.print(" filter ");
11269            out.println(Integer.toHexString(System.identityHashCode(filter)));
11270        }
11271
11272        @Override
11273        protected Object filterToLabel(PackageParser.ProviderIntentInfo filter) {
11274            return filter.provider;
11275        }
11276
11277        protected void dumpFilterLabel(PrintWriter out, String prefix, Object label, int count) {
11278            PackageParser.Provider provider = (PackageParser.Provider)label;
11279            out.print(prefix); out.print(
11280                    Integer.toHexString(System.identityHashCode(provider)));
11281                    out.print(' ');
11282                    provider.printComponentShortName(out);
11283            if (count > 1) {
11284                out.print(" ("); out.print(count); out.print(" filters)");
11285            }
11286            out.println();
11287        }
11288
11289        private final ArrayMap<ComponentName, PackageParser.Provider> mProviders
11290                = new ArrayMap<ComponentName, PackageParser.Provider>();
11291        private int mFlags;
11292    }
11293
11294    private static final class EphemeralIntentResolver
11295            extends IntentResolver<EphemeralResolveIntentInfo, EphemeralResolveInfo> {
11296        @Override
11297        protected EphemeralResolveIntentInfo[] newArray(int size) {
11298            return new EphemeralResolveIntentInfo[size];
11299        }
11300
11301        @Override
11302        protected boolean isPackageForFilter(String packageName, EphemeralResolveIntentInfo info) {
11303            return true;
11304        }
11305
11306        @Override
11307        protected EphemeralResolveInfo newResult(EphemeralResolveIntentInfo info, int match,
11308                int userId) {
11309            if (!sUserManager.exists(userId)) {
11310                return null;
11311            }
11312            return info.getEphemeralResolveInfo();
11313        }
11314    }
11315
11316    private static final Comparator<ResolveInfo> mResolvePrioritySorter =
11317            new Comparator<ResolveInfo>() {
11318        public int compare(ResolveInfo r1, ResolveInfo r2) {
11319            int v1 = r1.priority;
11320            int v2 = r2.priority;
11321            //System.out.println("Comparing: q1=" + q1 + " q2=" + q2);
11322            if (v1 != v2) {
11323                return (v1 > v2) ? -1 : 1;
11324            }
11325            v1 = r1.preferredOrder;
11326            v2 = r2.preferredOrder;
11327            if (v1 != v2) {
11328                return (v1 > v2) ? -1 : 1;
11329            }
11330            if (r1.isDefault != r2.isDefault) {
11331                return r1.isDefault ? -1 : 1;
11332            }
11333            v1 = r1.match;
11334            v2 = r2.match;
11335            //System.out.println("Comparing: m1=" + m1 + " m2=" + m2);
11336            if (v1 != v2) {
11337                return (v1 > v2) ? -1 : 1;
11338            }
11339            if (r1.system != r2.system) {
11340                return r1.system ? -1 : 1;
11341            }
11342            if (r1.activityInfo != null) {
11343                return r1.activityInfo.packageName.compareTo(r2.activityInfo.packageName);
11344            }
11345            if (r1.serviceInfo != null) {
11346                return r1.serviceInfo.packageName.compareTo(r2.serviceInfo.packageName);
11347            }
11348            if (r1.providerInfo != null) {
11349                return r1.providerInfo.packageName.compareTo(r2.providerInfo.packageName);
11350            }
11351            return 0;
11352        }
11353    };
11354
11355    private static final Comparator<ProviderInfo> mProviderInitOrderSorter =
11356            new Comparator<ProviderInfo>() {
11357        public int compare(ProviderInfo p1, ProviderInfo p2) {
11358            final int v1 = p1.initOrder;
11359            final int v2 = p2.initOrder;
11360            return (v1 > v2) ? -1 : ((v1 < v2) ? 1 : 0);
11361        }
11362    };
11363
11364    final void sendPackageBroadcast(final String action, final String pkg, final Bundle extras,
11365            final int flags, final String targetPkg, final IIntentReceiver finishedReceiver,
11366            final int[] userIds) {
11367        mHandler.post(new Runnable() {
11368            @Override
11369            public void run() {
11370                try {
11371                    final IActivityManager am = ActivityManagerNative.getDefault();
11372                    if (am == null) return;
11373                    final int[] resolvedUserIds;
11374                    if (userIds == null) {
11375                        resolvedUserIds = am.getRunningUserIds();
11376                    } else {
11377                        resolvedUserIds = userIds;
11378                    }
11379                    for (int id : resolvedUserIds) {
11380                        final Intent intent = new Intent(action,
11381                                pkg != null ? Uri.fromParts("package", pkg, null) : null);
11382                        if (extras != null) {
11383                            intent.putExtras(extras);
11384                        }
11385                        if (targetPkg != null) {
11386                            intent.setPackage(targetPkg);
11387                        }
11388                        // Modify the UID when posting to other users
11389                        int uid = intent.getIntExtra(Intent.EXTRA_UID, -1);
11390                        if (uid > 0 && UserHandle.getUserId(uid) != id) {
11391                            uid = UserHandle.getUid(id, UserHandle.getAppId(uid));
11392                            intent.putExtra(Intent.EXTRA_UID, uid);
11393                        }
11394                        intent.putExtra(Intent.EXTRA_USER_HANDLE, id);
11395                        intent.addFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY_BEFORE_BOOT | flags);
11396                        if (DEBUG_BROADCASTS) {
11397                            RuntimeException here = new RuntimeException("here");
11398                            here.fillInStackTrace();
11399                            Slog.d(TAG, "Sending to user " + id + ": "
11400                                    + intent.toShortString(false, true, false, false)
11401                                    + " " + intent.getExtras(), here);
11402                        }
11403                        am.broadcastIntent(null, intent, null, finishedReceiver,
11404                                0, null, null, null, android.app.AppOpsManager.OP_NONE,
11405                                null, finishedReceiver != null, false, id);
11406                    }
11407                } catch (RemoteException ex) {
11408                }
11409            }
11410        });
11411    }
11412
11413    /**
11414     * Check if the external storage media is available. This is true if there
11415     * is a mounted external storage medium or if the external storage is
11416     * emulated.
11417     */
11418    private boolean isExternalMediaAvailable() {
11419        return mMediaMounted || Environment.isExternalStorageEmulated();
11420    }
11421
11422    @Override
11423    public PackageCleanItem nextPackageToClean(PackageCleanItem lastPackage) {
11424        // writer
11425        synchronized (mPackages) {
11426            if (!isExternalMediaAvailable()) {
11427                // If the external storage is no longer mounted at this point,
11428                // the caller may not have been able to delete all of this
11429                // packages files and can not delete any more.  Bail.
11430                return null;
11431            }
11432            final ArrayList<PackageCleanItem> pkgs = mSettings.mPackagesToBeCleaned;
11433            if (lastPackage != null) {
11434                pkgs.remove(lastPackage);
11435            }
11436            if (pkgs.size() > 0) {
11437                return pkgs.get(0);
11438            }
11439        }
11440        return null;
11441    }
11442
11443    void schedulePackageCleaning(String packageName, int userId, boolean andCode) {
11444        final Message msg = mHandler.obtainMessage(START_CLEANING_PACKAGE,
11445                userId, andCode ? 1 : 0, packageName);
11446        if (mSystemReady) {
11447            msg.sendToTarget();
11448        } else {
11449            if (mPostSystemReadyMessages == null) {
11450                mPostSystemReadyMessages = new ArrayList<>();
11451            }
11452            mPostSystemReadyMessages.add(msg);
11453        }
11454    }
11455
11456    void startCleaningPackages() {
11457        // reader
11458        if (!isExternalMediaAvailable()) {
11459            return;
11460        }
11461        synchronized (mPackages) {
11462            if (mSettings.mPackagesToBeCleaned.isEmpty()) {
11463                return;
11464            }
11465        }
11466        Intent intent = new Intent(PackageManager.ACTION_CLEAN_EXTERNAL_STORAGE);
11467        intent.setComponent(DEFAULT_CONTAINER_COMPONENT);
11468        IActivityManager am = ActivityManagerNative.getDefault();
11469        if (am != null) {
11470            try {
11471                am.startService(null, intent, null, mContext.getOpPackageName(),
11472                        UserHandle.USER_SYSTEM);
11473            } catch (RemoteException e) {
11474            }
11475        }
11476    }
11477
11478    @Override
11479    public void installPackageAsUser(String originPath, IPackageInstallObserver2 observer,
11480            int installFlags, String installerPackageName, int userId) {
11481        mContext.enforceCallingOrSelfPermission(android.Manifest.permission.INSTALL_PACKAGES, null);
11482
11483        final int callingUid = Binder.getCallingUid();
11484        enforceCrossUserPermission(callingUid, userId,
11485                true /* requireFullPermission */, true /* checkShell */, "installPackageAsUser");
11486
11487        if (isUserRestricted(userId, UserManager.DISALLOW_INSTALL_APPS)) {
11488            try {
11489                if (observer != null) {
11490                    observer.onPackageInstalled("", INSTALL_FAILED_USER_RESTRICTED, null, null);
11491                }
11492            } catch (RemoteException re) {
11493            }
11494            return;
11495        }
11496
11497        if ((callingUid == Process.SHELL_UID) || (callingUid == Process.ROOT_UID)) {
11498            installFlags |= PackageManager.INSTALL_FROM_ADB;
11499
11500        } else {
11501            // Caller holds INSTALL_PACKAGES permission, so we're less strict
11502            // about installerPackageName.
11503
11504            installFlags &= ~PackageManager.INSTALL_FROM_ADB;
11505            installFlags &= ~PackageManager.INSTALL_ALL_USERS;
11506        }
11507
11508        UserHandle user;
11509        if ((installFlags & PackageManager.INSTALL_ALL_USERS) != 0) {
11510            user = UserHandle.ALL;
11511        } else {
11512            user = new UserHandle(userId);
11513        }
11514
11515        // Only system components can circumvent runtime permissions when installing.
11516        if ((installFlags & PackageManager.INSTALL_GRANT_RUNTIME_PERMISSIONS) != 0
11517                && mContext.checkCallingOrSelfPermission(Manifest.permission
11518                .INSTALL_GRANT_RUNTIME_PERMISSIONS) == PackageManager.PERMISSION_DENIED) {
11519            throw new SecurityException("You need the "
11520                    + "android.permission.INSTALL_GRANT_RUNTIME_PERMISSIONS permission "
11521                    + "to use the PackageManager.INSTALL_GRANT_RUNTIME_PERMISSIONS flag");
11522        }
11523
11524        final File originFile = new File(originPath);
11525        final OriginInfo origin = OriginInfo.fromUntrustedFile(originFile);
11526
11527        final Message msg = mHandler.obtainMessage(INIT_COPY);
11528        final VerificationInfo verificationInfo = new VerificationInfo(
11529                null /*originatingUri*/, null /*referrer*/, -1 /*originatingUid*/, callingUid);
11530        final InstallParams params = new InstallParams(origin, null /*moveInfo*/, observer,
11531                installFlags, installerPackageName, null /*volumeUuid*/, verificationInfo, user,
11532                null /*packageAbiOverride*/, null /*grantedPermissions*/,
11533                null /*certificates*/);
11534        params.setTraceMethod("installAsUser").setTraceCookie(System.identityHashCode(params));
11535        msg.obj = params;
11536
11537        Trace.asyncTraceBegin(TRACE_TAG_PACKAGE_MANAGER, "installAsUser",
11538                System.identityHashCode(msg.obj));
11539        Trace.asyncTraceBegin(TRACE_TAG_PACKAGE_MANAGER, "queueInstall",
11540                System.identityHashCode(msg.obj));
11541
11542        mHandler.sendMessage(msg);
11543    }
11544
11545    void installStage(String packageName, File stagedDir, String stagedCid,
11546            IPackageInstallObserver2 observer, PackageInstaller.SessionParams sessionParams,
11547            String installerPackageName, int installerUid, UserHandle user,
11548            Certificate[][] certificates) {
11549        if (DEBUG_EPHEMERAL) {
11550            if ((sessionParams.installFlags & PackageManager.INSTALL_EPHEMERAL) != 0) {
11551                Slog.d(TAG, "Ephemeral install of " + packageName);
11552            }
11553        }
11554        final VerificationInfo verificationInfo = new VerificationInfo(
11555                sessionParams.originatingUri, sessionParams.referrerUri,
11556                sessionParams.originatingUid, installerUid);
11557
11558        final OriginInfo origin;
11559        if (stagedDir != null) {
11560            origin = OriginInfo.fromStagedFile(stagedDir);
11561        } else {
11562            origin = OriginInfo.fromStagedContainer(stagedCid);
11563        }
11564
11565        final Message msg = mHandler.obtainMessage(INIT_COPY);
11566        final InstallParams params = new InstallParams(origin, null, observer,
11567                sessionParams.installFlags, installerPackageName, sessionParams.volumeUuid,
11568                verificationInfo, user, sessionParams.abiOverride,
11569                sessionParams.grantedRuntimePermissions, certificates);
11570        params.setTraceMethod("installStage").setTraceCookie(System.identityHashCode(params));
11571        msg.obj = params;
11572
11573        Trace.asyncTraceBegin(TRACE_TAG_PACKAGE_MANAGER, "installStage",
11574                System.identityHashCode(msg.obj));
11575        Trace.asyncTraceBegin(TRACE_TAG_PACKAGE_MANAGER, "queueInstall",
11576                System.identityHashCode(msg.obj));
11577
11578        mHandler.sendMessage(msg);
11579    }
11580
11581    private void sendPackageAddedForUser(String packageName, PackageSetting pkgSetting,
11582            int userId) {
11583        final boolean isSystem = isSystemApp(pkgSetting) || isUpdatedSystemApp(pkgSetting);
11584        sendPackageAddedForUser(packageName, isSystem, pkgSetting.appId, userId);
11585    }
11586
11587    private void sendPackageAddedForUser(String packageName, boolean isSystem,
11588            int appId, int userId) {
11589        Bundle extras = new Bundle(1);
11590        extras.putInt(Intent.EXTRA_UID, UserHandle.getUid(userId, appId));
11591
11592        sendPackageBroadcast(Intent.ACTION_PACKAGE_ADDED,
11593                packageName, extras, 0, null, null, new int[] {userId});
11594        try {
11595            IActivityManager am = ActivityManagerNative.getDefault();
11596            if (isSystem && am.isUserRunning(userId, 0)) {
11597                // The just-installed/enabled app is bundled on the system, so presumed
11598                // to be able to run automatically without needing an explicit launch.
11599                // Send it a BOOT_COMPLETED if it would ordinarily have gotten one.
11600                Intent bcIntent = new Intent(Intent.ACTION_BOOT_COMPLETED)
11601                        .addFlags(Intent.FLAG_INCLUDE_STOPPED_PACKAGES)
11602                        .setPackage(packageName);
11603                am.broadcastIntent(null, bcIntent, null, null, 0, null, null, null,
11604                        android.app.AppOpsManager.OP_NONE, null, false, false, userId);
11605            }
11606        } catch (RemoteException e) {
11607            // shouldn't happen
11608            Slog.w(TAG, "Unable to bootstrap installed package", e);
11609        }
11610    }
11611
11612    @Override
11613    public boolean setApplicationHiddenSettingAsUser(String packageName, boolean hidden,
11614            int userId) {
11615        mContext.enforceCallingOrSelfPermission(android.Manifest.permission.MANAGE_USERS, null);
11616        PackageSetting pkgSetting;
11617        final int uid = Binder.getCallingUid();
11618        enforceCrossUserPermission(uid, userId,
11619                true /* requireFullPermission */, true /* checkShell */,
11620                "setApplicationHiddenSetting for user " + userId);
11621
11622        if (hidden && isPackageDeviceAdmin(packageName, userId)) {
11623            Slog.w(TAG, "Not hiding package " + packageName + ": has active device admin");
11624            return false;
11625        }
11626
11627        long callingId = Binder.clearCallingIdentity();
11628        try {
11629            boolean sendAdded = false;
11630            boolean sendRemoved = false;
11631            // writer
11632            synchronized (mPackages) {
11633                pkgSetting = mSettings.mPackages.get(packageName);
11634                if (pkgSetting == null) {
11635                    return false;
11636                }
11637                if (pkgSetting.getHidden(userId) != hidden) {
11638                    pkgSetting.setHidden(hidden, userId);
11639                    mSettings.writePackageRestrictionsLPr(userId);
11640                    if (hidden) {
11641                        sendRemoved = true;
11642                    } else {
11643                        sendAdded = true;
11644                    }
11645                }
11646            }
11647            if (sendAdded) {
11648                sendPackageAddedForUser(packageName, pkgSetting, userId);
11649                return true;
11650            }
11651            if (sendRemoved) {
11652                killApplication(packageName, UserHandle.getUid(userId, pkgSetting.appId),
11653                        "hiding pkg");
11654                sendApplicationHiddenForUser(packageName, pkgSetting, userId);
11655                return true;
11656            }
11657        } finally {
11658            Binder.restoreCallingIdentity(callingId);
11659        }
11660        return false;
11661    }
11662
11663    private void sendApplicationHiddenForUser(String packageName, PackageSetting pkgSetting,
11664            int userId) {
11665        final PackageRemovedInfo info = new PackageRemovedInfo();
11666        info.removedPackage = packageName;
11667        info.removedUsers = new int[] {userId};
11668        info.uid = UserHandle.getUid(userId, pkgSetting.appId);
11669        info.sendPackageRemovedBroadcasts(true /*killApp*/);
11670    }
11671
11672    private void sendPackagesSuspendedForUser(String[] pkgList, int userId, boolean suspended) {
11673        if (pkgList.length > 0) {
11674            Bundle extras = new Bundle(1);
11675            extras.putStringArray(Intent.EXTRA_CHANGED_PACKAGE_LIST, pkgList);
11676
11677            sendPackageBroadcast(
11678                    suspended ? Intent.ACTION_PACKAGES_SUSPENDED
11679                            : Intent.ACTION_PACKAGES_UNSUSPENDED,
11680                    null, extras, Intent.FLAG_RECEIVER_REGISTERED_ONLY, null, null,
11681                    new int[] {userId});
11682        }
11683    }
11684
11685    /**
11686     * Returns true if application is not found or there was an error. Otherwise it returns
11687     * the hidden state of the package for the given user.
11688     */
11689    @Override
11690    public boolean getApplicationHiddenSettingAsUser(String packageName, int userId) {
11691        mContext.enforceCallingOrSelfPermission(android.Manifest.permission.MANAGE_USERS, null);
11692        enforceCrossUserPermission(Binder.getCallingUid(), userId,
11693                true /* requireFullPermission */, false /* checkShell */,
11694                "getApplicationHidden for user " + userId);
11695        PackageSetting pkgSetting;
11696        long callingId = Binder.clearCallingIdentity();
11697        try {
11698            // writer
11699            synchronized (mPackages) {
11700                pkgSetting = mSettings.mPackages.get(packageName);
11701                if (pkgSetting == null) {
11702                    return true;
11703                }
11704                return pkgSetting.getHidden(userId);
11705            }
11706        } finally {
11707            Binder.restoreCallingIdentity(callingId);
11708        }
11709    }
11710
11711    /**
11712     * @hide
11713     */
11714    @Override
11715    public int installExistingPackageAsUser(String packageName, int userId) {
11716        mContext.enforceCallingOrSelfPermission(android.Manifest.permission.INSTALL_PACKAGES,
11717                null);
11718        PackageSetting pkgSetting;
11719        final int uid = Binder.getCallingUid();
11720        enforceCrossUserPermission(uid, userId,
11721                true /* requireFullPermission */, true /* checkShell */,
11722                "installExistingPackage for user " + userId);
11723        if (isUserRestricted(userId, UserManager.DISALLOW_INSTALL_APPS)) {
11724            return PackageManager.INSTALL_FAILED_USER_RESTRICTED;
11725        }
11726
11727        long callingId = Binder.clearCallingIdentity();
11728        try {
11729            boolean installed = false;
11730
11731            // writer
11732            synchronized (mPackages) {
11733                pkgSetting = mSettings.mPackages.get(packageName);
11734                if (pkgSetting == null) {
11735                    return PackageManager.INSTALL_FAILED_INVALID_URI;
11736                }
11737                if (!pkgSetting.getInstalled(userId)) {
11738                    pkgSetting.setInstalled(true, userId);
11739                    pkgSetting.setHidden(false, userId);
11740                    mSettings.writePackageRestrictionsLPr(userId);
11741                    installed = true;
11742                }
11743            }
11744
11745            if (installed) {
11746                if (pkgSetting.pkg != null) {
11747                    synchronized (mInstallLock) {
11748                        // We don't need to freeze for a brand new install
11749                        prepareAppDataAfterInstallLIF(pkgSetting.pkg);
11750                    }
11751                }
11752                sendPackageAddedForUser(packageName, pkgSetting, userId);
11753            }
11754        } finally {
11755            Binder.restoreCallingIdentity(callingId);
11756        }
11757
11758        return PackageManager.INSTALL_SUCCEEDED;
11759    }
11760
11761    boolean isUserRestricted(int userId, String restrictionKey) {
11762        Bundle restrictions = sUserManager.getUserRestrictions(userId);
11763        if (restrictions.getBoolean(restrictionKey, false)) {
11764            Log.w(TAG, "User is restricted: " + restrictionKey);
11765            return true;
11766        }
11767        return false;
11768    }
11769
11770    @Override
11771    public String[] setPackagesSuspendedAsUser(String[] packageNames, boolean suspended,
11772            int userId) {
11773        mContext.enforceCallingOrSelfPermission(android.Manifest.permission.MANAGE_USERS, null);
11774        enforceCrossUserPermission(Binder.getCallingUid(), userId,
11775                true /* requireFullPermission */, true /* checkShell */,
11776                "setPackagesSuspended for user " + userId);
11777
11778        if (ArrayUtils.isEmpty(packageNames)) {
11779            return packageNames;
11780        }
11781
11782        // List of package names for whom the suspended state has changed.
11783        List<String> changedPackages = new ArrayList<>(packageNames.length);
11784        // List of package names for whom the suspended state is not set as requested in this
11785        // method.
11786        List<String> unactionedPackages = new ArrayList<>(packageNames.length);
11787        long callingId = Binder.clearCallingIdentity();
11788        try {
11789            for (int i = 0; i < packageNames.length; i++) {
11790                String packageName = packageNames[i];
11791                boolean changed = false;
11792                final int appId;
11793                synchronized (mPackages) {
11794                    final PackageSetting pkgSetting = mSettings.mPackages.get(packageName);
11795                    if (pkgSetting == null) {
11796                        Slog.w(TAG, "Could not find package setting for package \"" + packageName
11797                                + "\". Skipping suspending/un-suspending.");
11798                        unactionedPackages.add(packageName);
11799                        continue;
11800                    }
11801                    appId = pkgSetting.appId;
11802                    if (pkgSetting.getSuspended(userId) != suspended) {
11803                        if (!canSuspendPackageForUserLocked(packageName, userId)) {
11804                            unactionedPackages.add(packageName);
11805                            continue;
11806                        }
11807                        pkgSetting.setSuspended(suspended, userId);
11808                        mSettings.writePackageRestrictionsLPr(userId);
11809                        changed = true;
11810                        changedPackages.add(packageName);
11811                    }
11812                }
11813
11814                if (changed && suspended) {
11815                    killApplication(packageName, UserHandle.getUid(userId, appId),
11816                            "suspending package");
11817                }
11818            }
11819        } finally {
11820            Binder.restoreCallingIdentity(callingId);
11821        }
11822
11823        if (!changedPackages.isEmpty()) {
11824            sendPackagesSuspendedForUser(changedPackages.toArray(
11825                    new String[changedPackages.size()]), userId, suspended);
11826        }
11827
11828        return unactionedPackages.toArray(new String[unactionedPackages.size()]);
11829    }
11830
11831    @Override
11832    public boolean isPackageSuspendedForUser(String packageName, int userId) {
11833        enforceCrossUserPermission(Binder.getCallingUid(), userId,
11834                true /* requireFullPermission */, false /* checkShell */,
11835                "isPackageSuspendedForUser for user " + userId);
11836        synchronized (mPackages) {
11837            final PackageSetting pkgSetting = mSettings.mPackages.get(packageName);
11838            if (pkgSetting == null) {
11839                throw new IllegalArgumentException("Unknown target package: " + packageName);
11840            }
11841            return pkgSetting.getSuspended(userId);
11842        }
11843    }
11844
11845    private boolean canSuspendPackageForUserLocked(String packageName, int userId) {
11846        if (isPackageDeviceAdmin(packageName, userId)) {
11847            Slog.w(TAG, "Cannot suspend/un-suspend package \"" + packageName
11848                    + "\": has an active device admin");
11849            return false;
11850        }
11851
11852        String activeLauncherPackageName = getActiveLauncherPackageName(userId);
11853        if (packageName.equals(activeLauncherPackageName)) {
11854            Slog.w(TAG, "Cannot suspend/un-suspend package \"" + packageName
11855                    + "\": contains the active launcher");
11856            return false;
11857        }
11858
11859        if (packageName.equals(mRequiredInstallerPackage)) {
11860            Slog.w(TAG, "Cannot suspend/un-suspend package \"" + packageName
11861                    + "\": required for package installation");
11862            return false;
11863        }
11864
11865        if (packageName.equals(mRequiredVerifierPackage)) {
11866            Slog.w(TAG, "Cannot suspend/un-suspend package \"" + packageName
11867                    + "\": required for package verification");
11868            return false;
11869        }
11870
11871        if (packageName.equals(getDefaultDialerPackageName(userId))) {
11872            Slog.w(TAG, "Cannot suspend/un-suspend package \"" + packageName
11873                    + "\": is the default dialer");
11874            return false;
11875        }
11876
11877        return true;
11878    }
11879
11880    private String getActiveLauncherPackageName(int userId) {
11881        Intent intent = new Intent(Intent.ACTION_MAIN);
11882        intent.addCategory(Intent.CATEGORY_HOME);
11883        ResolveInfo resolveInfo = resolveIntent(
11884                intent,
11885                intent.resolveTypeIfNeeded(mContext.getContentResolver()),
11886                PackageManager.MATCH_DEFAULT_ONLY,
11887                userId);
11888
11889        return resolveInfo == null ? null : resolveInfo.activityInfo.packageName;
11890    }
11891
11892    private String getDefaultDialerPackageName(int userId) {
11893        synchronized (mPackages) {
11894            return mSettings.getDefaultDialerPackageNameLPw(userId);
11895        }
11896    }
11897
11898    @Override
11899    public void verifyPendingInstall(int id, int verificationCode) throws RemoteException {
11900        mContext.enforceCallingOrSelfPermission(
11901                android.Manifest.permission.PACKAGE_VERIFICATION_AGENT,
11902                "Only package verification agents can verify applications");
11903
11904        final Message msg = mHandler.obtainMessage(PACKAGE_VERIFIED);
11905        final PackageVerificationResponse response = new PackageVerificationResponse(
11906                verificationCode, Binder.getCallingUid());
11907        msg.arg1 = id;
11908        msg.obj = response;
11909        mHandler.sendMessage(msg);
11910    }
11911
11912    @Override
11913    public void extendVerificationTimeout(int id, int verificationCodeAtTimeout,
11914            long millisecondsToDelay) {
11915        mContext.enforceCallingOrSelfPermission(
11916                android.Manifest.permission.PACKAGE_VERIFICATION_AGENT,
11917                "Only package verification agents can extend verification timeouts");
11918
11919        final PackageVerificationState state = mPendingVerification.get(id);
11920        final PackageVerificationResponse response = new PackageVerificationResponse(
11921                verificationCodeAtTimeout, Binder.getCallingUid());
11922
11923        if (millisecondsToDelay > PackageManager.MAXIMUM_VERIFICATION_TIMEOUT) {
11924            millisecondsToDelay = PackageManager.MAXIMUM_VERIFICATION_TIMEOUT;
11925        }
11926        if (millisecondsToDelay < 0) {
11927            millisecondsToDelay = 0;
11928        }
11929        if ((verificationCodeAtTimeout != PackageManager.VERIFICATION_ALLOW)
11930                && (verificationCodeAtTimeout != PackageManager.VERIFICATION_REJECT)) {
11931            verificationCodeAtTimeout = PackageManager.VERIFICATION_REJECT;
11932        }
11933
11934        if ((state != null) && !state.timeoutExtended()) {
11935            state.extendTimeout();
11936
11937            final Message msg = mHandler.obtainMessage(PACKAGE_VERIFIED);
11938            msg.arg1 = id;
11939            msg.obj = response;
11940            mHandler.sendMessageDelayed(msg, millisecondsToDelay);
11941        }
11942    }
11943
11944    private void broadcastPackageVerified(int verificationId, Uri packageUri,
11945            int verificationCode, UserHandle user) {
11946        final Intent intent = new Intent(Intent.ACTION_PACKAGE_VERIFIED);
11947        intent.setDataAndType(packageUri, PACKAGE_MIME_TYPE);
11948        intent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
11949        intent.putExtra(PackageManager.EXTRA_VERIFICATION_ID, verificationId);
11950        intent.putExtra(PackageManager.EXTRA_VERIFICATION_RESULT, verificationCode);
11951
11952        mContext.sendBroadcastAsUser(intent, user,
11953                android.Manifest.permission.PACKAGE_VERIFICATION_AGENT);
11954    }
11955
11956    private ComponentName matchComponentForVerifier(String packageName,
11957            List<ResolveInfo> receivers) {
11958        ActivityInfo targetReceiver = null;
11959
11960        final int NR = receivers.size();
11961        for (int i = 0; i < NR; i++) {
11962            final ResolveInfo info = receivers.get(i);
11963            if (info.activityInfo == null) {
11964                continue;
11965            }
11966
11967            if (packageName.equals(info.activityInfo.packageName)) {
11968                targetReceiver = info.activityInfo;
11969                break;
11970            }
11971        }
11972
11973        if (targetReceiver == null) {
11974            return null;
11975        }
11976
11977        return new ComponentName(targetReceiver.packageName, targetReceiver.name);
11978    }
11979
11980    private List<ComponentName> matchVerifiers(PackageInfoLite pkgInfo,
11981            List<ResolveInfo> receivers, final PackageVerificationState verificationState) {
11982        if (pkgInfo.verifiers.length == 0) {
11983            return null;
11984        }
11985
11986        final int N = pkgInfo.verifiers.length;
11987        final List<ComponentName> sufficientVerifiers = new ArrayList<ComponentName>(N + 1);
11988        for (int i = 0; i < N; i++) {
11989            final VerifierInfo verifierInfo = pkgInfo.verifiers[i];
11990
11991            final ComponentName comp = matchComponentForVerifier(verifierInfo.packageName,
11992                    receivers);
11993            if (comp == null) {
11994                continue;
11995            }
11996
11997            final int verifierUid = getUidForVerifier(verifierInfo);
11998            if (verifierUid == -1) {
11999                continue;
12000            }
12001
12002            if (DEBUG_VERIFY) {
12003                Slog.d(TAG, "Added sufficient verifier " + verifierInfo.packageName
12004                        + " with the correct signature");
12005            }
12006            sufficientVerifiers.add(comp);
12007            verificationState.addSufficientVerifier(verifierUid);
12008        }
12009
12010        return sufficientVerifiers;
12011    }
12012
12013    private int getUidForVerifier(VerifierInfo verifierInfo) {
12014        synchronized (mPackages) {
12015            final PackageParser.Package pkg = mPackages.get(verifierInfo.packageName);
12016            if (pkg == null) {
12017                return -1;
12018            } else if (pkg.mSignatures.length != 1) {
12019                Slog.i(TAG, "Verifier package " + verifierInfo.packageName
12020                        + " has more than one signature; ignoring");
12021                return -1;
12022            }
12023
12024            /*
12025             * If the public key of the package's signature does not match
12026             * our expected public key, then this is a different package and
12027             * we should skip.
12028             */
12029
12030            final byte[] expectedPublicKey;
12031            try {
12032                final Signature verifierSig = pkg.mSignatures[0];
12033                final PublicKey publicKey = verifierSig.getPublicKey();
12034                expectedPublicKey = publicKey.getEncoded();
12035            } catch (CertificateException e) {
12036                return -1;
12037            }
12038
12039            final byte[] actualPublicKey = verifierInfo.publicKey.getEncoded();
12040
12041            if (!Arrays.equals(actualPublicKey, expectedPublicKey)) {
12042                Slog.i(TAG, "Verifier package " + verifierInfo.packageName
12043                        + " does not have the expected public key; ignoring");
12044                return -1;
12045            }
12046
12047            return pkg.applicationInfo.uid;
12048        }
12049    }
12050
12051    @Override
12052    public void finishPackageInstall(int token, boolean didLaunch) {
12053        enforceSystemOrRoot("Only the system is allowed to finish installs");
12054
12055        if (DEBUG_INSTALL) {
12056            Slog.v(TAG, "BM finishing package install for " + token);
12057        }
12058        Trace.asyncTraceEnd(TRACE_TAG_PACKAGE_MANAGER, "restore", token);
12059
12060        final Message msg = mHandler.obtainMessage(POST_INSTALL, token, didLaunch ? 1 : 0);
12061        mHandler.sendMessage(msg);
12062    }
12063
12064    /**
12065     * Get the verification agent timeout.
12066     *
12067     * @return verification timeout in milliseconds
12068     */
12069    private long getVerificationTimeout() {
12070        return android.provider.Settings.Global.getLong(mContext.getContentResolver(),
12071                android.provider.Settings.Global.PACKAGE_VERIFIER_TIMEOUT,
12072                DEFAULT_VERIFICATION_TIMEOUT);
12073    }
12074
12075    /**
12076     * Get the default verification agent response code.
12077     *
12078     * @return default verification response code
12079     */
12080    private int getDefaultVerificationResponse() {
12081        return android.provider.Settings.Global.getInt(mContext.getContentResolver(),
12082                android.provider.Settings.Global.PACKAGE_VERIFIER_DEFAULT_RESPONSE,
12083                DEFAULT_VERIFICATION_RESPONSE);
12084    }
12085
12086    /**
12087     * Check whether or not package verification has been enabled.
12088     *
12089     * @return true if verification should be performed
12090     */
12091    private boolean isVerificationEnabled(int userId, int installFlags) {
12092        if (!DEFAULT_VERIFY_ENABLE) {
12093            return false;
12094        }
12095        // Ephemeral apps don't get the full verification treatment
12096        if ((installFlags & PackageManager.INSTALL_EPHEMERAL) != 0) {
12097            if (DEBUG_EPHEMERAL) {
12098                Slog.d(TAG, "INSTALL_EPHEMERAL so skipping verification");
12099            }
12100            return false;
12101        }
12102
12103        boolean ensureVerifyAppsEnabled = isUserRestricted(userId, UserManager.ENSURE_VERIFY_APPS);
12104
12105        // Check if installing from ADB
12106        if ((installFlags & PackageManager.INSTALL_FROM_ADB) != 0) {
12107            // Do not run verification in a test harness environment
12108            if (ActivityManager.isRunningInTestHarness()) {
12109                return false;
12110            }
12111            if (ensureVerifyAppsEnabled) {
12112                return true;
12113            }
12114            // Check if the developer does not want package verification for ADB installs
12115            if (android.provider.Settings.Global.getInt(mContext.getContentResolver(),
12116                    android.provider.Settings.Global.PACKAGE_VERIFIER_INCLUDE_ADB, 1) == 0) {
12117                return false;
12118            }
12119        }
12120
12121        if (ensureVerifyAppsEnabled) {
12122            return true;
12123        }
12124
12125        return android.provider.Settings.Global.getInt(mContext.getContentResolver(),
12126                android.provider.Settings.Global.PACKAGE_VERIFIER_ENABLE, 1) == 1;
12127    }
12128
12129    @Override
12130    public void verifyIntentFilter(int id, int verificationCode, List<String> failedDomains)
12131            throws RemoteException {
12132        mContext.enforceCallingOrSelfPermission(
12133                Manifest.permission.INTENT_FILTER_VERIFICATION_AGENT,
12134                "Only intentfilter verification agents can verify applications");
12135
12136        final Message msg = mHandler.obtainMessage(INTENT_FILTER_VERIFIED);
12137        final IntentFilterVerificationResponse response = new IntentFilterVerificationResponse(
12138                Binder.getCallingUid(), verificationCode, failedDomains);
12139        msg.arg1 = id;
12140        msg.obj = response;
12141        mHandler.sendMessage(msg);
12142    }
12143
12144    @Override
12145    public int getIntentVerificationStatus(String packageName, int userId) {
12146        synchronized (mPackages) {
12147            return mSettings.getIntentFilterVerificationStatusLPr(packageName, userId);
12148        }
12149    }
12150
12151    @Override
12152    public boolean updateIntentVerificationStatus(String packageName, int status, int userId) {
12153        mContext.enforceCallingOrSelfPermission(
12154                android.Manifest.permission.SET_PREFERRED_APPLICATIONS, null);
12155
12156        boolean result = false;
12157        synchronized (mPackages) {
12158            result = mSettings.updateIntentFilterVerificationStatusLPw(packageName, status, userId);
12159        }
12160        if (result) {
12161            scheduleWritePackageRestrictionsLocked(userId);
12162        }
12163        return result;
12164    }
12165
12166    @Override
12167    public @NonNull ParceledListSlice<IntentFilterVerificationInfo> getIntentFilterVerifications(
12168            String packageName) {
12169        synchronized (mPackages) {
12170            return new ParceledListSlice<>(mSettings.getIntentFilterVerificationsLPr(packageName));
12171        }
12172    }
12173
12174    @Override
12175    public @NonNull ParceledListSlice<IntentFilter> getAllIntentFilters(String packageName) {
12176        if (TextUtils.isEmpty(packageName)) {
12177            return ParceledListSlice.emptyList();
12178        }
12179        synchronized (mPackages) {
12180            PackageParser.Package pkg = mPackages.get(packageName);
12181            if (pkg == null || pkg.activities == null) {
12182                return ParceledListSlice.emptyList();
12183            }
12184            final int count = pkg.activities.size();
12185            ArrayList<IntentFilter> result = new ArrayList<>();
12186            for (int n=0; n<count; n++) {
12187                PackageParser.Activity activity = pkg.activities.get(n);
12188                if (activity.intents != null && activity.intents.size() > 0) {
12189                    result.addAll(activity.intents);
12190                }
12191            }
12192            return new ParceledListSlice<>(result);
12193        }
12194    }
12195
12196    @Override
12197    public boolean setDefaultBrowserPackageName(String packageName, int userId) {
12198        mContext.enforceCallingOrSelfPermission(
12199                android.Manifest.permission.SET_PREFERRED_APPLICATIONS, null);
12200
12201        synchronized (mPackages) {
12202            boolean result = mSettings.setDefaultBrowserPackageNameLPw(packageName, userId);
12203            if (packageName != null) {
12204                result |= updateIntentVerificationStatus(packageName,
12205                        PackageManager.INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_ALWAYS,
12206                        userId);
12207                mDefaultPermissionPolicy.grantDefaultPermissionsToDefaultBrowserLPr(
12208                        packageName, userId);
12209            }
12210            return result;
12211        }
12212    }
12213
12214    @Override
12215    public String getDefaultBrowserPackageName(int userId) {
12216        synchronized (mPackages) {
12217            return mSettings.getDefaultBrowserPackageNameLPw(userId);
12218        }
12219    }
12220
12221    /**
12222     * Get the "allow unknown sources" setting.
12223     *
12224     * @return the current "allow unknown sources" setting
12225     */
12226    private int getUnknownSourcesSettings() {
12227        return android.provider.Settings.Secure.getInt(mContext.getContentResolver(),
12228                android.provider.Settings.Secure.INSTALL_NON_MARKET_APPS,
12229                -1);
12230    }
12231
12232    @Override
12233    public void setInstallerPackageName(String targetPackage, String installerPackageName) {
12234        final int uid = Binder.getCallingUid();
12235        // writer
12236        synchronized (mPackages) {
12237            PackageSetting targetPackageSetting = mSettings.mPackages.get(targetPackage);
12238            if (targetPackageSetting == null) {
12239                throw new IllegalArgumentException("Unknown target package: " + targetPackage);
12240            }
12241
12242            PackageSetting installerPackageSetting;
12243            if (installerPackageName != null) {
12244                installerPackageSetting = mSettings.mPackages.get(installerPackageName);
12245                if (installerPackageSetting == null) {
12246                    throw new IllegalArgumentException("Unknown installer package: "
12247                            + installerPackageName);
12248                }
12249            } else {
12250                installerPackageSetting = null;
12251            }
12252
12253            Signature[] callerSignature;
12254            Object obj = mSettings.getUserIdLPr(uid);
12255            if (obj != null) {
12256                if (obj instanceof SharedUserSetting) {
12257                    callerSignature = ((SharedUserSetting)obj).signatures.mSignatures;
12258                } else if (obj instanceof PackageSetting) {
12259                    callerSignature = ((PackageSetting)obj).signatures.mSignatures;
12260                } else {
12261                    throw new SecurityException("Bad object " + obj + " for uid " + uid);
12262                }
12263            } else {
12264                throw new SecurityException("Unknown calling UID: " + uid);
12265            }
12266
12267            // Verify: can't set installerPackageName to a package that is
12268            // not signed with the same cert as the caller.
12269            if (installerPackageSetting != null) {
12270                if (compareSignatures(callerSignature,
12271                        installerPackageSetting.signatures.mSignatures)
12272                        != PackageManager.SIGNATURE_MATCH) {
12273                    throw new SecurityException(
12274                            "Caller does not have same cert as new installer package "
12275                            + installerPackageName);
12276                }
12277            }
12278
12279            // Verify: if target already has an installer package, it must
12280            // be signed with the same cert as the caller.
12281            if (targetPackageSetting.installerPackageName != null) {
12282                PackageSetting setting = mSettings.mPackages.get(
12283                        targetPackageSetting.installerPackageName);
12284                // If the currently set package isn't valid, then it's always
12285                // okay to change it.
12286                if (setting != null) {
12287                    if (compareSignatures(callerSignature,
12288                            setting.signatures.mSignatures)
12289                            != PackageManager.SIGNATURE_MATCH) {
12290                        throw new SecurityException(
12291                                "Caller does not have same cert as old installer package "
12292                                + targetPackageSetting.installerPackageName);
12293                    }
12294                }
12295            }
12296
12297            // Okay!
12298            targetPackageSetting.installerPackageName = installerPackageName;
12299            if (installerPackageName != null) {
12300                mSettings.mInstallerPackages.add(installerPackageName);
12301            }
12302            scheduleWriteSettingsLocked();
12303        }
12304    }
12305
12306    private void processPendingInstall(final InstallArgs args, final int currentStatus) {
12307        // Queue up an async operation since the package installation may take a little while.
12308        mHandler.post(new Runnable() {
12309            public void run() {
12310                mHandler.removeCallbacks(this);
12311                 // Result object to be returned
12312                PackageInstalledInfo res = new PackageInstalledInfo();
12313                res.setReturnCode(currentStatus);
12314                res.uid = -1;
12315                res.pkg = null;
12316                res.removedInfo = null;
12317                if (res.returnCode == PackageManager.INSTALL_SUCCEEDED) {
12318                    args.doPreInstall(res.returnCode);
12319                    synchronized (mInstallLock) {
12320                        installPackageTracedLI(args, res);
12321                    }
12322                    args.doPostInstall(res.returnCode, res.uid);
12323                }
12324
12325                // A restore should be performed at this point if (a) the install
12326                // succeeded, (b) the operation is not an update, and (c) the new
12327                // package has not opted out of backup participation.
12328                final boolean update = res.removedInfo != null
12329                        && res.removedInfo.removedPackage != null;
12330                final int flags = (res.pkg == null) ? 0 : res.pkg.applicationInfo.flags;
12331                boolean doRestore = !update
12332                        && ((flags & ApplicationInfo.FLAG_ALLOW_BACKUP) != 0);
12333
12334                // Set up the post-install work request bookkeeping.  This will be used
12335                // and cleaned up by the post-install event handling regardless of whether
12336                // there's a restore pass performed.  Token values are >= 1.
12337                int token;
12338                if (mNextInstallToken < 0) mNextInstallToken = 1;
12339                token = mNextInstallToken++;
12340
12341                PostInstallData data = new PostInstallData(args, res);
12342                mRunningInstalls.put(token, data);
12343                if (DEBUG_INSTALL) Log.v(TAG, "+ starting restore round-trip " + token);
12344
12345                if (res.returnCode == PackageManager.INSTALL_SUCCEEDED && doRestore) {
12346                    // Pass responsibility to the Backup Manager.  It will perform a
12347                    // restore if appropriate, then pass responsibility back to the
12348                    // Package Manager to run the post-install observer callbacks
12349                    // and broadcasts.
12350                    IBackupManager bm = IBackupManager.Stub.asInterface(
12351                            ServiceManager.getService(Context.BACKUP_SERVICE));
12352                    if (bm != null) {
12353                        if (DEBUG_INSTALL) Log.v(TAG, "token " + token
12354                                + " to BM for possible restore");
12355                        Trace.asyncTraceBegin(TRACE_TAG_PACKAGE_MANAGER, "restore", token);
12356                        try {
12357                            // TODO: http://b/22388012
12358                            if (bm.isBackupServiceActive(UserHandle.USER_SYSTEM)) {
12359                                bm.restoreAtInstall(res.pkg.applicationInfo.packageName, token);
12360                            } else {
12361                                doRestore = false;
12362                            }
12363                        } catch (RemoteException e) {
12364                            // can't happen; the backup manager is local
12365                        } catch (Exception e) {
12366                            Slog.e(TAG, "Exception trying to enqueue restore", e);
12367                            doRestore = false;
12368                        }
12369                    } else {
12370                        Slog.e(TAG, "Backup Manager not found!");
12371                        doRestore = false;
12372                    }
12373                }
12374
12375                if (!doRestore) {
12376                    // No restore possible, or the Backup Manager was mysteriously not
12377                    // available -- just fire the post-install work request directly.
12378                    if (DEBUG_INSTALL) Log.v(TAG, "No restore - queue post-install for " + token);
12379
12380                    Trace.asyncTraceBegin(TRACE_TAG_PACKAGE_MANAGER, "postInstall", token);
12381
12382                    Message msg = mHandler.obtainMessage(POST_INSTALL, token, 0);
12383                    mHandler.sendMessage(msg);
12384                }
12385            }
12386        });
12387    }
12388
12389    /**
12390     * Callback from PackageSettings whenever an app is first transitioned out of the
12391     * 'stopped' state.  Normally we just issue the broadcast, but we can't do that if
12392     * the app was "launched" for a restoreAtInstall operation.  Therefore we check
12393     * here whether the app is the target of an ongoing install, and only send the
12394     * broadcast immediately if it is not in that state.  If it *is* undergoing a restore,
12395     * the first-launch broadcast will be sent implicitly on that basis in POST_INSTALL
12396     * handling.
12397     */
12398    void notifyFirstLaunch(final String pkgName, final String installerPackage, final int userId) {
12399        // Serialize this with the rest of the install-process message chain.  In the
12400        // restore-at-install case, this Runnable will necessarily run before the
12401        // POST_INSTALL message is processed, so the contents of mRunningInstalls
12402        // are coherent.  In the non-restore case, the app has already completed install
12403        // and been launched through some other means, so it is not in a problematic
12404        // state for observers to see the FIRST_LAUNCH signal.
12405        mHandler.post(new Runnable() {
12406            @Override
12407            public void run() {
12408                for (int i = 0; i < mRunningInstalls.size(); i++) {
12409                    final PostInstallData data = mRunningInstalls.valueAt(i);
12410                    if (pkgName.equals(data.res.pkg.applicationInfo.packageName)) {
12411                        // right package; but is it for the right user?
12412                        for (int uIndex = 0; uIndex < data.res.newUsers.length; uIndex++) {
12413                            if (userId == data.res.newUsers[uIndex]) {
12414                                if (DEBUG_BACKUP) {
12415                                    Slog.i(TAG, "Package " + pkgName
12416                                            + " being restored so deferring FIRST_LAUNCH");
12417                                }
12418                                return;
12419                            }
12420                        }
12421                    }
12422                }
12423                // didn't find it, so not being restored
12424                if (DEBUG_BACKUP) {
12425                    Slog.i(TAG, "Package " + pkgName + " sending normal FIRST_LAUNCH");
12426                }
12427                sendFirstLaunchBroadcast(pkgName, installerPackage, new int[] {userId});
12428            }
12429        });
12430    }
12431
12432    private void sendFirstLaunchBroadcast(String pkgName, String installerPkg, int[] userIds) {
12433        sendPackageBroadcast(Intent.ACTION_PACKAGE_FIRST_LAUNCH, pkgName, null, 0,
12434                installerPkg, null, userIds);
12435    }
12436
12437    private abstract class HandlerParams {
12438        private static final int MAX_RETRIES = 4;
12439
12440        /**
12441         * Number of times startCopy() has been attempted and had a non-fatal
12442         * error.
12443         */
12444        private int mRetries = 0;
12445
12446        /** User handle for the user requesting the information or installation. */
12447        private final UserHandle mUser;
12448        String traceMethod;
12449        int traceCookie;
12450
12451        HandlerParams(UserHandle user) {
12452            mUser = user;
12453        }
12454
12455        UserHandle getUser() {
12456            return mUser;
12457        }
12458
12459        HandlerParams setTraceMethod(String traceMethod) {
12460            this.traceMethod = traceMethod;
12461            return this;
12462        }
12463
12464        HandlerParams setTraceCookie(int traceCookie) {
12465            this.traceCookie = traceCookie;
12466            return this;
12467        }
12468
12469        final boolean startCopy() {
12470            boolean res;
12471            try {
12472                if (DEBUG_INSTALL) Slog.i(TAG, "startCopy " + mUser + ": " + this);
12473
12474                if (++mRetries > MAX_RETRIES) {
12475                    Slog.w(TAG, "Failed to invoke remote methods on default container service. Giving up");
12476                    mHandler.sendEmptyMessage(MCS_GIVE_UP);
12477                    handleServiceError();
12478                    return false;
12479                } else {
12480                    handleStartCopy();
12481                    res = true;
12482                }
12483            } catch (RemoteException e) {
12484                if (DEBUG_INSTALL) Slog.i(TAG, "Posting install MCS_RECONNECT");
12485                mHandler.sendEmptyMessage(MCS_RECONNECT);
12486                res = false;
12487            }
12488            handleReturnCode();
12489            return res;
12490        }
12491
12492        final void serviceError() {
12493            if (DEBUG_INSTALL) Slog.i(TAG, "serviceError");
12494            handleServiceError();
12495            handleReturnCode();
12496        }
12497
12498        abstract void handleStartCopy() throws RemoteException;
12499        abstract void handleServiceError();
12500        abstract void handleReturnCode();
12501    }
12502
12503    class MeasureParams extends HandlerParams {
12504        private final PackageStats mStats;
12505        private boolean mSuccess;
12506
12507        private final IPackageStatsObserver mObserver;
12508
12509        public MeasureParams(PackageStats stats, IPackageStatsObserver observer) {
12510            super(new UserHandle(stats.userHandle));
12511            mObserver = observer;
12512            mStats = stats;
12513        }
12514
12515        @Override
12516        public String toString() {
12517            return "MeasureParams{"
12518                + Integer.toHexString(System.identityHashCode(this))
12519                + " " + mStats.packageName + "}";
12520        }
12521
12522        @Override
12523        void handleStartCopy() throws RemoteException {
12524            synchronized (mInstallLock) {
12525                mSuccess = getPackageSizeInfoLI(mStats.packageName, mStats.userHandle, mStats);
12526            }
12527
12528            if (mSuccess) {
12529                final boolean mounted;
12530                if (Environment.isExternalStorageEmulated()) {
12531                    mounted = true;
12532                } else {
12533                    final String status = Environment.getExternalStorageState();
12534                    mounted = (Environment.MEDIA_MOUNTED.equals(status)
12535                            || Environment.MEDIA_MOUNTED_READ_ONLY.equals(status));
12536                }
12537
12538                if (mounted) {
12539                    final UserEnvironment userEnv = new UserEnvironment(mStats.userHandle);
12540
12541                    mStats.externalCacheSize = calculateDirectorySize(mContainerService,
12542                            userEnv.buildExternalStorageAppCacheDirs(mStats.packageName));
12543
12544                    mStats.externalDataSize = calculateDirectorySize(mContainerService,
12545                            userEnv.buildExternalStorageAppDataDirs(mStats.packageName));
12546
12547                    // Always subtract cache size, since it's a subdirectory
12548                    mStats.externalDataSize -= mStats.externalCacheSize;
12549
12550                    mStats.externalMediaSize = calculateDirectorySize(mContainerService,
12551                            userEnv.buildExternalStorageAppMediaDirs(mStats.packageName));
12552
12553                    mStats.externalObbSize = calculateDirectorySize(mContainerService,
12554                            userEnv.buildExternalStorageAppObbDirs(mStats.packageName));
12555                }
12556            }
12557        }
12558
12559        @Override
12560        void handleReturnCode() {
12561            if (mObserver != null) {
12562                try {
12563                    mObserver.onGetStatsCompleted(mStats, mSuccess);
12564                } catch (RemoteException e) {
12565                    Slog.i(TAG, "Observer no longer exists.");
12566                }
12567            }
12568        }
12569
12570        @Override
12571        void handleServiceError() {
12572            Slog.e(TAG, "Could not measure application " + mStats.packageName
12573                            + " external storage");
12574        }
12575    }
12576
12577    private static long calculateDirectorySize(IMediaContainerService mcs, File[] paths)
12578            throws RemoteException {
12579        long result = 0;
12580        for (File path : paths) {
12581            result += mcs.calculateDirectorySize(path.getAbsolutePath());
12582        }
12583        return result;
12584    }
12585
12586    private static void clearDirectory(IMediaContainerService mcs, File[] paths) {
12587        for (File path : paths) {
12588            try {
12589                mcs.clearDirectory(path.getAbsolutePath());
12590            } catch (RemoteException e) {
12591            }
12592        }
12593    }
12594
12595    static class OriginInfo {
12596        /**
12597         * Location where install is coming from, before it has been
12598         * copied/renamed into place. This could be a single monolithic APK
12599         * file, or a cluster directory. This location may be untrusted.
12600         */
12601        final File file;
12602        final String cid;
12603
12604        /**
12605         * Flag indicating that {@link #file} or {@link #cid} has already been
12606         * staged, meaning downstream users don't need to defensively copy the
12607         * contents.
12608         */
12609        final boolean staged;
12610
12611        /**
12612         * Flag indicating that {@link #file} or {@link #cid} is an already
12613         * installed app that is being moved.
12614         */
12615        final boolean existing;
12616
12617        final String resolvedPath;
12618        final File resolvedFile;
12619
12620        static OriginInfo fromNothing() {
12621            return new OriginInfo(null, null, false, false);
12622        }
12623
12624        static OriginInfo fromUntrustedFile(File file) {
12625            return new OriginInfo(file, null, false, false);
12626        }
12627
12628        static OriginInfo fromExistingFile(File file) {
12629            return new OriginInfo(file, null, false, true);
12630        }
12631
12632        static OriginInfo fromStagedFile(File file) {
12633            return new OriginInfo(file, null, true, false);
12634        }
12635
12636        static OriginInfo fromStagedContainer(String cid) {
12637            return new OriginInfo(null, cid, true, false);
12638        }
12639
12640        private OriginInfo(File file, String cid, boolean staged, boolean existing) {
12641            this.file = file;
12642            this.cid = cid;
12643            this.staged = staged;
12644            this.existing = existing;
12645
12646            if (cid != null) {
12647                resolvedPath = PackageHelper.getSdDir(cid);
12648                resolvedFile = new File(resolvedPath);
12649            } else if (file != null) {
12650                resolvedPath = file.getAbsolutePath();
12651                resolvedFile = file;
12652            } else {
12653                resolvedPath = null;
12654                resolvedFile = null;
12655            }
12656        }
12657    }
12658
12659    static class MoveInfo {
12660        final int moveId;
12661        final String fromUuid;
12662        final String toUuid;
12663        final String packageName;
12664        final String dataAppName;
12665        final int appId;
12666        final String seinfo;
12667        final int targetSdkVersion;
12668
12669        public MoveInfo(int moveId, String fromUuid, String toUuid, String packageName,
12670                String dataAppName, int appId, String seinfo, int targetSdkVersion) {
12671            this.moveId = moveId;
12672            this.fromUuid = fromUuid;
12673            this.toUuid = toUuid;
12674            this.packageName = packageName;
12675            this.dataAppName = dataAppName;
12676            this.appId = appId;
12677            this.seinfo = seinfo;
12678            this.targetSdkVersion = targetSdkVersion;
12679        }
12680    }
12681
12682    static class VerificationInfo {
12683        /** A constant used to indicate that a uid value is not present. */
12684        public static final int NO_UID = -1;
12685
12686        /** URI referencing where the package was downloaded from. */
12687        final Uri originatingUri;
12688
12689        /** HTTP referrer URI associated with the originatingURI. */
12690        final Uri referrer;
12691
12692        /** UID of the application that the install request originated from. */
12693        final int originatingUid;
12694
12695        /** UID of application requesting the install */
12696        final int installerUid;
12697
12698        VerificationInfo(Uri originatingUri, Uri referrer, int originatingUid, int installerUid) {
12699            this.originatingUri = originatingUri;
12700            this.referrer = referrer;
12701            this.originatingUid = originatingUid;
12702            this.installerUid = installerUid;
12703        }
12704    }
12705
12706    class InstallParams extends HandlerParams {
12707        final OriginInfo origin;
12708        final MoveInfo move;
12709        final IPackageInstallObserver2 observer;
12710        int installFlags;
12711        final String installerPackageName;
12712        final String volumeUuid;
12713        private InstallArgs mArgs;
12714        private int mRet;
12715        final String packageAbiOverride;
12716        final String[] grantedRuntimePermissions;
12717        final VerificationInfo verificationInfo;
12718        final Certificate[][] certificates;
12719
12720        InstallParams(OriginInfo origin, MoveInfo move, IPackageInstallObserver2 observer,
12721                int installFlags, String installerPackageName, String volumeUuid,
12722                VerificationInfo verificationInfo, UserHandle user, String packageAbiOverride,
12723                String[] grantedPermissions, Certificate[][] certificates) {
12724            super(user);
12725            this.origin = origin;
12726            this.move = move;
12727            this.observer = observer;
12728            this.installFlags = installFlags;
12729            this.installerPackageName = installerPackageName;
12730            this.volumeUuid = volumeUuid;
12731            this.verificationInfo = verificationInfo;
12732            this.packageAbiOverride = packageAbiOverride;
12733            this.grantedRuntimePermissions = grantedPermissions;
12734            this.certificates = certificates;
12735        }
12736
12737        @Override
12738        public String toString() {
12739            return "InstallParams{" + Integer.toHexString(System.identityHashCode(this))
12740                    + " file=" + origin.file + " cid=" + origin.cid + "}";
12741        }
12742
12743        private int installLocationPolicy(PackageInfoLite pkgLite) {
12744            String packageName = pkgLite.packageName;
12745            int installLocation = pkgLite.installLocation;
12746            boolean onSd = (installFlags & PackageManager.INSTALL_EXTERNAL) != 0;
12747            // reader
12748            synchronized (mPackages) {
12749                // Currently installed package which the new package is attempting to replace or
12750                // null if no such package is installed.
12751                PackageParser.Package installedPkg = mPackages.get(packageName);
12752                // Package which currently owns the data which the new package will own if installed.
12753                // If an app is unstalled while keeping data (e.g., adb uninstall -k), installedPkg
12754                // will be null whereas dataOwnerPkg will contain information about the package
12755                // which was uninstalled while keeping its data.
12756                PackageParser.Package dataOwnerPkg = installedPkg;
12757                if (dataOwnerPkg  == null) {
12758                    PackageSetting ps = mSettings.mPackages.get(packageName);
12759                    if (ps != null) {
12760                        dataOwnerPkg = ps.pkg;
12761                    }
12762                }
12763
12764                if (dataOwnerPkg != null) {
12765                    // If installed, the package will get access to data left on the device by its
12766                    // predecessor. As a security measure, this is permited only if this is not a
12767                    // version downgrade or if the predecessor package is marked as debuggable and
12768                    // a downgrade is explicitly requested.
12769                    //
12770                    // On debuggable platform builds, downgrades are permitted even for
12771                    // non-debuggable packages to make testing easier. Debuggable platform builds do
12772                    // not offer security guarantees and thus it's OK to disable some security
12773                    // mechanisms to make debugging/testing easier on those builds. However, even on
12774                    // debuggable builds downgrades of packages are permitted only if requested via
12775                    // installFlags. This is because we aim to keep the behavior of debuggable
12776                    // platform builds as close as possible to the behavior of non-debuggable
12777                    // platform builds.
12778                    final boolean downgradeRequested =
12779                            (installFlags & PackageManager.INSTALL_ALLOW_DOWNGRADE) != 0;
12780                    final boolean packageDebuggable =
12781                                (dataOwnerPkg.applicationInfo.flags
12782                                        & ApplicationInfo.FLAG_DEBUGGABLE) != 0;
12783                    final boolean downgradePermitted =
12784                            (downgradeRequested) && ((Build.IS_DEBUGGABLE) || (packageDebuggable));
12785                    if (!downgradePermitted) {
12786                        try {
12787                            checkDowngrade(dataOwnerPkg, pkgLite);
12788                        } catch (PackageManagerException e) {
12789                            Slog.w(TAG, "Downgrade detected: " + e.getMessage());
12790                            return PackageHelper.RECOMMEND_FAILED_VERSION_DOWNGRADE;
12791                        }
12792                    }
12793                }
12794
12795                if (installedPkg != null) {
12796                    if ((installFlags & PackageManager.INSTALL_REPLACE_EXISTING) != 0) {
12797                        // Check for updated system application.
12798                        if ((installedPkg.applicationInfo.flags & ApplicationInfo.FLAG_SYSTEM) != 0) {
12799                            if (onSd) {
12800                                Slog.w(TAG, "Cannot install update to system app on sdcard");
12801                                return PackageHelper.RECOMMEND_FAILED_INVALID_LOCATION;
12802                            }
12803                            return PackageHelper.RECOMMEND_INSTALL_INTERNAL;
12804                        } else {
12805                            if (onSd) {
12806                                // Install flag overrides everything.
12807                                return PackageHelper.RECOMMEND_INSTALL_EXTERNAL;
12808                            }
12809                            // If current upgrade specifies particular preference
12810                            if (installLocation == PackageInfo.INSTALL_LOCATION_INTERNAL_ONLY) {
12811                                // Application explicitly specified internal.
12812                                return PackageHelper.RECOMMEND_INSTALL_INTERNAL;
12813                            } else if (installLocation == PackageInfo.INSTALL_LOCATION_PREFER_EXTERNAL) {
12814                                // App explictly prefers external. Let policy decide
12815                            } else {
12816                                // Prefer previous location
12817                                if (isExternal(installedPkg)) {
12818                                    return PackageHelper.RECOMMEND_INSTALL_EXTERNAL;
12819                                }
12820                                return PackageHelper.RECOMMEND_INSTALL_INTERNAL;
12821                            }
12822                        }
12823                    } else {
12824                        // Invalid install. Return error code
12825                        return PackageHelper.RECOMMEND_FAILED_ALREADY_EXISTS;
12826                    }
12827                }
12828            }
12829            // All the special cases have been taken care of.
12830            // Return result based on recommended install location.
12831            if (onSd) {
12832                return PackageHelper.RECOMMEND_INSTALL_EXTERNAL;
12833            }
12834            return pkgLite.recommendedInstallLocation;
12835        }
12836
12837        /*
12838         * Invoke remote method to get package information and install
12839         * location values. Override install location based on default
12840         * policy if needed and then create install arguments based
12841         * on the install location.
12842         */
12843        public void handleStartCopy() throws RemoteException {
12844            int ret = PackageManager.INSTALL_SUCCEEDED;
12845
12846            // If we're already staged, we've firmly committed to an install location
12847            if (origin.staged) {
12848                if (origin.file != null) {
12849                    installFlags |= PackageManager.INSTALL_INTERNAL;
12850                    installFlags &= ~PackageManager.INSTALL_EXTERNAL;
12851                } else if (origin.cid != null) {
12852                    installFlags |= PackageManager.INSTALL_EXTERNAL;
12853                    installFlags &= ~PackageManager.INSTALL_INTERNAL;
12854                } else {
12855                    throw new IllegalStateException("Invalid stage location");
12856                }
12857            }
12858
12859            final boolean onSd = (installFlags & PackageManager.INSTALL_EXTERNAL) != 0;
12860            final boolean onInt = (installFlags & PackageManager.INSTALL_INTERNAL) != 0;
12861            final boolean ephemeral = (installFlags & PackageManager.INSTALL_EPHEMERAL) != 0;
12862            PackageInfoLite pkgLite = null;
12863
12864            if (onInt && onSd) {
12865                // Check if both bits are set.
12866                Slog.w(TAG, "Conflicting flags specified for installing on both internal and external");
12867                ret = PackageManager.INSTALL_FAILED_INVALID_INSTALL_LOCATION;
12868            } else if (onSd && ephemeral) {
12869                Slog.w(TAG,  "Conflicting flags specified for installing ephemeral on external");
12870                ret = PackageManager.INSTALL_FAILED_INVALID_INSTALL_LOCATION;
12871            } else {
12872                pkgLite = mContainerService.getMinimalPackageInfo(origin.resolvedPath, installFlags,
12873                        packageAbiOverride);
12874
12875                if (DEBUG_EPHEMERAL && ephemeral) {
12876                    Slog.v(TAG, "pkgLite for install: " + pkgLite);
12877                }
12878
12879                /*
12880                 * If we have too little free space, try to free cache
12881                 * before giving up.
12882                 */
12883                if (!origin.staged && pkgLite.recommendedInstallLocation
12884                        == PackageHelper.RECOMMEND_FAILED_INSUFFICIENT_STORAGE) {
12885                    // TODO: focus freeing disk space on the target device
12886                    final StorageManager storage = StorageManager.from(mContext);
12887                    final long lowThreshold = storage.getStorageLowBytes(
12888                            Environment.getDataDirectory());
12889
12890                    final long sizeBytes = mContainerService.calculateInstalledSize(
12891                            origin.resolvedPath, isForwardLocked(), packageAbiOverride);
12892
12893                    try {
12894                        mInstaller.freeCache(null, sizeBytes + lowThreshold);
12895                        pkgLite = mContainerService.getMinimalPackageInfo(origin.resolvedPath,
12896                                installFlags, packageAbiOverride);
12897                    } catch (InstallerException e) {
12898                        Slog.w(TAG, "Failed to free cache", e);
12899                    }
12900
12901                    /*
12902                     * The cache free must have deleted the file we
12903                     * downloaded to install.
12904                     *
12905                     * TODO: fix the "freeCache" call to not delete
12906                     *       the file we care about.
12907                     */
12908                    if (pkgLite.recommendedInstallLocation
12909                            == PackageHelper.RECOMMEND_FAILED_INVALID_URI) {
12910                        pkgLite.recommendedInstallLocation
12911                            = PackageHelper.RECOMMEND_FAILED_INSUFFICIENT_STORAGE;
12912                    }
12913                }
12914            }
12915
12916            if (ret == PackageManager.INSTALL_SUCCEEDED) {
12917                int loc = pkgLite.recommendedInstallLocation;
12918                if (loc == PackageHelper.RECOMMEND_FAILED_INVALID_LOCATION) {
12919                    ret = PackageManager.INSTALL_FAILED_INVALID_INSTALL_LOCATION;
12920                } else if (loc == PackageHelper.RECOMMEND_FAILED_ALREADY_EXISTS) {
12921                    ret = PackageManager.INSTALL_FAILED_ALREADY_EXISTS;
12922                } else if (loc == PackageHelper.RECOMMEND_FAILED_INSUFFICIENT_STORAGE) {
12923                    ret = PackageManager.INSTALL_FAILED_INSUFFICIENT_STORAGE;
12924                } else if (loc == PackageHelper.RECOMMEND_FAILED_INVALID_APK) {
12925                    ret = PackageManager.INSTALL_FAILED_INVALID_APK;
12926                } else if (loc == PackageHelper.RECOMMEND_FAILED_INVALID_URI) {
12927                    ret = PackageManager.INSTALL_FAILED_INVALID_URI;
12928                } else if (loc == PackageHelper.RECOMMEND_MEDIA_UNAVAILABLE) {
12929                    ret = PackageManager.INSTALL_FAILED_MEDIA_UNAVAILABLE;
12930                } else {
12931                    // Override with defaults if needed.
12932                    loc = installLocationPolicy(pkgLite);
12933                    if (loc == PackageHelper.RECOMMEND_FAILED_VERSION_DOWNGRADE) {
12934                        ret = PackageManager.INSTALL_FAILED_VERSION_DOWNGRADE;
12935                    } else if (!onSd && !onInt) {
12936                        // Override install location with flags
12937                        if (loc == PackageHelper.RECOMMEND_INSTALL_EXTERNAL) {
12938                            // Set the flag to install on external media.
12939                            installFlags |= PackageManager.INSTALL_EXTERNAL;
12940                            installFlags &= ~PackageManager.INSTALL_INTERNAL;
12941                        } else if (loc == PackageHelper.RECOMMEND_INSTALL_EPHEMERAL) {
12942                            if (DEBUG_EPHEMERAL) {
12943                                Slog.v(TAG, "...setting INSTALL_EPHEMERAL install flag");
12944                            }
12945                            installFlags |= PackageManager.INSTALL_EPHEMERAL;
12946                            installFlags &= ~(PackageManager.INSTALL_EXTERNAL
12947                                    |PackageManager.INSTALL_INTERNAL);
12948                        } else {
12949                            // Make sure the flag for installing on external
12950                            // media is unset
12951                            installFlags |= PackageManager.INSTALL_INTERNAL;
12952                            installFlags &= ~PackageManager.INSTALL_EXTERNAL;
12953                        }
12954                    }
12955                }
12956            }
12957
12958            final InstallArgs args = createInstallArgs(this);
12959            mArgs = args;
12960
12961            if (ret == PackageManager.INSTALL_SUCCEEDED) {
12962                // TODO: http://b/22976637
12963                // Apps installed for "all" users use the device owner to verify the app
12964                UserHandle verifierUser = getUser();
12965                if (verifierUser == UserHandle.ALL) {
12966                    verifierUser = UserHandle.SYSTEM;
12967                }
12968
12969                /*
12970                 * Determine if we have any installed package verifiers. If we
12971                 * do, then we'll defer to them to verify the packages.
12972                 */
12973                final int requiredUid = mRequiredVerifierPackage == null ? -1
12974                        : getPackageUid(mRequiredVerifierPackage, MATCH_DEBUG_TRIAGED_MISSING,
12975                                verifierUser.getIdentifier());
12976                if (!origin.existing && requiredUid != -1
12977                        && isVerificationEnabled(verifierUser.getIdentifier(), installFlags)) {
12978                    final Intent verification = new Intent(
12979                            Intent.ACTION_PACKAGE_NEEDS_VERIFICATION);
12980                    verification.addFlags(Intent.FLAG_RECEIVER_FOREGROUND);
12981                    verification.setDataAndType(Uri.fromFile(new File(origin.resolvedPath)),
12982                            PACKAGE_MIME_TYPE);
12983                    verification.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
12984
12985                    // Query all live verifiers based on current user state
12986                    final List<ResolveInfo> receivers = queryIntentReceiversInternal(verification,
12987                            PACKAGE_MIME_TYPE, 0, verifierUser.getIdentifier());
12988
12989                    if (DEBUG_VERIFY) {
12990                        Slog.d(TAG, "Found " + receivers.size() + " verifiers for intent "
12991                                + verification.toString() + " with " + pkgLite.verifiers.length
12992                                + " optional verifiers");
12993                    }
12994
12995                    final int verificationId = mPendingVerificationToken++;
12996
12997                    verification.putExtra(PackageManager.EXTRA_VERIFICATION_ID, verificationId);
12998
12999                    verification.putExtra(PackageManager.EXTRA_VERIFICATION_INSTALLER_PACKAGE,
13000                            installerPackageName);
13001
13002                    verification.putExtra(PackageManager.EXTRA_VERIFICATION_INSTALL_FLAGS,
13003                            installFlags);
13004
13005                    verification.putExtra(PackageManager.EXTRA_VERIFICATION_PACKAGE_NAME,
13006                            pkgLite.packageName);
13007
13008                    verification.putExtra(PackageManager.EXTRA_VERIFICATION_VERSION_CODE,
13009                            pkgLite.versionCode);
13010
13011                    if (verificationInfo != null) {
13012                        if (verificationInfo.originatingUri != null) {
13013                            verification.putExtra(Intent.EXTRA_ORIGINATING_URI,
13014                                    verificationInfo.originatingUri);
13015                        }
13016                        if (verificationInfo.referrer != null) {
13017                            verification.putExtra(Intent.EXTRA_REFERRER,
13018                                    verificationInfo.referrer);
13019                        }
13020                        if (verificationInfo.originatingUid >= 0) {
13021                            verification.putExtra(Intent.EXTRA_ORIGINATING_UID,
13022                                    verificationInfo.originatingUid);
13023                        }
13024                        if (verificationInfo.installerUid >= 0) {
13025                            verification.putExtra(PackageManager.EXTRA_VERIFICATION_INSTALLER_UID,
13026                                    verificationInfo.installerUid);
13027                        }
13028                    }
13029
13030                    final PackageVerificationState verificationState = new PackageVerificationState(
13031                            requiredUid, args);
13032
13033                    mPendingVerification.append(verificationId, verificationState);
13034
13035                    final List<ComponentName> sufficientVerifiers = matchVerifiers(pkgLite,
13036                            receivers, verificationState);
13037
13038                    /*
13039                     * If any sufficient verifiers were listed in the package
13040                     * manifest, attempt to ask them.
13041                     */
13042                    if (sufficientVerifiers != null) {
13043                        final int N = sufficientVerifiers.size();
13044                        if (N == 0) {
13045                            Slog.i(TAG, "Additional verifiers required, but none installed.");
13046                            ret = PackageManager.INSTALL_FAILED_VERIFICATION_FAILURE;
13047                        } else {
13048                            for (int i = 0; i < N; i++) {
13049                                final ComponentName verifierComponent = sufficientVerifiers.get(i);
13050
13051                                final Intent sufficientIntent = new Intent(verification);
13052                                sufficientIntent.setComponent(verifierComponent);
13053                                mContext.sendBroadcastAsUser(sufficientIntent, verifierUser);
13054                            }
13055                        }
13056                    }
13057
13058                    final ComponentName requiredVerifierComponent = matchComponentForVerifier(
13059                            mRequiredVerifierPackage, receivers);
13060                    if (ret == PackageManager.INSTALL_SUCCEEDED
13061                            && mRequiredVerifierPackage != null) {
13062                        Trace.asyncTraceBegin(
13063                                TRACE_TAG_PACKAGE_MANAGER, "verification", verificationId);
13064                        /*
13065                         * Send the intent to the required verification agent,
13066                         * but only start the verification timeout after the
13067                         * target BroadcastReceivers have run.
13068                         */
13069                        verification.setComponent(requiredVerifierComponent);
13070                        mContext.sendOrderedBroadcastAsUser(verification, verifierUser,
13071                                android.Manifest.permission.PACKAGE_VERIFICATION_AGENT,
13072                                new BroadcastReceiver() {
13073                                    @Override
13074                                    public void onReceive(Context context, Intent intent) {
13075                                        final Message msg = mHandler
13076                                                .obtainMessage(CHECK_PENDING_VERIFICATION);
13077                                        msg.arg1 = verificationId;
13078                                        mHandler.sendMessageDelayed(msg, getVerificationTimeout());
13079                                    }
13080                                }, null, 0, null, null);
13081
13082                        /*
13083                         * We don't want the copy to proceed until verification
13084                         * succeeds, so null out this field.
13085                         */
13086                        mArgs = null;
13087                    }
13088                } else {
13089                    /*
13090                     * No package verification is enabled, so immediately start
13091                     * the remote call to initiate copy using temporary file.
13092                     */
13093                    ret = args.copyApk(mContainerService, true);
13094                }
13095            }
13096
13097            mRet = ret;
13098        }
13099
13100        @Override
13101        void handleReturnCode() {
13102            // If mArgs is null, then MCS couldn't be reached. When it
13103            // reconnects, it will try again to install. At that point, this
13104            // will succeed.
13105            if (mArgs != null) {
13106                processPendingInstall(mArgs, mRet);
13107            }
13108        }
13109
13110        @Override
13111        void handleServiceError() {
13112            mArgs = createInstallArgs(this);
13113            mRet = PackageManager.INSTALL_FAILED_INTERNAL_ERROR;
13114        }
13115
13116        public boolean isForwardLocked() {
13117            return (installFlags & PackageManager.INSTALL_FORWARD_LOCK) != 0;
13118        }
13119    }
13120
13121    /**
13122     * Used during creation of InstallArgs
13123     *
13124     * @param installFlags package installation flags
13125     * @return true if should be installed on external storage
13126     */
13127    private static boolean installOnExternalAsec(int installFlags) {
13128        if ((installFlags & PackageManager.INSTALL_INTERNAL) != 0) {
13129            return false;
13130        }
13131        if ((installFlags & PackageManager.INSTALL_EXTERNAL) != 0) {
13132            return true;
13133        }
13134        return false;
13135    }
13136
13137    /**
13138     * Used during creation of InstallArgs
13139     *
13140     * @param installFlags package installation flags
13141     * @return true if should be installed as forward locked
13142     */
13143    private static boolean installForwardLocked(int installFlags) {
13144        return (installFlags & PackageManager.INSTALL_FORWARD_LOCK) != 0;
13145    }
13146
13147    private InstallArgs createInstallArgs(InstallParams params) {
13148        if (params.move != null) {
13149            return new MoveInstallArgs(params);
13150        } else if (installOnExternalAsec(params.installFlags) || params.isForwardLocked()) {
13151            return new AsecInstallArgs(params);
13152        } else {
13153            return new FileInstallArgs(params);
13154        }
13155    }
13156
13157    /**
13158     * Create args that describe an existing installed package. Typically used
13159     * when cleaning up old installs, or used as a move source.
13160     */
13161    private InstallArgs createInstallArgsForExisting(int installFlags, String codePath,
13162            String resourcePath, String[] instructionSets) {
13163        final boolean isInAsec;
13164        if (installOnExternalAsec(installFlags)) {
13165            /* Apps on SD card are always in ASEC containers. */
13166            isInAsec = true;
13167        } else if (installForwardLocked(installFlags)
13168                && !codePath.startsWith(mDrmAppPrivateInstallDir.getAbsolutePath())) {
13169            /*
13170             * Forward-locked apps are only in ASEC containers if they're the
13171             * new style
13172             */
13173            isInAsec = true;
13174        } else {
13175            isInAsec = false;
13176        }
13177
13178        if (isInAsec) {
13179            return new AsecInstallArgs(codePath, instructionSets,
13180                    installOnExternalAsec(installFlags), installForwardLocked(installFlags));
13181        } else {
13182            return new FileInstallArgs(codePath, resourcePath, instructionSets);
13183        }
13184    }
13185
13186    static abstract class InstallArgs {
13187        /** @see InstallParams#origin */
13188        final OriginInfo origin;
13189        /** @see InstallParams#move */
13190        final MoveInfo move;
13191
13192        final IPackageInstallObserver2 observer;
13193        // Always refers to PackageManager flags only
13194        final int installFlags;
13195        final String installerPackageName;
13196        final String volumeUuid;
13197        final UserHandle user;
13198        final String abiOverride;
13199        final String[] installGrantPermissions;
13200        /** If non-null, drop an async trace when the install completes */
13201        final String traceMethod;
13202        final int traceCookie;
13203        final Certificate[][] certificates;
13204
13205        // The list of instruction sets supported by this app. This is currently
13206        // only used during the rmdex() phase to clean up resources. We can get rid of this
13207        // if we move dex files under the common app path.
13208        /* nullable */ String[] instructionSets;
13209
13210        InstallArgs(OriginInfo origin, MoveInfo move, IPackageInstallObserver2 observer,
13211                int installFlags, String installerPackageName, String volumeUuid,
13212                UserHandle user, String[] instructionSets,
13213                String abiOverride, String[] installGrantPermissions,
13214                String traceMethod, int traceCookie, Certificate[][] certificates) {
13215            this.origin = origin;
13216            this.move = move;
13217            this.installFlags = installFlags;
13218            this.observer = observer;
13219            this.installerPackageName = installerPackageName;
13220            this.volumeUuid = volumeUuid;
13221            this.user = user;
13222            this.instructionSets = instructionSets;
13223            this.abiOverride = abiOverride;
13224            this.installGrantPermissions = installGrantPermissions;
13225            this.traceMethod = traceMethod;
13226            this.traceCookie = traceCookie;
13227            this.certificates = certificates;
13228        }
13229
13230        abstract int copyApk(IMediaContainerService imcs, boolean temp) throws RemoteException;
13231        abstract int doPreInstall(int status);
13232
13233        /**
13234         * Rename package into final resting place. All paths on the given
13235         * scanned package should be updated to reflect the rename.
13236         */
13237        abstract boolean doRename(int status, PackageParser.Package pkg, String oldCodePath);
13238        abstract int doPostInstall(int status, int uid);
13239
13240        /** @see PackageSettingBase#codePathString */
13241        abstract String getCodePath();
13242        /** @see PackageSettingBase#resourcePathString */
13243        abstract String getResourcePath();
13244
13245        // Need installer lock especially for dex file removal.
13246        abstract void cleanUpResourcesLI();
13247        abstract boolean doPostDeleteLI(boolean delete);
13248
13249        /**
13250         * Called before the source arguments are copied. This is used mostly
13251         * for MoveParams when it needs to read the source file to put it in the
13252         * destination.
13253         */
13254        int doPreCopy() {
13255            return PackageManager.INSTALL_SUCCEEDED;
13256        }
13257
13258        /**
13259         * Called after the source arguments are copied. This is used mostly for
13260         * MoveParams when it needs to read the source file to put it in the
13261         * destination.
13262         */
13263        int doPostCopy(int uid) {
13264            return PackageManager.INSTALL_SUCCEEDED;
13265        }
13266
13267        protected boolean isFwdLocked() {
13268            return (installFlags & PackageManager.INSTALL_FORWARD_LOCK) != 0;
13269        }
13270
13271        protected boolean isExternalAsec() {
13272            return (installFlags & PackageManager.INSTALL_EXTERNAL) != 0;
13273        }
13274
13275        protected boolean isEphemeral() {
13276            return (installFlags & PackageManager.INSTALL_EPHEMERAL) != 0;
13277        }
13278
13279        UserHandle getUser() {
13280            return user;
13281        }
13282    }
13283
13284    private void removeDexFiles(List<String> allCodePaths, String[] instructionSets) {
13285        if (!allCodePaths.isEmpty()) {
13286            if (instructionSets == null) {
13287                throw new IllegalStateException("instructionSet == null");
13288            }
13289            String[] dexCodeInstructionSets = getDexCodeInstructionSets(instructionSets);
13290            for (String codePath : allCodePaths) {
13291                for (String dexCodeInstructionSet : dexCodeInstructionSets) {
13292                    try {
13293                        mInstaller.rmdex(codePath, dexCodeInstructionSet);
13294                    } catch (InstallerException ignored) {
13295                    }
13296                }
13297            }
13298        }
13299    }
13300
13301    /**
13302     * Logic to handle installation of non-ASEC applications, including copying
13303     * and renaming logic.
13304     */
13305    class FileInstallArgs extends InstallArgs {
13306        private File codeFile;
13307        private File resourceFile;
13308
13309        // Example topology:
13310        // /data/app/com.example/base.apk
13311        // /data/app/com.example/split_foo.apk
13312        // /data/app/com.example/lib/arm/libfoo.so
13313        // /data/app/com.example/lib/arm64/libfoo.so
13314        // /data/app/com.example/dalvik/arm/base.apk@classes.dex
13315
13316        /** New install */
13317        FileInstallArgs(InstallParams params) {
13318            super(params.origin, params.move, params.observer, params.installFlags,
13319                    params.installerPackageName, params.volumeUuid,
13320                    params.getUser(), null /*instructionSets*/, params.packageAbiOverride,
13321                    params.grantedRuntimePermissions,
13322                    params.traceMethod, params.traceCookie, params.certificates);
13323            if (isFwdLocked()) {
13324                throw new IllegalArgumentException("Forward locking only supported in ASEC");
13325            }
13326        }
13327
13328        /** Existing install */
13329        FileInstallArgs(String codePath, String resourcePath, String[] instructionSets) {
13330            super(OriginInfo.fromNothing(), null, null, 0, null, null, null, instructionSets,
13331                    null, null, null, 0, null /*certificates*/);
13332            this.codeFile = (codePath != null) ? new File(codePath) : null;
13333            this.resourceFile = (resourcePath != null) ? new File(resourcePath) : null;
13334        }
13335
13336        int copyApk(IMediaContainerService imcs, boolean temp) throws RemoteException {
13337            Trace.traceBegin(TRACE_TAG_PACKAGE_MANAGER, "copyApk");
13338            try {
13339                return doCopyApk(imcs, temp);
13340            } finally {
13341                Trace.traceEnd(TRACE_TAG_PACKAGE_MANAGER);
13342            }
13343        }
13344
13345        private int doCopyApk(IMediaContainerService imcs, boolean temp) throws RemoteException {
13346            if (origin.staged) {
13347                if (DEBUG_INSTALL) Slog.d(TAG, origin.file + " already staged; skipping copy");
13348                codeFile = origin.file;
13349                resourceFile = origin.file;
13350                return PackageManager.INSTALL_SUCCEEDED;
13351            }
13352
13353            try {
13354                final boolean isEphemeral = (installFlags & PackageManager.INSTALL_EPHEMERAL) != 0;
13355                final File tempDir =
13356                        mInstallerService.allocateStageDirLegacy(volumeUuid, isEphemeral);
13357                codeFile = tempDir;
13358                resourceFile = tempDir;
13359            } catch (IOException e) {
13360                Slog.w(TAG, "Failed to create copy file: " + e);
13361                return PackageManager.INSTALL_FAILED_INSUFFICIENT_STORAGE;
13362            }
13363
13364            final IParcelFileDescriptorFactory target = new IParcelFileDescriptorFactory.Stub() {
13365                @Override
13366                public ParcelFileDescriptor open(String name, int mode) throws RemoteException {
13367                    if (!FileUtils.isValidExtFilename(name)) {
13368                        throw new IllegalArgumentException("Invalid filename: " + name);
13369                    }
13370                    try {
13371                        final File file = new File(codeFile, name);
13372                        final FileDescriptor fd = Os.open(file.getAbsolutePath(),
13373                                O_RDWR | O_CREAT, 0644);
13374                        Os.chmod(file.getAbsolutePath(), 0644);
13375                        return new ParcelFileDescriptor(fd);
13376                    } catch (ErrnoException e) {
13377                        throw new RemoteException("Failed to open: " + e.getMessage());
13378                    }
13379                }
13380            };
13381
13382            int ret = PackageManager.INSTALL_SUCCEEDED;
13383            ret = imcs.copyPackage(origin.file.getAbsolutePath(), target);
13384            if (ret != PackageManager.INSTALL_SUCCEEDED) {
13385                Slog.e(TAG, "Failed to copy package");
13386                return ret;
13387            }
13388
13389            final File libraryRoot = new File(codeFile, LIB_DIR_NAME);
13390            NativeLibraryHelper.Handle handle = null;
13391            try {
13392                handle = NativeLibraryHelper.Handle.create(codeFile);
13393                ret = NativeLibraryHelper.copyNativeBinariesWithOverride(handle, libraryRoot,
13394                        abiOverride);
13395            } catch (IOException e) {
13396                Slog.e(TAG, "Copying native libraries failed", e);
13397                ret = PackageManager.INSTALL_FAILED_INTERNAL_ERROR;
13398            } finally {
13399                IoUtils.closeQuietly(handle);
13400            }
13401
13402            return ret;
13403        }
13404
13405        int doPreInstall(int status) {
13406            if (status != PackageManager.INSTALL_SUCCEEDED) {
13407                cleanUp();
13408            }
13409            return status;
13410        }
13411
13412        boolean doRename(int status, PackageParser.Package pkg, String oldCodePath) {
13413            if (status != PackageManager.INSTALL_SUCCEEDED) {
13414                cleanUp();
13415                return false;
13416            }
13417
13418            final File targetDir = codeFile.getParentFile();
13419            final File beforeCodeFile = codeFile;
13420            final File afterCodeFile = getNextCodePath(targetDir, pkg.packageName);
13421
13422            if (DEBUG_INSTALL) Slog.d(TAG, "Renaming " + beforeCodeFile + " to " + afterCodeFile);
13423            try {
13424                Os.rename(beforeCodeFile.getAbsolutePath(), afterCodeFile.getAbsolutePath());
13425            } catch (ErrnoException e) {
13426                Slog.w(TAG, "Failed to rename", e);
13427                return false;
13428            }
13429
13430            if (!SELinux.restoreconRecursive(afterCodeFile)) {
13431                Slog.w(TAG, "Failed to restorecon");
13432                return false;
13433            }
13434
13435            // Reflect the rename internally
13436            codeFile = afterCodeFile;
13437            resourceFile = afterCodeFile;
13438
13439            // Reflect the rename in scanned details
13440            pkg.setCodePath(afterCodeFile.getAbsolutePath());
13441            pkg.setBaseCodePath(FileUtils.rewriteAfterRename(beforeCodeFile,
13442                    afterCodeFile, pkg.baseCodePath));
13443            pkg.setSplitCodePaths(FileUtils.rewriteAfterRename(beforeCodeFile,
13444                    afterCodeFile, pkg.splitCodePaths));
13445
13446            // Reflect the rename in app info
13447            pkg.setApplicationVolumeUuid(pkg.volumeUuid);
13448            pkg.setApplicationInfoCodePath(pkg.codePath);
13449            pkg.setApplicationInfoBaseCodePath(pkg.baseCodePath);
13450            pkg.setApplicationInfoSplitCodePaths(pkg.splitCodePaths);
13451            pkg.setApplicationInfoResourcePath(pkg.codePath);
13452            pkg.setApplicationInfoBaseResourcePath(pkg.baseCodePath);
13453            pkg.setApplicationInfoSplitResourcePaths(pkg.splitCodePaths);
13454
13455            return true;
13456        }
13457
13458        int doPostInstall(int status, int uid) {
13459            if (status != PackageManager.INSTALL_SUCCEEDED) {
13460                cleanUp();
13461            }
13462            return status;
13463        }
13464
13465        @Override
13466        String getCodePath() {
13467            return (codeFile != null) ? codeFile.getAbsolutePath() : null;
13468        }
13469
13470        @Override
13471        String getResourcePath() {
13472            return (resourceFile != null) ? resourceFile.getAbsolutePath() : null;
13473        }
13474
13475        private boolean cleanUp() {
13476            if (codeFile == null || !codeFile.exists()) {
13477                return false;
13478            }
13479
13480            removeCodePathLI(codeFile);
13481
13482            if (resourceFile != null && !FileUtils.contains(codeFile, resourceFile)) {
13483                resourceFile.delete();
13484            }
13485
13486            return true;
13487        }
13488
13489        void cleanUpResourcesLI() {
13490            // Try enumerating all code paths before deleting
13491            List<String> allCodePaths = Collections.EMPTY_LIST;
13492            if (codeFile != null && codeFile.exists()) {
13493                try {
13494                    final PackageLite pkg = PackageParser.parsePackageLite(codeFile, 0);
13495                    allCodePaths = pkg.getAllCodePaths();
13496                } catch (PackageParserException e) {
13497                    // Ignored; we tried our best
13498                }
13499            }
13500
13501            cleanUp();
13502            removeDexFiles(allCodePaths, instructionSets);
13503        }
13504
13505        boolean doPostDeleteLI(boolean delete) {
13506            // XXX err, shouldn't we respect the delete flag?
13507            cleanUpResourcesLI();
13508            return true;
13509        }
13510    }
13511
13512    private boolean isAsecExternal(String cid) {
13513        final String asecPath = PackageHelper.getSdFilesystem(cid);
13514        return !asecPath.startsWith(mAsecInternalPath);
13515    }
13516
13517    private static void maybeThrowExceptionForMultiArchCopy(String message, int copyRet) throws
13518            PackageManagerException {
13519        if (copyRet < 0) {
13520            if (copyRet != PackageManager.NO_NATIVE_LIBRARIES &&
13521                    copyRet != PackageManager.INSTALL_FAILED_NO_MATCHING_ABIS) {
13522                throw new PackageManagerException(copyRet, message);
13523            }
13524        }
13525    }
13526
13527    /**
13528     * Extract the MountService "container ID" from the full code path of an
13529     * .apk.
13530     */
13531    static String cidFromCodePath(String fullCodePath) {
13532        int eidx = fullCodePath.lastIndexOf("/");
13533        String subStr1 = fullCodePath.substring(0, eidx);
13534        int sidx = subStr1.lastIndexOf("/");
13535        return subStr1.substring(sidx+1, eidx);
13536    }
13537
13538    /**
13539     * Logic to handle installation of ASEC applications, including copying and
13540     * renaming logic.
13541     */
13542    class AsecInstallArgs extends InstallArgs {
13543        static final String RES_FILE_NAME = "pkg.apk";
13544        static final String PUBLIC_RES_FILE_NAME = "res.zip";
13545
13546        String cid;
13547        String packagePath;
13548        String resourcePath;
13549
13550        /** New install */
13551        AsecInstallArgs(InstallParams params) {
13552            super(params.origin, params.move, params.observer, params.installFlags,
13553                    params.installerPackageName, params.volumeUuid,
13554                    params.getUser(), null /* instruction sets */, params.packageAbiOverride,
13555                    params.grantedRuntimePermissions,
13556                    params.traceMethod, params.traceCookie, params.certificates);
13557        }
13558
13559        /** Existing install */
13560        AsecInstallArgs(String fullCodePath, String[] instructionSets,
13561                        boolean isExternal, boolean isForwardLocked) {
13562            super(OriginInfo.fromNothing(), null, null, (isExternal ? INSTALL_EXTERNAL : 0)
13563              | (isForwardLocked ? INSTALL_FORWARD_LOCK : 0), null, null, null,
13564                    instructionSets, null, null, null, 0, null /*certificates*/);
13565            // Hackily pretend we're still looking at a full code path
13566            if (!fullCodePath.endsWith(RES_FILE_NAME)) {
13567                fullCodePath = new File(fullCodePath, RES_FILE_NAME).getAbsolutePath();
13568            }
13569
13570            // Extract cid from fullCodePath
13571            int eidx = fullCodePath.lastIndexOf("/");
13572            String subStr1 = fullCodePath.substring(0, eidx);
13573            int sidx = subStr1.lastIndexOf("/");
13574            cid = subStr1.substring(sidx+1, eidx);
13575            setMountPath(subStr1);
13576        }
13577
13578        AsecInstallArgs(String cid, String[] instructionSets, boolean isForwardLocked) {
13579            super(OriginInfo.fromNothing(), null, null, (isAsecExternal(cid) ? INSTALL_EXTERNAL : 0)
13580              | (isForwardLocked ? INSTALL_FORWARD_LOCK : 0), null, null, null,
13581                    instructionSets, null, null, null, 0, null /*certificates*/);
13582            this.cid = cid;
13583            setMountPath(PackageHelper.getSdDir(cid));
13584        }
13585
13586        void createCopyFile() {
13587            cid = mInstallerService.allocateExternalStageCidLegacy();
13588        }
13589
13590        int copyApk(IMediaContainerService imcs, boolean temp) throws RemoteException {
13591            if (origin.staged && origin.cid != null) {
13592                if (DEBUG_INSTALL) Slog.d(TAG, origin.cid + " already staged; skipping copy");
13593                cid = origin.cid;
13594                setMountPath(PackageHelper.getSdDir(cid));
13595                return PackageManager.INSTALL_SUCCEEDED;
13596            }
13597
13598            if (temp) {
13599                createCopyFile();
13600            } else {
13601                /*
13602                 * Pre-emptively destroy the container since it's destroyed if
13603                 * copying fails due to it existing anyway.
13604                 */
13605                PackageHelper.destroySdDir(cid);
13606            }
13607
13608            final String newMountPath = imcs.copyPackageToContainer(
13609                    origin.file.getAbsolutePath(), cid, getEncryptKey(), isExternalAsec(),
13610                    isFwdLocked(), deriveAbiOverride(abiOverride, null /* settings */));
13611
13612            if (newMountPath != null) {
13613                setMountPath(newMountPath);
13614                return PackageManager.INSTALL_SUCCEEDED;
13615            } else {
13616                return PackageManager.INSTALL_FAILED_CONTAINER_ERROR;
13617            }
13618        }
13619
13620        @Override
13621        String getCodePath() {
13622            return packagePath;
13623        }
13624
13625        @Override
13626        String getResourcePath() {
13627            return resourcePath;
13628        }
13629
13630        int doPreInstall(int status) {
13631            if (status != PackageManager.INSTALL_SUCCEEDED) {
13632                // Destroy container
13633                PackageHelper.destroySdDir(cid);
13634            } else {
13635                boolean mounted = PackageHelper.isContainerMounted(cid);
13636                if (!mounted) {
13637                    String newMountPath = PackageHelper.mountSdDir(cid, getEncryptKey(),
13638                            Process.SYSTEM_UID);
13639                    if (newMountPath != null) {
13640                        setMountPath(newMountPath);
13641                    } else {
13642                        return PackageManager.INSTALL_FAILED_CONTAINER_ERROR;
13643                    }
13644                }
13645            }
13646            return status;
13647        }
13648
13649        boolean doRename(int status, PackageParser.Package pkg, String oldCodePath) {
13650            String newCacheId = getNextCodePath(oldCodePath, pkg.packageName, "/" + RES_FILE_NAME);
13651            String newMountPath = null;
13652            if (PackageHelper.isContainerMounted(cid)) {
13653                // Unmount the container
13654                if (!PackageHelper.unMountSdDir(cid)) {
13655                    Slog.i(TAG, "Failed to unmount " + cid + " before renaming");
13656                    return false;
13657                }
13658            }
13659            if (!PackageHelper.renameSdDir(cid, newCacheId)) {
13660                Slog.e(TAG, "Failed to rename " + cid + " to " + newCacheId +
13661                        " which might be stale. Will try to clean up.");
13662                // Clean up the stale container and proceed to recreate.
13663                if (!PackageHelper.destroySdDir(newCacheId)) {
13664                    Slog.e(TAG, "Very strange. Cannot clean up stale container " + newCacheId);
13665                    return false;
13666                }
13667                // Successfully cleaned up stale container. Try to rename again.
13668                if (!PackageHelper.renameSdDir(cid, newCacheId)) {
13669                    Slog.e(TAG, "Failed to rename " + cid + " to " + newCacheId
13670                            + " inspite of cleaning it up.");
13671                    return false;
13672                }
13673            }
13674            if (!PackageHelper.isContainerMounted(newCacheId)) {
13675                Slog.w(TAG, "Mounting container " + newCacheId);
13676                newMountPath = PackageHelper.mountSdDir(newCacheId,
13677                        getEncryptKey(), Process.SYSTEM_UID);
13678            } else {
13679                newMountPath = PackageHelper.getSdDir(newCacheId);
13680            }
13681            if (newMountPath == null) {
13682                Slog.w(TAG, "Failed to get cache path for  " + newCacheId);
13683                return false;
13684            }
13685            Log.i(TAG, "Succesfully renamed " + cid +
13686                    " to " + newCacheId +
13687                    " at new path: " + newMountPath);
13688            cid = newCacheId;
13689
13690            final File beforeCodeFile = new File(packagePath);
13691            setMountPath(newMountPath);
13692            final File afterCodeFile = new File(packagePath);
13693
13694            // Reflect the rename in scanned details
13695            pkg.setCodePath(afterCodeFile.getAbsolutePath());
13696            pkg.setBaseCodePath(FileUtils.rewriteAfterRename(beforeCodeFile,
13697                    afterCodeFile, pkg.baseCodePath));
13698            pkg.setSplitCodePaths(FileUtils.rewriteAfterRename(beforeCodeFile,
13699                    afterCodeFile, pkg.splitCodePaths));
13700
13701            // Reflect the rename in app info
13702            pkg.setApplicationVolumeUuid(pkg.volumeUuid);
13703            pkg.setApplicationInfoCodePath(pkg.codePath);
13704            pkg.setApplicationInfoBaseCodePath(pkg.baseCodePath);
13705            pkg.setApplicationInfoSplitCodePaths(pkg.splitCodePaths);
13706            pkg.setApplicationInfoResourcePath(pkg.codePath);
13707            pkg.setApplicationInfoBaseResourcePath(pkg.baseCodePath);
13708            pkg.setApplicationInfoSplitResourcePaths(pkg.splitCodePaths);
13709
13710            return true;
13711        }
13712
13713        private void setMountPath(String mountPath) {
13714            final File mountFile = new File(mountPath);
13715
13716            final File monolithicFile = new File(mountFile, RES_FILE_NAME);
13717            if (monolithicFile.exists()) {
13718                packagePath = monolithicFile.getAbsolutePath();
13719                if (isFwdLocked()) {
13720                    resourcePath = new File(mountFile, PUBLIC_RES_FILE_NAME).getAbsolutePath();
13721                } else {
13722                    resourcePath = packagePath;
13723                }
13724            } else {
13725                packagePath = mountFile.getAbsolutePath();
13726                resourcePath = packagePath;
13727            }
13728        }
13729
13730        int doPostInstall(int status, int uid) {
13731            if (status != PackageManager.INSTALL_SUCCEEDED) {
13732                cleanUp();
13733            } else {
13734                final int groupOwner;
13735                final String protectedFile;
13736                if (isFwdLocked()) {
13737                    groupOwner = UserHandle.getSharedAppGid(uid);
13738                    protectedFile = RES_FILE_NAME;
13739                } else {
13740                    groupOwner = -1;
13741                    protectedFile = null;
13742                }
13743
13744                if (uid < Process.FIRST_APPLICATION_UID
13745                        || !PackageHelper.fixSdPermissions(cid, groupOwner, protectedFile)) {
13746                    Slog.e(TAG, "Failed to finalize " + cid);
13747                    PackageHelper.destroySdDir(cid);
13748                    return PackageManager.INSTALL_FAILED_CONTAINER_ERROR;
13749                }
13750
13751                boolean mounted = PackageHelper.isContainerMounted(cid);
13752                if (!mounted) {
13753                    PackageHelper.mountSdDir(cid, getEncryptKey(), Process.myUid());
13754                }
13755            }
13756            return status;
13757        }
13758
13759        private void cleanUp() {
13760            if (DEBUG_SD_INSTALL) Slog.i(TAG, "cleanUp");
13761
13762            // Destroy secure container
13763            PackageHelper.destroySdDir(cid);
13764        }
13765
13766        private List<String> getAllCodePaths() {
13767            final File codeFile = new File(getCodePath());
13768            if (codeFile != null && codeFile.exists()) {
13769                try {
13770                    final PackageLite pkg = PackageParser.parsePackageLite(codeFile, 0);
13771                    return pkg.getAllCodePaths();
13772                } catch (PackageParserException e) {
13773                    // Ignored; we tried our best
13774                }
13775            }
13776            return Collections.EMPTY_LIST;
13777        }
13778
13779        void cleanUpResourcesLI() {
13780            // Enumerate all code paths before deleting
13781            cleanUpResourcesLI(getAllCodePaths());
13782        }
13783
13784        private void cleanUpResourcesLI(List<String> allCodePaths) {
13785            cleanUp();
13786            removeDexFiles(allCodePaths, instructionSets);
13787        }
13788
13789        String getPackageName() {
13790            return getAsecPackageName(cid);
13791        }
13792
13793        boolean doPostDeleteLI(boolean delete) {
13794            if (DEBUG_SD_INSTALL) Slog.i(TAG, "doPostDeleteLI() del=" + delete);
13795            final List<String> allCodePaths = getAllCodePaths();
13796            boolean mounted = PackageHelper.isContainerMounted(cid);
13797            if (mounted) {
13798                // Unmount first
13799                if (PackageHelper.unMountSdDir(cid)) {
13800                    mounted = false;
13801                }
13802            }
13803            if (!mounted && delete) {
13804                cleanUpResourcesLI(allCodePaths);
13805            }
13806            return !mounted;
13807        }
13808
13809        @Override
13810        int doPreCopy() {
13811            if (isFwdLocked()) {
13812                if (!PackageHelper.fixSdPermissions(cid, getPackageUid(DEFAULT_CONTAINER_PACKAGE,
13813                        MATCH_SYSTEM_ONLY, UserHandle.USER_SYSTEM), RES_FILE_NAME)) {
13814                    return PackageManager.INSTALL_FAILED_CONTAINER_ERROR;
13815                }
13816            }
13817
13818            return PackageManager.INSTALL_SUCCEEDED;
13819        }
13820
13821        @Override
13822        int doPostCopy(int uid) {
13823            if (isFwdLocked()) {
13824                if (uid < Process.FIRST_APPLICATION_UID
13825                        || !PackageHelper.fixSdPermissions(cid, UserHandle.getSharedAppGid(uid),
13826                                RES_FILE_NAME)) {
13827                    Slog.e(TAG, "Failed to finalize " + cid);
13828                    PackageHelper.destroySdDir(cid);
13829                    return PackageManager.INSTALL_FAILED_CONTAINER_ERROR;
13830                }
13831            }
13832
13833            return PackageManager.INSTALL_SUCCEEDED;
13834        }
13835    }
13836
13837    /**
13838     * Logic to handle movement of existing installed applications.
13839     */
13840    class MoveInstallArgs extends InstallArgs {
13841        private File codeFile;
13842        private File resourceFile;
13843
13844        /** New install */
13845        MoveInstallArgs(InstallParams params) {
13846            super(params.origin, params.move, params.observer, params.installFlags,
13847                    params.installerPackageName, params.volumeUuid,
13848                    params.getUser(), null /* instruction sets */, params.packageAbiOverride,
13849                    params.grantedRuntimePermissions,
13850                    params.traceMethod, params.traceCookie, params.certificates);
13851        }
13852
13853        int copyApk(IMediaContainerService imcs, boolean temp) {
13854            if (DEBUG_INSTALL) Slog.d(TAG, "Moving " + move.packageName + " from "
13855                    + move.fromUuid + " to " + move.toUuid);
13856            synchronized (mInstaller) {
13857                try {
13858                    mInstaller.moveCompleteApp(move.fromUuid, move.toUuid, move.packageName,
13859                            move.dataAppName, move.appId, move.seinfo, move.targetSdkVersion);
13860                } catch (InstallerException e) {
13861                    Slog.w(TAG, "Failed to move app", e);
13862                    return PackageManager.INSTALL_FAILED_INTERNAL_ERROR;
13863                }
13864            }
13865
13866            codeFile = new File(Environment.getDataAppDirectory(move.toUuid), move.dataAppName);
13867            resourceFile = codeFile;
13868            if (DEBUG_INSTALL) Slog.d(TAG, "codeFile after move is " + codeFile);
13869
13870            return PackageManager.INSTALL_SUCCEEDED;
13871        }
13872
13873        int doPreInstall(int status) {
13874            if (status != PackageManager.INSTALL_SUCCEEDED) {
13875                cleanUp(move.toUuid);
13876            }
13877            return status;
13878        }
13879
13880        boolean doRename(int status, PackageParser.Package pkg, String oldCodePath) {
13881            if (status != PackageManager.INSTALL_SUCCEEDED) {
13882                cleanUp(move.toUuid);
13883                return false;
13884            }
13885
13886            // Reflect the move in app info
13887            pkg.setApplicationVolumeUuid(pkg.volumeUuid);
13888            pkg.setApplicationInfoCodePath(pkg.codePath);
13889            pkg.setApplicationInfoBaseCodePath(pkg.baseCodePath);
13890            pkg.setApplicationInfoSplitCodePaths(pkg.splitCodePaths);
13891            pkg.setApplicationInfoResourcePath(pkg.codePath);
13892            pkg.setApplicationInfoBaseResourcePath(pkg.baseCodePath);
13893            pkg.setApplicationInfoSplitResourcePaths(pkg.splitCodePaths);
13894
13895            return true;
13896        }
13897
13898        int doPostInstall(int status, int uid) {
13899            if (status == PackageManager.INSTALL_SUCCEEDED) {
13900                cleanUp(move.fromUuid);
13901            } else {
13902                cleanUp(move.toUuid);
13903            }
13904            return status;
13905        }
13906
13907        @Override
13908        String getCodePath() {
13909            return (codeFile != null) ? codeFile.getAbsolutePath() : null;
13910        }
13911
13912        @Override
13913        String getResourcePath() {
13914            return (resourceFile != null) ? resourceFile.getAbsolutePath() : null;
13915        }
13916
13917        private boolean cleanUp(String volumeUuid) {
13918            final File codeFile = new File(Environment.getDataAppDirectory(volumeUuid),
13919                    move.dataAppName);
13920            Slog.d(TAG, "Cleaning up " + move.packageName + " on " + volumeUuid);
13921            final int[] userIds = sUserManager.getUserIds();
13922            synchronized (mInstallLock) {
13923                // Clean up both app data and code
13924                // All package moves are frozen until finished
13925                for (int userId : userIds) {
13926                    try {
13927                        mInstaller.destroyAppData(volumeUuid, move.packageName, userId,
13928                                StorageManager.FLAG_STORAGE_DE | StorageManager.FLAG_STORAGE_CE, 0);
13929                    } catch (InstallerException e) {
13930                        Slog.w(TAG, String.valueOf(e));
13931                    }
13932                }
13933                removeCodePathLI(codeFile);
13934            }
13935            return true;
13936        }
13937
13938        void cleanUpResourcesLI() {
13939            throw new UnsupportedOperationException();
13940        }
13941
13942        boolean doPostDeleteLI(boolean delete) {
13943            throw new UnsupportedOperationException();
13944        }
13945    }
13946
13947    static String getAsecPackageName(String packageCid) {
13948        int idx = packageCid.lastIndexOf("-");
13949        if (idx == -1) {
13950            return packageCid;
13951        }
13952        return packageCid.substring(0, idx);
13953    }
13954
13955    // Utility method used to create code paths based on package name and available index.
13956    private static String getNextCodePath(String oldCodePath, String prefix, String suffix) {
13957        String idxStr = "";
13958        int idx = 1;
13959        // Fall back to default value of idx=1 if prefix is not
13960        // part of oldCodePath
13961        if (oldCodePath != null) {
13962            String subStr = oldCodePath;
13963            // Drop the suffix right away
13964            if (suffix != null && subStr.endsWith(suffix)) {
13965                subStr = subStr.substring(0, subStr.length() - suffix.length());
13966            }
13967            // If oldCodePath already contains prefix find out the
13968            // ending index to either increment or decrement.
13969            int sidx = subStr.lastIndexOf(prefix);
13970            if (sidx != -1) {
13971                subStr = subStr.substring(sidx + prefix.length());
13972                if (subStr != null) {
13973                    if (subStr.startsWith(INSTALL_PACKAGE_SUFFIX)) {
13974                        subStr = subStr.substring(INSTALL_PACKAGE_SUFFIX.length());
13975                    }
13976                    try {
13977                        idx = Integer.parseInt(subStr);
13978                        if (idx <= 1) {
13979                            idx++;
13980                        } else {
13981                            idx--;
13982                        }
13983                    } catch(NumberFormatException e) {
13984                    }
13985                }
13986            }
13987        }
13988        idxStr = INSTALL_PACKAGE_SUFFIX + Integer.toString(idx);
13989        return prefix + idxStr;
13990    }
13991
13992    private File getNextCodePath(File targetDir, String packageName) {
13993        int suffix = 1;
13994        File result;
13995        do {
13996            result = new File(targetDir, packageName + "-" + suffix);
13997            suffix++;
13998        } while (result.exists());
13999        return result;
14000    }
14001
14002    // Utility method that returns the relative package path with respect
14003    // to the installation directory. Like say for /data/data/com.test-1.apk
14004    // string com.test-1 is returned.
14005    static String deriveCodePathName(String codePath) {
14006        if (codePath == null) {
14007            return null;
14008        }
14009        final File codeFile = new File(codePath);
14010        final String name = codeFile.getName();
14011        if (codeFile.isDirectory()) {
14012            return name;
14013        } else if (name.endsWith(".apk") || name.endsWith(".tmp")) {
14014            final int lastDot = name.lastIndexOf('.');
14015            return name.substring(0, lastDot);
14016        } else {
14017            Slog.w(TAG, "Odd, " + codePath + " doesn't look like an APK");
14018            return null;
14019        }
14020    }
14021
14022    static class PackageInstalledInfo {
14023        String name;
14024        int uid;
14025        // The set of users that originally had this package installed.
14026        int[] origUsers;
14027        // The set of users that now have this package installed.
14028        int[] newUsers;
14029        PackageParser.Package pkg;
14030        int returnCode;
14031        String returnMsg;
14032        PackageRemovedInfo removedInfo;
14033        ArrayMap<String, PackageInstalledInfo> addedChildPackages;
14034
14035        public void setError(int code, String msg) {
14036            setReturnCode(code);
14037            setReturnMessage(msg);
14038            Slog.w(TAG, msg);
14039        }
14040
14041        public void setError(String msg, PackageParserException e) {
14042            setReturnCode(e.error);
14043            setReturnMessage(ExceptionUtils.getCompleteMessage(msg, e));
14044            Slog.w(TAG, msg, e);
14045        }
14046
14047        public void setError(String msg, PackageManagerException e) {
14048            returnCode = e.error;
14049            setReturnMessage(ExceptionUtils.getCompleteMessage(msg, e));
14050            Slog.w(TAG, msg, e);
14051        }
14052
14053        public void setReturnCode(int returnCode) {
14054            this.returnCode = returnCode;
14055            final int childCount = (addedChildPackages != null) ? addedChildPackages.size() : 0;
14056            for (int i = 0; i < childCount; i++) {
14057                addedChildPackages.valueAt(i).returnCode = returnCode;
14058            }
14059        }
14060
14061        private void setReturnMessage(String returnMsg) {
14062            this.returnMsg = returnMsg;
14063            final int childCount = (addedChildPackages != null) ? addedChildPackages.size() : 0;
14064            for (int i = 0; i < childCount; i++) {
14065                addedChildPackages.valueAt(i).returnMsg = returnMsg;
14066            }
14067        }
14068
14069        // In some error cases we want to convey more info back to the observer
14070        String origPackage;
14071        String origPermission;
14072    }
14073
14074    /*
14075     * Install a non-existing package.
14076     */
14077    private void installNewPackageLIF(PackageParser.Package pkg, final int policyFlags,
14078            int scanFlags, UserHandle user, String installerPackageName, String volumeUuid,
14079            PackageInstalledInfo res) {
14080        Trace.traceBegin(TRACE_TAG_PACKAGE_MANAGER, "installNewPackage");
14081
14082        // Remember this for later, in case we need to rollback this install
14083        String pkgName = pkg.packageName;
14084
14085        if (DEBUG_INSTALL) Slog.d(TAG, "installNewPackageLI: " + pkg);
14086
14087        synchronized(mPackages) {
14088            if (mSettings.mRenamedPackages.containsKey(pkgName)) {
14089                // A package with the same name is already installed, though
14090                // it has been renamed to an older name.  The package we
14091                // are trying to install should be installed as an update to
14092                // the existing one, but that has not been requested, so bail.
14093                res.setError(INSTALL_FAILED_ALREADY_EXISTS, "Attempt to re-install " + pkgName
14094                        + " without first uninstalling package running as "
14095                        + mSettings.mRenamedPackages.get(pkgName));
14096                return;
14097            }
14098            if (mPackages.containsKey(pkgName)) {
14099                // Don't allow installation over an existing package with the same name.
14100                res.setError(INSTALL_FAILED_ALREADY_EXISTS, "Attempt to re-install " + pkgName
14101                        + " without first uninstalling.");
14102                return;
14103            }
14104        }
14105
14106        try {
14107            PackageParser.Package newPackage = scanPackageTracedLI(pkg, policyFlags, scanFlags,
14108                    System.currentTimeMillis(), user);
14109
14110            updateSettingsLI(newPackage, installerPackageName, null, res, user);
14111
14112            if (res.returnCode == PackageManager.INSTALL_SUCCEEDED) {
14113                prepareAppDataAfterInstallLIF(newPackage);
14114
14115            } else {
14116                // Remove package from internal structures, but keep around any
14117                // data that might have already existed
14118                deletePackageLIF(pkgName, UserHandle.ALL, false, null,
14119                        PackageManager.DELETE_KEEP_DATA, res.removedInfo, true, null);
14120            }
14121        } catch (PackageManagerException e) {
14122            res.setError("Package couldn't be installed in " + pkg.codePath, e);
14123        }
14124
14125        Trace.traceEnd(TRACE_TAG_PACKAGE_MANAGER);
14126    }
14127
14128    private boolean shouldCheckUpgradeKeySetLP(PackageSetting oldPs, int scanFlags) {
14129        // Can't rotate keys during boot or if sharedUser.
14130        if (oldPs == null || (scanFlags&SCAN_INITIAL) != 0 || oldPs.sharedUser != null
14131                || !oldPs.keySetData.isUsingUpgradeKeySets()) {
14132            return false;
14133        }
14134        // app is using upgradeKeySets; make sure all are valid
14135        KeySetManagerService ksms = mSettings.mKeySetManagerService;
14136        long[] upgradeKeySets = oldPs.keySetData.getUpgradeKeySets();
14137        for (int i = 0; i < upgradeKeySets.length; i++) {
14138            if (!ksms.isIdValidKeySetId(upgradeKeySets[i])) {
14139                Slog.wtf(TAG, "Package "
14140                         + (oldPs.name != null ? oldPs.name : "<null>")
14141                         + " contains upgrade-key-set reference to unknown key-set: "
14142                         + upgradeKeySets[i]
14143                         + " reverting to signatures check.");
14144                return false;
14145            }
14146        }
14147        return true;
14148    }
14149
14150    private boolean checkUpgradeKeySetLP(PackageSetting oldPS, PackageParser.Package newPkg) {
14151        // Upgrade keysets are being used.  Determine if new package has a superset of the
14152        // required keys.
14153        long[] upgradeKeySets = oldPS.keySetData.getUpgradeKeySets();
14154        KeySetManagerService ksms = mSettings.mKeySetManagerService;
14155        for (int i = 0; i < upgradeKeySets.length; i++) {
14156            Set<PublicKey> upgradeSet = ksms.getPublicKeysFromKeySetLPr(upgradeKeySets[i]);
14157            if (upgradeSet != null && newPkg.mSigningKeys.containsAll(upgradeSet)) {
14158                return true;
14159            }
14160        }
14161        return false;
14162    }
14163
14164    private static void updateDigest(MessageDigest digest, File file) throws IOException {
14165        try (DigestInputStream digestStream =
14166                new DigestInputStream(new FileInputStream(file), digest)) {
14167            while (digestStream.read() != -1) {} // nothing to do; just plow through the file
14168        }
14169    }
14170
14171    private void replacePackageLIF(PackageParser.Package pkg, final int policyFlags, int scanFlags,
14172            UserHandle user, String installerPackageName, PackageInstalledInfo res) {
14173        final boolean isEphemeral = (policyFlags & PackageParser.PARSE_IS_EPHEMERAL) != 0;
14174
14175        final PackageParser.Package oldPackage;
14176        final String pkgName = pkg.packageName;
14177        final int[] allUsers;
14178        final int[] installedUsers;
14179
14180        synchronized(mPackages) {
14181            oldPackage = mPackages.get(pkgName);
14182            if (DEBUG_INSTALL) Slog.d(TAG, "replacePackageLI: new=" + pkg + ", old=" + oldPackage);
14183
14184            // don't allow upgrade to target a release SDK from a pre-release SDK
14185            final boolean oldTargetsPreRelease = oldPackage.applicationInfo.targetSdkVersion
14186                    == android.os.Build.VERSION_CODES.CUR_DEVELOPMENT;
14187            final boolean newTargetsPreRelease = pkg.applicationInfo.targetSdkVersion
14188                    == android.os.Build.VERSION_CODES.CUR_DEVELOPMENT;
14189            if (oldTargetsPreRelease
14190                    && !newTargetsPreRelease
14191                    && ((policyFlags & PackageParser.PARSE_FORCE_SDK) == 0)) {
14192                Slog.w(TAG, "Can't install package targeting released sdk");
14193                res.setReturnCode(PackageManager.INSTALL_FAILED_UPDATE_INCOMPATIBLE);
14194                return;
14195            }
14196
14197            // don't allow an upgrade from full to ephemeral
14198            final boolean oldIsEphemeral = oldPackage.applicationInfo.isEphemeralApp();
14199            if (isEphemeral && !oldIsEphemeral) {
14200                // can't downgrade from full to ephemeral
14201                Slog.w(TAG, "Can't replace app with ephemeral: " + pkgName);
14202                res.setReturnCode(PackageManager.INSTALL_FAILED_EPHEMERAL_INVALID);
14203                return;
14204            }
14205
14206            // verify signatures are valid
14207            final PackageSetting ps = mSettings.mPackages.get(pkgName);
14208            if (shouldCheckUpgradeKeySetLP(ps, scanFlags)) {
14209                if (!checkUpgradeKeySetLP(ps, pkg)) {
14210                    res.setError(INSTALL_FAILED_UPDATE_INCOMPATIBLE,
14211                            "New package not signed by keys specified by upgrade-keysets: "
14212                                    + pkgName);
14213                    return;
14214                }
14215            } else {
14216                // default to original signature matching
14217                if (compareSignatures(oldPackage.mSignatures, pkg.mSignatures)
14218                        != PackageManager.SIGNATURE_MATCH) {
14219                    res.setError(INSTALL_FAILED_UPDATE_INCOMPATIBLE,
14220                            "New package has a different signature: " + pkgName);
14221                    return;
14222                }
14223            }
14224
14225            // don't allow a system upgrade unless the upgrade hash matches
14226            if (oldPackage.restrictUpdateHash != null && oldPackage.isSystemApp()) {
14227                byte[] digestBytes = null;
14228                try {
14229                    final MessageDigest digest = MessageDigest.getInstance("SHA-512");
14230                    updateDigest(digest, new File(pkg.baseCodePath));
14231                    if (!ArrayUtils.isEmpty(pkg.splitCodePaths)) {
14232                        for (String path : pkg.splitCodePaths) {
14233                            updateDigest(digest, new File(path));
14234                        }
14235                    }
14236                    digestBytes = digest.digest();
14237                } catch (NoSuchAlgorithmException | IOException e) {
14238                    res.setError(INSTALL_FAILED_INVALID_APK,
14239                            "Could not compute hash: " + pkgName);
14240                    return;
14241                }
14242                if (!Arrays.equals(oldPackage.restrictUpdateHash, digestBytes)) {
14243                    res.setError(INSTALL_FAILED_INVALID_APK,
14244                            "New package fails restrict-update check: " + pkgName);
14245                    return;
14246                }
14247                // retain upgrade restriction
14248                pkg.restrictUpdateHash = oldPackage.restrictUpdateHash;
14249            }
14250
14251            // Check for shared user id changes
14252            String invalidPackageName =
14253                    getParentOrChildPackageChangedSharedUser(oldPackage, pkg);
14254            if (invalidPackageName != null) {
14255                res.setError(INSTALL_FAILED_SHARED_USER_INCOMPATIBLE,
14256                        "Package " + invalidPackageName + " tried to change user "
14257                                + oldPackage.mSharedUserId);
14258                return;
14259            }
14260
14261            // In case of rollback, remember per-user/profile install state
14262            allUsers = sUserManager.getUserIds();
14263            installedUsers = ps.queryInstalledUsers(allUsers, true);
14264        }
14265
14266        // Update what is removed
14267        res.removedInfo = new PackageRemovedInfo();
14268        res.removedInfo.uid = oldPackage.applicationInfo.uid;
14269        res.removedInfo.removedPackage = oldPackage.packageName;
14270        res.removedInfo.isUpdate = true;
14271        res.removedInfo.origUsers = installedUsers;
14272        final int childCount = (oldPackage.childPackages != null)
14273                ? oldPackage.childPackages.size() : 0;
14274        for (int i = 0; i < childCount; i++) {
14275            boolean childPackageUpdated = false;
14276            PackageParser.Package childPkg = oldPackage.childPackages.get(i);
14277            if (res.addedChildPackages != null) {
14278                PackageInstalledInfo childRes = res.addedChildPackages.get(childPkg.packageName);
14279                if (childRes != null) {
14280                    childRes.removedInfo.uid = childPkg.applicationInfo.uid;
14281                    childRes.removedInfo.removedPackage = childPkg.packageName;
14282                    childRes.removedInfo.isUpdate = true;
14283                    childPackageUpdated = true;
14284                }
14285            }
14286            if (!childPackageUpdated) {
14287                PackageRemovedInfo childRemovedRes = new PackageRemovedInfo();
14288                childRemovedRes.removedPackage = childPkg.packageName;
14289                childRemovedRes.isUpdate = false;
14290                childRemovedRes.dataRemoved = true;
14291                synchronized (mPackages) {
14292                    PackageSetting childPs = mSettings.peekPackageLPr(childPkg.packageName);
14293                    if (childPs != null) {
14294                        childRemovedRes.origUsers = childPs.queryInstalledUsers(allUsers, true);
14295                    }
14296                }
14297                if (res.removedInfo.removedChildPackages == null) {
14298                    res.removedInfo.removedChildPackages = new ArrayMap<>();
14299                }
14300                res.removedInfo.removedChildPackages.put(childPkg.packageName, childRemovedRes);
14301            }
14302        }
14303
14304        boolean sysPkg = (isSystemApp(oldPackage));
14305        if (sysPkg) {
14306            // Set the system/privileged flags as needed
14307            final boolean privileged =
14308                    (oldPackage.applicationInfo.privateFlags
14309                            & ApplicationInfo.PRIVATE_FLAG_PRIVILEGED) != 0;
14310            final int systemPolicyFlags = policyFlags
14311                    | PackageParser.PARSE_IS_SYSTEM
14312                    | (privileged ? PackageParser.PARSE_IS_PRIVILEGED : 0);
14313
14314            replaceSystemPackageLIF(oldPackage, pkg, systemPolicyFlags, scanFlags,
14315                    user, allUsers, installerPackageName, res);
14316        } else {
14317            replaceNonSystemPackageLIF(oldPackage, pkg, policyFlags, scanFlags,
14318                    user, allUsers, installerPackageName, res);
14319        }
14320    }
14321
14322    public List<String> getPreviousCodePaths(String packageName) {
14323        final PackageSetting ps = mSettings.mPackages.get(packageName);
14324        final List<String> result = new ArrayList<String>();
14325        if (ps != null && ps.oldCodePaths != null) {
14326            result.addAll(ps.oldCodePaths);
14327        }
14328        return result;
14329    }
14330
14331    private void replaceNonSystemPackageLIF(PackageParser.Package deletedPackage,
14332            PackageParser.Package pkg, final int policyFlags, int scanFlags, UserHandle user,
14333            int[] allUsers, String installerPackageName, PackageInstalledInfo res) {
14334        if (DEBUG_INSTALL) Slog.d(TAG, "replaceNonSystemPackageLI: new=" + pkg + ", old="
14335                + deletedPackage);
14336
14337        String pkgName = deletedPackage.packageName;
14338        boolean deletedPkg = true;
14339        boolean addedPkg = false;
14340        boolean updatedSettings = false;
14341        final boolean killApp = (scanFlags & SCAN_DONT_KILL_APP) == 0;
14342        final int deleteFlags = PackageManager.DELETE_KEEP_DATA
14343                | (killApp ? 0 : PackageManager.DELETE_DONT_KILL_APP);
14344
14345        final long origUpdateTime = (pkg.mExtras != null)
14346                ? ((PackageSetting)pkg.mExtras).lastUpdateTime : 0;
14347
14348        // First delete the existing package while retaining the data directory
14349        if (!deletePackageLIF(pkgName, null, true, allUsers, deleteFlags,
14350                res.removedInfo, true, pkg)) {
14351            // If the existing package wasn't successfully deleted
14352            res.setError(INSTALL_FAILED_REPLACE_COULDNT_DELETE, "replaceNonSystemPackageLI");
14353            deletedPkg = false;
14354        } else {
14355            // Successfully deleted the old package; proceed with replace.
14356
14357            // If deleted package lived in a container, give users a chance to
14358            // relinquish resources before killing.
14359            if (deletedPackage.isForwardLocked() || isExternal(deletedPackage)) {
14360                if (DEBUG_INSTALL) {
14361                    Slog.i(TAG, "upgrading pkg " + deletedPackage + " is ASEC-hosted -> UNAVAILABLE");
14362                }
14363                final int[] uidArray = new int[] { deletedPackage.applicationInfo.uid };
14364                final ArrayList<String> pkgList = new ArrayList<String>(1);
14365                pkgList.add(deletedPackage.applicationInfo.packageName);
14366                sendResourcesChangedBroadcast(false, true, pkgList, uidArray, null);
14367            }
14368
14369            clearAppDataLIF(pkg, UserHandle.USER_ALL, StorageManager.FLAG_STORAGE_DE
14370                    | StorageManager.FLAG_STORAGE_CE | Installer.FLAG_CLEAR_CODE_CACHE_ONLY);
14371            clearAppProfilesLIF(deletedPackage, UserHandle.USER_ALL);
14372
14373            try {
14374                final PackageParser.Package newPackage = scanPackageTracedLI(pkg, policyFlags,
14375                        scanFlags | SCAN_UPDATE_TIME, System.currentTimeMillis(), user);
14376                updateSettingsLI(newPackage, installerPackageName, allUsers, res, user);
14377
14378                // Update the in-memory copy of the previous code paths.
14379                PackageSetting ps = mSettings.mPackages.get(pkgName);
14380                if (!killApp) {
14381                    if (ps.oldCodePaths == null) {
14382                        ps.oldCodePaths = new ArraySet<>();
14383                    }
14384                    Collections.addAll(ps.oldCodePaths, deletedPackage.baseCodePath);
14385                    if (deletedPackage.splitCodePaths != null) {
14386                        Collections.addAll(ps.oldCodePaths, deletedPackage.splitCodePaths);
14387                    }
14388                } else {
14389                    ps.oldCodePaths = null;
14390                }
14391                if (ps.childPackageNames != null) {
14392                    for (int i = ps.childPackageNames.size() - 1; i >= 0; --i) {
14393                        final String childPkgName = ps.childPackageNames.get(i);
14394                        final PackageSetting childPs = mSettings.mPackages.get(childPkgName);
14395                        childPs.oldCodePaths = ps.oldCodePaths;
14396                    }
14397                }
14398                prepareAppDataAfterInstallLIF(newPackage);
14399                addedPkg = true;
14400            } catch (PackageManagerException e) {
14401                res.setError("Package couldn't be installed in " + pkg.codePath, e);
14402            }
14403        }
14404
14405        if (res.returnCode != PackageManager.INSTALL_SUCCEEDED) {
14406            if (DEBUG_INSTALL) Slog.d(TAG, "Install failed, rolling pack: " + pkgName);
14407
14408            // Revert all internal state mutations and added folders for the failed install
14409            if (addedPkg) {
14410                deletePackageLIF(pkgName, null, true, allUsers, deleteFlags,
14411                        res.removedInfo, true, null);
14412            }
14413
14414            // Restore the old package
14415            if (deletedPkg) {
14416                if (DEBUG_INSTALL) Slog.d(TAG, "Install failed, reinstalling: " + deletedPackage);
14417                File restoreFile = new File(deletedPackage.codePath);
14418                // Parse old package
14419                boolean oldExternal = isExternal(deletedPackage);
14420                int oldParseFlags  = mDefParseFlags | PackageParser.PARSE_CHATTY |
14421                        (deletedPackage.isForwardLocked() ? PackageParser.PARSE_FORWARD_LOCK : 0) |
14422                        (oldExternal ? PackageParser.PARSE_EXTERNAL_STORAGE : 0);
14423                int oldScanFlags = SCAN_UPDATE_SIGNATURE | SCAN_UPDATE_TIME;
14424                try {
14425                    scanPackageTracedLI(restoreFile, oldParseFlags, oldScanFlags, origUpdateTime,
14426                            null);
14427                } catch (PackageManagerException e) {
14428                    Slog.e(TAG, "Failed to restore package : " + pkgName + " after failed upgrade: "
14429                            + e.getMessage());
14430                    return;
14431                }
14432
14433                synchronized (mPackages) {
14434                    // Ensure the installer package name up to date
14435                    setInstallerPackageNameLPw(deletedPackage, installerPackageName);
14436
14437                    // Update permissions for restored package
14438                    updatePermissionsLPw(deletedPackage, UPDATE_PERMISSIONS_ALL);
14439
14440                    mSettings.writeLPr();
14441                }
14442
14443                Slog.i(TAG, "Successfully restored package : " + pkgName + " after failed upgrade");
14444            }
14445        } else {
14446            synchronized (mPackages) {
14447                PackageSetting ps = mSettings.peekPackageLPr(pkg.packageName);
14448                if (ps != null) {
14449                    res.removedInfo.removedForAllUsers = mPackages.get(ps.name) == null;
14450                    if (res.removedInfo.removedChildPackages != null) {
14451                        final int childCount = res.removedInfo.removedChildPackages.size();
14452                        // Iterate in reverse as we may modify the collection
14453                        for (int i = childCount - 1; i >= 0; i--) {
14454                            String childPackageName = res.removedInfo.removedChildPackages.keyAt(i);
14455                            if (res.addedChildPackages.containsKey(childPackageName)) {
14456                                res.removedInfo.removedChildPackages.removeAt(i);
14457                            } else {
14458                                PackageRemovedInfo childInfo = res.removedInfo
14459                                        .removedChildPackages.valueAt(i);
14460                                childInfo.removedForAllUsers = mPackages.get(
14461                                        childInfo.removedPackage) == null;
14462                            }
14463                        }
14464                    }
14465                }
14466            }
14467        }
14468    }
14469
14470    private void replaceSystemPackageLIF(PackageParser.Package deletedPackage,
14471            PackageParser.Package pkg, final int policyFlags, int scanFlags, UserHandle user,
14472            int[] allUsers, String installerPackageName, PackageInstalledInfo res) {
14473        if (DEBUG_INSTALL) Slog.d(TAG, "replaceSystemPackageLI: new=" + pkg
14474                + ", old=" + deletedPackage);
14475
14476        final boolean disabledSystem;
14477
14478        // Remove existing system package
14479        removePackageLI(deletedPackage, true);
14480
14481        disabledSystem = disableSystemPackageLPw(deletedPackage, pkg);
14482        if (!disabledSystem) {
14483            // We didn't need to disable the .apk as a current system package,
14484            // which means we are replacing another update that is already
14485            // installed.  We need to make sure to delete the older one's .apk.
14486            res.removedInfo.args = createInstallArgsForExisting(0,
14487                    deletedPackage.applicationInfo.getCodePath(),
14488                    deletedPackage.applicationInfo.getResourcePath(),
14489                    getAppDexInstructionSets(deletedPackage.applicationInfo));
14490        } else {
14491            res.removedInfo.args = null;
14492        }
14493
14494        // Successfully disabled the old package. Now proceed with re-installation
14495        clearAppDataLIF(pkg, UserHandle.USER_ALL, StorageManager.FLAG_STORAGE_DE
14496                | StorageManager.FLAG_STORAGE_CE | Installer.FLAG_CLEAR_CODE_CACHE_ONLY);
14497        clearAppProfilesLIF(deletedPackage, UserHandle.USER_ALL);
14498
14499        res.setReturnCode(PackageManager.INSTALL_SUCCEEDED);
14500        pkg.setApplicationInfoFlags(ApplicationInfo.FLAG_UPDATED_SYSTEM_APP,
14501                ApplicationInfo.FLAG_UPDATED_SYSTEM_APP);
14502
14503        PackageParser.Package newPackage = null;
14504        try {
14505            // Add the package to the internal data structures
14506            newPackage = scanPackageTracedLI(pkg, policyFlags, scanFlags, 0, user);
14507
14508            // Set the update and install times
14509            PackageSetting deletedPkgSetting = (PackageSetting) deletedPackage.mExtras;
14510            setInstallAndUpdateTime(newPackage, deletedPkgSetting.firstInstallTime,
14511                    System.currentTimeMillis());
14512
14513            // Update the package dynamic state if succeeded
14514            if (res.returnCode == PackageManager.INSTALL_SUCCEEDED) {
14515                // Now that the install succeeded make sure we remove data
14516                // directories for any child package the update removed.
14517                final int deletedChildCount = (deletedPackage.childPackages != null)
14518                        ? deletedPackage.childPackages.size() : 0;
14519                final int newChildCount = (newPackage.childPackages != null)
14520                        ? newPackage.childPackages.size() : 0;
14521                for (int i = 0; i < deletedChildCount; i++) {
14522                    PackageParser.Package deletedChildPkg = deletedPackage.childPackages.get(i);
14523                    boolean childPackageDeleted = true;
14524                    for (int j = 0; j < newChildCount; j++) {
14525                        PackageParser.Package newChildPkg = newPackage.childPackages.get(j);
14526                        if (deletedChildPkg.packageName.equals(newChildPkg.packageName)) {
14527                            childPackageDeleted = false;
14528                            break;
14529                        }
14530                    }
14531                    if (childPackageDeleted) {
14532                        PackageSetting ps = mSettings.getDisabledSystemPkgLPr(
14533                                deletedChildPkg.packageName);
14534                        if (ps != null && res.removedInfo.removedChildPackages != null) {
14535                            PackageRemovedInfo removedChildRes = res.removedInfo
14536                                    .removedChildPackages.get(deletedChildPkg.packageName);
14537                            removePackageDataLIF(ps, allUsers, removedChildRes, 0, false);
14538                            removedChildRes.removedForAllUsers = mPackages.get(ps.name) == null;
14539                        }
14540                    }
14541                }
14542
14543                updateSettingsLI(newPackage, installerPackageName, allUsers, res, user);
14544                prepareAppDataAfterInstallLIF(newPackage);
14545            }
14546        } catch (PackageManagerException e) {
14547            res.setReturnCode(INSTALL_FAILED_INTERNAL_ERROR);
14548            res.setError("Package couldn't be installed in " + pkg.codePath, e);
14549        }
14550
14551        if (res.returnCode != PackageManager.INSTALL_SUCCEEDED) {
14552            // Re installation failed. Restore old information
14553            // Remove new pkg information
14554            if (newPackage != null) {
14555                removeInstalledPackageLI(newPackage, true);
14556            }
14557            // Add back the old system package
14558            try {
14559                scanPackageTracedLI(deletedPackage, policyFlags, SCAN_UPDATE_SIGNATURE, 0, user);
14560            } catch (PackageManagerException e) {
14561                Slog.e(TAG, "Failed to restore original package: " + e.getMessage());
14562            }
14563
14564            synchronized (mPackages) {
14565                if (disabledSystem) {
14566                    enableSystemPackageLPw(deletedPackage);
14567                }
14568
14569                // Ensure the installer package name up to date
14570                setInstallerPackageNameLPw(deletedPackage, installerPackageName);
14571
14572                // Update permissions for restored package
14573                updatePermissionsLPw(deletedPackage, UPDATE_PERMISSIONS_ALL);
14574
14575                mSettings.writeLPr();
14576            }
14577
14578            Slog.i(TAG, "Successfully restored package : " + deletedPackage.packageName
14579                    + " after failed upgrade");
14580        }
14581    }
14582
14583    /**
14584     * Checks whether the parent or any of the child packages have a change shared
14585     * user. For a package to be a valid update the shred users of the parent and
14586     * the children should match. We may later support changing child shared users.
14587     * @param oldPkg The updated package.
14588     * @param newPkg The update package.
14589     * @return The shared user that change between the versions.
14590     */
14591    private String getParentOrChildPackageChangedSharedUser(PackageParser.Package oldPkg,
14592            PackageParser.Package newPkg) {
14593        // Check parent shared user
14594        if (!Objects.equals(oldPkg.mSharedUserId, newPkg.mSharedUserId)) {
14595            return newPkg.packageName;
14596        }
14597        // Check child shared users
14598        final int oldChildCount = (oldPkg.childPackages != null) ? oldPkg.childPackages.size() : 0;
14599        final int newChildCount = (newPkg.childPackages != null) ? newPkg.childPackages.size() : 0;
14600        for (int i = 0; i < newChildCount; i++) {
14601            PackageParser.Package newChildPkg = newPkg.childPackages.get(i);
14602            // If this child was present, did it have the same shared user?
14603            for (int j = 0; j < oldChildCount; j++) {
14604                PackageParser.Package oldChildPkg = oldPkg.childPackages.get(j);
14605                if (newChildPkg.packageName.equals(oldChildPkg.packageName)
14606                        && !Objects.equals(newChildPkg.mSharedUserId, oldChildPkg.mSharedUserId)) {
14607                    return newChildPkg.packageName;
14608                }
14609            }
14610        }
14611        return null;
14612    }
14613
14614    private void removeNativeBinariesLI(PackageSetting ps) {
14615        // Remove the lib path for the parent package
14616        if (ps != null) {
14617            NativeLibraryHelper.removeNativeBinariesLI(ps.legacyNativeLibraryPathString);
14618            // Remove the lib path for the child packages
14619            final int childCount = (ps.childPackageNames != null) ? ps.childPackageNames.size() : 0;
14620            for (int i = 0; i < childCount; i++) {
14621                PackageSetting childPs = null;
14622                synchronized (mPackages) {
14623                    childPs = mSettings.peekPackageLPr(ps.childPackageNames.get(i));
14624                }
14625                if (childPs != null) {
14626                    NativeLibraryHelper.removeNativeBinariesLI(childPs
14627                            .legacyNativeLibraryPathString);
14628                }
14629            }
14630        }
14631    }
14632
14633    private void enableSystemPackageLPw(PackageParser.Package pkg) {
14634        // Enable the parent package
14635        mSettings.enableSystemPackageLPw(pkg.packageName);
14636        // Enable the child packages
14637        final int childCount = (pkg.childPackages != null) ? pkg.childPackages.size() : 0;
14638        for (int i = 0; i < childCount; i++) {
14639            PackageParser.Package childPkg = pkg.childPackages.get(i);
14640            mSettings.enableSystemPackageLPw(childPkg.packageName);
14641        }
14642    }
14643
14644    private boolean disableSystemPackageLPw(PackageParser.Package oldPkg,
14645            PackageParser.Package newPkg) {
14646        // Disable the parent package (parent always replaced)
14647        boolean disabled = mSettings.disableSystemPackageLPw(oldPkg.packageName, true);
14648        // Disable the child packages
14649        final int childCount = (oldPkg.childPackages != null) ? oldPkg.childPackages.size() : 0;
14650        for (int i = 0; i < childCount; i++) {
14651            PackageParser.Package childPkg = oldPkg.childPackages.get(i);
14652            final boolean replace = newPkg.hasChildPackage(childPkg.packageName);
14653            disabled |= mSettings.disableSystemPackageLPw(childPkg.packageName, replace);
14654        }
14655        return disabled;
14656    }
14657
14658    private void setInstallerPackageNameLPw(PackageParser.Package pkg,
14659            String installerPackageName) {
14660        // Enable the parent package
14661        mSettings.setInstallerPackageName(pkg.packageName, installerPackageName);
14662        // Enable the child packages
14663        final int childCount = (pkg.childPackages != null) ? pkg.childPackages.size() : 0;
14664        for (int i = 0; i < childCount; i++) {
14665            PackageParser.Package childPkg = pkg.childPackages.get(i);
14666            mSettings.setInstallerPackageName(childPkg.packageName, installerPackageName);
14667        }
14668    }
14669
14670    private int[] revokeUnusedSharedUserPermissionsLPw(SharedUserSetting su, int[] allUserIds) {
14671        // Collect all used permissions in the UID
14672        ArraySet<String> usedPermissions = new ArraySet<>();
14673        final int packageCount = su.packages.size();
14674        for (int i = 0; i < packageCount; i++) {
14675            PackageSetting ps = su.packages.valueAt(i);
14676            if (ps.pkg == null) {
14677                continue;
14678            }
14679            final int requestedPermCount = ps.pkg.requestedPermissions.size();
14680            for (int j = 0; j < requestedPermCount; j++) {
14681                String permission = ps.pkg.requestedPermissions.get(j);
14682                BasePermission bp = mSettings.mPermissions.get(permission);
14683                if (bp != null) {
14684                    usedPermissions.add(permission);
14685                }
14686            }
14687        }
14688
14689        PermissionsState permissionsState = su.getPermissionsState();
14690        // Prune install permissions
14691        List<PermissionState> installPermStates = permissionsState.getInstallPermissionStates();
14692        final int installPermCount = installPermStates.size();
14693        for (int i = installPermCount - 1; i >= 0;  i--) {
14694            PermissionState permissionState = installPermStates.get(i);
14695            if (!usedPermissions.contains(permissionState.getName())) {
14696                BasePermission bp = mSettings.mPermissions.get(permissionState.getName());
14697                if (bp != null) {
14698                    permissionsState.revokeInstallPermission(bp);
14699                    permissionsState.updatePermissionFlags(bp, UserHandle.USER_ALL,
14700                            PackageManager.MASK_PERMISSION_FLAGS, 0);
14701                }
14702            }
14703        }
14704
14705        int[] runtimePermissionChangedUserIds = EmptyArray.INT;
14706
14707        // Prune runtime permissions
14708        for (int userId : allUserIds) {
14709            List<PermissionState> runtimePermStates = permissionsState
14710                    .getRuntimePermissionStates(userId);
14711            final int runtimePermCount = runtimePermStates.size();
14712            for (int i = runtimePermCount - 1; i >= 0; i--) {
14713                PermissionState permissionState = runtimePermStates.get(i);
14714                if (!usedPermissions.contains(permissionState.getName())) {
14715                    BasePermission bp = mSettings.mPermissions.get(permissionState.getName());
14716                    if (bp != null) {
14717                        permissionsState.revokeRuntimePermission(bp, userId);
14718                        permissionsState.updatePermissionFlags(bp, userId,
14719                                PackageManager.MASK_PERMISSION_FLAGS, 0);
14720                        runtimePermissionChangedUserIds = ArrayUtils.appendInt(
14721                                runtimePermissionChangedUserIds, userId);
14722                    }
14723                }
14724            }
14725        }
14726
14727        return runtimePermissionChangedUserIds;
14728    }
14729
14730    private void updateSettingsLI(PackageParser.Package newPackage, String installerPackageName,
14731            int[] allUsers, PackageInstalledInfo res, UserHandle user) {
14732        // Update the parent package setting
14733        updateSettingsInternalLI(newPackage, installerPackageName, allUsers, res.origUsers,
14734                res, user);
14735        // Update the child packages setting
14736        final int childCount = (newPackage.childPackages != null)
14737                ? newPackage.childPackages.size() : 0;
14738        for (int i = 0; i < childCount; i++) {
14739            PackageParser.Package childPackage = newPackage.childPackages.get(i);
14740            PackageInstalledInfo childRes = res.addedChildPackages.get(childPackage.packageName);
14741            updateSettingsInternalLI(childPackage, installerPackageName, allUsers,
14742                    childRes.origUsers, childRes, user);
14743        }
14744    }
14745
14746    private void updateSettingsInternalLI(PackageParser.Package newPackage,
14747            String installerPackageName, int[] allUsers, int[] installedForUsers,
14748            PackageInstalledInfo res, UserHandle user) {
14749        Trace.traceBegin(TRACE_TAG_PACKAGE_MANAGER, "updateSettings");
14750
14751        String pkgName = newPackage.packageName;
14752        synchronized (mPackages) {
14753            //write settings. the installStatus will be incomplete at this stage.
14754            //note that the new package setting would have already been
14755            //added to mPackages. It hasn't been persisted yet.
14756            mSettings.setInstallStatus(pkgName, PackageSettingBase.PKG_INSTALL_INCOMPLETE);
14757            Trace.traceBegin(TRACE_TAG_PACKAGE_MANAGER, "writeSettings");
14758            mSettings.writeLPr();
14759            Trace.traceEnd(TRACE_TAG_PACKAGE_MANAGER);
14760        }
14761
14762        if (DEBUG_INSTALL) Slog.d(TAG, "New package installed in " + newPackage.codePath);
14763        synchronized (mPackages) {
14764            updatePermissionsLPw(newPackage.packageName, newPackage,
14765                    UPDATE_PERMISSIONS_REPLACE_PKG | (newPackage.permissions.size() > 0
14766                            ? UPDATE_PERMISSIONS_ALL : 0));
14767            // For system-bundled packages, we assume that installing an upgraded version
14768            // of the package implies that the user actually wants to run that new code,
14769            // so we enable the package.
14770            PackageSetting ps = mSettings.mPackages.get(pkgName);
14771            final int userId = user.getIdentifier();
14772            if (ps != null) {
14773                if (isSystemApp(newPackage)) {
14774                    if (DEBUG_INSTALL) {
14775                        Slog.d(TAG, "Implicitly enabling system package on upgrade: " + pkgName);
14776                    }
14777                    // Enable system package for requested users
14778                    if (res.origUsers != null) {
14779                        for (int origUserId : res.origUsers) {
14780                            if (userId == UserHandle.USER_ALL || userId == origUserId) {
14781                                ps.setEnabled(COMPONENT_ENABLED_STATE_DEFAULT,
14782                                        origUserId, installerPackageName);
14783                            }
14784                        }
14785                    }
14786                    // Also convey the prior install/uninstall state
14787                    if (allUsers != null && installedForUsers != null) {
14788                        for (int currentUserId : allUsers) {
14789                            final boolean installed = ArrayUtils.contains(
14790                                    installedForUsers, currentUserId);
14791                            if (DEBUG_INSTALL) {
14792                                Slog.d(TAG, "    user " + currentUserId + " => " + installed);
14793                            }
14794                            ps.setInstalled(installed, currentUserId);
14795                        }
14796                        // these install state changes will be persisted in the
14797                        // upcoming call to mSettings.writeLPr().
14798                    }
14799                }
14800                // It's implied that when a user requests installation, they want the app to be
14801                // installed and enabled.
14802                if (userId != UserHandle.USER_ALL) {
14803                    ps.setInstalled(true, userId);
14804                    ps.setEnabled(COMPONENT_ENABLED_STATE_DEFAULT, userId, installerPackageName);
14805                }
14806            }
14807            res.name = pkgName;
14808            res.uid = newPackage.applicationInfo.uid;
14809            res.pkg = newPackage;
14810            mSettings.setInstallStatus(pkgName, PackageSettingBase.PKG_INSTALL_COMPLETE);
14811            mSettings.setInstallerPackageName(pkgName, installerPackageName);
14812            res.setReturnCode(PackageManager.INSTALL_SUCCEEDED);
14813            //to update install status
14814            Trace.traceBegin(TRACE_TAG_PACKAGE_MANAGER, "writeSettings");
14815            mSettings.writeLPr();
14816            Trace.traceEnd(TRACE_TAG_PACKAGE_MANAGER);
14817        }
14818
14819        Trace.traceEnd(TRACE_TAG_PACKAGE_MANAGER);
14820    }
14821
14822    private void installPackageTracedLI(InstallArgs args, PackageInstalledInfo res) {
14823        try {
14824            Trace.traceBegin(TRACE_TAG_PACKAGE_MANAGER, "installPackage");
14825            installPackageLI(args, res);
14826        } finally {
14827            Trace.traceEnd(TRACE_TAG_PACKAGE_MANAGER);
14828        }
14829    }
14830
14831    private void installPackageLI(InstallArgs args, PackageInstalledInfo res) {
14832        final int installFlags = args.installFlags;
14833        final String installerPackageName = args.installerPackageName;
14834        final String volumeUuid = args.volumeUuid;
14835        final File tmpPackageFile = new File(args.getCodePath());
14836        final boolean forwardLocked = ((installFlags & PackageManager.INSTALL_FORWARD_LOCK) != 0);
14837        final boolean onExternal = (((installFlags & PackageManager.INSTALL_EXTERNAL) != 0)
14838                || (args.volumeUuid != null));
14839        final boolean ephemeral = ((installFlags & PackageManager.INSTALL_EPHEMERAL) != 0);
14840        final boolean forceSdk = ((installFlags & PackageManager.INSTALL_FORCE_SDK) != 0);
14841        boolean replace = false;
14842        int scanFlags = SCAN_NEW_INSTALL | SCAN_UPDATE_SIGNATURE;
14843        if (args.move != null) {
14844            // moving a complete application; perform an initial scan on the new install location
14845            scanFlags |= SCAN_INITIAL;
14846        }
14847        if ((installFlags & PackageManager.INSTALL_DONT_KILL_APP) != 0) {
14848            scanFlags |= SCAN_DONT_KILL_APP;
14849        }
14850
14851        // Result object to be returned
14852        res.setReturnCode(PackageManager.INSTALL_SUCCEEDED);
14853
14854        if (DEBUG_INSTALL) Slog.d(TAG, "installPackageLI: path=" + tmpPackageFile);
14855
14856        // Sanity check
14857        if (ephemeral && (forwardLocked || onExternal)) {
14858            Slog.i(TAG, "Incompatible ephemeral install; fwdLocked=" + forwardLocked
14859                    + " external=" + onExternal);
14860            res.setReturnCode(PackageManager.INSTALL_FAILED_EPHEMERAL_INVALID);
14861            return;
14862        }
14863
14864        // Retrieve PackageSettings and parse package
14865        final int parseFlags = mDefParseFlags | PackageParser.PARSE_CHATTY
14866                | PackageParser.PARSE_ENFORCE_CODE
14867                | (forwardLocked ? PackageParser.PARSE_FORWARD_LOCK : 0)
14868                | (onExternal ? PackageParser.PARSE_EXTERNAL_STORAGE : 0)
14869                | (ephemeral ? PackageParser.PARSE_IS_EPHEMERAL : 0)
14870                | (forceSdk ? PackageParser.PARSE_FORCE_SDK : 0);
14871        PackageParser pp = new PackageParser();
14872        pp.setSeparateProcesses(mSeparateProcesses);
14873        pp.setDisplayMetrics(mMetrics);
14874
14875        Trace.traceBegin(TRACE_TAG_PACKAGE_MANAGER, "parsePackage");
14876        final PackageParser.Package pkg;
14877        try {
14878            pkg = pp.parsePackage(tmpPackageFile, parseFlags);
14879        } catch (PackageParserException e) {
14880            res.setError("Failed parse during installPackageLI", e);
14881            return;
14882        } finally {
14883            Trace.traceEnd(TRACE_TAG_PACKAGE_MANAGER);
14884        }
14885
14886        // If we are installing a clustered package add results for the children
14887        if (pkg.childPackages != null) {
14888            synchronized (mPackages) {
14889                final int childCount = pkg.childPackages.size();
14890                for (int i = 0; i < childCount; i++) {
14891                    PackageParser.Package childPkg = pkg.childPackages.get(i);
14892                    PackageInstalledInfo childRes = new PackageInstalledInfo();
14893                    childRes.setReturnCode(PackageManager.INSTALL_SUCCEEDED);
14894                    childRes.pkg = childPkg;
14895                    childRes.name = childPkg.packageName;
14896                    PackageSetting childPs = mSettings.peekPackageLPr(childPkg.packageName);
14897                    if (childPs != null) {
14898                        childRes.origUsers = childPs.queryInstalledUsers(
14899                                sUserManager.getUserIds(), true);
14900                    }
14901                    if ((mPackages.containsKey(childPkg.packageName))) {
14902                        childRes.removedInfo = new PackageRemovedInfo();
14903                        childRes.removedInfo.removedPackage = childPkg.packageName;
14904                    }
14905                    if (res.addedChildPackages == null) {
14906                        res.addedChildPackages = new ArrayMap<>();
14907                    }
14908                    res.addedChildPackages.put(childPkg.packageName, childRes);
14909                }
14910            }
14911        }
14912
14913        // If package doesn't declare API override, mark that we have an install
14914        // time CPU ABI override.
14915        if (TextUtils.isEmpty(pkg.cpuAbiOverride)) {
14916            pkg.cpuAbiOverride = args.abiOverride;
14917        }
14918
14919        String pkgName = res.name = pkg.packageName;
14920        if ((pkg.applicationInfo.flags&ApplicationInfo.FLAG_TEST_ONLY) != 0) {
14921            if ((installFlags & PackageManager.INSTALL_ALLOW_TEST) == 0) {
14922                res.setError(INSTALL_FAILED_TEST_ONLY, "installPackageLI");
14923                return;
14924            }
14925        }
14926
14927        try {
14928            // either use what we've been given or parse directly from the APK
14929            if (args.certificates != null) {
14930                try {
14931                    PackageParser.populateCertificates(pkg, args.certificates);
14932                } catch (PackageParserException e) {
14933                    // there was something wrong with the certificates we were given;
14934                    // try to pull them from the APK
14935                    PackageParser.collectCertificates(pkg, parseFlags);
14936                }
14937            } else {
14938                PackageParser.collectCertificates(pkg, parseFlags);
14939            }
14940        } catch (PackageParserException e) {
14941            res.setError("Failed collect during installPackageLI", e);
14942            return;
14943        }
14944
14945        // Get rid of all references to package scan path via parser.
14946        pp = null;
14947        String oldCodePath = null;
14948        boolean systemApp = false;
14949        synchronized (mPackages) {
14950            // Check if installing already existing package
14951            if ((installFlags & PackageManager.INSTALL_REPLACE_EXISTING) != 0) {
14952                String oldName = mSettings.mRenamedPackages.get(pkgName);
14953                if (pkg.mOriginalPackages != null
14954                        && pkg.mOriginalPackages.contains(oldName)
14955                        && mPackages.containsKey(oldName)) {
14956                    // This package is derived from an original package,
14957                    // and this device has been updating from that original
14958                    // name.  We must continue using the original name, so
14959                    // rename the new package here.
14960                    pkg.setPackageName(oldName);
14961                    pkgName = pkg.packageName;
14962                    replace = true;
14963                    if (DEBUG_INSTALL) Slog.d(TAG, "Replacing existing renamed package: oldName="
14964                            + oldName + " pkgName=" + pkgName);
14965                } else if (mPackages.containsKey(pkgName)) {
14966                    // This package, under its official name, already exists
14967                    // on the device; we should replace it.
14968                    replace = true;
14969                    if (DEBUG_INSTALL) Slog.d(TAG, "Replace existing pacakge: " + pkgName);
14970                }
14971
14972                // Child packages are installed through the parent package
14973                if (pkg.parentPackage != null) {
14974                    res.setError(PackageManager.INSTALL_PARSE_FAILED_BAD_PACKAGE_NAME,
14975                            "Package " + pkg.packageName + " is child of package "
14976                                    + pkg.parentPackage.parentPackage + ". Child packages "
14977                                    + "can be updated only through the parent package.");
14978                    return;
14979                }
14980
14981                if (replace) {
14982                    // Prevent apps opting out from runtime permissions
14983                    PackageParser.Package oldPackage = mPackages.get(pkgName);
14984                    final int oldTargetSdk = oldPackage.applicationInfo.targetSdkVersion;
14985                    final int newTargetSdk = pkg.applicationInfo.targetSdkVersion;
14986                    if (oldTargetSdk > Build.VERSION_CODES.LOLLIPOP_MR1
14987                            && newTargetSdk <= Build.VERSION_CODES.LOLLIPOP_MR1) {
14988                        res.setError(PackageManager.INSTALL_FAILED_PERMISSION_MODEL_DOWNGRADE,
14989                                "Package " + pkg.packageName + " new target SDK " + newTargetSdk
14990                                        + " doesn't support runtime permissions but the old"
14991                                        + " target SDK " + oldTargetSdk + " does.");
14992                        return;
14993                    }
14994
14995                    // Prevent installing of child packages
14996                    if (oldPackage.parentPackage != null) {
14997                        res.setError(PackageManager.INSTALL_PARSE_FAILED_BAD_PACKAGE_NAME,
14998                                "Package " + pkg.packageName + " is child of package "
14999                                        + oldPackage.parentPackage + ". Child packages "
15000                                        + "can be updated only through the parent package.");
15001                        return;
15002                    }
15003                }
15004            }
15005
15006            PackageSetting ps = mSettings.mPackages.get(pkgName);
15007            if (ps != null) {
15008                if (DEBUG_INSTALL) Slog.d(TAG, "Existing package: " + ps);
15009
15010                // Quick sanity check that we're signed correctly if updating;
15011                // we'll check this again later when scanning, but we want to
15012                // bail early here before tripping over redefined permissions.
15013                if (shouldCheckUpgradeKeySetLP(ps, scanFlags)) {
15014                    if (!checkUpgradeKeySetLP(ps, pkg)) {
15015                        res.setError(INSTALL_FAILED_UPDATE_INCOMPATIBLE, "Package "
15016                                + pkg.packageName + " upgrade keys do not match the "
15017                                + "previously installed version");
15018                        return;
15019                    }
15020                } else {
15021                    try {
15022                        verifySignaturesLP(ps, pkg);
15023                    } catch (PackageManagerException e) {
15024                        res.setError(e.error, e.getMessage());
15025                        return;
15026                    }
15027                }
15028
15029                oldCodePath = mSettings.mPackages.get(pkgName).codePathString;
15030                if (ps.pkg != null && ps.pkg.applicationInfo != null) {
15031                    systemApp = (ps.pkg.applicationInfo.flags &
15032                            ApplicationInfo.FLAG_SYSTEM) != 0;
15033                }
15034                res.origUsers = ps.queryInstalledUsers(sUserManager.getUserIds(), true);
15035            }
15036
15037            // Check whether the newly-scanned package wants to define an already-defined perm
15038            int N = pkg.permissions.size();
15039            for (int i = N-1; i >= 0; i--) {
15040                PackageParser.Permission perm = pkg.permissions.get(i);
15041                BasePermission bp = mSettings.mPermissions.get(perm.info.name);
15042                if (bp != null) {
15043                    // If the defining package is signed with our cert, it's okay.  This
15044                    // also includes the "updating the same package" case, of course.
15045                    // "updating same package" could also involve key-rotation.
15046                    final boolean sigsOk;
15047                    if (bp.sourcePackage.equals(pkg.packageName)
15048                            && (bp.packageSetting instanceof PackageSetting)
15049                            && (shouldCheckUpgradeKeySetLP((PackageSetting) bp.packageSetting,
15050                                    scanFlags))) {
15051                        sigsOk = checkUpgradeKeySetLP((PackageSetting) bp.packageSetting, pkg);
15052                    } else {
15053                        sigsOk = compareSignatures(bp.packageSetting.signatures.mSignatures,
15054                                pkg.mSignatures) == PackageManager.SIGNATURE_MATCH;
15055                    }
15056                    if (!sigsOk) {
15057                        // If the owning package is the system itself, we log but allow
15058                        // install to proceed; we fail the install on all other permission
15059                        // redefinitions.
15060                        if (!bp.sourcePackage.equals("android")) {
15061                            res.setError(INSTALL_FAILED_DUPLICATE_PERMISSION, "Package "
15062                                    + pkg.packageName + " attempting to redeclare permission "
15063                                    + perm.info.name + " already owned by " + bp.sourcePackage);
15064                            res.origPermission = perm.info.name;
15065                            res.origPackage = bp.sourcePackage;
15066                            return;
15067                        } else {
15068                            Slog.w(TAG, "Package " + pkg.packageName
15069                                    + " attempting to redeclare system permission "
15070                                    + perm.info.name + "; ignoring new declaration");
15071                            pkg.permissions.remove(i);
15072                        }
15073                    }
15074                }
15075            }
15076        }
15077
15078        if (systemApp) {
15079            if (onExternal) {
15080                // Abort update; system app can't be replaced with app on sdcard
15081                res.setError(INSTALL_FAILED_INVALID_INSTALL_LOCATION,
15082                        "Cannot install updates to system apps on sdcard");
15083                return;
15084            } else if (ephemeral) {
15085                // Abort update; system app can't be replaced with an ephemeral app
15086                res.setError(INSTALL_FAILED_EPHEMERAL_INVALID,
15087                        "Cannot update a system app with an ephemeral app");
15088                return;
15089            }
15090        }
15091
15092        if (args.move != null) {
15093            // We did an in-place move, so dex is ready to roll
15094            scanFlags |= SCAN_NO_DEX;
15095            scanFlags |= SCAN_MOVE;
15096
15097            synchronized (mPackages) {
15098                final PackageSetting ps = mSettings.mPackages.get(pkgName);
15099                if (ps == null) {
15100                    res.setError(INSTALL_FAILED_INTERNAL_ERROR,
15101                            "Missing settings for moved package " + pkgName);
15102                }
15103
15104                // We moved the entire application as-is, so bring over the
15105                // previously derived ABI information.
15106                pkg.applicationInfo.primaryCpuAbi = ps.primaryCpuAbiString;
15107                pkg.applicationInfo.secondaryCpuAbi = ps.secondaryCpuAbiString;
15108            }
15109
15110        } else if (!forwardLocked && !pkg.applicationInfo.isExternalAsec()) {
15111            // Enable SCAN_NO_DEX flag to skip dexopt at a later stage
15112            scanFlags |= SCAN_NO_DEX;
15113
15114            try {
15115                String abiOverride = (TextUtils.isEmpty(pkg.cpuAbiOverride) ?
15116                    args.abiOverride : pkg.cpuAbiOverride);
15117                derivePackageAbi(pkg, new File(pkg.codePath), abiOverride,
15118                        true /* extract libs */);
15119            } catch (PackageManagerException pme) {
15120                Slog.e(TAG, "Error deriving application ABI", pme);
15121                res.setError(INSTALL_FAILED_INTERNAL_ERROR, "Error deriving application ABI");
15122                return;
15123            }
15124
15125            // Shared libraries for the package need to be updated.
15126            synchronized (mPackages) {
15127                try {
15128                    updateSharedLibrariesLPw(pkg, null);
15129                } catch (PackageManagerException e) {
15130                    Slog.e(TAG, "updateSharedLibrariesLPw failed: " + e.getMessage());
15131                }
15132            }
15133            Trace.traceBegin(TRACE_TAG_PACKAGE_MANAGER, "dexopt");
15134            // Do not run PackageDexOptimizer through the local performDexOpt
15135            // method because `pkg` is not in `mPackages` yet.
15136            int result = mPackageDexOptimizer.performDexOpt(pkg, pkg.usesLibraryFiles,
15137                    null /* instructionSets */, false /* checkProfiles */,
15138                    getCompilerFilterForReason(REASON_INSTALL));
15139            Trace.traceEnd(TRACE_TAG_PACKAGE_MANAGER);
15140            if (result == PackageDexOptimizer.DEX_OPT_FAILED) {
15141                String msg = "Extracting package failed for " + pkgName;
15142                res.setError(INSTALL_FAILED_DEXOPT, msg);
15143                return;
15144            }
15145
15146            // Notify BackgroundDexOptService that the package has been changed.
15147            // If this is an update of a package which used to fail to compile,
15148            // BDOS will remove it from its blacklist.
15149            BackgroundDexOptService.notifyPackageChanged(pkg.packageName);
15150        }
15151
15152        if (!args.doRename(res.returnCode, pkg, oldCodePath)) {
15153            res.setError(INSTALL_FAILED_INSUFFICIENT_STORAGE, "Failed rename");
15154            return;
15155        }
15156
15157        startIntentFilterVerifications(args.user.getIdentifier(), replace, pkg);
15158
15159        try (PackageFreezer freezer = freezePackageForInstall(pkgName, installFlags,
15160                "installPackageLI")) {
15161            if (replace) {
15162                replacePackageLIF(pkg, parseFlags, scanFlags | SCAN_REPLACING, args.user,
15163                        installerPackageName, res);
15164            } else {
15165                installNewPackageLIF(pkg, parseFlags, scanFlags | SCAN_DELETE_DATA_ON_FAILURES,
15166                        args.user, installerPackageName, volumeUuid, res);
15167            }
15168        }
15169        synchronized (mPackages) {
15170            final PackageSetting ps = mSettings.mPackages.get(pkgName);
15171            if (ps != null) {
15172                res.newUsers = ps.queryInstalledUsers(sUserManager.getUserIds(), true);
15173            }
15174
15175            final int childCount = (pkg.childPackages != null) ? pkg.childPackages.size() : 0;
15176            for (int i = 0; i < childCount; i++) {
15177                PackageParser.Package childPkg = pkg.childPackages.get(i);
15178                PackageInstalledInfo childRes = res.addedChildPackages.get(childPkg.packageName);
15179                PackageSetting childPs = mSettings.peekPackageLPr(childPkg.packageName);
15180                if (childPs != null) {
15181                    childRes.newUsers = childPs.queryInstalledUsers(
15182                            sUserManager.getUserIds(), true);
15183                }
15184            }
15185        }
15186    }
15187
15188    private void startIntentFilterVerifications(int userId, boolean replacing,
15189            PackageParser.Package pkg) {
15190        if (mIntentFilterVerifierComponent == null) {
15191            Slog.w(TAG, "No IntentFilter verification will not be done as "
15192                    + "there is no IntentFilterVerifier available!");
15193            return;
15194        }
15195
15196        final int verifierUid = getPackageUid(
15197                mIntentFilterVerifierComponent.getPackageName(),
15198                MATCH_DEBUG_TRIAGED_MISSING,
15199                (userId == UserHandle.USER_ALL) ? UserHandle.USER_SYSTEM : userId);
15200
15201        Message msg = mHandler.obtainMessage(START_INTENT_FILTER_VERIFICATIONS);
15202        msg.obj = new IFVerificationParams(pkg, replacing, userId, verifierUid);
15203        mHandler.sendMessage(msg);
15204
15205        final int childCount = (pkg.childPackages != null) ? pkg.childPackages.size() : 0;
15206        for (int i = 0; i < childCount; i++) {
15207            PackageParser.Package childPkg = pkg.childPackages.get(i);
15208            msg = mHandler.obtainMessage(START_INTENT_FILTER_VERIFICATIONS);
15209            msg.obj = new IFVerificationParams(childPkg, replacing, userId, verifierUid);
15210            mHandler.sendMessage(msg);
15211        }
15212    }
15213
15214    private void verifyIntentFiltersIfNeeded(int userId, int verifierUid, boolean replacing,
15215            PackageParser.Package pkg) {
15216        int size = pkg.activities.size();
15217        if (size == 0) {
15218            if (DEBUG_DOMAIN_VERIFICATION) Slog.d(TAG,
15219                    "No activity, so no need to verify any IntentFilter!");
15220            return;
15221        }
15222
15223        final boolean hasDomainURLs = hasDomainURLs(pkg);
15224        if (!hasDomainURLs) {
15225            if (DEBUG_DOMAIN_VERIFICATION) Slog.d(TAG,
15226                    "No domain URLs, so no need to verify any IntentFilter!");
15227            return;
15228        }
15229
15230        if (DEBUG_DOMAIN_VERIFICATION) Slog.d(TAG, "Checking for userId:" + userId
15231                + " if any IntentFilter from the " + size
15232                + " Activities needs verification ...");
15233
15234        int count = 0;
15235        final String packageName = pkg.packageName;
15236
15237        synchronized (mPackages) {
15238            // If this is a new install and we see that we've already run verification for this
15239            // package, we have nothing to do: it means the state was restored from backup.
15240            if (!replacing) {
15241                IntentFilterVerificationInfo ivi =
15242                        mSettings.getIntentFilterVerificationLPr(packageName);
15243                if (ivi != null) {
15244                    if (DEBUG_DOMAIN_VERIFICATION) {
15245                        Slog.i(TAG, "Package " + packageName+ " already verified: status="
15246                                + ivi.getStatusString());
15247                    }
15248                    return;
15249                }
15250            }
15251
15252            // If any filters need to be verified, then all need to be.
15253            boolean needToVerify = false;
15254            for (PackageParser.Activity a : pkg.activities) {
15255                for (ActivityIntentInfo filter : a.intents) {
15256                    if (filter.needsVerification() && needsNetworkVerificationLPr(filter)) {
15257                        if (DEBUG_DOMAIN_VERIFICATION) {
15258                            Slog.d(TAG, "Intent filter needs verification, so processing all filters");
15259                        }
15260                        needToVerify = true;
15261                        break;
15262                    }
15263                }
15264            }
15265
15266            if (needToVerify) {
15267                final int verificationId = mIntentFilterVerificationToken++;
15268                for (PackageParser.Activity a : pkg.activities) {
15269                    for (ActivityIntentInfo filter : a.intents) {
15270                        if (filter.handlesWebUris(true) && needsNetworkVerificationLPr(filter)) {
15271                            if (DEBUG_DOMAIN_VERIFICATION) Slog.d(TAG,
15272                                    "Verification needed for IntentFilter:" + filter.toString());
15273                            mIntentFilterVerifier.addOneIntentFilterVerification(
15274                                    verifierUid, userId, verificationId, filter, packageName);
15275                            count++;
15276                        }
15277                    }
15278                }
15279            }
15280        }
15281
15282        if (count > 0) {
15283            if (DEBUG_DOMAIN_VERIFICATION) Slog.d(TAG, "Starting " + count
15284                    + " IntentFilter verification" + (count > 1 ? "s" : "")
15285                    +  " for userId:" + userId);
15286            mIntentFilterVerifier.startVerifications(userId);
15287        } else {
15288            if (DEBUG_DOMAIN_VERIFICATION) {
15289                Slog.d(TAG, "No filters or not all autoVerify for " + packageName);
15290            }
15291        }
15292    }
15293
15294    private boolean needsNetworkVerificationLPr(ActivityIntentInfo filter) {
15295        final ComponentName cn  = filter.activity.getComponentName();
15296        final String packageName = cn.getPackageName();
15297
15298        IntentFilterVerificationInfo ivi = mSettings.getIntentFilterVerificationLPr(
15299                packageName);
15300        if (ivi == null) {
15301            return true;
15302        }
15303        int status = ivi.getStatus();
15304        switch (status) {
15305            case INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_UNDEFINED:
15306            case INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_ASK:
15307                return true;
15308
15309            default:
15310                // Nothing to do
15311                return false;
15312        }
15313    }
15314
15315    private static boolean isMultiArch(ApplicationInfo info) {
15316        return (info.flags & ApplicationInfo.FLAG_MULTIARCH) != 0;
15317    }
15318
15319    private static boolean isExternal(PackageParser.Package pkg) {
15320        return (pkg.applicationInfo.flags & ApplicationInfo.FLAG_EXTERNAL_STORAGE) != 0;
15321    }
15322
15323    private static boolean isExternal(PackageSetting ps) {
15324        return (ps.pkgFlags & ApplicationInfo.FLAG_EXTERNAL_STORAGE) != 0;
15325    }
15326
15327    private static boolean isEphemeral(PackageParser.Package pkg) {
15328        return pkg.applicationInfo.isEphemeralApp();
15329    }
15330
15331    private static boolean isEphemeral(PackageSetting ps) {
15332        return ps.pkg != null && isEphemeral(ps.pkg);
15333    }
15334
15335    private static boolean isSystemApp(PackageParser.Package pkg) {
15336        return (pkg.applicationInfo.flags & ApplicationInfo.FLAG_SYSTEM) != 0;
15337    }
15338
15339    private static boolean isPrivilegedApp(PackageParser.Package pkg) {
15340        return (pkg.applicationInfo.privateFlags & ApplicationInfo.PRIVATE_FLAG_PRIVILEGED) != 0;
15341    }
15342
15343    private static boolean hasDomainURLs(PackageParser.Package pkg) {
15344        return (pkg.applicationInfo.privateFlags & ApplicationInfo.PRIVATE_FLAG_HAS_DOMAIN_URLS) != 0;
15345    }
15346
15347    private static boolean isSystemApp(PackageSetting ps) {
15348        return (ps.pkgFlags & ApplicationInfo.FLAG_SYSTEM) != 0;
15349    }
15350
15351    private static boolean isUpdatedSystemApp(PackageSetting ps) {
15352        return (ps.pkgFlags & ApplicationInfo.FLAG_UPDATED_SYSTEM_APP) != 0;
15353    }
15354
15355    private int packageFlagsToInstallFlags(PackageSetting ps) {
15356        int installFlags = 0;
15357        if (isEphemeral(ps)) {
15358            installFlags |= PackageManager.INSTALL_EPHEMERAL;
15359        }
15360        if (isExternal(ps) && TextUtils.isEmpty(ps.volumeUuid)) {
15361            // This existing package was an external ASEC install when we have
15362            // the external flag without a UUID
15363            installFlags |= PackageManager.INSTALL_EXTERNAL;
15364        }
15365        if (ps.isForwardLocked()) {
15366            installFlags |= PackageManager.INSTALL_FORWARD_LOCK;
15367        }
15368        return installFlags;
15369    }
15370
15371    private String getVolumeUuidForPackage(PackageParser.Package pkg) {
15372        if (isExternal(pkg)) {
15373            if (TextUtils.isEmpty(pkg.volumeUuid)) {
15374                return StorageManager.UUID_PRIMARY_PHYSICAL;
15375            } else {
15376                return pkg.volumeUuid;
15377            }
15378        } else {
15379            return StorageManager.UUID_PRIVATE_INTERNAL;
15380        }
15381    }
15382
15383    private VersionInfo getSettingsVersionForPackage(PackageParser.Package pkg) {
15384        if (isExternal(pkg)) {
15385            if (TextUtils.isEmpty(pkg.volumeUuid)) {
15386                return mSettings.getExternalVersion();
15387            } else {
15388                return mSettings.findOrCreateVersion(pkg.volumeUuid);
15389            }
15390        } else {
15391            return mSettings.getInternalVersion();
15392        }
15393    }
15394
15395    private void deleteTempPackageFiles() {
15396        final FilenameFilter filter = new FilenameFilter() {
15397            public boolean accept(File dir, String name) {
15398                return name.startsWith("vmdl") && name.endsWith(".tmp");
15399            }
15400        };
15401        for (File file : mDrmAppPrivateInstallDir.listFiles(filter)) {
15402            file.delete();
15403        }
15404    }
15405
15406    @Override
15407    public void deletePackageAsUser(String packageName, IPackageDeleteObserver observer, int userId,
15408            int flags) {
15409        deletePackage(packageName, new LegacyPackageDeleteObserver(observer).getBinder(), userId,
15410                flags);
15411    }
15412
15413    @Override
15414    public void deletePackage(final String packageName,
15415            final IPackageDeleteObserver2 observer, final int userId, final int deleteFlags) {
15416        mContext.enforceCallingOrSelfPermission(
15417                android.Manifest.permission.DELETE_PACKAGES, null);
15418        Preconditions.checkNotNull(packageName);
15419        Preconditions.checkNotNull(observer);
15420        final int uid = Binder.getCallingUid();
15421        final boolean deleteAllUsers = (deleteFlags & PackageManager.DELETE_ALL_USERS) != 0;
15422        final int[] users = deleteAllUsers ? sUserManager.getUserIds() : new int[]{ userId };
15423        if (UserHandle.getUserId(uid) != userId || (deleteAllUsers && users.length > 1)) {
15424            mContext.enforceCallingOrSelfPermission(
15425                    android.Manifest.permission.INTERACT_ACROSS_USERS_FULL,
15426                    "deletePackage for user " + userId);
15427        }
15428
15429        if (isUserRestricted(userId, UserManager.DISALLOW_UNINSTALL_APPS)) {
15430            try {
15431                observer.onPackageDeleted(packageName,
15432                        PackageManager.DELETE_FAILED_USER_RESTRICTED, null);
15433            } catch (RemoteException re) {
15434            }
15435            return;
15436        }
15437
15438        if (!deleteAllUsers && getBlockUninstallForUser(packageName, userId)) {
15439            try {
15440                observer.onPackageDeleted(packageName,
15441                        PackageManager.DELETE_FAILED_OWNER_BLOCKED, null);
15442            } catch (RemoteException re) {
15443            }
15444            return;
15445        }
15446
15447        if (DEBUG_REMOVE) {
15448            Slog.d(TAG, "deletePackageAsUser: pkg=" + packageName + " user=" + userId
15449                    + " deleteAllUsers: " + deleteAllUsers );
15450        }
15451        // Queue up an async operation since the package deletion may take a little while.
15452        mHandler.post(new Runnable() {
15453            public void run() {
15454                mHandler.removeCallbacks(this);
15455                int returnCode;
15456                if (!deleteAllUsers) {
15457                    returnCode = deletePackageX(packageName, userId, deleteFlags);
15458                } else {
15459                    int[] blockUninstallUserIds = getBlockUninstallForUsers(packageName, users);
15460                    // If nobody is blocking uninstall, proceed with delete for all users
15461                    if (ArrayUtils.isEmpty(blockUninstallUserIds)) {
15462                        returnCode = deletePackageX(packageName, userId, deleteFlags);
15463                    } else {
15464                        // Otherwise uninstall individually for users with blockUninstalls=false
15465                        final int userFlags = deleteFlags & ~PackageManager.DELETE_ALL_USERS;
15466                        for (int userId : users) {
15467                            if (!ArrayUtils.contains(blockUninstallUserIds, userId)) {
15468                                returnCode = deletePackageX(packageName, userId, userFlags);
15469                                if (returnCode != PackageManager.DELETE_SUCCEEDED) {
15470                                    Slog.w(TAG, "Package delete failed for user " + userId
15471                                            + ", returnCode " + returnCode);
15472                                }
15473                            }
15474                        }
15475                        // The app has only been marked uninstalled for certain users.
15476                        // We still need to report that delete was blocked
15477                        returnCode = PackageManager.DELETE_FAILED_OWNER_BLOCKED;
15478                    }
15479                }
15480                try {
15481                    observer.onPackageDeleted(packageName, returnCode, null);
15482                } catch (RemoteException e) {
15483                    Log.i(TAG, "Observer no longer exists.");
15484                } //end catch
15485            } //end run
15486        });
15487    }
15488
15489    private int[] getBlockUninstallForUsers(String packageName, int[] userIds) {
15490        int[] result = EMPTY_INT_ARRAY;
15491        for (int userId : userIds) {
15492            if (getBlockUninstallForUser(packageName, userId)) {
15493                result = ArrayUtils.appendInt(result, userId);
15494            }
15495        }
15496        return result;
15497    }
15498
15499    @Override
15500    public boolean isPackageDeviceAdminOnAnyUser(String packageName) {
15501        return isPackageDeviceAdmin(packageName, UserHandle.USER_ALL);
15502    }
15503
15504    private boolean isPackageDeviceAdmin(String packageName, int userId) {
15505        IDevicePolicyManager dpm = IDevicePolicyManager.Stub.asInterface(
15506                ServiceManager.getService(Context.DEVICE_POLICY_SERVICE));
15507        try {
15508            if (dpm != null) {
15509                final ComponentName deviceOwnerComponentName = dpm.getDeviceOwnerComponent(
15510                        /* callingUserOnly =*/ false);
15511                final String deviceOwnerPackageName = deviceOwnerComponentName == null ? null
15512                        : deviceOwnerComponentName.getPackageName();
15513                // Does the package contains the device owner?
15514                // TODO Do we have to do it even if userId != UserHandle.USER_ALL?  Otherwise,
15515                // this check is probably not needed, since DO should be registered as a device
15516                // admin on some user too. (Original bug for this: b/17657954)
15517                if (packageName.equals(deviceOwnerPackageName)) {
15518                    return true;
15519                }
15520                // Does it contain a device admin for any user?
15521                int[] users;
15522                if (userId == UserHandle.USER_ALL) {
15523                    users = sUserManager.getUserIds();
15524                } else {
15525                    users = new int[]{userId};
15526                }
15527                for (int i = 0; i < users.length; ++i) {
15528                    if (dpm.packageHasActiveAdmins(packageName, users[i])) {
15529                        return true;
15530                    }
15531                }
15532            }
15533        } catch (RemoteException e) {
15534        }
15535        return false;
15536    }
15537
15538    private boolean shouldKeepUninstalledPackageLPr(String packageName) {
15539        return mKeepUninstalledPackages != null && mKeepUninstalledPackages.contains(packageName);
15540    }
15541
15542    /**
15543     *  This method is an internal method that could be get invoked either
15544     *  to delete an installed package or to clean up a failed installation.
15545     *  After deleting an installed package, a broadcast is sent to notify any
15546     *  listeners that the package has been removed. For cleaning up a failed
15547     *  installation, the broadcast is not necessary since the package's
15548     *  installation wouldn't have sent the initial broadcast either
15549     *  The key steps in deleting a package are
15550     *  deleting the package information in internal structures like mPackages,
15551     *  deleting the packages base directories through installd
15552     *  updating mSettings to reflect current status
15553     *  persisting settings for later use
15554     *  sending a broadcast if necessary
15555     */
15556    private int deletePackageX(String packageName, int userId, int deleteFlags) {
15557        final PackageRemovedInfo info = new PackageRemovedInfo();
15558        final boolean res;
15559
15560        final UserHandle removeForUser = (deleteFlags & PackageManager.DELETE_ALL_USERS) != 0
15561                ? UserHandle.ALL : new UserHandle(userId);
15562
15563        if (isPackageDeviceAdmin(packageName, removeForUser.getIdentifier())) {
15564            Slog.w(TAG, "Not removing package " + packageName + ": has active device admin");
15565            return PackageManager.DELETE_FAILED_DEVICE_POLICY_MANAGER;
15566        }
15567
15568        PackageSetting uninstalledPs = null;
15569
15570        // for the uninstall-updates case and restricted profiles, remember the per-
15571        // user handle installed state
15572        int[] allUsers;
15573        synchronized (mPackages) {
15574            uninstalledPs = mSettings.mPackages.get(packageName);
15575            if (uninstalledPs == null) {
15576                Slog.w(TAG, "Not removing non-existent package " + packageName);
15577                return PackageManager.DELETE_FAILED_INTERNAL_ERROR;
15578            }
15579            allUsers = sUserManager.getUserIds();
15580            info.origUsers = uninstalledPs.queryInstalledUsers(allUsers, true);
15581        }
15582
15583        synchronized (mInstallLock) {
15584            if (DEBUG_REMOVE) Slog.d(TAG, "deletePackageX: pkg=" + packageName + " user=" + userId);
15585            try (PackageFreezer freezer = freezePackageForDelete(packageName, deleteFlags,
15586                    "deletePackageX")) {
15587                res = deletePackageLIF(packageName, removeForUser, true, allUsers,
15588                        deleteFlags | REMOVE_CHATTY, info, true, null);
15589            }
15590            synchronized (mPackages) {
15591                if (res) {
15592                    mEphemeralApplicationRegistry.onPackageUninstalledLPw(uninstalledPs.pkg);
15593                }
15594            }
15595        }
15596
15597        if (res) {
15598            final boolean killApp = (deleteFlags & PackageManager.DELETE_DONT_KILL_APP) == 0;
15599            info.sendPackageRemovedBroadcasts(killApp);
15600            info.sendSystemPackageUpdatedBroadcasts();
15601            info.sendSystemPackageAppearedBroadcasts();
15602        }
15603        // Force a gc here.
15604        Runtime.getRuntime().gc();
15605        // Delete the resources here after sending the broadcast to let
15606        // other processes clean up before deleting resources.
15607        if (info.args != null) {
15608            synchronized (mInstallLock) {
15609                info.args.doPostDeleteLI(true);
15610            }
15611        }
15612
15613        return res ? PackageManager.DELETE_SUCCEEDED : PackageManager.DELETE_FAILED_INTERNAL_ERROR;
15614    }
15615
15616    class PackageRemovedInfo {
15617        String removedPackage;
15618        int uid = -1;
15619        int removedAppId = -1;
15620        int[] origUsers;
15621        int[] removedUsers = null;
15622        boolean isRemovedPackageSystemUpdate = false;
15623        boolean isUpdate;
15624        boolean dataRemoved;
15625        boolean removedForAllUsers;
15626        // Clean up resources deleted packages.
15627        InstallArgs args = null;
15628        ArrayMap<String, PackageRemovedInfo> removedChildPackages;
15629        ArrayMap<String, PackageInstalledInfo> appearedChildPackages;
15630
15631        void sendPackageRemovedBroadcasts(boolean killApp) {
15632            sendPackageRemovedBroadcastInternal(killApp);
15633            final int childCount = removedChildPackages != null ? removedChildPackages.size() : 0;
15634            for (int i = 0; i < childCount; i++) {
15635                PackageRemovedInfo childInfo = removedChildPackages.valueAt(i);
15636                childInfo.sendPackageRemovedBroadcastInternal(killApp);
15637            }
15638        }
15639
15640        void sendSystemPackageUpdatedBroadcasts() {
15641            if (isRemovedPackageSystemUpdate) {
15642                sendSystemPackageUpdatedBroadcastsInternal();
15643                final int childCount = (removedChildPackages != null)
15644                        ? removedChildPackages.size() : 0;
15645                for (int i = 0; i < childCount; i++) {
15646                    PackageRemovedInfo childInfo = removedChildPackages.valueAt(i);
15647                    if (childInfo.isRemovedPackageSystemUpdate) {
15648                        childInfo.sendSystemPackageUpdatedBroadcastsInternal();
15649                    }
15650                }
15651            }
15652        }
15653
15654        void sendSystemPackageAppearedBroadcasts() {
15655            final int packageCount = (appearedChildPackages != null)
15656                    ? appearedChildPackages.size() : 0;
15657            for (int i = 0; i < packageCount; i++) {
15658                PackageInstalledInfo installedInfo = appearedChildPackages.valueAt(i);
15659                for (int userId : installedInfo.newUsers) {
15660                    sendPackageAddedForUser(installedInfo.name, true,
15661                            UserHandle.getAppId(installedInfo.uid), userId);
15662                }
15663            }
15664        }
15665
15666        private void sendSystemPackageUpdatedBroadcastsInternal() {
15667            Bundle extras = new Bundle(2);
15668            extras.putInt(Intent.EXTRA_UID, removedAppId >= 0 ? removedAppId : uid);
15669            extras.putBoolean(Intent.EXTRA_REPLACING, true);
15670            sendPackageBroadcast(Intent.ACTION_PACKAGE_ADDED, removedPackage,
15671                    extras, 0, null, null, null);
15672            sendPackageBroadcast(Intent.ACTION_PACKAGE_REPLACED, removedPackage,
15673                    extras, 0, null, null, null);
15674            sendPackageBroadcast(Intent.ACTION_MY_PACKAGE_REPLACED, null,
15675                    null, 0, removedPackage, null, null);
15676        }
15677
15678        private void sendPackageRemovedBroadcastInternal(boolean killApp) {
15679            Bundle extras = new Bundle(2);
15680            extras.putInt(Intent.EXTRA_UID, removedAppId >= 0  ? removedAppId : uid);
15681            extras.putBoolean(Intent.EXTRA_DATA_REMOVED, dataRemoved);
15682            extras.putBoolean(Intent.EXTRA_DONT_KILL_APP, !killApp);
15683            if (isUpdate || isRemovedPackageSystemUpdate) {
15684                extras.putBoolean(Intent.EXTRA_REPLACING, true);
15685            }
15686            extras.putBoolean(Intent.EXTRA_REMOVED_FOR_ALL_USERS, removedForAllUsers);
15687            if (removedPackage != null) {
15688                sendPackageBroadcast(Intent.ACTION_PACKAGE_REMOVED, removedPackage,
15689                        extras, 0, null, null, removedUsers);
15690                if (dataRemoved && !isRemovedPackageSystemUpdate) {
15691                    sendPackageBroadcast(Intent.ACTION_PACKAGE_FULLY_REMOVED,
15692                            removedPackage, extras, 0, null, null, removedUsers);
15693                }
15694            }
15695            if (removedAppId >= 0) {
15696                sendPackageBroadcast(Intent.ACTION_UID_REMOVED, null, extras, 0, null, null,
15697                        removedUsers);
15698            }
15699        }
15700    }
15701
15702    /*
15703     * This method deletes the package from internal data structures. If the DONT_DELETE_DATA
15704     * flag is not set, the data directory is removed as well.
15705     * make sure this flag is set for partially installed apps. If not its meaningless to
15706     * delete a partially installed application.
15707     */
15708    private void removePackageDataLIF(PackageSetting ps, int[] allUserHandles,
15709            PackageRemovedInfo outInfo, int flags, boolean writeSettings) {
15710        String packageName = ps.name;
15711        if (DEBUG_REMOVE) Slog.d(TAG, "removePackageDataLI: " + ps);
15712        // Retrieve object to delete permissions for shared user later on
15713        final PackageParser.Package deletedPkg;
15714        final PackageSetting deletedPs;
15715        // reader
15716        synchronized (mPackages) {
15717            deletedPkg = mPackages.get(packageName);
15718            deletedPs = mSettings.mPackages.get(packageName);
15719            if (outInfo != null) {
15720                outInfo.removedPackage = packageName;
15721                outInfo.removedUsers = deletedPs != null
15722                        ? deletedPs.queryInstalledUsers(sUserManager.getUserIds(), true)
15723                        : null;
15724            }
15725        }
15726
15727        removePackageLI(ps, (flags & REMOVE_CHATTY) != 0);
15728
15729        if ((flags & PackageManager.DELETE_KEEP_DATA) == 0) {
15730            final PackageParser.Package resolvedPkg;
15731            if (deletedPkg != null) {
15732                resolvedPkg = deletedPkg;
15733            } else {
15734                // We don't have a parsed package when it lives on an ejected
15735                // adopted storage device, so fake something together
15736                resolvedPkg = new PackageParser.Package(ps.name);
15737                resolvedPkg.setVolumeUuid(ps.volumeUuid);
15738            }
15739            destroyAppDataLIF(resolvedPkg, UserHandle.USER_ALL,
15740                    StorageManager.FLAG_STORAGE_DE | StorageManager.FLAG_STORAGE_CE);
15741            destroyAppProfilesLIF(resolvedPkg, UserHandle.USER_ALL);
15742            if (outInfo != null) {
15743                outInfo.dataRemoved = true;
15744            }
15745            schedulePackageCleaning(packageName, UserHandle.USER_ALL, true);
15746        }
15747
15748        // writer
15749        synchronized (mPackages) {
15750            if (deletedPs != null) {
15751                if ((flags&PackageManager.DELETE_KEEP_DATA) == 0) {
15752                    clearIntentFilterVerificationsLPw(deletedPs.name, UserHandle.USER_ALL);
15753                    clearDefaultBrowserIfNeeded(packageName);
15754                    if (outInfo != null) {
15755                        mSettings.mKeySetManagerService.removeAppKeySetDataLPw(packageName);
15756                        outInfo.removedAppId = mSettings.removePackageLPw(packageName);
15757                    }
15758                    updatePermissionsLPw(deletedPs.name, null, 0);
15759                    if (deletedPs.sharedUser != null) {
15760                        // Remove permissions associated with package. Since runtime
15761                        // permissions are per user we have to kill the removed package
15762                        // or packages running under the shared user of the removed
15763                        // package if revoking the permissions requested only by the removed
15764                        // package is successful and this causes a change in gids.
15765                        for (int userId : UserManagerService.getInstance().getUserIds()) {
15766                            final int userIdToKill = mSettings.updateSharedUserPermsLPw(deletedPs,
15767                                    userId);
15768                            if (userIdToKill == UserHandle.USER_ALL
15769                                    || userIdToKill >= UserHandle.USER_SYSTEM) {
15770                                // If gids changed for this user, kill all affected packages.
15771                                mHandler.post(new Runnable() {
15772                                    @Override
15773                                    public void run() {
15774                                        // This has to happen with no lock held.
15775                                        killApplication(deletedPs.name, deletedPs.appId,
15776                                                KILL_APP_REASON_GIDS_CHANGED);
15777                                    }
15778                                });
15779                                break;
15780                            }
15781                        }
15782                    }
15783                    clearPackagePreferredActivitiesLPw(deletedPs.name, UserHandle.USER_ALL);
15784                }
15785                // make sure to preserve per-user disabled state if this removal was just
15786                // a downgrade of a system app to the factory package
15787                if (allUserHandles != null && outInfo != null && outInfo.origUsers != null) {
15788                    if (DEBUG_REMOVE) {
15789                        Slog.d(TAG, "Propagating install state across downgrade");
15790                    }
15791                    for (int userId : allUserHandles) {
15792                        final boolean installed = ArrayUtils.contains(outInfo.origUsers, userId);
15793                        if (DEBUG_REMOVE) {
15794                            Slog.d(TAG, "    user " + userId + " => " + installed);
15795                        }
15796                        ps.setInstalled(installed, userId);
15797                    }
15798                }
15799            }
15800            // can downgrade to reader
15801            if (writeSettings) {
15802                // Save settings now
15803                mSettings.writeLPr();
15804            }
15805        }
15806        if (outInfo != null) {
15807            // A user ID was deleted here. Go through all users and remove it
15808            // from KeyStore.
15809            removeKeystoreDataIfNeeded(UserHandle.USER_ALL, outInfo.removedAppId);
15810        }
15811    }
15812
15813    static boolean locationIsPrivileged(File path) {
15814        try {
15815            final String privilegedAppDir = new File(Environment.getRootDirectory(), "priv-app")
15816                    .getCanonicalPath();
15817            return path.getCanonicalPath().startsWith(privilegedAppDir);
15818        } catch (IOException e) {
15819            Slog.e(TAG, "Unable to access code path " + path);
15820        }
15821        return false;
15822    }
15823
15824    /*
15825     * Tries to delete system package.
15826     */
15827    private boolean deleteSystemPackageLIF(PackageParser.Package deletedPkg,
15828            PackageSetting deletedPs, int[] allUserHandles, int flags, PackageRemovedInfo outInfo,
15829            boolean writeSettings) {
15830        if (deletedPs.parentPackageName != null) {
15831            Slog.w(TAG, "Attempt to delete child system package " + deletedPkg.packageName);
15832            return false;
15833        }
15834
15835        final boolean applyUserRestrictions
15836                = (allUserHandles != null) && (outInfo.origUsers != null);
15837        final PackageSetting disabledPs;
15838        // Confirm if the system package has been updated
15839        // An updated system app can be deleted. This will also have to restore
15840        // the system pkg from system partition
15841        // reader
15842        synchronized (mPackages) {
15843            disabledPs = mSettings.getDisabledSystemPkgLPr(deletedPs.name);
15844        }
15845
15846        if (DEBUG_REMOVE) Slog.d(TAG, "deleteSystemPackageLI: newPs=" + deletedPkg.packageName
15847                + " disabledPs=" + disabledPs);
15848
15849        if (disabledPs == null) {
15850            Slog.w(TAG, "Attempt to delete unknown system package "+ deletedPkg.packageName);
15851            return false;
15852        } else if (DEBUG_REMOVE) {
15853            Slog.d(TAG, "Deleting system pkg from data partition");
15854        }
15855
15856        if (DEBUG_REMOVE) {
15857            if (applyUserRestrictions) {
15858                Slog.d(TAG, "Remembering install states:");
15859                for (int userId : allUserHandles) {
15860                    final boolean finstalled = ArrayUtils.contains(outInfo.origUsers, userId);
15861                    Slog.d(TAG, "   u=" + userId + " inst=" + finstalled);
15862                }
15863            }
15864        }
15865
15866        // Delete the updated package
15867        outInfo.isRemovedPackageSystemUpdate = true;
15868        if (outInfo.removedChildPackages != null) {
15869            final int childCount = (deletedPs.childPackageNames != null)
15870                    ? deletedPs.childPackageNames.size() : 0;
15871            for (int i = 0; i < childCount; i++) {
15872                String childPackageName = deletedPs.childPackageNames.get(i);
15873                if (disabledPs.childPackageNames != null && disabledPs.childPackageNames
15874                        .contains(childPackageName)) {
15875                    PackageRemovedInfo childInfo = outInfo.removedChildPackages.get(
15876                            childPackageName);
15877                    if (childInfo != null) {
15878                        childInfo.isRemovedPackageSystemUpdate = true;
15879                    }
15880                }
15881            }
15882        }
15883
15884        if (disabledPs.versionCode < deletedPs.versionCode) {
15885            // Delete data for downgrades
15886            flags &= ~PackageManager.DELETE_KEEP_DATA;
15887        } else {
15888            // Preserve data by setting flag
15889            flags |= PackageManager.DELETE_KEEP_DATA;
15890        }
15891
15892        boolean ret = deleteInstalledPackageLIF(deletedPs, true, flags, allUserHandles,
15893                outInfo, writeSettings, disabledPs.pkg);
15894        if (!ret) {
15895            return false;
15896        }
15897
15898        // writer
15899        synchronized (mPackages) {
15900            // Reinstate the old system package
15901            enableSystemPackageLPw(disabledPs.pkg);
15902            // Remove any native libraries from the upgraded package.
15903            removeNativeBinariesLI(deletedPs);
15904        }
15905
15906        // Install the system package
15907        if (DEBUG_REMOVE) Slog.d(TAG, "Re-installing system package: " + disabledPs);
15908        int parseFlags = mDefParseFlags
15909                | PackageParser.PARSE_MUST_BE_APK
15910                | PackageParser.PARSE_IS_SYSTEM
15911                | PackageParser.PARSE_IS_SYSTEM_DIR;
15912        if (locationIsPrivileged(disabledPs.codePath)) {
15913            parseFlags |= PackageParser.PARSE_IS_PRIVILEGED;
15914        }
15915
15916        final PackageParser.Package newPkg;
15917        try {
15918            newPkg = scanPackageTracedLI(disabledPs.codePath, parseFlags, SCAN_NO_PATHS, 0, null);
15919        } catch (PackageManagerException e) {
15920            Slog.w(TAG, "Failed to restore system package:" + deletedPkg.packageName + ": "
15921                    + e.getMessage());
15922            return false;
15923        }
15924
15925        prepareAppDataAfterInstallLIF(newPkg);
15926
15927        // writer
15928        synchronized (mPackages) {
15929            PackageSetting ps = mSettings.mPackages.get(newPkg.packageName);
15930
15931            // Propagate the permissions state as we do not want to drop on the floor
15932            // runtime permissions. The update permissions method below will take
15933            // care of removing obsolete permissions and grant install permissions.
15934            ps.getPermissionsState().copyFrom(deletedPs.getPermissionsState());
15935            updatePermissionsLPw(newPkg.packageName, newPkg,
15936                    UPDATE_PERMISSIONS_ALL | UPDATE_PERMISSIONS_REPLACE_PKG);
15937
15938            if (applyUserRestrictions) {
15939                if (DEBUG_REMOVE) {
15940                    Slog.d(TAG, "Propagating install state across reinstall");
15941                }
15942                for (int userId : allUserHandles) {
15943                    final boolean installed = ArrayUtils.contains(outInfo.origUsers, userId);
15944                    if (DEBUG_REMOVE) {
15945                        Slog.d(TAG, "    user " + userId + " => " + installed);
15946                    }
15947                    ps.setInstalled(installed, userId);
15948
15949                    mSettings.writeRuntimePermissionsForUserLPr(userId, false);
15950                }
15951                // Regardless of writeSettings we need to ensure that this restriction
15952                // state propagation is persisted
15953                mSettings.writeAllUsersPackageRestrictionsLPr();
15954            }
15955            // can downgrade to reader here
15956            if (writeSettings) {
15957                mSettings.writeLPr();
15958            }
15959        }
15960        return true;
15961    }
15962
15963    private boolean deleteInstalledPackageLIF(PackageSetting ps,
15964            boolean deleteCodeAndResources, int flags, int[] allUserHandles,
15965            PackageRemovedInfo outInfo, boolean writeSettings,
15966            PackageParser.Package replacingPackage) {
15967        synchronized (mPackages) {
15968            if (outInfo != null) {
15969                outInfo.uid = ps.appId;
15970            }
15971
15972            if (outInfo != null && outInfo.removedChildPackages != null) {
15973                final int childCount = (ps.childPackageNames != null)
15974                        ? ps.childPackageNames.size() : 0;
15975                for (int i = 0; i < childCount; i++) {
15976                    String childPackageName = ps.childPackageNames.get(i);
15977                    PackageSetting childPs = mSettings.mPackages.get(childPackageName);
15978                    if (childPs == null) {
15979                        return false;
15980                    }
15981                    PackageRemovedInfo childInfo = outInfo.removedChildPackages.get(
15982                            childPackageName);
15983                    if (childInfo != null) {
15984                        childInfo.uid = childPs.appId;
15985                    }
15986                }
15987            }
15988        }
15989
15990        // Delete package data from internal structures and also remove data if flag is set
15991        removePackageDataLIF(ps, allUserHandles, outInfo, flags, writeSettings);
15992
15993        // Delete the child packages data
15994        final int childCount = (ps.childPackageNames != null) ? ps.childPackageNames.size() : 0;
15995        for (int i = 0; i < childCount; i++) {
15996            PackageSetting childPs;
15997            synchronized (mPackages) {
15998                childPs = mSettings.peekPackageLPr(ps.childPackageNames.get(i));
15999            }
16000            if (childPs != null) {
16001                PackageRemovedInfo childOutInfo = (outInfo != null
16002                        && outInfo.removedChildPackages != null)
16003                        ? outInfo.removedChildPackages.get(childPs.name) : null;
16004                final int deleteFlags = (flags & DELETE_KEEP_DATA) != 0
16005                        && (replacingPackage != null
16006                        && !replacingPackage.hasChildPackage(childPs.name))
16007                        ? flags & ~DELETE_KEEP_DATA : flags;
16008                removePackageDataLIF(childPs, allUserHandles, childOutInfo,
16009                        deleteFlags, writeSettings);
16010            }
16011        }
16012
16013        // Delete application code and resources only for parent packages
16014        if (ps.parentPackageName == null) {
16015            if (deleteCodeAndResources && (outInfo != null)) {
16016                outInfo.args = createInstallArgsForExisting(packageFlagsToInstallFlags(ps),
16017                        ps.codePathString, ps.resourcePathString, getAppDexInstructionSets(ps));
16018                if (DEBUG_SD_INSTALL) Slog.i(TAG, "args=" + outInfo.args);
16019            }
16020        }
16021
16022        return true;
16023    }
16024
16025    @Override
16026    public boolean setBlockUninstallForUser(String packageName, boolean blockUninstall,
16027            int userId) {
16028        mContext.enforceCallingOrSelfPermission(
16029                android.Manifest.permission.DELETE_PACKAGES, null);
16030        synchronized (mPackages) {
16031            PackageSetting ps = mSettings.mPackages.get(packageName);
16032            if (ps == null) {
16033                Log.i(TAG, "Package doesn't exist in set block uninstall " + packageName);
16034                return false;
16035            }
16036            if (!ps.getInstalled(userId)) {
16037                // Can't block uninstall for an app that is not installed or enabled.
16038                Log.i(TAG, "Package not installed in set block uninstall " + packageName);
16039                return false;
16040            }
16041            ps.setBlockUninstall(blockUninstall, userId);
16042            mSettings.writePackageRestrictionsLPr(userId);
16043        }
16044        return true;
16045    }
16046
16047    @Override
16048    public boolean getBlockUninstallForUser(String packageName, int userId) {
16049        synchronized (mPackages) {
16050            PackageSetting ps = mSettings.mPackages.get(packageName);
16051            if (ps == null) {
16052                Log.i(TAG, "Package doesn't exist in get block uninstall " + packageName);
16053                return false;
16054            }
16055            return ps.getBlockUninstall(userId);
16056        }
16057    }
16058
16059    @Override
16060    public boolean setRequiredForSystemUser(String packageName, boolean systemUserApp) {
16061        int callingUid = Binder.getCallingUid();
16062        if (callingUid != Process.SYSTEM_UID && callingUid != Process.ROOT_UID) {
16063            throw new SecurityException(
16064                    "setRequiredForSystemUser can only be run by the system or root");
16065        }
16066        synchronized (mPackages) {
16067            PackageSetting ps = mSettings.mPackages.get(packageName);
16068            if (ps == null) {
16069                Log.w(TAG, "Package doesn't exist: " + packageName);
16070                return false;
16071            }
16072            if (systemUserApp) {
16073                ps.pkgPrivateFlags |= ApplicationInfo.PRIVATE_FLAG_REQUIRED_FOR_SYSTEM_USER;
16074            } else {
16075                ps.pkgPrivateFlags &= ~ApplicationInfo.PRIVATE_FLAG_REQUIRED_FOR_SYSTEM_USER;
16076            }
16077            mSettings.writeLPr();
16078        }
16079        return true;
16080    }
16081
16082    /*
16083     * This method handles package deletion in general
16084     */
16085    private boolean deletePackageLIF(String packageName, UserHandle user,
16086            boolean deleteCodeAndResources, int[] allUserHandles, int flags,
16087            PackageRemovedInfo outInfo, boolean writeSettings,
16088            PackageParser.Package replacingPackage) {
16089        if (packageName == null) {
16090            Slog.w(TAG, "Attempt to delete null packageName.");
16091            return false;
16092        }
16093
16094        if (DEBUG_REMOVE) Slog.d(TAG, "deletePackageLI: " + packageName + " user " + user);
16095
16096        PackageSetting ps;
16097
16098        synchronized (mPackages) {
16099            ps = mSettings.mPackages.get(packageName);
16100            if (ps == null) {
16101                Slog.w(TAG, "Package named '" + packageName + "' doesn't exist.");
16102                return false;
16103            }
16104
16105            if (ps.parentPackageName != null && (!isSystemApp(ps)
16106                    || (flags & PackageManager.DELETE_SYSTEM_APP) != 0)) {
16107                if (DEBUG_REMOVE) {
16108                    Slog.d(TAG, "Uninstalled child package:" + packageName + " for user:"
16109                            + ((user == null) ? UserHandle.USER_ALL : user));
16110                }
16111                final int removedUserId = (user != null) ? user.getIdentifier()
16112                        : UserHandle.USER_ALL;
16113                if (!clearPackageStateForUserLIF(ps, removedUserId, outInfo)) {
16114                    return false;
16115                }
16116                markPackageUninstalledForUserLPw(ps, user);
16117                scheduleWritePackageRestrictionsLocked(user);
16118                return true;
16119            }
16120        }
16121
16122        if (((!isSystemApp(ps) || (flags&PackageManager.DELETE_SYSTEM_APP) != 0) && user != null
16123                && user.getIdentifier() != UserHandle.USER_ALL)) {
16124            // The caller is asking that the package only be deleted for a single
16125            // user.  To do this, we just mark its uninstalled state and delete
16126            // its data. If this is a system app, we only allow this to happen if
16127            // they have set the special DELETE_SYSTEM_APP which requests different
16128            // semantics than normal for uninstalling system apps.
16129            markPackageUninstalledForUserLPw(ps, user);
16130
16131            if (!isSystemApp(ps)) {
16132                // Do not uninstall the APK if an app should be cached
16133                boolean keepUninstalledPackage = shouldKeepUninstalledPackageLPr(packageName);
16134                if (ps.isAnyInstalled(sUserManager.getUserIds()) || keepUninstalledPackage) {
16135                    // Other user still have this package installed, so all
16136                    // we need to do is clear this user's data and save that
16137                    // it is uninstalled.
16138                    if (DEBUG_REMOVE) Slog.d(TAG, "Still installed by other users");
16139                    if (!clearPackageStateForUserLIF(ps, user.getIdentifier(), outInfo)) {
16140                        return false;
16141                    }
16142                    scheduleWritePackageRestrictionsLocked(user);
16143                    return true;
16144                } else {
16145                    // We need to set it back to 'installed' so the uninstall
16146                    // broadcasts will be sent correctly.
16147                    if (DEBUG_REMOVE) Slog.d(TAG, "Not installed by other users, full delete");
16148                    ps.setInstalled(true, user.getIdentifier());
16149                }
16150            } else {
16151                // This is a system app, so we assume that the
16152                // other users still have this package installed, so all
16153                // we need to do is clear this user's data and save that
16154                // it is uninstalled.
16155                if (DEBUG_REMOVE) Slog.d(TAG, "Deleting system app");
16156                if (!clearPackageStateForUserLIF(ps, user.getIdentifier(), outInfo)) {
16157                    return false;
16158                }
16159                scheduleWritePackageRestrictionsLocked(user);
16160                return true;
16161            }
16162        }
16163
16164        // If we are deleting a composite package for all users, keep track
16165        // of result for each child.
16166        if (ps.childPackageNames != null && outInfo != null) {
16167            synchronized (mPackages) {
16168                final int childCount = ps.childPackageNames.size();
16169                outInfo.removedChildPackages = new ArrayMap<>(childCount);
16170                for (int i = 0; i < childCount; i++) {
16171                    String childPackageName = ps.childPackageNames.get(i);
16172                    PackageRemovedInfo childInfo = new PackageRemovedInfo();
16173                    childInfo.removedPackage = childPackageName;
16174                    outInfo.removedChildPackages.put(childPackageName, childInfo);
16175                    PackageSetting childPs = mSettings.peekPackageLPr(childPackageName);
16176                    if (childPs != null) {
16177                        childInfo.origUsers = childPs.queryInstalledUsers(allUserHandles, true);
16178                    }
16179                }
16180            }
16181        }
16182
16183        boolean ret = false;
16184        if (isSystemApp(ps)) {
16185            if (DEBUG_REMOVE) Slog.d(TAG, "Removing system package: " + ps.name);
16186            // When an updated system application is deleted we delete the existing resources
16187            // as well and fall back to existing code in system partition
16188            ret = deleteSystemPackageLIF(ps.pkg, ps, allUserHandles, flags, outInfo, writeSettings);
16189        } else {
16190            if (DEBUG_REMOVE) Slog.d(TAG, "Removing non-system package: " + ps.name);
16191            ret = deleteInstalledPackageLIF(ps, deleteCodeAndResources, flags, allUserHandles,
16192                    outInfo, writeSettings, replacingPackage);
16193        }
16194
16195        // Take a note whether we deleted the package for all users
16196        if (outInfo != null) {
16197            outInfo.removedForAllUsers = mPackages.get(ps.name) == null;
16198            if (outInfo.removedChildPackages != null) {
16199                synchronized (mPackages) {
16200                    final int childCount = outInfo.removedChildPackages.size();
16201                    for (int i = 0; i < childCount; i++) {
16202                        PackageRemovedInfo childInfo = outInfo.removedChildPackages.valueAt(i);
16203                        if (childInfo != null) {
16204                            childInfo.removedForAllUsers = mPackages.get(
16205                                    childInfo.removedPackage) == null;
16206                        }
16207                    }
16208                }
16209            }
16210            // If we uninstalled an update to a system app there may be some
16211            // child packages that appeared as they are declared in the system
16212            // app but were not declared in the update.
16213            if (isSystemApp(ps)) {
16214                synchronized (mPackages) {
16215                    PackageSetting updatedPs = mSettings.peekPackageLPr(ps.name);
16216                    final int childCount = (updatedPs.childPackageNames != null)
16217                            ? updatedPs.childPackageNames.size() : 0;
16218                    for (int i = 0; i < childCount; i++) {
16219                        String childPackageName = updatedPs.childPackageNames.get(i);
16220                        if (outInfo.removedChildPackages == null
16221                                || outInfo.removedChildPackages.indexOfKey(childPackageName) < 0) {
16222                            PackageSetting childPs = mSettings.peekPackageLPr(childPackageName);
16223                            if (childPs == null) {
16224                                continue;
16225                            }
16226                            PackageInstalledInfo installRes = new PackageInstalledInfo();
16227                            installRes.name = childPackageName;
16228                            installRes.newUsers = childPs.queryInstalledUsers(allUserHandles, true);
16229                            installRes.pkg = mPackages.get(childPackageName);
16230                            installRes.uid = childPs.pkg.applicationInfo.uid;
16231                            if (outInfo.appearedChildPackages == null) {
16232                                outInfo.appearedChildPackages = new ArrayMap<>();
16233                            }
16234                            outInfo.appearedChildPackages.put(childPackageName, installRes);
16235                        }
16236                    }
16237                }
16238            }
16239        }
16240
16241        return ret;
16242    }
16243
16244    private void markPackageUninstalledForUserLPw(PackageSetting ps, UserHandle user) {
16245        final int[] userIds = (user == null || user.getIdentifier() == UserHandle.USER_ALL)
16246                ? sUserManager.getUserIds() : new int[] {user.getIdentifier()};
16247        for (int nextUserId : userIds) {
16248            if (DEBUG_REMOVE) {
16249                Slog.d(TAG, "Marking package:" + ps.name + " uninstalled for user:" + nextUserId);
16250            }
16251            ps.setUserState(nextUserId, 0, COMPONENT_ENABLED_STATE_DEFAULT,
16252                    false /*installed*/, true /*stopped*/, true /*notLaunched*/,
16253                    false /*hidden*/, false /*suspended*/, null, null, null,
16254                    false /*blockUninstall*/,
16255                    ps.readUserState(nextUserId).domainVerificationStatus, 0);
16256        }
16257    }
16258
16259    private boolean clearPackageStateForUserLIF(PackageSetting ps, int userId,
16260            PackageRemovedInfo outInfo) {
16261        final PackageParser.Package pkg;
16262        synchronized (mPackages) {
16263            pkg = mPackages.get(ps.name);
16264        }
16265
16266        final int[] userIds = (userId == UserHandle.USER_ALL) ? sUserManager.getUserIds()
16267                : new int[] {userId};
16268        for (int nextUserId : userIds) {
16269            if (DEBUG_REMOVE) {
16270                Slog.d(TAG, "Updating package:" + ps.name + " install state for user:"
16271                        + nextUserId);
16272            }
16273
16274            destroyAppDataLIF(pkg, userId,
16275                    StorageManager.FLAG_STORAGE_DE | StorageManager.FLAG_STORAGE_CE);
16276            destroyAppProfilesLIF(pkg, userId);
16277            removeKeystoreDataIfNeeded(nextUserId, ps.appId);
16278            schedulePackageCleaning(ps.name, nextUserId, false);
16279            synchronized (mPackages) {
16280                if (clearPackagePreferredActivitiesLPw(ps.name, nextUserId)) {
16281                    scheduleWritePackageRestrictionsLocked(nextUserId);
16282                }
16283                resetUserChangesToRuntimePermissionsAndFlagsLPw(ps, nextUserId);
16284            }
16285        }
16286
16287        if (outInfo != null) {
16288            outInfo.removedPackage = ps.name;
16289            outInfo.removedAppId = ps.appId;
16290            outInfo.removedUsers = userIds;
16291        }
16292
16293        return true;
16294    }
16295
16296    private final class ClearStorageConnection implements ServiceConnection {
16297        IMediaContainerService mContainerService;
16298
16299        @Override
16300        public void onServiceConnected(ComponentName name, IBinder service) {
16301            synchronized (this) {
16302                mContainerService = IMediaContainerService.Stub.asInterface(service);
16303                notifyAll();
16304            }
16305        }
16306
16307        @Override
16308        public void onServiceDisconnected(ComponentName name) {
16309        }
16310    }
16311
16312    private void clearExternalStorageDataSync(String packageName, int userId, boolean allData) {
16313        if (DEFAULT_CONTAINER_PACKAGE.equals(packageName)) return;
16314
16315        final boolean mounted;
16316        if (Environment.isExternalStorageEmulated()) {
16317            mounted = true;
16318        } else {
16319            final String status = Environment.getExternalStorageState();
16320
16321            mounted = status.equals(Environment.MEDIA_MOUNTED)
16322                    || status.equals(Environment.MEDIA_MOUNTED_READ_ONLY);
16323        }
16324
16325        if (!mounted) {
16326            return;
16327        }
16328
16329        final Intent containerIntent = new Intent().setComponent(DEFAULT_CONTAINER_COMPONENT);
16330        int[] users;
16331        if (userId == UserHandle.USER_ALL) {
16332            users = sUserManager.getUserIds();
16333        } else {
16334            users = new int[] { userId };
16335        }
16336        final ClearStorageConnection conn = new ClearStorageConnection();
16337        if (mContext.bindServiceAsUser(
16338                containerIntent, conn, Context.BIND_AUTO_CREATE, UserHandle.SYSTEM)) {
16339            try {
16340                for (int curUser : users) {
16341                    long timeout = SystemClock.uptimeMillis() + 5000;
16342                    synchronized (conn) {
16343                        long now;
16344                        while (conn.mContainerService == null &&
16345                                (now = SystemClock.uptimeMillis()) < timeout) {
16346                            try {
16347                                conn.wait(timeout - now);
16348                            } catch (InterruptedException e) {
16349                            }
16350                        }
16351                    }
16352                    if (conn.mContainerService == null) {
16353                        return;
16354                    }
16355
16356                    final UserEnvironment userEnv = new UserEnvironment(curUser);
16357                    clearDirectory(conn.mContainerService,
16358                            userEnv.buildExternalStorageAppCacheDirs(packageName));
16359                    if (allData) {
16360                        clearDirectory(conn.mContainerService,
16361                                userEnv.buildExternalStorageAppDataDirs(packageName));
16362                        clearDirectory(conn.mContainerService,
16363                                userEnv.buildExternalStorageAppMediaDirs(packageName));
16364                    }
16365                }
16366            } finally {
16367                mContext.unbindService(conn);
16368            }
16369        }
16370    }
16371
16372    @Override
16373    public void clearApplicationProfileData(String packageName) {
16374        enforceSystemOrRoot("Only the system can clear all profile data");
16375
16376        final PackageParser.Package pkg;
16377        synchronized (mPackages) {
16378            pkg = mPackages.get(packageName);
16379        }
16380
16381        try (PackageFreezer freezer = freezePackage(packageName, "clearApplicationProfileData")) {
16382            synchronized (mInstallLock) {
16383                clearAppProfilesLIF(pkg, UserHandle.USER_ALL);
16384                destroyAppReferenceProfileLeafLIF(pkg, UserHandle.USER_ALL,
16385                        true /* removeBaseMarker */);
16386            }
16387        }
16388    }
16389
16390    @Override
16391    public void clearApplicationUserData(final String packageName,
16392            final IPackageDataObserver observer, final int userId) {
16393        mContext.enforceCallingOrSelfPermission(
16394                android.Manifest.permission.CLEAR_APP_USER_DATA, null);
16395
16396        enforceCrossUserPermission(Binder.getCallingUid(), userId,
16397                true /* requireFullPermission */, false /* checkShell */, "clear application data");
16398
16399        if (mProtectedPackages.canPackageBeWiped(userId, packageName)) {
16400            throw new SecurityException("Cannot clear data for a device owner or a profile owner");
16401        }
16402        // Queue up an async operation since the package deletion may take a little while.
16403        mHandler.post(new Runnable() {
16404            public void run() {
16405                mHandler.removeCallbacks(this);
16406                final boolean succeeded;
16407                try (PackageFreezer freezer = freezePackage(packageName,
16408                        "clearApplicationUserData")) {
16409                    synchronized (mInstallLock) {
16410                        succeeded = clearApplicationUserDataLIF(packageName, userId);
16411                    }
16412                    clearExternalStorageDataSync(packageName, userId, true);
16413                }
16414                if (succeeded) {
16415                    // invoke DeviceStorageMonitor's update method to clear any notifications
16416                    DeviceStorageMonitorInternal dsm = LocalServices
16417                            .getService(DeviceStorageMonitorInternal.class);
16418                    if (dsm != null) {
16419                        dsm.checkMemory();
16420                    }
16421                }
16422                if(observer != null) {
16423                    try {
16424                        observer.onRemoveCompleted(packageName, succeeded);
16425                    } catch (RemoteException e) {
16426                        Log.i(TAG, "Observer no longer exists.");
16427                    }
16428                } //end if observer
16429            } //end run
16430        });
16431    }
16432
16433    private boolean clearApplicationUserDataLIF(String packageName, int userId) {
16434        if (packageName == null) {
16435            Slog.w(TAG, "Attempt to delete null packageName.");
16436            return false;
16437        }
16438
16439        // Try finding details about the requested package
16440        PackageParser.Package pkg;
16441        synchronized (mPackages) {
16442            pkg = mPackages.get(packageName);
16443            if (pkg == null) {
16444                final PackageSetting ps = mSettings.mPackages.get(packageName);
16445                if (ps != null) {
16446                    pkg = ps.pkg;
16447                }
16448            }
16449
16450            if (pkg == null) {
16451                Slog.w(TAG, "Package named '" + packageName + "' doesn't exist.");
16452                return false;
16453            }
16454
16455            PackageSetting ps = (PackageSetting) pkg.mExtras;
16456            resetUserChangesToRuntimePermissionsAndFlagsLPw(ps, userId);
16457        }
16458
16459        clearAppDataLIF(pkg, userId,
16460                StorageManager.FLAG_STORAGE_DE | StorageManager.FLAG_STORAGE_CE);
16461
16462        final int appId = UserHandle.getAppId(pkg.applicationInfo.uid);
16463        removeKeystoreDataIfNeeded(userId, appId);
16464
16465        UserManagerInternal umInternal = getUserManagerInternal();
16466        final int flags;
16467        if (umInternal.isUserUnlockingOrUnlocked(userId)) {
16468            flags = StorageManager.FLAG_STORAGE_DE | StorageManager.FLAG_STORAGE_CE;
16469        } else if (umInternal.isUserRunning(userId)) {
16470            flags = StorageManager.FLAG_STORAGE_DE;
16471        } else {
16472            flags = 0;
16473        }
16474        prepareAppDataContentsLIF(pkg, userId, flags);
16475
16476        return true;
16477    }
16478
16479    /**
16480     * Reverts user permission state changes (permissions and flags) in
16481     * all packages for a given user.
16482     *
16483     * @param userId The device user for which to do a reset.
16484     */
16485    private void resetUserChangesToRuntimePermissionsAndFlagsLPw(int userId) {
16486        final int packageCount = mPackages.size();
16487        for (int i = 0; i < packageCount; i++) {
16488            PackageParser.Package pkg = mPackages.valueAt(i);
16489            PackageSetting ps = (PackageSetting) pkg.mExtras;
16490            resetUserChangesToRuntimePermissionsAndFlagsLPw(ps, userId);
16491        }
16492    }
16493
16494    private void resetNetworkPolicies(int userId) {
16495        LocalServices.getService(NetworkPolicyManagerInternal.class).resetUserState(userId);
16496    }
16497
16498    /**
16499     * Reverts user permission state changes (permissions and flags).
16500     *
16501     * @param ps The package for which to reset.
16502     * @param userId The device user for which to do a reset.
16503     */
16504    private void resetUserChangesToRuntimePermissionsAndFlagsLPw(
16505            final PackageSetting ps, final int userId) {
16506        if (ps.pkg == null) {
16507            return;
16508        }
16509
16510        // These are flags that can change base on user actions.
16511        final int userSettableMask = FLAG_PERMISSION_USER_SET
16512                | FLAG_PERMISSION_USER_FIXED
16513                | FLAG_PERMISSION_REVOKE_ON_UPGRADE
16514                | FLAG_PERMISSION_REVIEW_REQUIRED;
16515
16516        final int policyOrSystemFlags = FLAG_PERMISSION_SYSTEM_FIXED
16517                | FLAG_PERMISSION_POLICY_FIXED;
16518
16519        boolean writeInstallPermissions = false;
16520        boolean writeRuntimePermissions = false;
16521
16522        final int permissionCount = ps.pkg.requestedPermissions.size();
16523        for (int i = 0; i < permissionCount; i++) {
16524            String permission = ps.pkg.requestedPermissions.get(i);
16525
16526            BasePermission bp = mSettings.mPermissions.get(permission);
16527            if (bp == null) {
16528                continue;
16529            }
16530
16531            // If shared user we just reset the state to which only this app contributed.
16532            if (ps.sharedUser != null) {
16533                boolean used = false;
16534                final int packageCount = ps.sharedUser.packages.size();
16535                for (int j = 0; j < packageCount; j++) {
16536                    PackageSetting pkg = ps.sharedUser.packages.valueAt(j);
16537                    if (pkg.pkg != null && !pkg.pkg.packageName.equals(ps.pkg.packageName)
16538                            && pkg.pkg.requestedPermissions.contains(permission)) {
16539                        used = true;
16540                        break;
16541                    }
16542                }
16543                if (used) {
16544                    continue;
16545                }
16546            }
16547
16548            PermissionsState permissionsState = ps.getPermissionsState();
16549
16550            final int oldFlags = permissionsState.getPermissionFlags(bp.name, userId);
16551
16552            // Always clear the user settable flags.
16553            final boolean hasInstallState = permissionsState.getInstallPermissionState(
16554                    bp.name) != null;
16555            // If permission review is enabled and this is a legacy app, mark the
16556            // permission as requiring a review as this is the initial state.
16557            int flags = 0;
16558            if (Build.PERMISSIONS_REVIEW_REQUIRED
16559                    && ps.pkg.applicationInfo.targetSdkVersion < Build.VERSION_CODES.M) {
16560                flags |= FLAG_PERMISSION_REVIEW_REQUIRED;
16561            }
16562            if (permissionsState.updatePermissionFlags(bp, userId, userSettableMask, flags)) {
16563                if (hasInstallState) {
16564                    writeInstallPermissions = true;
16565                } else {
16566                    writeRuntimePermissions = true;
16567                }
16568            }
16569
16570            // Below is only runtime permission handling.
16571            if (!bp.isRuntime()) {
16572                continue;
16573            }
16574
16575            // Never clobber system or policy.
16576            if ((oldFlags & policyOrSystemFlags) != 0) {
16577                continue;
16578            }
16579
16580            // If this permission was granted by default, make sure it is.
16581            if ((oldFlags & FLAG_PERMISSION_GRANTED_BY_DEFAULT) != 0) {
16582                if (permissionsState.grantRuntimePermission(bp, userId)
16583                        != PERMISSION_OPERATION_FAILURE) {
16584                    writeRuntimePermissions = true;
16585                }
16586            // If permission review is enabled the permissions for a legacy apps
16587            // are represented as constantly granted runtime ones, so don't revoke.
16588            } else if ((flags & FLAG_PERMISSION_REVIEW_REQUIRED) == 0) {
16589                // Otherwise, reset the permission.
16590                final int revokeResult = permissionsState.revokeRuntimePermission(bp, userId);
16591                switch (revokeResult) {
16592                    case PERMISSION_OPERATION_SUCCESS:
16593                    case PERMISSION_OPERATION_SUCCESS_GIDS_CHANGED: {
16594                        writeRuntimePermissions = true;
16595                        final int appId = ps.appId;
16596                        mHandler.post(new Runnable() {
16597                            @Override
16598                            public void run() {
16599                                killUid(appId, userId, KILL_APP_REASON_PERMISSIONS_REVOKED);
16600                            }
16601                        });
16602                    } break;
16603                }
16604            }
16605        }
16606
16607        // Synchronously write as we are taking permissions away.
16608        if (writeRuntimePermissions) {
16609            mSettings.writeRuntimePermissionsForUserLPr(userId, true);
16610        }
16611
16612        // Synchronously write as we are taking permissions away.
16613        if (writeInstallPermissions) {
16614            mSettings.writeLPr();
16615        }
16616    }
16617
16618    /**
16619     * Remove entries from the keystore daemon. Will only remove it if the
16620     * {@code appId} is valid.
16621     */
16622    private static void removeKeystoreDataIfNeeded(int userId, int appId) {
16623        if (appId < 0) {
16624            return;
16625        }
16626
16627        final KeyStore keyStore = KeyStore.getInstance();
16628        if (keyStore != null) {
16629            if (userId == UserHandle.USER_ALL) {
16630                for (final int individual : sUserManager.getUserIds()) {
16631                    keyStore.clearUid(UserHandle.getUid(individual, appId));
16632                }
16633            } else {
16634                keyStore.clearUid(UserHandle.getUid(userId, appId));
16635            }
16636        } else {
16637            Slog.w(TAG, "Could not contact keystore to clear entries for app id " + appId);
16638        }
16639    }
16640
16641    @Override
16642    public void deleteApplicationCacheFiles(final String packageName,
16643            final IPackageDataObserver observer) {
16644        final int userId = UserHandle.getCallingUserId();
16645        deleteApplicationCacheFilesAsUser(packageName, userId, observer);
16646    }
16647
16648    @Override
16649    public void deleteApplicationCacheFilesAsUser(final String packageName, final int userId,
16650            final IPackageDataObserver observer) {
16651        mContext.enforceCallingOrSelfPermission(
16652                android.Manifest.permission.DELETE_CACHE_FILES, null);
16653        enforceCrossUserPermission(Binder.getCallingUid(), userId,
16654                /* requireFullPermission= */ true, /* checkShell= */ false,
16655                "delete application cache files");
16656
16657        final PackageParser.Package pkg;
16658        synchronized (mPackages) {
16659            pkg = mPackages.get(packageName);
16660        }
16661
16662        // Queue up an async operation since the package deletion may take a little while.
16663        mHandler.post(new Runnable() {
16664            public void run() {
16665                synchronized (mInstallLock) {
16666                    final int flags = StorageManager.FLAG_STORAGE_DE
16667                            | StorageManager.FLAG_STORAGE_CE;
16668                    // We're only clearing cache files, so we don't care if the
16669                    // app is unfrozen and still able to run
16670                    clearAppDataLIF(pkg, userId, flags | Installer.FLAG_CLEAR_CACHE_ONLY);
16671                    clearAppDataLIF(pkg, userId, flags | Installer.FLAG_CLEAR_CODE_CACHE_ONLY);
16672                }
16673                clearExternalStorageDataSync(packageName, userId, false);
16674                if (observer != null) {
16675                    try {
16676                        observer.onRemoveCompleted(packageName, true);
16677                    } catch (RemoteException e) {
16678                        Log.i(TAG, "Observer no longer exists.");
16679                    }
16680                }
16681            }
16682        });
16683    }
16684
16685    @Override
16686    public void getPackageSizeInfo(final String packageName, int userHandle,
16687            final IPackageStatsObserver observer) {
16688        mContext.enforceCallingOrSelfPermission(
16689                android.Manifest.permission.GET_PACKAGE_SIZE, null);
16690        if (packageName == null) {
16691            throw new IllegalArgumentException("Attempt to get size of null packageName");
16692        }
16693
16694        PackageStats stats = new PackageStats(packageName, userHandle);
16695
16696        /*
16697         * Queue up an async operation since the package measurement may take a
16698         * little while.
16699         */
16700        Message msg = mHandler.obtainMessage(INIT_COPY);
16701        msg.obj = new MeasureParams(stats, observer);
16702        mHandler.sendMessage(msg);
16703    }
16704
16705    private boolean getPackageSizeInfoLI(String packageName, int userId, PackageStats stats) {
16706        final PackageSetting ps;
16707        synchronized (mPackages) {
16708            ps = mSettings.mPackages.get(packageName);
16709            if (ps == null) {
16710                Slog.w(TAG, "Failed to find settings for " + packageName);
16711                return false;
16712            }
16713        }
16714        try {
16715            mInstaller.getAppSize(ps.volumeUuid, packageName, userId,
16716                    StorageManager.FLAG_STORAGE_DE | StorageManager.FLAG_STORAGE_CE,
16717                    ps.getCeDataInode(userId), ps.codePathString, stats);
16718        } catch (InstallerException e) {
16719            Slog.w(TAG, String.valueOf(e));
16720            return false;
16721        }
16722
16723        // For now, ignore code size of packages on system partition
16724        if (isSystemApp(ps) && !isUpdatedSystemApp(ps)) {
16725            stats.codeSize = 0;
16726        }
16727
16728        return true;
16729    }
16730
16731    private int getUidTargetSdkVersionLockedLPr(int uid) {
16732        Object obj = mSettings.getUserIdLPr(uid);
16733        if (obj instanceof SharedUserSetting) {
16734            final SharedUserSetting sus = (SharedUserSetting) obj;
16735            int vers = Build.VERSION_CODES.CUR_DEVELOPMENT;
16736            final Iterator<PackageSetting> it = sus.packages.iterator();
16737            while (it.hasNext()) {
16738                final PackageSetting ps = it.next();
16739                if (ps.pkg != null) {
16740                    int v = ps.pkg.applicationInfo.targetSdkVersion;
16741                    if (v < vers) vers = v;
16742                }
16743            }
16744            return vers;
16745        } else if (obj instanceof PackageSetting) {
16746            final PackageSetting ps = (PackageSetting) obj;
16747            if (ps.pkg != null) {
16748                return ps.pkg.applicationInfo.targetSdkVersion;
16749            }
16750        }
16751        return Build.VERSION_CODES.CUR_DEVELOPMENT;
16752    }
16753
16754    @Override
16755    public void addPreferredActivity(IntentFilter filter, int match,
16756            ComponentName[] set, ComponentName activity, int userId) {
16757        addPreferredActivityInternal(filter, match, set, activity, true, userId,
16758                "Adding preferred");
16759    }
16760
16761    private void addPreferredActivityInternal(IntentFilter filter, int match,
16762            ComponentName[] set, ComponentName activity, boolean always, int userId,
16763            String opname) {
16764        // writer
16765        int callingUid = Binder.getCallingUid();
16766        enforceCrossUserPermission(callingUid, userId,
16767                true /* requireFullPermission */, false /* checkShell */, "add preferred activity");
16768        if (filter.countActions() == 0) {
16769            Slog.w(TAG, "Cannot set a preferred activity with no filter actions");
16770            return;
16771        }
16772        synchronized (mPackages) {
16773            if (mContext.checkCallingOrSelfPermission(
16774                    android.Manifest.permission.SET_PREFERRED_APPLICATIONS)
16775                    != PackageManager.PERMISSION_GRANTED) {
16776                if (getUidTargetSdkVersionLockedLPr(callingUid)
16777                        < Build.VERSION_CODES.FROYO) {
16778                    Slog.w(TAG, "Ignoring addPreferredActivity() from uid "
16779                            + callingUid);
16780                    return;
16781                }
16782                mContext.enforceCallingOrSelfPermission(
16783                        android.Manifest.permission.SET_PREFERRED_APPLICATIONS, null);
16784            }
16785
16786            PreferredIntentResolver pir = mSettings.editPreferredActivitiesLPw(userId);
16787            Slog.i(TAG, opname + " activity " + activity.flattenToShortString() + " for user "
16788                    + userId + ":");
16789            filter.dump(new LogPrinter(Log.INFO, TAG), "  ");
16790            pir.addFilter(new PreferredActivity(filter, match, set, activity, always));
16791            scheduleWritePackageRestrictionsLocked(userId);
16792        }
16793    }
16794
16795    @Override
16796    public void replacePreferredActivity(IntentFilter filter, int match,
16797            ComponentName[] set, ComponentName activity, int userId) {
16798        if (filter.countActions() != 1) {
16799            throw new IllegalArgumentException(
16800                    "replacePreferredActivity expects filter to have only 1 action.");
16801        }
16802        if (filter.countDataAuthorities() != 0
16803                || filter.countDataPaths() != 0
16804                || filter.countDataSchemes() > 1
16805                || filter.countDataTypes() != 0) {
16806            throw new IllegalArgumentException(
16807                    "replacePreferredActivity expects filter to have no data authorities, " +
16808                    "paths, or types; and at most one scheme.");
16809        }
16810
16811        final int callingUid = Binder.getCallingUid();
16812        enforceCrossUserPermission(callingUid, userId,
16813                true /* requireFullPermission */, false /* checkShell */,
16814                "replace preferred activity");
16815        synchronized (mPackages) {
16816            if (mContext.checkCallingOrSelfPermission(
16817                    android.Manifest.permission.SET_PREFERRED_APPLICATIONS)
16818                    != PackageManager.PERMISSION_GRANTED) {
16819                if (getUidTargetSdkVersionLockedLPr(callingUid)
16820                        < Build.VERSION_CODES.FROYO) {
16821                    Slog.w(TAG, "Ignoring replacePreferredActivity() from uid "
16822                            + Binder.getCallingUid());
16823                    return;
16824                }
16825                mContext.enforceCallingOrSelfPermission(
16826                        android.Manifest.permission.SET_PREFERRED_APPLICATIONS, null);
16827            }
16828
16829            PreferredIntentResolver pir = mSettings.mPreferredActivities.get(userId);
16830            if (pir != null) {
16831                // Get all of the existing entries that exactly match this filter.
16832                ArrayList<PreferredActivity> existing = pir.findFilters(filter);
16833                if (existing != null && existing.size() == 1) {
16834                    PreferredActivity cur = existing.get(0);
16835                    if (DEBUG_PREFERRED) {
16836                        Slog.i(TAG, "Checking replace of preferred:");
16837                        filter.dump(new LogPrinter(Log.INFO, TAG), "  ");
16838                        if (!cur.mPref.mAlways) {
16839                            Slog.i(TAG, "  -- CUR; not mAlways!");
16840                        } else {
16841                            Slog.i(TAG, "  -- CUR: mMatch=" + cur.mPref.mMatch);
16842                            Slog.i(TAG, "  -- CUR: mSet="
16843                                    + Arrays.toString(cur.mPref.mSetComponents));
16844                            Slog.i(TAG, "  -- CUR: mComponent=" + cur.mPref.mShortComponent);
16845                            Slog.i(TAG, "  -- NEW: mMatch="
16846                                    + (match&IntentFilter.MATCH_CATEGORY_MASK));
16847                            Slog.i(TAG, "  -- CUR: mSet=" + Arrays.toString(set));
16848                            Slog.i(TAG, "  -- CUR: mComponent=" + activity.flattenToShortString());
16849                        }
16850                    }
16851                    if (cur.mPref.mAlways && cur.mPref.mComponent.equals(activity)
16852                            && cur.mPref.mMatch == (match&IntentFilter.MATCH_CATEGORY_MASK)
16853                            && cur.mPref.sameSet(set)) {
16854                        // Setting the preferred activity to what it happens to be already
16855                        if (DEBUG_PREFERRED) {
16856                            Slog.i(TAG, "Replacing with same preferred activity "
16857                                    + cur.mPref.mShortComponent + " for user "
16858                                    + userId + ":");
16859                            filter.dump(new LogPrinter(Log.INFO, TAG), "  ");
16860                        }
16861                        return;
16862                    }
16863                }
16864
16865                if (existing != null) {
16866                    if (DEBUG_PREFERRED) {
16867                        Slog.i(TAG, existing.size() + " existing preferred matches for:");
16868                        filter.dump(new LogPrinter(Log.INFO, TAG), "  ");
16869                    }
16870                    for (int i = 0; i < existing.size(); i++) {
16871                        PreferredActivity pa = existing.get(i);
16872                        if (DEBUG_PREFERRED) {
16873                            Slog.i(TAG, "Removing existing preferred activity "
16874                                    + pa.mPref.mComponent + ":");
16875                            pa.dump(new LogPrinter(Log.INFO, TAG), "  ");
16876                        }
16877                        pir.removeFilter(pa);
16878                    }
16879                }
16880            }
16881            addPreferredActivityInternal(filter, match, set, activity, true, userId,
16882                    "Replacing preferred");
16883        }
16884    }
16885
16886    @Override
16887    public void clearPackagePreferredActivities(String packageName) {
16888        final int uid = Binder.getCallingUid();
16889        // writer
16890        synchronized (mPackages) {
16891            PackageParser.Package pkg = mPackages.get(packageName);
16892            if (pkg == null || pkg.applicationInfo.uid != uid) {
16893                if (mContext.checkCallingOrSelfPermission(
16894                        android.Manifest.permission.SET_PREFERRED_APPLICATIONS)
16895                        != PackageManager.PERMISSION_GRANTED) {
16896                    if (getUidTargetSdkVersionLockedLPr(Binder.getCallingUid())
16897                            < Build.VERSION_CODES.FROYO) {
16898                        Slog.w(TAG, "Ignoring clearPackagePreferredActivities() from uid "
16899                                + Binder.getCallingUid());
16900                        return;
16901                    }
16902                    mContext.enforceCallingOrSelfPermission(
16903                            android.Manifest.permission.SET_PREFERRED_APPLICATIONS, null);
16904                }
16905            }
16906
16907            int user = UserHandle.getCallingUserId();
16908            if (clearPackagePreferredActivitiesLPw(packageName, user)) {
16909                scheduleWritePackageRestrictionsLocked(user);
16910            }
16911        }
16912    }
16913
16914    /** This method takes a specific user id as well as UserHandle.USER_ALL. */
16915    boolean clearPackagePreferredActivitiesLPw(String packageName, int userId) {
16916        ArrayList<PreferredActivity> removed = null;
16917        boolean changed = false;
16918        for (int i=0; i<mSettings.mPreferredActivities.size(); i++) {
16919            final int thisUserId = mSettings.mPreferredActivities.keyAt(i);
16920            PreferredIntentResolver pir = mSettings.mPreferredActivities.valueAt(i);
16921            if (userId != UserHandle.USER_ALL && userId != thisUserId) {
16922                continue;
16923            }
16924            Iterator<PreferredActivity> it = pir.filterIterator();
16925            while (it.hasNext()) {
16926                PreferredActivity pa = it.next();
16927                // Mark entry for removal only if it matches the package name
16928                // and the entry is of type "always".
16929                if (packageName == null ||
16930                        (pa.mPref.mComponent.getPackageName().equals(packageName)
16931                                && pa.mPref.mAlways)) {
16932                    if (removed == null) {
16933                        removed = new ArrayList<PreferredActivity>();
16934                    }
16935                    removed.add(pa);
16936                }
16937            }
16938            if (removed != null) {
16939                for (int j=0; j<removed.size(); j++) {
16940                    PreferredActivity pa = removed.get(j);
16941                    pir.removeFilter(pa);
16942                }
16943                changed = true;
16944            }
16945        }
16946        return changed;
16947    }
16948
16949    /** This method takes a specific user id as well as UserHandle.USER_ALL. */
16950    private void clearIntentFilterVerificationsLPw(int userId) {
16951        final int packageCount = mPackages.size();
16952        for (int i = 0; i < packageCount; i++) {
16953            PackageParser.Package pkg = mPackages.valueAt(i);
16954            clearIntentFilterVerificationsLPw(pkg.packageName, userId);
16955        }
16956    }
16957
16958    /** This method takes a specific user id as well as UserHandle.USER_ALL. */
16959    void clearIntentFilterVerificationsLPw(String packageName, int userId) {
16960        if (userId == UserHandle.USER_ALL) {
16961            if (mSettings.removeIntentFilterVerificationLPw(packageName,
16962                    sUserManager.getUserIds())) {
16963                for (int oneUserId : sUserManager.getUserIds()) {
16964                    scheduleWritePackageRestrictionsLocked(oneUserId);
16965                }
16966            }
16967        } else {
16968            if (mSettings.removeIntentFilterVerificationLPw(packageName, userId)) {
16969                scheduleWritePackageRestrictionsLocked(userId);
16970            }
16971        }
16972    }
16973
16974    void clearDefaultBrowserIfNeeded(String packageName) {
16975        for (int oneUserId : sUserManager.getUserIds()) {
16976            String defaultBrowserPackageName = getDefaultBrowserPackageName(oneUserId);
16977            if (TextUtils.isEmpty(defaultBrowserPackageName)) continue;
16978            if (packageName.equals(defaultBrowserPackageName)) {
16979                setDefaultBrowserPackageName(null, oneUserId);
16980            }
16981        }
16982    }
16983
16984    @Override
16985    public void resetApplicationPreferences(int userId) {
16986        mContext.enforceCallingOrSelfPermission(
16987                android.Manifest.permission.SET_PREFERRED_APPLICATIONS, null);
16988        final long identity = Binder.clearCallingIdentity();
16989        // writer
16990        try {
16991            synchronized (mPackages) {
16992                clearPackagePreferredActivitiesLPw(null, userId);
16993                mSettings.applyDefaultPreferredAppsLPw(this, userId);
16994                // TODO: We have to reset the default SMS and Phone. This requires
16995                // significant refactoring to keep all default apps in the package
16996                // manager (cleaner but more work) or have the services provide
16997                // callbacks to the package manager to request a default app reset.
16998                applyFactoryDefaultBrowserLPw(userId);
16999                clearIntentFilterVerificationsLPw(userId);
17000                primeDomainVerificationsLPw(userId);
17001                resetUserChangesToRuntimePermissionsAndFlagsLPw(userId);
17002                scheduleWritePackageRestrictionsLocked(userId);
17003            }
17004            resetNetworkPolicies(userId);
17005        } finally {
17006            Binder.restoreCallingIdentity(identity);
17007        }
17008    }
17009
17010    @Override
17011    public int getPreferredActivities(List<IntentFilter> outFilters,
17012            List<ComponentName> outActivities, String packageName) {
17013
17014        int num = 0;
17015        final int userId = UserHandle.getCallingUserId();
17016        // reader
17017        synchronized (mPackages) {
17018            PreferredIntentResolver pir = mSettings.mPreferredActivities.get(userId);
17019            if (pir != null) {
17020                final Iterator<PreferredActivity> it = pir.filterIterator();
17021                while (it.hasNext()) {
17022                    final PreferredActivity pa = it.next();
17023                    if (packageName == null
17024                            || (pa.mPref.mComponent.getPackageName().equals(packageName)
17025                                    && pa.mPref.mAlways)) {
17026                        if (outFilters != null) {
17027                            outFilters.add(new IntentFilter(pa));
17028                        }
17029                        if (outActivities != null) {
17030                            outActivities.add(pa.mPref.mComponent);
17031                        }
17032                    }
17033                }
17034            }
17035        }
17036
17037        return num;
17038    }
17039
17040    @Override
17041    public void addPersistentPreferredActivity(IntentFilter filter, ComponentName activity,
17042            int userId) {
17043        int callingUid = Binder.getCallingUid();
17044        if (callingUid != Process.SYSTEM_UID) {
17045            throw new SecurityException(
17046                    "addPersistentPreferredActivity can only be run by the system");
17047        }
17048        if (filter.countActions() == 0) {
17049            Slog.w(TAG, "Cannot set a preferred activity with no filter actions");
17050            return;
17051        }
17052        synchronized (mPackages) {
17053            Slog.i(TAG, "Adding persistent preferred activity " + activity + " for user " + userId +
17054                    ":");
17055            filter.dump(new LogPrinter(Log.INFO, TAG), "  ");
17056            mSettings.editPersistentPreferredActivitiesLPw(userId).addFilter(
17057                    new PersistentPreferredActivity(filter, activity));
17058            scheduleWritePackageRestrictionsLocked(userId);
17059        }
17060    }
17061
17062    @Override
17063    public void clearPackagePersistentPreferredActivities(String packageName, int userId) {
17064        int callingUid = Binder.getCallingUid();
17065        if (callingUid != Process.SYSTEM_UID) {
17066            throw new SecurityException(
17067                    "clearPackagePersistentPreferredActivities can only be run by the system");
17068        }
17069        ArrayList<PersistentPreferredActivity> removed = null;
17070        boolean changed = false;
17071        synchronized (mPackages) {
17072            for (int i=0; i<mSettings.mPersistentPreferredActivities.size(); i++) {
17073                final int thisUserId = mSettings.mPersistentPreferredActivities.keyAt(i);
17074                PersistentPreferredIntentResolver ppir = mSettings.mPersistentPreferredActivities
17075                        .valueAt(i);
17076                if (userId != thisUserId) {
17077                    continue;
17078                }
17079                Iterator<PersistentPreferredActivity> it = ppir.filterIterator();
17080                while (it.hasNext()) {
17081                    PersistentPreferredActivity ppa = it.next();
17082                    // Mark entry for removal only if it matches the package name.
17083                    if (ppa.mComponent.getPackageName().equals(packageName)) {
17084                        if (removed == null) {
17085                            removed = new ArrayList<PersistentPreferredActivity>();
17086                        }
17087                        removed.add(ppa);
17088                    }
17089                }
17090                if (removed != null) {
17091                    for (int j=0; j<removed.size(); j++) {
17092                        PersistentPreferredActivity ppa = removed.get(j);
17093                        ppir.removeFilter(ppa);
17094                    }
17095                    changed = true;
17096                }
17097            }
17098
17099            if (changed) {
17100                scheduleWritePackageRestrictionsLocked(userId);
17101            }
17102        }
17103    }
17104
17105    /**
17106     * Common machinery for picking apart a restored XML blob and passing
17107     * it to a caller-supplied functor to be applied to the running system.
17108     */
17109    private void restoreFromXml(XmlPullParser parser, int userId,
17110            String expectedStartTag, BlobXmlRestorer functor)
17111            throws IOException, XmlPullParserException {
17112        int type;
17113        while ((type = parser.next()) != XmlPullParser.START_TAG
17114                && type != XmlPullParser.END_DOCUMENT) {
17115        }
17116        if (type != XmlPullParser.START_TAG) {
17117            // oops didn't find a start tag?!
17118            if (DEBUG_BACKUP) {
17119                Slog.e(TAG, "Didn't find start tag during restore");
17120            }
17121            return;
17122        }
17123Slog.v(TAG, ":: restoreFromXml() : got to tag " + parser.getName());
17124        // this is supposed to be TAG_PREFERRED_BACKUP
17125        if (!expectedStartTag.equals(parser.getName())) {
17126            if (DEBUG_BACKUP) {
17127                Slog.e(TAG, "Found unexpected tag " + parser.getName());
17128            }
17129            return;
17130        }
17131
17132        // skip interfering stuff, then we're aligned with the backing implementation
17133        while ((type = parser.next()) == XmlPullParser.TEXT) { }
17134Slog.v(TAG, ":: stepped forward, applying functor at tag " + parser.getName());
17135        functor.apply(parser, userId);
17136    }
17137
17138    private interface BlobXmlRestorer {
17139        public void apply(XmlPullParser parser, int userId) throws IOException, XmlPullParserException;
17140    }
17141
17142    /**
17143     * Non-Binder method, support for the backup/restore mechanism: write the
17144     * full set of preferred activities in its canonical XML format.  Returns the
17145     * XML output as a byte array, or null if there is none.
17146     */
17147    @Override
17148    public byte[] getPreferredActivityBackup(int userId) {
17149        if (Binder.getCallingUid() != Process.SYSTEM_UID) {
17150            throw new SecurityException("Only the system may call getPreferredActivityBackup()");
17151        }
17152
17153        ByteArrayOutputStream dataStream = new ByteArrayOutputStream();
17154        try {
17155            final XmlSerializer serializer = new FastXmlSerializer();
17156            serializer.setOutput(dataStream, StandardCharsets.UTF_8.name());
17157            serializer.startDocument(null, true);
17158            serializer.startTag(null, TAG_PREFERRED_BACKUP);
17159
17160            synchronized (mPackages) {
17161                mSettings.writePreferredActivitiesLPr(serializer, userId, true);
17162            }
17163
17164            serializer.endTag(null, TAG_PREFERRED_BACKUP);
17165            serializer.endDocument();
17166            serializer.flush();
17167        } catch (Exception e) {
17168            if (DEBUG_BACKUP) {
17169                Slog.e(TAG, "Unable to write preferred activities for backup", e);
17170            }
17171            return null;
17172        }
17173
17174        return dataStream.toByteArray();
17175    }
17176
17177    @Override
17178    public void restorePreferredActivities(byte[] backup, int userId) {
17179        if (Binder.getCallingUid() != Process.SYSTEM_UID) {
17180            throw new SecurityException("Only the system may call restorePreferredActivities()");
17181        }
17182
17183        try {
17184            final XmlPullParser parser = Xml.newPullParser();
17185            parser.setInput(new ByteArrayInputStream(backup), StandardCharsets.UTF_8.name());
17186            restoreFromXml(parser, userId, TAG_PREFERRED_BACKUP,
17187                    new BlobXmlRestorer() {
17188                        @Override
17189                        public void apply(XmlPullParser parser, int userId)
17190                                throws XmlPullParserException, IOException {
17191                            synchronized (mPackages) {
17192                                mSettings.readPreferredActivitiesLPw(parser, userId);
17193                            }
17194                        }
17195                    } );
17196        } catch (Exception e) {
17197            if (DEBUG_BACKUP) {
17198                Slog.e(TAG, "Exception restoring preferred activities: " + e.getMessage());
17199            }
17200        }
17201    }
17202
17203    /**
17204     * Non-Binder method, support for the backup/restore mechanism: write the
17205     * default browser (etc) settings in its canonical XML format.  Returns the default
17206     * browser XML representation as a byte array, or null if there is none.
17207     */
17208    @Override
17209    public byte[] getDefaultAppsBackup(int userId) {
17210        if (Binder.getCallingUid() != Process.SYSTEM_UID) {
17211            throw new SecurityException("Only the system may call getDefaultAppsBackup()");
17212        }
17213
17214        ByteArrayOutputStream dataStream = new ByteArrayOutputStream();
17215        try {
17216            final XmlSerializer serializer = new FastXmlSerializer();
17217            serializer.setOutput(dataStream, StandardCharsets.UTF_8.name());
17218            serializer.startDocument(null, true);
17219            serializer.startTag(null, TAG_DEFAULT_APPS);
17220
17221            synchronized (mPackages) {
17222                mSettings.writeDefaultAppsLPr(serializer, userId);
17223            }
17224
17225            serializer.endTag(null, TAG_DEFAULT_APPS);
17226            serializer.endDocument();
17227            serializer.flush();
17228        } catch (Exception e) {
17229            if (DEBUG_BACKUP) {
17230                Slog.e(TAG, "Unable to write default apps for backup", e);
17231            }
17232            return null;
17233        }
17234
17235        return dataStream.toByteArray();
17236    }
17237
17238    @Override
17239    public void restoreDefaultApps(byte[] backup, int userId) {
17240        if (Binder.getCallingUid() != Process.SYSTEM_UID) {
17241            throw new SecurityException("Only the system may call restoreDefaultApps()");
17242        }
17243
17244        try {
17245            final XmlPullParser parser = Xml.newPullParser();
17246            parser.setInput(new ByteArrayInputStream(backup), StandardCharsets.UTF_8.name());
17247            restoreFromXml(parser, userId, TAG_DEFAULT_APPS,
17248                    new BlobXmlRestorer() {
17249                        @Override
17250                        public void apply(XmlPullParser parser, int userId)
17251                                throws XmlPullParserException, IOException {
17252                            synchronized (mPackages) {
17253                                mSettings.readDefaultAppsLPw(parser, userId);
17254                            }
17255                        }
17256                    } );
17257        } catch (Exception e) {
17258            if (DEBUG_BACKUP) {
17259                Slog.e(TAG, "Exception restoring default apps: " + e.getMessage());
17260            }
17261        }
17262    }
17263
17264    @Override
17265    public byte[] getIntentFilterVerificationBackup(int userId) {
17266        if (Binder.getCallingUid() != Process.SYSTEM_UID) {
17267            throw new SecurityException("Only the system may call getIntentFilterVerificationBackup()");
17268        }
17269
17270        ByteArrayOutputStream dataStream = new ByteArrayOutputStream();
17271        try {
17272            final XmlSerializer serializer = new FastXmlSerializer();
17273            serializer.setOutput(dataStream, StandardCharsets.UTF_8.name());
17274            serializer.startDocument(null, true);
17275            serializer.startTag(null, TAG_INTENT_FILTER_VERIFICATION);
17276
17277            synchronized (mPackages) {
17278                mSettings.writeAllDomainVerificationsLPr(serializer, userId);
17279            }
17280
17281            serializer.endTag(null, TAG_INTENT_FILTER_VERIFICATION);
17282            serializer.endDocument();
17283            serializer.flush();
17284        } catch (Exception e) {
17285            if (DEBUG_BACKUP) {
17286                Slog.e(TAG, "Unable to write default apps for backup", e);
17287            }
17288            return null;
17289        }
17290
17291        return dataStream.toByteArray();
17292    }
17293
17294    @Override
17295    public void restoreIntentFilterVerification(byte[] backup, int userId) {
17296        if (Binder.getCallingUid() != Process.SYSTEM_UID) {
17297            throw new SecurityException("Only the system may call restorePreferredActivities()");
17298        }
17299
17300        try {
17301            final XmlPullParser parser = Xml.newPullParser();
17302            parser.setInput(new ByteArrayInputStream(backup), StandardCharsets.UTF_8.name());
17303            restoreFromXml(parser, userId, TAG_INTENT_FILTER_VERIFICATION,
17304                    new BlobXmlRestorer() {
17305                        @Override
17306                        public void apply(XmlPullParser parser, int userId)
17307                                throws XmlPullParserException, IOException {
17308                            synchronized (mPackages) {
17309                                mSettings.readAllDomainVerificationsLPr(parser, userId);
17310                                mSettings.writeLPr();
17311                            }
17312                        }
17313                    } );
17314        } catch (Exception e) {
17315            if (DEBUG_BACKUP) {
17316                Slog.e(TAG, "Exception restoring preferred activities: " + e.getMessage());
17317            }
17318        }
17319    }
17320
17321    @Override
17322    public byte[] getPermissionGrantBackup(int userId) {
17323        if (Binder.getCallingUid() != Process.SYSTEM_UID) {
17324            throw new SecurityException("Only the system may call getPermissionGrantBackup()");
17325        }
17326
17327        ByteArrayOutputStream dataStream = new ByteArrayOutputStream();
17328        try {
17329            final XmlSerializer serializer = new FastXmlSerializer();
17330            serializer.setOutput(dataStream, StandardCharsets.UTF_8.name());
17331            serializer.startDocument(null, true);
17332            serializer.startTag(null, TAG_PERMISSION_BACKUP);
17333
17334            synchronized (mPackages) {
17335                serializeRuntimePermissionGrantsLPr(serializer, userId);
17336            }
17337
17338            serializer.endTag(null, TAG_PERMISSION_BACKUP);
17339            serializer.endDocument();
17340            serializer.flush();
17341        } catch (Exception e) {
17342            if (DEBUG_BACKUP) {
17343                Slog.e(TAG, "Unable to write default apps for backup", e);
17344            }
17345            return null;
17346        }
17347
17348        return dataStream.toByteArray();
17349    }
17350
17351    @Override
17352    public void restorePermissionGrants(byte[] backup, int userId) {
17353        if (Binder.getCallingUid() != Process.SYSTEM_UID) {
17354            throw new SecurityException("Only the system may call restorePermissionGrants()");
17355        }
17356
17357        try {
17358            final XmlPullParser parser = Xml.newPullParser();
17359            parser.setInput(new ByteArrayInputStream(backup), StandardCharsets.UTF_8.name());
17360            restoreFromXml(parser, userId, TAG_PERMISSION_BACKUP,
17361                    new BlobXmlRestorer() {
17362                        @Override
17363                        public void apply(XmlPullParser parser, int userId)
17364                                throws XmlPullParserException, IOException {
17365                            synchronized (mPackages) {
17366                                processRestoredPermissionGrantsLPr(parser, userId);
17367                            }
17368                        }
17369                    } );
17370        } catch (Exception e) {
17371            if (DEBUG_BACKUP) {
17372                Slog.e(TAG, "Exception restoring preferred activities: " + e.getMessage());
17373            }
17374        }
17375    }
17376
17377    private void serializeRuntimePermissionGrantsLPr(XmlSerializer serializer, final int userId)
17378            throws IOException {
17379        serializer.startTag(null, TAG_ALL_GRANTS);
17380
17381        final int N = mSettings.mPackages.size();
17382        for (int i = 0; i < N; i++) {
17383            final PackageSetting ps = mSettings.mPackages.valueAt(i);
17384            boolean pkgGrantsKnown = false;
17385
17386            PermissionsState packagePerms = ps.getPermissionsState();
17387
17388            for (PermissionState state : packagePerms.getRuntimePermissionStates(userId)) {
17389                final int grantFlags = state.getFlags();
17390                // only look at grants that are not system/policy fixed
17391                if ((grantFlags & SYSTEM_RUNTIME_GRANT_MASK) == 0) {
17392                    final boolean isGranted = state.isGranted();
17393                    // And only back up the user-twiddled state bits
17394                    if (isGranted || (grantFlags & USER_RUNTIME_GRANT_MASK) != 0) {
17395                        final String packageName = mSettings.mPackages.keyAt(i);
17396                        if (!pkgGrantsKnown) {
17397                            serializer.startTag(null, TAG_GRANT);
17398                            serializer.attribute(null, ATTR_PACKAGE_NAME, packageName);
17399                            pkgGrantsKnown = true;
17400                        }
17401
17402                        final boolean userSet =
17403                                (grantFlags & FLAG_PERMISSION_USER_SET) != 0;
17404                        final boolean userFixed =
17405                                (grantFlags & FLAG_PERMISSION_USER_FIXED) != 0;
17406                        final boolean revoke =
17407                                (grantFlags & FLAG_PERMISSION_REVOKE_ON_UPGRADE) != 0;
17408
17409                        serializer.startTag(null, TAG_PERMISSION);
17410                        serializer.attribute(null, ATTR_PERMISSION_NAME, state.getName());
17411                        if (isGranted) {
17412                            serializer.attribute(null, ATTR_IS_GRANTED, "true");
17413                        }
17414                        if (userSet) {
17415                            serializer.attribute(null, ATTR_USER_SET, "true");
17416                        }
17417                        if (userFixed) {
17418                            serializer.attribute(null, ATTR_USER_FIXED, "true");
17419                        }
17420                        if (revoke) {
17421                            serializer.attribute(null, ATTR_REVOKE_ON_UPGRADE, "true");
17422                        }
17423                        serializer.endTag(null, TAG_PERMISSION);
17424                    }
17425                }
17426            }
17427
17428            if (pkgGrantsKnown) {
17429                serializer.endTag(null, TAG_GRANT);
17430            }
17431        }
17432
17433        serializer.endTag(null, TAG_ALL_GRANTS);
17434    }
17435
17436    private void processRestoredPermissionGrantsLPr(XmlPullParser parser, int userId)
17437            throws XmlPullParserException, IOException {
17438        String pkgName = null;
17439        int outerDepth = parser.getDepth();
17440        int type;
17441        while ((type = parser.next()) != XmlPullParser.END_DOCUMENT
17442                && (type != XmlPullParser.END_TAG || parser.getDepth() > outerDepth)) {
17443            if (type == XmlPullParser.END_TAG || type == XmlPullParser.TEXT) {
17444                continue;
17445            }
17446
17447            final String tagName = parser.getName();
17448            if (tagName.equals(TAG_GRANT)) {
17449                pkgName = parser.getAttributeValue(null, ATTR_PACKAGE_NAME);
17450                if (DEBUG_BACKUP) {
17451                    Slog.v(TAG, "+++ Restoring grants for package " + pkgName);
17452                }
17453            } else if (tagName.equals(TAG_PERMISSION)) {
17454
17455                final boolean isGranted = "true".equals(parser.getAttributeValue(null, ATTR_IS_GRANTED));
17456                final String permName = parser.getAttributeValue(null, ATTR_PERMISSION_NAME);
17457
17458                int newFlagSet = 0;
17459                if ("true".equals(parser.getAttributeValue(null, ATTR_USER_SET))) {
17460                    newFlagSet |= FLAG_PERMISSION_USER_SET;
17461                }
17462                if ("true".equals(parser.getAttributeValue(null, ATTR_USER_FIXED))) {
17463                    newFlagSet |= FLAG_PERMISSION_USER_FIXED;
17464                }
17465                if ("true".equals(parser.getAttributeValue(null, ATTR_REVOKE_ON_UPGRADE))) {
17466                    newFlagSet |= FLAG_PERMISSION_REVOKE_ON_UPGRADE;
17467                }
17468                if (DEBUG_BACKUP) {
17469                    Slog.v(TAG, "  + Restoring grant: pkg=" + pkgName + " perm=" + permName
17470                            + " granted=" + isGranted + " bits=0x" + Integer.toHexString(newFlagSet));
17471                }
17472                final PackageSetting ps = mSettings.mPackages.get(pkgName);
17473                if (ps != null) {
17474                    // Already installed so we apply the grant immediately
17475                    if (DEBUG_BACKUP) {
17476                        Slog.v(TAG, "        + already installed; applying");
17477                    }
17478                    PermissionsState perms = ps.getPermissionsState();
17479                    BasePermission bp = mSettings.mPermissions.get(permName);
17480                    if (bp != null) {
17481                        if (isGranted) {
17482                            perms.grantRuntimePermission(bp, userId);
17483                        }
17484                        if (newFlagSet != 0) {
17485                            perms.updatePermissionFlags(bp, userId, USER_RUNTIME_GRANT_MASK, newFlagSet);
17486                        }
17487                    }
17488                } else {
17489                    // Need to wait for post-restore install to apply the grant
17490                    if (DEBUG_BACKUP) {
17491                        Slog.v(TAG, "        - not yet installed; saving for later");
17492                    }
17493                    mSettings.processRestoredPermissionGrantLPr(pkgName, permName,
17494                            isGranted, newFlagSet, userId);
17495                }
17496            } else {
17497                PackageManagerService.reportSettingsProblem(Log.WARN,
17498                        "Unknown element under <" + TAG_PERMISSION_BACKUP + ">: " + tagName);
17499                XmlUtils.skipCurrentTag(parser);
17500            }
17501        }
17502
17503        scheduleWriteSettingsLocked();
17504        mSettings.writeRuntimePermissionsForUserLPr(userId, false);
17505    }
17506
17507    @Override
17508    public void addCrossProfileIntentFilter(IntentFilter intentFilter, String ownerPackage,
17509            int sourceUserId, int targetUserId, int flags) {
17510        mContext.enforceCallingOrSelfPermission(
17511                        android.Manifest.permission.INTERACT_ACROSS_USERS_FULL, null);
17512        int callingUid = Binder.getCallingUid();
17513        enforceOwnerRights(ownerPackage, callingUid);
17514        enforceShellRestriction(UserManager.DISALLOW_DEBUGGING_FEATURES, callingUid, sourceUserId);
17515        if (intentFilter.countActions() == 0) {
17516            Slog.w(TAG, "Cannot set a crossProfile intent filter with no filter actions");
17517            return;
17518        }
17519        synchronized (mPackages) {
17520            CrossProfileIntentFilter newFilter = new CrossProfileIntentFilter(intentFilter,
17521                    ownerPackage, targetUserId, flags);
17522            CrossProfileIntentResolver resolver =
17523                    mSettings.editCrossProfileIntentResolverLPw(sourceUserId);
17524            ArrayList<CrossProfileIntentFilter> existing = resolver.findFilters(intentFilter);
17525            // We have all those whose filter is equal. Now checking if the rest is equal as well.
17526            if (existing != null) {
17527                int size = existing.size();
17528                for (int i = 0; i < size; i++) {
17529                    if (newFilter.equalsIgnoreFilter(existing.get(i))) {
17530                        return;
17531                    }
17532                }
17533            }
17534            resolver.addFilter(newFilter);
17535            scheduleWritePackageRestrictionsLocked(sourceUserId);
17536        }
17537    }
17538
17539    @Override
17540    public void clearCrossProfileIntentFilters(int sourceUserId, String ownerPackage) {
17541        mContext.enforceCallingOrSelfPermission(
17542                        android.Manifest.permission.INTERACT_ACROSS_USERS_FULL, null);
17543        int callingUid = Binder.getCallingUid();
17544        enforceOwnerRights(ownerPackage, callingUid);
17545        enforceShellRestriction(UserManager.DISALLOW_DEBUGGING_FEATURES, callingUid, sourceUserId);
17546        synchronized (mPackages) {
17547            CrossProfileIntentResolver resolver =
17548                    mSettings.editCrossProfileIntentResolverLPw(sourceUserId);
17549            ArraySet<CrossProfileIntentFilter> set =
17550                    new ArraySet<CrossProfileIntentFilter>(resolver.filterSet());
17551            for (CrossProfileIntentFilter filter : set) {
17552                if (filter.getOwnerPackage().equals(ownerPackage)) {
17553                    resolver.removeFilter(filter);
17554                }
17555            }
17556            scheduleWritePackageRestrictionsLocked(sourceUserId);
17557        }
17558    }
17559
17560    // Enforcing that callingUid is owning pkg on userId
17561    private void enforceOwnerRights(String pkg, int callingUid) {
17562        // The system owns everything.
17563        if (UserHandle.getAppId(callingUid) == Process.SYSTEM_UID) {
17564            return;
17565        }
17566        int callingUserId = UserHandle.getUserId(callingUid);
17567        PackageInfo pi = getPackageInfo(pkg, 0, callingUserId);
17568        if (pi == null) {
17569            throw new IllegalArgumentException("Unknown package " + pkg + " on user "
17570                    + callingUserId);
17571        }
17572        if (!UserHandle.isSameApp(pi.applicationInfo.uid, callingUid)) {
17573            throw new SecurityException("Calling uid " + callingUid
17574                    + " does not own package " + pkg);
17575        }
17576    }
17577
17578    @Override
17579    public ComponentName getHomeActivities(List<ResolveInfo> allHomeCandidates) {
17580        return getHomeActivitiesAsUser(allHomeCandidates, UserHandle.getCallingUserId());
17581    }
17582
17583    private Intent getHomeIntent() {
17584        Intent intent = new Intent(Intent.ACTION_MAIN);
17585        intent.addCategory(Intent.CATEGORY_HOME);
17586        return intent;
17587    }
17588
17589    private IntentFilter getHomeFilter() {
17590        IntentFilter filter = new IntentFilter(Intent.ACTION_MAIN);
17591        filter.addCategory(Intent.CATEGORY_HOME);
17592        filter.addCategory(Intent.CATEGORY_DEFAULT);
17593        return filter;
17594    }
17595
17596    ComponentName getHomeActivitiesAsUser(List<ResolveInfo> allHomeCandidates,
17597            int userId) {
17598        Intent intent  = getHomeIntent();
17599        List<ResolveInfo> list = queryIntentActivitiesInternal(intent, null,
17600                PackageManager.GET_META_DATA, userId);
17601        ResolveInfo preferred = findPreferredActivity(intent, null, 0, list, 0,
17602                true, false, false, userId);
17603
17604        allHomeCandidates.clear();
17605        if (list != null) {
17606            for (ResolveInfo ri : list) {
17607                allHomeCandidates.add(ri);
17608            }
17609        }
17610        return (preferred == null || preferred.activityInfo == null)
17611                ? null
17612                : new ComponentName(preferred.activityInfo.packageName,
17613                        preferred.activityInfo.name);
17614    }
17615
17616    @Override
17617    public void setHomeActivity(ComponentName comp, int userId) {
17618        ArrayList<ResolveInfo> homeActivities = new ArrayList<>();
17619        getHomeActivitiesAsUser(homeActivities, userId);
17620
17621        boolean found = false;
17622
17623        final int size = homeActivities.size();
17624        final ComponentName[] set = new ComponentName[size];
17625        for (int i = 0; i < size; i++) {
17626            final ResolveInfo candidate = homeActivities.get(i);
17627            final ActivityInfo info = candidate.activityInfo;
17628            final ComponentName activityName = new ComponentName(info.packageName, info.name);
17629            set[i] = activityName;
17630            if (!found && activityName.equals(comp)) {
17631                found = true;
17632            }
17633        }
17634        if (!found) {
17635            throw new IllegalArgumentException("Component " + comp + " cannot be home on user "
17636                    + userId);
17637        }
17638        replacePreferredActivity(getHomeFilter(), IntentFilter.MATCH_CATEGORY_EMPTY,
17639                set, comp, userId);
17640    }
17641
17642    private @Nullable String getSetupWizardPackageName() {
17643        final Intent intent = new Intent(Intent.ACTION_MAIN);
17644        intent.addCategory(Intent.CATEGORY_SETUP_WIZARD);
17645
17646        final List<ResolveInfo> matches = queryIntentActivitiesInternal(intent, null,
17647                MATCH_SYSTEM_ONLY | MATCH_DIRECT_BOOT_AWARE | MATCH_DIRECT_BOOT_UNAWARE
17648                        | MATCH_DISABLED_COMPONENTS,
17649                UserHandle.myUserId());
17650        if (matches.size() == 1) {
17651            return matches.get(0).getComponentInfo().packageName;
17652        } else {
17653            Slog.e(TAG, "There should probably be exactly one setup wizard; found " + matches.size()
17654                    + ": matches=" + matches);
17655            return null;
17656        }
17657    }
17658
17659    @Override
17660    public void setApplicationEnabledSetting(String appPackageName,
17661            int newState, int flags, int userId, String callingPackage) {
17662        if (!sUserManager.exists(userId)) return;
17663        if (callingPackage == null) {
17664            callingPackage = Integer.toString(Binder.getCallingUid());
17665        }
17666        setEnabledSetting(appPackageName, null, newState, flags, userId, callingPackage);
17667    }
17668
17669    @Override
17670    public void setComponentEnabledSetting(ComponentName componentName,
17671            int newState, int flags, int userId) {
17672        if (!sUserManager.exists(userId)) return;
17673        setEnabledSetting(componentName.getPackageName(),
17674                componentName.getClassName(), newState, flags, userId, null);
17675    }
17676
17677    private void setEnabledSetting(final String packageName, String className, int newState,
17678            final int flags, int userId, String callingPackage) {
17679        if (!(newState == COMPONENT_ENABLED_STATE_DEFAULT
17680              || newState == COMPONENT_ENABLED_STATE_ENABLED
17681              || newState == COMPONENT_ENABLED_STATE_DISABLED
17682              || newState == COMPONENT_ENABLED_STATE_DISABLED_USER
17683              || newState == COMPONENT_ENABLED_STATE_DISABLED_UNTIL_USED)) {
17684            throw new IllegalArgumentException("Invalid new component state: "
17685                    + newState);
17686        }
17687        PackageSetting pkgSetting;
17688        final int uid = Binder.getCallingUid();
17689        final int permission;
17690        if (uid == Process.SYSTEM_UID) {
17691            permission = PackageManager.PERMISSION_GRANTED;
17692        } else {
17693            permission = mContext.checkCallingOrSelfPermission(
17694                    android.Manifest.permission.CHANGE_COMPONENT_ENABLED_STATE);
17695        }
17696        enforceCrossUserPermission(uid, userId,
17697                false /* requireFullPermission */, true /* checkShell */, "set enabled");
17698        final boolean allowedByPermission = (permission == PackageManager.PERMISSION_GRANTED);
17699        boolean sendNow = false;
17700        boolean isApp = (className == null);
17701        String componentName = isApp ? packageName : className;
17702        int packageUid = -1;
17703        ArrayList<String> components;
17704
17705        // writer
17706        synchronized (mPackages) {
17707            pkgSetting = mSettings.mPackages.get(packageName);
17708            if (pkgSetting == null) {
17709                if (className == null) {
17710                    throw new IllegalArgumentException("Unknown package: " + packageName);
17711                }
17712                throw new IllegalArgumentException(
17713                        "Unknown component: " + packageName + "/" + className);
17714            }
17715        }
17716
17717        // Limit who can change which apps
17718        if (!UserHandle.isSameApp(uid, pkgSetting.appId)) {
17719            // Don't allow apps that don't have permission to modify other apps
17720            if (!allowedByPermission) {
17721                throw new SecurityException(
17722                        "Permission Denial: attempt to change component state from pid="
17723                        + Binder.getCallingPid()
17724                        + ", uid=" + uid + ", package uid=" + pkgSetting.appId);
17725            }
17726            // Don't allow changing profile and device owners.
17727            if (mProtectedPackages.canPackageStateBeChanged(userId, packageName)) {
17728                throw new SecurityException("Cannot disable a device owner or a profile owner");
17729            }
17730        }
17731
17732        synchronized (mPackages) {
17733            if (uid == Process.SHELL_UID) {
17734                // Shell can only change whole packages between ENABLED and DISABLED_USER states
17735                int oldState = pkgSetting.getEnabled(userId);
17736                if (className == null
17737                    &&
17738                    (oldState == COMPONENT_ENABLED_STATE_DISABLED_USER
17739                     || oldState == COMPONENT_ENABLED_STATE_DEFAULT
17740                     || oldState == COMPONENT_ENABLED_STATE_ENABLED)
17741                    &&
17742                    (newState == COMPONENT_ENABLED_STATE_DISABLED_USER
17743                     || newState == COMPONENT_ENABLED_STATE_DEFAULT
17744                     || newState == COMPONENT_ENABLED_STATE_ENABLED)) {
17745                    // ok
17746                } else {
17747                    throw new SecurityException(
17748                            "Shell cannot change component state for " + packageName + "/"
17749                            + className + " to " + newState);
17750                }
17751            }
17752            if (className == null) {
17753                // We're dealing with an application/package level state change
17754                if (pkgSetting.getEnabled(userId) == newState) {
17755                    // Nothing to do
17756                    return;
17757                }
17758                if (newState == PackageManager.COMPONENT_ENABLED_STATE_DEFAULT
17759                    || newState == PackageManager.COMPONENT_ENABLED_STATE_ENABLED) {
17760                    // Don't care about who enables an app.
17761                    callingPackage = null;
17762                }
17763                pkgSetting.setEnabled(newState, userId, callingPackage);
17764                // pkgSetting.pkg.mSetEnabled = newState;
17765            } else {
17766                // We're dealing with a component level state change
17767                // First, verify that this is a valid class name.
17768                PackageParser.Package pkg = pkgSetting.pkg;
17769                if (pkg == null || !pkg.hasComponentClassName(className)) {
17770                    if (pkg != null &&
17771                            pkg.applicationInfo.targetSdkVersion >=
17772                                    Build.VERSION_CODES.JELLY_BEAN) {
17773                        throw new IllegalArgumentException("Component class " + className
17774                                + " does not exist in " + packageName);
17775                    } else {
17776                        Slog.w(TAG, "Failed setComponentEnabledSetting: component class "
17777                                + className + " does not exist in " + packageName);
17778                    }
17779                }
17780                switch (newState) {
17781                case COMPONENT_ENABLED_STATE_ENABLED:
17782                    if (!pkgSetting.enableComponentLPw(className, userId)) {
17783                        return;
17784                    }
17785                    break;
17786                case COMPONENT_ENABLED_STATE_DISABLED:
17787                    if (!pkgSetting.disableComponentLPw(className, userId)) {
17788                        return;
17789                    }
17790                    break;
17791                case COMPONENT_ENABLED_STATE_DEFAULT:
17792                    if (!pkgSetting.restoreComponentLPw(className, userId)) {
17793                        return;
17794                    }
17795                    break;
17796                default:
17797                    Slog.e(TAG, "Invalid new component state: " + newState);
17798                    return;
17799                }
17800            }
17801            scheduleWritePackageRestrictionsLocked(userId);
17802            components = mPendingBroadcasts.get(userId, packageName);
17803            final boolean newPackage = components == null;
17804            if (newPackage) {
17805                components = new ArrayList<String>();
17806            }
17807            if (!components.contains(componentName)) {
17808                components.add(componentName);
17809            }
17810            if ((flags&PackageManager.DONT_KILL_APP) == 0) {
17811                sendNow = true;
17812                // Purge entry from pending broadcast list if another one exists already
17813                // since we are sending one right away.
17814                mPendingBroadcasts.remove(userId, packageName);
17815            } else {
17816                if (newPackage) {
17817                    mPendingBroadcasts.put(userId, packageName, components);
17818                }
17819                if (!mHandler.hasMessages(SEND_PENDING_BROADCAST)) {
17820                    // Schedule a message
17821                    mHandler.sendEmptyMessageDelayed(SEND_PENDING_BROADCAST, BROADCAST_DELAY);
17822                }
17823            }
17824        }
17825
17826        long callingId = Binder.clearCallingIdentity();
17827        try {
17828            if (sendNow) {
17829                packageUid = UserHandle.getUid(userId, pkgSetting.appId);
17830                sendPackageChangedBroadcast(packageName,
17831                        (flags&PackageManager.DONT_KILL_APP) != 0, components, packageUid);
17832            }
17833        } finally {
17834            Binder.restoreCallingIdentity(callingId);
17835        }
17836    }
17837
17838    @Override
17839    public void flushPackageRestrictionsAsUser(int userId) {
17840        if (!sUserManager.exists(userId)) {
17841            return;
17842        }
17843        enforceCrossUserPermission(Binder.getCallingUid(), userId, false /* requireFullPermission*/,
17844                false /* checkShell */, "flushPackageRestrictions");
17845        synchronized (mPackages) {
17846            mSettings.writePackageRestrictionsLPr(userId);
17847            mDirtyUsers.remove(userId);
17848            if (mDirtyUsers.isEmpty()) {
17849                mHandler.removeMessages(WRITE_PACKAGE_RESTRICTIONS);
17850            }
17851        }
17852    }
17853
17854    private void sendPackageChangedBroadcast(String packageName,
17855            boolean killFlag, ArrayList<String> componentNames, int packageUid) {
17856        if (DEBUG_INSTALL)
17857            Log.v(TAG, "Sending package changed: package=" + packageName + " components="
17858                    + componentNames);
17859        Bundle extras = new Bundle(4);
17860        extras.putString(Intent.EXTRA_CHANGED_COMPONENT_NAME, componentNames.get(0));
17861        String nameList[] = new String[componentNames.size()];
17862        componentNames.toArray(nameList);
17863        extras.putStringArray(Intent.EXTRA_CHANGED_COMPONENT_NAME_LIST, nameList);
17864        extras.putBoolean(Intent.EXTRA_DONT_KILL_APP, killFlag);
17865        extras.putInt(Intent.EXTRA_UID, packageUid);
17866        // If this is not reporting a change of the overall package, then only send it
17867        // to registered receivers.  We don't want to launch a swath of apps for every
17868        // little component state change.
17869        final int flags = !componentNames.contains(packageName)
17870                ? Intent.FLAG_RECEIVER_REGISTERED_ONLY : 0;
17871        sendPackageBroadcast(Intent.ACTION_PACKAGE_CHANGED,  packageName, extras, flags, null, null,
17872                new int[] {UserHandle.getUserId(packageUid)});
17873    }
17874
17875    @Override
17876    public void setPackageStoppedState(String packageName, boolean stopped, int userId) {
17877        if (!sUserManager.exists(userId)) return;
17878        final int uid = Binder.getCallingUid();
17879        final int permission = mContext.checkCallingOrSelfPermission(
17880                android.Manifest.permission.CHANGE_COMPONENT_ENABLED_STATE);
17881        final boolean allowedByPermission = (permission == PackageManager.PERMISSION_GRANTED);
17882        enforceCrossUserPermission(uid, userId,
17883                true /* requireFullPermission */, true /* checkShell */, "stop package");
17884        // writer
17885        synchronized (mPackages) {
17886            if (mSettings.setPackageStoppedStateLPw(this, packageName, stopped,
17887                    allowedByPermission, uid, userId)) {
17888                scheduleWritePackageRestrictionsLocked(userId);
17889            }
17890        }
17891    }
17892
17893    @Override
17894    public String getInstallerPackageName(String packageName) {
17895        // reader
17896        synchronized (mPackages) {
17897            return mSettings.getInstallerPackageNameLPr(packageName);
17898        }
17899    }
17900
17901    public boolean isOrphaned(String packageName) {
17902        // reader
17903        synchronized (mPackages) {
17904            return mSettings.isOrphaned(packageName);
17905        }
17906    }
17907
17908    @Override
17909    public int getApplicationEnabledSetting(String packageName, int userId) {
17910        if (!sUserManager.exists(userId)) return COMPONENT_ENABLED_STATE_DISABLED;
17911        int uid = Binder.getCallingUid();
17912        enforceCrossUserPermission(uid, userId,
17913                false /* requireFullPermission */, false /* checkShell */, "get enabled");
17914        // reader
17915        synchronized (mPackages) {
17916            return mSettings.getApplicationEnabledSettingLPr(packageName, userId);
17917        }
17918    }
17919
17920    @Override
17921    public int getComponentEnabledSetting(ComponentName componentName, int userId) {
17922        if (!sUserManager.exists(userId)) return COMPONENT_ENABLED_STATE_DISABLED;
17923        int uid = Binder.getCallingUid();
17924        enforceCrossUserPermission(uid, userId,
17925                false /* requireFullPermission */, false /* checkShell */, "get component enabled");
17926        // reader
17927        synchronized (mPackages) {
17928            return mSettings.getComponentEnabledSettingLPr(componentName, userId);
17929        }
17930    }
17931
17932    @Override
17933    public void enterSafeMode() {
17934        enforceSystemOrRoot("Only the system can request entering safe mode");
17935
17936        if (!mSystemReady) {
17937            mSafeMode = true;
17938        }
17939    }
17940
17941    @Override
17942    public void systemReady() {
17943        mSystemReady = true;
17944
17945        // Read the compatibilty setting when the system is ready.
17946        boolean compatibilityModeEnabled = android.provider.Settings.Global.getInt(
17947                mContext.getContentResolver(),
17948                android.provider.Settings.Global.COMPATIBILITY_MODE, 1) == 1;
17949        PackageParser.setCompatibilityModeEnabled(compatibilityModeEnabled);
17950        if (DEBUG_SETTINGS) {
17951            Log.d(TAG, "compatibility mode:" + compatibilityModeEnabled);
17952        }
17953
17954        int[] grantPermissionsUserIds = EMPTY_INT_ARRAY;
17955
17956        synchronized (mPackages) {
17957            // Verify that all of the preferred activity components actually
17958            // exist.  It is possible for applications to be updated and at
17959            // that point remove a previously declared activity component that
17960            // had been set as a preferred activity.  We try to clean this up
17961            // the next time we encounter that preferred activity, but it is
17962            // possible for the user flow to never be able to return to that
17963            // situation so here we do a sanity check to make sure we haven't
17964            // left any junk around.
17965            ArrayList<PreferredActivity> removed = new ArrayList<PreferredActivity>();
17966            for (int i=0; i<mSettings.mPreferredActivities.size(); i++) {
17967                PreferredIntentResolver pir = mSettings.mPreferredActivities.valueAt(i);
17968                removed.clear();
17969                for (PreferredActivity pa : pir.filterSet()) {
17970                    if (mActivities.mActivities.get(pa.mPref.mComponent) == null) {
17971                        removed.add(pa);
17972                    }
17973                }
17974                if (removed.size() > 0) {
17975                    for (int r=0; r<removed.size(); r++) {
17976                        PreferredActivity pa = removed.get(r);
17977                        Slog.w(TAG, "Removing dangling preferred activity: "
17978                                + pa.mPref.mComponent);
17979                        pir.removeFilter(pa);
17980                    }
17981                    mSettings.writePackageRestrictionsLPr(
17982                            mSettings.mPreferredActivities.keyAt(i));
17983                }
17984            }
17985
17986            for (int userId : UserManagerService.getInstance().getUserIds()) {
17987                if (!mSettings.areDefaultRuntimePermissionsGrantedLPr(userId)) {
17988                    grantPermissionsUserIds = ArrayUtils.appendInt(
17989                            grantPermissionsUserIds, userId);
17990                }
17991            }
17992        }
17993        sUserManager.systemReady();
17994
17995        // If we upgraded grant all default permissions before kicking off.
17996        for (int userId : grantPermissionsUserIds) {
17997            mDefaultPermissionPolicy.grantDefaultPermissions(userId);
17998        }
17999
18000        // Kick off any messages waiting for system ready
18001        if (mPostSystemReadyMessages != null) {
18002            for (Message msg : mPostSystemReadyMessages) {
18003                msg.sendToTarget();
18004            }
18005            mPostSystemReadyMessages = null;
18006        }
18007
18008        // Watch for external volumes that come and go over time
18009        final StorageManager storage = mContext.getSystemService(StorageManager.class);
18010        storage.registerListener(mStorageListener);
18011
18012        mInstallerService.systemReady();
18013        mPackageDexOptimizer.systemReady();
18014
18015        MountServiceInternal mountServiceInternal = LocalServices.getService(
18016                MountServiceInternal.class);
18017        mountServiceInternal.addExternalStoragePolicy(
18018                new MountServiceInternal.ExternalStorageMountPolicy() {
18019            @Override
18020            public int getMountMode(int uid, String packageName) {
18021                if (Process.isIsolated(uid)) {
18022                    return Zygote.MOUNT_EXTERNAL_NONE;
18023                }
18024                if (checkUidPermission(WRITE_MEDIA_STORAGE, uid) == PERMISSION_GRANTED) {
18025                    return Zygote.MOUNT_EXTERNAL_DEFAULT;
18026                }
18027                if (checkUidPermission(READ_EXTERNAL_STORAGE, uid) == PERMISSION_DENIED) {
18028                    return Zygote.MOUNT_EXTERNAL_DEFAULT;
18029                }
18030                if (checkUidPermission(WRITE_EXTERNAL_STORAGE, uid) == PERMISSION_DENIED) {
18031                    return Zygote.MOUNT_EXTERNAL_READ;
18032                }
18033                return Zygote.MOUNT_EXTERNAL_WRITE;
18034            }
18035
18036            @Override
18037            public boolean hasExternalStorage(int uid, String packageName) {
18038                return true;
18039            }
18040        });
18041
18042        // Now that we're mostly running, clean up stale users and apps
18043        reconcileUsers(StorageManager.UUID_PRIVATE_INTERNAL);
18044        reconcileApps(StorageManager.UUID_PRIVATE_INTERNAL);
18045    }
18046
18047    @Override
18048    public boolean isSafeMode() {
18049        return mSafeMode;
18050    }
18051
18052    @Override
18053    public boolean hasSystemUidErrors() {
18054        return mHasSystemUidErrors;
18055    }
18056
18057    static String arrayToString(int[] array) {
18058        StringBuffer buf = new StringBuffer(128);
18059        buf.append('[');
18060        if (array != null) {
18061            for (int i=0; i<array.length; i++) {
18062                if (i > 0) buf.append(", ");
18063                buf.append(array[i]);
18064            }
18065        }
18066        buf.append(']');
18067        return buf.toString();
18068    }
18069
18070    static class DumpState {
18071        public static final int DUMP_LIBS = 1 << 0;
18072        public static final int DUMP_FEATURES = 1 << 1;
18073        public static final int DUMP_ACTIVITY_RESOLVERS = 1 << 2;
18074        public static final int DUMP_SERVICE_RESOLVERS = 1 << 3;
18075        public static final int DUMP_RECEIVER_RESOLVERS = 1 << 4;
18076        public static final int DUMP_CONTENT_RESOLVERS = 1 << 5;
18077        public static final int DUMP_PERMISSIONS = 1 << 6;
18078        public static final int DUMP_PACKAGES = 1 << 7;
18079        public static final int DUMP_SHARED_USERS = 1 << 8;
18080        public static final int DUMP_MESSAGES = 1 << 9;
18081        public static final int DUMP_PROVIDERS = 1 << 10;
18082        public static final int DUMP_VERIFIERS = 1 << 11;
18083        public static final int DUMP_PREFERRED = 1 << 12;
18084        public static final int DUMP_PREFERRED_XML = 1 << 13;
18085        public static final int DUMP_KEYSETS = 1 << 14;
18086        public static final int DUMP_VERSION = 1 << 15;
18087        public static final int DUMP_INSTALLS = 1 << 16;
18088        public static final int DUMP_INTENT_FILTER_VERIFIERS = 1 << 17;
18089        public static final int DUMP_DOMAIN_PREFERRED = 1 << 18;
18090        public static final int DUMP_FROZEN = 1 << 19;
18091        public static final int DUMP_DEXOPT = 1 << 20;
18092
18093        public static final int OPTION_SHOW_FILTERS = 1 << 0;
18094
18095        private int mTypes;
18096
18097        private int mOptions;
18098
18099        private boolean mTitlePrinted;
18100
18101        private SharedUserSetting mSharedUser;
18102
18103        public boolean isDumping(int type) {
18104            if (mTypes == 0 && type != DUMP_PREFERRED_XML) {
18105                return true;
18106            }
18107
18108            return (mTypes & type) != 0;
18109        }
18110
18111        public void setDump(int type) {
18112            mTypes |= type;
18113        }
18114
18115        public boolean isOptionEnabled(int option) {
18116            return (mOptions & option) != 0;
18117        }
18118
18119        public void setOptionEnabled(int option) {
18120            mOptions |= option;
18121        }
18122
18123        public boolean onTitlePrinted() {
18124            final boolean printed = mTitlePrinted;
18125            mTitlePrinted = true;
18126            return printed;
18127        }
18128
18129        public boolean getTitlePrinted() {
18130            return mTitlePrinted;
18131        }
18132
18133        public void setTitlePrinted(boolean enabled) {
18134            mTitlePrinted = enabled;
18135        }
18136
18137        public SharedUserSetting getSharedUser() {
18138            return mSharedUser;
18139        }
18140
18141        public void setSharedUser(SharedUserSetting user) {
18142            mSharedUser = user;
18143        }
18144    }
18145
18146    @Override
18147    public void onShellCommand(FileDescriptor in, FileDescriptor out,
18148            FileDescriptor err, String[] args, ResultReceiver resultReceiver) {
18149        (new PackageManagerShellCommand(this)).exec(
18150                this, in, out, err, args, resultReceiver);
18151    }
18152
18153    @Override
18154    protected void dump(FileDescriptor fd, PrintWriter pw, String[] args) {
18155        if (mContext.checkCallingOrSelfPermission(android.Manifest.permission.DUMP)
18156                != PackageManager.PERMISSION_GRANTED) {
18157            pw.println("Permission Denial: can't dump ActivityManager from from pid="
18158                    + Binder.getCallingPid()
18159                    + ", uid=" + Binder.getCallingUid()
18160                    + " without permission "
18161                    + android.Manifest.permission.DUMP);
18162            return;
18163        }
18164
18165        DumpState dumpState = new DumpState();
18166        boolean fullPreferred = false;
18167        boolean checkin = false;
18168
18169        String packageName = null;
18170        ArraySet<String> permissionNames = null;
18171
18172        int opti = 0;
18173        while (opti < args.length) {
18174            String opt = args[opti];
18175            if (opt == null || opt.length() <= 0 || opt.charAt(0) != '-') {
18176                break;
18177            }
18178            opti++;
18179
18180            if ("-a".equals(opt)) {
18181                // Right now we only know how to print all.
18182            } else if ("-h".equals(opt)) {
18183                pw.println("Package manager dump options:");
18184                pw.println("  [-h] [-f] [--checkin] [cmd] ...");
18185                pw.println("    --checkin: dump for a checkin");
18186                pw.println("    -f: print details of intent filters");
18187                pw.println("    -h: print this help");
18188                pw.println("  cmd may be one of:");
18189                pw.println("    l[ibraries]: list known shared libraries");
18190                pw.println("    f[eatures]: list device features");
18191                pw.println("    k[eysets]: print known keysets");
18192                pw.println("    r[esolvers] [activity|service|receiver|content]: dump intent resolvers");
18193                pw.println("    perm[issions]: dump permissions");
18194                pw.println("    permission [name ...]: dump declaration and use of given permission");
18195                pw.println("    pref[erred]: print preferred package settings");
18196                pw.println("    preferred-xml [--full]: print preferred package settings as xml");
18197                pw.println("    prov[iders]: dump content providers");
18198                pw.println("    p[ackages]: dump installed packages");
18199                pw.println("    s[hared-users]: dump shared user IDs");
18200                pw.println("    m[essages]: print collected runtime messages");
18201                pw.println("    v[erifiers]: print package verifier info");
18202                pw.println("    d[omain-preferred-apps]: print domains preferred apps");
18203                pw.println("    i[ntent-filter-verifiers]|ifv: print intent filter verifier info");
18204                pw.println("    version: print database version info");
18205                pw.println("    write: write current settings now");
18206                pw.println("    installs: details about install sessions");
18207                pw.println("    check-permission <permission> <package> [<user>]: does pkg hold perm?");
18208                pw.println("    dexopt: dump dexopt state");
18209                pw.println("    <package.name>: info about given package");
18210                return;
18211            } else if ("--checkin".equals(opt)) {
18212                checkin = true;
18213            } else if ("-f".equals(opt)) {
18214                dumpState.setOptionEnabled(DumpState.OPTION_SHOW_FILTERS);
18215            } else {
18216                pw.println("Unknown argument: " + opt + "; use -h for help");
18217            }
18218        }
18219
18220        // Is the caller requesting to dump a particular piece of data?
18221        if (opti < args.length) {
18222            String cmd = args[opti];
18223            opti++;
18224            // Is this a package name?
18225            if ("android".equals(cmd) || cmd.contains(".")) {
18226                packageName = cmd;
18227                // When dumping a single package, we always dump all of its
18228                // filter information since the amount of data will be reasonable.
18229                dumpState.setOptionEnabled(DumpState.OPTION_SHOW_FILTERS);
18230            } else if ("check-permission".equals(cmd)) {
18231                if (opti >= args.length) {
18232                    pw.println("Error: check-permission missing permission argument");
18233                    return;
18234                }
18235                String perm = args[opti];
18236                opti++;
18237                if (opti >= args.length) {
18238                    pw.println("Error: check-permission missing package argument");
18239                    return;
18240                }
18241                String pkg = args[opti];
18242                opti++;
18243                int user = UserHandle.getUserId(Binder.getCallingUid());
18244                if (opti < args.length) {
18245                    try {
18246                        user = Integer.parseInt(args[opti]);
18247                    } catch (NumberFormatException e) {
18248                        pw.println("Error: check-permission user argument is not a number: "
18249                                + args[opti]);
18250                        return;
18251                    }
18252                }
18253                pw.println(checkPermission(perm, pkg, user));
18254                return;
18255            } else if ("l".equals(cmd) || "libraries".equals(cmd)) {
18256                dumpState.setDump(DumpState.DUMP_LIBS);
18257            } else if ("f".equals(cmd) || "features".equals(cmd)) {
18258                dumpState.setDump(DumpState.DUMP_FEATURES);
18259            } else if ("r".equals(cmd) || "resolvers".equals(cmd)) {
18260                if (opti >= args.length) {
18261                    dumpState.setDump(DumpState.DUMP_ACTIVITY_RESOLVERS
18262                            | DumpState.DUMP_SERVICE_RESOLVERS
18263                            | DumpState.DUMP_RECEIVER_RESOLVERS
18264                            | DumpState.DUMP_CONTENT_RESOLVERS);
18265                } else {
18266                    while (opti < args.length) {
18267                        String name = args[opti];
18268                        if ("a".equals(name) || "activity".equals(name)) {
18269                            dumpState.setDump(DumpState.DUMP_ACTIVITY_RESOLVERS);
18270                        } else if ("s".equals(name) || "service".equals(name)) {
18271                            dumpState.setDump(DumpState.DUMP_SERVICE_RESOLVERS);
18272                        } else if ("r".equals(name) || "receiver".equals(name)) {
18273                            dumpState.setDump(DumpState.DUMP_RECEIVER_RESOLVERS);
18274                        } else if ("c".equals(name) || "content".equals(name)) {
18275                            dumpState.setDump(DumpState.DUMP_CONTENT_RESOLVERS);
18276                        } else {
18277                            pw.println("Error: unknown resolver table type: " + name);
18278                            return;
18279                        }
18280                        opti++;
18281                    }
18282                }
18283            } else if ("perm".equals(cmd) || "permissions".equals(cmd)) {
18284                dumpState.setDump(DumpState.DUMP_PERMISSIONS);
18285            } else if ("permission".equals(cmd)) {
18286                if (opti >= args.length) {
18287                    pw.println("Error: permission requires permission name");
18288                    return;
18289                }
18290                permissionNames = new ArraySet<>();
18291                while (opti < args.length) {
18292                    permissionNames.add(args[opti]);
18293                    opti++;
18294                }
18295                dumpState.setDump(DumpState.DUMP_PERMISSIONS
18296                        | DumpState.DUMP_PACKAGES | DumpState.DUMP_SHARED_USERS);
18297            } else if ("pref".equals(cmd) || "preferred".equals(cmd)) {
18298                dumpState.setDump(DumpState.DUMP_PREFERRED);
18299            } else if ("preferred-xml".equals(cmd)) {
18300                dumpState.setDump(DumpState.DUMP_PREFERRED_XML);
18301                if (opti < args.length && "--full".equals(args[opti])) {
18302                    fullPreferred = true;
18303                    opti++;
18304                }
18305            } else if ("d".equals(cmd) || "domain-preferred-apps".equals(cmd)) {
18306                dumpState.setDump(DumpState.DUMP_DOMAIN_PREFERRED);
18307            } else if ("p".equals(cmd) || "packages".equals(cmd)) {
18308                dumpState.setDump(DumpState.DUMP_PACKAGES);
18309            } else if ("s".equals(cmd) || "shared-users".equals(cmd)) {
18310                dumpState.setDump(DumpState.DUMP_SHARED_USERS);
18311            } else if ("prov".equals(cmd) || "providers".equals(cmd)) {
18312                dumpState.setDump(DumpState.DUMP_PROVIDERS);
18313            } else if ("m".equals(cmd) || "messages".equals(cmd)) {
18314                dumpState.setDump(DumpState.DUMP_MESSAGES);
18315            } else if ("v".equals(cmd) || "verifiers".equals(cmd)) {
18316                dumpState.setDump(DumpState.DUMP_VERIFIERS);
18317            } else if ("i".equals(cmd) || "ifv".equals(cmd)
18318                    || "intent-filter-verifiers".equals(cmd)) {
18319                dumpState.setDump(DumpState.DUMP_INTENT_FILTER_VERIFIERS);
18320            } else if ("version".equals(cmd)) {
18321                dumpState.setDump(DumpState.DUMP_VERSION);
18322            } else if ("k".equals(cmd) || "keysets".equals(cmd)) {
18323                dumpState.setDump(DumpState.DUMP_KEYSETS);
18324            } else if ("installs".equals(cmd)) {
18325                dumpState.setDump(DumpState.DUMP_INSTALLS);
18326            } else if ("frozen".equals(cmd)) {
18327                dumpState.setDump(DumpState.DUMP_FROZEN);
18328            } else if ("dexopt".equals(cmd)) {
18329                dumpState.setDump(DumpState.DUMP_DEXOPT);
18330            } else if ("write".equals(cmd)) {
18331                synchronized (mPackages) {
18332                    mSettings.writeLPr();
18333                    pw.println("Settings written.");
18334                    return;
18335                }
18336            }
18337        }
18338
18339        if (checkin) {
18340            pw.println("vers,1");
18341        }
18342
18343        // reader
18344        synchronized (mPackages) {
18345            if (dumpState.isDumping(DumpState.DUMP_VERSION) && packageName == null) {
18346                if (!checkin) {
18347                    if (dumpState.onTitlePrinted())
18348                        pw.println();
18349                    pw.println("Database versions:");
18350                    mSettings.dumpVersionLPr(new IndentingPrintWriter(pw, "  "));
18351                }
18352            }
18353
18354            if (dumpState.isDumping(DumpState.DUMP_VERIFIERS) && packageName == null) {
18355                if (!checkin) {
18356                    if (dumpState.onTitlePrinted())
18357                        pw.println();
18358                    pw.println("Verifiers:");
18359                    pw.print("  Required: ");
18360                    pw.print(mRequiredVerifierPackage);
18361                    pw.print(" (uid=");
18362                    pw.print(getPackageUid(mRequiredVerifierPackage, MATCH_DEBUG_TRIAGED_MISSING,
18363                            UserHandle.USER_SYSTEM));
18364                    pw.println(")");
18365                } else if (mRequiredVerifierPackage != null) {
18366                    pw.print("vrfy,"); pw.print(mRequiredVerifierPackage);
18367                    pw.print(",");
18368                    pw.println(getPackageUid(mRequiredVerifierPackage, MATCH_DEBUG_TRIAGED_MISSING,
18369                            UserHandle.USER_SYSTEM));
18370                }
18371            }
18372
18373            if (dumpState.isDumping(DumpState.DUMP_INTENT_FILTER_VERIFIERS) &&
18374                    packageName == null) {
18375                if (mIntentFilterVerifierComponent != null) {
18376                    String verifierPackageName = mIntentFilterVerifierComponent.getPackageName();
18377                    if (!checkin) {
18378                        if (dumpState.onTitlePrinted())
18379                            pw.println();
18380                        pw.println("Intent Filter Verifier:");
18381                        pw.print("  Using: ");
18382                        pw.print(verifierPackageName);
18383                        pw.print(" (uid=");
18384                        pw.print(getPackageUid(verifierPackageName, MATCH_DEBUG_TRIAGED_MISSING,
18385                                UserHandle.USER_SYSTEM));
18386                        pw.println(")");
18387                    } else if (verifierPackageName != null) {
18388                        pw.print("ifv,"); pw.print(verifierPackageName);
18389                        pw.print(",");
18390                        pw.println(getPackageUid(verifierPackageName, MATCH_DEBUG_TRIAGED_MISSING,
18391                                UserHandle.USER_SYSTEM));
18392                    }
18393                } else {
18394                    pw.println();
18395                    pw.println("No Intent Filter Verifier available!");
18396                }
18397            }
18398
18399            if (dumpState.isDumping(DumpState.DUMP_LIBS) && packageName == null) {
18400                boolean printedHeader = false;
18401                final Iterator<String> it = mSharedLibraries.keySet().iterator();
18402                while (it.hasNext()) {
18403                    String name = it.next();
18404                    SharedLibraryEntry ent = mSharedLibraries.get(name);
18405                    if (!checkin) {
18406                        if (!printedHeader) {
18407                            if (dumpState.onTitlePrinted())
18408                                pw.println();
18409                            pw.println("Libraries:");
18410                            printedHeader = true;
18411                        }
18412                        pw.print("  ");
18413                    } else {
18414                        pw.print("lib,");
18415                    }
18416                    pw.print(name);
18417                    if (!checkin) {
18418                        pw.print(" -> ");
18419                    }
18420                    if (ent.path != null) {
18421                        if (!checkin) {
18422                            pw.print("(jar) ");
18423                            pw.print(ent.path);
18424                        } else {
18425                            pw.print(",jar,");
18426                            pw.print(ent.path);
18427                        }
18428                    } else {
18429                        if (!checkin) {
18430                            pw.print("(apk) ");
18431                            pw.print(ent.apk);
18432                        } else {
18433                            pw.print(",apk,");
18434                            pw.print(ent.apk);
18435                        }
18436                    }
18437                    pw.println();
18438                }
18439            }
18440
18441            if (dumpState.isDumping(DumpState.DUMP_FEATURES) && packageName == null) {
18442                if (dumpState.onTitlePrinted())
18443                    pw.println();
18444                if (!checkin) {
18445                    pw.println("Features:");
18446                }
18447
18448                for (FeatureInfo feat : mAvailableFeatures.values()) {
18449                    if (checkin) {
18450                        pw.print("feat,");
18451                        pw.print(feat.name);
18452                        pw.print(",");
18453                        pw.println(feat.version);
18454                    } else {
18455                        pw.print("  ");
18456                        pw.print(feat.name);
18457                        if (feat.version > 0) {
18458                            pw.print(" version=");
18459                            pw.print(feat.version);
18460                        }
18461                        pw.println();
18462                    }
18463                }
18464            }
18465
18466            if (!checkin && dumpState.isDumping(DumpState.DUMP_ACTIVITY_RESOLVERS)) {
18467                if (mActivities.dump(pw, dumpState.getTitlePrinted() ? "\nActivity Resolver Table:"
18468                        : "Activity Resolver Table:", "  ", packageName,
18469                        dumpState.isOptionEnabled(DumpState.OPTION_SHOW_FILTERS), true)) {
18470                    dumpState.setTitlePrinted(true);
18471                }
18472            }
18473            if (!checkin && dumpState.isDumping(DumpState.DUMP_RECEIVER_RESOLVERS)) {
18474                if (mReceivers.dump(pw, dumpState.getTitlePrinted() ? "\nReceiver Resolver Table:"
18475                        : "Receiver Resolver Table:", "  ", packageName,
18476                        dumpState.isOptionEnabled(DumpState.OPTION_SHOW_FILTERS), true)) {
18477                    dumpState.setTitlePrinted(true);
18478                }
18479            }
18480            if (!checkin && dumpState.isDumping(DumpState.DUMP_SERVICE_RESOLVERS)) {
18481                if (mServices.dump(pw, dumpState.getTitlePrinted() ? "\nService Resolver Table:"
18482                        : "Service Resolver Table:", "  ", packageName,
18483                        dumpState.isOptionEnabled(DumpState.OPTION_SHOW_FILTERS), true)) {
18484                    dumpState.setTitlePrinted(true);
18485                }
18486            }
18487            if (!checkin && dumpState.isDumping(DumpState.DUMP_CONTENT_RESOLVERS)) {
18488                if (mProviders.dump(pw, dumpState.getTitlePrinted() ? "\nProvider Resolver Table:"
18489                        : "Provider Resolver Table:", "  ", packageName,
18490                        dumpState.isOptionEnabled(DumpState.OPTION_SHOW_FILTERS), true)) {
18491                    dumpState.setTitlePrinted(true);
18492                }
18493            }
18494
18495            if (!checkin && dumpState.isDumping(DumpState.DUMP_PREFERRED)) {
18496                for (int i=0; i<mSettings.mPreferredActivities.size(); i++) {
18497                    PreferredIntentResolver pir = mSettings.mPreferredActivities.valueAt(i);
18498                    int user = mSettings.mPreferredActivities.keyAt(i);
18499                    if (pir.dump(pw,
18500                            dumpState.getTitlePrinted()
18501                                ? "\nPreferred Activities User " + user + ":"
18502                                : "Preferred Activities User " + user + ":", "  ",
18503                            packageName, true, false)) {
18504                        dumpState.setTitlePrinted(true);
18505                    }
18506                }
18507            }
18508
18509            if (!checkin && dumpState.isDumping(DumpState.DUMP_PREFERRED_XML)) {
18510                pw.flush();
18511                FileOutputStream fout = new FileOutputStream(fd);
18512                BufferedOutputStream str = new BufferedOutputStream(fout);
18513                XmlSerializer serializer = new FastXmlSerializer();
18514                try {
18515                    serializer.setOutput(str, StandardCharsets.UTF_8.name());
18516                    serializer.startDocument(null, true);
18517                    serializer.setFeature(
18518                            "http://xmlpull.org/v1/doc/features.html#indent-output", true);
18519                    mSettings.writePreferredActivitiesLPr(serializer, 0, fullPreferred);
18520                    serializer.endDocument();
18521                    serializer.flush();
18522                } catch (IllegalArgumentException e) {
18523                    pw.println("Failed writing: " + e);
18524                } catch (IllegalStateException e) {
18525                    pw.println("Failed writing: " + e);
18526                } catch (IOException e) {
18527                    pw.println("Failed writing: " + e);
18528                }
18529            }
18530
18531            if (!checkin
18532                    && dumpState.isDumping(DumpState.DUMP_DOMAIN_PREFERRED)
18533                    && packageName == null) {
18534                pw.println();
18535                int count = mSettings.mPackages.size();
18536                if (count == 0) {
18537                    pw.println("No applications!");
18538                    pw.println();
18539                } else {
18540                    final String prefix = "  ";
18541                    Collection<PackageSetting> allPackageSettings = mSettings.mPackages.values();
18542                    if (allPackageSettings.size() == 0) {
18543                        pw.println("No domain preferred apps!");
18544                        pw.println();
18545                    } else {
18546                        pw.println("App verification status:");
18547                        pw.println();
18548                        count = 0;
18549                        for (PackageSetting ps : allPackageSettings) {
18550                            IntentFilterVerificationInfo ivi = ps.getIntentFilterVerificationInfo();
18551                            if (ivi == null || ivi.getPackageName() == null) continue;
18552                            pw.println(prefix + "Package: " + ivi.getPackageName());
18553                            pw.println(prefix + "Domains: " + ivi.getDomainsString());
18554                            pw.println(prefix + "Status:  " + ivi.getStatusString());
18555                            pw.println();
18556                            count++;
18557                        }
18558                        if (count == 0) {
18559                            pw.println(prefix + "No app verification established.");
18560                            pw.println();
18561                        }
18562                        for (int userId : sUserManager.getUserIds()) {
18563                            pw.println("App linkages for user " + userId + ":");
18564                            pw.println();
18565                            count = 0;
18566                            for (PackageSetting ps : allPackageSettings) {
18567                                final long status = ps.getDomainVerificationStatusForUser(userId);
18568                                if (status >> 32 == INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_UNDEFINED) {
18569                                    continue;
18570                                }
18571                                pw.println(prefix + "Package: " + ps.name);
18572                                pw.println(prefix + "Domains: " + dumpDomainString(ps.name));
18573                                String statusStr = IntentFilterVerificationInfo.
18574                                        getStatusStringFromValue(status);
18575                                pw.println(prefix + "Status:  " + statusStr);
18576                                pw.println();
18577                                count++;
18578                            }
18579                            if (count == 0) {
18580                                pw.println(prefix + "No configured app linkages.");
18581                                pw.println();
18582                            }
18583                        }
18584                    }
18585                }
18586            }
18587
18588            if (!checkin && dumpState.isDumping(DumpState.DUMP_PERMISSIONS)) {
18589                mSettings.dumpPermissionsLPr(pw, packageName, permissionNames, dumpState);
18590                if (packageName == null && permissionNames == null) {
18591                    for (int iperm=0; iperm<mAppOpPermissionPackages.size(); iperm++) {
18592                        if (iperm == 0) {
18593                            if (dumpState.onTitlePrinted())
18594                                pw.println();
18595                            pw.println("AppOp Permissions:");
18596                        }
18597                        pw.print("  AppOp Permission ");
18598                        pw.print(mAppOpPermissionPackages.keyAt(iperm));
18599                        pw.println(":");
18600                        ArraySet<String> pkgs = mAppOpPermissionPackages.valueAt(iperm);
18601                        for (int ipkg=0; ipkg<pkgs.size(); ipkg++) {
18602                            pw.print("    "); pw.println(pkgs.valueAt(ipkg));
18603                        }
18604                    }
18605                }
18606            }
18607
18608            if (!checkin && dumpState.isDumping(DumpState.DUMP_PROVIDERS)) {
18609                boolean printedSomething = false;
18610                for (PackageParser.Provider p : mProviders.mProviders.values()) {
18611                    if (packageName != null && !packageName.equals(p.info.packageName)) {
18612                        continue;
18613                    }
18614                    if (!printedSomething) {
18615                        if (dumpState.onTitlePrinted())
18616                            pw.println();
18617                        pw.println("Registered ContentProviders:");
18618                        printedSomething = true;
18619                    }
18620                    pw.print("  "); p.printComponentShortName(pw); pw.println(":");
18621                    pw.print("    "); pw.println(p.toString());
18622                }
18623                printedSomething = false;
18624                for (Map.Entry<String, PackageParser.Provider> entry :
18625                        mProvidersByAuthority.entrySet()) {
18626                    PackageParser.Provider p = entry.getValue();
18627                    if (packageName != null && !packageName.equals(p.info.packageName)) {
18628                        continue;
18629                    }
18630                    if (!printedSomething) {
18631                        if (dumpState.onTitlePrinted())
18632                            pw.println();
18633                        pw.println("ContentProvider Authorities:");
18634                        printedSomething = true;
18635                    }
18636                    pw.print("  ["); pw.print(entry.getKey()); pw.println("]:");
18637                    pw.print("    "); pw.println(p.toString());
18638                    if (p.info != null && p.info.applicationInfo != null) {
18639                        final String appInfo = p.info.applicationInfo.toString();
18640                        pw.print("      applicationInfo="); pw.println(appInfo);
18641                    }
18642                }
18643            }
18644
18645            if (!checkin && dumpState.isDumping(DumpState.DUMP_KEYSETS)) {
18646                mSettings.mKeySetManagerService.dumpLPr(pw, packageName, dumpState);
18647            }
18648
18649            if (dumpState.isDumping(DumpState.DUMP_PACKAGES)) {
18650                mSettings.dumpPackagesLPr(pw, packageName, permissionNames, dumpState, checkin);
18651            }
18652
18653            if (dumpState.isDumping(DumpState.DUMP_SHARED_USERS)) {
18654                mSettings.dumpSharedUsersLPr(pw, packageName, permissionNames, dumpState, checkin);
18655            }
18656
18657            if (!checkin && dumpState.isDumping(DumpState.DUMP_PERMISSIONS) && packageName == null) {
18658                mSettings.dumpRestoredPermissionGrantsLPr(pw, dumpState);
18659            }
18660
18661            if (!checkin && dumpState.isDumping(DumpState.DUMP_INSTALLS) && packageName == null) {
18662                // XXX should handle packageName != null by dumping only install data that
18663                // the given package is involved with.
18664                if (dumpState.onTitlePrinted()) pw.println();
18665                mInstallerService.dump(new IndentingPrintWriter(pw, "  ", 120));
18666            }
18667
18668            if (!checkin && dumpState.isDumping(DumpState.DUMP_FROZEN) && packageName == null) {
18669                // XXX should handle packageName != null by dumping only install data that
18670                // the given package is involved with.
18671                if (dumpState.onTitlePrinted()) pw.println();
18672
18673                final IndentingPrintWriter ipw = new IndentingPrintWriter(pw, "  ", 120);
18674                ipw.println();
18675                ipw.println("Frozen packages:");
18676                ipw.increaseIndent();
18677                if (mFrozenPackages.size() == 0) {
18678                    ipw.println("(none)");
18679                } else {
18680                    for (int i = 0; i < mFrozenPackages.size(); i++) {
18681                        ipw.println(mFrozenPackages.valueAt(i));
18682                    }
18683                }
18684                ipw.decreaseIndent();
18685            }
18686
18687            if (!checkin && dumpState.isDumping(DumpState.DUMP_DEXOPT)) {
18688                if (dumpState.onTitlePrinted()) pw.println();
18689                dumpDexoptStateLPr(pw, packageName);
18690            }
18691
18692            if (!checkin && dumpState.isDumping(DumpState.DUMP_MESSAGES) && packageName == null) {
18693                if (dumpState.onTitlePrinted()) pw.println();
18694                mSettings.dumpReadMessagesLPr(pw, dumpState);
18695
18696                pw.println();
18697                pw.println("Package warning messages:");
18698                BufferedReader in = null;
18699                String line = null;
18700                try {
18701                    in = new BufferedReader(new FileReader(getSettingsProblemFile()));
18702                    while ((line = in.readLine()) != null) {
18703                        if (line.contains("ignored: updated version")) continue;
18704                        pw.println(line);
18705                    }
18706                } catch (IOException ignored) {
18707                } finally {
18708                    IoUtils.closeQuietly(in);
18709                }
18710            }
18711
18712            if (checkin && dumpState.isDumping(DumpState.DUMP_MESSAGES)) {
18713                BufferedReader in = null;
18714                String line = null;
18715                try {
18716                    in = new BufferedReader(new FileReader(getSettingsProblemFile()));
18717                    while ((line = in.readLine()) != null) {
18718                        if (line.contains("ignored: updated version")) continue;
18719                        pw.print("msg,");
18720                        pw.println(line);
18721                    }
18722                } catch (IOException ignored) {
18723                } finally {
18724                    IoUtils.closeQuietly(in);
18725                }
18726            }
18727        }
18728    }
18729
18730    private void dumpDexoptStateLPr(PrintWriter pw, String packageName) {
18731        final IndentingPrintWriter ipw = new IndentingPrintWriter(pw, "  ", 120);
18732        ipw.println();
18733        ipw.println("Dexopt state:");
18734        ipw.increaseIndent();
18735        Collection<PackageParser.Package> packages = null;
18736        if (packageName != null) {
18737            PackageParser.Package targetPackage = mPackages.get(packageName);
18738            if (targetPackage != null) {
18739                packages = Collections.singletonList(targetPackage);
18740            } else {
18741                ipw.println("Unable to find package: " + packageName);
18742                return;
18743            }
18744        } else {
18745            packages = mPackages.values();
18746        }
18747
18748        for (PackageParser.Package pkg : packages) {
18749            ipw.println("[" + pkg.packageName + "]");
18750            ipw.increaseIndent();
18751            mPackageDexOptimizer.dumpDexoptState(ipw, pkg);
18752            ipw.decreaseIndent();
18753        }
18754    }
18755
18756    private String dumpDomainString(String packageName) {
18757        List<IntentFilterVerificationInfo> iviList = getIntentFilterVerifications(packageName)
18758                .getList();
18759        List<IntentFilter> filters = getAllIntentFilters(packageName).getList();
18760
18761        ArraySet<String> result = new ArraySet<>();
18762        if (iviList.size() > 0) {
18763            for (IntentFilterVerificationInfo ivi : iviList) {
18764                for (String host : ivi.getDomains()) {
18765                    result.add(host);
18766                }
18767            }
18768        }
18769        if (filters != null && filters.size() > 0) {
18770            for (IntentFilter filter : filters) {
18771                if (filter.hasCategory(Intent.CATEGORY_BROWSABLE)
18772                        && (filter.hasDataScheme(IntentFilter.SCHEME_HTTP) ||
18773                                filter.hasDataScheme(IntentFilter.SCHEME_HTTPS))) {
18774                    result.addAll(filter.getHostsList());
18775                }
18776            }
18777        }
18778
18779        StringBuilder sb = new StringBuilder(result.size() * 16);
18780        for (String domain : result) {
18781            if (sb.length() > 0) sb.append(" ");
18782            sb.append(domain);
18783        }
18784        return sb.toString();
18785    }
18786
18787    // ------- apps on sdcard specific code -------
18788    static final boolean DEBUG_SD_INSTALL = false;
18789
18790    private static final String SD_ENCRYPTION_KEYSTORE_NAME = "AppsOnSD";
18791
18792    private static final String SD_ENCRYPTION_ALGORITHM = "AES";
18793
18794    private boolean mMediaMounted = false;
18795
18796    static String getEncryptKey() {
18797        try {
18798            String sdEncKey = SystemKeyStore.getInstance().retrieveKeyHexString(
18799                    SD_ENCRYPTION_KEYSTORE_NAME);
18800            if (sdEncKey == null) {
18801                sdEncKey = SystemKeyStore.getInstance().generateNewKeyHexString(128,
18802                        SD_ENCRYPTION_ALGORITHM, SD_ENCRYPTION_KEYSTORE_NAME);
18803                if (sdEncKey == null) {
18804                    Slog.e(TAG, "Failed to create encryption keys");
18805                    return null;
18806                }
18807            }
18808            return sdEncKey;
18809        } catch (NoSuchAlgorithmException nsae) {
18810            Slog.e(TAG, "Failed to create encryption keys with exception: " + nsae);
18811            return null;
18812        } catch (IOException ioe) {
18813            Slog.e(TAG, "Failed to retrieve encryption keys with exception: " + ioe);
18814            return null;
18815        }
18816    }
18817
18818    /*
18819     * Update media status on PackageManager.
18820     */
18821    @Override
18822    public void updateExternalMediaStatus(final boolean mediaStatus, final boolean reportStatus) {
18823        int callingUid = Binder.getCallingUid();
18824        if (callingUid != 0 && callingUid != Process.SYSTEM_UID) {
18825            throw new SecurityException("Media status can only be updated by the system");
18826        }
18827        // reader; this apparently protects mMediaMounted, but should probably
18828        // be a different lock in that case.
18829        synchronized (mPackages) {
18830            Log.i(TAG, "Updating external media status from "
18831                    + (mMediaMounted ? "mounted" : "unmounted") + " to "
18832                    + (mediaStatus ? "mounted" : "unmounted"));
18833            if (DEBUG_SD_INSTALL)
18834                Log.i(TAG, "updateExternalMediaStatus:: mediaStatus=" + mediaStatus
18835                        + ", mMediaMounted=" + mMediaMounted);
18836            if (mediaStatus == mMediaMounted) {
18837                final Message msg = mHandler.obtainMessage(UPDATED_MEDIA_STATUS, reportStatus ? 1
18838                        : 0, -1);
18839                mHandler.sendMessage(msg);
18840                return;
18841            }
18842            mMediaMounted = mediaStatus;
18843        }
18844        // Queue up an async operation since the package installation may take a
18845        // little while.
18846        mHandler.post(new Runnable() {
18847            public void run() {
18848                updateExternalMediaStatusInner(mediaStatus, reportStatus, true);
18849            }
18850        });
18851    }
18852
18853    /**
18854     * Called by MountService when the initial ASECs to scan are available.
18855     * Should block until all the ASEC containers are finished being scanned.
18856     */
18857    public void scanAvailableAsecs() {
18858        updateExternalMediaStatusInner(true, false, false);
18859    }
18860
18861    /*
18862     * Collect information of applications on external media, map them against
18863     * existing containers and update information based on current mount status.
18864     * Please note that we always have to report status if reportStatus has been
18865     * set to true especially when unloading packages.
18866     */
18867    private void updateExternalMediaStatusInner(boolean isMounted, boolean reportStatus,
18868            boolean externalStorage) {
18869        ArrayMap<AsecInstallArgs, String> processCids = new ArrayMap<>();
18870        int[] uidArr = EmptyArray.INT;
18871
18872        final String[] list = PackageHelper.getSecureContainerList();
18873        if (ArrayUtils.isEmpty(list)) {
18874            Log.i(TAG, "No secure containers found");
18875        } else {
18876            // Process list of secure containers and categorize them
18877            // as active or stale based on their package internal state.
18878
18879            // reader
18880            synchronized (mPackages) {
18881                for (String cid : list) {
18882                    // Leave stages untouched for now; installer service owns them
18883                    if (PackageInstallerService.isStageName(cid)) continue;
18884
18885                    if (DEBUG_SD_INSTALL)
18886                        Log.i(TAG, "Processing container " + cid);
18887                    String pkgName = getAsecPackageName(cid);
18888                    if (pkgName == null) {
18889                        Slog.i(TAG, "Found stale container " + cid + " with no package name");
18890                        continue;
18891                    }
18892                    if (DEBUG_SD_INSTALL)
18893                        Log.i(TAG, "Looking for pkg : " + pkgName);
18894
18895                    final PackageSetting ps = mSettings.mPackages.get(pkgName);
18896                    if (ps == null) {
18897                        Slog.i(TAG, "Found stale container " + cid + " with no matching settings");
18898                        continue;
18899                    }
18900
18901                    /*
18902                     * Skip packages that are not external if we're unmounting
18903                     * external storage.
18904                     */
18905                    if (externalStorage && !isMounted && !isExternal(ps)) {
18906                        continue;
18907                    }
18908
18909                    final AsecInstallArgs args = new AsecInstallArgs(cid,
18910                            getAppDexInstructionSets(ps), ps.isForwardLocked());
18911                    // The package status is changed only if the code path
18912                    // matches between settings and the container id.
18913                    if (ps.codePathString != null
18914                            && ps.codePathString.startsWith(args.getCodePath())) {
18915                        if (DEBUG_SD_INSTALL) {
18916                            Log.i(TAG, "Container : " + cid + " corresponds to pkg : " + pkgName
18917                                    + " at code path: " + ps.codePathString);
18918                        }
18919
18920                        // We do have a valid package installed on sdcard
18921                        processCids.put(args, ps.codePathString);
18922                        final int uid = ps.appId;
18923                        if (uid != -1) {
18924                            uidArr = ArrayUtils.appendInt(uidArr, uid);
18925                        }
18926                    } else {
18927                        Slog.i(TAG, "Found stale container " + cid + ": expected codePath="
18928                                + ps.codePathString);
18929                    }
18930                }
18931            }
18932
18933            Arrays.sort(uidArr);
18934        }
18935
18936        // Process packages with valid entries.
18937        if (isMounted) {
18938            if (DEBUG_SD_INSTALL)
18939                Log.i(TAG, "Loading packages");
18940            loadMediaPackages(processCids, uidArr, externalStorage);
18941            startCleaningPackages();
18942            mInstallerService.onSecureContainersAvailable();
18943        } else {
18944            if (DEBUG_SD_INSTALL)
18945                Log.i(TAG, "Unloading packages");
18946            unloadMediaPackages(processCids, uidArr, reportStatus);
18947        }
18948    }
18949
18950    private void sendResourcesChangedBroadcast(boolean mediaStatus, boolean replacing,
18951            ArrayList<ApplicationInfo> infos, IIntentReceiver finishedReceiver) {
18952        final int size = infos.size();
18953        final String[] packageNames = new String[size];
18954        final int[] packageUids = new int[size];
18955        for (int i = 0; i < size; i++) {
18956            final ApplicationInfo info = infos.get(i);
18957            packageNames[i] = info.packageName;
18958            packageUids[i] = info.uid;
18959        }
18960        sendResourcesChangedBroadcast(mediaStatus, replacing, packageNames, packageUids,
18961                finishedReceiver);
18962    }
18963
18964    private void sendResourcesChangedBroadcast(boolean mediaStatus, boolean replacing,
18965            ArrayList<String> pkgList, int uidArr[], IIntentReceiver finishedReceiver) {
18966        sendResourcesChangedBroadcast(mediaStatus, replacing,
18967                pkgList.toArray(new String[pkgList.size()]), uidArr, finishedReceiver);
18968    }
18969
18970    private void sendResourcesChangedBroadcast(boolean mediaStatus, boolean replacing,
18971            String[] pkgList, int uidArr[], IIntentReceiver finishedReceiver) {
18972        int size = pkgList.length;
18973        if (size > 0) {
18974            // Send broadcasts here
18975            Bundle extras = new Bundle();
18976            extras.putStringArray(Intent.EXTRA_CHANGED_PACKAGE_LIST, pkgList);
18977            if (uidArr != null) {
18978                extras.putIntArray(Intent.EXTRA_CHANGED_UID_LIST, uidArr);
18979            }
18980            if (replacing) {
18981                extras.putBoolean(Intent.EXTRA_REPLACING, replacing);
18982            }
18983            String action = mediaStatus ? Intent.ACTION_EXTERNAL_APPLICATIONS_AVAILABLE
18984                    : Intent.ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE;
18985            sendPackageBroadcast(action, null, extras, 0, null, finishedReceiver, null);
18986        }
18987    }
18988
18989   /*
18990     * Look at potentially valid container ids from processCids If package
18991     * information doesn't match the one on record or package scanning fails,
18992     * the cid is added to list of removeCids. We currently don't delete stale
18993     * containers.
18994     */
18995    private void loadMediaPackages(ArrayMap<AsecInstallArgs, String> processCids, int[] uidArr,
18996            boolean externalStorage) {
18997        ArrayList<String> pkgList = new ArrayList<String>();
18998        Set<AsecInstallArgs> keys = processCids.keySet();
18999
19000        for (AsecInstallArgs args : keys) {
19001            String codePath = processCids.get(args);
19002            if (DEBUG_SD_INSTALL)
19003                Log.i(TAG, "Loading container : " + args.cid);
19004            int retCode = PackageManager.INSTALL_FAILED_CONTAINER_ERROR;
19005            try {
19006                // Make sure there are no container errors first.
19007                if (args.doPreInstall(PackageManager.INSTALL_SUCCEEDED) != PackageManager.INSTALL_SUCCEEDED) {
19008                    Slog.e(TAG, "Failed to mount cid : " + args.cid
19009                            + " when installing from sdcard");
19010                    continue;
19011                }
19012                // Check code path here.
19013                if (codePath == null || !codePath.startsWith(args.getCodePath())) {
19014                    Slog.e(TAG, "Container " + args.cid + " cachepath " + args.getCodePath()
19015                            + " does not match one in settings " + codePath);
19016                    continue;
19017                }
19018                // Parse package
19019                int parseFlags = mDefParseFlags;
19020                if (args.isExternalAsec()) {
19021                    parseFlags |= PackageParser.PARSE_EXTERNAL_STORAGE;
19022                }
19023                if (args.isFwdLocked()) {
19024                    parseFlags |= PackageParser.PARSE_FORWARD_LOCK;
19025                }
19026
19027                synchronized (mInstallLock) {
19028                    PackageParser.Package pkg = null;
19029                    try {
19030                        // Sadly we don't know the package name yet to freeze it
19031                        pkg = scanPackageTracedLI(new File(codePath), parseFlags,
19032                                SCAN_IGNORE_FROZEN, 0, null);
19033                    } catch (PackageManagerException e) {
19034                        Slog.w(TAG, "Failed to scan " + codePath + ": " + e.getMessage());
19035                    }
19036                    // Scan the package
19037                    if (pkg != null) {
19038                        /*
19039                         * TODO why is the lock being held? doPostInstall is
19040                         * called in other places without the lock. This needs
19041                         * to be straightened out.
19042                         */
19043                        // writer
19044                        synchronized (mPackages) {
19045                            retCode = PackageManager.INSTALL_SUCCEEDED;
19046                            pkgList.add(pkg.packageName);
19047                            // Post process args
19048                            args.doPostInstall(PackageManager.INSTALL_SUCCEEDED,
19049                                    pkg.applicationInfo.uid);
19050                        }
19051                    } else {
19052                        Slog.i(TAG, "Failed to install pkg from  " + codePath + " from sdcard");
19053                    }
19054                }
19055
19056            } finally {
19057                if (retCode != PackageManager.INSTALL_SUCCEEDED) {
19058                    Log.w(TAG, "Container " + args.cid + " is stale, retCode=" + retCode);
19059                }
19060            }
19061        }
19062        // writer
19063        synchronized (mPackages) {
19064            // If the platform SDK has changed since the last time we booted,
19065            // we need to re-grant app permission to catch any new ones that
19066            // appear. This is really a hack, and means that apps can in some
19067            // cases get permissions that the user didn't initially explicitly
19068            // allow... it would be nice to have some better way to handle
19069            // this situation.
19070            final VersionInfo ver = externalStorage ? mSettings.getExternalVersion()
19071                    : mSettings.getInternalVersion();
19072            final String volumeUuid = externalStorage ? StorageManager.UUID_PRIMARY_PHYSICAL
19073                    : StorageManager.UUID_PRIVATE_INTERNAL;
19074
19075            int updateFlags = UPDATE_PERMISSIONS_ALL;
19076            if (ver.sdkVersion != mSdkVersion) {
19077                logCriticalInfo(Log.INFO, "Platform changed from " + ver.sdkVersion + " to "
19078                        + mSdkVersion + "; regranting permissions for external");
19079                updateFlags |= UPDATE_PERMISSIONS_REPLACE_PKG | UPDATE_PERMISSIONS_REPLACE_ALL;
19080            }
19081            updatePermissionsLPw(null, null, volumeUuid, updateFlags);
19082
19083            // Yay, everything is now upgraded
19084            ver.forceCurrent();
19085
19086            // can downgrade to reader
19087            // Persist settings
19088            mSettings.writeLPr();
19089        }
19090        // Send a broadcast to let everyone know we are done processing
19091        if (pkgList.size() > 0) {
19092            sendResourcesChangedBroadcast(true, false, pkgList, uidArr, null);
19093        }
19094    }
19095
19096   /*
19097     * Utility method to unload a list of specified containers
19098     */
19099    private void unloadAllContainers(Set<AsecInstallArgs> cidArgs) {
19100        // Just unmount all valid containers.
19101        for (AsecInstallArgs arg : cidArgs) {
19102            synchronized (mInstallLock) {
19103                arg.doPostDeleteLI(false);
19104           }
19105       }
19106   }
19107
19108    /*
19109     * Unload packages mounted on external media. This involves deleting package
19110     * data from internal structures, sending broadcasts about disabled packages,
19111     * gc'ing to free up references, unmounting all secure containers
19112     * corresponding to packages on external media, and posting a
19113     * UPDATED_MEDIA_STATUS message if status has been requested. Please note
19114     * that we always have to post this message if status has been requested no
19115     * matter what.
19116     */
19117    private void unloadMediaPackages(ArrayMap<AsecInstallArgs, String> processCids, int uidArr[],
19118            final boolean reportStatus) {
19119        if (DEBUG_SD_INSTALL)
19120            Log.i(TAG, "unloading media packages");
19121        ArrayList<String> pkgList = new ArrayList<String>();
19122        ArrayList<AsecInstallArgs> failedList = new ArrayList<AsecInstallArgs>();
19123        final Set<AsecInstallArgs> keys = processCids.keySet();
19124        for (AsecInstallArgs args : keys) {
19125            String pkgName = args.getPackageName();
19126            if (DEBUG_SD_INSTALL)
19127                Log.i(TAG, "Trying to unload pkg : " + pkgName);
19128            // Delete package internally
19129            PackageRemovedInfo outInfo = new PackageRemovedInfo();
19130            synchronized (mInstallLock) {
19131                final int deleteFlags = PackageManager.DELETE_KEEP_DATA;
19132                final boolean res;
19133                try (PackageFreezer freezer = freezePackageForDelete(pkgName, deleteFlags,
19134                        "unloadMediaPackages")) {
19135                    res = deletePackageLIF(pkgName, null, false, null, deleteFlags, outInfo, false,
19136                            null);
19137                }
19138                if (res) {
19139                    pkgList.add(pkgName);
19140                } else {
19141                    Slog.e(TAG, "Failed to delete pkg from sdcard : " + pkgName);
19142                    failedList.add(args);
19143                }
19144            }
19145        }
19146
19147        // reader
19148        synchronized (mPackages) {
19149            // We didn't update the settings after removing each package;
19150            // write them now for all packages.
19151            mSettings.writeLPr();
19152        }
19153
19154        // We have to absolutely send UPDATED_MEDIA_STATUS only
19155        // after confirming that all the receivers processed the ordered
19156        // broadcast when packages get disabled, force a gc to clean things up.
19157        // and unload all the containers.
19158        if (pkgList.size() > 0) {
19159            sendResourcesChangedBroadcast(false, false, pkgList, uidArr,
19160                    new IIntentReceiver.Stub() {
19161                public void performReceive(Intent intent, int resultCode, String data,
19162                        Bundle extras, boolean ordered, boolean sticky,
19163                        int sendingUser) throws RemoteException {
19164                    Message msg = mHandler.obtainMessage(UPDATED_MEDIA_STATUS,
19165                            reportStatus ? 1 : 0, 1, keys);
19166                    mHandler.sendMessage(msg);
19167                }
19168            });
19169        } else {
19170            Message msg = mHandler.obtainMessage(UPDATED_MEDIA_STATUS, reportStatus ? 1 : 0, -1,
19171                    keys);
19172            mHandler.sendMessage(msg);
19173        }
19174    }
19175
19176    private void loadPrivatePackages(final VolumeInfo vol) {
19177        mHandler.post(new Runnable() {
19178            @Override
19179            public void run() {
19180                loadPrivatePackagesInner(vol);
19181            }
19182        });
19183    }
19184
19185    private void loadPrivatePackagesInner(VolumeInfo vol) {
19186        final String volumeUuid = vol.fsUuid;
19187        if (TextUtils.isEmpty(volumeUuid)) {
19188            Slog.e(TAG, "Loading internal storage is probably a mistake; ignoring");
19189            return;
19190        }
19191
19192        final ArrayList<PackageFreezer> freezers = new ArrayList<>();
19193        final ArrayList<ApplicationInfo> loaded = new ArrayList<>();
19194        final int parseFlags = mDefParseFlags | PackageParser.PARSE_EXTERNAL_STORAGE;
19195
19196        final VersionInfo ver;
19197        final List<PackageSetting> packages;
19198        synchronized (mPackages) {
19199            ver = mSettings.findOrCreateVersion(volumeUuid);
19200            packages = mSettings.getVolumePackagesLPr(volumeUuid);
19201        }
19202
19203        for (PackageSetting ps : packages) {
19204            freezers.add(freezePackage(ps.name, "loadPrivatePackagesInner"));
19205            synchronized (mInstallLock) {
19206                final PackageParser.Package pkg;
19207                try {
19208                    pkg = scanPackageTracedLI(ps.codePath, parseFlags, SCAN_INITIAL, 0, null);
19209                    loaded.add(pkg.applicationInfo);
19210
19211                } catch (PackageManagerException e) {
19212                    Slog.w(TAG, "Failed to scan " + ps.codePath + ": " + e.getMessage());
19213                }
19214
19215                if (!Build.FINGERPRINT.equals(ver.fingerprint)) {
19216                    clearAppDataLIF(ps.pkg, UserHandle.USER_ALL,
19217                            StorageManager.FLAG_STORAGE_DE | StorageManager.FLAG_STORAGE_CE
19218                                    | Installer.FLAG_CLEAR_CODE_CACHE_ONLY);
19219                }
19220            }
19221        }
19222
19223        // Reconcile app data for all started/unlocked users
19224        final StorageManager sm = mContext.getSystemService(StorageManager.class);
19225        final UserManager um = mContext.getSystemService(UserManager.class);
19226        UserManagerInternal umInternal = getUserManagerInternal();
19227        for (UserInfo user : um.getUsers()) {
19228            final int flags;
19229            if (umInternal.isUserUnlockingOrUnlocked(user.id)) {
19230                flags = StorageManager.FLAG_STORAGE_DE | StorageManager.FLAG_STORAGE_CE;
19231            } else if (umInternal.isUserRunning(user.id)) {
19232                flags = StorageManager.FLAG_STORAGE_DE;
19233            } else {
19234                continue;
19235            }
19236
19237            try {
19238                sm.prepareUserStorage(volumeUuid, user.id, user.serialNumber, flags);
19239                synchronized (mInstallLock) {
19240                    reconcileAppsDataLI(volumeUuid, user.id, flags);
19241                }
19242            } catch (IllegalStateException e) {
19243                // Device was probably ejected, and we'll process that event momentarily
19244                Slog.w(TAG, "Failed to prepare storage: " + e);
19245            }
19246        }
19247
19248        synchronized (mPackages) {
19249            int updateFlags = UPDATE_PERMISSIONS_ALL;
19250            if (ver.sdkVersion != mSdkVersion) {
19251                logCriticalInfo(Log.INFO, "Platform changed from " + ver.sdkVersion + " to "
19252                        + mSdkVersion + "; regranting permissions for " + volumeUuid);
19253                updateFlags |= UPDATE_PERMISSIONS_REPLACE_PKG | UPDATE_PERMISSIONS_REPLACE_ALL;
19254            }
19255            updatePermissionsLPw(null, null, volumeUuid, updateFlags);
19256
19257            // Yay, everything is now upgraded
19258            ver.forceCurrent();
19259
19260            mSettings.writeLPr();
19261        }
19262
19263        for (PackageFreezer freezer : freezers) {
19264            freezer.close();
19265        }
19266
19267        if (DEBUG_INSTALL) Slog.d(TAG, "Loaded packages " + loaded);
19268        sendResourcesChangedBroadcast(true, false, loaded, null);
19269    }
19270
19271    private void unloadPrivatePackages(final VolumeInfo vol) {
19272        mHandler.post(new Runnable() {
19273            @Override
19274            public void run() {
19275                unloadPrivatePackagesInner(vol);
19276            }
19277        });
19278    }
19279
19280    private void unloadPrivatePackagesInner(VolumeInfo vol) {
19281        final String volumeUuid = vol.fsUuid;
19282        if (TextUtils.isEmpty(volumeUuid)) {
19283            Slog.e(TAG, "Unloading internal storage is probably a mistake; ignoring");
19284            return;
19285        }
19286
19287        final ArrayList<ApplicationInfo> unloaded = new ArrayList<>();
19288        synchronized (mInstallLock) {
19289        synchronized (mPackages) {
19290            final List<PackageSetting> packages = mSettings.getVolumePackagesLPr(volumeUuid);
19291            for (PackageSetting ps : packages) {
19292                if (ps.pkg == null) continue;
19293
19294                final ApplicationInfo info = ps.pkg.applicationInfo;
19295                final int deleteFlags = PackageManager.DELETE_KEEP_DATA;
19296                final PackageRemovedInfo outInfo = new PackageRemovedInfo();
19297
19298                try (PackageFreezer freezer = freezePackageForDelete(ps.name, deleteFlags,
19299                        "unloadPrivatePackagesInner")) {
19300                    if (deletePackageLIF(ps.name, null, false, null, deleteFlags, outInfo,
19301                            false, null)) {
19302                        unloaded.add(info);
19303                    } else {
19304                        Slog.w(TAG, "Failed to unload " + ps.codePath);
19305                    }
19306                }
19307
19308                // Try very hard to release any references to this package
19309                // so we don't risk the system server being killed due to
19310                // open FDs
19311                AttributeCache.instance().removePackage(ps.name);
19312            }
19313
19314            mSettings.writeLPr();
19315        }
19316        }
19317
19318        if (DEBUG_INSTALL) Slog.d(TAG, "Unloaded packages " + unloaded);
19319        sendResourcesChangedBroadcast(false, false, unloaded, null);
19320
19321        // Try very hard to release any references to this path so we don't risk
19322        // the system server being killed due to open FDs
19323        ResourcesManager.getInstance().invalidatePath(vol.getPath().getAbsolutePath());
19324
19325        for (int i = 0; i < 3; i++) {
19326            System.gc();
19327            System.runFinalization();
19328        }
19329    }
19330
19331    /**
19332     * Prepare storage areas for given user on all mounted devices.
19333     */
19334    void prepareUserData(int userId, int userSerial, int flags) {
19335        synchronized (mInstallLock) {
19336            final StorageManager storage = mContext.getSystemService(StorageManager.class);
19337            for (VolumeInfo vol : storage.getWritablePrivateVolumes()) {
19338                final String volumeUuid = vol.getFsUuid();
19339                prepareUserDataLI(volumeUuid, userId, userSerial, flags, true);
19340            }
19341        }
19342    }
19343
19344    private void prepareUserDataLI(String volumeUuid, int userId, int userSerial, int flags,
19345            boolean allowRecover) {
19346        // Prepare storage and verify that serial numbers are consistent; if
19347        // there's a mismatch we need to destroy to avoid leaking data
19348        final StorageManager storage = mContext.getSystemService(StorageManager.class);
19349        try {
19350            storage.prepareUserStorage(volumeUuid, userId, userSerial, flags);
19351
19352            if ((flags & StorageManager.FLAG_STORAGE_DE) != 0 && !mOnlyCore) {
19353                UserManagerService.enforceSerialNumber(
19354                        Environment.getDataUserDeDirectory(volumeUuid, userId), userSerial);
19355                if (Objects.equals(volumeUuid, StorageManager.UUID_PRIVATE_INTERNAL)) {
19356                    UserManagerService.enforceSerialNumber(
19357                            Environment.getDataSystemDeDirectory(userId), userSerial);
19358                }
19359            }
19360            if ((flags & StorageManager.FLAG_STORAGE_CE) != 0 && !mOnlyCore) {
19361                UserManagerService.enforceSerialNumber(
19362                        Environment.getDataUserCeDirectory(volumeUuid, userId), userSerial);
19363                if (Objects.equals(volumeUuid, StorageManager.UUID_PRIVATE_INTERNAL)) {
19364                    UserManagerService.enforceSerialNumber(
19365                            Environment.getDataSystemCeDirectory(userId), userSerial);
19366                }
19367            }
19368
19369            synchronized (mInstallLock) {
19370                mInstaller.createUserData(volumeUuid, userId, userSerial, flags);
19371            }
19372        } catch (Exception e) {
19373            logCriticalInfo(Log.WARN, "Destroying user " + userId + " on volume " + volumeUuid
19374                    + " because we failed to prepare: " + e);
19375            destroyUserDataLI(volumeUuid, userId,
19376                    StorageManager.FLAG_STORAGE_DE | StorageManager.FLAG_STORAGE_CE);
19377
19378            if (allowRecover) {
19379                // Try one last time; if we fail again we're really in trouble
19380                prepareUserDataLI(volumeUuid, userId, userSerial, flags, false);
19381            }
19382        }
19383    }
19384
19385    /**
19386     * Destroy storage areas for given user on all mounted devices.
19387     */
19388    void destroyUserData(int userId, int flags) {
19389        synchronized (mInstallLock) {
19390            final StorageManager storage = mContext.getSystemService(StorageManager.class);
19391            for (VolumeInfo vol : storage.getWritablePrivateVolumes()) {
19392                final String volumeUuid = vol.getFsUuid();
19393                destroyUserDataLI(volumeUuid, userId, flags);
19394            }
19395        }
19396    }
19397
19398    private void destroyUserDataLI(String volumeUuid, int userId, int flags) {
19399        final StorageManager storage = mContext.getSystemService(StorageManager.class);
19400        try {
19401            // Clean up app data, profile data, and media data
19402            mInstaller.destroyUserData(volumeUuid, userId, flags);
19403
19404            // Clean up system data
19405            if (Objects.equals(volumeUuid, StorageManager.UUID_PRIVATE_INTERNAL)) {
19406                if ((flags & StorageManager.FLAG_STORAGE_DE) != 0) {
19407                    FileUtils.deleteContentsAndDir(Environment.getUserSystemDirectory(userId));
19408                    FileUtils.deleteContentsAndDir(Environment.getDataSystemDeDirectory(userId));
19409                }
19410                if ((flags & StorageManager.FLAG_STORAGE_CE) != 0) {
19411                    FileUtils.deleteContentsAndDir(Environment.getDataSystemCeDirectory(userId));
19412                }
19413            }
19414
19415            // Data with special labels is now gone, so finish the job
19416            storage.destroyUserStorage(volumeUuid, userId, flags);
19417
19418        } catch (Exception e) {
19419            logCriticalInfo(Log.WARN,
19420                    "Failed to destroy user " + userId + " on volume " + volumeUuid + ": " + e);
19421        }
19422    }
19423
19424    /**
19425     * Examine all users present on given mounted volume, and destroy data
19426     * belonging to users that are no longer valid, or whose user ID has been
19427     * recycled.
19428     */
19429    private void reconcileUsers(String volumeUuid) {
19430        final List<File> files = new ArrayList<>();
19431        Collections.addAll(files, FileUtils
19432                .listFilesOrEmpty(Environment.getDataUserDeDirectory(volumeUuid)));
19433        Collections.addAll(files, FileUtils
19434                .listFilesOrEmpty(Environment.getDataUserCeDirectory(volumeUuid)));
19435        Collections.addAll(files, FileUtils
19436                .listFilesOrEmpty(Environment.getDataSystemDeDirectory()));
19437        Collections.addAll(files, FileUtils
19438                .listFilesOrEmpty(Environment.getDataSystemCeDirectory()));
19439        for (File file : files) {
19440            if (!file.isDirectory()) continue;
19441
19442            final int userId;
19443            final UserInfo info;
19444            try {
19445                userId = Integer.parseInt(file.getName());
19446                info = sUserManager.getUserInfo(userId);
19447            } catch (NumberFormatException e) {
19448                Slog.w(TAG, "Invalid user directory " + file);
19449                continue;
19450            }
19451
19452            boolean destroyUser = false;
19453            if (info == null) {
19454                logCriticalInfo(Log.WARN, "Destroying user directory " + file
19455                        + " because no matching user was found");
19456                destroyUser = true;
19457            } else if (!mOnlyCore) {
19458                try {
19459                    UserManagerService.enforceSerialNumber(file, info.serialNumber);
19460                } catch (IOException e) {
19461                    logCriticalInfo(Log.WARN, "Destroying user directory " + file
19462                            + " because we failed to enforce serial number: " + e);
19463                    destroyUser = true;
19464                }
19465            }
19466
19467            if (destroyUser) {
19468                synchronized (mInstallLock) {
19469                    destroyUserDataLI(volumeUuid, userId,
19470                            StorageManager.FLAG_STORAGE_DE | StorageManager.FLAG_STORAGE_CE);
19471                }
19472            }
19473        }
19474    }
19475
19476    private void assertPackageKnown(String volumeUuid, String packageName)
19477            throws PackageManagerException {
19478        synchronized (mPackages) {
19479            final PackageSetting ps = mSettings.mPackages.get(packageName);
19480            if (ps == null) {
19481                throw new PackageManagerException("Package " + packageName + " is unknown");
19482            } else if (!TextUtils.equals(volumeUuid, ps.volumeUuid)) {
19483                throw new PackageManagerException(
19484                        "Package " + packageName + " found on unknown volume " + volumeUuid
19485                                + "; expected volume " + ps.volumeUuid);
19486            }
19487        }
19488    }
19489
19490    private void assertPackageKnownAndInstalled(String volumeUuid, String packageName, int userId)
19491            throws PackageManagerException {
19492        synchronized (mPackages) {
19493            final PackageSetting ps = mSettings.mPackages.get(packageName);
19494            if (ps == null) {
19495                throw new PackageManagerException("Package " + packageName + " is unknown");
19496            } else if (!TextUtils.equals(volumeUuid, ps.volumeUuid)) {
19497                throw new PackageManagerException(
19498                        "Package " + packageName + " found on unknown volume " + volumeUuid
19499                                + "; expected volume " + ps.volumeUuid);
19500            } else if (!ps.getInstalled(userId)) {
19501                throw new PackageManagerException(
19502                        "Package " + packageName + " not installed for user " + userId);
19503            }
19504        }
19505    }
19506
19507    /**
19508     * Examine all apps present on given mounted volume, and destroy apps that
19509     * aren't expected, either due to uninstallation or reinstallation on
19510     * another volume.
19511     */
19512    private void reconcileApps(String volumeUuid) {
19513        final File[] files = FileUtils
19514                .listFilesOrEmpty(Environment.getDataAppDirectory(volumeUuid));
19515        for (File file : files) {
19516            final boolean isPackage = (isApkFile(file) || file.isDirectory())
19517                    && !PackageInstallerService.isStageName(file.getName());
19518            if (!isPackage) {
19519                // Ignore entries which are not packages
19520                continue;
19521            }
19522
19523            try {
19524                final PackageLite pkg = PackageParser.parsePackageLite(file,
19525                        PackageParser.PARSE_MUST_BE_APK);
19526                assertPackageKnown(volumeUuid, pkg.packageName);
19527
19528            } catch (PackageParserException | PackageManagerException e) {
19529                logCriticalInfo(Log.WARN, "Destroying " + file + " due to: " + e);
19530                synchronized (mInstallLock) {
19531                    removeCodePathLI(file);
19532                }
19533            }
19534        }
19535    }
19536
19537    /**
19538     * Reconcile all app data for the given user.
19539     * <p>
19540     * Verifies that directories exist and that ownership and labeling is
19541     * correct for all installed apps on all mounted volumes.
19542     */
19543    void reconcileAppsData(int userId, int flags) {
19544        final StorageManager storage = mContext.getSystemService(StorageManager.class);
19545        for (VolumeInfo vol : storage.getWritablePrivateVolumes()) {
19546            final String volumeUuid = vol.getFsUuid();
19547            synchronized (mInstallLock) {
19548                reconcileAppsDataLI(volumeUuid, userId, flags);
19549            }
19550        }
19551    }
19552
19553    /**
19554     * Reconcile all app data on given mounted volume.
19555     * <p>
19556     * Destroys app data that isn't expected, either due to uninstallation or
19557     * reinstallation on another volume.
19558     * <p>
19559     * Verifies that directories exist and that ownership and labeling is
19560     * correct for all installed apps.
19561     */
19562    private void reconcileAppsDataLI(String volumeUuid, int userId, int flags) {
19563        Slog.v(TAG, "reconcileAppsData for " + volumeUuid + " u" + userId + " 0x"
19564                + Integer.toHexString(flags));
19565
19566        final File ceDir = Environment.getDataUserCeDirectory(volumeUuid, userId);
19567        final File deDir = Environment.getDataUserDeDirectory(volumeUuid, userId);
19568
19569        boolean restoreconNeeded = false;
19570
19571        // First look for stale data that doesn't belong, and check if things
19572        // have changed since we did our last restorecon
19573        if ((flags & StorageManager.FLAG_STORAGE_CE) != 0) {
19574            if (StorageManager.isFileEncryptedNativeOrEmulated()
19575                    && !StorageManager.isUserKeyUnlocked(userId)) {
19576                throw new RuntimeException(
19577                        "Yikes, someone asked us to reconcile CE storage while " + userId
19578                                + " was still locked; this would have caused massive data loss!");
19579            }
19580
19581            restoreconNeeded |= SELinuxMMAC.isRestoreconNeeded(ceDir);
19582
19583            final File[] files = FileUtils.listFilesOrEmpty(ceDir);
19584            for (File file : files) {
19585                final String packageName = file.getName();
19586                try {
19587                    assertPackageKnownAndInstalled(volumeUuid, packageName, userId);
19588                } catch (PackageManagerException e) {
19589                    logCriticalInfo(Log.WARN, "Destroying " + file + " due to: " + e);
19590                    try {
19591                        mInstaller.destroyAppData(volumeUuid, packageName, userId,
19592                                StorageManager.FLAG_STORAGE_CE, 0);
19593                    } catch (InstallerException e2) {
19594                        logCriticalInfo(Log.WARN, "Failed to destroy: " + e2);
19595                    }
19596                }
19597            }
19598        }
19599        if ((flags & StorageManager.FLAG_STORAGE_DE) != 0) {
19600            restoreconNeeded |= SELinuxMMAC.isRestoreconNeeded(deDir);
19601
19602            final File[] files = FileUtils.listFilesOrEmpty(deDir);
19603            for (File file : files) {
19604                final String packageName = file.getName();
19605                try {
19606                    assertPackageKnownAndInstalled(volumeUuid, packageName, userId);
19607                } catch (PackageManagerException e) {
19608                    logCriticalInfo(Log.WARN, "Destroying " + file + " due to: " + e);
19609                    try {
19610                        mInstaller.destroyAppData(volumeUuid, packageName, userId,
19611                                StorageManager.FLAG_STORAGE_DE, 0);
19612                    } catch (InstallerException e2) {
19613                        logCriticalInfo(Log.WARN, "Failed to destroy: " + e2);
19614                    }
19615                }
19616            }
19617        }
19618
19619        // Ensure that data directories are ready to roll for all packages
19620        // installed for this volume and user
19621        final List<PackageSetting> packages;
19622        synchronized (mPackages) {
19623            packages = mSettings.getVolumePackagesLPr(volumeUuid);
19624        }
19625        int preparedCount = 0;
19626        for (PackageSetting ps : packages) {
19627            final String packageName = ps.name;
19628            if (ps.pkg == null) {
19629                Slog.w(TAG, "Odd, missing scanned package " + packageName);
19630                // TODO: might be due to legacy ASEC apps; we should circle back
19631                // and reconcile again once they're scanned
19632                continue;
19633            }
19634
19635            if (ps.getInstalled(userId)) {
19636                prepareAppDataLIF(ps.pkg, userId, flags, restoreconNeeded);
19637
19638                if (maybeMigrateAppDataLIF(ps.pkg, userId)) {
19639                    // We may have just shuffled around app data directories, so
19640                    // prepare them one more time
19641                    prepareAppDataLIF(ps.pkg, userId, flags, restoreconNeeded);
19642                }
19643
19644                preparedCount++;
19645            }
19646        }
19647
19648        if (restoreconNeeded) {
19649            if ((flags & StorageManager.FLAG_STORAGE_CE) != 0) {
19650                SELinuxMMAC.setRestoreconDone(ceDir);
19651            }
19652            if ((flags & StorageManager.FLAG_STORAGE_DE) != 0) {
19653                SELinuxMMAC.setRestoreconDone(deDir);
19654            }
19655        }
19656
19657        Slog.v(TAG, "reconcileAppsData finished " + preparedCount
19658                + " packages; restoreconNeeded was " + restoreconNeeded);
19659    }
19660
19661    /**
19662     * Prepare app data for the given app just after it was installed or
19663     * upgraded. This method carefully only touches users that it's installed
19664     * for, and it forces a restorecon to handle any seinfo changes.
19665     * <p>
19666     * Verifies that directories exist and that ownership and labeling is
19667     * correct for all installed apps. If there is an ownership mismatch, it
19668     * will try recovering system apps by wiping data; third-party app data is
19669     * left intact.
19670     * <p>
19671     * <em>Note: To avoid a deadlock, do not call this method with {@code mPackages} lock held</em>
19672     */
19673    private void prepareAppDataAfterInstallLIF(PackageParser.Package pkg) {
19674        final PackageSetting ps;
19675        synchronized (mPackages) {
19676            ps = mSettings.mPackages.get(pkg.packageName);
19677            mSettings.writeKernelMappingLPr(ps);
19678        }
19679
19680        final UserManager um = mContext.getSystemService(UserManager.class);
19681        UserManagerInternal umInternal = getUserManagerInternal();
19682        for (UserInfo user : um.getUsers()) {
19683            final int flags;
19684            if (umInternal.isUserUnlockingOrUnlocked(user.id)) {
19685                flags = StorageManager.FLAG_STORAGE_DE | StorageManager.FLAG_STORAGE_CE;
19686            } else if (umInternal.isUserRunning(user.id)) {
19687                flags = StorageManager.FLAG_STORAGE_DE;
19688            } else {
19689                continue;
19690            }
19691
19692            if (ps.getInstalled(user.id)) {
19693                // Whenever an app changes, force a restorecon of its data
19694                // TODO: when user data is locked, mark that we're still dirty
19695                prepareAppDataLIF(pkg, user.id, flags, true);
19696            }
19697        }
19698    }
19699
19700    /**
19701     * Prepare app data for the given app.
19702     * <p>
19703     * Verifies that directories exist and that ownership and labeling is
19704     * correct for all installed apps. If there is an ownership mismatch, this
19705     * will try recovering system apps by wiping data; third-party app data is
19706     * left intact.
19707     */
19708    private void prepareAppDataLIF(PackageParser.Package pkg, int userId, int flags,
19709            boolean restoreconNeeded) {
19710        if (pkg == null) {
19711            Slog.wtf(TAG, "Package was null!", new Throwable());
19712            return;
19713        }
19714        prepareAppDataLeafLIF(pkg, userId, flags, restoreconNeeded);
19715        final int childCount = (pkg.childPackages != null) ? pkg.childPackages.size() : 0;
19716        for (int i = 0; i < childCount; i++) {
19717            prepareAppDataLeafLIF(pkg.childPackages.get(i), userId, flags, restoreconNeeded);
19718        }
19719    }
19720
19721    private void prepareAppDataLeafLIF(PackageParser.Package pkg, int userId, int flags,
19722            boolean restoreconNeeded) {
19723        if (DEBUG_APP_DATA) {
19724            Slog.v(TAG, "prepareAppData for " + pkg.packageName + " u" + userId + " 0x"
19725                    + Integer.toHexString(flags) + (restoreconNeeded ? " restoreconNeeded" : ""));
19726        }
19727
19728        final String volumeUuid = pkg.volumeUuid;
19729        final String packageName = pkg.packageName;
19730        final ApplicationInfo app = pkg.applicationInfo;
19731        final int appId = UserHandle.getAppId(app.uid);
19732
19733        Preconditions.checkNotNull(app.seinfo);
19734
19735        try {
19736            mInstaller.createAppData(volumeUuid, packageName, userId, flags,
19737                    appId, app.seinfo, app.targetSdkVersion);
19738        } catch (InstallerException e) {
19739            if (app.isSystemApp()) {
19740                logCriticalInfo(Log.ERROR, "Failed to create app data for " + packageName
19741                        + ", but trying to recover: " + e);
19742                destroyAppDataLeafLIF(pkg, userId, flags);
19743                try {
19744                    mInstaller.createAppData(volumeUuid, packageName, userId, flags,
19745                            appId, app.seinfo, app.targetSdkVersion);
19746                    logCriticalInfo(Log.DEBUG, "Recovery succeeded!");
19747                } catch (InstallerException e2) {
19748                    logCriticalInfo(Log.DEBUG, "Recovery failed!");
19749                }
19750            } else {
19751                Slog.e(TAG, "Failed to create app data for " + packageName + ": " + e);
19752            }
19753        }
19754
19755        if (restoreconNeeded) {
19756            try {
19757                mInstaller.restoreconAppData(volumeUuid, packageName, userId, flags, appId,
19758                        app.seinfo);
19759            } catch (InstallerException e) {
19760                Slog.e(TAG, "Failed to restorecon for " + packageName + ": " + e);
19761            }
19762        }
19763
19764        if ((flags & StorageManager.FLAG_STORAGE_CE) != 0) {
19765            try {
19766                // CE storage is unlocked right now, so read out the inode and
19767                // remember for use later when it's locked
19768                // TODO: mark this structure as dirty so we persist it!
19769                final long ceDataInode = mInstaller.getAppDataInode(volumeUuid, packageName, userId,
19770                        StorageManager.FLAG_STORAGE_CE);
19771                synchronized (mPackages) {
19772                    final PackageSetting ps = mSettings.mPackages.get(packageName);
19773                    if (ps != null) {
19774                        ps.setCeDataInode(ceDataInode, userId);
19775                    }
19776                }
19777            } catch (InstallerException e) {
19778                Slog.e(TAG, "Failed to find inode for " + packageName + ": " + e);
19779            }
19780        }
19781
19782        prepareAppDataContentsLeafLIF(pkg, userId, flags);
19783    }
19784
19785    private void prepareAppDataContentsLIF(PackageParser.Package pkg, int userId, int flags) {
19786        if (pkg == null) {
19787            Slog.wtf(TAG, "Package was null!", new Throwable());
19788            return;
19789        }
19790        prepareAppDataContentsLeafLIF(pkg, userId, flags);
19791        final int childCount = (pkg.childPackages != null) ? pkg.childPackages.size() : 0;
19792        for (int i = 0; i < childCount; i++) {
19793            prepareAppDataContentsLeafLIF(pkg.childPackages.get(i), userId, flags);
19794        }
19795    }
19796
19797    private void prepareAppDataContentsLeafLIF(PackageParser.Package pkg, int userId, int flags) {
19798        final String volumeUuid = pkg.volumeUuid;
19799        final String packageName = pkg.packageName;
19800        final ApplicationInfo app = pkg.applicationInfo;
19801
19802        if ((flags & StorageManager.FLAG_STORAGE_CE) != 0) {
19803            // Create a native library symlink only if we have native libraries
19804            // and if the native libraries are 32 bit libraries. We do not provide
19805            // this symlink for 64 bit libraries.
19806            if (app.primaryCpuAbi != null && !VMRuntime.is64BitAbi(app.primaryCpuAbi)) {
19807                final String nativeLibPath = app.nativeLibraryDir;
19808                try {
19809                    mInstaller.linkNativeLibraryDirectory(volumeUuid, packageName,
19810                            nativeLibPath, userId);
19811                } catch (InstallerException e) {
19812                    Slog.e(TAG, "Failed to link native for " + packageName + ": " + e);
19813                }
19814            }
19815        }
19816    }
19817
19818    /**
19819     * For system apps on non-FBE devices, this method migrates any existing
19820     * CE/DE data to match the {@code defaultToDeviceProtectedStorage} flag
19821     * requested by the app.
19822     */
19823    private boolean maybeMigrateAppDataLIF(PackageParser.Package pkg, int userId) {
19824        if (pkg.isSystemApp() && !StorageManager.isFileEncryptedNativeOrEmulated()
19825                && PackageManager.APPLY_DEFAULT_TO_DEVICE_PROTECTED_STORAGE) {
19826            final int storageTarget = pkg.applicationInfo.isDefaultToDeviceProtectedStorage()
19827                    ? StorageManager.FLAG_STORAGE_DE : StorageManager.FLAG_STORAGE_CE;
19828            try {
19829                mInstaller.migrateAppData(pkg.volumeUuid, pkg.packageName, userId,
19830                        storageTarget);
19831            } catch (InstallerException e) {
19832                logCriticalInfo(Log.WARN,
19833                        "Failed to migrate " + pkg.packageName + ": " + e.getMessage());
19834            }
19835            return true;
19836        } else {
19837            return false;
19838        }
19839    }
19840
19841    public PackageFreezer freezePackage(String packageName, String killReason) {
19842        return new PackageFreezer(packageName, killReason);
19843    }
19844
19845    public PackageFreezer freezePackageForInstall(String packageName, int installFlags,
19846            String killReason) {
19847        if ((installFlags & PackageManager.INSTALL_DONT_KILL_APP) != 0) {
19848            return new PackageFreezer();
19849        } else {
19850            return freezePackage(packageName, killReason);
19851        }
19852    }
19853
19854    public PackageFreezer freezePackageForDelete(String packageName, int deleteFlags,
19855            String killReason) {
19856        if ((deleteFlags & PackageManager.DELETE_DONT_KILL_APP) != 0) {
19857            return new PackageFreezer();
19858        } else {
19859            return freezePackage(packageName, killReason);
19860        }
19861    }
19862
19863    /**
19864     * Class that freezes and kills the given package upon creation, and
19865     * unfreezes it upon closing. This is typically used when doing surgery on
19866     * app code/data to prevent the app from running while you're working.
19867     */
19868    private class PackageFreezer implements AutoCloseable {
19869        private final String mPackageName;
19870        private final PackageFreezer[] mChildren;
19871
19872        private final boolean mWeFroze;
19873
19874        private final AtomicBoolean mClosed = new AtomicBoolean();
19875        private final CloseGuard mCloseGuard = CloseGuard.get();
19876
19877        /**
19878         * Create and return a stub freezer that doesn't actually do anything,
19879         * typically used when someone requested
19880         * {@link PackageManager#INSTALL_DONT_KILL_APP} or
19881         * {@link PackageManager#DELETE_DONT_KILL_APP}.
19882         */
19883        public PackageFreezer() {
19884            mPackageName = null;
19885            mChildren = null;
19886            mWeFroze = false;
19887            mCloseGuard.open("close");
19888        }
19889
19890        public PackageFreezer(String packageName, String killReason) {
19891            synchronized (mPackages) {
19892                mPackageName = packageName;
19893                mWeFroze = mFrozenPackages.add(mPackageName);
19894
19895                final PackageSetting ps = mSettings.mPackages.get(mPackageName);
19896                if (ps != null) {
19897                    killApplication(ps.name, ps.appId, killReason);
19898                }
19899
19900                final PackageParser.Package p = mPackages.get(packageName);
19901                if (p != null && p.childPackages != null) {
19902                    final int N = p.childPackages.size();
19903                    mChildren = new PackageFreezer[N];
19904                    for (int i = 0; i < N; i++) {
19905                        mChildren[i] = new PackageFreezer(p.childPackages.get(i).packageName,
19906                                killReason);
19907                    }
19908                } else {
19909                    mChildren = null;
19910                }
19911            }
19912            mCloseGuard.open("close");
19913        }
19914
19915        @Override
19916        protected void finalize() throws Throwable {
19917            try {
19918                mCloseGuard.warnIfOpen();
19919                close();
19920            } finally {
19921                super.finalize();
19922            }
19923        }
19924
19925        @Override
19926        public void close() {
19927            mCloseGuard.close();
19928            if (mClosed.compareAndSet(false, true)) {
19929                synchronized (mPackages) {
19930                    if (mWeFroze) {
19931                        mFrozenPackages.remove(mPackageName);
19932                    }
19933
19934                    if (mChildren != null) {
19935                        for (PackageFreezer freezer : mChildren) {
19936                            freezer.close();
19937                        }
19938                    }
19939                }
19940            }
19941        }
19942    }
19943
19944    /**
19945     * Verify that given package is currently frozen.
19946     */
19947    private void checkPackageFrozen(String packageName) {
19948        synchronized (mPackages) {
19949            if (!mFrozenPackages.contains(packageName)) {
19950                Slog.wtf(TAG, "Expected " + packageName + " to be frozen!", new Throwable());
19951            }
19952        }
19953    }
19954
19955    @Override
19956    public int movePackage(final String packageName, final String volumeUuid) {
19957        mContext.enforceCallingOrSelfPermission(android.Manifest.permission.MOVE_PACKAGE, null);
19958
19959        final UserHandle user = new UserHandle(UserHandle.getCallingUserId());
19960        final int moveId = mNextMoveId.getAndIncrement();
19961        mHandler.post(new Runnable() {
19962            @Override
19963            public void run() {
19964                try {
19965                    movePackageInternal(packageName, volumeUuid, moveId, user);
19966                } catch (PackageManagerException e) {
19967                    Slog.w(TAG, "Failed to move " + packageName, e);
19968                    mMoveCallbacks.notifyStatusChanged(moveId,
19969                            PackageManager.MOVE_FAILED_INTERNAL_ERROR);
19970                }
19971            }
19972        });
19973        return moveId;
19974    }
19975
19976    private void movePackageInternal(final String packageName, final String volumeUuid,
19977            final int moveId, UserHandle user) throws PackageManagerException {
19978        final StorageManager storage = mContext.getSystemService(StorageManager.class);
19979        final PackageManager pm = mContext.getPackageManager();
19980
19981        final boolean currentAsec;
19982        final String currentVolumeUuid;
19983        final File codeFile;
19984        final String installerPackageName;
19985        final String packageAbiOverride;
19986        final int appId;
19987        final String seinfo;
19988        final String label;
19989        final int targetSdkVersion;
19990        final PackageFreezer freezer;
19991        final int[] installedUserIds;
19992
19993        // reader
19994        synchronized (mPackages) {
19995            final PackageParser.Package pkg = mPackages.get(packageName);
19996            final PackageSetting ps = mSettings.mPackages.get(packageName);
19997            if (pkg == null || ps == null) {
19998                throw new PackageManagerException(MOVE_FAILED_DOESNT_EXIST, "Missing package");
19999            }
20000
20001            if (pkg.applicationInfo.isSystemApp()) {
20002                throw new PackageManagerException(MOVE_FAILED_SYSTEM_PACKAGE,
20003                        "Cannot move system application");
20004            }
20005
20006            if (pkg.applicationInfo.isExternalAsec()) {
20007                currentAsec = true;
20008                currentVolumeUuid = StorageManager.UUID_PRIMARY_PHYSICAL;
20009            } else if (pkg.applicationInfo.isForwardLocked()) {
20010                currentAsec = true;
20011                currentVolumeUuid = "forward_locked";
20012            } else {
20013                currentAsec = false;
20014                currentVolumeUuid = ps.volumeUuid;
20015
20016                final File probe = new File(pkg.codePath);
20017                final File probeOat = new File(probe, "oat");
20018                if (!probe.isDirectory() || !probeOat.isDirectory()) {
20019                    throw new PackageManagerException(MOVE_FAILED_INTERNAL_ERROR,
20020                            "Move only supported for modern cluster style installs");
20021                }
20022            }
20023
20024            if (Objects.equals(currentVolumeUuid, volumeUuid)) {
20025                throw new PackageManagerException(MOVE_FAILED_INTERNAL_ERROR,
20026                        "Package already moved to " + volumeUuid);
20027            }
20028            if (pkg.applicationInfo.isInternal() && isPackageDeviceAdminOnAnyUser(packageName)) {
20029                throw new PackageManagerException(MOVE_FAILED_DEVICE_ADMIN,
20030                        "Device admin cannot be moved");
20031            }
20032
20033            if (mFrozenPackages.contains(packageName)) {
20034                throw new PackageManagerException(MOVE_FAILED_OPERATION_PENDING,
20035                        "Failed to move already frozen package");
20036            }
20037
20038            codeFile = new File(pkg.codePath);
20039            installerPackageName = ps.installerPackageName;
20040            packageAbiOverride = ps.cpuAbiOverrideString;
20041            appId = UserHandle.getAppId(pkg.applicationInfo.uid);
20042            seinfo = pkg.applicationInfo.seinfo;
20043            label = String.valueOf(pm.getApplicationLabel(pkg.applicationInfo));
20044            targetSdkVersion = pkg.applicationInfo.targetSdkVersion;
20045            freezer = new PackageFreezer(packageName, "movePackageInternal");
20046            installedUserIds = ps.queryInstalledUsers(sUserManager.getUserIds(), true);
20047        }
20048
20049        final Bundle extras = new Bundle();
20050        extras.putString(Intent.EXTRA_PACKAGE_NAME, packageName);
20051        extras.putString(Intent.EXTRA_TITLE, label);
20052        mMoveCallbacks.notifyCreated(moveId, extras);
20053
20054        int installFlags;
20055        final boolean moveCompleteApp;
20056        final File measurePath;
20057
20058        if (Objects.equals(StorageManager.UUID_PRIVATE_INTERNAL, volumeUuid)) {
20059            installFlags = INSTALL_INTERNAL;
20060            moveCompleteApp = !currentAsec;
20061            measurePath = Environment.getDataAppDirectory(volumeUuid);
20062        } else if (Objects.equals(StorageManager.UUID_PRIMARY_PHYSICAL, volumeUuid)) {
20063            installFlags = INSTALL_EXTERNAL;
20064            moveCompleteApp = false;
20065            measurePath = storage.getPrimaryPhysicalVolume().getPath();
20066        } else {
20067            final VolumeInfo volume = storage.findVolumeByUuid(volumeUuid);
20068            if (volume == null || volume.getType() != VolumeInfo.TYPE_PRIVATE
20069                    || !volume.isMountedWritable()) {
20070                freezer.close();
20071                throw new PackageManagerException(MOVE_FAILED_INTERNAL_ERROR,
20072                        "Move location not mounted private volume");
20073            }
20074
20075            Preconditions.checkState(!currentAsec);
20076
20077            installFlags = INSTALL_INTERNAL;
20078            moveCompleteApp = true;
20079            measurePath = Environment.getDataAppDirectory(volumeUuid);
20080        }
20081
20082        final PackageStats stats = new PackageStats(null, -1);
20083        synchronized (mInstaller) {
20084            for (int userId : installedUserIds) {
20085                if (!getPackageSizeInfoLI(packageName, userId, stats)) {
20086                    freezer.close();
20087                    throw new PackageManagerException(MOVE_FAILED_INTERNAL_ERROR,
20088                            "Failed to measure package size");
20089                }
20090            }
20091        }
20092
20093        if (DEBUG_INSTALL) Slog.d(TAG, "Measured code size " + stats.codeSize + ", data size "
20094                + stats.dataSize);
20095
20096        final long startFreeBytes = measurePath.getFreeSpace();
20097        final long sizeBytes;
20098        if (moveCompleteApp) {
20099            sizeBytes = stats.codeSize + stats.dataSize;
20100        } else {
20101            sizeBytes = stats.codeSize;
20102        }
20103
20104        if (sizeBytes > storage.getStorageBytesUntilLow(measurePath)) {
20105            freezer.close();
20106            throw new PackageManagerException(MOVE_FAILED_INTERNAL_ERROR,
20107                    "Not enough free space to move");
20108        }
20109
20110        mMoveCallbacks.notifyStatusChanged(moveId, 10);
20111
20112        final CountDownLatch installedLatch = new CountDownLatch(1);
20113        final IPackageInstallObserver2 installObserver = new IPackageInstallObserver2.Stub() {
20114            @Override
20115            public void onUserActionRequired(Intent intent) throws RemoteException {
20116                throw new IllegalStateException();
20117            }
20118
20119            @Override
20120            public void onPackageInstalled(String basePackageName, int returnCode, String msg,
20121                    Bundle extras) throws RemoteException {
20122                if (DEBUG_INSTALL) Slog.d(TAG, "Install result for move: "
20123                        + PackageManager.installStatusToString(returnCode, msg));
20124
20125                installedLatch.countDown();
20126                freezer.close();
20127
20128                final int status = PackageManager.installStatusToPublicStatus(returnCode);
20129                switch (status) {
20130                    case PackageInstaller.STATUS_SUCCESS:
20131                        mMoveCallbacks.notifyStatusChanged(moveId,
20132                                PackageManager.MOVE_SUCCEEDED);
20133                        break;
20134                    case PackageInstaller.STATUS_FAILURE_STORAGE:
20135                        mMoveCallbacks.notifyStatusChanged(moveId,
20136                                PackageManager.MOVE_FAILED_INSUFFICIENT_STORAGE);
20137                        break;
20138                    default:
20139                        mMoveCallbacks.notifyStatusChanged(moveId,
20140                                PackageManager.MOVE_FAILED_INTERNAL_ERROR);
20141                        break;
20142                }
20143            }
20144        };
20145
20146        final MoveInfo move;
20147        if (moveCompleteApp) {
20148            // Kick off a thread to report progress estimates
20149            new Thread() {
20150                @Override
20151                public void run() {
20152                    while (true) {
20153                        try {
20154                            if (installedLatch.await(1, TimeUnit.SECONDS)) {
20155                                break;
20156                            }
20157                        } catch (InterruptedException ignored) {
20158                        }
20159
20160                        final long deltaFreeBytes = startFreeBytes - measurePath.getFreeSpace();
20161                        final int progress = 10 + (int) MathUtils.constrain(
20162                                ((deltaFreeBytes * 80) / sizeBytes), 0, 80);
20163                        mMoveCallbacks.notifyStatusChanged(moveId, progress);
20164                    }
20165                }
20166            }.start();
20167
20168            final String dataAppName = codeFile.getName();
20169            move = new MoveInfo(moveId, currentVolumeUuid, volumeUuid, packageName,
20170                    dataAppName, appId, seinfo, targetSdkVersion);
20171        } else {
20172            move = null;
20173        }
20174
20175        installFlags |= PackageManager.INSTALL_REPLACE_EXISTING;
20176
20177        final Message msg = mHandler.obtainMessage(INIT_COPY);
20178        final OriginInfo origin = OriginInfo.fromExistingFile(codeFile);
20179        final InstallParams params = new InstallParams(origin, move, installObserver, installFlags,
20180                installerPackageName, volumeUuid, null /*verificationInfo*/, user,
20181                packageAbiOverride, null /*grantedPermissions*/, null /*certificates*/);
20182        params.setTraceMethod("movePackage").setTraceCookie(System.identityHashCode(params));
20183        msg.obj = params;
20184
20185        Trace.asyncTraceBegin(TRACE_TAG_PACKAGE_MANAGER, "movePackage",
20186                System.identityHashCode(msg.obj));
20187        Trace.asyncTraceBegin(TRACE_TAG_PACKAGE_MANAGER, "queueInstall",
20188                System.identityHashCode(msg.obj));
20189
20190        mHandler.sendMessage(msg);
20191    }
20192
20193    @Override
20194    public int movePrimaryStorage(String volumeUuid) throws RemoteException {
20195        mContext.enforceCallingOrSelfPermission(android.Manifest.permission.MOVE_PACKAGE, null);
20196
20197        final int realMoveId = mNextMoveId.getAndIncrement();
20198        final Bundle extras = new Bundle();
20199        extras.putString(VolumeRecord.EXTRA_FS_UUID, volumeUuid);
20200        mMoveCallbacks.notifyCreated(realMoveId, extras);
20201
20202        final IPackageMoveObserver callback = new IPackageMoveObserver.Stub() {
20203            @Override
20204            public void onCreated(int moveId, Bundle extras) {
20205                // Ignored
20206            }
20207
20208            @Override
20209            public void onStatusChanged(int moveId, int status, long estMillis) {
20210                mMoveCallbacks.notifyStatusChanged(realMoveId, status, estMillis);
20211            }
20212        };
20213
20214        final StorageManager storage = mContext.getSystemService(StorageManager.class);
20215        storage.setPrimaryStorageUuid(volumeUuid, callback);
20216        return realMoveId;
20217    }
20218
20219    @Override
20220    public int getMoveStatus(int moveId) {
20221        mContext.enforceCallingOrSelfPermission(
20222                android.Manifest.permission.MOUNT_UNMOUNT_FILESYSTEMS, null);
20223        return mMoveCallbacks.mLastStatus.get(moveId);
20224    }
20225
20226    @Override
20227    public void registerMoveCallback(IPackageMoveObserver callback) {
20228        mContext.enforceCallingOrSelfPermission(
20229                android.Manifest.permission.MOUNT_UNMOUNT_FILESYSTEMS, null);
20230        mMoveCallbacks.register(callback);
20231    }
20232
20233    @Override
20234    public void unregisterMoveCallback(IPackageMoveObserver callback) {
20235        mContext.enforceCallingOrSelfPermission(
20236                android.Manifest.permission.MOUNT_UNMOUNT_FILESYSTEMS, null);
20237        mMoveCallbacks.unregister(callback);
20238    }
20239
20240    @Override
20241    public boolean setInstallLocation(int loc) {
20242        mContext.enforceCallingOrSelfPermission(android.Manifest.permission.WRITE_SECURE_SETTINGS,
20243                null);
20244        if (getInstallLocation() == loc) {
20245            return true;
20246        }
20247        if (loc == PackageHelper.APP_INSTALL_AUTO || loc == PackageHelper.APP_INSTALL_INTERNAL
20248                || loc == PackageHelper.APP_INSTALL_EXTERNAL) {
20249            android.provider.Settings.Global.putInt(mContext.getContentResolver(),
20250                    android.provider.Settings.Global.DEFAULT_INSTALL_LOCATION, loc);
20251            return true;
20252        }
20253        return false;
20254   }
20255
20256    @Override
20257    public int getInstallLocation() {
20258        return android.provider.Settings.Global.getInt(mContext.getContentResolver(),
20259                android.provider.Settings.Global.DEFAULT_INSTALL_LOCATION,
20260                PackageHelper.APP_INSTALL_AUTO);
20261    }
20262
20263    /** Called by UserManagerService */
20264    void cleanUpUser(UserManagerService userManager, int userHandle) {
20265        synchronized (mPackages) {
20266            mDirtyUsers.remove(userHandle);
20267            mUserNeedsBadging.delete(userHandle);
20268            mSettings.removeUserLPw(userHandle);
20269            mPendingBroadcasts.remove(userHandle);
20270            mEphemeralApplicationRegistry.onUserRemovedLPw(userHandle);
20271            removeUnusedPackagesLPw(userManager, userHandle);
20272        }
20273    }
20274
20275    /**
20276     * We're removing userHandle and would like to remove any downloaded packages
20277     * that are no longer in use by any other user.
20278     * @param userHandle the user being removed
20279     */
20280    private void removeUnusedPackagesLPw(UserManagerService userManager, final int userHandle) {
20281        final boolean DEBUG_CLEAN_APKS = false;
20282        int [] users = userManager.getUserIds();
20283        Iterator<PackageSetting> psit = mSettings.mPackages.values().iterator();
20284        while (psit.hasNext()) {
20285            PackageSetting ps = psit.next();
20286            if (ps.pkg == null) {
20287                continue;
20288            }
20289            final String packageName = ps.pkg.packageName;
20290            // Skip over if system app
20291            if ((ps.pkgFlags & ApplicationInfo.FLAG_SYSTEM) != 0) {
20292                continue;
20293            }
20294            if (DEBUG_CLEAN_APKS) {
20295                Slog.i(TAG, "Checking package " + packageName);
20296            }
20297            boolean keep = shouldKeepUninstalledPackageLPr(packageName);
20298            if (keep) {
20299                if (DEBUG_CLEAN_APKS) {
20300                    Slog.i(TAG, "  Keeping package " + packageName + " - requested by DO");
20301                }
20302            } else {
20303                for (int i = 0; i < users.length; i++) {
20304                    if (users[i] != userHandle && ps.getInstalled(users[i])) {
20305                        keep = true;
20306                        if (DEBUG_CLEAN_APKS) {
20307                            Slog.i(TAG, "  Keeping package " + packageName + " for user "
20308                                    + users[i]);
20309                        }
20310                        break;
20311                    }
20312                }
20313            }
20314            if (!keep) {
20315                if (DEBUG_CLEAN_APKS) {
20316                    Slog.i(TAG, "  Removing package " + packageName);
20317                }
20318                mHandler.post(new Runnable() {
20319                    public void run() {
20320                        deletePackageX(packageName, userHandle, 0);
20321                    } //end run
20322                });
20323            }
20324        }
20325    }
20326
20327    /** Called by UserManagerService */
20328    void createNewUser(int userId) {
20329        synchronized (mInstallLock) {
20330            mSettings.createNewUserLI(this, mInstaller, userId);
20331        }
20332        synchronized (mPackages) {
20333            scheduleWritePackageRestrictionsLocked(userId);
20334            scheduleWritePackageListLocked(userId);
20335            applyFactoryDefaultBrowserLPw(userId);
20336            primeDomainVerificationsLPw(userId);
20337        }
20338    }
20339
20340    void onBeforeUserStartUninitialized(final int userId) {
20341        synchronized (mPackages) {
20342            if (mSettings.areDefaultRuntimePermissionsGrantedLPr(userId)) {
20343                return;
20344            }
20345        }
20346        mDefaultPermissionPolicy.grantDefaultPermissions(userId);
20347        // If permission review for legacy apps is required, we represent
20348        // dagerous permissions for such apps as always granted runtime
20349        // permissions to keep per user flag state whether review is needed.
20350        // Hence, if a new user is added we have to propagate dangerous
20351        // permission grants for these legacy apps.
20352        if (Build.PERMISSIONS_REVIEW_REQUIRED) {
20353            updatePermissionsLPw(null, null, UPDATE_PERMISSIONS_ALL
20354                    | UPDATE_PERMISSIONS_REPLACE_ALL);
20355        }
20356    }
20357
20358    @Override
20359    public VerifierDeviceIdentity getVerifierDeviceIdentity() throws RemoteException {
20360        mContext.enforceCallingOrSelfPermission(
20361                android.Manifest.permission.PACKAGE_VERIFICATION_AGENT,
20362                "Only package verification agents can read the verifier device identity");
20363
20364        synchronized (mPackages) {
20365            return mSettings.getVerifierDeviceIdentityLPw();
20366        }
20367    }
20368
20369    @Override
20370    public void setPermissionEnforced(String permission, boolean enforced) {
20371        // TODO: Now that we no longer change GID for storage, this should to away.
20372        mContext.enforceCallingOrSelfPermission(Manifest.permission.GRANT_RUNTIME_PERMISSIONS,
20373                "setPermissionEnforced");
20374        if (READ_EXTERNAL_STORAGE.equals(permission)) {
20375            synchronized (mPackages) {
20376                if (mSettings.mReadExternalStorageEnforced == null
20377                        || mSettings.mReadExternalStorageEnforced != enforced) {
20378                    mSettings.mReadExternalStorageEnforced = enforced;
20379                    mSettings.writeLPr();
20380                }
20381            }
20382            // kill any non-foreground processes so we restart them and
20383            // grant/revoke the GID.
20384            final IActivityManager am = ActivityManagerNative.getDefault();
20385            if (am != null) {
20386                final long token = Binder.clearCallingIdentity();
20387                try {
20388                    am.killProcessesBelowForeground("setPermissionEnforcement");
20389                } catch (RemoteException e) {
20390                } finally {
20391                    Binder.restoreCallingIdentity(token);
20392                }
20393            }
20394        } else {
20395            throw new IllegalArgumentException("No selective enforcement for " + permission);
20396        }
20397    }
20398
20399    @Override
20400    @Deprecated
20401    public boolean isPermissionEnforced(String permission) {
20402        return true;
20403    }
20404
20405    @Override
20406    public boolean isStorageLow() {
20407        final long token = Binder.clearCallingIdentity();
20408        try {
20409            final DeviceStorageMonitorInternal
20410                    dsm = LocalServices.getService(DeviceStorageMonitorInternal.class);
20411            if (dsm != null) {
20412                return dsm.isMemoryLow();
20413            } else {
20414                return false;
20415            }
20416        } finally {
20417            Binder.restoreCallingIdentity(token);
20418        }
20419    }
20420
20421    @Override
20422    public IPackageInstaller getPackageInstaller() {
20423        return mInstallerService;
20424    }
20425
20426    private boolean userNeedsBadging(int userId) {
20427        int index = mUserNeedsBadging.indexOfKey(userId);
20428        if (index < 0) {
20429            final UserInfo userInfo;
20430            final long token = Binder.clearCallingIdentity();
20431            try {
20432                userInfo = sUserManager.getUserInfo(userId);
20433            } finally {
20434                Binder.restoreCallingIdentity(token);
20435            }
20436            final boolean b;
20437            if (userInfo != null && userInfo.isManagedProfile()) {
20438                b = true;
20439            } else {
20440                b = false;
20441            }
20442            mUserNeedsBadging.put(userId, b);
20443            return b;
20444        }
20445        return mUserNeedsBadging.valueAt(index);
20446    }
20447
20448    @Override
20449    public KeySet getKeySetByAlias(String packageName, String alias) {
20450        if (packageName == null || alias == null) {
20451            return null;
20452        }
20453        synchronized(mPackages) {
20454            final PackageParser.Package pkg = mPackages.get(packageName);
20455            if (pkg == null) {
20456                Slog.w(TAG, "KeySet requested for unknown package: " + packageName);
20457                throw new IllegalArgumentException("Unknown package: " + packageName);
20458            }
20459            KeySetManagerService ksms = mSettings.mKeySetManagerService;
20460            return new KeySet(ksms.getKeySetByAliasAndPackageNameLPr(packageName, alias));
20461        }
20462    }
20463
20464    @Override
20465    public KeySet getSigningKeySet(String packageName) {
20466        if (packageName == null) {
20467            return null;
20468        }
20469        synchronized(mPackages) {
20470            final PackageParser.Package pkg = mPackages.get(packageName);
20471            if (pkg == null) {
20472                Slog.w(TAG, "KeySet requested for unknown package: " + packageName);
20473                throw new IllegalArgumentException("Unknown package: " + packageName);
20474            }
20475            if (pkg.applicationInfo.uid != Binder.getCallingUid()
20476                    && Process.SYSTEM_UID != Binder.getCallingUid()) {
20477                throw new SecurityException("May not access signing KeySet of other apps.");
20478            }
20479            KeySetManagerService ksms = mSettings.mKeySetManagerService;
20480            return new KeySet(ksms.getSigningKeySetByPackageNameLPr(packageName));
20481        }
20482    }
20483
20484    @Override
20485    public boolean isPackageSignedByKeySet(String packageName, KeySet ks) {
20486        if (packageName == null || ks == null) {
20487            return false;
20488        }
20489        synchronized(mPackages) {
20490            final PackageParser.Package pkg = mPackages.get(packageName);
20491            if (pkg == null) {
20492                Slog.w(TAG, "KeySet requested for unknown package: " + packageName);
20493                throw new IllegalArgumentException("Unknown package: " + packageName);
20494            }
20495            IBinder ksh = ks.getToken();
20496            if (ksh instanceof KeySetHandle) {
20497                KeySetManagerService ksms = mSettings.mKeySetManagerService;
20498                return ksms.packageIsSignedByLPr(packageName, (KeySetHandle) ksh);
20499            }
20500            return false;
20501        }
20502    }
20503
20504    @Override
20505    public boolean isPackageSignedByKeySetExactly(String packageName, KeySet ks) {
20506        if (packageName == null || ks == null) {
20507            return false;
20508        }
20509        synchronized(mPackages) {
20510            final PackageParser.Package pkg = mPackages.get(packageName);
20511            if (pkg == null) {
20512                Slog.w(TAG, "KeySet requested for unknown package: " + packageName);
20513                throw new IllegalArgumentException("Unknown package: " + packageName);
20514            }
20515            IBinder ksh = ks.getToken();
20516            if (ksh instanceof KeySetHandle) {
20517                KeySetManagerService ksms = mSettings.mKeySetManagerService;
20518                return ksms.packageIsSignedByExactlyLPr(packageName, (KeySetHandle) ksh);
20519            }
20520            return false;
20521        }
20522    }
20523
20524    private void deletePackageIfUnusedLPr(final String packageName) {
20525        PackageSetting ps = mSettings.mPackages.get(packageName);
20526        if (ps == null) {
20527            return;
20528        }
20529        if (!ps.isAnyInstalled(sUserManager.getUserIds())) {
20530            // TODO Implement atomic delete if package is unused
20531            // It is currently possible that the package will be deleted even if it is installed
20532            // after this method returns.
20533            mHandler.post(new Runnable() {
20534                public void run() {
20535                    deletePackageX(packageName, 0, PackageManager.DELETE_ALL_USERS);
20536                }
20537            });
20538        }
20539    }
20540
20541    /**
20542     * Check and throw if the given before/after packages would be considered a
20543     * downgrade.
20544     */
20545    private static void checkDowngrade(PackageParser.Package before, PackageInfoLite after)
20546            throws PackageManagerException {
20547        if (after.versionCode < before.mVersionCode) {
20548            throw new PackageManagerException(INSTALL_FAILED_VERSION_DOWNGRADE,
20549                    "Update version code " + after.versionCode + " is older than current "
20550                    + before.mVersionCode);
20551        } else if (after.versionCode == before.mVersionCode) {
20552            if (after.baseRevisionCode < before.baseRevisionCode) {
20553                throw new PackageManagerException(INSTALL_FAILED_VERSION_DOWNGRADE,
20554                        "Update base revision code " + after.baseRevisionCode
20555                        + " is older than current " + before.baseRevisionCode);
20556            }
20557
20558            if (!ArrayUtils.isEmpty(after.splitNames)) {
20559                for (int i = 0; i < after.splitNames.length; i++) {
20560                    final String splitName = after.splitNames[i];
20561                    final int j = ArrayUtils.indexOf(before.splitNames, splitName);
20562                    if (j != -1) {
20563                        if (after.splitRevisionCodes[i] < before.splitRevisionCodes[j]) {
20564                            throw new PackageManagerException(INSTALL_FAILED_VERSION_DOWNGRADE,
20565                                    "Update split " + splitName + " revision code "
20566                                    + after.splitRevisionCodes[i] + " is older than current "
20567                                    + before.splitRevisionCodes[j]);
20568                        }
20569                    }
20570                }
20571            }
20572        }
20573    }
20574
20575    private static class MoveCallbacks extends Handler {
20576        private static final int MSG_CREATED = 1;
20577        private static final int MSG_STATUS_CHANGED = 2;
20578
20579        private final RemoteCallbackList<IPackageMoveObserver>
20580                mCallbacks = new RemoteCallbackList<>();
20581
20582        private final SparseIntArray mLastStatus = new SparseIntArray();
20583
20584        public MoveCallbacks(Looper looper) {
20585            super(looper);
20586        }
20587
20588        public void register(IPackageMoveObserver callback) {
20589            mCallbacks.register(callback);
20590        }
20591
20592        public void unregister(IPackageMoveObserver callback) {
20593            mCallbacks.unregister(callback);
20594        }
20595
20596        @Override
20597        public void handleMessage(Message msg) {
20598            final SomeArgs args = (SomeArgs) msg.obj;
20599            final int n = mCallbacks.beginBroadcast();
20600            for (int i = 0; i < n; i++) {
20601                final IPackageMoveObserver callback = mCallbacks.getBroadcastItem(i);
20602                try {
20603                    invokeCallback(callback, msg.what, args);
20604                } catch (RemoteException ignored) {
20605                }
20606            }
20607            mCallbacks.finishBroadcast();
20608            args.recycle();
20609        }
20610
20611        private void invokeCallback(IPackageMoveObserver callback, int what, SomeArgs args)
20612                throws RemoteException {
20613            switch (what) {
20614                case MSG_CREATED: {
20615                    callback.onCreated(args.argi1, (Bundle) args.arg2);
20616                    break;
20617                }
20618                case MSG_STATUS_CHANGED: {
20619                    callback.onStatusChanged(args.argi1, args.argi2, (long) args.arg3);
20620                    break;
20621                }
20622            }
20623        }
20624
20625        private void notifyCreated(int moveId, Bundle extras) {
20626            Slog.v(TAG, "Move " + moveId + " created " + extras.toString());
20627
20628            final SomeArgs args = SomeArgs.obtain();
20629            args.argi1 = moveId;
20630            args.arg2 = extras;
20631            obtainMessage(MSG_CREATED, args).sendToTarget();
20632        }
20633
20634        private void notifyStatusChanged(int moveId, int status) {
20635            notifyStatusChanged(moveId, status, -1);
20636        }
20637
20638        private void notifyStatusChanged(int moveId, int status, long estMillis) {
20639            Slog.v(TAG, "Move " + moveId + " status " + status);
20640
20641            final SomeArgs args = SomeArgs.obtain();
20642            args.argi1 = moveId;
20643            args.argi2 = status;
20644            args.arg3 = estMillis;
20645            obtainMessage(MSG_STATUS_CHANGED, args).sendToTarget();
20646
20647            synchronized (mLastStatus) {
20648                mLastStatus.put(moveId, status);
20649            }
20650        }
20651    }
20652
20653    private final static class OnPermissionChangeListeners extends Handler {
20654        private static final int MSG_ON_PERMISSIONS_CHANGED = 1;
20655
20656        private final RemoteCallbackList<IOnPermissionsChangeListener> mPermissionListeners =
20657                new RemoteCallbackList<>();
20658
20659        public OnPermissionChangeListeners(Looper looper) {
20660            super(looper);
20661        }
20662
20663        @Override
20664        public void handleMessage(Message msg) {
20665            switch (msg.what) {
20666                case MSG_ON_PERMISSIONS_CHANGED: {
20667                    final int uid = msg.arg1;
20668                    handleOnPermissionsChanged(uid);
20669                } break;
20670            }
20671        }
20672
20673        public void addListenerLocked(IOnPermissionsChangeListener listener) {
20674            mPermissionListeners.register(listener);
20675
20676        }
20677
20678        public void removeListenerLocked(IOnPermissionsChangeListener listener) {
20679            mPermissionListeners.unregister(listener);
20680        }
20681
20682        public void onPermissionsChanged(int uid) {
20683            if (mPermissionListeners.getRegisteredCallbackCount() > 0) {
20684                obtainMessage(MSG_ON_PERMISSIONS_CHANGED, uid, 0).sendToTarget();
20685            }
20686        }
20687
20688        private void handleOnPermissionsChanged(int uid) {
20689            final int count = mPermissionListeners.beginBroadcast();
20690            try {
20691                for (int i = 0; i < count; i++) {
20692                    IOnPermissionsChangeListener callback = mPermissionListeners
20693                            .getBroadcastItem(i);
20694                    try {
20695                        callback.onPermissionsChanged(uid);
20696                    } catch (RemoteException e) {
20697                        Log.e(TAG, "Permission listener is dead", e);
20698                    }
20699                }
20700            } finally {
20701                mPermissionListeners.finishBroadcast();
20702            }
20703        }
20704    }
20705
20706    private class PackageManagerInternalImpl extends PackageManagerInternal {
20707        @Override
20708        public void setLocationPackagesProvider(PackagesProvider provider) {
20709            synchronized (mPackages) {
20710                mDefaultPermissionPolicy.setLocationPackagesProviderLPw(provider);
20711            }
20712        }
20713
20714        @Override
20715        public void setVoiceInteractionPackagesProvider(PackagesProvider provider) {
20716            synchronized (mPackages) {
20717                mDefaultPermissionPolicy.setVoiceInteractionPackagesProviderLPw(provider);
20718            }
20719        }
20720
20721        @Override
20722        public void setSmsAppPackagesProvider(PackagesProvider provider) {
20723            synchronized (mPackages) {
20724                mDefaultPermissionPolicy.setSmsAppPackagesProviderLPw(provider);
20725            }
20726        }
20727
20728        @Override
20729        public void setDialerAppPackagesProvider(PackagesProvider provider) {
20730            synchronized (mPackages) {
20731                mDefaultPermissionPolicy.setDialerAppPackagesProviderLPw(provider);
20732            }
20733        }
20734
20735        @Override
20736        public void setSimCallManagerPackagesProvider(PackagesProvider provider) {
20737            synchronized (mPackages) {
20738                mDefaultPermissionPolicy.setSimCallManagerPackagesProviderLPw(provider);
20739            }
20740        }
20741
20742        @Override
20743        public void setSyncAdapterPackagesprovider(SyncAdapterPackagesProvider provider) {
20744            synchronized (mPackages) {
20745                mDefaultPermissionPolicy.setSyncAdapterPackagesProviderLPw(provider);
20746            }
20747        }
20748
20749        @Override
20750        public void grantDefaultPermissionsToDefaultSmsApp(String packageName, int userId) {
20751            synchronized (mPackages) {
20752                mDefaultPermissionPolicy.grantDefaultPermissionsToDefaultSmsAppLPr(
20753                        packageName, userId);
20754            }
20755        }
20756
20757        @Override
20758        public void grantDefaultPermissionsToDefaultDialerApp(String packageName, int userId) {
20759            synchronized (mPackages) {
20760                mSettings.setDefaultDialerPackageNameLPw(packageName, userId);
20761                mDefaultPermissionPolicy.grantDefaultPermissionsToDefaultDialerAppLPr(
20762                        packageName, userId);
20763            }
20764        }
20765
20766        @Override
20767        public void grantDefaultPermissionsToDefaultSimCallManager(String packageName, int userId) {
20768            synchronized (mPackages) {
20769                mDefaultPermissionPolicy.grantDefaultPermissionsToDefaultSimCallManagerLPr(
20770                        packageName, userId);
20771            }
20772        }
20773
20774        @Override
20775        public void setKeepUninstalledPackages(final List<String> packageList) {
20776            Preconditions.checkNotNull(packageList);
20777            List<String> removedFromList = null;
20778            synchronized (mPackages) {
20779                if (mKeepUninstalledPackages != null) {
20780                    final int packagesCount = mKeepUninstalledPackages.size();
20781                    for (int i = 0; i < packagesCount; i++) {
20782                        String oldPackage = mKeepUninstalledPackages.get(i);
20783                        if (packageList != null && packageList.contains(oldPackage)) {
20784                            continue;
20785                        }
20786                        if (removedFromList == null) {
20787                            removedFromList = new ArrayList<>();
20788                        }
20789                        removedFromList.add(oldPackage);
20790                    }
20791                }
20792                mKeepUninstalledPackages = new ArrayList<>(packageList);
20793                if (removedFromList != null) {
20794                    final int removedCount = removedFromList.size();
20795                    for (int i = 0; i < removedCount; i++) {
20796                        deletePackageIfUnusedLPr(removedFromList.get(i));
20797                    }
20798                }
20799            }
20800        }
20801
20802        @Override
20803        public boolean isPermissionsReviewRequired(String packageName, int userId) {
20804            synchronized (mPackages) {
20805                // If we do not support permission review, done.
20806                if (!Build.PERMISSIONS_REVIEW_REQUIRED) {
20807                    return false;
20808                }
20809
20810                PackageSetting packageSetting = mSettings.mPackages.get(packageName);
20811                if (packageSetting == null) {
20812                    return false;
20813                }
20814
20815                // Permission review applies only to apps not supporting the new permission model.
20816                if (packageSetting.pkg.applicationInfo.targetSdkVersion >= Build.VERSION_CODES.M) {
20817                    return false;
20818                }
20819
20820                // Legacy apps have the permission and get user consent on launch.
20821                PermissionsState permissionsState = packageSetting.getPermissionsState();
20822                return permissionsState.isPermissionReviewRequired(userId);
20823            }
20824        }
20825
20826        @Override
20827        public ApplicationInfo getApplicationInfo(String packageName, int userId) {
20828            return PackageManagerService.this.getApplicationInfo(packageName, 0 /*flags*/, userId);
20829        }
20830
20831        @Override
20832        public ComponentName getHomeActivitiesAsUser(List<ResolveInfo> allHomeCandidates,
20833                int userId) {
20834            return PackageManagerService.this.getHomeActivitiesAsUser(allHomeCandidates, userId);
20835        }
20836
20837        @Override
20838        public void setDeviceAndProfileOwnerPackages(
20839                int deviceOwnerUserId, String deviceOwnerPackage,
20840                SparseArray<String> profileOwnerPackages) {
20841            mProtectedPackages.setDeviceAndProfileOwnerPackages(
20842                    deviceOwnerUserId, deviceOwnerPackage, profileOwnerPackages);
20843        }
20844
20845        @Override
20846        public boolean canPackageBeWiped(int userId, String packageName) {
20847            return mProtectedPackages.canPackageBeWiped(userId,
20848                    packageName);
20849        }
20850    }
20851
20852    @Override
20853    public void grantDefaultPermissionsToEnabledCarrierApps(String[] packageNames, int userId) {
20854        enforceSystemOrPhoneCaller("grantPermissionsToEnabledCarrierApps");
20855        synchronized (mPackages) {
20856            final long identity = Binder.clearCallingIdentity();
20857            try {
20858                mDefaultPermissionPolicy.grantDefaultPermissionsToEnabledCarrierAppsLPr(
20859                        packageNames, userId);
20860            } finally {
20861                Binder.restoreCallingIdentity(identity);
20862            }
20863        }
20864    }
20865
20866    private static void enforceSystemOrPhoneCaller(String tag) {
20867        int callingUid = Binder.getCallingUid();
20868        if (callingUid != Process.PHONE_UID && callingUid != Process.SYSTEM_UID) {
20869            throw new SecurityException(
20870                    "Cannot call " + tag + " from UID " + callingUid);
20871        }
20872    }
20873
20874    boolean isHistoricalPackageUsageAvailable() {
20875        return mPackageUsage.isHistoricalPackageUsageAvailable();
20876    }
20877
20878    /**
20879     * Return a <b>copy</b> of the collection of packages known to the package manager.
20880     * @return A copy of the values of mPackages.
20881     */
20882    Collection<PackageParser.Package> getPackages() {
20883        synchronized (mPackages) {
20884            return new ArrayList<>(mPackages.values());
20885        }
20886    }
20887
20888    /**
20889     * Logs process start information (including base APK hash) to the security log.
20890     * @hide
20891     */
20892    public void logAppProcessStartIfNeeded(String processName, int uid, String seinfo,
20893            String apkFile, int pid) {
20894        if (!SecurityLog.isLoggingEnabled()) {
20895            return;
20896        }
20897        Bundle data = new Bundle();
20898        data.putLong("startTimestamp", System.currentTimeMillis());
20899        data.putString("processName", processName);
20900        data.putInt("uid", uid);
20901        data.putString("seinfo", seinfo);
20902        data.putString("apkFile", apkFile);
20903        data.putInt("pid", pid);
20904        Message msg = mProcessLoggingHandler.obtainMessage(
20905                ProcessLoggingHandler.LOG_APP_PROCESS_START_MSG);
20906        msg.setData(data);
20907        mProcessLoggingHandler.sendMessage(msg);
20908    }
20909}
20910