PackageManagerService.java revision ec3f8409b84e555f21290372de911ff704406e72
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 == null) {
1218                        // Empty file. Do nothing.
1219                    } else if (USAGE_FILE_MAGIC_VERSION_1.equals(firstLine)) {
1220                        readVersion1LP(in, sb);
1221                    } else {
1222                        readVersion0LP(in, sb, firstLine);
1223                    }
1224                } catch (FileNotFoundException expected) {
1225                    mIsHistoricalPackageUsageAvailable = false;
1226                } catch (IOException e) {
1227                    Log.w(TAG, "Failed to read package usage times", e);
1228                } finally {
1229                    IoUtils.closeQuietly(in);
1230                }
1231            }
1232            mLastWritten.set(SystemClock.elapsedRealtime());
1233        }
1234
1235        private void readVersion0LP(InputStream in, StringBuffer sb, String firstLine)
1236                throws IOException {
1237            // Initial version of the file had no version number and stored one
1238            // package-timestamp pair per line.
1239            // Note that the first line has already been read from the InputStream.
1240            for (String line = firstLine; line != null; line = readLine(in, sb)) {
1241                String[] tokens = line.split(" ");
1242                if (tokens.length != 2) {
1243                    throw new IOException("Failed to parse " + line +
1244                            " as package-timestamp pair.");
1245                }
1246
1247                String packageName = tokens[0];
1248                PackageParser.Package pkg = mPackages.get(packageName);
1249                if (pkg == null) {
1250                    continue;
1251                }
1252
1253                long timestamp = parseAsLong(tokens[1]);
1254                for (int reason = 0;
1255                        reason < PackageManager.NOTIFY_PACKAGE_USE_REASONS_COUNT;
1256                        reason++) {
1257                    pkg.mLastPackageUsageTimeInMills[reason] = timestamp;
1258                }
1259            }
1260        }
1261
1262        private void readVersion1LP(InputStream in, StringBuffer sb) throws IOException {
1263            // Version 1 of the file started with the corresponding version
1264            // number and then stored a package name and eight timestamps per line.
1265            String line;
1266            while ((line = readLine(in, sb)) != null) {
1267                String[] tokens = line.split(" ");
1268                if (tokens.length != PackageManager.NOTIFY_PACKAGE_USE_REASONS_COUNT + 1) {
1269                    throw new IOException("Failed to parse " + line + " as a timestamp array.");
1270                }
1271
1272                String packageName = tokens[0];
1273                PackageParser.Package pkg = mPackages.get(packageName);
1274                if (pkg == null) {
1275                    continue;
1276                }
1277
1278                for (int reason = 0;
1279                        reason < PackageManager.NOTIFY_PACKAGE_USE_REASONS_COUNT;
1280                        reason++) {
1281                    pkg.mLastPackageUsageTimeInMills[reason] = parseAsLong(tokens[reason + 1]);
1282                }
1283            }
1284        }
1285
1286        private long parseAsLong(String token) throws IOException {
1287            try {
1288                return Long.parseLong(token);
1289            } catch (NumberFormatException e) {
1290                throw new IOException("Failed to parse " + token + " as a long.", e);
1291            }
1292        }
1293
1294        private String readLine(InputStream in, StringBuffer sb) throws IOException {
1295            return readToken(in, sb, '\n');
1296        }
1297
1298        private String readToken(InputStream in, StringBuffer sb, char endOfToken)
1299                throws IOException {
1300            sb.setLength(0);
1301            while (true) {
1302                int ch = in.read();
1303                if (ch == -1) {
1304                    if (sb.length() == 0) {
1305                        return null;
1306                    }
1307                    throw new IOException("Unexpected EOF");
1308                }
1309                if (ch == endOfToken) {
1310                    return sb.toString();
1311                }
1312                sb.append((char)ch);
1313            }
1314        }
1315
1316        private AtomicFile getFile() {
1317            File dataDir = Environment.getDataDirectory();
1318            File systemDir = new File(dataDir, "system");
1319            File fname = new File(systemDir, "package-usage.list");
1320            return new AtomicFile(fname);
1321        }
1322
1323        private static final String USAGE_FILE_MAGIC = "PACKAGE_USAGE__VERSION_";
1324        private static final String USAGE_FILE_MAGIC_VERSION_1 = USAGE_FILE_MAGIC + "1";
1325    }
1326
1327    class PackageHandler extends Handler {
1328        private boolean mBound = false;
1329        final ArrayList<HandlerParams> mPendingInstalls =
1330            new ArrayList<HandlerParams>();
1331
1332        private boolean connectToService() {
1333            if (DEBUG_SD_INSTALL) Log.i(TAG, "Trying to bind to" +
1334                    " DefaultContainerService");
1335            Intent service = new Intent().setComponent(DEFAULT_CONTAINER_COMPONENT);
1336            Process.setThreadPriority(Process.THREAD_PRIORITY_DEFAULT);
1337            if (mContext.bindServiceAsUser(service, mDefContainerConn,
1338                    Context.BIND_AUTO_CREATE, UserHandle.SYSTEM)) {
1339                Process.setThreadPriority(Process.THREAD_PRIORITY_BACKGROUND);
1340                mBound = true;
1341                return true;
1342            }
1343            Process.setThreadPriority(Process.THREAD_PRIORITY_BACKGROUND);
1344            return false;
1345        }
1346
1347        private void disconnectService() {
1348            mContainerService = null;
1349            mBound = false;
1350            Process.setThreadPriority(Process.THREAD_PRIORITY_DEFAULT);
1351            mContext.unbindService(mDefContainerConn);
1352            Process.setThreadPriority(Process.THREAD_PRIORITY_BACKGROUND);
1353        }
1354
1355        PackageHandler(Looper looper) {
1356            super(looper);
1357        }
1358
1359        public void handleMessage(Message msg) {
1360            try {
1361                doHandleMessage(msg);
1362            } finally {
1363                Process.setThreadPriority(Process.THREAD_PRIORITY_BACKGROUND);
1364            }
1365        }
1366
1367        void doHandleMessage(Message msg) {
1368            switch (msg.what) {
1369                case INIT_COPY: {
1370                    HandlerParams params = (HandlerParams) msg.obj;
1371                    int idx = mPendingInstalls.size();
1372                    if (DEBUG_INSTALL) Slog.i(TAG, "init_copy idx=" + idx + ": " + params);
1373                    // If a bind was already initiated we dont really
1374                    // need to do anything. The pending install
1375                    // will be processed later on.
1376                    if (!mBound) {
1377                        Trace.asyncTraceBegin(TRACE_TAG_PACKAGE_MANAGER, "bindingMCS",
1378                                System.identityHashCode(mHandler));
1379                        // If this is the only one pending we might
1380                        // have to bind to the service again.
1381                        if (!connectToService()) {
1382                            Slog.e(TAG, "Failed to bind to media container service");
1383                            params.serviceError();
1384                            Trace.asyncTraceEnd(TRACE_TAG_PACKAGE_MANAGER, "bindingMCS",
1385                                    System.identityHashCode(mHandler));
1386                            if (params.traceMethod != null) {
1387                                Trace.asyncTraceEnd(TRACE_TAG_PACKAGE_MANAGER, params.traceMethod,
1388                                        params.traceCookie);
1389                            }
1390                            return;
1391                        } else {
1392                            // Once we bind to the service, the first
1393                            // pending request will be processed.
1394                            mPendingInstalls.add(idx, params);
1395                        }
1396                    } else {
1397                        mPendingInstalls.add(idx, params);
1398                        // Already bound to the service. Just make
1399                        // sure we trigger off processing the first request.
1400                        if (idx == 0) {
1401                            mHandler.sendEmptyMessage(MCS_BOUND);
1402                        }
1403                    }
1404                    break;
1405                }
1406                case MCS_BOUND: {
1407                    if (DEBUG_INSTALL) Slog.i(TAG, "mcs_bound");
1408                    if (msg.obj != null) {
1409                        mContainerService = (IMediaContainerService) msg.obj;
1410                        Trace.asyncTraceEnd(TRACE_TAG_PACKAGE_MANAGER, "bindingMCS",
1411                                System.identityHashCode(mHandler));
1412                    }
1413                    if (mContainerService == null) {
1414                        if (!mBound) {
1415                            // Something seriously wrong since we are not bound and we are not
1416                            // waiting for connection. Bail out.
1417                            Slog.e(TAG, "Cannot bind to media container service");
1418                            for (HandlerParams params : mPendingInstalls) {
1419                                // Indicate service bind error
1420                                params.serviceError();
1421                                Trace.asyncTraceEnd(TRACE_TAG_PACKAGE_MANAGER, "queueInstall",
1422                                        System.identityHashCode(params));
1423                                if (params.traceMethod != null) {
1424                                    Trace.asyncTraceEnd(TRACE_TAG_PACKAGE_MANAGER,
1425                                            params.traceMethod, params.traceCookie);
1426                                }
1427                                return;
1428                            }
1429                            mPendingInstalls.clear();
1430                        } else {
1431                            Slog.w(TAG, "Waiting to connect to media container service");
1432                        }
1433                    } else if (mPendingInstalls.size() > 0) {
1434                        HandlerParams params = mPendingInstalls.get(0);
1435                        if (params != null) {
1436                            Trace.asyncTraceEnd(TRACE_TAG_PACKAGE_MANAGER, "queueInstall",
1437                                    System.identityHashCode(params));
1438                            Trace.traceBegin(TRACE_TAG_PACKAGE_MANAGER, "startCopy");
1439                            if (params.startCopy()) {
1440                                // We are done...  look for more work or to
1441                                // go idle.
1442                                if (DEBUG_SD_INSTALL) Log.i(TAG,
1443                                        "Checking for more work or unbind...");
1444                                // Delete pending install
1445                                if (mPendingInstalls.size() > 0) {
1446                                    mPendingInstalls.remove(0);
1447                                }
1448                                if (mPendingInstalls.size() == 0) {
1449                                    if (mBound) {
1450                                        if (DEBUG_SD_INSTALL) Log.i(TAG,
1451                                                "Posting delayed MCS_UNBIND");
1452                                        removeMessages(MCS_UNBIND);
1453                                        Message ubmsg = obtainMessage(MCS_UNBIND);
1454                                        // Unbind after a little delay, to avoid
1455                                        // continual thrashing.
1456                                        sendMessageDelayed(ubmsg, 10000);
1457                                    }
1458                                } else {
1459                                    // There are more pending requests in queue.
1460                                    // Just post MCS_BOUND message to trigger processing
1461                                    // of next pending install.
1462                                    if (DEBUG_SD_INSTALL) Log.i(TAG,
1463                                            "Posting MCS_BOUND for next work");
1464                                    mHandler.sendEmptyMessage(MCS_BOUND);
1465                                }
1466                            }
1467                            Trace.traceEnd(TRACE_TAG_PACKAGE_MANAGER);
1468                        }
1469                    } else {
1470                        // Should never happen ideally.
1471                        Slog.w(TAG, "Empty queue");
1472                    }
1473                    break;
1474                }
1475                case MCS_RECONNECT: {
1476                    if (DEBUG_INSTALL) Slog.i(TAG, "mcs_reconnect");
1477                    if (mPendingInstalls.size() > 0) {
1478                        if (mBound) {
1479                            disconnectService();
1480                        }
1481                        if (!connectToService()) {
1482                            Slog.e(TAG, "Failed to bind to media container service");
1483                            for (HandlerParams params : mPendingInstalls) {
1484                                // Indicate service bind error
1485                                params.serviceError();
1486                                Trace.asyncTraceEnd(TRACE_TAG_PACKAGE_MANAGER, "queueInstall",
1487                                        System.identityHashCode(params));
1488                            }
1489                            mPendingInstalls.clear();
1490                        }
1491                    }
1492                    break;
1493                }
1494                case MCS_UNBIND: {
1495                    // If there is no actual work left, then time to unbind.
1496                    if (DEBUG_INSTALL) Slog.i(TAG, "mcs_unbind");
1497
1498                    if (mPendingInstalls.size() == 0 && mPendingVerification.size() == 0) {
1499                        if (mBound) {
1500                            if (DEBUG_INSTALL) Slog.i(TAG, "calling disconnectService()");
1501
1502                            disconnectService();
1503                        }
1504                    } else if (mPendingInstalls.size() > 0) {
1505                        // There are more pending requests in queue.
1506                        // Just post MCS_BOUND message to trigger processing
1507                        // of next pending install.
1508                        mHandler.sendEmptyMessage(MCS_BOUND);
1509                    }
1510
1511                    break;
1512                }
1513                case MCS_GIVE_UP: {
1514                    if (DEBUG_INSTALL) Slog.i(TAG, "mcs_giveup too many retries");
1515                    HandlerParams params = mPendingInstalls.remove(0);
1516                    Trace.asyncTraceEnd(TRACE_TAG_PACKAGE_MANAGER, "queueInstall",
1517                            System.identityHashCode(params));
1518                    break;
1519                }
1520                case SEND_PENDING_BROADCAST: {
1521                    String packages[];
1522                    ArrayList<String> components[];
1523                    int size = 0;
1524                    int uids[];
1525                    Process.setThreadPriority(Process.THREAD_PRIORITY_DEFAULT);
1526                    synchronized (mPackages) {
1527                        if (mPendingBroadcasts == null) {
1528                            return;
1529                        }
1530                        size = mPendingBroadcasts.size();
1531                        if (size <= 0) {
1532                            // Nothing to be done. Just return
1533                            return;
1534                        }
1535                        packages = new String[size];
1536                        components = new ArrayList[size];
1537                        uids = new int[size];
1538                        int i = 0;  // filling out the above arrays
1539
1540                        for (int n = 0; n < mPendingBroadcasts.userIdCount(); n++) {
1541                            int packageUserId = mPendingBroadcasts.userIdAt(n);
1542                            Iterator<Map.Entry<String, ArrayList<String>>> it
1543                                    = mPendingBroadcasts.packagesForUserId(packageUserId)
1544                                            .entrySet().iterator();
1545                            while (it.hasNext() && i < size) {
1546                                Map.Entry<String, ArrayList<String>> ent = it.next();
1547                                packages[i] = ent.getKey();
1548                                components[i] = ent.getValue();
1549                                PackageSetting ps = mSettings.mPackages.get(ent.getKey());
1550                                uids[i] = (ps != null)
1551                                        ? UserHandle.getUid(packageUserId, ps.appId)
1552                                        : -1;
1553                                i++;
1554                            }
1555                        }
1556                        size = i;
1557                        mPendingBroadcasts.clear();
1558                    }
1559                    // Send broadcasts
1560                    for (int i = 0; i < size; i++) {
1561                        sendPackageChangedBroadcast(packages[i], true, components[i], uids[i]);
1562                    }
1563                    Process.setThreadPriority(Process.THREAD_PRIORITY_BACKGROUND);
1564                    break;
1565                }
1566                case START_CLEANING_PACKAGE: {
1567                    Process.setThreadPriority(Process.THREAD_PRIORITY_DEFAULT);
1568                    final String packageName = (String)msg.obj;
1569                    final int userId = msg.arg1;
1570                    final boolean andCode = msg.arg2 != 0;
1571                    synchronized (mPackages) {
1572                        if (userId == UserHandle.USER_ALL) {
1573                            int[] users = sUserManager.getUserIds();
1574                            for (int user : users) {
1575                                mSettings.addPackageToCleanLPw(
1576                                        new PackageCleanItem(user, packageName, andCode));
1577                            }
1578                        } else {
1579                            mSettings.addPackageToCleanLPw(
1580                                    new PackageCleanItem(userId, packageName, andCode));
1581                        }
1582                    }
1583                    Process.setThreadPriority(Process.THREAD_PRIORITY_BACKGROUND);
1584                    startCleaningPackages();
1585                } break;
1586                case POST_INSTALL: {
1587                    if (DEBUG_INSTALL) Log.v(TAG, "Handling post-install for " + msg.arg1);
1588
1589                    PostInstallData data = mRunningInstalls.get(msg.arg1);
1590                    final boolean didRestore = (msg.arg2 != 0);
1591                    mRunningInstalls.delete(msg.arg1);
1592
1593                    if (data != null) {
1594                        InstallArgs args = data.args;
1595                        PackageInstalledInfo parentRes = data.res;
1596
1597                        final boolean grantPermissions = (args.installFlags
1598                                & PackageManager.INSTALL_GRANT_RUNTIME_PERMISSIONS) != 0;
1599                        final boolean killApp = (args.installFlags
1600                                & PackageManager.INSTALL_DONT_KILL_APP) == 0;
1601                        final String[] grantedPermissions = args.installGrantPermissions;
1602
1603                        // Handle the parent package
1604                        handlePackagePostInstall(parentRes, grantPermissions, killApp,
1605                                grantedPermissions, didRestore, args.installerPackageName,
1606                                args.observer);
1607
1608                        // Handle the child packages
1609                        final int childCount = (parentRes.addedChildPackages != null)
1610                                ? parentRes.addedChildPackages.size() : 0;
1611                        for (int i = 0; i < childCount; i++) {
1612                            PackageInstalledInfo childRes = parentRes.addedChildPackages.valueAt(i);
1613                            handlePackagePostInstall(childRes, grantPermissions, killApp,
1614                                    grantedPermissions, false, args.installerPackageName,
1615                                    args.observer);
1616                        }
1617
1618                        // Log tracing if needed
1619                        if (args.traceMethod != null) {
1620                            Trace.asyncTraceEnd(TRACE_TAG_PACKAGE_MANAGER, args.traceMethod,
1621                                    args.traceCookie);
1622                        }
1623                    } else {
1624                        Slog.e(TAG, "Bogus post-install token " + msg.arg1);
1625                    }
1626
1627                    Trace.asyncTraceEnd(TRACE_TAG_PACKAGE_MANAGER, "postInstall", msg.arg1);
1628                } break;
1629                case UPDATED_MEDIA_STATUS: {
1630                    if (DEBUG_SD_INSTALL) Log.i(TAG, "Got message UPDATED_MEDIA_STATUS");
1631                    boolean reportStatus = msg.arg1 == 1;
1632                    boolean doGc = msg.arg2 == 1;
1633                    if (DEBUG_SD_INSTALL) Log.i(TAG, "reportStatus=" + reportStatus + ", doGc = " + doGc);
1634                    if (doGc) {
1635                        // Force a gc to clear up stale containers.
1636                        Runtime.getRuntime().gc();
1637                    }
1638                    if (msg.obj != null) {
1639                        @SuppressWarnings("unchecked")
1640                        Set<AsecInstallArgs> args = (Set<AsecInstallArgs>) msg.obj;
1641                        if (DEBUG_SD_INSTALL) Log.i(TAG, "Unloading all containers");
1642                        // Unload containers
1643                        unloadAllContainers(args);
1644                    }
1645                    if (reportStatus) {
1646                        try {
1647                            if (DEBUG_SD_INSTALL) Log.i(TAG, "Invoking MountService call back");
1648                            PackageHelper.getMountService().finishMediaUpdate();
1649                        } catch (RemoteException e) {
1650                            Log.e(TAG, "MountService not running?");
1651                        }
1652                    }
1653                } break;
1654                case WRITE_SETTINGS: {
1655                    Process.setThreadPriority(Process.THREAD_PRIORITY_DEFAULT);
1656                    synchronized (mPackages) {
1657                        removeMessages(WRITE_SETTINGS);
1658                        removeMessages(WRITE_PACKAGE_RESTRICTIONS);
1659                        mSettings.writeLPr();
1660                        mDirtyUsers.clear();
1661                    }
1662                    Process.setThreadPriority(Process.THREAD_PRIORITY_BACKGROUND);
1663                } break;
1664                case WRITE_PACKAGE_RESTRICTIONS: {
1665                    Process.setThreadPriority(Process.THREAD_PRIORITY_DEFAULT);
1666                    synchronized (mPackages) {
1667                        removeMessages(WRITE_PACKAGE_RESTRICTIONS);
1668                        for (int userId : mDirtyUsers) {
1669                            mSettings.writePackageRestrictionsLPr(userId);
1670                        }
1671                        mDirtyUsers.clear();
1672                    }
1673                    Process.setThreadPriority(Process.THREAD_PRIORITY_BACKGROUND);
1674                } break;
1675                case WRITE_PACKAGE_LIST: {
1676                    Process.setThreadPriority(Process.THREAD_PRIORITY_DEFAULT);
1677                    synchronized (mPackages) {
1678                        removeMessages(WRITE_PACKAGE_LIST);
1679                        mSettings.writePackageListLPr(msg.arg1);
1680                    }
1681                    Process.setThreadPriority(Process.THREAD_PRIORITY_BACKGROUND);
1682                } break;
1683                case CHECK_PENDING_VERIFICATION: {
1684                    final int verificationId = msg.arg1;
1685                    final PackageVerificationState state = mPendingVerification.get(verificationId);
1686
1687                    if ((state != null) && !state.timeoutExtended()) {
1688                        final InstallArgs args = state.getInstallArgs();
1689                        final Uri originUri = Uri.fromFile(args.origin.resolvedFile);
1690
1691                        Slog.i(TAG, "Verification timed out for " + originUri);
1692                        mPendingVerification.remove(verificationId);
1693
1694                        int ret = PackageManager.INSTALL_FAILED_VERIFICATION_FAILURE;
1695
1696                        if (getDefaultVerificationResponse() == PackageManager.VERIFICATION_ALLOW) {
1697                            Slog.i(TAG, "Continuing with installation of " + originUri);
1698                            state.setVerifierResponse(Binder.getCallingUid(),
1699                                    PackageManager.VERIFICATION_ALLOW_WITHOUT_SUFFICIENT);
1700                            broadcastPackageVerified(verificationId, originUri,
1701                                    PackageManager.VERIFICATION_ALLOW,
1702                                    state.getInstallArgs().getUser());
1703                            try {
1704                                ret = args.copyApk(mContainerService, true);
1705                            } catch (RemoteException e) {
1706                                Slog.e(TAG, "Could not contact the ContainerService");
1707                            }
1708                        } else {
1709                            broadcastPackageVerified(verificationId, originUri,
1710                                    PackageManager.VERIFICATION_REJECT,
1711                                    state.getInstallArgs().getUser());
1712                        }
1713
1714                        Trace.asyncTraceEnd(
1715                                TRACE_TAG_PACKAGE_MANAGER, "verification", verificationId);
1716
1717                        processPendingInstall(args, ret);
1718                        mHandler.sendEmptyMessage(MCS_UNBIND);
1719                    }
1720                    break;
1721                }
1722                case PACKAGE_VERIFIED: {
1723                    final int verificationId = msg.arg1;
1724
1725                    final PackageVerificationState state = mPendingVerification.get(verificationId);
1726                    if (state == null) {
1727                        Slog.w(TAG, "Invalid verification token " + verificationId + " received");
1728                        break;
1729                    }
1730
1731                    final PackageVerificationResponse response = (PackageVerificationResponse) msg.obj;
1732
1733                    state.setVerifierResponse(response.callerUid, response.code);
1734
1735                    if (state.isVerificationComplete()) {
1736                        mPendingVerification.remove(verificationId);
1737
1738                        final InstallArgs args = state.getInstallArgs();
1739                        final Uri originUri = Uri.fromFile(args.origin.resolvedFile);
1740
1741                        int ret;
1742                        if (state.isInstallAllowed()) {
1743                            ret = PackageManager.INSTALL_FAILED_INTERNAL_ERROR;
1744                            broadcastPackageVerified(verificationId, originUri,
1745                                    response.code, state.getInstallArgs().getUser());
1746                            try {
1747                                ret = args.copyApk(mContainerService, true);
1748                            } catch (RemoteException e) {
1749                                Slog.e(TAG, "Could not contact the ContainerService");
1750                            }
1751                        } else {
1752                            ret = PackageManager.INSTALL_FAILED_VERIFICATION_FAILURE;
1753                        }
1754
1755                        Trace.asyncTraceEnd(
1756                                TRACE_TAG_PACKAGE_MANAGER, "verification", verificationId);
1757
1758                        processPendingInstall(args, ret);
1759                        mHandler.sendEmptyMessage(MCS_UNBIND);
1760                    }
1761
1762                    break;
1763                }
1764                case START_INTENT_FILTER_VERIFICATIONS: {
1765                    IFVerificationParams params = (IFVerificationParams) msg.obj;
1766                    verifyIntentFiltersIfNeeded(params.userId, params.verifierUid,
1767                            params.replacing, params.pkg);
1768                    break;
1769                }
1770                case INTENT_FILTER_VERIFIED: {
1771                    final int verificationId = msg.arg1;
1772
1773                    final IntentFilterVerificationState state = mIntentFilterVerificationStates.get(
1774                            verificationId);
1775                    if (state == null) {
1776                        Slog.w(TAG, "Invalid IntentFilter verification token "
1777                                + verificationId + " received");
1778                        break;
1779                    }
1780
1781                    final int userId = state.getUserId();
1782
1783                    if (DEBUG_DOMAIN_VERIFICATION) Slog.d(TAG,
1784                            "Processing IntentFilter verification with token:"
1785                            + verificationId + " and userId:" + userId);
1786
1787                    final IntentFilterVerificationResponse response =
1788                            (IntentFilterVerificationResponse) msg.obj;
1789
1790                    state.setVerifierResponse(response.callerUid, response.code);
1791
1792                    if (DEBUG_DOMAIN_VERIFICATION) Slog.d(TAG,
1793                            "IntentFilter verification with token:" + verificationId
1794                            + " and userId:" + userId
1795                            + " is settings verifier response with response code:"
1796                            + response.code);
1797
1798                    if (response.code == PackageManager.INTENT_FILTER_VERIFICATION_FAILURE) {
1799                        if (DEBUG_DOMAIN_VERIFICATION) Slog.d(TAG, "Domains failing verification: "
1800                                + response.getFailedDomainsString());
1801                    }
1802
1803                    if (state.isVerificationComplete()) {
1804                        mIntentFilterVerifier.receiveVerificationResponse(verificationId);
1805                    } else {
1806                        if (DEBUG_DOMAIN_VERIFICATION) Slog.d(TAG,
1807                                "IntentFilter verification with token:" + verificationId
1808                                + " was not said to be complete");
1809                    }
1810
1811                    break;
1812                }
1813            }
1814        }
1815    }
1816
1817    private void handlePackagePostInstall(PackageInstalledInfo res, boolean grantPermissions,
1818            boolean killApp, String[] grantedPermissions,
1819            boolean launchedForRestore, String installerPackage,
1820            IPackageInstallObserver2 installObserver) {
1821        if (res.returnCode == PackageManager.INSTALL_SUCCEEDED) {
1822            // Send the removed broadcasts
1823            if (res.removedInfo != null) {
1824                res.removedInfo.sendPackageRemovedBroadcasts(killApp);
1825            }
1826
1827            // Now that we successfully installed the package, grant runtime
1828            // permissions if requested before broadcasting the install.
1829            if (grantPermissions && res.pkg.applicationInfo.targetSdkVersion
1830                    >= Build.VERSION_CODES.M) {
1831                grantRequestedRuntimePermissions(res.pkg, res.newUsers, grantedPermissions);
1832            }
1833
1834            final boolean update = res.removedInfo != null
1835                    && res.removedInfo.removedPackage != null;
1836
1837            // If this is the first time we have child packages for a disabled privileged
1838            // app that had no children, we grant requested runtime permissions to the new
1839            // children if the parent on the system image had them already granted.
1840            if (res.pkg.parentPackage != null) {
1841                synchronized (mPackages) {
1842                    grantRuntimePermissionsGrantedToDisabledPrivSysPackageParentLPw(res.pkg);
1843                }
1844            }
1845
1846            synchronized (mPackages) {
1847                mEphemeralApplicationRegistry.onPackageInstalledLPw(res.pkg);
1848            }
1849
1850            final String packageName = res.pkg.applicationInfo.packageName;
1851            Bundle extras = new Bundle(1);
1852            extras.putInt(Intent.EXTRA_UID, res.uid);
1853
1854            // Determine the set of users who are adding this package for
1855            // the first time vs. those who are seeing an update.
1856            int[] firstUsers = EMPTY_INT_ARRAY;
1857            int[] updateUsers = EMPTY_INT_ARRAY;
1858            if (res.origUsers == null || res.origUsers.length == 0) {
1859                firstUsers = res.newUsers;
1860            } else {
1861                for (int newUser : res.newUsers) {
1862                    boolean isNew = true;
1863                    for (int origUser : res.origUsers) {
1864                        if (origUser == newUser) {
1865                            isNew = false;
1866                            break;
1867                        }
1868                    }
1869                    if (isNew) {
1870                        firstUsers = ArrayUtils.appendInt(firstUsers, newUser);
1871                    } else {
1872                        updateUsers = ArrayUtils.appendInt(updateUsers, newUser);
1873                    }
1874                }
1875            }
1876
1877            // Send installed broadcasts if the install/update is not ephemeral
1878            if (!isEphemeral(res.pkg)) {
1879                mProcessLoggingHandler.invalidateProcessLoggingBaseApkHash(res.pkg.baseCodePath);
1880
1881                // Send added for users that see the package for the first time
1882                sendPackageBroadcast(Intent.ACTION_PACKAGE_ADDED, packageName,
1883                        extras, 0 /*flags*/, null /*targetPackage*/,
1884                        null /*finishedReceiver*/, firstUsers);
1885
1886                // Send added for users that don't see the package for the first time
1887                if (update) {
1888                    extras.putBoolean(Intent.EXTRA_REPLACING, true);
1889                }
1890                sendPackageBroadcast(Intent.ACTION_PACKAGE_ADDED, packageName,
1891                        extras, 0 /*flags*/, null /*targetPackage*/,
1892                        null /*finishedReceiver*/, updateUsers);
1893
1894                // Send replaced for users that don't see the package for the first time
1895                if (update) {
1896                    sendPackageBroadcast(Intent.ACTION_PACKAGE_REPLACED,
1897                            packageName, extras, 0 /*flags*/,
1898                            null /*targetPackage*/, null /*finishedReceiver*/,
1899                            updateUsers);
1900                    sendPackageBroadcast(Intent.ACTION_MY_PACKAGE_REPLACED,
1901                            null /*package*/, null /*extras*/, 0 /*flags*/,
1902                            packageName /*targetPackage*/,
1903                            null /*finishedReceiver*/, updateUsers);
1904                } else if (launchedForRestore && !isSystemApp(res.pkg)) {
1905                    // First-install and we did a restore, so we're responsible for the
1906                    // first-launch broadcast.
1907                    if (DEBUG_BACKUP) {
1908                        Slog.i(TAG, "Post-restore of " + packageName
1909                                + " sending FIRST_LAUNCH in " + Arrays.toString(firstUsers));
1910                    }
1911                    sendFirstLaunchBroadcast(packageName, installerPackage, firstUsers);
1912                }
1913
1914                // Send broadcast package appeared if forward locked/external for all users
1915                // treat asec-hosted packages like removable media on upgrade
1916                if (res.pkg.isForwardLocked() || isExternal(res.pkg)) {
1917                    if (DEBUG_INSTALL) {
1918                        Slog.i(TAG, "upgrading pkg " + res.pkg
1919                                + " is ASEC-hosted -> AVAILABLE");
1920                    }
1921                    final int[] uidArray = new int[]{res.pkg.applicationInfo.uid};
1922                    ArrayList<String> pkgList = new ArrayList<>(1);
1923                    pkgList.add(packageName);
1924                    sendResourcesChangedBroadcast(true, true, pkgList, uidArray, null);
1925                }
1926            }
1927
1928            // Work that needs to happen on first install within each user
1929            if (firstUsers != null && firstUsers.length > 0) {
1930                synchronized (mPackages) {
1931                    for (int userId : firstUsers) {
1932                        // If this app is a browser and it's newly-installed for some
1933                        // users, clear any default-browser state in those users. The
1934                        // app's nature doesn't depend on the user, so we can just check
1935                        // its browser nature in any user and generalize.
1936                        if (packageIsBrowser(packageName, userId)) {
1937                            mSettings.setDefaultBrowserPackageNameLPw(null, userId);
1938                        }
1939
1940                        // We may also need to apply pending (restored) runtime
1941                        // permission grants within these users.
1942                        mSettings.applyPendingPermissionGrantsLPw(packageName, userId);
1943                    }
1944                }
1945            }
1946
1947            // Log current value of "unknown sources" setting
1948            EventLog.writeEvent(EventLogTags.UNKNOWN_SOURCES_ENABLED,
1949                    getUnknownSourcesSettings());
1950
1951            // Force a gc to clear up things
1952            Runtime.getRuntime().gc();
1953
1954            // Remove the replaced package's older resources safely now
1955            // We delete after a gc for applications  on sdcard.
1956            if (res.removedInfo != null && res.removedInfo.args != null) {
1957                synchronized (mInstallLock) {
1958                    res.removedInfo.args.doPostDeleteLI(true);
1959                }
1960            }
1961        }
1962
1963        // If someone is watching installs - notify them
1964        if (installObserver != null) {
1965            try {
1966                Bundle extras = extrasForInstallResult(res);
1967                installObserver.onPackageInstalled(res.name, res.returnCode,
1968                        res.returnMsg, extras);
1969            } catch (RemoteException e) {
1970                Slog.i(TAG, "Observer no longer exists.");
1971            }
1972        }
1973    }
1974
1975    private void grantRuntimePermissionsGrantedToDisabledPrivSysPackageParentLPw(
1976            PackageParser.Package pkg) {
1977        if (pkg.parentPackage == null) {
1978            return;
1979        }
1980        if (pkg.requestedPermissions == null) {
1981            return;
1982        }
1983        final PackageSetting disabledSysParentPs = mSettings
1984                .getDisabledSystemPkgLPr(pkg.parentPackage.packageName);
1985        if (disabledSysParentPs == null || disabledSysParentPs.pkg == null
1986                || !disabledSysParentPs.isPrivileged()
1987                || (disabledSysParentPs.childPackageNames != null
1988                        && !disabledSysParentPs.childPackageNames.isEmpty())) {
1989            return;
1990        }
1991        final int[] allUserIds = sUserManager.getUserIds();
1992        final int permCount = pkg.requestedPermissions.size();
1993        for (int i = 0; i < permCount; i++) {
1994            String permission = pkg.requestedPermissions.get(i);
1995            BasePermission bp = mSettings.mPermissions.get(permission);
1996            if (bp == null || !(bp.isRuntime() || bp.isDevelopment())) {
1997                continue;
1998            }
1999            for (int userId : allUserIds) {
2000                if (disabledSysParentPs.getPermissionsState().hasRuntimePermission(
2001                        permission, userId)) {
2002                    grantRuntimePermission(pkg.packageName, permission, userId);
2003                }
2004            }
2005        }
2006    }
2007
2008    private StorageEventListener mStorageListener = new StorageEventListener() {
2009        @Override
2010        public void onVolumeStateChanged(VolumeInfo vol, int oldState, int newState) {
2011            if (vol.type == VolumeInfo.TYPE_PRIVATE) {
2012                if (vol.state == VolumeInfo.STATE_MOUNTED) {
2013                    final String volumeUuid = vol.getFsUuid();
2014
2015                    // Clean up any users or apps that were removed or recreated
2016                    // while this volume was missing
2017                    reconcileUsers(volumeUuid);
2018                    reconcileApps(volumeUuid);
2019
2020                    // Clean up any install sessions that expired or were
2021                    // cancelled while this volume was missing
2022                    mInstallerService.onPrivateVolumeMounted(volumeUuid);
2023
2024                    loadPrivatePackages(vol);
2025
2026                } else if (vol.state == VolumeInfo.STATE_EJECTING) {
2027                    unloadPrivatePackages(vol);
2028                }
2029            }
2030
2031            if (vol.type == VolumeInfo.TYPE_PUBLIC && vol.isPrimary()) {
2032                if (vol.state == VolumeInfo.STATE_MOUNTED) {
2033                    updateExternalMediaStatus(true, false);
2034                } else if (vol.state == VolumeInfo.STATE_EJECTING) {
2035                    updateExternalMediaStatus(false, false);
2036                }
2037            }
2038        }
2039
2040        @Override
2041        public void onVolumeForgotten(String fsUuid) {
2042            if (TextUtils.isEmpty(fsUuid)) {
2043                Slog.e(TAG, "Forgetting internal storage is probably a mistake; ignoring");
2044                return;
2045            }
2046
2047            // Remove any apps installed on the forgotten volume
2048            synchronized (mPackages) {
2049                final List<PackageSetting> packages = mSettings.getVolumePackagesLPr(fsUuid);
2050                for (PackageSetting ps : packages) {
2051                    Slog.d(TAG, "Destroying " + ps.name + " because volume was forgotten");
2052                    deletePackage(ps.name, new LegacyPackageDeleteObserver(null).getBinder(),
2053                            UserHandle.USER_SYSTEM, PackageManager.DELETE_ALL_USERS);
2054                }
2055
2056                mSettings.onVolumeForgotten(fsUuid);
2057                mSettings.writeLPr();
2058            }
2059        }
2060    };
2061
2062    private void grantRequestedRuntimePermissions(PackageParser.Package pkg, int[] userIds,
2063            String[] grantedPermissions) {
2064        for (int userId : userIds) {
2065            grantRequestedRuntimePermissionsForUser(pkg, userId, grantedPermissions);
2066        }
2067
2068        // We could have touched GID membership, so flush out packages.list
2069        synchronized (mPackages) {
2070            mSettings.writePackageListLPr();
2071        }
2072    }
2073
2074    private void grantRequestedRuntimePermissionsForUser(PackageParser.Package pkg, int userId,
2075            String[] grantedPermissions) {
2076        SettingBase sb = (SettingBase) pkg.mExtras;
2077        if (sb == null) {
2078            return;
2079        }
2080
2081        PermissionsState permissionsState = sb.getPermissionsState();
2082
2083        final int immutableFlags = PackageManager.FLAG_PERMISSION_SYSTEM_FIXED
2084                | PackageManager.FLAG_PERMISSION_POLICY_FIXED;
2085
2086        for (String permission : pkg.requestedPermissions) {
2087            final BasePermission bp;
2088            synchronized (mPackages) {
2089                bp = mSettings.mPermissions.get(permission);
2090            }
2091            if (bp != null && (bp.isRuntime() || bp.isDevelopment())
2092                    && (grantedPermissions == null
2093                           || ArrayUtils.contains(grantedPermissions, permission))) {
2094                final int flags = permissionsState.getPermissionFlags(permission, userId);
2095                // Installer cannot change immutable permissions.
2096                if ((flags & immutableFlags) == 0) {
2097                    grantRuntimePermission(pkg.packageName, permission, userId);
2098                }
2099            }
2100        }
2101    }
2102
2103    Bundle extrasForInstallResult(PackageInstalledInfo res) {
2104        Bundle extras = null;
2105        switch (res.returnCode) {
2106            case PackageManager.INSTALL_FAILED_DUPLICATE_PERMISSION: {
2107                extras = new Bundle();
2108                extras.putString(PackageManager.EXTRA_FAILURE_EXISTING_PERMISSION,
2109                        res.origPermission);
2110                extras.putString(PackageManager.EXTRA_FAILURE_EXISTING_PACKAGE,
2111                        res.origPackage);
2112                break;
2113            }
2114            case PackageManager.INSTALL_SUCCEEDED: {
2115                extras = new Bundle();
2116                extras.putBoolean(Intent.EXTRA_REPLACING,
2117                        res.removedInfo != null && res.removedInfo.removedPackage != null);
2118                break;
2119            }
2120        }
2121        return extras;
2122    }
2123
2124    void scheduleWriteSettingsLocked() {
2125        if (!mHandler.hasMessages(WRITE_SETTINGS)) {
2126            mHandler.sendEmptyMessageDelayed(WRITE_SETTINGS, WRITE_SETTINGS_DELAY);
2127        }
2128    }
2129
2130    void scheduleWritePackageListLocked(int userId) {
2131        if (!mHandler.hasMessages(WRITE_PACKAGE_LIST)) {
2132            Message msg = mHandler.obtainMessage(WRITE_PACKAGE_LIST);
2133            msg.arg1 = userId;
2134            mHandler.sendMessageDelayed(msg, WRITE_SETTINGS_DELAY);
2135        }
2136    }
2137
2138    void scheduleWritePackageRestrictionsLocked(UserHandle user) {
2139        final int userId = user == null ? UserHandle.USER_ALL : user.getIdentifier();
2140        scheduleWritePackageRestrictionsLocked(userId);
2141    }
2142
2143    void scheduleWritePackageRestrictionsLocked(int userId) {
2144        final int[] userIds = (userId == UserHandle.USER_ALL)
2145                ? sUserManager.getUserIds() : new int[]{userId};
2146        for (int nextUserId : userIds) {
2147            if (!sUserManager.exists(nextUserId)) return;
2148            mDirtyUsers.add(nextUserId);
2149            if (!mHandler.hasMessages(WRITE_PACKAGE_RESTRICTIONS)) {
2150                mHandler.sendEmptyMessageDelayed(WRITE_PACKAGE_RESTRICTIONS, WRITE_SETTINGS_DELAY);
2151            }
2152        }
2153    }
2154
2155    public static PackageManagerService main(Context context, Installer installer,
2156            boolean factoryTest, boolean onlyCore) {
2157        // Self-check for initial settings.
2158        PackageManagerServiceCompilerMapping.checkProperties();
2159
2160        PackageManagerService m = new PackageManagerService(context, installer,
2161                factoryTest, onlyCore);
2162        m.enableSystemUserPackages();
2163        // Disable any carrier apps. We do this very early in boot to prevent the apps from being
2164        // disabled after already being started.
2165        CarrierAppUtils.disableCarrierAppsUntilPrivileged(context.getOpPackageName(), m,
2166                UserHandle.USER_SYSTEM);
2167        ServiceManager.addService("package", m);
2168        return m;
2169    }
2170
2171    private void enableSystemUserPackages() {
2172        if (!UserManager.isSplitSystemUser()) {
2173            return;
2174        }
2175        // For system user, enable apps based on the following conditions:
2176        // - app is whitelisted or belong to one of these groups:
2177        //   -- system app which has no launcher icons
2178        //   -- system app which has INTERACT_ACROSS_USERS permission
2179        //   -- system IME app
2180        // - app is not in the blacklist
2181        AppsQueryHelper queryHelper = new AppsQueryHelper(this);
2182        Set<String> enableApps = new ArraySet<>();
2183        enableApps.addAll(queryHelper.queryApps(AppsQueryHelper.GET_NON_LAUNCHABLE_APPS
2184                | AppsQueryHelper.GET_APPS_WITH_INTERACT_ACROSS_USERS_PERM
2185                | AppsQueryHelper.GET_IMES, /* systemAppsOnly */ true, UserHandle.SYSTEM));
2186        ArraySet<String> wlApps = SystemConfig.getInstance().getSystemUserWhitelistedApps();
2187        enableApps.addAll(wlApps);
2188        enableApps.addAll(queryHelper.queryApps(AppsQueryHelper.GET_REQUIRED_FOR_SYSTEM_USER,
2189                /* systemAppsOnly */ false, UserHandle.SYSTEM));
2190        ArraySet<String> blApps = SystemConfig.getInstance().getSystemUserBlacklistedApps();
2191        enableApps.removeAll(blApps);
2192        Log.i(TAG, "Applications installed for system user: " + enableApps);
2193        List<String> allAps = queryHelper.queryApps(0, /* systemAppsOnly */ false,
2194                UserHandle.SYSTEM);
2195        final int allAppsSize = allAps.size();
2196        synchronized (mPackages) {
2197            for (int i = 0; i < allAppsSize; i++) {
2198                String pName = allAps.get(i);
2199                PackageSetting pkgSetting = mSettings.mPackages.get(pName);
2200                // Should not happen, but we shouldn't be failing if it does
2201                if (pkgSetting == null) {
2202                    continue;
2203                }
2204                boolean install = enableApps.contains(pName);
2205                if (pkgSetting.getInstalled(UserHandle.USER_SYSTEM) != install) {
2206                    Log.i(TAG, (install ? "Installing " : "Uninstalling ") + pName
2207                            + " for system user");
2208                    pkgSetting.setInstalled(install, UserHandle.USER_SYSTEM);
2209                }
2210            }
2211        }
2212    }
2213
2214    private static void getDefaultDisplayMetrics(Context context, DisplayMetrics metrics) {
2215        DisplayManager displayManager = (DisplayManager) context.getSystemService(
2216                Context.DISPLAY_SERVICE);
2217        displayManager.getDisplay(Display.DEFAULT_DISPLAY).getMetrics(metrics);
2218    }
2219
2220    public PackageManagerService(Context context, Installer installer,
2221            boolean factoryTest, boolean onlyCore) {
2222        EventLog.writeEvent(EventLogTags.BOOT_PROGRESS_PMS_START,
2223                SystemClock.uptimeMillis());
2224
2225        if (mSdkVersion <= 0) {
2226            Slog.w(TAG, "**** ro.build.version.sdk not set!");
2227        }
2228
2229        mContext = context;
2230        mFactoryTest = factoryTest;
2231        mOnlyCore = onlyCore;
2232        mMetrics = new DisplayMetrics();
2233        mSettings = new Settings(mPackages);
2234        mSettings.addSharedUserLPw("android.uid.system", Process.SYSTEM_UID,
2235                ApplicationInfo.FLAG_SYSTEM, ApplicationInfo.PRIVATE_FLAG_PRIVILEGED);
2236        mSettings.addSharedUserLPw("android.uid.phone", RADIO_UID,
2237                ApplicationInfo.FLAG_SYSTEM, ApplicationInfo.PRIVATE_FLAG_PRIVILEGED);
2238        mSettings.addSharedUserLPw("android.uid.log", LOG_UID,
2239                ApplicationInfo.FLAG_SYSTEM, ApplicationInfo.PRIVATE_FLAG_PRIVILEGED);
2240        mSettings.addSharedUserLPw("android.uid.nfc", NFC_UID,
2241                ApplicationInfo.FLAG_SYSTEM, ApplicationInfo.PRIVATE_FLAG_PRIVILEGED);
2242        mSettings.addSharedUserLPw("android.uid.bluetooth", BLUETOOTH_UID,
2243                ApplicationInfo.FLAG_SYSTEM, ApplicationInfo.PRIVATE_FLAG_PRIVILEGED);
2244        mSettings.addSharedUserLPw("android.uid.shell", SHELL_UID,
2245                ApplicationInfo.FLAG_SYSTEM, ApplicationInfo.PRIVATE_FLAG_PRIVILEGED);
2246
2247        String separateProcesses = SystemProperties.get("debug.separate_processes");
2248        if (separateProcesses != null && separateProcesses.length() > 0) {
2249            if ("*".equals(separateProcesses)) {
2250                mDefParseFlags = PackageParser.PARSE_IGNORE_PROCESSES;
2251                mSeparateProcesses = null;
2252                Slog.w(TAG, "Running with debug.separate_processes: * (ALL)");
2253            } else {
2254                mDefParseFlags = 0;
2255                mSeparateProcesses = separateProcesses.split(",");
2256                Slog.w(TAG, "Running with debug.separate_processes: "
2257                        + separateProcesses);
2258            }
2259        } else {
2260            mDefParseFlags = 0;
2261            mSeparateProcesses = null;
2262        }
2263
2264        mInstaller = installer;
2265        mPackageDexOptimizer = new PackageDexOptimizer(installer, mInstallLock, context,
2266                "*dexopt*");
2267        mMoveCallbacks = new MoveCallbacks(FgThread.get().getLooper());
2268
2269        mOnPermissionChangeListeners = new OnPermissionChangeListeners(
2270                FgThread.get().getLooper());
2271
2272        getDefaultDisplayMetrics(context, mMetrics);
2273
2274        SystemConfig systemConfig = SystemConfig.getInstance();
2275        mGlobalGids = systemConfig.getGlobalGids();
2276        mSystemPermissions = systemConfig.getSystemPermissions();
2277        mAvailableFeatures = systemConfig.getAvailableFeatures();
2278
2279        synchronized (mInstallLock) {
2280        // writer
2281        synchronized (mPackages) {
2282            mHandlerThread = new ServiceThread(TAG,
2283                    Process.THREAD_PRIORITY_BACKGROUND, true /*allowIo*/);
2284            mHandlerThread.start();
2285            mHandler = new PackageHandler(mHandlerThread.getLooper());
2286            mProcessLoggingHandler = new ProcessLoggingHandler();
2287            Watchdog.getInstance().addThread(mHandler, WATCHDOG_TIMEOUT);
2288
2289            File dataDir = Environment.getDataDirectory();
2290            mAppInstallDir = new File(dataDir, "app");
2291            mAppLib32InstallDir = new File(dataDir, "app-lib");
2292            mEphemeralInstallDir = new File(dataDir, "app-ephemeral");
2293            mAsecInternalPath = new File(dataDir, "app-asec").getPath();
2294            mDrmAppPrivateInstallDir = new File(dataDir, "app-private");
2295
2296            sUserManager = new UserManagerService(context, this, mPackages);
2297
2298            // Propagate permission configuration in to package manager.
2299            ArrayMap<String, SystemConfig.PermissionEntry> permConfig
2300                    = systemConfig.getPermissions();
2301            for (int i=0; i<permConfig.size(); i++) {
2302                SystemConfig.PermissionEntry perm = permConfig.valueAt(i);
2303                BasePermission bp = mSettings.mPermissions.get(perm.name);
2304                if (bp == null) {
2305                    bp = new BasePermission(perm.name, "android", BasePermission.TYPE_BUILTIN);
2306                    mSettings.mPermissions.put(perm.name, bp);
2307                }
2308                if (perm.gids != null) {
2309                    bp.setGids(perm.gids, perm.perUser);
2310                }
2311            }
2312
2313            ArrayMap<String, String> libConfig = systemConfig.getSharedLibraries();
2314            for (int i=0; i<libConfig.size(); i++) {
2315                mSharedLibraries.put(libConfig.keyAt(i),
2316                        new SharedLibraryEntry(libConfig.valueAt(i), null));
2317            }
2318
2319            mFoundPolicyFile = SELinuxMMAC.readInstallPolicy();
2320
2321            mRestoredSettings = mSettings.readLPw(sUserManager.getUsers(false));
2322
2323            String customResolverActivity = Resources.getSystem().getString(
2324                    R.string.config_customResolverActivity);
2325            if (TextUtils.isEmpty(customResolverActivity)) {
2326                customResolverActivity = null;
2327            } else {
2328                mCustomResolverComponentName = ComponentName.unflattenFromString(
2329                        customResolverActivity);
2330            }
2331
2332            long startTime = SystemClock.uptimeMillis();
2333
2334            EventLog.writeEvent(EventLogTags.BOOT_PROGRESS_PMS_SYSTEM_SCAN_START,
2335                    startTime);
2336
2337            // Set flag to monitor and not change apk file paths when
2338            // scanning install directories.
2339            final int scanFlags = SCAN_NO_PATHS | SCAN_DEFER_DEX | SCAN_BOOTING | SCAN_INITIAL;
2340
2341            final String bootClassPath = System.getenv("BOOTCLASSPATH");
2342            final String systemServerClassPath = System.getenv("SYSTEMSERVERCLASSPATH");
2343
2344            if (bootClassPath == null) {
2345                Slog.w(TAG, "No BOOTCLASSPATH found!");
2346            }
2347
2348            if (systemServerClassPath == null) {
2349                Slog.w(TAG, "No SYSTEMSERVERCLASSPATH found!");
2350            }
2351
2352            final List<String> allInstructionSets = InstructionSets.getAllInstructionSets();
2353            final String[] dexCodeInstructionSets =
2354                    getDexCodeInstructionSets(
2355                            allInstructionSets.toArray(new String[allInstructionSets.size()]));
2356
2357            /**
2358             * Ensure all external libraries have had dexopt run on them.
2359             */
2360            if (mSharedLibraries.size() > 0) {
2361                // NOTE: For now, we're compiling these system "shared libraries"
2362                // (and framework jars) into all available architectures. It's possible
2363                // to compile them only when we come across an app that uses them (there's
2364                // already logic for that in scanPackageLI) but that adds some complexity.
2365                for (String dexCodeInstructionSet : dexCodeInstructionSets) {
2366                    for (SharedLibraryEntry libEntry : mSharedLibraries.values()) {
2367                        final String lib = libEntry.path;
2368                        if (lib == null) {
2369                            continue;
2370                        }
2371
2372                        try {
2373                            // Shared libraries do not have profiles so we perform a full
2374                            // AOT compilation (if needed).
2375                            int dexoptNeeded = DexFile.getDexOptNeeded(
2376                                    lib, dexCodeInstructionSet,
2377                                    getCompilerFilterForReason(REASON_SHARED_APK),
2378                                    false /* newProfile */);
2379                            if (dexoptNeeded != DexFile.NO_DEXOPT_NEEDED) {
2380                                mInstaller.dexopt(lib, Process.SYSTEM_UID, dexCodeInstructionSet,
2381                                        dexoptNeeded, DEXOPT_PUBLIC /*dexFlags*/,
2382                                        getCompilerFilterForReason(REASON_SHARED_APK),
2383                                        StorageManager.UUID_PRIVATE_INTERNAL,
2384                                        SKIP_SHARED_LIBRARY_CHECK);
2385                            }
2386                        } catch (FileNotFoundException e) {
2387                            Slog.w(TAG, "Library not found: " + lib);
2388                        } catch (IOException | InstallerException e) {
2389                            Slog.w(TAG, "Cannot dexopt " + lib + "; is it an APK or JAR? "
2390                                    + e.getMessage());
2391                        }
2392                    }
2393                }
2394            }
2395
2396            File frameworkDir = new File(Environment.getRootDirectory(), "framework");
2397
2398            final VersionInfo ver = mSettings.getInternalVersion();
2399            mIsUpgrade = !Build.FINGERPRINT.equals(ver.fingerprint);
2400
2401            // when upgrading from pre-M, promote system app permissions from install to runtime
2402            mPromoteSystemApps =
2403                    mIsUpgrade && ver.sdkVersion <= Build.VERSION_CODES.LOLLIPOP_MR1;
2404
2405            // When upgrading from pre-N, we need to handle package extraction like first boot,
2406            // as there is no profiling data available.
2407            mIsPreNUpgrade = mIsUpgrade && ver.sdkVersion < Build.VERSION_CODES.N;
2408
2409            // save off the names of pre-existing system packages prior to scanning; we don't
2410            // want to automatically grant runtime permissions for new system apps
2411            if (mPromoteSystemApps) {
2412                Iterator<PackageSetting> pkgSettingIter = mSettings.mPackages.values().iterator();
2413                while (pkgSettingIter.hasNext()) {
2414                    PackageSetting ps = pkgSettingIter.next();
2415                    if (isSystemApp(ps)) {
2416                        mExistingSystemPackages.add(ps.name);
2417                    }
2418                }
2419            }
2420
2421            // Collect vendor overlay packages.
2422            // (Do this before scanning any apps.)
2423            // For security and version matching reason, only consider
2424            // overlay packages if they reside in VENDOR_OVERLAY_DIR.
2425            File vendorOverlayDir = new File(VENDOR_OVERLAY_DIR);
2426            scanDirTracedLI(vendorOverlayDir, mDefParseFlags
2427                    | PackageParser.PARSE_IS_SYSTEM
2428                    | PackageParser.PARSE_IS_SYSTEM_DIR
2429                    | PackageParser.PARSE_TRUSTED_OVERLAY, scanFlags | SCAN_TRUSTED_OVERLAY, 0);
2430
2431            // Find base frameworks (resource packages without code).
2432            scanDirTracedLI(frameworkDir, mDefParseFlags
2433                    | PackageParser.PARSE_IS_SYSTEM
2434                    | PackageParser.PARSE_IS_SYSTEM_DIR
2435                    | PackageParser.PARSE_IS_PRIVILEGED,
2436                    scanFlags | SCAN_NO_DEX, 0);
2437
2438            // Collected privileged system packages.
2439            final File privilegedAppDir = new File(Environment.getRootDirectory(), "priv-app");
2440            scanDirTracedLI(privilegedAppDir, mDefParseFlags
2441                    | PackageParser.PARSE_IS_SYSTEM
2442                    | PackageParser.PARSE_IS_SYSTEM_DIR
2443                    | PackageParser.PARSE_IS_PRIVILEGED, scanFlags, 0);
2444
2445            // Collect ordinary system packages.
2446            final File systemAppDir = new File(Environment.getRootDirectory(), "app");
2447            scanDirTracedLI(systemAppDir, mDefParseFlags
2448                    | PackageParser.PARSE_IS_SYSTEM
2449                    | PackageParser.PARSE_IS_SYSTEM_DIR, scanFlags, 0);
2450
2451            // Collect all vendor packages.
2452            File vendorAppDir = new File("/vendor/app");
2453            try {
2454                vendorAppDir = vendorAppDir.getCanonicalFile();
2455            } catch (IOException e) {
2456                // failed to look up canonical path, continue with original one
2457            }
2458            scanDirTracedLI(vendorAppDir, mDefParseFlags
2459                    | PackageParser.PARSE_IS_SYSTEM
2460                    | PackageParser.PARSE_IS_SYSTEM_DIR, scanFlags, 0);
2461
2462            // Collect all OEM packages.
2463            final File oemAppDir = new File(Environment.getOemDirectory(), "app");
2464            scanDirTracedLI(oemAppDir, mDefParseFlags
2465                    | PackageParser.PARSE_IS_SYSTEM
2466                    | PackageParser.PARSE_IS_SYSTEM_DIR, scanFlags, 0);
2467
2468            // Prune any system packages that no longer exist.
2469            final List<String> possiblyDeletedUpdatedSystemApps = new ArrayList<String>();
2470            if (!mOnlyCore) {
2471                Iterator<PackageSetting> psit = mSettings.mPackages.values().iterator();
2472                while (psit.hasNext()) {
2473                    PackageSetting ps = psit.next();
2474
2475                    /*
2476                     * If this is not a system app, it can't be a
2477                     * disable system app.
2478                     */
2479                    if ((ps.pkgFlags & ApplicationInfo.FLAG_SYSTEM) == 0) {
2480                        continue;
2481                    }
2482
2483                    /*
2484                     * If the package is scanned, it's not erased.
2485                     */
2486                    final PackageParser.Package scannedPkg = mPackages.get(ps.name);
2487                    if (scannedPkg != null) {
2488                        /*
2489                         * If the system app is both scanned and in the
2490                         * disabled packages list, then it must have been
2491                         * added via OTA. Remove it from the currently
2492                         * scanned package so the previously user-installed
2493                         * application can be scanned.
2494                         */
2495                        if (mSettings.isDisabledSystemPackageLPr(ps.name)) {
2496                            logCriticalInfo(Log.WARN, "Expecting better updated system app for "
2497                                    + ps.name + "; removing system app.  Last known codePath="
2498                                    + ps.codePathString + ", installStatus=" + ps.installStatus
2499                                    + ", versionCode=" + ps.versionCode + "; scanned versionCode="
2500                                    + scannedPkg.mVersionCode);
2501                            removePackageLI(scannedPkg, true);
2502                            mExpectingBetter.put(ps.name, ps.codePath);
2503                        }
2504
2505                        continue;
2506                    }
2507
2508                    if (!mSettings.isDisabledSystemPackageLPr(ps.name)) {
2509                        psit.remove();
2510                        logCriticalInfo(Log.WARN, "System package " + ps.name
2511                                + " no longer exists; it's data will be wiped");
2512                        // Actual deletion of code and data will be handled by later
2513                        // reconciliation step
2514                    } else {
2515                        final PackageSetting disabledPs = mSettings.getDisabledSystemPkgLPr(ps.name);
2516                        if (disabledPs.codePath == null || !disabledPs.codePath.exists()) {
2517                            possiblyDeletedUpdatedSystemApps.add(ps.name);
2518                        }
2519                    }
2520                }
2521            }
2522
2523            //look for any incomplete package installations
2524            ArrayList<PackageSetting> deletePkgsList = mSettings.getListOfIncompleteInstallPackagesLPr();
2525            for (int i = 0; i < deletePkgsList.size(); i++) {
2526                // Actual deletion of code and data will be handled by later
2527                // reconciliation step
2528                final String packageName = deletePkgsList.get(i).name;
2529                logCriticalInfo(Log.WARN, "Cleaning up incompletely installed app: " + packageName);
2530                synchronized (mPackages) {
2531                    mSettings.removePackageLPw(packageName);
2532                }
2533            }
2534
2535            //delete tmp files
2536            deleteTempPackageFiles();
2537
2538            // Remove any shared userIDs that have no associated packages
2539            mSettings.pruneSharedUsersLPw();
2540
2541            if (!mOnlyCore) {
2542                EventLog.writeEvent(EventLogTags.BOOT_PROGRESS_PMS_DATA_SCAN_START,
2543                        SystemClock.uptimeMillis());
2544                scanDirTracedLI(mAppInstallDir, 0, scanFlags | SCAN_REQUIRE_KNOWN, 0);
2545
2546                scanDirTracedLI(mDrmAppPrivateInstallDir, mDefParseFlags
2547                        | PackageParser.PARSE_FORWARD_LOCK,
2548                        scanFlags | SCAN_REQUIRE_KNOWN, 0);
2549
2550                scanDirLI(mEphemeralInstallDir, mDefParseFlags
2551                        | PackageParser.PARSE_IS_EPHEMERAL,
2552                        scanFlags | SCAN_REQUIRE_KNOWN, 0);
2553
2554                /**
2555                 * Remove disable package settings for any updated system
2556                 * apps that were removed via an OTA. If they're not a
2557                 * previously-updated app, remove them completely.
2558                 * Otherwise, just revoke their system-level permissions.
2559                 */
2560                for (String deletedAppName : possiblyDeletedUpdatedSystemApps) {
2561                    PackageParser.Package deletedPkg = mPackages.get(deletedAppName);
2562                    mSettings.removeDisabledSystemPackageLPw(deletedAppName);
2563
2564                    String msg;
2565                    if (deletedPkg == null) {
2566                        msg = "Updated system package " + deletedAppName
2567                                + " no longer exists; it's data will be wiped";
2568                        // Actual deletion of code and data will be handled by later
2569                        // reconciliation step
2570                    } else {
2571                        msg = "Updated system app + " + deletedAppName
2572                                + " no longer present; removing system privileges for "
2573                                + deletedAppName;
2574
2575                        deletedPkg.applicationInfo.flags &= ~ApplicationInfo.FLAG_SYSTEM;
2576
2577                        PackageSetting deletedPs = mSettings.mPackages.get(deletedAppName);
2578                        deletedPs.pkgFlags &= ~ApplicationInfo.FLAG_SYSTEM;
2579                    }
2580                    logCriticalInfo(Log.WARN, msg);
2581                }
2582
2583                /**
2584                 * Make sure all system apps that we expected to appear on
2585                 * the userdata partition actually showed up. If they never
2586                 * appeared, crawl back and revive the system version.
2587                 */
2588                for (int i = 0; i < mExpectingBetter.size(); i++) {
2589                    final String packageName = mExpectingBetter.keyAt(i);
2590                    if (!mPackages.containsKey(packageName)) {
2591                        final File scanFile = mExpectingBetter.valueAt(i);
2592
2593                        logCriticalInfo(Log.WARN, "Expected better " + packageName
2594                                + " but never showed up; reverting to system");
2595
2596                        int reparseFlags = mDefParseFlags;
2597                        if (FileUtils.contains(privilegedAppDir, scanFile)) {
2598                            reparseFlags = PackageParser.PARSE_IS_SYSTEM
2599                                    | PackageParser.PARSE_IS_SYSTEM_DIR
2600                                    | PackageParser.PARSE_IS_PRIVILEGED;
2601                        } else if (FileUtils.contains(systemAppDir, scanFile)) {
2602                            reparseFlags = PackageParser.PARSE_IS_SYSTEM
2603                                    | PackageParser.PARSE_IS_SYSTEM_DIR;
2604                        } else if (FileUtils.contains(vendorAppDir, scanFile)) {
2605                            reparseFlags = PackageParser.PARSE_IS_SYSTEM
2606                                    | PackageParser.PARSE_IS_SYSTEM_DIR;
2607                        } else if (FileUtils.contains(oemAppDir, scanFile)) {
2608                            reparseFlags = PackageParser.PARSE_IS_SYSTEM
2609                                    | PackageParser.PARSE_IS_SYSTEM_DIR;
2610                        } else {
2611                            Slog.e(TAG, "Ignoring unexpected fallback path " + scanFile);
2612                            continue;
2613                        }
2614
2615                        mSettings.enableSystemPackageLPw(packageName);
2616
2617                        try {
2618                            scanPackageTracedLI(scanFile, reparseFlags, scanFlags, 0, null);
2619                        } catch (PackageManagerException e) {
2620                            Slog.e(TAG, "Failed to parse original system package: "
2621                                    + e.getMessage());
2622                        }
2623                    }
2624                }
2625            }
2626            mExpectingBetter.clear();
2627
2628            // Resolve protected action filters. Only the setup wizard is allowed to
2629            // have a high priority filter for these actions.
2630            mSetupWizardPackage = getSetupWizardPackageName();
2631            if (mProtectedFilters.size() > 0) {
2632                if (DEBUG_FILTERS && mSetupWizardPackage == null) {
2633                    Slog.i(TAG, "No setup wizard;"
2634                        + " All protected intents capped to priority 0");
2635                }
2636                for (ActivityIntentInfo filter : mProtectedFilters) {
2637                    if (filter.activity.info.packageName.equals(mSetupWizardPackage)) {
2638                        if (DEBUG_FILTERS) {
2639                            Slog.i(TAG, "Found setup wizard;"
2640                                + " allow priority " + filter.getPriority() + ";"
2641                                + " package: " + filter.activity.info.packageName
2642                                + " activity: " + filter.activity.className
2643                                + " priority: " + filter.getPriority());
2644                        }
2645                        // skip setup wizard; allow it to keep the high priority filter
2646                        continue;
2647                    }
2648                    Slog.w(TAG, "Protected action; cap priority to 0;"
2649                            + " package: " + filter.activity.info.packageName
2650                            + " activity: " + filter.activity.className
2651                            + " origPrio: " + filter.getPriority());
2652                    filter.setPriority(0);
2653                }
2654            }
2655            mDeferProtectedFilters = false;
2656            mProtectedFilters.clear();
2657
2658            // Now that we know all of the shared libraries, update all clients to have
2659            // the correct library paths.
2660            updateAllSharedLibrariesLPw();
2661
2662            for (SharedUserSetting setting : mSettings.getAllSharedUsersLPw()) {
2663                // NOTE: We ignore potential failures here during a system scan (like
2664                // the rest of the commands above) because there's precious little we
2665                // can do about it. A settings error is reported, though.
2666                adjustCpuAbisForSharedUserLPw(setting.packages, null /* scanned package */,
2667                        false /* boot complete */);
2668            }
2669
2670            // Now that we know all the packages we are keeping,
2671            // read and update their last usage times.
2672            mPackageUsage.readLP();
2673
2674            EventLog.writeEvent(EventLogTags.BOOT_PROGRESS_PMS_SCAN_END,
2675                    SystemClock.uptimeMillis());
2676            Slog.i(TAG, "Time to scan packages: "
2677                    + ((SystemClock.uptimeMillis()-startTime)/1000f)
2678                    + " seconds");
2679
2680            // If the platform SDK has changed since the last time we booted,
2681            // we need to re-grant app permission to catch any new ones that
2682            // appear.  This is really a hack, and means that apps can in some
2683            // cases get permissions that the user didn't initially explicitly
2684            // allow...  it would be nice to have some better way to handle
2685            // this situation.
2686            int updateFlags = UPDATE_PERMISSIONS_ALL;
2687            if (ver.sdkVersion != mSdkVersion) {
2688                Slog.i(TAG, "Platform changed from " + ver.sdkVersion + " to "
2689                        + mSdkVersion + "; regranting permissions for internal storage");
2690                updateFlags |= UPDATE_PERMISSIONS_REPLACE_PKG | UPDATE_PERMISSIONS_REPLACE_ALL;
2691            }
2692            updatePermissionsLPw(null, null, StorageManager.UUID_PRIVATE_INTERNAL, updateFlags);
2693            ver.sdkVersion = mSdkVersion;
2694
2695            // If this is the first boot or an update from pre-M, and it is a normal
2696            // boot, then we need to initialize the default preferred apps across
2697            // all defined users.
2698            if (!onlyCore && (mPromoteSystemApps || !mRestoredSettings)) {
2699                for (UserInfo user : sUserManager.getUsers(true)) {
2700                    mSettings.applyDefaultPreferredAppsLPw(this, user.id);
2701                    applyFactoryDefaultBrowserLPw(user.id);
2702                    primeDomainVerificationsLPw(user.id);
2703                }
2704            }
2705
2706            // Prepare storage for system user really early during boot,
2707            // since core system apps like SettingsProvider and SystemUI
2708            // can't wait for user to start
2709            final int storageFlags;
2710            if (StorageManager.isFileEncryptedNativeOrEmulated()) {
2711                storageFlags = StorageManager.FLAG_STORAGE_DE;
2712            } else {
2713                storageFlags = StorageManager.FLAG_STORAGE_DE | StorageManager.FLAG_STORAGE_CE;
2714            }
2715            reconcileAppsDataLI(StorageManager.UUID_PRIVATE_INTERNAL, UserHandle.USER_SYSTEM,
2716                    storageFlags);
2717
2718            // If this is first boot after an OTA, and a normal boot, then
2719            // we need to clear code cache directories.
2720            // Note that we do *not* clear the application profiles. These remain valid
2721            // across OTAs and are used to drive profile verification (post OTA) and
2722            // profile compilation (without waiting to collect a fresh set of profiles).
2723            if (mIsUpgrade && !onlyCore) {
2724                Slog.i(TAG, "Build fingerprint changed; clearing code caches");
2725                for (int i = 0; i < mSettings.mPackages.size(); i++) {
2726                    final PackageSetting ps = mSettings.mPackages.valueAt(i);
2727                    if (Objects.equals(StorageManager.UUID_PRIVATE_INTERNAL, ps.volumeUuid)) {
2728                        // No apps are running this early, so no need to freeze
2729                        clearAppDataLIF(ps.pkg, UserHandle.USER_ALL,
2730                                StorageManager.FLAG_STORAGE_DE | StorageManager.FLAG_STORAGE_CE
2731                                        | Installer.FLAG_CLEAR_CODE_CACHE_ONLY);
2732                    }
2733                }
2734                ver.fingerprint = Build.FINGERPRINT;
2735            }
2736
2737            checkDefaultBrowser();
2738
2739            // clear only after permissions and other defaults have been updated
2740            mExistingSystemPackages.clear();
2741            mPromoteSystemApps = false;
2742
2743            // All the changes are done during package scanning.
2744            ver.databaseVersion = Settings.CURRENT_DATABASE_VERSION;
2745
2746            // can downgrade to reader
2747            mSettings.writeLPr();
2748
2749            // Perform dexopt on all apps that mark themselves as coreApps. We do this pretty
2750            // early on (before the package manager declares itself as early) because other
2751            // components in the system server might ask for package contexts for these apps.
2752            //
2753            // Note that "onlyCore" in this context means the system is encrypted or encrypting
2754            // (i.e, that the data partition is unavailable).
2755            if ((isFirstBoot() || isUpgrade() || VMRuntime.didPruneDalvikCache()) && !onlyCore) {
2756                long start = System.nanoTime();
2757                List<PackageParser.Package> coreApps = new ArrayList<>();
2758                for (PackageParser.Package pkg : mPackages.values()) {
2759                    if (pkg.coreApp) {
2760                        coreApps.add(pkg);
2761                    }
2762                }
2763
2764                int[] stats = performDexOpt(coreApps, false,
2765                        getCompilerFilterForReason(REASON_CORE_APP));
2766
2767                final int elapsedTimeSeconds =
2768                        (int) TimeUnit.NANOSECONDS.toSeconds(System.nanoTime() - start);
2769                MetricsLogger.histogram(mContext, "opt_coreapps_time_s", elapsedTimeSeconds);
2770
2771                if (DEBUG_DEXOPT) {
2772                    Slog.i(TAG, "Dex-opt core apps took : " + elapsedTimeSeconds + " seconds (" +
2773                            stats[0] + ", " + stats[1] + ", " + stats[2] + ")");
2774                }
2775
2776
2777                // TODO: Should we log these stats to tron too ?
2778                // MetricsLogger.histogram(mContext, "opt_coreapps_num_dexopted", stats[0]);
2779                // MetricsLogger.histogram(mContext, "opt_coreapps_num_skipped", stats[1]);
2780                // MetricsLogger.histogram(mContext, "opt_coreapps_num_failed", stats[2]);
2781                // MetricsLogger.histogram(mContext, "opt_coreapps_num_total", coreApps.size());
2782            }
2783
2784            EventLog.writeEvent(EventLogTags.BOOT_PROGRESS_PMS_READY,
2785                    SystemClock.uptimeMillis());
2786
2787            if (!mOnlyCore) {
2788                mRequiredVerifierPackage = getRequiredButNotReallyRequiredVerifierLPr();
2789                mRequiredInstallerPackage = getRequiredInstallerLPr();
2790                mIntentFilterVerifierComponent = getIntentFilterVerifierComponentNameLPr();
2791                mIntentFilterVerifier = new IntentVerifierProxy(mContext,
2792                        mIntentFilterVerifierComponent);
2793                mServicesSystemSharedLibraryPackageName = getRequiredSharedLibraryLPr(
2794                        PackageManager.SYSTEM_SHARED_LIBRARY_SERVICES);
2795                mSharedSystemSharedLibraryPackageName = getRequiredSharedLibraryLPr(
2796                        PackageManager.SYSTEM_SHARED_LIBRARY_SHARED);
2797            } else {
2798                mRequiredVerifierPackage = null;
2799                mRequiredInstallerPackage = null;
2800                mIntentFilterVerifierComponent = null;
2801                mIntentFilterVerifier = null;
2802                mServicesSystemSharedLibraryPackageName = null;
2803                mSharedSystemSharedLibraryPackageName = null;
2804            }
2805
2806            mInstallerService = new PackageInstallerService(context, this);
2807
2808            final ComponentName ephemeralResolverComponent = getEphemeralResolverLPr();
2809            final ComponentName ephemeralInstallerComponent = getEphemeralInstallerLPr();
2810            // both the installer and resolver must be present to enable ephemeral
2811            if (ephemeralInstallerComponent != null && ephemeralResolverComponent != null) {
2812                if (DEBUG_EPHEMERAL) {
2813                    Slog.i(TAG, "Ephemeral activated; resolver: " + ephemeralResolverComponent
2814                            + " installer:" + ephemeralInstallerComponent);
2815                }
2816                mEphemeralResolverComponent = ephemeralResolverComponent;
2817                mEphemeralInstallerComponent = ephemeralInstallerComponent;
2818                setUpEphemeralInstallerActivityLP(mEphemeralInstallerComponent);
2819                mEphemeralResolverConnection =
2820                        new EphemeralResolverConnection(mContext, mEphemeralResolverComponent);
2821            } else {
2822                if (DEBUG_EPHEMERAL) {
2823                    final String missingComponent =
2824                            (ephemeralResolverComponent == null)
2825                            ? (ephemeralInstallerComponent == null)
2826                                    ? "resolver and installer"
2827                                    : "resolver"
2828                            : "installer";
2829                    Slog.i(TAG, "Ephemeral deactivated; missing " + missingComponent);
2830                }
2831                mEphemeralResolverComponent = null;
2832                mEphemeralInstallerComponent = null;
2833                mEphemeralResolverConnection = null;
2834            }
2835
2836            mEphemeralApplicationRegistry = new EphemeralApplicationRegistry(this);
2837        } // synchronized (mPackages)
2838        } // synchronized (mInstallLock)
2839
2840        // Now after opening every single application zip, make sure they
2841        // are all flushed.  Not really needed, but keeps things nice and
2842        // tidy.
2843        Runtime.getRuntime().gc();
2844
2845        // The initial scanning above does many calls into installd while
2846        // holding the mPackages lock, but we're mostly interested in yelling
2847        // once we have a booted system.
2848        mInstaller.setWarnIfHeld(mPackages);
2849
2850        // Expose private service for system components to use.
2851        LocalServices.addService(PackageManagerInternal.class, new PackageManagerInternalImpl());
2852    }
2853
2854    @Override
2855    public boolean isFirstBoot() {
2856        return !mRestoredSettings;
2857    }
2858
2859    @Override
2860    public boolean isOnlyCoreApps() {
2861        return mOnlyCore;
2862    }
2863
2864    @Override
2865    public boolean isUpgrade() {
2866        return mIsUpgrade;
2867    }
2868
2869    private @Nullable String getRequiredButNotReallyRequiredVerifierLPr() {
2870        final Intent intent = new Intent(Intent.ACTION_PACKAGE_NEEDS_VERIFICATION);
2871
2872        final List<ResolveInfo> matches = queryIntentReceiversInternal(intent, PACKAGE_MIME_TYPE,
2873                MATCH_SYSTEM_ONLY | MATCH_DIRECT_BOOT_AWARE | MATCH_DIRECT_BOOT_UNAWARE,
2874                UserHandle.USER_SYSTEM);
2875        if (matches.size() == 1) {
2876            return matches.get(0).getComponentInfo().packageName;
2877        } else {
2878            Log.e(TAG, "There should probably be exactly one verifier; found " + matches);
2879            return null;
2880        }
2881    }
2882
2883    private @NonNull String getRequiredSharedLibraryLPr(String libraryName) {
2884        synchronized (mPackages) {
2885            SharedLibraryEntry libraryEntry = mSharedLibraries.get(libraryName);
2886            if (libraryEntry == null) {
2887                throw new IllegalStateException("Missing required shared library:" + libraryName);
2888            }
2889            return libraryEntry.apk;
2890        }
2891    }
2892
2893    private @NonNull String getRequiredInstallerLPr() {
2894        final Intent intent = new Intent(Intent.ACTION_INSTALL_PACKAGE);
2895        intent.addCategory(Intent.CATEGORY_DEFAULT);
2896        intent.setDataAndType(Uri.fromFile(new File("foo.apk")), PACKAGE_MIME_TYPE);
2897
2898        final List<ResolveInfo> matches = queryIntentActivitiesInternal(intent, PACKAGE_MIME_TYPE,
2899                MATCH_SYSTEM_ONLY | MATCH_DIRECT_BOOT_AWARE | MATCH_DIRECT_BOOT_UNAWARE,
2900                UserHandle.USER_SYSTEM);
2901        if (matches.size() == 1) {
2902            ResolveInfo resolveInfo = matches.get(0);
2903            if (!resolveInfo.activityInfo.applicationInfo.isPrivilegedApp()) {
2904                throw new RuntimeException("The installer must be a privileged app");
2905            }
2906            return matches.get(0).getComponentInfo().packageName;
2907        } else {
2908            throw new RuntimeException("There must be exactly one installer; found " + matches);
2909        }
2910    }
2911
2912    private @NonNull ComponentName getIntentFilterVerifierComponentNameLPr() {
2913        final Intent intent = new Intent(Intent.ACTION_INTENT_FILTER_NEEDS_VERIFICATION);
2914
2915        final List<ResolveInfo> matches = queryIntentReceiversInternal(intent, PACKAGE_MIME_TYPE,
2916                MATCH_SYSTEM_ONLY | MATCH_DIRECT_BOOT_AWARE | MATCH_DIRECT_BOOT_UNAWARE,
2917                UserHandle.USER_SYSTEM);
2918        ResolveInfo best = null;
2919        final int N = matches.size();
2920        for (int i = 0; i < N; i++) {
2921            final ResolveInfo cur = matches.get(i);
2922            final String packageName = cur.getComponentInfo().packageName;
2923            if (checkPermission(android.Manifest.permission.INTENT_FILTER_VERIFICATION_AGENT,
2924                    packageName, UserHandle.USER_SYSTEM) != PackageManager.PERMISSION_GRANTED) {
2925                continue;
2926            }
2927
2928            if (best == null || cur.priority > best.priority) {
2929                best = cur;
2930            }
2931        }
2932
2933        if (best != null) {
2934            return best.getComponentInfo().getComponentName();
2935        } else {
2936            throw new RuntimeException("There must be at least one intent filter verifier");
2937        }
2938    }
2939
2940    private @Nullable ComponentName getEphemeralResolverLPr() {
2941        final String[] packageArray =
2942                mContext.getResources().getStringArray(R.array.config_ephemeralResolverPackage);
2943        if (packageArray.length == 0) {
2944            if (DEBUG_EPHEMERAL) {
2945                Slog.d(TAG, "Ephemeral resolver NOT found; empty package list");
2946            }
2947            return null;
2948        }
2949
2950        final Intent resolverIntent = new Intent(Intent.ACTION_RESOLVE_EPHEMERAL_PACKAGE);
2951        final List<ResolveInfo> resolvers = queryIntentServicesInternal(resolverIntent, null,
2952                MATCH_SYSTEM_ONLY | MATCH_DIRECT_BOOT_AWARE | MATCH_DIRECT_BOOT_UNAWARE,
2953                UserHandle.USER_SYSTEM);
2954
2955        final int N = resolvers.size();
2956        if (N == 0) {
2957            if (DEBUG_EPHEMERAL) {
2958                Slog.d(TAG, "Ephemeral resolver NOT found; no matching intent filters");
2959            }
2960            return null;
2961        }
2962
2963        final Set<String> possiblePackages = new ArraySet<>(Arrays.asList(packageArray));
2964        for (int i = 0; i < N; i++) {
2965            final ResolveInfo info = resolvers.get(i);
2966
2967            if (info.serviceInfo == null) {
2968                continue;
2969            }
2970
2971            final String packageName = info.serviceInfo.packageName;
2972            if (!possiblePackages.contains(packageName)) {
2973                if (DEBUG_EPHEMERAL) {
2974                    Slog.d(TAG, "Ephemeral resolver not in allowed package list;"
2975                            + " pkg: " + packageName + ", info:" + info);
2976                }
2977                continue;
2978            }
2979
2980            if (DEBUG_EPHEMERAL) {
2981                Slog.v(TAG, "Ephemeral resolver found;"
2982                        + " pkg: " + packageName + ", info:" + info);
2983            }
2984            return new ComponentName(packageName, info.serviceInfo.name);
2985        }
2986        if (DEBUG_EPHEMERAL) {
2987            Slog.v(TAG, "Ephemeral resolver NOT found");
2988        }
2989        return null;
2990    }
2991
2992    private @Nullable ComponentName getEphemeralInstallerLPr() {
2993        final Intent intent = new Intent(Intent.ACTION_INSTALL_EPHEMERAL_PACKAGE);
2994        intent.addCategory(Intent.CATEGORY_DEFAULT);
2995        intent.setDataAndType(Uri.fromFile(new File("foo.apk")), PACKAGE_MIME_TYPE);
2996
2997        final List<ResolveInfo> matches = queryIntentActivitiesInternal(intent, PACKAGE_MIME_TYPE,
2998                MATCH_SYSTEM_ONLY | MATCH_DIRECT_BOOT_AWARE | MATCH_DIRECT_BOOT_UNAWARE,
2999                UserHandle.USER_SYSTEM);
3000        if (matches.size() == 0) {
3001            return null;
3002        } else if (matches.size() == 1) {
3003            return matches.get(0).getComponentInfo().getComponentName();
3004        } else {
3005            throw new RuntimeException(
3006                    "There must be at most one ephemeral installer; found " + matches);
3007        }
3008    }
3009
3010    private void primeDomainVerificationsLPw(int userId) {
3011        if (DEBUG_DOMAIN_VERIFICATION) {
3012            Slog.d(TAG, "Priming domain verifications in user " + userId);
3013        }
3014
3015        SystemConfig systemConfig = SystemConfig.getInstance();
3016        ArraySet<String> packages = systemConfig.getLinkedApps();
3017        ArraySet<String> domains = new ArraySet<String>();
3018
3019        for (String packageName : packages) {
3020            PackageParser.Package pkg = mPackages.get(packageName);
3021            if (pkg != null) {
3022                if (!pkg.isSystemApp()) {
3023                    Slog.w(TAG, "Non-system app '" + packageName + "' in sysconfig <app-link>");
3024                    continue;
3025                }
3026
3027                domains.clear();
3028                for (PackageParser.Activity a : pkg.activities) {
3029                    for (ActivityIntentInfo filter : a.intents) {
3030                        if (hasValidDomains(filter)) {
3031                            domains.addAll(filter.getHostsList());
3032                        }
3033                    }
3034                }
3035
3036                if (domains.size() > 0) {
3037                    if (DEBUG_DOMAIN_VERIFICATION) {
3038                        Slog.v(TAG, "      + " + packageName);
3039                    }
3040                    // 'Undefined' in the global IntentFilterVerificationInfo, i.e. the usual
3041                    // state w.r.t. the formal app-linkage "no verification attempted" state;
3042                    // and then 'always' in the per-user state actually used for intent resolution.
3043                    final IntentFilterVerificationInfo ivi;
3044                    ivi = mSettings.createIntentFilterVerificationIfNeededLPw(packageName,
3045                            new ArrayList<String>(domains));
3046                    ivi.setStatus(INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_UNDEFINED);
3047                    mSettings.updateIntentFilterVerificationStatusLPw(packageName,
3048                            INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_ALWAYS, userId);
3049                } else {
3050                    Slog.w(TAG, "Sysconfig <app-link> package '" + packageName
3051                            + "' does not handle web links");
3052                }
3053            } else {
3054                Slog.w(TAG, "Unknown package " + packageName + " in sysconfig <app-link>");
3055            }
3056        }
3057
3058        scheduleWritePackageRestrictionsLocked(userId);
3059        scheduleWriteSettingsLocked();
3060    }
3061
3062    private void applyFactoryDefaultBrowserLPw(int userId) {
3063        // The default browser app's package name is stored in a string resource,
3064        // with a product-specific overlay used for vendor customization.
3065        String browserPkg = mContext.getResources().getString(
3066                com.android.internal.R.string.default_browser);
3067        if (!TextUtils.isEmpty(browserPkg)) {
3068            // non-empty string => required to be a known package
3069            PackageSetting ps = mSettings.mPackages.get(browserPkg);
3070            if (ps == null) {
3071                Slog.e(TAG, "Product default browser app does not exist: " + browserPkg);
3072                browserPkg = null;
3073            } else {
3074                mSettings.setDefaultBrowserPackageNameLPw(browserPkg, userId);
3075            }
3076        }
3077
3078        // Nothing valid explicitly set? Make the factory-installed browser the explicit
3079        // default.  If there's more than one, just leave everything alone.
3080        if (browserPkg == null) {
3081            calculateDefaultBrowserLPw(userId);
3082        }
3083    }
3084
3085    private void calculateDefaultBrowserLPw(int userId) {
3086        List<String> allBrowsers = resolveAllBrowserApps(userId);
3087        final String browserPkg = (allBrowsers.size() == 1) ? allBrowsers.get(0) : null;
3088        mSettings.setDefaultBrowserPackageNameLPw(browserPkg, userId);
3089    }
3090
3091    private List<String> resolveAllBrowserApps(int userId) {
3092        // Resolve the canonical browser intent and check that the handleAllWebDataURI boolean is set
3093        List<ResolveInfo> list = queryIntentActivitiesInternal(sBrowserIntent, null,
3094                PackageManager.MATCH_ALL, userId);
3095
3096        final int count = list.size();
3097        List<String> result = new ArrayList<String>(count);
3098        for (int i=0; i<count; i++) {
3099            ResolveInfo info = list.get(i);
3100            if (info.activityInfo == null
3101                    || !info.handleAllWebDataURI
3102                    || (info.activityInfo.applicationInfo.flags & ApplicationInfo.FLAG_SYSTEM) == 0
3103                    || result.contains(info.activityInfo.packageName)) {
3104                continue;
3105            }
3106            result.add(info.activityInfo.packageName);
3107        }
3108
3109        return result;
3110    }
3111
3112    private boolean packageIsBrowser(String packageName, int userId) {
3113        List<ResolveInfo> list = queryIntentActivitiesInternal(sBrowserIntent, null,
3114                PackageManager.MATCH_ALL, userId);
3115        final int N = list.size();
3116        for (int i = 0; i < N; i++) {
3117            ResolveInfo info = list.get(i);
3118            if (packageName.equals(info.activityInfo.packageName)) {
3119                return true;
3120            }
3121        }
3122        return false;
3123    }
3124
3125    private void checkDefaultBrowser() {
3126        final int myUserId = UserHandle.myUserId();
3127        final String packageName = getDefaultBrowserPackageName(myUserId);
3128        if (packageName != null) {
3129            PackageInfo info = getPackageInfo(packageName, 0, myUserId);
3130            if (info == null) {
3131                Slog.w(TAG, "Default browser no longer installed: " + packageName);
3132                synchronized (mPackages) {
3133                    applyFactoryDefaultBrowserLPw(myUserId);    // leaves ambiguous when > 1
3134                }
3135            }
3136        }
3137    }
3138
3139    @Override
3140    public boolean onTransact(int code, Parcel data, Parcel reply, int flags)
3141            throws RemoteException {
3142        try {
3143            return super.onTransact(code, data, reply, flags);
3144        } catch (RuntimeException e) {
3145            if (!(e instanceof SecurityException) && !(e instanceof IllegalArgumentException)) {
3146                Slog.wtf(TAG, "Package Manager Crash", e);
3147            }
3148            throw e;
3149        }
3150    }
3151
3152    static int[] appendInts(int[] cur, int[] add) {
3153        if (add == null) return cur;
3154        if (cur == null) return add;
3155        final int N = add.length;
3156        for (int i=0; i<N; i++) {
3157            cur = appendInt(cur, add[i]);
3158        }
3159        return cur;
3160    }
3161
3162    private PackageInfo generatePackageInfo(PackageSetting ps, int flags, int userId) {
3163        if (!sUserManager.exists(userId)) return null;
3164        if (ps == null) {
3165            return null;
3166        }
3167        final PackageParser.Package p = ps.pkg;
3168        if (p == null) {
3169            return null;
3170        }
3171
3172        final PermissionsState permissionsState = ps.getPermissionsState();
3173
3174        final int[] gids = permissionsState.computeGids(userId);
3175        final Set<String> permissions = permissionsState.getPermissions(userId);
3176        final PackageUserState state = ps.readUserState(userId);
3177
3178        return PackageParser.generatePackageInfo(p, gids, flags,
3179                ps.firstInstallTime, ps.lastUpdateTime, permissions, state, userId);
3180    }
3181
3182    @Override
3183    public void checkPackageStartable(String packageName, int userId) {
3184        final boolean userKeyUnlocked = StorageManager.isUserKeyUnlocked(userId);
3185
3186        synchronized (mPackages) {
3187            final PackageSetting ps = mSettings.mPackages.get(packageName);
3188            if (ps == null) {
3189                throw new SecurityException("Package " + packageName + " was not found!");
3190            }
3191
3192            if (!ps.getInstalled(userId)) {
3193                throw new SecurityException(
3194                        "Package " + packageName + " was not installed for user " + userId + "!");
3195            }
3196
3197            if (mSafeMode && !ps.isSystem()) {
3198                throw new SecurityException("Package " + packageName + " not a system app!");
3199            }
3200
3201            if (mFrozenPackages.contains(packageName)) {
3202                throw new SecurityException("Package " + packageName + " is currently frozen!");
3203            }
3204
3205            if (!userKeyUnlocked && !(ps.pkg.applicationInfo.isDirectBootAware()
3206                    || ps.pkg.applicationInfo.isPartiallyDirectBootAware())) {
3207                throw new SecurityException("Package " + packageName + " is not encryption aware!");
3208            }
3209        }
3210    }
3211
3212    @Override
3213    public boolean isPackageAvailable(String packageName, int userId) {
3214        if (!sUserManager.exists(userId)) return false;
3215        enforceCrossUserPermission(Binder.getCallingUid(), userId,
3216                false /* requireFullPermission */, false /* checkShell */, "is package available");
3217        synchronized (mPackages) {
3218            PackageParser.Package p = mPackages.get(packageName);
3219            if (p != null) {
3220                final PackageSetting ps = (PackageSetting) p.mExtras;
3221                if (ps != null) {
3222                    final PackageUserState state = ps.readUserState(userId);
3223                    if (state != null) {
3224                        return PackageParser.isAvailable(state);
3225                    }
3226                }
3227            }
3228        }
3229        return false;
3230    }
3231
3232    @Override
3233    public PackageInfo getPackageInfo(String packageName, int flags, int userId) {
3234        if (!sUserManager.exists(userId)) return null;
3235        flags = updateFlagsForPackage(flags, userId, packageName);
3236        enforceCrossUserPermission(Binder.getCallingUid(), userId,
3237                false /* requireFullPermission */, false /* checkShell */, "get package info");
3238        // reader
3239        synchronized (mPackages) {
3240            final boolean matchFactoryOnly = (flags & MATCH_FACTORY_ONLY) != 0;
3241            PackageParser.Package p = null;
3242            if (matchFactoryOnly) {
3243                final PackageSetting ps = mSettings.getDisabledSystemPkgLPr(packageName);
3244                if (ps != null) {
3245                    return generatePackageInfo(ps, flags, userId);
3246                }
3247            }
3248            if (p == null) {
3249                p = mPackages.get(packageName);
3250                if (matchFactoryOnly && p != null && !isSystemApp(p)) {
3251                    return null;
3252                }
3253            }
3254            if (DEBUG_PACKAGE_INFO)
3255                Log.v(TAG, "getPackageInfo " + packageName + ": " + p);
3256            if (p != null) {
3257                return generatePackageInfo((PackageSetting)p.mExtras, flags, userId);
3258            }
3259            if (!matchFactoryOnly && (flags & MATCH_UNINSTALLED_PACKAGES) != 0) {
3260                final PackageSetting ps = mSettings.mPackages.get(packageName);
3261                return generatePackageInfo(ps, flags, userId);
3262            }
3263        }
3264        return null;
3265    }
3266
3267    @Override
3268    public String[] currentToCanonicalPackageNames(String[] names) {
3269        String[] out = new String[names.length];
3270        // reader
3271        synchronized (mPackages) {
3272            for (int i=names.length-1; i>=0; i--) {
3273                PackageSetting ps = mSettings.mPackages.get(names[i]);
3274                out[i] = ps != null && ps.realName != null ? ps.realName : names[i];
3275            }
3276        }
3277        return out;
3278    }
3279
3280    @Override
3281    public String[] canonicalToCurrentPackageNames(String[] names) {
3282        String[] out = new String[names.length];
3283        // reader
3284        synchronized (mPackages) {
3285            for (int i=names.length-1; i>=0; i--) {
3286                String cur = mSettings.mRenamedPackages.get(names[i]);
3287                out[i] = cur != null ? cur : names[i];
3288            }
3289        }
3290        return out;
3291    }
3292
3293    @Override
3294    public int getPackageUid(String packageName, int flags, int userId) {
3295        if (!sUserManager.exists(userId)) return -1;
3296        flags = updateFlagsForPackage(flags, userId, packageName);
3297        enforceCrossUserPermission(Binder.getCallingUid(), userId,
3298                false /* requireFullPermission */, false /* checkShell */, "get package uid");
3299
3300        // reader
3301        synchronized (mPackages) {
3302            final PackageParser.Package p = mPackages.get(packageName);
3303            if (p != null && p.isMatch(flags)) {
3304                return UserHandle.getUid(userId, p.applicationInfo.uid);
3305            }
3306            if ((flags & MATCH_UNINSTALLED_PACKAGES) != 0) {
3307                final PackageSetting ps = mSettings.mPackages.get(packageName);
3308                if (ps != null && ps.isMatch(flags)) {
3309                    return UserHandle.getUid(userId, ps.appId);
3310                }
3311            }
3312        }
3313
3314        return -1;
3315    }
3316
3317    @Override
3318    public int[] getPackageGids(String packageName, int flags, int userId) {
3319        if (!sUserManager.exists(userId)) return null;
3320        flags = updateFlagsForPackage(flags, userId, packageName);
3321        enforceCrossUserPermission(Binder.getCallingUid(), userId,
3322                false /* requireFullPermission */, false /* checkShell */,
3323                "getPackageGids");
3324
3325        // reader
3326        synchronized (mPackages) {
3327            final PackageParser.Package p = mPackages.get(packageName);
3328            if (p != null && p.isMatch(flags)) {
3329                PackageSetting ps = (PackageSetting) p.mExtras;
3330                return ps.getPermissionsState().computeGids(userId);
3331            }
3332            if ((flags & MATCH_UNINSTALLED_PACKAGES) != 0) {
3333                final PackageSetting ps = mSettings.mPackages.get(packageName);
3334                if (ps != null && ps.isMatch(flags)) {
3335                    return ps.getPermissionsState().computeGids(userId);
3336                }
3337            }
3338        }
3339
3340        return null;
3341    }
3342
3343    static PermissionInfo generatePermissionInfo(BasePermission bp, int flags) {
3344        if (bp.perm != null) {
3345            return PackageParser.generatePermissionInfo(bp.perm, flags);
3346        }
3347        PermissionInfo pi = new PermissionInfo();
3348        pi.name = bp.name;
3349        pi.packageName = bp.sourcePackage;
3350        pi.nonLocalizedLabel = bp.name;
3351        pi.protectionLevel = bp.protectionLevel;
3352        return pi;
3353    }
3354
3355    @Override
3356    public PermissionInfo getPermissionInfo(String name, int flags) {
3357        // reader
3358        synchronized (mPackages) {
3359            final BasePermission p = mSettings.mPermissions.get(name);
3360            if (p != null) {
3361                return generatePermissionInfo(p, flags);
3362            }
3363            return null;
3364        }
3365    }
3366
3367    @Override
3368    public @Nullable ParceledListSlice<PermissionInfo> queryPermissionsByGroup(String group,
3369            int flags) {
3370        // reader
3371        synchronized (mPackages) {
3372            if (group != null && !mPermissionGroups.containsKey(group)) {
3373                // This is thrown as NameNotFoundException
3374                return null;
3375            }
3376
3377            ArrayList<PermissionInfo> out = new ArrayList<PermissionInfo>(10);
3378            for (BasePermission p : mSettings.mPermissions.values()) {
3379                if (group == null) {
3380                    if (p.perm == null || p.perm.info.group == null) {
3381                        out.add(generatePermissionInfo(p, flags));
3382                    }
3383                } else {
3384                    if (p.perm != null && group.equals(p.perm.info.group)) {
3385                        out.add(PackageParser.generatePermissionInfo(p.perm, flags));
3386                    }
3387                }
3388            }
3389            return new ParceledListSlice<>(out);
3390        }
3391    }
3392
3393    @Override
3394    public PermissionGroupInfo getPermissionGroupInfo(String name, int flags) {
3395        // reader
3396        synchronized (mPackages) {
3397            return PackageParser.generatePermissionGroupInfo(
3398                    mPermissionGroups.get(name), flags);
3399        }
3400    }
3401
3402    @Override
3403    public @NonNull ParceledListSlice<PermissionGroupInfo> getAllPermissionGroups(int flags) {
3404        // reader
3405        synchronized (mPackages) {
3406            final int N = mPermissionGroups.size();
3407            ArrayList<PermissionGroupInfo> out
3408                    = new ArrayList<PermissionGroupInfo>(N);
3409            for (PackageParser.PermissionGroup pg : mPermissionGroups.values()) {
3410                out.add(PackageParser.generatePermissionGroupInfo(pg, flags));
3411            }
3412            return new ParceledListSlice<>(out);
3413        }
3414    }
3415
3416    private ApplicationInfo generateApplicationInfoFromSettingsLPw(String packageName, int flags,
3417            int userId) {
3418        if (!sUserManager.exists(userId)) return null;
3419        PackageSetting ps = mSettings.mPackages.get(packageName);
3420        if (ps != null) {
3421            if (ps.pkg == null) {
3422                final PackageInfo pInfo = generatePackageInfo(ps, flags, userId);
3423                if (pInfo != null) {
3424                    return pInfo.applicationInfo;
3425                }
3426                return null;
3427            }
3428            return PackageParser.generateApplicationInfo(ps.pkg, flags,
3429                    ps.readUserState(userId), userId);
3430        }
3431        return null;
3432    }
3433
3434    @Override
3435    public ApplicationInfo getApplicationInfo(String packageName, int flags, int userId) {
3436        if (!sUserManager.exists(userId)) return null;
3437        flags = updateFlagsForApplication(flags, userId, packageName);
3438        enforceCrossUserPermission(Binder.getCallingUid(), userId,
3439                false /* requireFullPermission */, false /* checkShell */, "get application info");
3440        // writer
3441        synchronized (mPackages) {
3442            PackageParser.Package p = mPackages.get(packageName);
3443            if (DEBUG_PACKAGE_INFO) Log.v(
3444                    TAG, "getApplicationInfo " + packageName
3445                    + ": " + p);
3446            if (p != null) {
3447                PackageSetting ps = mSettings.mPackages.get(packageName);
3448                if (ps == null) return null;
3449                // Note: isEnabledLP() does not apply here - always return info
3450                return PackageParser.generateApplicationInfo(
3451                        p, flags, ps.readUserState(userId), userId);
3452            }
3453            if ("android".equals(packageName)||"system".equals(packageName)) {
3454                return mAndroidApplication;
3455            }
3456            if ((flags & MATCH_UNINSTALLED_PACKAGES) != 0) {
3457                return generateApplicationInfoFromSettingsLPw(packageName, flags, userId);
3458            }
3459        }
3460        return null;
3461    }
3462
3463    @Override
3464    public void freeStorageAndNotify(final String volumeUuid, final long freeStorageSize,
3465            final IPackageDataObserver observer) {
3466        mContext.enforceCallingOrSelfPermission(
3467                android.Manifest.permission.CLEAR_APP_CACHE, null);
3468        // Queue up an async operation since clearing cache may take a little while.
3469        mHandler.post(new Runnable() {
3470            public void run() {
3471                mHandler.removeCallbacks(this);
3472                boolean success = true;
3473                synchronized (mInstallLock) {
3474                    try {
3475                        mInstaller.freeCache(volumeUuid, freeStorageSize);
3476                    } catch (InstallerException e) {
3477                        Slog.w(TAG, "Couldn't clear application caches: " + e);
3478                        success = false;
3479                    }
3480                }
3481                if (observer != null) {
3482                    try {
3483                        observer.onRemoveCompleted(null, success);
3484                    } catch (RemoteException e) {
3485                        Slog.w(TAG, "RemoveException when invoking call back");
3486                    }
3487                }
3488            }
3489        });
3490    }
3491
3492    @Override
3493    public void freeStorage(final String volumeUuid, final long freeStorageSize,
3494            final IntentSender pi) {
3495        mContext.enforceCallingOrSelfPermission(
3496                android.Manifest.permission.CLEAR_APP_CACHE, null);
3497        // Queue up an async operation since clearing cache may take a little while.
3498        mHandler.post(new Runnable() {
3499            public void run() {
3500                mHandler.removeCallbacks(this);
3501                boolean success = true;
3502                synchronized (mInstallLock) {
3503                    try {
3504                        mInstaller.freeCache(volumeUuid, freeStorageSize);
3505                    } catch (InstallerException e) {
3506                        Slog.w(TAG, "Couldn't clear application caches: " + e);
3507                        success = false;
3508                    }
3509                }
3510                if(pi != null) {
3511                    try {
3512                        // Callback via pending intent
3513                        int code = success ? 1 : 0;
3514                        pi.sendIntent(null, code, null,
3515                                null, null);
3516                    } catch (SendIntentException e1) {
3517                        Slog.i(TAG, "Failed to send pending intent");
3518                    }
3519                }
3520            }
3521        });
3522    }
3523
3524    void freeStorage(String volumeUuid, long freeStorageSize) throws IOException {
3525        synchronized (mInstallLock) {
3526            try {
3527                mInstaller.freeCache(volumeUuid, freeStorageSize);
3528            } catch (InstallerException e) {
3529                throw new IOException("Failed to free enough space", e);
3530            }
3531        }
3532    }
3533
3534    /**
3535     * Update given flags based on encryption status of current user.
3536     */
3537    private int updateFlags(int flags, int userId) {
3538        if ((flags & (PackageManager.MATCH_DIRECT_BOOT_UNAWARE
3539                | PackageManager.MATCH_DIRECT_BOOT_AWARE)) != 0) {
3540            // Caller expressed an explicit opinion about what encryption
3541            // aware/unaware components they want to see, so fall through and
3542            // give them what they want
3543        } else {
3544            // Caller expressed no opinion, so match based on user state
3545            if (getUserManagerInternal().isUserUnlockingOrUnlocked(userId)) {
3546                flags |= PackageManager.MATCH_DIRECT_BOOT_AWARE | MATCH_DIRECT_BOOT_UNAWARE;
3547            } else {
3548                flags |= PackageManager.MATCH_DIRECT_BOOT_AWARE;
3549            }
3550        }
3551        return flags;
3552    }
3553
3554    private UserManagerInternal getUserManagerInternal() {
3555        if (mUserManagerInternal == null) {
3556            mUserManagerInternal = LocalServices.getService(UserManagerInternal.class);
3557        }
3558        return mUserManagerInternal;
3559    }
3560
3561    /**
3562     * Update given flags when being used to request {@link PackageInfo}.
3563     */
3564    private int updateFlagsForPackage(int flags, int userId, Object cookie) {
3565        boolean triaged = true;
3566        if ((flags & (PackageManager.GET_ACTIVITIES | PackageManager.GET_RECEIVERS
3567                | PackageManager.GET_SERVICES | PackageManager.GET_PROVIDERS)) != 0) {
3568            // Caller is asking for component details, so they'd better be
3569            // asking for specific encryption matching behavior, or be triaged
3570            if ((flags & (PackageManager.MATCH_DIRECT_BOOT_UNAWARE
3571                    | PackageManager.MATCH_DIRECT_BOOT_AWARE
3572                    | PackageManager.MATCH_DEBUG_TRIAGED_MISSING)) == 0) {
3573                triaged = false;
3574            }
3575        }
3576        if ((flags & (PackageManager.MATCH_UNINSTALLED_PACKAGES
3577                | PackageManager.MATCH_SYSTEM_ONLY
3578                | PackageManager.MATCH_DEBUG_TRIAGED_MISSING)) == 0) {
3579            triaged = false;
3580        }
3581        if (DEBUG_TRIAGED_MISSING && (Binder.getCallingUid() == Process.SYSTEM_UID) && !triaged) {
3582            Log.w(TAG, "Caller hasn't been triaged for missing apps; they asked about " + cookie
3583                    + " with flags 0x" + Integer.toHexString(flags), new Throwable());
3584        }
3585        return updateFlags(flags, userId);
3586    }
3587
3588    /**
3589     * Update given flags when being used to request {@link ApplicationInfo}.
3590     */
3591    private int updateFlagsForApplication(int flags, int userId, Object cookie) {
3592        return updateFlagsForPackage(flags, userId, cookie);
3593    }
3594
3595    /**
3596     * Update given flags when being used to request {@link ComponentInfo}.
3597     */
3598    private int updateFlagsForComponent(int flags, int userId, Object cookie) {
3599        if (cookie instanceof Intent) {
3600            if ((((Intent) cookie).getFlags() & Intent.FLAG_DEBUG_TRIAGED_MISSING) != 0) {
3601                flags |= PackageManager.MATCH_DEBUG_TRIAGED_MISSING;
3602            }
3603        }
3604
3605        boolean triaged = true;
3606        // Caller is asking for component details, so they'd better be
3607        // asking for specific encryption matching behavior, or be triaged
3608        if ((flags & (PackageManager.MATCH_DIRECT_BOOT_UNAWARE
3609                | PackageManager.MATCH_DIRECT_BOOT_AWARE
3610                | PackageManager.MATCH_DEBUG_TRIAGED_MISSING)) == 0) {
3611            triaged = false;
3612        }
3613        if (DEBUG_TRIAGED_MISSING && (Binder.getCallingUid() == Process.SYSTEM_UID) && !triaged) {
3614            Log.w(TAG, "Caller hasn't been triaged for missing apps; they asked about " + cookie
3615                    + " with flags 0x" + Integer.toHexString(flags), new Throwable());
3616        }
3617
3618        return updateFlags(flags, userId);
3619    }
3620
3621    /**
3622     * Update given flags when being used to request {@link ResolveInfo}.
3623     */
3624    int updateFlagsForResolve(int flags, int userId, Object cookie) {
3625        // Safe mode means we shouldn't match any third-party components
3626        if (mSafeMode) {
3627            flags |= PackageManager.MATCH_SYSTEM_ONLY;
3628        }
3629
3630        return updateFlagsForComponent(flags, userId, cookie);
3631    }
3632
3633    @Override
3634    public ActivityInfo getActivityInfo(ComponentName component, int flags, int userId) {
3635        if (!sUserManager.exists(userId)) return null;
3636        flags = updateFlagsForComponent(flags, userId, component);
3637        enforceCrossUserPermission(Binder.getCallingUid(), userId,
3638                false /* requireFullPermission */, false /* checkShell */, "get activity info");
3639        synchronized (mPackages) {
3640            PackageParser.Activity a = mActivities.mActivities.get(component);
3641
3642            if (DEBUG_PACKAGE_INFO) Log.v(TAG, "getActivityInfo " + component + ": " + a);
3643            if (a != null && mSettings.isEnabledAndMatchLPr(a.info, flags, userId)) {
3644                PackageSetting ps = mSettings.mPackages.get(component.getPackageName());
3645                if (ps == null) return null;
3646                return PackageParser.generateActivityInfo(a, flags, ps.readUserState(userId),
3647                        userId);
3648            }
3649            if (mResolveComponentName.equals(component)) {
3650                return PackageParser.generateActivityInfo(mResolveActivity, flags,
3651                        new PackageUserState(), userId);
3652            }
3653        }
3654        return null;
3655    }
3656
3657    @Override
3658    public boolean activitySupportsIntent(ComponentName component, Intent intent,
3659            String resolvedType) {
3660        synchronized (mPackages) {
3661            if (component.equals(mResolveComponentName)) {
3662                // The resolver supports EVERYTHING!
3663                return true;
3664            }
3665            PackageParser.Activity a = mActivities.mActivities.get(component);
3666            if (a == null) {
3667                return false;
3668            }
3669            for (int i=0; i<a.intents.size(); i++) {
3670                if (a.intents.get(i).match(intent.getAction(), resolvedType, intent.getScheme(),
3671                        intent.getData(), intent.getCategories(), TAG) >= 0) {
3672                    return true;
3673                }
3674            }
3675            return false;
3676        }
3677    }
3678
3679    @Override
3680    public ActivityInfo getReceiverInfo(ComponentName component, int flags, int userId) {
3681        if (!sUserManager.exists(userId)) return null;
3682        flags = updateFlagsForComponent(flags, userId, component);
3683        enforceCrossUserPermission(Binder.getCallingUid(), userId,
3684                false /* requireFullPermission */, false /* checkShell */, "get receiver info");
3685        synchronized (mPackages) {
3686            PackageParser.Activity a = mReceivers.mActivities.get(component);
3687            if (DEBUG_PACKAGE_INFO) Log.v(
3688                TAG, "getReceiverInfo " + component + ": " + a);
3689            if (a != null && mSettings.isEnabledAndMatchLPr(a.info, flags, userId)) {
3690                PackageSetting ps = mSettings.mPackages.get(component.getPackageName());
3691                if (ps == null) return null;
3692                return PackageParser.generateActivityInfo(a, flags, ps.readUserState(userId),
3693                        userId);
3694            }
3695        }
3696        return null;
3697    }
3698
3699    @Override
3700    public ServiceInfo getServiceInfo(ComponentName component, int flags, int userId) {
3701        if (!sUserManager.exists(userId)) return null;
3702        flags = updateFlagsForComponent(flags, userId, component);
3703        enforceCrossUserPermission(Binder.getCallingUid(), userId,
3704                false /* requireFullPermission */, false /* checkShell */, "get service info");
3705        synchronized (mPackages) {
3706            PackageParser.Service s = mServices.mServices.get(component);
3707            if (DEBUG_PACKAGE_INFO) Log.v(
3708                TAG, "getServiceInfo " + component + ": " + s);
3709            if (s != null && mSettings.isEnabledAndMatchLPr(s.info, flags, userId)) {
3710                PackageSetting ps = mSettings.mPackages.get(component.getPackageName());
3711                if (ps == null) return null;
3712                return PackageParser.generateServiceInfo(s, flags, ps.readUserState(userId),
3713                        userId);
3714            }
3715        }
3716        return null;
3717    }
3718
3719    @Override
3720    public ProviderInfo getProviderInfo(ComponentName component, int flags, int userId) {
3721        if (!sUserManager.exists(userId)) return null;
3722        flags = updateFlagsForComponent(flags, userId, component);
3723        enforceCrossUserPermission(Binder.getCallingUid(), userId,
3724                false /* requireFullPermission */, false /* checkShell */, "get provider info");
3725        synchronized (mPackages) {
3726            PackageParser.Provider p = mProviders.mProviders.get(component);
3727            if (DEBUG_PACKAGE_INFO) Log.v(
3728                TAG, "getProviderInfo " + component + ": " + p);
3729            if (p != null && mSettings.isEnabledAndMatchLPr(p.info, flags, userId)) {
3730                PackageSetting ps = mSettings.mPackages.get(component.getPackageName());
3731                if (ps == null) return null;
3732                return PackageParser.generateProviderInfo(p, flags, ps.readUserState(userId),
3733                        userId);
3734            }
3735        }
3736        return null;
3737    }
3738
3739    @Override
3740    public String[] getSystemSharedLibraryNames() {
3741        Set<String> libSet;
3742        synchronized (mPackages) {
3743            libSet = mSharedLibraries.keySet();
3744            int size = libSet.size();
3745            if (size > 0) {
3746                String[] libs = new String[size];
3747                libSet.toArray(libs);
3748                return libs;
3749            }
3750        }
3751        return null;
3752    }
3753
3754    @Override
3755    public @NonNull String getServicesSystemSharedLibraryPackageName() {
3756        synchronized (mPackages) {
3757            return mServicesSystemSharedLibraryPackageName;
3758        }
3759    }
3760
3761    @Override
3762    public @NonNull String getSharedSystemSharedLibraryPackageName() {
3763        synchronized (mPackages) {
3764            return mSharedSystemSharedLibraryPackageName;
3765        }
3766    }
3767
3768    @Override
3769    public @NonNull ParceledListSlice<FeatureInfo> getSystemAvailableFeatures() {
3770        synchronized (mPackages) {
3771            final ArrayList<FeatureInfo> res = new ArrayList<>(mAvailableFeatures.values());
3772
3773            final FeatureInfo fi = new FeatureInfo();
3774            fi.reqGlEsVersion = SystemProperties.getInt("ro.opengles.version",
3775                    FeatureInfo.GL_ES_VERSION_UNDEFINED);
3776            res.add(fi);
3777
3778            return new ParceledListSlice<>(res);
3779        }
3780    }
3781
3782    @Override
3783    public boolean hasSystemFeature(String name, int version) {
3784        synchronized (mPackages) {
3785            final FeatureInfo feat = mAvailableFeatures.get(name);
3786            if (feat == null) {
3787                return false;
3788            } else {
3789                return feat.version >= version;
3790            }
3791        }
3792    }
3793
3794    @Override
3795    public int checkPermission(String permName, String pkgName, int userId) {
3796        if (!sUserManager.exists(userId)) {
3797            return PackageManager.PERMISSION_DENIED;
3798        }
3799
3800        synchronized (mPackages) {
3801            final PackageParser.Package p = mPackages.get(pkgName);
3802            if (p != null && p.mExtras != null) {
3803                final PackageSetting ps = (PackageSetting) p.mExtras;
3804                final PermissionsState permissionsState = ps.getPermissionsState();
3805                if (permissionsState.hasPermission(permName, userId)) {
3806                    return PackageManager.PERMISSION_GRANTED;
3807                }
3808                // Special case: ACCESS_FINE_LOCATION permission includes ACCESS_COARSE_LOCATION
3809                if (Manifest.permission.ACCESS_COARSE_LOCATION.equals(permName) && permissionsState
3810                        .hasPermission(Manifest.permission.ACCESS_FINE_LOCATION, userId)) {
3811                    return PackageManager.PERMISSION_GRANTED;
3812                }
3813            }
3814        }
3815
3816        return PackageManager.PERMISSION_DENIED;
3817    }
3818
3819    @Override
3820    public int checkUidPermission(String permName, int uid) {
3821        final int userId = UserHandle.getUserId(uid);
3822
3823        if (!sUserManager.exists(userId)) {
3824            return PackageManager.PERMISSION_DENIED;
3825        }
3826
3827        synchronized (mPackages) {
3828            Object obj = mSettings.getUserIdLPr(UserHandle.getAppId(uid));
3829            if (obj != null) {
3830                final SettingBase ps = (SettingBase) obj;
3831                final PermissionsState permissionsState = ps.getPermissionsState();
3832                if (permissionsState.hasPermission(permName, userId)) {
3833                    return PackageManager.PERMISSION_GRANTED;
3834                }
3835                // Special case: ACCESS_FINE_LOCATION permission includes ACCESS_COARSE_LOCATION
3836                if (Manifest.permission.ACCESS_COARSE_LOCATION.equals(permName) && permissionsState
3837                        .hasPermission(Manifest.permission.ACCESS_FINE_LOCATION, userId)) {
3838                    return PackageManager.PERMISSION_GRANTED;
3839                }
3840            } else {
3841                ArraySet<String> perms = mSystemPermissions.get(uid);
3842                if (perms != null) {
3843                    if (perms.contains(permName)) {
3844                        return PackageManager.PERMISSION_GRANTED;
3845                    }
3846                    if (Manifest.permission.ACCESS_COARSE_LOCATION.equals(permName) && perms
3847                            .contains(Manifest.permission.ACCESS_FINE_LOCATION)) {
3848                        return PackageManager.PERMISSION_GRANTED;
3849                    }
3850                }
3851            }
3852        }
3853
3854        return PackageManager.PERMISSION_DENIED;
3855    }
3856
3857    @Override
3858    public boolean isPermissionRevokedByPolicy(String permission, String packageName, int userId) {
3859        if (UserHandle.getCallingUserId() != userId) {
3860            mContext.enforceCallingPermission(
3861                    android.Manifest.permission.INTERACT_ACROSS_USERS_FULL,
3862                    "isPermissionRevokedByPolicy for user " + userId);
3863        }
3864
3865        if (checkPermission(permission, packageName, userId)
3866                == PackageManager.PERMISSION_GRANTED) {
3867            return false;
3868        }
3869
3870        final long identity = Binder.clearCallingIdentity();
3871        try {
3872            final int flags = getPermissionFlags(permission, packageName, userId);
3873            return (flags & PackageManager.FLAG_PERMISSION_POLICY_FIXED) != 0;
3874        } finally {
3875            Binder.restoreCallingIdentity(identity);
3876        }
3877    }
3878
3879    @Override
3880    public String getPermissionControllerPackageName() {
3881        synchronized (mPackages) {
3882            return mRequiredInstallerPackage;
3883        }
3884    }
3885
3886    /**
3887     * Checks if the request is from the system or an app that has INTERACT_ACROSS_USERS
3888     * or INTERACT_ACROSS_USERS_FULL permissions, if the userid is not for the caller.
3889     * @param checkShell whether to prevent shell from access if there's a debugging restriction
3890     * @param message the message to log on security exception
3891     */
3892    void enforceCrossUserPermission(int callingUid, int userId, boolean requireFullPermission,
3893            boolean checkShell, String message) {
3894        if (userId < 0) {
3895            throw new IllegalArgumentException("Invalid userId " + userId);
3896        }
3897        if (checkShell) {
3898            enforceShellRestriction(UserManager.DISALLOW_DEBUGGING_FEATURES, callingUid, userId);
3899        }
3900        if (userId == UserHandle.getUserId(callingUid)) return;
3901        if (callingUid != Process.SYSTEM_UID && callingUid != 0) {
3902            if (requireFullPermission) {
3903                mContext.enforceCallingOrSelfPermission(
3904                        android.Manifest.permission.INTERACT_ACROSS_USERS_FULL, message);
3905            } else {
3906                try {
3907                    mContext.enforceCallingOrSelfPermission(
3908                            android.Manifest.permission.INTERACT_ACROSS_USERS_FULL, message);
3909                } catch (SecurityException se) {
3910                    mContext.enforceCallingOrSelfPermission(
3911                            android.Manifest.permission.INTERACT_ACROSS_USERS, message);
3912                }
3913            }
3914        }
3915    }
3916
3917    void enforceShellRestriction(String restriction, int callingUid, int userHandle) {
3918        if (callingUid == Process.SHELL_UID) {
3919            if (userHandle >= 0
3920                    && sUserManager.hasUserRestriction(restriction, userHandle)) {
3921                throw new SecurityException("Shell does not have permission to access user "
3922                        + userHandle);
3923            } else if (userHandle < 0) {
3924                Slog.e(TAG, "Unable to check shell permission for user " + userHandle + "\n\t"
3925                        + Debug.getCallers(3));
3926            }
3927        }
3928    }
3929
3930    private BasePermission findPermissionTreeLP(String permName) {
3931        for(BasePermission bp : mSettings.mPermissionTrees.values()) {
3932            if (permName.startsWith(bp.name) &&
3933                    permName.length() > bp.name.length() &&
3934                    permName.charAt(bp.name.length()) == '.') {
3935                return bp;
3936            }
3937        }
3938        return null;
3939    }
3940
3941    private BasePermission checkPermissionTreeLP(String permName) {
3942        if (permName != null) {
3943            BasePermission bp = findPermissionTreeLP(permName);
3944            if (bp != null) {
3945                if (bp.uid == UserHandle.getAppId(Binder.getCallingUid())) {
3946                    return bp;
3947                }
3948                throw new SecurityException("Calling uid "
3949                        + Binder.getCallingUid()
3950                        + " is not allowed to add to permission tree "
3951                        + bp.name + " owned by uid " + bp.uid);
3952            }
3953        }
3954        throw new SecurityException("No permission tree found for " + permName);
3955    }
3956
3957    static boolean compareStrings(CharSequence s1, CharSequence s2) {
3958        if (s1 == null) {
3959            return s2 == null;
3960        }
3961        if (s2 == null) {
3962            return false;
3963        }
3964        if (s1.getClass() != s2.getClass()) {
3965            return false;
3966        }
3967        return s1.equals(s2);
3968    }
3969
3970    static boolean comparePermissionInfos(PermissionInfo pi1, PermissionInfo pi2) {
3971        if (pi1.icon != pi2.icon) return false;
3972        if (pi1.logo != pi2.logo) return false;
3973        if (pi1.protectionLevel != pi2.protectionLevel) return false;
3974        if (!compareStrings(pi1.name, pi2.name)) return false;
3975        if (!compareStrings(pi1.nonLocalizedLabel, pi2.nonLocalizedLabel)) return false;
3976        // We'll take care of setting this one.
3977        if (!compareStrings(pi1.packageName, pi2.packageName)) return false;
3978        // These are not currently stored in settings.
3979        //if (!compareStrings(pi1.group, pi2.group)) return false;
3980        //if (!compareStrings(pi1.nonLocalizedDescription, pi2.nonLocalizedDescription)) return false;
3981        //if (pi1.labelRes != pi2.labelRes) return false;
3982        //if (pi1.descriptionRes != pi2.descriptionRes) return false;
3983        return true;
3984    }
3985
3986    int permissionInfoFootprint(PermissionInfo info) {
3987        int size = info.name.length();
3988        if (info.nonLocalizedLabel != null) size += info.nonLocalizedLabel.length();
3989        if (info.nonLocalizedDescription != null) size += info.nonLocalizedDescription.length();
3990        return size;
3991    }
3992
3993    int calculateCurrentPermissionFootprintLocked(BasePermission tree) {
3994        int size = 0;
3995        for (BasePermission perm : mSettings.mPermissions.values()) {
3996            if (perm.uid == tree.uid) {
3997                size += perm.name.length() + permissionInfoFootprint(perm.perm.info);
3998            }
3999        }
4000        return size;
4001    }
4002
4003    void enforcePermissionCapLocked(PermissionInfo info, BasePermission tree) {
4004        // We calculate the max size of permissions defined by this uid and throw
4005        // if that plus the size of 'info' would exceed our stated maximum.
4006        if (tree.uid != Process.SYSTEM_UID) {
4007            final int curTreeSize = calculateCurrentPermissionFootprintLocked(tree);
4008            if (curTreeSize + permissionInfoFootprint(info) > MAX_PERMISSION_TREE_FOOTPRINT) {
4009                throw new SecurityException("Permission tree size cap exceeded");
4010            }
4011        }
4012    }
4013
4014    boolean addPermissionLocked(PermissionInfo info, boolean async) {
4015        if (info.labelRes == 0 && info.nonLocalizedLabel == null) {
4016            throw new SecurityException("Label must be specified in permission");
4017        }
4018        BasePermission tree = checkPermissionTreeLP(info.name);
4019        BasePermission bp = mSettings.mPermissions.get(info.name);
4020        boolean added = bp == null;
4021        boolean changed = true;
4022        int fixedLevel = PermissionInfo.fixProtectionLevel(info.protectionLevel);
4023        if (added) {
4024            enforcePermissionCapLocked(info, tree);
4025            bp = new BasePermission(info.name, tree.sourcePackage,
4026                    BasePermission.TYPE_DYNAMIC);
4027        } else if (bp.type != BasePermission.TYPE_DYNAMIC) {
4028            throw new SecurityException(
4029                    "Not allowed to modify non-dynamic permission "
4030                    + info.name);
4031        } else {
4032            if (bp.protectionLevel == fixedLevel
4033                    && bp.perm.owner.equals(tree.perm.owner)
4034                    && bp.uid == tree.uid
4035                    && comparePermissionInfos(bp.perm.info, info)) {
4036                changed = false;
4037            }
4038        }
4039        bp.protectionLevel = fixedLevel;
4040        info = new PermissionInfo(info);
4041        info.protectionLevel = fixedLevel;
4042        bp.perm = new PackageParser.Permission(tree.perm.owner, info);
4043        bp.perm.info.packageName = tree.perm.info.packageName;
4044        bp.uid = tree.uid;
4045        if (added) {
4046            mSettings.mPermissions.put(info.name, bp);
4047        }
4048        if (changed) {
4049            if (!async) {
4050                mSettings.writeLPr();
4051            } else {
4052                scheduleWriteSettingsLocked();
4053            }
4054        }
4055        return added;
4056    }
4057
4058    @Override
4059    public boolean addPermission(PermissionInfo info) {
4060        synchronized (mPackages) {
4061            return addPermissionLocked(info, false);
4062        }
4063    }
4064
4065    @Override
4066    public boolean addPermissionAsync(PermissionInfo info) {
4067        synchronized (mPackages) {
4068            return addPermissionLocked(info, true);
4069        }
4070    }
4071
4072    @Override
4073    public void removePermission(String name) {
4074        synchronized (mPackages) {
4075            checkPermissionTreeLP(name);
4076            BasePermission bp = mSettings.mPermissions.get(name);
4077            if (bp != null) {
4078                if (bp.type != BasePermission.TYPE_DYNAMIC) {
4079                    throw new SecurityException(
4080                            "Not allowed to modify non-dynamic permission "
4081                            + name);
4082                }
4083                mSettings.mPermissions.remove(name);
4084                mSettings.writeLPr();
4085            }
4086        }
4087    }
4088
4089    private static void enforceDeclaredAsUsedAndRuntimeOrDevelopmentPermission(PackageParser.Package pkg,
4090            BasePermission bp) {
4091        int index = pkg.requestedPermissions.indexOf(bp.name);
4092        if (index == -1) {
4093            throw new SecurityException("Package " + pkg.packageName
4094                    + " has not requested permission " + bp.name);
4095        }
4096        if (!bp.isRuntime() && !bp.isDevelopment()) {
4097            throw new SecurityException("Permission " + bp.name
4098                    + " is not a changeable permission type");
4099        }
4100    }
4101
4102    @Override
4103    public void grantRuntimePermission(String packageName, String name, final int userId) {
4104        if (!sUserManager.exists(userId)) {
4105            Log.e(TAG, "No such user:" + userId);
4106            return;
4107        }
4108
4109        mContext.enforceCallingOrSelfPermission(
4110                android.Manifest.permission.GRANT_RUNTIME_PERMISSIONS,
4111                "grantRuntimePermission");
4112
4113        enforceCrossUserPermission(Binder.getCallingUid(), userId,
4114                true /* requireFullPermission */, true /* checkShell */,
4115                "grantRuntimePermission");
4116
4117        final int uid;
4118        final SettingBase sb;
4119
4120        synchronized (mPackages) {
4121            final PackageParser.Package pkg = mPackages.get(packageName);
4122            if (pkg == null) {
4123                throw new IllegalArgumentException("Unknown package: " + packageName);
4124            }
4125
4126            final BasePermission bp = mSettings.mPermissions.get(name);
4127            if (bp == null) {
4128                throw new IllegalArgumentException("Unknown permission: " + name);
4129            }
4130
4131            enforceDeclaredAsUsedAndRuntimeOrDevelopmentPermission(pkg, bp);
4132
4133            // If a permission review is required for legacy apps we represent
4134            // their permissions as always granted runtime ones since we need
4135            // to keep the review required permission flag per user while an
4136            // install permission's state is shared across all users.
4137            if (Build.PERMISSIONS_REVIEW_REQUIRED
4138                    && pkg.applicationInfo.targetSdkVersion < Build.VERSION_CODES.M
4139                    && bp.isRuntime()) {
4140                return;
4141            }
4142
4143            uid = UserHandle.getUid(userId, pkg.applicationInfo.uid);
4144            sb = (SettingBase) pkg.mExtras;
4145            if (sb == null) {
4146                throw new IllegalArgumentException("Unknown package: " + packageName);
4147            }
4148
4149            final PermissionsState permissionsState = sb.getPermissionsState();
4150
4151            final int flags = permissionsState.getPermissionFlags(name, userId);
4152            if ((flags & PackageManager.FLAG_PERMISSION_SYSTEM_FIXED) != 0) {
4153                throw new SecurityException("Cannot grant system fixed permission "
4154                        + name + " for package " + packageName);
4155            }
4156
4157            if (bp.isDevelopment()) {
4158                // Development permissions must be handled specially, since they are not
4159                // normal runtime permissions.  For now they apply to all users.
4160                if (permissionsState.grantInstallPermission(bp) !=
4161                        PermissionsState.PERMISSION_OPERATION_FAILURE) {
4162                    scheduleWriteSettingsLocked();
4163                }
4164                return;
4165            }
4166
4167            if (pkg.applicationInfo.targetSdkVersion < Build.VERSION_CODES.M) {
4168                Slog.w(TAG, "Cannot grant runtime permission to a legacy app");
4169                return;
4170            }
4171
4172            final int result = permissionsState.grantRuntimePermission(bp, userId);
4173            switch (result) {
4174                case PermissionsState.PERMISSION_OPERATION_FAILURE: {
4175                    return;
4176                }
4177
4178                case PermissionsState.PERMISSION_OPERATION_SUCCESS_GIDS_CHANGED: {
4179                    final int appId = UserHandle.getAppId(pkg.applicationInfo.uid);
4180                    mHandler.post(new Runnable() {
4181                        @Override
4182                        public void run() {
4183                            killUid(appId, userId, KILL_APP_REASON_GIDS_CHANGED);
4184                        }
4185                    });
4186                }
4187                break;
4188            }
4189
4190            mOnPermissionChangeListeners.onPermissionsChanged(uid);
4191
4192            // Not critical if that is lost - app has to request again.
4193            mSettings.writeRuntimePermissionsForUserLPr(userId, false);
4194        }
4195
4196        // Only need to do this if user is initialized. Otherwise it's a new user
4197        // and there are no processes running as the user yet and there's no need
4198        // to make an expensive call to remount processes for the changed permissions.
4199        if (READ_EXTERNAL_STORAGE.equals(name)
4200                || WRITE_EXTERNAL_STORAGE.equals(name)) {
4201            final long token = Binder.clearCallingIdentity();
4202            try {
4203                if (sUserManager.isInitialized(userId)) {
4204                    MountServiceInternal mountServiceInternal = LocalServices.getService(
4205                            MountServiceInternal.class);
4206                    mountServiceInternal.onExternalStoragePolicyChanged(uid, packageName);
4207                }
4208            } finally {
4209                Binder.restoreCallingIdentity(token);
4210            }
4211        }
4212    }
4213
4214    @Override
4215    public void revokeRuntimePermission(String packageName, String name, int userId) {
4216        if (!sUserManager.exists(userId)) {
4217            Log.e(TAG, "No such user:" + userId);
4218            return;
4219        }
4220
4221        mContext.enforceCallingOrSelfPermission(
4222                android.Manifest.permission.REVOKE_RUNTIME_PERMISSIONS,
4223                "revokeRuntimePermission");
4224
4225        enforceCrossUserPermission(Binder.getCallingUid(), userId,
4226                true /* requireFullPermission */, true /* checkShell */,
4227                "revokeRuntimePermission");
4228
4229        final int appId;
4230
4231        synchronized (mPackages) {
4232            final PackageParser.Package pkg = mPackages.get(packageName);
4233            if (pkg == null) {
4234                throw new IllegalArgumentException("Unknown package: " + packageName);
4235            }
4236
4237            final BasePermission bp = mSettings.mPermissions.get(name);
4238            if (bp == null) {
4239                throw new IllegalArgumentException("Unknown permission: " + name);
4240            }
4241
4242            enforceDeclaredAsUsedAndRuntimeOrDevelopmentPermission(pkg, bp);
4243
4244            // If a permission review is required for legacy apps we represent
4245            // their permissions as always granted runtime ones since we need
4246            // to keep the review required permission flag per user while an
4247            // install permission's state is shared across all users.
4248            if (Build.PERMISSIONS_REVIEW_REQUIRED
4249                    && pkg.applicationInfo.targetSdkVersion < Build.VERSION_CODES.M
4250                    && bp.isRuntime()) {
4251                return;
4252            }
4253
4254            SettingBase sb = (SettingBase) pkg.mExtras;
4255            if (sb == null) {
4256                throw new IllegalArgumentException("Unknown package: " + packageName);
4257            }
4258
4259            final PermissionsState permissionsState = sb.getPermissionsState();
4260
4261            final int flags = permissionsState.getPermissionFlags(name, userId);
4262            if ((flags & PackageManager.FLAG_PERMISSION_SYSTEM_FIXED) != 0) {
4263                throw new SecurityException("Cannot revoke system fixed permission "
4264                        + name + " for package " + packageName);
4265            }
4266
4267            if (bp.isDevelopment()) {
4268                // Development permissions must be handled specially, since they are not
4269                // normal runtime permissions.  For now they apply to all users.
4270                if (permissionsState.revokeInstallPermission(bp) !=
4271                        PermissionsState.PERMISSION_OPERATION_FAILURE) {
4272                    scheduleWriteSettingsLocked();
4273                }
4274                return;
4275            }
4276
4277            if (permissionsState.revokeRuntimePermission(bp, userId) ==
4278                    PermissionsState.PERMISSION_OPERATION_FAILURE) {
4279                return;
4280            }
4281
4282            mOnPermissionChangeListeners.onPermissionsChanged(pkg.applicationInfo.uid);
4283
4284            // Critical, after this call app should never have the permission.
4285            mSettings.writeRuntimePermissionsForUserLPr(userId, true);
4286
4287            appId = UserHandle.getAppId(pkg.applicationInfo.uid);
4288        }
4289
4290        killUid(appId, userId, KILL_APP_REASON_PERMISSIONS_REVOKED);
4291    }
4292
4293    @Override
4294    public void resetRuntimePermissions() {
4295        mContext.enforceCallingOrSelfPermission(
4296                android.Manifest.permission.REVOKE_RUNTIME_PERMISSIONS,
4297                "revokeRuntimePermission");
4298
4299        int callingUid = Binder.getCallingUid();
4300        if (callingUid != Process.SYSTEM_UID && callingUid != 0) {
4301            mContext.enforceCallingOrSelfPermission(
4302                    android.Manifest.permission.INTERACT_ACROSS_USERS_FULL,
4303                    "resetRuntimePermissions");
4304        }
4305
4306        synchronized (mPackages) {
4307            updatePermissionsLPw(null, null, UPDATE_PERMISSIONS_ALL);
4308            for (int userId : UserManagerService.getInstance().getUserIds()) {
4309                final int packageCount = mPackages.size();
4310                for (int i = 0; i < packageCount; i++) {
4311                    PackageParser.Package pkg = mPackages.valueAt(i);
4312                    if (!(pkg.mExtras instanceof PackageSetting)) {
4313                        continue;
4314                    }
4315                    PackageSetting ps = (PackageSetting) pkg.mExtras;
4316                    resetUserChangesToRuntimePermissionsAndFlagsLPw(ps, userId);
4317                }
4318            }
4319        }
4320    }
4321
4322    @Override
4323    public int getPermissionFlags(String name, String packageName, int userId) {
4324        if (!sUserManager.exists(userId)) {
4325            return 0;
4326        }
4327
4328        enforceGrantRevokeRuntimePermissionPermissions("getPermissionFlags");
4329
4330        enforceCrossUserPermission(Binder.getCallingUid(), userId,
4331                true /* requireFullPermission */, false /* checkShell */,
4332                "getPermissionFlags");
4333
4334        synchronized (mPackages) {
4335            final PackageParser.Package pkg = mPackages.get(packageName);
4336            if (pkg == null) {
4337                return 0;
4338            }
4339
4340            final BasePermission bp = mSettings.mPermissions.get(name);
4341            if (bp == null) {
4342                return 0;
4343            }
4344
4345            SettingBase sb = (SettingBase) pkg.mExtras;
4346            if (sb == null) {
4347                return 0;
4348            }
4349
4350            PermissionsState permissionsState = sb.getPermissionsState();
4351            return permissionsState.getPermissionFlags(name, userId);
4352        }
4353    }
4354
4355    @Override
4356    public void updatePermissionFlags(String name, String packageName, int flagMask,
4357            int flagValues, int userId) {
4358        if (!sUserManager.exists(userId)) {
4359            return;
4360        }
4361
4362        enforceGrantRevokeRuntimePermissionPermissions("updatePermissionFlags");
4363
4364        enforceCrossUserPermission(Binder.getCallingUid(), userId,
4365                true /* requireFullPermission */, true /* checkShell */,
4366                "updatePermissionFlags");
4367
4368        // Only the system can change these flags and nothing else.
4369        if (getCallingUid() != Process.SYSTEM_UID) {
4370            flagMask &= ~PackageManager.FLAG_PERMISSION_SYSTEM_FIXED;
4371            flagValues &= ~PackageManager.FLAG_PERMISSION_SYSTEM_FIXED;
4372            flagMask &= ~PackageManager.FLAG_PERMISSION_GRANTED_BY_DEFAULT;
4373            flagValues &= ~PackageManager.FLAG_PERMISSION_GRANTED_BY_DEFAULT;
4374            flagValues &= ~PackageManager.FLAG_PERMISSION_REVIEW_REQUIRED;
4375        }
4376
4377        synchronized (mPackages) {
4378            final PackageParser.Package pkg = mPackages.get(packageName);
4379            if (pkg == null) {
4380                throw new IllegalArgumentException("Unknown package: " + packageName);
4381            }
4382
4383            final BasePermission bp = mSettings.mPermissions.get(name);
4384            if (bp == null) {
4385                throw new IllegalArgumentException("Unknown permission: " + name);
4386            }
4387
4388            SettingBase sb = (SettingBase) pkg.mExtras;
4389            if (sb == null) {
4390                throw new IllegalArgumentException("Unknown package: " + packageName);
4391            }
4392
4393            PermissionsState permissionsState = sb.getPermissionsState();
4394
4395            boolean hadState = permissionsState.getRuntimePermissionState(name, userId) != null;
4396
4397            if (permissionsState.updatePermissionFlags(bp, userId, flagMask, flagValues)) {
4398                // Install and runtime permissions are stored in different places,
4399                // so figure out what permission changed and persist the change.
4400                if (permissionsState.getInstallPermissionState(name) != null) {
4401                    scheduleWriteSettingsLocked();
4402                } else if (permissionsState.getRuntimePermissionState(name, userId) != null
4403                        || hadState) {
4404                    mSettings.writeRuntimePermissionsForUserLPr(userId, false);
4405                }
4406            }
4407        }
4408    }
4409
4410    /**
4411     * Update the permission flags for all packages and runtime permissions of a user in order
4412     * to allow device or profile owner to remove POLICY_FIXED.
4413     */
4414    @Override
4415    public void updatePermissionFlagsForAllApps(int flagMask, int flagValues, int userId) {
4416        if (!sUserManager.exists(userId)) {
4417            return;
4418        }
4419
4420        enforceGrantRevokeRuntimePermissionPermissions("updatePermissionFlagsForAllApps");
4421
4422        enforceCrossUserPermission(Binder.getCallingUid(), userId,
4423                true /* requireFullPermission */, true /* checkShell */,
4424                "updatePermissionFlagsForAllApps");
4425
4426        // Only the system can change system fixed flags.
4427        if (getCallingUid() != Process.SYSTEM_UID) {
4428            flagMask &= ~PackageManager.FLAG_PERMISSION_SYSTEM_FIXED;
4429            flagValues &= ~PackageManager.FLAG_PERMISSION_SYSTEM_FIXED;
4430        }
4431
4432        synchronized (mPackages) {
4433            boolean changed = false;
4434            final int packageCount = mPackages.size();
4435            for (int pkgIndex = 0; pkgIndex < packageCount; pkgIndex++) {
4436                final PackageParser.Package pkg = mPackages.valueAt(pkgIndex);
4437                SettingBase sb = (SettingBase) pkg.mExtras;
4438                if (sb == null) {
4439                    continue;
4440                }
4441                PermissionsState permissionsState = sb.getPermissionsState();
4442                changed |= permissionsState.updatePermissionFlagsForAllPermissions(
4443                        userId, flagMask, flagValues);
4444            }
4445            if (changed) {
4446                mSettings.writeRuntimePermissionsForUserLPr(userId, false);
4447            }
4448        }
4449    }
4450
4451    private void enforceGrantRevokeRuntimePermissionPermissions(String message) {
4452        if (mContext.checkCallingOrSelfPermission(Manifest.permission.GRANT_RUNTIME_PERMISSIONS)
4453                != PackageManager.PERMISSION_GRANTED
4454            && mContext.checkCallingOrSelfPermission(Manifest.permission.REVOKE_RUNTIME_PERMISSIONS)
4455                != PackageManager.PERMISSION_GRANTED) {
4456            throw new SecurityException(message + " requires "
4457                    + Manifest.permission.GRANT_RUNTIME_PERMISSIONS + " or "
4458                    + Manifest.permission.REVOKE_RUNTIME_PERMISSIONS);
4459        }
4460    }
4461
4462    @Override
4463    public boolean shouldShowRequestPermissionRationale(String permissionName,
4464            String packageName, int userId) {
4465        if (UserHandle.getCallingUserId() != userId) {
4466            mContext.enforceCallingPermission(
4467                    android.Manifest.permission.INTERACT_ACROSS_USERS_FULL,
4468                    "canShowRequestPermissionRationale for user " + userId);
4469        }
4470
4471        final int uid = getPackageUid(packageName, MATCH_DEBUG_TRIAGED_MISSING, userId);
4472        if (UserHandle.getAppId(getCallingUid()) != UserHandle.getAppId(uid)) {
4473            return false;
4474        }
4475
4476        if (checkPermission(permissionName, packageName, userId)
4477                == PackageManager.PERMISSION_GRANTED) {
4478            return false;
4479        }
4480
4481        final int flags;
4482
4483        final long identity = Binder.clearCallingIdentity();
4484        try {
4485            flags = getPermissionFlags(permissionName,
4486                    packageName, userId);
4487        } finally {
4488            Binder.restoreCallingIdentity(identity);
4489        }
4490
4491        final int fixedFlags = PackageManager.FLAG_PERMISSION_SYSTEM_FIXED
4492                | PackageManager.FLAG_PERMISSION_POLICY_FIXED
4493                | PackageManager.FLAG_PERMISSION_USER_FIXED;
4494
4495        if ((flags & fixedFlags) != 0) {
4496            return false;
4497        }
4498
4499        return (flags & PackageManager.FLAG_PERMISSION_USER_SET) != 0;
4500    }
4501
4502    @Override
4503    public void addOnPermissionsChangeListener(IOnPermissionsChangeListener listener) {
4504        mContext.enforceCallingOrSelfPermission(
4505                Manifest.permission.OBSERVE_GRANT_REVOKE_PERMISSIONS,
4506                "addOnPermissionsChangeListener");
4507
4508        synchronized (mPackages) {
4509            mOnPermissionChangeListeners.addListenerLocked(listener);
4510        }
4511    }
4512
4513    @Override
4514    public void removeOnPermissionsChangeListener(IOnPermissionsChangeListener listener) {
4515        synchronized (mPackages) {
4516            mOnPermissionChangeListeners.removeListenerLocked(listener);
4517        }
4518    }
4519
4520    @Override
4521    public boolean isProtectedBroadcast(String actionName) {
4522        synchronized (mPackages) {
4523            if (mProtectedBroadcasts.contains(actionName)) {
4524                return true;
4525            } else if (actionName != null) {
4526                // TODO: remove these terrible hacks
4527                if (actionName.startsWith("android.net.netmon.lingerExpired")
4528                        || actionName.startsWith("com.android.server.sip.SipWakeupTimer")
4529                        || actionName.startsWith("com.android.internal.telephony.data-reconnect")
4530                        || actionName.startsWith("android.net.netmon.launchCaptivePortalApp")) {
4531                    return true;
4532                }
4533            }
4534        }
4535        return false;
4536    }
4537
4538    @Override
4539    public int checkSignatures(String pkg1, String pkg2) {
4540        synchronized (mPackages) {
4541            final PackageParser.Package p1 = mPackages.get(pkg1);
4542            final PackageParser.Package p2 = mPackages.get(pkg2);
4543            if (p1 == null || p1.mExtras == null
4544                    || p2 == null || p2.mExtras == null) {
4545                return PackageManager.SIGNATURE_UNKNOWN_PACKAGE;
4546            }
4547            return compareSignatures(p1.mSignatures, p2.mSignatures);
4548        }
4549    }
4550
4551    @Override
4552    public int checkUidSignatures(int uid1, int uid2) {
4553        // Map to base uids.
4554        uid1 = UserHandle.getAppId(uid1);
4555        uid2 = UserHandle.getAppId(uid2);
4556        // reader
4557        synchronized (mPackages) {
4558            Signature[] s1;
4559            Signature[] s2;
4560            Object obj = mSettings.getUserIdLPr(uid1);
4561            if (obj != null) {
4562                if (obj instanceof SharedUserSetting) {
4563                    s1 = ((SharedUserSetting)obj).signatures.mSignatures;
4564                } else if (obj instanceof PackageSetting) {
4565                    s1 = ((PackageSetting)obj).signatures.mSignatures;
4566                } else {
4567                    return PackageManager.SIGNATURE_UNKNOWN_PACKAGE;
4568                }
4569            } else {
4570                return PackageManager.SIGNATURE_UNKNOWN_PACKAGE;
4571            }
4572            obj = mSettings.getUserIdLPr(uid2);
4573            if (obj != null) {
4574                if (obj instanceof SharedUserSetting) {
4575                    s2 = ((SharedUserSetting)obj).signatures.mSignatures;
4576                } else if (obj instanceof PackageSetting) {
4577                    s2 = ((PackageSetting)obj).signatures.mSignatures;
4578                } else {
4579                    return PackageManager.SIGNATURE_UNKNOWN_PACKAGE;
4580                }
4581            } else {
4582                return PackageManager.SIGNATURE_UNKNOWN_PACKAGE;
4583            }
4584            return compareSignatures(s1, s2);
4585        }
4586    }
4587
4588    /**
4589     * This method should typically only be used when granting or revoking
4590     * permissions, since the app may immediately restart after this call.
4591     * <p>
4592     * If you're doing surgery on app code/data, use {@link PackageFreezer} to
4593     * guard your work against the app being relaunched.
4594     */
4595    private void killUid(int appId, int userId, String reason) {
4596        final long identity = Binder.clearCallingIdentity();
4597        try {
4598            IActivityManager am = ActivityManagerNative.getDefault();
4599            if (am != null) {
4600                try {
4601                    am.killUid(appId, userId, reason);
4602                } catch (RemoteException e) {
4603                    /* ignore - same process */
4604                }
4605            }
4606        } finally {
4607            Binder.restoreCallingIdentity(identity);
4608        }
4609    }
4610
4611    /**
4612     * Compares two sets of signatures. Returns:
4613     * <br />
4614     * {@link PackageManager#SIGNATURE_NEITHER_SIGNED}: if both signature sets are null,
4615     * <br />
4616     * {@link PackageManager#SIGNATURE_FIRST_NOT_SIGNED}: if the first signature set is null,
4617     * <br />
4618     * {@link PackageManager#SIGNATURE_SECOND_NOT_SIGNED}: if the second signature set is null,
4619     * <br />
4620     * {@link PackageManager#SIGNATURE_MATCH}: if the two signature sets are identical,
4621     * <br />
4622     * {@link PackageManager#SIGNATURE_NO_MATCH}: if the two signature sets differ.
4623     */
4624    static int compareSignatures(Signature[] s1, Signature[] s2) {
4625        if (s1 == null) {
4626            return s2 == null
4627                    ? PackageManager.SIGNATURE_NEITHER_SIGNED
4628                    : PackageManager.SIGNATURE_FIRST_NOT_SIGNED;
4629        }
4630
4631        if (s2 == null) {
4632            return PackageManager.SIGNATURE_SECOND_NOT_SIGNED;
4633        }
4634
4635        if (s1.length != s2.length) {
4636            return PackageManager.SIGNATURE_NO_MATCH;
4637        }
4638
4639        // Since both signature sets are of size 1, we can compare without HashSets.
4640        if (s1.length == 1) {
4641            return s1[0].equals(s2[0]) ?
4642                    PackageManager.SIGNATURE_MATCH :
4643                    PackageManager.SIGNATURE_NO_MATCH;
4644        }
4645
4646        ArraySet<Signature> set1 = new ArraySet<Signature>();
4647        for (Signature sig : s1) {
4648            set1.add(sig);
4649        }
4650        ArraySet<Signature> set2 = new ArraySet<Signature>();
4651        for (Signature sig : s2) {
4652            set2.add(sig);
4653        }
4654        // Make sure s2 contains all signatures in s1.
4655        if (set1.equals(set2)) {
4656            return PackageManager.SIGNATURE_MATCH;
4657        }
4658        return PackageManager.SIGNATURE_NO_MATCH;
4659    }
4660
4661    /**
4662     * If the database version for this type of package (internal storage or
4663     * external storage) is less than the version where package signatures
4664     * were updated, return true.
4665     */
4666    private boolean isCompatSignatureUpdateNeeded(PackageParser.Package scannedPkg) {
4667        final VersionInfo ver = getSettingsVersionForPackage(scannedPkg);
4668        return ver.databaseVersion < DatabaseVersion.SIGNATURE_END_ENTITY;
4669    }
4670
4671    /**
4672     * Used for backward compatibility to make sure any packages with
4673     * certificate chains get upgraded to the new style. {@code existingSigs}
4674     * will be in the old format (since they were stored on disk from before the
4675     * system upgrade) and {@code scannedSigs} will be in the newer format.
4676     */
4677    private int compareSignaturesCompat(PackageSignatures existingSigs,
4678            PackageParser.Package scannedPkg) {
4679        if (!isCompatSignatureUpdateNeeded(scannedPkg)) {
4680            return PackageManager.SIGNATURE_NO_MATCH;
4681        }
4682
4683        ArraySet<Signature> existingSet = new ArraySet<Signature>();
4684        for (Signature sig : existingSigs.mSignatures) {
4685            existingSet.add(sig);
4686        }
4687        ArraySet<Signature> scannedCompatSet = new ArraySet<Signature>();
4688        for (Signature sig : scannedPkg.mSignatures) {
4689            try {
4690                Signature[] chainSignatures = sig.getChainSignatures();
4691                for (Signature chainSig : chainSignatures) {
4692                    scannedCompatSet.add(chainSig);
4693                }
4694            } catch (CertificateEncodingException e) {
4695                scannedCompatSet.add(sig);
4696            }
4697        }
4698        /*
4699         * Make sure the expanded scanned set contains all signatures in the
4700         * existing one.
4701         */
4702        if (scannedCompatSet.equals(existingSet)) {
4703            // Migrate the old signatures to the new scheme.
4704            existingSigs.assignSignatures(scannedPkg.mSignatures);
4705            // The new KeySets will be re-added later in the scanning process.
4706            synchronized (mPackages) {
4707                mSettings.mKeySetManagerService.removeAppKeySetDataLPw(scannedPkg.packageName);
4708            }
4709            return PackageManager.SIGNATURE_MATCH;
4710        }
4711        return PackageManager.SIGNATURE_NO_MATCH;
4712    }
4713
4714    private boolean isRecoverSignatureUpdateNeeded(PackageParser.Package scannedPkg) {
4715        final VersionInfo ver = getSettingsVersionForPackage(scannedPkg);
4716        return ver.databaseVersion < DatabaseVersion.SIGNATURE_MALFORMED_RECOVER;
4717    }
4718
4719    private int compareSignaturesRecover(PackageSignatures existingSigs,
4720            PackageParser.Package scannedPkg) {
4721        if (!isRecoverSignatureUpdateNeeded(scannedPkg)) {
4722            return PackageManager.SIGNATURE_NO_MATCH;
4723        }
4724
4725        String msg = null;
4726        try {
4727            if (Signature.areEffectiveMatch(existingSigs.mSignatures, scannedPkg.mSignatures)) {
4728                logCriticalInfo(Log.INFO, "Recovered effectively matching certificates for "
4729                        + scannedPkg.packageName);
4730                return PackageManager.SIGNATURE_MATCH;
4731            }
4732        } catch (CertificateException e) {
4733            msg = e.getMessage();
4734        }
4735
4736        logCriticalInfo(Log.INFO,
4737                "Failed to recover certificates for " + scannedPkg.packageName + ": " + msg);
4738        return PackageManager.SIGNATURE_NO_MATCH;
4739    }
4740
4741    @Override
4742    public List<String> getAllPackages() {
4743        synchronized (mPackages) {
4744            return new ArrayList<String>(mPackages.keySet());
4745        }
4746    }
4747
4748    @Override
4749    public String[] getPackagesForUid(int uid) {
4750        uid = UserHandle.getAppId(uid);
4751        // reader
4752        synchronized (mPackages) {
4753            Object obj = mSettings.getUserIdLPr(uid);
4754            if (obj instanceof SharedUserSetting) {
4755                final SharedUserSetting sus = (SharedUserSetting) obj;
4756                final int N = sus.packages.size();
4757                final String[] res = new String[N];
4758                for (int i = 0; i < N; i++) {
4759                    res[i] = sus.packages.valueAt(i).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        synchronized (mPackages) {
14482            disabledSystem = disableSystemPackageLPw(deletedPackage, pkg);
14483        }
14484        if (!disabledSystem) {
14485            // We didn't need to disable the .apk as a current system package,
14486            // which means we are replacing another update that is already
14487            // installed.  We need to make sure to delete the older one's .apk.
14488            res.removedInfo.args = createInstallArgsForExisting(0,
14489                    deletedPackage.applicationInfo.getCodePath(),
14490                    deletedPackage.applicationInfo.getResourcePath(),
14491                    getAppDexInstructionSets(deletedPackage.applicationInfo));
14492        } else {
14493            res.removedInfo.args = null;
14494        }
14495
14496        // Successfully disabled the old package. Now proceed with re-installation
14497        clearAppDataLIF(pkg, UserHandle.USER_ALL, StorageManager.FLAG_STORAGE_DE
14498                | StorageManager.FLAG_STORAGE_CE | Installer.FLAG_CLEAR_CODE_CACHE_ONLY);
14499        clearAppProfilesLIF(deletedPackage, UserHandle.USER_ALL);
14500
14501        res.setReturnCode(PackageManager.INSTALL_SUCCEEDED);
14502        pkg.setApplicationInfoFlags(ApplicationInfo.FLAG_UPDATED_SYSTEM_APP,
14503                ApplicationInfo.FLAG_UPDATED_SYSTEM_APP);
14504
14505        PackageParser.Package newPackage = null;
14506        try {
14507            // Add the package to the internal data structures
14508            newPackage = scanPackageTracedLI(pkg, policyFlags, scanFlags, 0, user);
14509
14510            // Set the update and install times
14511            PackageSetting deletedPkgSetting = (PackageSetting) deletedPackage.mExtras;
14512            setInstallAndUpdateTime(newPackage, deletedPkgSetting.firstInstallTime,
14513                    System.currentTimeMillis());
14514
14515            // Update the package dynamic state if succeeded
14516            if (res.returnCode == PackageManager.INSTALL_SUCCEEDED) {
14517                // Now that the install succeeded make sure we remove data
14518                // directories for any child package the update removed.
14519                final int deletedChildCount = (deletedPackage.childPackages != null)
14520                        ? deletedPackage.childPackages.size() : 0;
14521                final int newChildCount = (newPackage.childPackages != null)
14522                        ? newPackage.childPackages.size() : 0;
14523                for (int i = 0; i < deletedChildCount; i++) {
14524                    PackageParser.Package deletedChildPkg = deletedPackage.childPackages.get(i);
14525                    boolean childPackageDeleted = true;
14526                    for (int j = 0; j < newChildCount; j++) {
14527                        PackageParser.Package newChildPkg = newPackage.childPackages.get(j);
14528                        if (deletedChildPkg.packageName.equals(newChildPkg.packageName)) {
14529                            childPackageDeleted = false;
14530                            break;
14531                        }
14532                    }
14533                    if (childPackageDeleted) {
14534                        PackageSetting ps = mSettings.getDisabledSystemPkgLPr(
14535                                deletedChildPkg.packageName);
14536                        if (ps != null && res.removedInfo.removedChildPackages != null) {
14537                            PackageRemovedInfo removedChildRes = res.removedInfo
14538                                    .removedChildPackages.get(deletedChildPkg.packageName);
14539                            removePackageDataLIF(ps, allUsers, removedChildRes, 0, false);
14540                            removedChildRes.removedForAllUsers = mPackages.get(ps.name) == null;
14541                        }
14542                    }
14543                }
14544
14545                updateSettingsLI(newPackage, installerPackageName, allUsers, res, user);
14546                prepareAppDataAfterInstallLIF(newPackage);
14547            }
14548        } catch (PackageManagerException e) {
14549            res.setReturnCode(INSTALL_FAILED_INTERNAL_ERROR);
14550            res.setError("Package couldn't be installed in " + pkg.codePath, e);
14551        }
14552
14553        if (res.returnCode != PackageManager.INSTALL_SUCCEEDED) {
14554            // Re installation failed. Restore old information
14555            // Remove new pkg information
14556            if (newPackage != null) {
14557                removeInstalledPackageLI(newPackage, true);
14558            }
14559            // Add back the old system package
14560            try {
14561                scanPackageTracedLI(deletedPackage, policyFlags, SCAN_UPDATE_SIGNATURE, 0, user);
14562            } catch (PackageManagerException e) {
14563                Slog.e(TAG, "Failed to restore original package: " + e.getMessage());
14564            }
14565
14566            synchronized (mPackages) {
14567                if (disabledSystem) {
14568                    enableSystemPackageLPw(deletedPackage);
14569                }
14570
14571                // Ensure the installer package name up to date
14572                setInstallerPackageNameLPw(deletedPackage, installerPackageName);
14573
14574                // Update permissions for restored package
14575                updatePermissionsLPw(deletedPackage, UPDATE_PERMISSIONS_ALL);
14576
14577                mSettings.writeLPr();
14578            }
14579
14580            Slog.i(TAG, "Successfully restored package : " + deletedPackage.packageName
14581                    + " after failed upgrade");
14582        }
14583    }
14584
14585    /**
14586     * Checks whether the parent or any of the child packages have a change shared
14587     * user. For a package to be a valid update the shred users of the parent and
14588     * the children should match. We may later support changing child shared users.
14589     * @param oldPkg The updated package.
14590     * @param newPkg The update package.
14591     * @return The shared user that change between the versions.
14592     */
14593    private String getParentOrChildPackageChangedSharedUser(PackageParser.Package oldPkg,
14594            PackageParser.Package newPkg) {
14595        // Check parent shared user
14596        if (!Objects.equals(oldPkg.mSharedUserId, newPkg.mSharedUserId)) {
14597            return newPkg.packageName;
14598        }
14599        // Check child shared users
14600        final int oldChildCount = (oldPkg.childPackages != null) ? oldPkg.childPackages.size() : 0;
14601        final int newChildCount = (newPkg.childPackages != null) ? newPkg.childPackages.size() : 0;
14602        for (int i = 0; i < newChildCount; i++) {
14603            PackageParser.Package newChildPkg = newPkg.childPackages.get(i);
14604            // If this child was present, did it have the same shared user?
14605            for (int j = 0; j < oldChildCount; j++) {
14606                PackageParser.Package oldChildPkg = oldPkg.childPackages.get(j);
14607                if (newChildPkg.packageName.equals(oldChildPkg.packageName)
14608                        && !Objects.equals(newChildPkg.mSharedUserId, oldChildPkg.mSharedUserId)) {
14609                    return newChildPkg.packageName;
14610                }
14611            }
14612        }
14613        return null;
14614    }
14615
14616    private void removeNativeBinariesLI(PackageSetting ps) {
14617        // Remove the lib path for the parent package
14618        if (ps != null) {
14619            NativeLibraryHelper.removeNativeBinariesLI(ps.legacyNativeLibraryPathString);
14620            // Remove the lib path for the child packages
14621            final int childCount = (ps.childPackageNames != null) ? ps.childPackageNames.size() : 0;
14622            for (int i = 0; i < childCount; i++) {
14623                PackageSetting childPs = null;
14624                synchronized (mPackages) {
14625                    childPs = mSettings.peekPackageLPr(ps.childPackageNames.get(i));
14626                }
14627                if (childPs != null) {
14628                    NativeLibraryHelper.removeNativeBinariesLI(childPs
14629                            .legacyNativeLibraryPathString);
14630                }
14631            }
14632        }
14633    }
14634
14635    private void enableSystemPackageLPw(PackageParser.Package pkg) {
14636        // Enable the parent package
14637        mSettings.enableSystemPackageLPw(pkg.packageName);
14638        // Enable the child packages
14639        final int childCount = (pkg.childPackages != null) ? pkg.childPackages.size() : 0;
14640        for (int i = 0; i < childCount; i++) {
14641            PackageParser.Package childPkg = pkg.childPackages.get(i);
14642            mSettings.enableSystemPackageLPw(childPkg.packageName);
14643        }
14644    }
14645
14646    private boolean disableSystemPackageLPw(PackageParser.Package oldPkg,
14647            PackageParser.Package newPkg) {
14648        // Disable the parent package (parent always replaced)
14649        boolean disabled = mSettings.disableSystemPackageLPw(oldPkg.packageName, true);
14650        // Disable the child packages
14651        final int childCount = (oldPkg.childPackages != null) ? oldPkg.childPackages.size() : 0;
14652        for (int i = 0; i < childCount; i++) {
14653            PackageParser.Package childPkg = oldPkg.childPackages.get(i);
14654            final boolean replace = newPkg.hasChildPackage(childPkg.packageName);
14655            disabled |= mSettings.disableSystemPackageLPw(childPkg.packageName, replace);
14656        }
14657        return disabled;
14658    }
14659
14660    private void setInstallerPackageNameLPw(PackageParser.Package pkg,
14661            String installerPackageName) {
14662        // Enable the parent package
14663        mSettings.setInstallerPackageName(pkg.packageName, installerPackageName);
14664        // Enable the child packages
14665        final int childCount = (pkg.childPackages != null) ? pkg.childPackages.size() : 0;
14666        for (int i = 0; i < childCount; i++) {
14667            PackageParser.Package childPkg = pkg.childPackages.get(i);
14668            mSettings.setInstallerPackageName(childPkg.packageName, installerPackageName);
14669        }
14670    }
14671
14672    private int[] revokeUnusedSharedUserPermissionsLPw(SharedUserSetting su, int[] allUserIds) {
14673        // Collect all used permissions in the UID
14674        ArraySet<String> usedPermissions = new ArraySet<>();
14675        final int packageCount = su.packages.size();
14676        for (int i = 0; i < packageCount; i++) {
14677            PackageSetting ps = su.packages.valueAt(i);
14678            if (ps.pkg == null) {
14679                continue;
14680            }
14681            final int requestedPermCount = ps.pkg.requestedPermissions.size();
14682            for (int j = 0; j < requestedPermCount; j++) {
14683                String permission = ps.pkg.requestedPermissions.get(j);
14684                BasePermission bp = mSettings.mPermissions.get(permission);
14685                if (bp != null) {
14686                    usedPermissions.add(permission);
14687                }
14688            }
14689        }
14690
14691        PermissionsState permissionsState = su.getPermissionsState();
14692        // Prune install permissions
14693        List<PermissionState> installPermStates = permissionsState.getInstallPermissionStates();
14694        final int installPermCount = installPermStates.size();
14695        for (int i = installPermCount - 1; i >= 0;  i--) {
14696            PermissionState permissionState = installPermStates.get(i);
14697            if (!usedPermissions.contains(permissionState.getName())) {
14698                BasePermission bp = mSettings.mPermissions.get(permissionState.getName());
14699                if (bp != null) {
14700                    permissionsState.revokeInstallPermission(bp);
14701                    permissionsState.updatePermissionFlags(bp, UserHandle.USER_ALL,
14702                            PackageManager.MASK_PERMISSION_FLAGS, 0);
14703                }
14704            }
14705        }
14706
14707        int[] runtimePermissionChangedUserIds = EmptyArray.INT;
14708
14709        // Prune runtime permissions
14710        for (int userId : allUserIds) {
14711            List<PermissionState> runtimePermStates = permissionsState
14712                    .getRuntimePermissionStates(userId);
14713            final int runtimePermCount = runtimePermStates.size();
14714            for (int i = runtimePermCount - 1; i >= 0; i--) {
14715                PermissionState permissionState = runtimePermStates.get(i);
14716                if (!usedPermissions.contains(permissionState.getName())) {
14717                    BasePermission bp = mSettings.mPermissions.get(permissionState.getName());
14718                    if (bp != null) {
14719                        permissionsState.revokeRuntimePermission(bp, userId);
14720                        permissionsState.updatePermissionFlags(bp, userId,
14721                                PackageManager.MASK_PERMISSION_FLAGS, 0);
14722                        runtimePermissionChangedUserIds = ArrayUtils.appendInt(
14723                                runtimePermissionChangedUserIds, userId);
14724                    }
14725                }
14726            }
14727        }
14728
14729        return runtimePermissionChangedUserIds;
14730    }
14731
14732    private void updateSettingsLI(PackageParser.Package newPackage, String installerPackageName,
14733            int[] allUsers, PackageInstalledInfo res, UserHandle user) {
14734        // Update the parent package setting
14735        updateSettingsInternalLI(newPackage, installerPackageName, allUsers, res.origUsers,
14736                res, user);
14737        // Update the child packages setting
14738        final int childCount = (newPackage.childPackages != null)
14739                ? newPackage.childPackages.size() : 0;
14740        for (int i = 0; i < childCount; i++) {
14741            PackageParser.Package childPackage = newPackage.childPackages.get(i);
14742            PackageInstalledInfo childRes = res.addedChildPackages.get(childPackage.packageName);
14743            updateSettingsInternalLI(childPackage, installerPackageName, allUsers,
14744                    childRes.origUsers, childRes, user);
14745        }
14746    }
14747
14748    private void updateSettingsInternalLI(PackageParser.Package newPackage,
14749            String installerPackageName, int[] allUsers, int[] installedForUsers,
14750            PackageInstalledInfo res, UserHandle user) {
14751        Trace.traceBegin(TRACE_TAG_PACKAGE_MANAGER, "updateSettings");
14752
14753        String pkgName = newPackage.packageName;
14754        synchronized (mPackages) {
14755            //write settings. the installStatus will be incomplete at this stage.
14756            //note that the new package setting would have already been
14757            //added to mPackages. It hasn't been persisted yet.
14758            mSettings.setInstallStatus(pkgName, PackageSettingBase.PKG_INSTALL_INCOMPLETE);
14759            Trace.traceBegin(TRACE_TAG_PACKAGE_MANAGER, "writeSettings");
14760            mSettings.writeLPr();
14761            Trace.traceEnd(TRACE_TAG_PACKAGE_MANAGER);
14762        }
14763
14764        if (DEBUG_INSTALL) Slog.d(TAG, "New package installed in " + newPackage.codePath);
14765        synchronized (mPackages) {
14766            updatePermissionsLPw(newPackage.packageName, newPackage,
14767                    UPDATE_PERMISSIONS_REPLACE_PKG | (newPackage.permissions.size() > 0
14768                            ? UPDATE_PERMISSIONS_ALL : 0));
14769            // For system-bundled packages, we assume that installing an upgraded version
14770            // of the package implies that the user actually wants to run that new code,
14771            // so we enable the package.
14772            PackageSetting ps = mSettings.mPackages.get(pkgName);
14773            final int userId = user.getIdentifier();
14774            if (ps != null) {
14775                if (isSystemApp(newPackage)) {
14776                    if (DEBUG_INSTALL) {
14777                        Slog.d(TAG, "Implicitly enabling system package on upgrade: " + pkgName);
14778                    }
14779                    // Enable system package for requested users
14780                    if (res.origUsers != null) {
14781                        for (int origUserId : res.origUsers) {
14782                            if (userId == UserHandle.USER_ALL || userId == origUserId) {
14783                                ps.setEnabled(COMPONENT_ENABLED_STATE_DEFAULT,
14784                                        origUserId, installerPackageName);
14785                            }
14786                        }
14787                    }
14788                    // Also convey the prior install/uninstall state
14789                    if (allUsers != null && installedForUsers != null) {
14790                        for (int currentUserId : allUsers) {
14791                            final boolean installed = ArrayUtils.contains(
14792                                    installedForUsers, currentUserId);
14793                            if (DEBUG_INSTALL) {
14794                                Slog.d(TAG, "    user " + currentUserId + " => " + installed);
14795                            }
14796                            ps.setInstalled(installed, currentUserId);
14797                        }
14798                        // these install state changes will be persisted in the
14799                        // upcoming call to mSettings.writeLPr().
14800                    }
14801                }
14802                // It's implied that when a user requests installation, they want the app to be
14803                // installed and enabled.
14804                if (userId != UserHandle.USER_ALL) {
14805                    ps.setInstalled(true, userId);
14806                    ps.setEnabled(COMPONENT_ENABLED_STATE_DEFAULT, userId, installerPackageName);
14807                }
14808            }
14809            res.name = pkgName;
14810            res.uid = newPackage.applicationInfo.uid;
14811            res.pkg = newPackage;
14812            mSettings.setInstallStatus(pkgName, PackageSettingBase.PKG_INSTALL_COMPLETE);
14813            mSettings.setInstallerPackageName(pkgName, installerPackageName);
14814            res.setReturnCode(PackageManager.INSTALL_SUCCEEDED);
14815            //to update install status
14816            Trace.traceBegin(TRACE_TAG_PACKAGE_MANAGER, "writeSettings");
14817            mSettings.writeLPr();
14818            Trace.traceEnd(TRACE_TAG_PACKAGE_MANAGER);
14819        }
14820
14821        Trace.traceEnd(TRACE_TAG_PACKAGE_MANAGER);
14822    }
14823
14824    private void installPackageTracedLI(InstallArgs args, PackageInstalledInfo res) {
14825        try {
14826            Trace.traceBegin(TRACE_TAG_PACKAGE_MANAGER, "installPackage");
14827            installPackageLI(args, res);
14828        } finally {
14829            Trace.traceEnd(TRACE_TAG_PACKAGE_MANAGER);
14830        }
14831    }
14832
14833    private void installPackageLI(InstallArgs args, PackageInstalledInfo res) {
14834        final int installFlags = args.installFlags;
14835        final String installerPackageName = args.installerPackageName;
14836        final String volumeUuid = args.volumeUuid;
14837        final File tmpPackageFile = new File(args.getCodePath());
14838        final boolean forwardLocked = ((installFlags & PackageManager.INSTALL_FORWARD_LOCK) != 0);
14839        final boolean onExternal = (((installFlags & PackageManager.INSTALL_EXTERNAL) != 0)
14840                || (args.volumeUuid != null));
14841        final boolean ephemeral = ((installFlags & PackageManager.INSTALL_EPHEMERAL) != 0);
14842        final boolean forceSdk = ((installFlags & PackageManager.INSTALL_FORCE_SDK) != 0);
14843        boolean replace = false;
14844        int scanFlags = SCAN_NEW_INSTALL | SCAN_UPDATE_SIGNATURE;
14845        if (args.move != null) {
14846            // moving a complete application; perform an initial scan on the new install location
14847            scanFlags |= SCAN_INITIAL;
14848        }
14849        if ((installFlags & PackageManager.INSTALL_DONT_KILL_APP) != 0) {
14850            scanFlags |= SCAN_DONT_KILL_APP;
14851        }
14852
14853        // Result object to be returned
14854        res.setReturnCode(PackageManager.INSTALL_SUCCEEDED);
14855
14856        if (DEBUG_INSTALL) Slog.d(TAG, "installPackageLI: path=" + tmpPackageFile);
14857
14858        // Sanity check
14859        if (ephemeral && (forwardLocked || onExternal)) {
14860            Slog.i(TAG, "Incompatible ephemeral install; fwdLocked=" + forwardLocked
14861                    + " external=" + onExternal);
14862            res.setReturnCode(PackageManager.INSTALL_FAILED_EPHEMERAL_INVALID);
14863            return;
14864        }
14865
14866        // Retrieve PackageSettings and parse package
14867        final int parseFlags = mDefParseFlags | PackageParser.PARSE_CHATTY
14868                | PackageParser.PARSE_ENFORCE_CODE
14869                | (forwardLocked ? PackageParser.PARSE_FORWARD_LOCK : 0)
14870                | (onExternal ? PackageParser.PARSE_EXTERNAL_STORAGE : 0)
14871                | (ephemeral ? PackageParser.PARSE_IS_EPHEMERAL : 0)
14872                | (forceSdk ? PackageParser.PARSE_FORCE_SDK : 0);
14873        PackageParser pp = new PackageParser();
14874        pp.setSeparateProcesses(mSeparateProcesses);
14875        pp.setDisplayMetrics(mMetrics);
14876
14877        Trace.traceBegin(TRACE_TAG_PACKAGE_MANAGER, "parsePackage");
14878        final PackageParser.Package pkg;
14879        try {
14880            pkg = pp.parsePackage(tmpPackageFile, parseFlags);
14881        } catch (PackageParserException e) {
14882            res.setError("Failed parse during installPackageLI", e);
14883            return;
14884        } finally {
14885            Trace.traceEnd(TRACE_TAG_PACKAGE_MANAGER);
14886        }
14887
14888        // If we are installing a clustered package add results for the children
14889        if (pkg.childPackages != null) {
14890            synchronized (mPackages) {
14891                final int childCount = pkg.childPackages.size();
14892                for (int i = 0; i < childCount; i++) {
14893                    PackageParser.Package childPkg = pkg.childPackages.get(i);
14894                    PackageInstalledInfo childRes = new PackageInstalledInfo();
14895                    childRes.setReturnCode(PackageManager.INSTALL_SUCCEEDED);
14896                    childRes.pkg = childPkg;
14897                    childRes.name = childPkg.packageName;
14898                    PackageSetting childPs = mSettings.peekPackageLPr(childPkg.packageName);
14899                    if (childPs != null) {
14900                        childRes.origUsers = childPs.queryInstalledUsers(
14901                                sUserManager.getUserIds(), true);
14902                    }
14903                    if ((mPackages.containsKey(childPkg.packageName))) {
14904                        childRes.removedInfo = new PackageRemovedInfo();
14905                        childRes.removedInfo.removedPackage = childPkg.packageName;
14906                    }
14907                    if (res.addedChildPackages == null) {
14908                        res.addedChildPackages = new ArrayMap<>();
14909                    }
14910                    res.addedChildPackages.put(childPkg.packageName, childRes);
14911                }
14912            }
14913        }
14914
14915        // If package doesn't declare API override, mark that we have an install
14916        // time CPU ABI override.
14917        if (TextUtils.isEmpty(pkg.cpuAbiOverride)) {
14918            pkg.cpuAbiOverride = args.abiOverride;
14919        }
14920
14921        String pkgName = res.name = pkg.packageName;
14922        if ((pkg.applicationInfo.flags&ApplicationInfo.FLAG_TEST_ONLY) != 0) {
14923            if ((installFlags & PackageManager.INSTALL_ALLOW_TEST) == 0) {
14924                res.setError(INSTALL_FAILED_TEST_ONLY, "installPackageLI");
14925                return;
14926            }
14927        }
14928
14929        try {
14930            // either use what we've been given or parse directly from the APK
14931            if (args.certificates != null) {
14932                try {
14933                    PackageParser.populateCertificates(pkg, args.certificates);
14934                } catch (PackageParserException e) {
14935                    // there was something wrong with the certificates we were given;
14936                    // try to pull them from the APK
14937                    PackageParser.collectCertificates(pkg, parseFlags);
14938                }
14939            } else {
14940                PackageParser.collectCertificates(pkg, parseFlags);
14941            }
14942        } catch (PackageParserException e) {
14943            res.setError("Failed collect during installPackageLI", e);
14944            return;
14945        }
14946
14947        // Get rid of all references to package scan path via parser.
14948        pp = null;
14949        String oldCodePath = null;
14950        boolean systemApp = false;
14951        synchronized (mPackages) {
14952            // Check if installing already existing package
14953            if ((installFlags & PackageManager.INSTALL_REPLACE_EXISTING) != 0) {
14954                String oldName = mSettings.mRenamedPackages.get(pkgName);
14955                if (pkg.mOriginalPackages != null
14956                        && pkg.mOriginalPackages.contains(oldName)
14957                        && mPackages.containsKey(oldName)) {
14958                    // This package is derived from an original package,
14959                    // and this device has been updating from that original
14960                    // name.  We must continue using the original name, so
14961                    // rename the new package here.
14962                    pkg.setPackageName(oldName);
14963                    pkgName = pkg.packageName;
14964                    replace = true;
14965                    if (DEBUG_INSTALL) Slog.d(TAG, "Replacing existing renamed package: oldName="
14966                            + oldName + " pkgName=" + pkgName);
14967                } else if (mPackages.containsKey(pkgName)) {
14968                    // This package, under its official name, already exists
14969                    // on the device; we should replace it.
14970                    replace = true;
14971                    if (DEBUG_INSTALL) Slog.d(TAG, "Replace existing pacakge: " + pkgName);
14972                }
14973
14974                // Child packages are installed through the parent package
14975                if (pkg.parentPackage != null) {
14976                    res.setError(PackageManager.INSTALL_PARSE_FAILED_BAD_PACKAGE_NAME,
14977                            "Package " + pkg.packageName + " is child of package "
14978                                    + pkg.parentPackage.parentPackage + ". Child packages "
14979                                    + "can be updated only through the parent package.");
14980                    return;
14981                }
14982
14983                if (replace) {
14984                    // Prevent apps opting out from runtime permissions
14985                    PackageParser.Package oldPackage = mPackages.get(pkgName);
14986                    final int oldTargetSdk = oldPackage.applicationInfo.targetSdkVersion;
14987                    final int newTargetSdk = pkg.applicationInfo.targetSdkVersion;
14988                    if (oldTargetSdk > Build.VERSION_CODES.LOLLIPOP_MR1
14989                            && newTargetSdk <= Build.VERSION_CODES.LOLLIPOP_MR1) {
14990                        res.setError(PackageManager.INSTALL_FAILED_PERMISSION_MODEL_DOWNGRADE,
14991                                "Package " + pkg.packageName + " new target SDK " + newTargetSdk
14992                                        + " doesn't support runtime permissions but the old"
14993                                        + " target SDK " + oldTargetSdk + " does.");
14994                        return;
14995                    }
14996
14997                    // Prevent installing of child packages
14998                    if (oldPackage.parentPackage != null) {
14999                        res.setError(PackageManager.INSTALL_PARSE_FAILED_BAD_PACKAGE_NAME,
15000                                "Package " + pkg.packageName + " is child of package "
15001                                        + oldPackage.parentPackage + ". Child packages "
15002                                        + "can be updated only through the parent package.");
15003                        return;
15004                    }
15005                }
15006            }
15007
15008            PackageSetting ps = mSettings.mPackages.get(pkgName);
15009            if (ps != null) {
15010                if (DEBUG_INSTALL) Slog.d(TAG, "Existing package: " + ps);
15011
15012                // Quick sanity check that we're signed correctly if updating;
15013                // we'll check this again later when scanning, but we want to
15014                // bail early here before tripping over redefined permissions.
15015                if (shouldCheckUpgradeKeySetLP(ps, scanFlags)) {
15016                    if (!checkUpgradeKeySetLP(ps, pkg)) {
15017                        res.setError(INSTALL_FAILED_UPDATE_INCOMPATIBLE, "Package "
15018                                + pkg.packageName + " upgrade keys do not match the "
15019                                + "previously installed version");
15020                        return;
15021                    }
15022                } else {
15023                    try {
15024                        verifySignaturesLP(ps, pkg);
15025                    } catch (PackageManagerException e) {
15026                        res.setError(e.error, e.getMessage());
15027                        return;
15028                    }
15029                }
15030
15031                oldCodePath = mSettings.mPackages.get(pkgName).codePathString;
15032                if (ps.pkg != null && ps.pkg.applicationInfo != null) {
15033                    systemApp = (ps.pkg.applicationInfo.flags &
15034                            ApplicationInfo.FLAG_SYSTEM) != 0;
15035                }
15036                res.origUsers = ps.queryInstalledUsers(sUserManager.getUserIds(), true);
15037            }
15038
15039            // Check whether the newly-scanned package wants to define an already-defined perm
15040            int N = pkg.permissions.size();
15041            for (int i = N-1; i >= 0; i--) {
15042                PackageParser.Permission perm = pkg.permissions.get(i);
15043                BasePermission bp = mSettings.mPermissions.get(perm.info.name);
15044                if (bp != null) {
15045                    // If the defining package is signed with our cert, it's okay.  This
15046                    // also includes the "updating the same package" case, of course.
15047                    // "updating same package" could also involve key-rotation.
15048                    final boolean sigsOk;
15049                    if (bp.sourcePackage.equals(pkg.packageName)
15050                            && (bp.packageSetting instanceof PackageSetting)
15051                            && (shouldCheckUpgradeKeySetLP((PackageSetting) bp.packageSetting,
15052                                    scanFlags))) {
15053                        sigsOk = checkUpgradeKeySetLP((PackageSetting) bp.packageSetting, pkg);
15054                    } else {
15055                        sigsOk = compareSignatures(bp.packageSetting.signatures.mSignatures,
15056                                pkg.mSignatures) == PackageManager.SIGNATURE_MATCH;
15057                    }
15058                    if (!sigsOk) {
15059                        // If the owning package is the system itself, we log but allow
15060                        // install to proceed; we fail the install on all other permission
15061                        // redefinitions.
15062                        if (!bp.sourcePackage.equals("android")) {
15063                            res.setError(INSTALL_FAILED_DUPLICATE_PERMISSION, "Package "
15064                                    + pkg.packageName + " attempting to redeclare permission "
15065                                    + perm.info.name + " already owned by " + bp.sourcePackage);
15066                            res.origPermission = perm.info.name;
15067                            res.origPackage = bp.sourcePackage;
15068                            return;
15069                        } else {
15070                            Slog.w(TAG, "Package " + pkg.packageName
15071                                    + " attempting to redeclare system permission "
15072                                    + perm.info.name + "; ignoring new declaration");
15073                            pkg.permissions.remove(i);
15074                        }
15075                    }
15076                }
15077            }
15078        }
15079
15080        if (systemApp) {
15081            if (onExternal) {
15082                // Abort update; system app can't be replaced with app on sdcard
15083                res.setError(INSTALL_FAILED_INVALID_INSTALL_LOCATION,
15084                        "Cannot install updates to system apps on sdcard");
15085                return;
15086            } else if (ephemeral) {
15087                // Abort update; system app can't be replaced with an ephemeral app
15088                res.setError(INSTALL_FAILED_EPHEMERAL_INVALID,
15089                        "Cannot update a system app with an ephemeral app");
15090                return;
15091            }
15092        }
15093
15094        if (args.move != null) {
15095            // We did an in-place move, so dex is ready to roll
15096            scanFlags |= SCAN_NO_DEX;
15097            scanFlags |= SCAN_MOVE;
15098
15099            synchronized (mPackages) {
15100                final PackageSetting ps = mSettings.mPackages.get(pkgName);
15101                if (ps == null) {
15102                    res.setError(INSTALL_FAILED_INTERNAL_ERROR,
15103                            "Missing settings for moved package " + pkgName);
15104                }
15105
15106                // We moved the entire application as-is, so bring over the
15107                // previously derived ABI information.
15108                pkg.applicationInfo.primaryCpuAbi = ps.primaryCpuAbiString;
15109                pkg.applicationInfo.secondaryCpuAbi = ps.secondaryCpuAbiString;
15110            }
15111
15112        } else if (!forwardLocked && !pkg.applicationInfo.isExternalAsec()) {
15113            // Enable SCAN_NO_DEX flag to skip dexopt at a later stage
15114            scanFlags |= SCAN_NO_DEX;
15115
15116            try {
15117                String abiOverride = (TextUtils.isEmpty(pkg.cpuAbiOverride) ?
15118                    args.abiOverride : pkg.cpuAbiOverride);
15119                derivePackageAbi(pkg, new File(pkg.codePath), abiOverride,
15120                        true /* extract libs */);
15121            } catch (PackageManagerException pme) {
15122                Slog.e(TAG, "Error deriving application ABI", pme);
15123                res.setError(INSTALL_FAILED_INTERNAL_ERROR, "Error deriving application ABI");
15124                return;
15125            }
15126
15127            // Shared libraries for the package need to be updated.
15128            synchronized (mPackages) {
15129                try {
15130                    updateSharedLibrariesLPw(pkg, null);
15131                } catch (PackageManagerException e) {
15132                    Slog.e(TAG, "updateSharedLibrariesLPw failed: " + e.getMessage());
15133                }
15134            }
15135            Trace.traceBegin(TRACE_TAG_PACKAGE_MANAGER, "dexopt");
15136            // Do not run PackageDexOptimizer through the local performDexOpt
15137            // method because `pkg` may not be in `mPackages` yet.
15138            //
15139            // Also, don't fail application installs if the dexopt step fails.
15140            mPackageDexOptimizer.performDexOpt(pkg, pkg.usesLibraryFiles,
15141                    null /* instructionSets */, false /* checkProfiles */,
15142                    getCompilerFilterForReason(REASON_INSTALL));
15143            Trace.traceEnd(TRACE_TAG_PACKAGE_MANAGER);
15144
15145            // Notify BackgroundDexOptService that the package has been changed.
15146            // If this is an update of a package which used to fail to compile,
15147            // BDOS will remove it from its blacklist.
15148            BackgroundDexOptService.notifyPackageChanged(pkg.packageName);
15149        }
15150
15151        if (!args.doRename(res.returnCode, pkg, oldCodePath)) {
15152            res.setError(INSTALL_FAILED_INSUFFICIENT_STORAGE, "Failed rename");
15153            return;
15154        }
15155
15156        startIntentFilterVerifications(args.user.getIdentifier(), replace, pkg);
15157
15158        try (PackageFreezer freezer = freezePackageForInstall(pkgName, installFlags,
15159                "installPackageLI")) {
15160            if (replace) {
15161                replacePackageLIF(pkg, parseFlags, scanFlags | SCAN_REPLACING, args.user,
15162                        installerPackageName, res);
15163            } else {
15164                installNewPackageLIF(pkg, parseFlags, scanFlags | SCAN_DELETE_DATA_ON_FAILURES,
15165                        args.user, installerPackageName, volumeUuid, res);
15166            }
15167        }
15168        synchronized (mPackages) {
15169            final PackageSetting ps = mSettings.mPackages.get(pkgName);
15170            if (ps != null) {
15171                res.newUsers = ps.queryInstalledUsers(sUserManager.getUserIds(), true);
15172            }
15173
15174            final int childCount = (pkg.childPackages != null) ? pkg.childPackages.size() : 0;
15175            for (int i = 0; i < childCount; i++) {
15176                PackageParser.Package childPkg = pkg.childPackages.get(i);
15177                PackageInstalledInfo childRes = res.addedChildPackages.get(childPkg.packageName);
15178                PackageSetting childPs = mSettings.peekPackageLPr(childPkg.packageName);
15179                if (childPs != null) {
15180                    childRes.newUsers = childPs.queryInstalledUsers(
15181                            sUserManager.getUserIds(), true);
15182                }
15183            }
15184        }
15185    }
15186
15187    private void startIntentFilterVerifications(int userId, boolean replacing,
15188            PackageParser.Package pkg) {
15189        if (mIntentFilterVerifierComponent == null) {
15190            Slog.w(TAG, "No IntentFilter verification will not be done as "
15191                    + "there is no IntentFilterVerifier available!");
15192            return;
15193        }
15194
15195        final int verifierUid = getPackageUid(
15196                mIntentFilterVerifierComponent.getPackageName(),
15197                MATCH_DEBUG_TRIAGED_MISSING,
15198                (userId == UserHandle.USER_ALL) ? UserHandle.USER_SYSTEM : userId);
15199
15200        Message msg = mHandler.obtainMessage(START_INTENT_FILTER_VERIFICATIONS);
15201        msg.obj = new IFVerificationParams(pkg, replacing, userId, verifierUid);
15202        mHandler.sendMessage(msg);
15203
15204        final int childCount = (pkg.childPackages != null) ? pkg.childPackages.size() : 0;
15205        for (int i = 0; i < childCount; i++) {
15206            PackageParser.Package childPkg = pkg.childPackages.get(i);
15207            msg = mHandler.obtainMessage(START_INTENT_FILTER_VERIFICATIONS);
15208            msg.obj = new IFVerificationParams(childPkg, replacing, userId, verifierUid);
15209            mHandler.sendMessage(msg);
15210        }
15211    }
15212
15213    private void verifyIntentFiltersIfNeeded(int userId, int verifierUid, boolean replacing,
15214            PackageParser.Package pkg) {
15215        int size = pkg.activities.size();
15216        if (size == 0) {
15217            if (DEBUG_DOMAIN_VERIFICATION) Slog.d(TAG,
15218                    "No activity, so no need to verify any IntentFilter!");
15219            return;
15220        }
15221
15222        final boolean hasDomainURLs = hasDomainURLs(pkg);
15223        if (!hasDomainURLs) {
15224            if (DEBUG_DOMAIN_VERIFICATION) Slog.d(TAG,
15225                    "No domain URLs, so no need to verify any IntentFilter!");
15226            return;
15227        }
15228
15229        if (DEBUG_DOMAIN_VERIFICATION) Slog.d(TAG, "Checking for userId:" + userId
15230                + " if any IntentFilter from the " + size
15231                + " Activities needs verification ...");
15232
15233        int count = 0;
15234        final String packageName = pkg.packageName;
15235
15236        synchronized (mPackages) {
15237            // If this is a new install and we see that we've already run verification for this
15238            // package, we have nothing to do: it means the state was restored from backup.
15239            if (!replacing) {
15240                IntentFilterVerificationInfo ivi =
15241                        mSettings.getIntentFilterVerificationLPr(packageName);
15242                if (ivi != null) {
15243                    if (DEBUG_DOMAIN_VERIFICATION) {
15244                        Slog.i(TAG, "Package " + packageName+ " already verified: status="
15245                                + ivi.getStatusString());
15246                    }
15247                    return;
15248                }
15249            }
15250
15251            // If any filters need to be verified, then all need to be.
15252            boolean needToVerify = false;
15253            for (PackageParser.Activity a : pkg.activities) {
15254                for (ActivityIntentInfo filter : a.intents) {
15255                    if (filter.needsVerification() && needsNetworkVerificationLPr(filter)) {
15256                        if (DEBUG_DOMAIN_VERIFICATION) {
15257                            Slog.d(TAG, "Intent filter needs verification, so processing all filters");
15258                        }
15259                        needToVerify = true;
15260                        break;
15261                    }
15262                }
15263            }
15264
15265            if (needToVerify) {
15266                final int verificationId = mIntentFilterVerificationToken++;
15267                for (PackageParser.Activity a : pkg.activities) {
15268                    for (ActivityIntentInfo filter : a.intents) {
15269                        if (filter.handlesWebUris(true) && needsNetworkVerificationLPr(filter)) {
15270                            if (DEBUG_DOMAIN_VERIFICATION) Slog.d(TAG,
15271                                    "Verification needed for IntentFilter:" + filter.toString());
15272                            mIntentFilterVerifier.addOneIntentFilterVerification(
15273                                    verifierUid, userId, verificationId, filter, packageName);
15274                            count++;
15275                        }
15276                    }
15277                }
15278            }
15279        }
15280
15281        if (count > 0) {
15282            if (DEBUG_DOMAIN_VERIFICATION) Slog.d(TAG, "Starting " + count
15283                    + " IntentFilter verification" + (count > 1 ? "s" : "")
15284                    +  " for userId:" + userId);
15285            mIntentFilterVerifier.startVerifications(userId);
15286        } else {
15287            if (DEBUG_DOMAIN_VERIFICATION) {
15288                Slog.d(TAG, "No filters or not all autoVerify for " + packageName);
15289            }
15290        }
15291    }
15292
15293    private boolean needsNetworkVerificationLPr(ActivityIntentInfo filter) {
15294        final ComponentName cn  = filter.activity.getComponentName();
15295        final String packageName = cn.getPackageName();
15296
15297        IntentFilterVerificationInfo ivi = mSettings.getIntentFilterVerificationLPr(
15298                packageName);
15299        if (ivi == null) {
15300            return true;
15301        }
15302        int status = ivi.getStatus();
15303        switch (status) {
15304            case INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_UNDEFINED:
15305            case INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_ASK:
15306                return true;
15307
15308            default:
15309                // Nothing to do
15310                return false;
15311        }
15312    }
15313
15314    private static boolean isMultiArch(ApplicationInfo info) {
15315        return (info.flags & ApplicationInfo.FLAG_MULTIARCH) != 0;
15316    }
15317
15318    private static boolean isExternal(PackageParser.Package pkg) {
15319        return (pkg.applicationInfo.flags & ApplicationInfo.FLAG_EXTERNAL_STORAGE) != 0;
15320    }
15321
15322    private static boolean isExternal(PackageSetting ps) {
15323        return (ps.pkgFlags & ApplicationInfo.FLAG_EXTERNAL_STORAGE) != 0;
15324    }
15325
15326    private static boolean isEphemeral(PackageParser.Package pkg) {
15327        return pkg.applicationInfo.isEphemeralApp();
15328    }
15329
15330    private static boolean isEphemeral(PackageSetting ps) {
15331        return ps.pkg != null && isEphemeral(ps.pkg);
15332    }
15333
15334    private static boolean isSystemApp(PackageParser.Package pkg) {
15335        return (pkg.applicationInfo.flags & ApplicationInfo.FLAG_SYSTEM) != 0;
15336    }
15337
15338    private static boolean isPrivilegedApp(PackageParser.Package pkg) {
15339        return (pkg.applicationInfo.privateFlags & ApplicationInfo.PRIVATE_FLAG_PRIVILEGED) != 0;
15340    }
15341
15342    private static boolean hasDomainURLs(PackageParser.Package pkg) {
15343        return (pkg.applicationInfo.privateFlags & ApplicationInfo.PRIVATE_FLAG_HAS_DOMAIN_URLS) != 0;
15344    }
15345
15346    private static boolean isSystemApp(PackageSetting ps) {
15347        return (ps.pkgFlags & ApplicationInfo.FLAG_SYSTEM) != 0;
15348    }
15349
15350    private static boolean isUpdatedSystemApp(PackageSetting ps) {
15351        return (ps.pkgFlags & ApplicationInfo.FLAG_UPDATED_SYSTEM_APP) != 0;
15352    }
15353
15354    private int packageFlagsToInstallFlags(PackageSetting ps) {
15355        int installFlags = 0;
15356        if (isEphemeral(ps)) {
15357            installFlags |= PackageManager.INSTALL_EPHEMERAL;
15358        }
15359        if (isExternal(ps) && TextUtils.isEmpty(ps.volumeUuid)) {
15360            // This existing package was an external ASEC install when we have
15361            // the external flag without a UUID
15362            installFlags |= PackageManager.INSTALL_EXTERNAL;
15363        }
15364        if (ps.isForwardLocked()) {
15365            installFlags |= PackageManager.INSTALL_FORWARD_LOCK;
15366        }
15367        return installFlags;
15368    }
15369
15370    private String getVolumeUuidForPackage(PackageParser.Package pkg) {
15371        if (isExternal(pkg)) {
15372            if (TextUtils.isEmpty(pkg.volumeUuid)) {
15373                return StorageManager.UUID_PRIMARY_PHYSICAL;
15374            } else {
15375                return pkg.volumeUuid;
15376            }
15377        } else {
15378            return StorageManager.UUID_PRIVATE_INTERNAL;
15379        }
15380    }
15381
15382    private VersionInfo getSettingsVersionForPackage(PackageParser.Package pkg) {
15383        if (isExternal(pkg)) {
15384            if (TextUtils.isEmpty(pkg.volumeUuid)) {
15385                return mSettings.getExternalVersion();
15386            } else {
15387                return mSettings.findOrCreateVersion(pkg.volumeUuid);
15388            }
15389        } else {
15390            return mSettings.getInternalVersion();
15391        }
15392    }
15393
15394    private void deleteTempPackageFiles() {
15395        final FilenameFilter filter = new FilenameFilter() {
15396            public boolean accept(File dir, String name) {
15397                return name.startsWith("vmdl") && name.endsWith(".tmp");
15398            }
15399        };
15400        for (File file : mDrmAppPrivateInstallDir.listFiles(filter)) {
15401            file.delete();
15402        }
15403    }
15404
15405    @Override
15406    public void deletePackageAsUser(String packageName, IPackageDeleteObserver observer, int userId,
15407            int flags) {
15408        deletePackage(packageName, new LegacyPackageDeleteObserver(observer).getBinder(), userId,
15409                flags);
15410    }
15411
15412    @Override
15413    public void deletePackage(final String packageName,
15414            final IPackageDeleteObserver2 observer, final int userId, final int deleteFlags) {
15415        mContext.enforceCallingOrSelfPermission(
15416                android.Manifest.permission.DELETE_PACKAGES, null);
15417        Preconditions.checkNotNull(packageName);
15418        Preconditions.checkNotNull(observer);
15419        final int uid = Binder.getCallingUid();
15420        final boolean deleteAllUsers = (deleteFlags & PackageManager.DELETE_ALL_USERS) != 0;
15421        final int[] users = deleteAllUsers ? sUserManager.getUserIds() : new int[]{ userId };
15422        if (UserHandle.getUserId(uid) != userId || (deleteAllUsers && users.length > 1)) {
15423            mContext.enforceCallingOrSelfPermission(
15424                    android.Manifest.permission.INTERACT_ACROSS_USERS_FULL,
15425                    "deletePackage for user " + userId);
15426        }
15427
15428        if (isUserRestricted(userId, UserManager.DISALLOW_UNINSTALL_APPS)) {
15429            try {
15430                observer.onPackageDeleted(packageName,
15431                        PackageManager.DELETE_FAILED_USER_RESTRICTED, null);
15432            } catch (RemoteException re) {
15433            }
15434            return;
15435        }
15436
15437        if (!deleteAllUsers && getBlockUninstallForUser(packageName, userId)) {
15438            try {
15439                observer.onPackageDeleted(packageName,
15440                        PackageManager.DELETE_FAILED_OWNER_BLOCKED, null);
15441            } catch (RemoteException re) {
15442            }
15443            return;
15444        }
15445
15446        if (DEBUG_REMOVE) {
15447            Slog.d(TAG, "deletePackageAsUser: pkg=" + packageName + " user=" + userId
15448                    + " deleteAllUsers: " + deleteAllUsers );
15449        }
15450        // Queue up an async operation since the package deletion may take a little while.
15451        mHandler.post(new Runnable() {
15452            public void run() {
15453                mHandler.removeCallbacks(this);
15454                int returnCode;
15455                if (!deleteAllUsers) {
15456                    returnCode = deletePackageX(packageName, userId, deleteFlags);
15457                } else {
15458                    int[] blockUninstallUserIds = getBlockUninstallForUsers(packageName, users);
15459                    // If nobody is blocking uninstall, proceed with delete for all users
15460                    if (ArrayUtils.isEmpty(blockUninstallUserIds)) {
15461                        returnCode = deletePackageX(packageName, userId, deleteFlags);
15462                    } else {
15463                        // Otherwise uninstall individually for users with blockUninstalls=false
15464                        final int userFlags = deleteFlags & ~PackageManager.DELETE_ALL_USERS;
15465                        for (int userId : users) {
15466                            if (!ArrayUtils.contains(blockUninstallUserIds, userId)) {
15467                                returnCode = deletePackageX(packageName, userId, userFlags);
15468                                if (returnCode != PackageManager.DELETE_SUCCEEDED) {
15469                                    Slog.w(TAG, "Package delete failed for user " + userId
15470                                            + ", returnCode " + returnCode);
15471                                }
15472                            }
15473                        }
15474                        // The app has only been marked uninstalled for certain users.
15475                        // We still need to report that delete was blocked
15476                        returnCode = PackageManager.DELETE_FAILED_OWNER_BLOCKED;
15477                    }
15478                }
15479                try {
15480                    observer.onPackageDeleted(packageName, returnCode, null);
15481                } catch (RemoteException e) {
15482                    Log.i(TAG, "Observer no longer exists.");
15483                } //end catch
15484            } //end run
15485        });
15486    }
15487
15488    private int[] getBlockUninstallForUsers(String packageName, int[] userIds) {
15489        int[] result = EMPTY_INT_ARRAY;
15490        for (int userId : userIds) {
15491            if (getBlockUninstallForUser(packageName, userId)) {
15492                result = ArrayUtils.appendInt(result, userId);
15493            }
15494        }
15495        return result;
15496    }
15497
15498    @Override
15499    public boolean isPackageDeviceAdminOnAnyUser(String packageName) {
15500        return isPackageDeviceAdmin(packageName, UserHandle.USER_ALL);
15501    }
15502
15503    private boolean isPackageDeviceAdmin(String packageName, int userId) {
15504        IDevicePolicyManager dpm = IDevicePolicyManager.Stub.asInterface(
15505                ServiceManager.getService(Context.DEVICE_POLICY_SERVICE));
15506        try {
15507            if (dpm != null) {
15508                final ComponentName deviceOwnerComponentName = dpm.getDeviceOwnerComponent(
15509                        /* callingUserOnly =*/ false);
15510                final String deviceOwnerPackageName = deviceOwnerComponentName == null ? null
15511                        : deviceOwnerComponentName.getPackageName();
15512                // Does the package contains the device owner?
15513                // TODO Do we have to do it even if userId != UserHandle.USER_ALL?  Otherwise,
15514                // this check is probably not needed, since DO should be registered as a device
15515                // admin on some user too. (Original bug for this: b/17657954)
15516                if (packageName.equals(deviceOwnerPackageName)) {
15517                    return true;
15518                }
15519                // Does it contain a device admin for any user?
15520                int[] users;
15521                if (userId == UserHandle.USER_ALL) {
15522                    users = sUserManager.getUserIds();
15523                } else {
15524                    users = new int[]{userId};
15525                }
15526                for (int i = 0; i < users.length; ++i) {
15527                    if (dpm.packageHasActiveAdmins(packageName, users[i])) {
15528                        return true;
15529                    }
15530                }
15531            }
15532        } catch (RemoteException e) {
15533        }
15534        return false;
15535    }
15536
15537    private boolean shouldKeepUninstalledPackageLPr(String packageName) {
15538        return mKeepUninstalledPackages != null && mKeepUninstalledPackages.contains(packageName);
15539    }
15540
15541    /**
15542     *  This method is an internal method that could be get invoked either
15543     *  to delete an installed package or to clean up a failed installation.
15544     *  After deleting an installed package, a broadcast is sent to notify any
15545     *  listeners that the package has been removed. For cleaning up a failed
15546     *  installation, the broadcast is not necessary since the package's
15547     *  installation wouldn't have sent the initial broadcast either
15548     *  The key steps in deleting a package are
15549     *  deleting the package information in internal structures like mPackages,
15550     *  deleting the packages base directories through installd
15551     *  updating mSettings to reflect current status
15552     *  persisting settings for later use
15553     *  sending a broadcast if necessary
15554     */
15555    private int deletePackageX(String packageName, int userId, int deleteFlags) {
15556        final PackageRemovedInfo info = new PackageRemovedInfo();
15557        final boolean res;
15558
15559        final UserHandle removeForUser = (deleteFlags & PackageManager.DELETE_ALL_USERS) != 0
15560                ? UserHandle.ALL : new UserHandle(userId);
15561
15562        if (isPackageDeviceAdmin(packageName, removeForUser.getIdentifier())) {
15563            Slog.w(TAG, "Not removing package " + packageName + ": has active device admin");
15564            return PackageManager.DELETE_FAILED_DEVICE_POLICY_MANAGER;
15565        }
15566
15567        PackageSetting uninstalledPs = null;
15568
15569        // for the uninstall-updates case and restricted profiles, remember the per-
15570        // user handle installed state
15571        int[] allUsers;
15572        synchronized (mPackages) {
15573            uninstalledPs = mSettings.mPackages.get(packageName);
15574            if (uninstalledPs == null) {
15575                Slog.w(TAG, "Not removing non-existent package " + packageName);
15576                return PackageManager.DELETE_FAILED_INTERNAL_ERROR;
15577            }
15578            allUsers = sUserManager.getUserIds();
15579            info.origUsers = uninstalledPs.queryInstalledUsers(allUsers, true);
15580        }
15581
15582        synchronized (mInstallLock) {
15583            if (DEBUG_REMOVE) Slog.d(TAG, "deletePackageX: pkg=" + packageName + " user=" + userId);
15584            try (PackageFreezer freezer = freezePackageForDelete(packageName, deleteFlags,
15585                    "deletePackageX")) {
15586                res = deletePackageLIF(packageName, removeForUser, true, allUsers,
15587                        deleteFlags | REMOVE_CHATTY, info, true, null);
15588            }
15589            synchronized (mPackages) {
15590                if (res) {
15591                    mEphemeralApplicationRegistry.onPackageUninstalledLPw(uninstalledPs.pkg);
15592                }
15593            }
15594        }
15595
15596        if (res) {
15597            final boolean killApp = (deleteFlags & PackageManager.DELETE_DONT_KILL_APP) == 0;
15598            info.sendPackageRemovedBroadcasts(killApp);
15599            info.sendSystemPackageUpdatedBroadcasts();
15600            info.sendSystemPackageAppearedBroadcasts();
15601        }
15602        // Force a gc here.
15603        Runtime.getRuntime().gc();
15604        // Delete the resources here after sending the broadcast to let
15605        // other processes clean up before deleting resources.
15606        if (info.args != null) {
15607            synchronized (mInstallLock) {
15608                info.args.doPostDeleteLI(true);
15609            }
15610        }
15611
15612        return res ? PackageManager.DELETE_SUCCEEDED : PackageManager.DELETE_FAILED_INTERNAL_ERROR;
15613    }
15614
15615    class PackageRemovedInfo {
15616        String removedPackage;
15617        int uid = -1;
15618        int removedAppId = -1;
15619        int[] origUsers;
15620        int[] removedUsers = null;
15621        boolean isRemovedPackageSystemUpdate = false;
15622        boolean isUpdate;
15623        boolean dataRemoved;
15624        boolean removedForAllUsers;
15625        // Clean up resources deleted packages.
15626        InstallArgs args = null;
15627        ArrayMap<String, PackageRemovedInfo> removedChildPackages;
15628        ArrayMap<String, PackageInstalledInfo> appearedChildPackages;
15629
15630        void sendPackageRemovedBroadcasts(boolean killApp) {
15631            sendPackageRemovedBroadcastInternal(killApp);
15632            final int childCount = removedChildPackages != null ? removedChildPackages.size() : 0;
15633            for (int i = 0; i < childCount; i++) {
15634                PackageRemovedInfo childInfo = removedChildPackages.valueAt(i);
15635                childInfo.sendPackageRemovedBroadcastInternal(killApp);
15636            }
15637        }
15638
15639        void sendSystemPackageUpdatedBroadcasts() {
15640            if (isRemovedPackageSystemUpdate) {
15641                sendSystemPackageUpdatedBroadcastsInternal();
15642                final int childCount = (removedChildPackages != null)
15643                        ? removedChildPackages.size() : 0;
15644                for (int i = 0; i < childCount; i++) {
15645                    PackageRemovedInfo childInfo = removedChildPackages.valueAt(i);
15646                    if (childInfo.isRemovedPackageSystemUpdate) {
15647                        childInfo.sendSystemPackageUpdatedBroadcastsInternal();
15648                    }
15649                }
15650            }
15651        }
15652
15653        void sendSystemPackageAppearedBroadcasts() {
15654            final int packageCount = (appearedChildPackages != null)
15655                    ? appearedChildPackages.size() : 0;
15656            for (int i = 0; i < packageCount; i++) {
15657                PackageInstalledInfo installedInfo = appearedChildPackages.valueAt(i);
15658                for (int userId : installedInfo.newUsers) {
15659                    sendPackageAddedForUser(installedInfo.name, true,
15660                            UserHandle.getAppId(installedInfo.uid), userId);
15661                }
15662            }
15663        }
15664
15665        private void sendSystemPackageUpdatedBroadcastsInternal() {
15666            Bundle extras = new Bundle(2);
15667            extras.putInt(Intent.EXTRA_UID, removedAppId >= 0 ? removedAppId : uid);
15668            extras.putBoolean(Intent.EXTRA_REPLACING, true);
15669            sendPackageBroadcast(Intent.ACTION_PACKAGE_ADDED, removedPackage,
15670                    extras, 0, null, null, null);
15671            sendPackageBroadcast(Intent.ACTION_PACKAGE_REPLACED, removedPackage,
15672                    extras, 0, null, null, null);
15673            sendPackageBroadcast(Intent.ACTION_MY_PACKAGE_REPLACED, null,
15674                    null, 0, removedPackage, null, null);
15675        }
15676
15677        private void sendPackageRemovedBroadcastInternal(boolean killApp) {
15678            Bundle extras = new Bundle(2);
15679            extras.putInt(Intent.EXTRA_UID, removedAppId >= 0  ? removedAppId : uid);
15680            extras.putBoolean(Intent.EXTRA_DATA_REMOVED, dataRemoved);
15681            extras.putBoolean(Intent.EXTRA_DONT_KILL_APP, !killApp);
15682            if (isUpdate || isRemovedPackageSystemUpdate) {
15683                extras.putBoolean(Intent.EXTRA_REPLACING, true);
15684            }
15685            extras.putBoolean(Intent.EXTRA_REMOVED_FOR_ALL_USERS, removedForAllUsers);
15686            if (removedPackage != null) {
15687                sendPackageBroadcast(Intent.ACTION_PACKAGE_REMOVED, removedPackage,
15688                        extras, 0, null, null, removedUsers);
15689                if (dataRemoved && !isRemovedPackageSystemUpdate) {
15690                    sendPackageBroadcast(Intent.ACTION_PACKAGE_FULLY_REMOVED,
15691                            removedPackage, extras, 0, null, null, removedUsers);
15692                }
15693            }
15694            if (removedAppId >= 0) {
15695                sendPackageBroadcast(Intent.ACTION_UID_REMOVED, null, extras, 0, null, null,
15696                        removedUsers);
15697            }
15698        }
15699    }
15700
15701    /*
15702     * This method deletes the package from internal data structures. If the DONT_DELETE_DATA
15703     * flag is not set, the data directory is removed as well.
15704     * make sure this flag is set for partially installed apps. If not its meaningless to
15705     * delete a partially installed application.
15706     */
15707    private void removePackageDataLIF(PackageSetting ps, int[] allUserHandles,
15708            PackageRemovedInfo outInfo, int flags, boolean writeSettings) {
15709        String packageName = ps.name;
15710        if (DEBUG_REMOVE) Slog.d(TAG, "removePackageDataLI: " + ps);
15711        // Retrieve object to delete permissions for shared user later on
15712        final PackageParser.Package deletedPkg;
15713        final PackageSetting deletedPs;
15714        // reader
15715        synchronized (mPackages) {
15716            deletedPkg = mPackages.get(packageName);
15717            deletedPs = mSettings.mPackages.get(packageName);
15718            if (outInfo != null) {
15719                outInfo.removedPackage = packageName;
15720                outInfo.removedUsers = deletedPs != null
15721                        ? deletedPs.queryInstalledUsers(sUserManager.getUserIds(), true)
15722                        : null;
15723            }
15724        }
15725
15726        removePackageLI(ps, (flags & REMOVE_CHATTY) != 0);
15727
15728        if ((flags & PackageManager.DELETE_KEEP_DATA) == 0) {
15729            final PackageParser.Package resolvedPkg;
15730            if (deletedPkg != null) {
15731                resolvedPkg = deletedPkg;
15732            } else {
15733                // We don't have a parsed package when it lives on an ejected
15734                // adopted storage device, so fake something together
15735                resolvedPkg = new PackageParser.Package(ps.name);
15736                resolvedPkg.setVolumeUuid(ps.volumeUuid);
15737            }
15738            destroyAppDataLIF(resolvedPkg, UserHandle.USER_ALL,
15739                    StorageManager.FLAG_STORAGE_DE | StorageManager.FLAG_STORAGE_CE);
15740            destroyAppProfilesLIF(resolvedPkg, UserHandle.USER_ALL);
15741            if (outInfo != null) {
15742                outInfo.dataRemoved = true;
15743            }
15744            schedulePackageCleaning(packageName, UserHandle.USER_ALL, true);
15745        }
15746
15747        // writer
15748        synchronized (mPackages) {
15749            if (deletedPs != null) {
15750                if ((flags&PackageManager.DELETE_KEEP_DATA) == 0) {
15751                    clearIntentFilterVerificationsLPw(deletedPs.name, UserHandle.USER_ALL);
15752                    clearDefaultBrowserIfNeeded(packageName);
15753                    if (outInfo != null) {
15754                        mSettings.mKeySetManagerService.removeAppKeySetDataLPw(packageName);
15755                        outInfo.removedAppId = mSettings.removePackageLPw(packageName);
15756                    }
15757                    updatePermissionsLPw(deletedPs.name, null, 0);
15758                    if (deletedPs.sharedUser != null) {
15759                        // Remove permissions associated with package. Since runtime
15760                        // permissions are per user we have to kill the removed package
15761                        // or packages running under the shared user of the removed
15762                        // package if revoking the permissions requested only by the removed
15763                        // package is successful and this causes a change in gids.
15764                        for (int userId : UserManagerService.getInstance().getUserIds()) {
15765                            final int userIdToKill = mSettings.updateSharedUserPermsLPw(deletedPs,
15766                                    userId);
15767                            if (userIdToKill == UserHandle.USER_ALL
15768                                    || userIdToKill >= UserHandle.USER_SYSTEM) {
15769                                // If gids changed for this user, kill all affected packages.
15770                                mHandler.post(new Runnable() {
15771                                    @Override
15772                                    public void run() {
15773                                        // This has to happen with no lock held.
15774                                        killApplication(deletedPs.name, deletedPs.appId,
15775                                                KILL_APP_REASON_GIDS_CHANGED);
15776                                    }
15777                                });
15778                                break;
15779                            }
15780                        }
15781                    }
15782                    clearPackagePreferredActivitiesLPw(deletedPs.name, UserHandle.USER_ALL);
15783                }
15784                // make sure to preserve per-user disabled state if this removal was just
15785                // a downgrade of a system app to the factory package
15786                if (allUserHandles != null && outInfo != null && outInfo.origUsers != null) {
15787                    if (DEBUG_REMOVE) {
15788                        Slog.d(TAG, "Propagating install state across downgrade");
15789                    }
15790                    for (int userId : allUserHandles) {
15791                        final boolean installed = ArrayUtils.contains(outInfo.origUsers, userId);
15792                        if (DEBUG_REMOVE) {
15793                            Slog.d(TAG, "    user " + userId + " => " + installed);
15794                        }
15795                        ps.setInstalled(installed, userId);
15796                    }
15797                }
15798            }
15799            // can downgrade to reader
15800            if (writeSettings) {
15801                // Save settings now
15802                mSettings.writeLPr();
15803            }
15804        }
15805        if (outInfo != null) {
15806            // A user ID was deleted here. Go through all users and remove it
15807            // from KeyStore.
15808            removeKeystoreDataIfNeeded(UserHandle.USER_ALL, outInfo.removedAppId);
15809        }
15810    }
15811
15812    static boolean locationIsPrivileged(File path) {
15813        try {
15814            final String privilegedAppDir = new File(Environment.getRootDirectory(), "priv-app")
15815                    .getCanonicalPath();
15816            return path.getCanonicalPath().startsWith(privilegedAppDir);
15817        } catch (IOException e) {
15818            Slog.e(TAG, "Unable to access code path " + path);
15819        }
15820        return false;
15821    }
15822
15823    /*
15824     * Tries to delete system package.
15825     */
15826    private boolean deleteSystemPackageLIF(PackageParser.Package deletedPkg,
15827            PackageSetting deletedPs, int[] allUserHandles, int flags, PackageRemovedInfo outInfo,
15828            boolean writeSettings) {
15829        if (deletedPs.parentPackageName != null) {
15830            Slog.w(TAG, "Attempt to delete child system package " + deletedPkg.packageName);
15831            return false;
15832        }
15833
15834        final boolean applyUserRestrictions
15835                = (allUserHandles != null) && (outInfo.origUsers != null);
15836        final PackageSetting disabledPs;
15837        // Confirm if the system package has been updated
15838        // An updated system app can be deleted. This will also have to restore
15839        // the system pkg from system partition
15840        // reader
15841        synchronized (mPackages) {
15842            disabledPs = mSettings.getDisabledSystemPkgLPr(deletedPs.name);
15843        }
15844
15845        if (DEBUG_REMOVE) Slog.d(TAG, "deleteSystemPackageLI: newPs=" + deletedPkg.packageName
15846                + " disabledPs=" + disabledPs);
15847
15848        if (disabledPs == null) {
15849            Slog.w(TAG, "Attempt to delete unknown system package "+ deletedPkg.packageName);
15850            return false;
15851        } else if (DEBUG_REMOVE) {
15852            Slog.d(TAG, "Deleting system pkg from data partition");
15853        }
15854
15855        if (DEBUG_REMOVE) {
15856            if (applyUserRestrictions) {
15857                Slog.d(TAG, "Remembering install states:");
15858                for (int userId : allUserHandles) {
15859                    final boolean finstalled = ArrayUtils.contains(outInfo.origUsers, userId);
15860                    Slog.d(TAG, "   u=" + userId + " inst=" + finstalled);
15861                }
15862            }
15863        }
15864
15865        // Delete the updated package
15866        outInfo.isRemovedPackageSystemUpdate = true;
15867        if (outInfo.removedChildPackages != null) {
15868            final int childCount = (deletedPs.childPackageNames != null)
15869                    ? deletedPs.childPackageNames.size() : 0;
15870            for (int i = 0; i < childCount; i++) {
15871                String childPackageName = deletedPs.childPackageNames.get(i);
15872                if (disabledPs.childPackageNames != null && disabledPs.childPackageNames
15873                        .contains(childPackageName)) {
15874                    PackageRemovedInfo childInfo = outInfo.removedChildPackages.get(
15875                            childPackageName);
15876                    if (childInfo != null) {
15877                        childInfo.isRemovedPackageSystemUpdate = true;
15878                    }
15879                }
15880            }
15881        }
15882
15883        if (disabledPs.versionCode < deletedPs.versionCode) {
15884            // Delete data for downgrades
15885            flags &= ~PackageManager.DELETE_KEEP_DATA;
15886        } else {
15887            // Preserve data by setting flag
15888            flags |= PackageManager.DELETE_KEEP_DATA;
15889        }
15890
15891        boolean ret = deleteInstalledPackageLIF(deletedPs, true, flags, allUserHandles,
15892                outInfo, writeSettings, disabledPs.pkg);
15893        if (!ret) {
15894            return false;
15895        }
15896
15897        // writer
15898        synchronized (mPackages) {
15899            // Reinstate the old system package
15900            enableSystemPackageLPw(disabledPs.pkg);
15901            // Remove any native libraries from the upgraded package.
15902            removeNativeBinariesLI(deletedPs);
15903        }
15904
15905        // Install the system package
15906        if (DEBUG_REMOVE) Slog.d(TAG, "Re-installing system package: " + disabledPs);
15907        int parseFlags = mDefParseFlags
15908                | PackageParser.PARSE_MUST_BE_APK
15909                | PackageParser.PARSE_IS_SYSTEM
15910                | PackageParser.PARSE_IS_SYSTEM_DIR;
15911        if (locationIsPrivileged(disabledPs.codePath)) {
15912            parseFlags |= PackageParser.PARSE_IS_PRIVILEGED;
15913        }
15914
15915        final PackageParser.Package newPkg;
15916        try {
15917            newPkg = scanPackageTracedLI(disabledPs.codePath, parseFlags, SCAN_NO_PATHS, 0, null);
15918        } catch (PackageManagerException e) {
15919            Slog.w(TAG, "Failed to restore system package:" + deletedPkg.packageName + ": "
15920                    + e.getMessage());
15921            return false;
15922        }
15923
15924        prepareAppDataAfterInstallLIF(newPkg);
15925
15926        // writer
15927        synchronized (mPackages) {
15928            PackageSetting ps = mSettings.mPackages.get(newPkg.packageName);
15929
15930            // Propagate the permissions state as we do not want to drop on the floor
15931            // runtime permissions. The update permissions method below will take
15932            // care of removing obsolete permissions and grant install permissions.
15933            ps.getPermissionsState().copyFrom(deletedPs.getPermissionsState());
15934            updatePermissionsLPw(newPkg.packageName, newPkg,
15935                    UPDATE_PERMISSIONS_ALL | UPDATE_PERMISSIONS_REPLACE_PKG);
15936
15937            if (applyUserRestrictions) {
15938                if (DEBUG_REMOVE) {
15939                    Slog.d(TAG, "Propagating install state across reinstall");
15940                }
15941                for (int userId : allUserHandles) {
15942                    final boolean installed = ArrayUtils.contains(outInfo.origUsers, userId);
15943                    if (DEBUG_REMOVE) {
15944                        Slog.d(TAG, "    user " + userId + " => " + installed);
15945                    }
15946                    ps.setInstalled(installed, userId);
15947
15948                    mSettings.writeRuntimePermissionsForUserLPr(userId, false);
15949                }
15950                // Regardless of writeSettings we need to ensure that this restriction
15951                // state propagation is persisted
15952                mSettings.writeAllUsersPackageRestrictionsLPr();
15953            }
15954            // can downgrade to reader here
15955            if (writeSettings) {
15956                mSettings.writeLPr();
15957            }
15958        }
15959        return true;
15960    }
15961
15962    private boolean deleteInstalledPackageLIF(PackageSetting ps,
15963            boolean deleteCodeAndResources, int flags, int[] allUserHandles,
15964            PackageRemovedInfo outInfo, boolean writeSettings,
15965            PackageParser.Package replacingPackage) {
15966        synchronized (mPackages) {
15967            if (outInfo != null) {
15968                outInfo.uid = ps.appId;
15969            }
15970
15971            if (outInfo != null && outInfo.removedChildPackages != null) {
15972                final int childCount = (ps.childPackageNames != null)
15973                        ? ps.childPackageNames.size() : 0;
15974                for (int i = 0; i < childCount; i++) {
15975                    String childPackageName = ps.childPackageNames.get(i);
15976                    PackageSetting childPs = mSettings.mPackages.get(childPackageName);
15977                    if (childPs == null) {
15978                        return false;
15979                    }
15980                    PackageRemovedInfo childInfo = outInfo.removedChildPackages.get(
15981                            childPackageName);
15982                    if (childInfo != null) {
15983                        childInfo.uid = childPs.appId;
15984                    }
15985                }
15986            }
15987        }
15988
15989        // Delete package data from internal structures and also remove data if flag is set
15990        removePackageDataLIF(ps, allUserHandles, outInfo, flags, writeSettings);
15991
15992        // Delete the child packages data
15993        final int childCount = (ps.childPackageNames != null) ? ps.childPackageNames.size() : 0;
15994        for (int i = 0; i < childCount; i++) {
15995            PackageSetting childPs;
15996            synchronized (mPackages) {
15997                childPs = mSettings.peekPackageLPr(ps.childPackageNames.get(i));
15998            }
15999            if (childPs != null) {
16000                PackageRemovedInfo childOutInfo = (outInfo != null
16001                        && outInfo.removedChildPackages != null)
16002                        ? outInfo.removedChildPackages.get(childPs.name) : null;
16003                final int deleteFlags = (flags & DELETE_KEEP_DATA) != 0
16004                        && (replacingPackage != null
16005                        && !replacingPackage.hasChildPackage(childPs.name))
16006                        ? flags & ~DELETE_KEEP_DATA : flags;
16007                removePackageDataLIF(childPs, allUserHandles, childOutInfo,
16008                        deleteFlags, writeSettings);
16009            }
16010        }
16011
16012        // Delete application code and resources only for parent packages
16013        if (ps.parentPackageName == null) {
16014            if (deleteCodeAndResources && (outInfo != null)) {
16015                outInfo.args = createInstallArgsForExisting(packageFlagsToInstallFlags(ps),
16016                        ps.codePathString, ps.resourcePathString, getAppDexInstructionSets(ps));
16017                if (DEBUG_SD_INSTALL) Slog.i(TAG, "args=" + outInfo.args);
16018            }
16019        }
16020
16021        return true;
16022    }
16023
16024    @Override
16025    public boolean setBlockUninstallForUser(String packageName, boolean blockUninstall,
16026            int userId) {
16027        mContext.enforceCallingOrSelfPermission(
16028                android.Manifest.permission.DELETE_PACKAGES, null);
16029        synchronized (mPackages) {
16030            PackageSetting ps = mSettings.mPackages.get(packageName);
16031            if (ps == null) {
16032                Log.i(TAG, "Package doesn't exist in set block uninstall " + packageName);
16033                return false;
16034            }
16035            if (!ps.getInstalled(userId)) {
16036                // Can't block uninstall for an app that is not installed or enabled.
16037                Log.i(TAG, "Package not installed in set block uninstall " + packageName);
16038                return false;
16039            }
16040            ps.setBlockUninstall(blockUninstall, userId);
16041            mSettings.writePackageRestrictionsLPr(userId);
16042        }
16043        return true;
16044    }
16045
16046    @Override
16047    public boolean getBlockUninstallForUser(String packageName, int userId) {
16048        synchronized (mPackages) {
16049            PackageSetting ps = mSettings.mPackages.get(packageName);
16050            if (ps == null) {
16051                Log.i(TAG, "Package doesn't exist in get block uninstall " + packageName);
16052                return false;
16053            }
16054            return ps.getBlockUninstall(userId);
16055        }
16056    }
16057
16058    @Override
16059    public boolean setRequiredForSystemUser(String packageName, boolean systemUserApp) {
16060        int callingUid = Binder.getCallingUid();
16061        if (callingUid != Process.SYSTEM_UID && callingUid != Process.ROOT_UID) {
16062            throw new SecurityException(
16063                    "setRequiredForSystemUser can only be run by the system or root");
16064        }
16065        synchronized (mPackages) {
16066            PackageSetting ps = mSettings.mPackages.get(packageName);
16067            if (ps == null) {
16068                Log.w(TAG, "Package doesn't exist: " + packageName);
16069                return false;
16070            }
16071            if (systemUserApp) {
16072                ps.pkgPrivateFlags |= ApplicationInfo.PRIVATE_FLAG_REQUIRED_FOR_SYSTEM_USER;
16073            } else {
16074                ps.pkgPrivateFlags &= ~ApplicationInfo.PRIVATE_FLAG_REQUIRED_FOR_SYSTEM_USER;
16075            }
16076            mSettings.writeLPr();
16077        }
16078        return true;
16079    }
16080
16081    /*
16082     * This method handles package deletion in general
16083     */
16084    private boolean deletePackageLIF(String packageName, UserHandle user,
16085            boolean deleteCodeAndResources, int[] allUserHandles, int flags,
16086            PackageRemovedInfo outInfo, boolean writeSettings,
16087            PackageParser.Package replacingPackage) {
16088        if (packageName == null) {
16089            Slog.w(TAG, "Attempt to delete null packageName.");
16090            return false;
16091        }
16092
16093        if (DEBUG_REMOVE) Slog.d(TAG, "deletePackageLI: " + packageName + " user " + user);
16094
16095        PackageSetting ps;
16096
16097        synchronized (mPackages) {
16098            ps = mSettings.mPackages.get(packageName);
16099            if (ps == null) {
16100                Slog.w(TAG, "Package named '" + packageName + "' doesn't exist.");
16101                return false;
16102            }
16103
16104            if (ps.parentPackageName != null && (!isSystemApp(ps)
16105                    || (flags & PackageManager.DELETE_SYSTEM_APP) != 0)) {
16106                if (DEBUG_REMOVE) {
16107                    Slog.d(TAG, "Uninstalled child package:" + packageName + " for user:"
16108                            + ((user == null) ? UserHandle.USER_ALL : user));
16109                }
16110                final int removedUserId = (user != null) ? user.getIdentifier()
16111                        : UserHandle.USER_ALL;
16112                if (!clearPackageStateForUserLIF(ps, removedUserId, outInfo)) {
16113                    return false;
16114                }
16115                markPackageUninstalledForUserLPw(ps, user);
16116                scheduleWritePackageRestrictionsLocked(user);
16117                return true;
16118            }
16119        }
16120
16121        if (((!isSystemApp(ps) || (flags&PackageManager.DELETE_SYSTEM_APP) != 0) && user != null
16122                && user.getIdentifier() != UserHandle.USER_ALL)) {
16123            // The caller is asking that the package only be deleted for a single
16124            // user.  To do this, we just mark its uninstalled state and delete
16125            // its data. If this is a system app, we only allow this to happen if
16126            // they have set the special DELETE_SYSTEM_APP which requests different
16127            // semantics than normal for uninstalling system apps.
16128            markPackageUninstalledForUserLPw(ps, user);
16129
16130            if (!isSystemApp(ps)) {
16131                // Do not uninstall the APK if an app should be cached
16132                boolean keepUninstalledPackage = shouldKeepUninstalledPackageLPr(packageName);
16133                if (ps.isAnyInstalled(sUserManager.getUserIds()) || keepUninstalledPackage) {
16134                    // Other user still have this package installed, so all
16135                    // we need to do is clear this user's data and save that
16136                    // it is uninstalled.
16137                    if (DEBUG_REMOVE) Slog.d(TAG, "Still installed by other users");
16138                    if (!clearPackageStateForUserLIF(ps, user.getIdentifier(), outInfo)) {
16139                        return false;
16140                    }
16141                    scheduleWritePackageRestrictionsLocked(user);
16142                    return true;
16143                } else {
16144                    // We need to set it back to 'installed' so the uninstall
16145                    // broadcasts will be sent correctly.
16146                    if (DEBUG_REMOVE) Slog.d(TAG, "Not installed by other users, full delete");
16147                    ps.setInstalled(true, user.getIdentifier());
16148                }
16149            } else {
16150                // This is a system app, so we assume that the
16151                // other users still have this package installed, so all
16152                // we need to do is clear this user's data and save that
16153                // it is uninstalled.
16154                if (DEBUG_REMOVE) Slog.d(TAG, "Deleting system app");
16155                if (!clearPackageStateForUserLIF(ps, user.getIdentifier(), outInfo)) {
16156                    return false;
16157                }
16158                scheduleWritePackageRestrictionsLocked(user);
16159                return true;
16160            }
16161        }
16162
16163        // If we are deleting a composite package for all users, keep track
16164        // of result for each child.
16165        if (ps.childPackageNames != null && outInfo != null) {
16166            synchronized (mPackages) {
16167                final int childCount = ps.childPackageNames.size();
16168                outInfo.removedChildPackages = new ArrayMap<>(childCount);
16169                for (int i = 0; i < childCount; i++) {
16170                    String childPackageName = ps.childPackageNames.get(i);
16171                    PackageRemovedInfo childInfo = new PackageRemovedInfo();
16172                    childInfo.removedPackage = childPackageName;
16173                    outInfo.removedChildPackages.put(childPackageName, childInfo);
16174                    PackageSetting childPs = mSettings.peekPackageLPr(childPackageName);
16175                    if (childPs != null) {
16176                        childInfo.origUsers = childPs.queryInstalledUsers(allUserHandles, true);
16177                    }
16178                }
16179            }
16180        }
16181
16182        boolean ret = false;
16183        if (isSystemApp(ps)) {
16184            if (DEBUG_REMOVE) Slog.d(TAG, "Removing system package: " + ps.name);
16185            // When an updated system application is deleted we delete the existing resources
16186            // as well and fall back to existing code in system partition
16187            ret = deleteSystemPackageLIF(ps.pkg, ps, allUserHandles, flags, outInfo, writeSettings);
16188        } else {
16189            if (DEBUG_REMOVE) Slog.d(TAG, "Removing non-system package: " + ps.name);
16190            ret = deleteInstalledPackageLIF(ps, deleteCodeAndResources, flags, allUserHandles,
16191                    outInfo, writeSettings, replacingPackage);
16192        }
16193
16194        // Take a note whether we deleted the package for all users
16195        if (outInfo != null) {
16196            outInfo.removedForAllUsers = mPackages.get(ps.name) == null;
16197            if (outInfo.removedChildPackages != null) {
16198                synchronized (mPackages) {
16199                    final int childCount = outInfo.removedChildPackages.size();
16200                    for (int i = 0; i < childCount; i++) {
16201                        PackageRemovedInfo childInfo = outInfo.removedChildPackages.valueAt(i);
16202                        if (childInfo != null) {
16203                            childInfo.removedForAllUsers = mPackages.get(
16204                                    childInfo.removedPackage) == null;
16205                        }
16206                    }
16207                }
16208            }
16209            // If we uninstalled an update to a system app there may be some
16210            // child packages that appeared as they are declared in the system
16211            // app but were not declared in the update.
16212            if (isSystemApp(ps)) {
16213                synchronized (mPackages) {
16214                    PackageSetting updatedPs = mSettings.peekPackageLPr(ps.name);
16215                    final int childCount = (updatedPs.childPackageNames != null)
16216                            ? updatedPs.childPackageNames.size() : 0;
16217                    for (int i = 0; i < childCount; i++) {
16218                        String childPackageName = updatedPs.childPackageNames.get(i);
16219                        if (outInfo.removedChildPackages == null
16220                                || outInfo.removedChildPackages.indexOfKey(childPackageName) < 0) {
16221                            PackageSetting childPs = mSettings.peekPackageLPr(childPackageName);
16222                            if (childPs == null) {
16223                                continue;
16224                            }
16225                            PackageInstalledInfo installRes = new PackageInstalledInfo();
16226                            installRes.name = childPackageName;
16227                            installRes.newUsers = childPs.queryInstalledUsers(allUserHandles, true);
16228                            installRes.pkg = mPackages.get(childPackageName);
16229                            installRes.uid = childPs.pkg.applicationInfo.uid;
16230                            if (outInfo.appearedChildPackages == null) {
16231                                outInfo.appearedChildPackages = new ArrayMap<>();
16232                            }
16233                            outInfo.appearedChildPackages.put(childPackageName, installRes);
16234                        }
16235                    }
16236                }
16237            }
16238        }
16239
16240        return ret;
16241    }
16242
16243    private void markPackageUninstalledForUserLPw(PackageSetting ps, UserHandle user) {
16244        final int[] userIds = (user == null || user.getIdentifier() == UserHandle.USER_ALL)
16245                ? sUserManager.getUserIds() : new int[] {user.getIdentifier()};
16246        for (int nextUserId : userIds) {
16247            if (DEBUG_REMOVE) {
16248                Slog.d(TAG, "Marking package:" + ps.name + " uninstalled for user:" + nextUserId);
16249            }
16250            ps.setUserState(nextUserId, 0, COMPONENT_ENABLED_STATE_DEFAULT,
16251                    false /*installed*/, true /*stopped*/, true /*notLaunched*/,
16252                    false /*hidden*/, false /*suspended*/, null, null, null,
16253                    false /*blockUninstall*/,
16254                    ps.readUserState(nextUserId).domainVerificationStatus, 0);
16255        }
16256    }
16257
16258    private boolean clearPackageStateForUserLIF(PackageSetting ps, int userId,
16259            PackageRemovedInfo outInfo) {
16260        final PackageParser.Package pkg;
16261        synchronized (mPackages) {
16262            pkg = mPackages.get(ps.name);
16263        }
16264
16265        final int[] userIds = (userId == UserHandle.USER_ALL) ? sUserManager.getUserIds()
16266                : new int[] {userId};
16267        for (int nextUserId : userIds) {
16268            if (DEBUG_REMOVE) {
16269                Slog.d(TAG, "Updating package:" + ps.name + " install state for user:"
16270                        + nextUserId);
16271            }
16272
16273            destroyAppDataLIF(pkg, userId,
16274                    StorageManager.FLAG_STORAGE_DE | StorageManager.FLAG_STORAGE_CE);
16275            destroyAppProfilesLIF(pkg, userId);
16276            removeKeystoreDataIfNeeded(nextUserId, ps.appId);
16277            schedulePackageCleaning(ps.name, nextUserId, false);
16278            synchronized (mPackages) {
16279                if (clearPackagePreferredActivitiesLPw(ps.name, nextUserId)) {
16280                    scheduleWritePackageRestrictionsLocked(nextUserId);
16281                }
16282                resetUserChangesToRuntimePermissionsAndFlagsLPw(ps, nextUserId);
16283            }
16284        }
16285
16286        if (outInfo != null) {
16287            outInfo.removedPackage = ps.name;
16288            outInfo.removedAppId = ps.appId;
16289            outInfo.removedUsers = userIds;
16290        }
16291
16292        return true;
16293    }
16294
16295    private final class ClearStorageConnection implements ServiceConnection {
16296        IMediaContainerService mContainerService;
16297
16298        @Override
16299        public void onServiceConnected(ComponentName name, IBinder service) {
16300            synchronized (this) {
16301                mContainerService = IMediaContainerService.Stub.asInterface(service);
16302                notifyAll();
16303            }
16304        }
16305
16306        @Override
16307        public void onServiceDisconnected(ComponentName name) {
16308        }
16309    }
16310
16311    private void clearExternalStorageDataSync(String packageName, int userId, boolean allData) {
16312        if (DEFAULT_CONTAINER_PACKAGE.equals(packageName)) return;
16313
16314        final boolean mounted;
16315        if (Environment.isExternalStorageEmulated()) {
16316            mounted = true;
16317        } else {
16318            final String status = Environment.getExternalStorageState();
16319
16320            mounted = status.equals(Environment.MEDIA_MOUNTED)
16321                    || status.equals(Environment.MEDIA_MOUNTED_READ_ONLY);
16322        }
16323
16324        if (!mounted) {
16325            return;
16326        }
16327
16328        final Intent containerIntent = new Intent().setComponent(DEFAULT_CONTAINER_COMPONENT);
16329        int[] users;
16330        if (userId == UserHandle.USER_ALL) {
16331            users = sUserManager.getUserIds();
16332        } else {
16333            users = new int[] { userId };
16334        }
16335        final ClearStorageConnection conn = new ClearStorageConnection();
16336        if (mContext.bindServiceAsUser(
16337                containerIntent, conn, Context.BIND_AUTO_CREATE, UserHandle.SYSTEM)) {
16338            try {
16339                for (int curUser : users) {
16340                    long timeout = SystemClock.uptimeMillis() + 5000;
16341                    synchronized (conn) {
16342                        long now;
16343                        while (conn.mContainerService == null &&
16344                                (now = SystemClock.uptimeMillis()) < timeout) {
16345                            try {
16346                                conn.wait(timeout - now);
16347                            } catch (InterruptedException e) {
16348                            }
16349                        }
16350                    }
16351                    if (conn.mContainerService == null) {
16352                        return;
16353                    }
16354
16355                    final UserEnvironment userEnv = new UserEnvironment(curUser);
16356                    clearDirectory(conn.mContainerService,
16357                            userEnv.buildExternalStorageAppCacheDirs(packageName));
16358                    if (allData) {
16359                        clearDirectory(conn.mContainerService,
16360                                userEnv.buildExternalStorageAppDataDirs(packageName));
16361                        clearDirectory(conn.mContainerService,
16362                                userEnv.buildExternalStorageAppMediaDirs(packageName));
16363                    }
16364                }
16365            } finally {
16366                mContext.unbindService(conn);
16367            }
16368        }
16369    }
16370
16371    @Override
16372    public void clearApplicationProfileData(String packageName) {
16373        enforceSystemOrRoot("Only the system can clear all profile data");
16374
16375        final PackageParser.Package pkg;
16376        synchronized (mPackages) {
16377            pkg = mPackages.get(packageName);
16378        }
16379
16380        try (PackageFreezer freezer = freezePackage(packageName, "clearApplicationProfileData")) {
16381            synchronized (mInstallLock) {
16382                clearAppProfilesLIF(pkg, UserHandle.USER_ALL);
16383                destroyAppReferenceProfileLeafLIF(pkg, UserHandle.USER_ALL,
16384                        true /* removeBaseMarker */);
16385            }
16386        }
16387    }
16388
16389    @Override
16390    public void clearApplicationUserData(final String packageName,
16391            final IPackageDataObserver observer, final int userId) {
16392        mContext.enforceCallingOrSelfPermission(
16393                android.Manifest.permission.CLEAR_APP_USER_DATA, null);
16394
16395        enforceCrossUserPermission(Binder.getCallingUid(), userId,
16396                true /* requireFullPermission */, false /* checkShell */, "clear application data");
16397
16398        if (mProtectedPackages.canPackageBeWiped(userId, packageName)) {
16399            throw new SecurityException("Cannot clear data for a device owner or a profile owner");
16400        }
16401        // Queue up an async operation since the package deletion may take a little while.
16402        mHandler.post(new Runnable() {
16403            public void run() {
16404                mHandler.removeCallbacks(this);
16405                final boolean succeeded;
16406                try (PackageFreezer freezer = freezePackage(packageName,
16407                        "clearApplicationUserData")) {
16408                    synchronized (mInstallLock) {
16409                        succeeded = clearApplicationUserDataLIF(packageName, userId);
16410                    }
16411                    clearExternalStorageDataSync(packageName, userId, true);
16412                }
16413                if (succeeded) {
16414                    // invoke DeviceStorageMonitor's update method to clear any notifications
16415                    DeviceStorageMonitorInternal dsm = LocalServices
16416                            .getService(DeviceStorageMonitorInternal.class);
16417                    if (dsm != null) {
16418                        dsm.checkMemory();
16419                    }
16420                }
16421                if(observer != null) {
16422                    try {
16423                        observer.onRemoveCompleted(packageName, succeeded);
16424                    } catch (RemoteException e) {
16425                        Log.i(TAG, "Observer no longer exists.");
16426                    }
16427                } //end if observer
16428            } //end run
16429        });
16430    }
16431
16432    private boolean clearApplicationUserDataLIF(String packageName, int userId) {
16433        if (packageName == null) {
16434            Slog.w(TAG, "Attempt to delete null packageName.");
16435            return false;
16436        }
16437
16438        // Try finding details about the requested package
16439        PackageParser.Package pkg;
16440        synchronized (mPackages) {
16441            pkg = mPackages.get(packageName);
16442            if (pkg == null) {
16443                final PackageSetting ps = mSettings.mPackages.get(packageName);
16444                if (ps != null) {
16445                    pkg = ps.pkg;
16446                }
16447            }
16448
16449            if (pkg == null) {
16450                Slog.w(TAG, "Package named '" + packageName + "' doesn't exist.");
16451                return false;
16452            }
16453
16454            PackageSetting ps = (PackageSetting) pkg.mExtras;
16455            resetUserChangesToRuntimePermissionsAndFlagsLPw(ps, userId);
16456        }
16457
16458        clearAppDataLIF(pkg, userId,
16459                StorageManager.FLAG_STORAGE_DE | StorageManager.FLAG_STORAGE_CE);
16460
16461        final int appId = UserHandle.getAppId(pkg.applicationInfo.uid);
16462        removeKeystoreDataIfNeeded(userId, appId);
16463
16464        UserManagerInternal umInternal = getUserManagerInternal();
16465        final int flags;
16466        if (umInternal.isUserUnlockingOrUnlocked(userId)) {
16467            flags = StorageManager.FLAG_STORAGE_DE | StorageManager.FLAG_STORAGE_CE;
16468        } else if (umInternal.isUserRunning(userId)) {
16469            flags = StorageManager.FLAG_STORAGE_DE;
16470        } else {
16471            flags = 0;
16472        }
16473        prepareAppDataContentsLIF(pkg, userId, flags);
16474
16475        return true;
16476    }
16477
16478    /**
16479     * Reverts user permission state changes (permissions and flags) in
16480     * all packages for a given user.
16481     *
16482     * @param userId The device user for which to do a reset.
16483     */
16484    private void resetUserChangesToRuntimePermissionsAndFlagsLPw(int userId) {
16485        final int packageCount = mPackages.size();
16486        for (int i = 0; i < packageCount; i++) {
16487            PackageParser.Package pkg = mPackages.valueAt(i);
16488            PackageSetting ps = (PackageSetting) pkg.mExtras;
16489            resetUserChangesToRuntimePermissionsAndFlagsLPw(ps, userId);
16490        }
16491    }
16492
16493    private void resetNetworkPolicies(int userId) {
16494        LocalServices.getService(NetworkPolicyManagerInternal.class).resetUserState(userId);
16495    }
16496
16497    /**
16498     * Reverts user permission state changes (permissions and flags).
16499     *
16500     * @param ps The package for which to reset.
16501     * @param userId The device user for which to do a reset.
16502     */
16503    private void resetUserChangesToRuntimePermissionsAndFlagsLPw(
16504            final PackageSetting ps, final int userId) {
16505        if (ps.pkg == null) {
16506            return;
16507        }
16508
16509        // These are flags that can change base on user actions.
16510        final int userSettableMask = FLAG_PERMISSION_USER_SET
16511                | FLAG_PERMISSION_USER_FIXED
16512                | FLAG_PERMISSION_REVOKE_ON_UPGRADE
16513                | FLAG_PERMISSION_REVIEW_REQUIRED;
16514
16515        final int policyOrSystemFlags = FLAG_PERMISSION_SYSTEM_FIXED
16516                | FLAG_PERMISSION_POLICY_FIXED;
16517
16518        boolean writeInstallPermissions = false;
16519        boolean writeRuntimePermissions = false;
16520
16521        final int permissionCount = ps.pkg.requestedPermissions.size();
16522        for (int i = 0; i < permissionCount; i++) {
16523            String permission = ps.pkg.requestedPermissions.get(i);
16524
16525            BasePermission bp = mSettings.mPermissions.get(permission);
16526            if (bp == null) {
16527                continue;
16528            }
16529
16530            // If shared user we just reset the state to which only this app contributed.
16531            if (ps.sharedUser != null) {
16532                boolean used = false;
16533                final int packageCount = ps.sharedUser.packages.size();
16534                for (int j = 0; j < packageCount; j++) {
16535                    PackageSetting pkg = ps.sharedUser.packages.valueAt(j);
16536                    if (pkg.pkg != null && !pkg.pkg.packageName.equals(ps.pkg.packageName)
16537                            && pkg.pkg.requestedPermissions.contains(permission)) {
16538                        used = true;
16539                        break;
16540                    }
16541                }
16542                if (used) {
16543                    continue;
16544                }
16545            }
16546
16547            PermissionsState permissionsState = ps.getPermissionsState();
16548
16549            final int oldFlags = permissionsState.getPermissionFlags(bp.name, userId);
16550
16551            // Always clear the user settable flags.
16552            final boolean hasInstallState = permissionsState.getInstallPermissionState(
16553                    bp.name) != null;
16554            // If permission review is enabled and this is a legacy app, mark the
16555            // permission as requiring a review as this is the initial state.
16556            int flags = 0;
16557            if (Build.PERMISSIONS_REVIEW_REQUIRED
16558                    && ps.pkg.applicationInfo.targetSdkVersion < Build.VERSION_CODES.M) {
16559                flags |= FLAG_PERMISSION_REVIEW_REQUIRED;
16560            }
16561            if (permissionsState.updatePermissionFlags(bp, userId, userSettableMask, flags)) {
16562                if (hasInstallState) {
16563                    writeInstallPermissions = true;
16564                } else {
16565                    writeRuntimePermissions = true;
16566                }
16567            }
16568
16569            // Below is only runtime permission handling.
16570            if (!bp.isRuntime()) {
16571                continue;
16572            }
16573
16574            // Never clobber system or policy.
16575            if ((oldFlags & policyOrSystemFlags) != 0) {
16576                continue;
16577            }
16578
16579            // If this permission was granted by default, make sure it is.
16580            if ((oldFlags & FLAG_PERMISSION_GRANTED_BY_DEFAULT) != 0) {
16581                if (permissionsState.grantRuntimePermission(bp, userId)
16582                        != PERMISSION_OPERATION_FAILURE) {
16583                    writeRuntimePermissions = true;
16584                }
16585            // If permission review is enabled the permissions for a legacy apps
16586            // are represented as constantly granted runtime ones, so don't revoke.
16587            } else if ((flags & FLAG_PERMISSION_REVIEW_REQUIRED) == 0) {
16588                // Otherwise, reset the permission.
16589                final int revokeResult = permissionsState.revokeRuntimePermission(bp, userId);
16590                switch (revokeResult) {
16591                    case PERMISSION_OPERATION_SUCCESS:
16592                    case PERMISSION_OPERATION_SUCCESS_GIDS_CHANGED: {
16593                        writeRuntimePermissions = true;
16594                        final int appId = ps.appId;
16595                        mHandler.post(new Runnable() {
16596                            @Override
16597                            public void run() {
16598                                killUid(appId, userId, KILL_APP_REASON_PERMISSIONS_REVOKED);
16599                            }
16600                        });
16601                    } break;
16602                }
16603            }
16604        }
16605
16606        // Synchronously write as we are taking permissions away.
16607        if (writeRuntimePermissions) {
16608            mSettings.writeRuntimePermissionsForUserLPr(userId, true);
16609        }
16610
16611        // Synchronously write as we are taking permissions away.
16612        if (writeInstallPermissions) {
16613            mSettings.writeLPr();
16614        }
16615    }
16616
16617    /**
16618     * Remove entries from the keystore daemon. Will only remove it if the
16619     * {@code appId} is valid.
16620     */
16621    private static void removeKeystoreDataIfNeeded(int userId, int appId) {
16622        if (appId < 0) {
16623            return;
16624        }
16625
16626        final KeyStore keyStore = KeyStore.getInstance();
16627        if (keyStore != null) {
16628            if (userId == UserHandle.USER_ALL) {
16629                for (final int individual : sUserManager.getUserIds()) {
16630                    keyStore.clearUid(UserHandle.getUid(individual, appId));
16631                }
16632            } else {
16633                keyStore.clearUid(UserHandle.getUid(userId, appId));
16634            }
16635        } else {
16636            Slog.w(TAG, "Could not contact keystore to clear entries for app id " + appId);
16637        }
16638    }
16639
16640    @Override
16641    public void deleteApplicationCacheFiles(final String packageName,
16642            final IPackageDataObserver observer) {
16643        final int userId = UserHandle.getCallingUserId();
16644        deleteApplicationCacheFilesAsUser(packageName, userId, observer);
16645    }
16646
16647    @Override
16648    public void deleteApplicationCacheFilesAsUser(final String packageName, final int userId,
16649            final IPackageDataObserver observer) {
16650        mContext.enforceCallingOrSelfPermission(
16651                android.Manifest.permission.DELETE_CACHE_FILES, null);
16652        enforceCrossUserPermission(Binder.getCallingUid(), userId,
16653                /* requireFullPermission= */ true, /* checkShell= */ false,
16654                "delete application cache files");
16655
16656        final PackageParser.Package pkg;
16657        synchronized (mPackages) {
16658            pkg = mPackages.get(packageName);
16659        }
16660
16661        // Queue up an async operation since the package deletion may take a little while.
16662        mHandler.post(new Runnable() {
16663            public void run() {
16664                synchronized (mInstallLock) {
16665                    final int flags = StorageManager.FLAG_STORAGE_DE
16666                            | StorageManager.FLAG_STORAGE_CE;
16667                    // We're only clearing cache files, so we don't care if the
16668                    // app is unfrozen and still able to run
16669                    clearAppDataLIF(pkg, userId, flags | Installer.FLAG_CLEAR_CACHE_ONLY);
16670                    clearAppDataLIF(pkg, userId, flags | Installer.FLAG_CLEAR_CODE_CACHE_ONLY);
16671                }
16672                clearExternalStorageDataSync(packageName, userId, false);
16673                if (observer != null) {
16674                    try {
16675                        observer.onRemoveCompleted(packageName, true);
16676                    } catch (RemoteException e) {
16677                        Log.i(TAG, "Observer no longer exists.");
16678                    }
16679                }
16680            }
16681        });
16682    }
16683
16684    @Override
16685    public void getPackageSizeInfo(final String packageName, int userHandle,
16686            final IPackageStatsObserver observer) {
16687        mContext.enforceCallingOrSelfPermission(
16688                android.Manifest.permission.GET_PACKAGE_SIZE, null);
16689        if (packageName == null) {
16690            throw new IllegalArgumentException("Attempt to get size of null packageName");
16691        }
16692
16693        PackageStats stats = new PackageStats(packageName, userHandle);
16694
16695        /*
16696         * Queue up an async operation since the package measurement may take a
16697         * little while.
16698         */
16699        Message msg = mHandler.obtainMessage(INIT_COPY);
16700        msg.obj = new MeasureParams(stats, observer);
16701        mHandler.sendMessage(msg);
16702    }
16703
16704    private boolean getPackageSizeInfoLI(String packageName, int userId, PackageStats stats) {
16705        final PackageSetting ps;
16706        synchronized (mPackages) {
16707            ps = mSettings.mPackages.get(packageName);
16708            if (ps == null) {
16709                Slog.w(TAG, "Failed to find settings for " + packageName);
16710                return false;
16711            }
16712        }
16713        try {
16714            mInstaller.getAppSize(ps.volumeUuid, packageName, userId,
16715                    StorageManager.FLAG_STORAGE_DE | StorageManager.FLAG_STORAGE_CE,
16716                    ps.getCeDataInode(userId), ps.codePathString, stats);
16717        } catch (InstallerException e) {
16718            Slog.w(TAG, String.valueOf(e));
16719            return false;
16720        }
16721
16722        // For now, ignore code size of packages on system partition
16723        if (isSystemApp(ps) && !isUpdatedSystemApp(ps)) {
16724            stats.codeSize = 0;
16725        }
16726
16727        return true;
16728    }
16729
16730    private int getUidTargetSdkVersionLockedLPr(int uid) {
16731        Object obj = mSettings.getUserIdLPr(uid);
16732        if (obj instanceof SharedUserSetting) {
16733            final SharedUserSetting sus = (SharedUserSetting) obj;
16734            int vers = Build.VERSION_CODES.CUR_DEVELOPMENT;
16735            final Iterator<PackageSetting> it = sus.packages.iterator();
16736            while (it.hasNext()) {
16737                final PackageSetting ps = it.next();
16738                if (ps.pkg != null) {
16739                    int v = ps.pkg.applicationInfo.targetSdkVersion;
16740                    if (v < vers) vers = v;
16741                }
16742            }
16743            return vers;
16744        } else if (obj instanceof PackageSetting) {
16745            final PackageSetting ps = (PackageSetting) obj;
16746            if (ps.pkg != null) {
16747                return ps.pkg.applicationInfo.targetSdkVersion;
16748            }
16749        }
16750        return Build.VERSION_CODES.CUR_DEVELOPMENT;
16751    }
16752
16753    @Override
16754    public void addPreferredActivity(IntentFilter filter, int match,
16755            ComponentName[] set, ComponentName activity, int userId) {
16756        addPreferredActivityInternal(filter, match, set, activity, true, userId,
16757                "Adding preferred");
16758    }
16759
16760    private void addPreferredActivityInternal(IntentFilter filter, int match,
16761            ComponentName[] set, ComponentName activity, boolean always, int userId,
16762            String opname) {
16763        // writer
16764        int callingUid = Binder.getCallingUid();
16765        enforceCrossUserPermission(callingUid, userId,
16766                true /* requireFullPermission */, false /* checkShell */, "add preferred activity");
16767        if (filter.countActions() == 0) {
16768            Slog.w(TAG, "Cannot set a preferred activity with no filter actions");
16769            return;
16770        }
16771        synchronized (mPackages) {
16772            if (mContext.checkCallingOrSelfPermission(
16773                    android.Manifest.permission.SET_PREFERRED_APPLICATIONS)
16774                    != PackageManager.PERMISSION_GRANTED) {
16775                if (getUidTargetSdkVersionLockedLPr(callingUid)
16776                        < Build.VERSION_CODES.FROYO) {
16777                    Slog.w(TAG, "Ignoring addPreferredActivity() from uid "
16778                            + callingUid);
16779                    return;
16780                }
16781                mContext.enforceCallingOrSelfPermission(
16782                        android.Manifest.permission.SET_PREFERRED_APPLICATIONS, null);
16783            }
16784
16785            PreferredIntentResolver pir = mSettings.editPreferredActivitiesLPw(userId);
16786            Slog.i(TAG, opname + " activity " + activity.flattenToShortString() + " for user "
16787                    + userId + ":");
16788            filter.dump(new LogPrinter(Log.INFO, TAG), "  ");
16789            pir.addFilter(new PreferredActivity(filter, match, set, activity, always));
16790            scheduleWritePackageRestrictionsLocked(userId);
16791        }
16792    }
16793
16794    @Override
16795    public void replacePreferredActivity(IntentFilter filter, int match,
16796            ComponentName[] set, ComponentName activity, int userId) {
16797        if (filter.countActions() != 1) {
16798            throw new IllegalArgumentException(
16799                    "replacePreferredActivity expects filter to have only 1 action.");
16800        }
16801        if (filter.countDataAuthorities() != 0
16802                || filter.countDataPaths() != 0
16803                || filter.countDataSchemes() > 1
16804                || filter.countDataTypes() != 0) {
16805            throw new IllegalArgumentException(
16806                    "replacePreferredActivity expects filter to have no data authorities, " +
16807                    "paths, or types; and at most one scheme.");
16808        }
16809
16810        final int callingUid = Binder.getCallingUid();
16811        enforceCrossUserPermission(callingUid, userId,
16812                true /* requireFullPermission */, false /* checkShell */,
16813                "replace preferred activity");
16814        synchronized (mPackages) {
16815            if (mContext.checkCallingOrSelfPermission(
16816                    android.Manifest.permission.SET_PREFERRED_APPLICATIONS)
16817                    != PackageManager.PERMISSION_GRANTED) {
16818                if (getUidTargetSdkVersionLockedLPr(callingUid)
16819                        < Build.VERSION_CODES.FROYO) {
16820                    Slog.w(TAG, "Ignoring replacePreferredActivity() from uid "
16821                            + Binder.getCallingUid());
16822                    return;
16823                }
16824                mContext.enforceCallingOrSelfPermission(
16825                        android.Manifest.permission.SET_PREFERRED_APPLICATIONS, null);
16826            }
16827
16828            PreferredIntentResolver pir = mSettings.mPreferredActivities.get(userId);
16829            if (pir != null) {
16830                // Get all of the existing entries that exactly match this filter.
16831                ArrayList<PreferredActivity> existing = pir.findFilters(filter);
16832                if (existing != null && existing.size() == 1) {
16833                    PreferredActivity cur = existing.get(0);
16834                    if (DEBUG_PREFERRED) {
16835                        Slog.i(TAG, "Checking replace of preferred:");
16836                        filter.dump(new LogPrinter(Log.INFO, TAG), "  ");
16837                        if (!cur.mPref.mAlways) {
16838                            Slog.i(TAG, "  -- CUR; not mAlways!");
16839                        } else {
16840                            Slog.i(TAG, "  -- CUR: mMatch=" + cur.mPref.mMatch);
16841                            Slog.i(TAG, "  -- CUR: mSet="
16842                                    + Arrays.toString(cur.mPref.mSetComponents));
16843                            Slog.i(TAG, "  -- CUR: mComponent=" + cur.mPref.mShortComponent);
16844                            Slog.i(TAG, "  -- NEW: mMatch="
16845                                    + (match&IntentFilter.MATCH_CATEGORY_MASK));
16846                            Slog.i(TAG, "  -- CUR: mSet=" + Arrays.toString(set));
16847                            Slog.i(TAG, "  -- CUR: mComponent=" + activity.flattenToShortString());
16848                        }
16849                    }
16850                    if (cur.mPref.mAlways && cur.mPref.mComponent.equals(activity)
16851                            && cur.mPref.mMatch == (match&IntentFilter.MATCH_CATEGORY_MASK)
16852                            && cur.mPref.sameSet(set)) {
16853                        // Setting the preferred activity to what it happens to be already
16854                        if (DEBUG_PREFERRED) {
16855                            Slog.i(TAG, "Replacing with same preferred activity "
16856                                    + cur.mPref.mShortComponent + " for user "
16857                                    + userId + ":");
16858                            filter.dump(new LogPrinter(Log.INFO, TAG), "  ");
16859                        }
16860                        return;
16861                    }
16862                }
16863
16864                if (existing != null) {
16865                    if (DEBUG_PREFERRED) {
16866                        Slog.i(TAG, existing.size() + " existing preferred matches for:");
16867                        filter.dump(new LogPrinter(Log.INFO, TAG), "  ");
16868                    }
16869                    for (int i = 0; i < existing.size(); i++) {
16870                        PreferredActivity pa = existing.get(i);
16871                        if (DEBUG_PREFERRED) {
16872                            Slog.i(TAG, "Removing existing preferred activity "
16873                                    + pa.mPref.mComponent + ":");
16874                            pa.dump(new LogPrinter(Log.INFO, TAG), "  ");
16875                        }
16876                        pir.removeFilter(pa);
16877                    }
16878                }
16879            }
16880            addPreferredActivityInternal(filter, match, set, activity, true, userId,
16881                    "Replacing preferred");
16882        }
16883    }
16884
16885    @Override
16886    public void clearPackagePreferredActivities(String packageName) {
16887        final int uid = Binder.getCallingUid();
16888        // writer
16889        synchronized (mPackages) {
16890            PackageParser.Package pkg = mPackages.get(packageName);
16891            if (pkg == null || pkg.applicationInfo.uid != uid) {
16892                if (mContext.checkCallingOrSelfPermission(
16893                        android.Manifest.permission.SET_PREFERRED_APPLICATIONS)
16894                        != PackageManager.PERMISSION_GRANTED) {
16895                    if (getUidTargetSdkVersionLockedLPr(Binder.getCallingUid())
16896                            < Build.VERSION_CODES.FROYO) {
16897                        Slog.w(TAG, "Ignoring clearPackagePreferredActivities() from uid "
16898                                + Binder.getCallingUid());
16899                        return;
16900                    }
16901                    mContext.enforceCallingOrSelfPermission(
16902                            android.Manifest.permission.SET_PREFERRED_APPLICATIONS, null);
16903                }
16904            }
16905
16906            int user = UserHandle.getCallingUserId();
16907            if (clearPackagePreferredActivitiesLPw(packageName, user)) {
16908                scheduleWritePackageRestrictionsLocked(user);
16909            }
16910        }
16911    }
16912
16913    /** This method takes a specific user id as well as UserHandle.USER_ALL. */
16914    boolean clearPackagePreferredActivitiesLPw(String packageName, int userId) {
16915        ArrayList<PreferredActivity> removed = null;
16916        boolean changed = false;
16917        for (int i=0; i<mSettings.mPreferredActivities.size(); i++) {
16918            final int thisUserId = mSettings.mPreferredActivities.keyAt(i);
16919            PreferredIntentResolver pir = mSettings.mPreferredActivities.valueAt(i);
16920            if (userId != UserHandle.USER_ALL && userId != thisUserId) {
16921                continue;
16922            }
16923            Iterator<PreferredActivity> it = pir.filterIterator();
16924            while (it.hasNext()) {
16925                PreferredActivity pa = it.next();
16926                // Mark entry for removal only if it matches the package name
16927                // and the entry is of type "always".
16928                if (packageName == null ||
16929                        (pa.mPref.mComponent.getPackageName().equals(packageName)
16930                                && pa.mPref.mAlways)) {
16931                    if (removed == null) {
16932                        removed = new ArrayList<PreferredActivity>();
16933                    }
16934                    removed.add(pa);
16935                }
16936            }
16937            if (removed != null) {
16938                for (int j=0; j<removed.size(); j++) {
16939                    PreferredActivity pa = removed.get(j);
16940                    pir.removeFilter(pa);
16941                }
16942                changed = true;
16943            }
16944        }
16945        return changed;
16946    }
16947
16948    /** This method takes a specific user id as well as UserHandle.USER_ALL. */
16949    private void clearIntentFilterVerificationsLPw(int userId) {
16950        final int packageCount = mPackages.size();
16951        for (int i = 0; i < packageCount; i++) {
16952            PackageParser.Package pkg = mPackages.valueAt(i);
16953            clearIntentFilterVerificationsLPw(pkg.packageName, userId);
16954        }
16955    }
16956
16957    /** This method takes a specific user id as well as UserHandle.USER_ALL. */
16958    void clearIntentFilterVerificationsLPw(String packageName, int userId) {
16959        if (userId == UserHandle.USER_ALL) {
16960            if (mSettings.removeIntentFilterVerificationLPw(packageName,
16961                    sUserManager.getUserIds())) {
16962                for (int oneUserId : sUserManager.getUserIds()) {
16963                    scheduleWritePackageRestrictionsLocked(oneUserId);
16964                }
16965            }
16966        } else {
16967            if (mSettings.removeIntentFilterVerificationLPw(packageName, userId)) {
16968                scheduleWritePackageRestrictionsLocked(userId);
16969            }
16970        }
16971    }
16972
16973    void clearDefaultBrowserIfNeeded(String packageName) {
16974        for (int oneUserId : sUserManager.getUserIds()) {
16975            String defaultBrowserPackageName = getDefaultBrowserPackageName(oneUserId);
16976            if (TextUtils.isEmpty(defaultBrowserPackageName)) continue;
16977            if (packageName.equals(defaultBrowserPackageName)) {
16978                setDefaultBrowserPackageName(null, oneUserId);
16979            }
16980        }
16981    }
16982
16983    @Override
16984    public void resetApplicationPreferences(int userId) {
16985        mContext.enforceCallingOrSelfPermission(
16986                android.Manifest.permission.SET_PREFERRED_APPLICATIONS, null);
16987        final long identity = Binder.clearCallingIdentity();
16988        // writer
16989        try {
16990            synchronized (mPackages) {
16991                clearPackagePreferredActivitiesLPw(null, userId);
16992                mSettings.applyDefaultPreferredAppsLPw(this, userId);
16993                // TODO: We have to reset the default SMS and Phone. This requires
16994                // significant refactoring to keep all default apps in the package
16995                // manager (cleaner but more work) or have the services provide
16996                // callbacks to the package manager to request a default app reset.
16997                applyFactoryDefaultBrowserLPw(userId);
16998                clearIntentFilterVerificationsLPw(userId);
16999                primeDomainVerificationsLPw(userId);
17000                resetUserChangesToRuntimePermissionsAndFlagsLPw(userId);
17001                scheduleWritePackageRestrictionsLocked(userId);
17002            }
17003            resetNetworkPolicies(userId);
17004        } finally {
17005            Binder.restoreCallingIdentity(identity);
17006        }
17007    }
17008
17009    @Override
17010    public int getPreferredActivities(List<IntentFilter> outFilters,
17011            List<ComponentName> outActivities, String packageName) {
17012
17013        int num = 0;
17014        final int userId = UserHandle.getCallingUserId();
17015        // reader
17016        synchronized (mPackages) {
17017            PreferredIntentResolver pir = mSettings.mPreferredActivities.get(userId);
17018            if (pir != null) {
17019                final Iterator<PreferredActivity> it = pir.filterIterator();
17020                while (it.hasNext()) {
17021                    final PreferredActivity pa = it.next();
17022                    if (packageName == null
17023                            || (pa.mPref.mComponent.getPackageName().equals(packageName)
17024                                    && pa.mPref.mAlways)) {
17025                        if (outFilters != null) {
17026                            outFilters.add(new IntentFilter(pa));
17027                        }
17028                        if (outActivities != null) {
17029                            outActivities.add(pa.mPref.mComponent);
17030                        }
17031                    }
17032                }
17033            }
17034        }
17035
17036        return num;
17037    }
17038
17039    @Override
17040    public void addPersistentPreferredActivity(IntentFilter filter, ComponentName activity,
17041            int userId) {
17042        int callingUid = Binder.getCallingUid();
17043        if (callingUid != Process.SYSTEM_UID) {
17044            throw new SecurityException(
17045                    "addPersistentPreferredActivity can only be run by the system");
17046        }
17047        if (filter.countActions() == 0) {
17048            Slog.w(TAG, "Cannot set a preferred activity with no filter actions");
17049            return;
17050        }
17051        synchronized (mPackages) {
17052            Slog.i(TAG, "Adding persistent preferred activity " + activity + " for user " + userId +
17053                    ":");
17054            filter.dump(new LogPrinter(Log.INFO, TAG), "  ");
17055            mSettings.editPersistentPreferredActivitiesLPw(userId).addFilter(
17056                    new PersistentPreferredActivity(filter, activity));
17057            scheduleWritePackageRestrictionsLocked(userId);
17058        }
17059    }
17060
17061    @Override
17062    public void clearPackagePersistentPreferredActivities(String packageName, int userId) {
17063        int callingUid = Binder.getCallingUid();
17064        if (callingUid != Process.SYSTEM_UID) {
17065            throw new SecurityException(
17066                    "clearPackagePersistentPreferredActivities can only be run by the system");
17067        }
17068        ArrayList<PersistentPreferredActivity> removed = null;
17069        boolean changed = false;
17070        synchronized (mPackages) {
17071            for (int i=0; i<mSettings.mPersistentPreferredActivities.size(); i++) {
17072                final int thisUserId = mSettings.mPersistentPreferredActivities.keyAt(i);
17073                PersistentPreferredIntentResolver ppir = mSettings.mPersistentPreferredActivities
17074                        .valueAt(i);
17075                if (userId != thisUserId) {
17076                    continue;
17077                }
17078                Iterator<PersistentPreferredActivity> it = ppir.filterIterator();
17079                while (it.hasNext()) {
17080                    PersistentPreferredActivity ppa = it.next();
17081                    // Mark entry for removal only if it matches the package name.
17082                    if (ppa.mComponent.getPackageName().equals(packageName)) {
17083                        if (removed == null) {
17084                            removed = new ArrayList<PersistentPreferredActivity>();
17085                        }
17086                        removed.add(ppa);
17087                    }
17088                }
17089                if (removed != null) {
17090                    for (int j=0; j<removed.size(); j++) {
17091                        PersistentPreferredActivity ppa = removed.get(j);
17092                        ppir.removeFilter(ppa);
17093                    }
17094                    changed = true;
17095                }
17096            }
17097
17098            if (changed) {
17099                scheduleWritePackageRestrictionsLocked(userId);
17100            }
17101        }
17102    }
17103
17104    /**
17105     * Common machinery for picking apart a restored XML blob and passing
17106     * it to a caller-supplied functor to be applied to the running system.
17107     */
17108    private void restoreFromXml(XmlPullParser parser, int userId,
17109            String expectedStartTag, BlobXmlRestorer functor)
17110            throws IOException, XmlPullParserException {
17111        int type;
17112        while ((type = parser.next()) != XmlPullParser.START_TAG
17113                && type != XmlPullParser.END_DOCUMENT) {
17114        }
17115        if (type != XmlPullParser.START_TAG) {
17116            // oops didn't find a start tag?!
17117            if (DEBUG_BACKUP) {
17118                Slog.e(TAG, "Didn't find start tag during restore");
17119            }
17120            return;
17121        }
17122Slog.v(TAG, ":: restoreFromXml() : got to tag " + parser.getName());
17123        // this is supposed to be TAG_PREFERRED_BACKUP
17124        if (!expectedStartTag.equals(parser.getName())) {
17125            if (DEBUG_BACKUP) {
17126                Slog.e(TAG, "Found unexpected tag " + parser.getName());
17127            }
17128            return;
17129        }
17130
17131        // skip interfering stuff, then we're aligned with the backing implementation
17132        while ((type = parser.next()) == XmlPullParser.TEXT) { }
17133Slog.v(TAG, ":: stepped forward, applying functor at tag " + parser.getName());
17134        functor.apply(parser, userId);
17135    }
17136
17137    private interface BlobXmlRestorer {
17138        public void apply(XmlPullParser parser, int userId) throws IOException, XmlPullParserException;
17139    }
17140
17141    /**
17142     * Non-Binder method, support for the backup/restore mechanism: write the
17143     * full set of preferred activities in its canonical XML format.  Returns the
17144     * XML output as a byte array, or null if there is none.
17145     */
17146    @Override
17147    public byte[] getPreferredActivityBackup(int userId) {
17148        if (Binder.getCallingUid() != Process.SYSTEM_UID) {
17149            throw new SecurityException("Only the system may call getPreferredActivityBackup()");
17150        }
17151
17152        ByteArrayOutputStream dataStream = new ByteArrayOutputStream();
17153        try {
17154            final XmlSerializer serializer = new FastXmlSerializer();
17155            serializer.setOutput(dataStream, StandardCharsets.UTF_8.name());
17156            serializer.startDocument(null, true);
17157            serializer.startTag(null, TAG_PREFERRED_BACKUP);
17158
17159            synchronized (mPackages) {
17160                mSettings.writePreferredActivitiesLPr(serializer, userId, true);
17161            }
17162
17163            serializer.endTag(null, TAG_PREFERRED_BACKUP);
17164            serializer.endDocument();
17165            serializer.flush();
17166        } catch (Exception e) {
17167            if (DEBUG_BACKUP) {
17168                Slog.e(TAG, "Unable to write preferred activities for backup", e);
17169            }
17170            return null;
17171        }
17172
17173        return dataStream.toByteArray();
17174    }
17175
17176    @Override
17177    public void restorePreferredActivities(byte[] backup, int userId) {
17178        if (Binder.getCallingUid() != Process.SYSTEM_UID) {
17179            throw new SecurityException("Only the system may call restorePreferredActivities()");
17180        }
17181
17182        try {
17183            final XmlPullParser parser = Xml.newPullParser();
17184            parser.setInput(new ByteArrayInputStream(backup), StandardCharsets.UTF_8.name());
17185            restoreFromXml(parser, userId, TAG_PREFERRED_BACKUP,
17186                    new BlobXmlRestorer() {
17187                        @Override
17188                        public void apply(XmlPullParser parser, int userId)
17189                                throws XmlPullParserException, IOException {
17190                            synchronized (mPackages) {
17191                                mSettings.readPreferredActivitiesLPw(parser, userId);
17192                            }
17193                        }
17194                    } );
17195        } catch (Exception e) {
17196            if (DEBUG_BACKUP) {
17197                Slog.e(TAG, "Exception restoring preferred activities: " + e.getMessage());
17198            }
17199        }
17200    }
17201
17202    /**
17203     * Non-Binder method, support for the backup/restore mechanism: write the
17204     * default browser (etc) settings in its canonical XML format.  Returns the default
17205     * browser XML representation as a byte array, or null if there is none.
17206     */
17207    @Override
17208    public byte[] getDefaultAppsBackup(int userId) {
17209        if (Binder.getCallingUid() != Process.SYSTEM_UID) {
17210            throw new SecurityException("Only the system may call getDefaultAppsBackup()");
17211        }
17212
17213        ByteArrayOutputStream dataStream = new ByteArrayOutputStream();
17214        try {
17215            final XmlSerializer serializer = new FastXmlSerializer();
17216            serializer.setOutput(dataStream, StandardCharsets.UTF_8.name());
17217            serializer.startDocument(null, true);
17218            serializer.startTag(null, TAG_DEFAULT_APPS);
17219
17220            synchronized (mPackages) {
17221                mSettings.writeDefaultAppsLPr(serializer, userId);
17222            }
17223
17224            serializer.endTag(null, TAG_DEFAULT_APPS);
17225            serializer.endDocument();
17226            serializer.flush();
17227        } catch (Exception e) {
17228            if (DEBUG_BACKUP) {
17229                Slog.e(TAG, "Unable to write default apps for backup", e);
17230            }
17231            return null;
17232        }
17233
17234        return dataStream.toByteArray();
17235    }
17236
17237    @Override
17238    public void restoreDefaultApps(byte[] backup, int userId) {
17239        if (Binder.getCallingUid() != Process.SYSTEM_UID) {
17240            throw new SecurityException("Only the system may call restoreDefaultApps()");
17241        }
17242
17243        try {
17244            final XmlPullParser parser = Xml.newPullParser();
17245            parser.setInput(new ByteArrayInputStream(backup), StandardCharsets.UTF_8.name());
17246            restoreFromXml(parser, userId, TAG_DEFAULT_APPS,
17247                    new BlobXmlRestorer() {
17248                        @Override
17249                        public void apply(XmlPullParser parser, int userId)
17250                                throws XmlPullParserException, IOException {
17251                            synchronized (mPackages) {
17252                                mSettings.readDefaultAppsLPw(parser, userId);
17253                            }
17254                        }
17255                    } );
17256        } catch (Exception e) {
17257            if (DEBUG_BACKUP) {
17258                Slog.e(TAG, "Exception restoring default apps: " + e.getMessage());
17259            }
17260        }
17261    }
17262
17263    @Override
17264    public byte[] getIntentFilterVerificationBackup(int userId) {
17265        if (Binder.getCallingUid() != Process.SYSTEM_UID) {
17266            throw new SecurityException("Only the system may call getIntentFilterVerificationBackup()");
17267        }
17268
17269        ByteArrayOutputStream dataStream = new ByteArrayOutputStream();
17270        try {
17271            final XmlSerializer serializer = new FastXmlSerializer();
17272            serializer.setOutput(dataStream, StandardCharsets.UTF_8.name());
17273            serializer.startDocument(null, true);
17274            serializer.startTag(null, TAG_INTENT_FILTER_VERIFICATION);
17275
17276            synchronized (mPackages) {
17277                mSettings.writeAllDomainVerificationsLPr(serializer, userId);
17278            }
17279
17280            serializer.endTag(null, TAG_INTENT_FILTER_VERIFICATION);
17281            serializer.endDocument();
17282            serializer.flush();
17283        } catch (Exception e) {
17284            if (DEBUG_BACKUP) {
17285                Slog.e(TAG, "Unable to write default apps for backup", e);
17286            }
17287            return null;
17288        }
17289
17290        return dataStream.toByteArray();
17291    }
17292
17293    @Override
17294    public void restoreIntentFilterVerification(byte[] backup, int userId) {
17295        if (Binder.getCallingUid() != Process.SYSTEM_UID) {
17296            throw new SecurityException("Only the system may call restorePreferredActivities()");
17297        }
17298
17299        try {
17300            final XmlPullParser parser = Xml.newPullParser();
17301            parser.setInput(new ByteArrayInputStream(backup), StandardCharsets.UTF_8.name());
17302            restoreFromXml(parser, userId, TAG_INTENT_FILTER_VERIFICATION,
17303                    new BlobXmlRestorer() {
17304                        @Override
17305                        public void apply(XmlPullParser parser, int userId)
17306                                throws XmlPullParserException, IOException {
17307                            synchronized (mPackages) {
17308                                mSettings.readAllDomainVerificationsLPr(parser, userId);
17309                                mSettings.writeLPr();
17310                            }
17311                        }
17312                    } );
17313        } catch (Exception e) {
17314            if (DEBUG_BACKUP) {
17315                Slog.e(TAG, "Exception restoring preferred activities: " + e.getMessage());
17316            }
17317        }
17318    }
17319
17320    @Override
17321    public byte[] getPermissionGrantBackup(int userId) {
17322        if (Binder.getCallingUid() != Process.SYSTEM_UID) {
17323            throw new SecurityException("Only the system may call getPermissionGrantBackup()");
17324        }
17325
17326        ByteArrayOutputStream dataStream = new ByteArrayOutputStream();
17327        try {
17328            final XmlSerializer serializer = new FastXmlSerializer();
17329            serializer.setOutput(dataStream, StandardCharsets.UTF_8.name());
17330            serializer.startDocument(null, true);
17331            serializer.startTag(null, TAG_PERMISSION_BACKUP);
17332
17333            synchronized (mPackages) {
17334                serializeRuntimePermissionGrantsLPr(serializer, userId);
17335            }
17336
17337            serializer.endTag(null, TAG_PERMISSION_BACKUP);
17338            serializer.endDocument();
17339            serializer.flush();
17340        } catch (Exception e) {
17341            if (DEBUG_BACKUP) {
17342                Slog.e(TAG, "Unable to write default apps for backup", e);
17343            }
17344            return null;
17345        }
17346
17347        return dataStream.toByteArray();
17348    }
17349
17350    @Override
17351    public void restorePermissionGrants(byte[] backup, int userId) {
17352        if (Binder.getCallingUid() != Process.SYSTEM_UID) {
17353            throw new SecurityException("Only the system may call restorePermissionGrants()");
17354        }
17355
17356        try {
17357            final XmlPullParser parser = Xml.newPullParser();
17358            parser.setInput(new ByteArrayInputStream(backup), StandardCharsets.UTF_8.name());
17359            restoreFromXml(parser, userId, TAG_PERMISSION_BACKUP,
17360                    new BlobXmlRestorer() {
17361                        @Override
17362                        public void apply(XmlPullParser parser, int userId)
17363                                throws XmlPullParserException, IOException {
17364                            synchronized (mPackages) {
17365                                processRestoredPermissionGrantsLPr(parser, userId);
17366                            }
17367                        }
17368                    } );
17369        } catch (Exception e) {
17370            if (DEBUG_BACKUP) {
17371                Slog.e(TAG, "Exception restoring preferred activities: " + e.getMessage());
17372            }
17373        }
17374    }
17375
17376    private void serializeRuntimePermissionGrantsLPr(XmlSerializer serializer, final int userId)
17377            throws IOException {
17378        serializer.startTag(null, TAG_ALL_GRANTS);
17379
17380        final int N = mSettings.mPackages.size();
17381        for (int i = 0; i < N; i++) {
17382            final PackageSetting ps = mSettings.mPackages.valueAt(i);
17383            boolean pkgGrantsKnown = false;
17384
17385            PermissionsState packagePerms = ps.getPermissionsState();
17386
17387            for (PermissionState state : packagePerms.getRuntimePermissionStates(userId)) {
17388                final int grantFlags = state.getFlags();
17389                // only look at grants that are not system/policy fixed
17390                if ((grantFlags & SYSTEM_RUNTIME_GRANT_MASK) == 0) {
17391                    final boolean isGranted = state.isGranted();
17392                    // And only back up the user-twiddled state bits
17393                    if (isGranted || (grantFlags & USER_RUNTIME_GRANT_MASK) != 0) {
17394                        final String packageName = mSettings.mPackages.keyAt(i);
17395                        if (!pkgGrantsKnown) {
17396                            serializer.startTag(null, TAG_GRANT);
17397                            serializer.attribute(null, ATTR_PACKAGE_NAME, packageName);
17398                            pkgGrantsKnown = true;
17399                        }
17400
17401                        final boolean userSet =
17402                                (grantFlags & FLAG_PERMISSION_USER_SET) != 0;
17403                        final boolean userFixed =
17404                                (grantFlags & FLAG_PERMISSION_USER_FIXED) != 0;
17405                        final boolean revoke =
17406                                (grantFlags & FLAG_PERMISSION_REVOKE_ON_UPGRADE) != 0;
17407
17408                        serializer.startTag(null, TAG_PERMISSION);
17409                        serializer.attribute(null, ATTR_PERMISSION_NAME, state.getName());
17410                        if (isGranted) {
17411                            serializer.attribute(null, ATTR_IS_GRANTED, "true");
17412                        }
17413                        if (userSet) {
17414                            serializer.attribute(null, ATTR_USER_SET, "true");
17415                        }
17416                        if (userFixed) {
17417                            serializer.attribute(null, ATTR_USER_FIXED, "true");
17418                        }
17419                        if (revoke) {
17420                            serializer.attribute(null, ATTR_REVOKE_ON_UPGRADE, "true");
17421                        }
17422                        serializer.endTag(null, TAG_PERMISSION);
17423                    }
17424                }
17425            }
17426
17427            if (pkgGrantsKnown) {
17428                serializer.endTag(null, TAG_GRANT);
17429            }
17430        }
17431
17432        serializer.endTag(null, TAG_ALL_GRANTS);
17433    }
17434
17435    private void processRestoredPermissionGrantsLPr(XmlPullParser parser, int userId)
17436            throws XmlPullParserException, IOException {
17437        String pkgName = null;
17438        int outerDepth = parser.getDepth();
17439        int type;
17440        while ((type = parser.next()) != XmlPullParser.END_DOCUMENT
17441                && (type != XmlPullParser.END_TAG || parser.getDepth() > outerDepth)) {
17442            if (type == XmlPullParser.END_TAG || type == XmlPullParser.TEXT) {
17443                continue;
17444            }
17445
17446            final String tagName = parser.getName();
17447            if (tagName.equals(TAG_GRANT)) {
17448                pkgName = parser.getAttributeValue(null, ATTR_PACKAGE_NAME);
17449                if (DEBUG_BACKUP) {
17450                    Slog.v(TAG, "+++ Restoring grants for package " + pkgName);
17451                }
17452            } else if (tagName.equals(TAG_PERMISSION)) {
17453
17454                final boolean isGranted = "true".equals(parser.getAttributeValue(null, ATTR_IS_GRANTED));
17455                final String permName = parser.getAttributeValue(null, ATTR_PERMISSION_NAME);
17456
17457                int newFlagSet = 0;
17458                if ("true".equals(parser.getAttributeValue(null, ATTR_USER_SET))) {
17459                    newFlagSet |= FLAG_PERMISSION_USER_SET;
17460                }
17461                if ("true".equals(parser.getAttributeValue(null, ATTR_USER_FIXED))) {
17462                    newFlagSet |= FLAG_PERMISSION_USER_FIXED;
17463                }
17464                if ("true".equals(parser.getAttributeValue(null, ATTR_REVOKE_ON_UPGRADE))) {
17465                    newFlagSet |= FLAG_PERMISSION_REVOKE_ON_UPGRADE;
17466                }
17467                if (DEBUG_BACKUP) {
17468                    Slog.v(TAG, "  + Restoring grant: pkg=" + pkgName + " perm=" + permName
17469                            + " granted=" + isGranted + " bits=0x" + Integer.toHexString(newFlagSet));
17470                }
17471                final PackageSetting ps = mSettings.mPackages.get(pkgName);
17472                if (ps != null) {
17473                    // Already installed so we apply the grant immediately
17474                    if (DEBUG_BACKUP) {
17475                        Slog.v(TAG, "        + already installed; applying");
17476                    }
17477                    PermissionsState perms = ps.getPermissionsState();
17478                    BasePermission bp = mSettings.mPermissions.get(permName);
17479                    if (bp != null) {
17480                        if (isGranted) {
17481                            perms.grantRuntimePermission(bp, userId);
17482                        }
17483                        if (newFlagSet != 0) {
17484                            perms.updatePermissionFlags(bp, userId, USER_RUNTIME_GRANT_MASK, newFlagSet);
17485                        }
17486                    }
17487                } else {
17488                    // Need to wait for post-restore install to apply the grant
17489                    if (DEBUG_BACKUP) {
17490                        Slog.v(TAG, "        - not yet installed; saving for later");
17491                    }
17492                    mSettings.processRestoredPermissionGrantLPr(pkgName, permName,
17493                            isGranted, newFlagSet, userId);
17494                }
17495            } else {
17496                PackageManagerService.reportSettingsProblem(Log.WARN,
17497                        "Unknown element under <" + TAG_PERMISSION_BACKUP + ">: " + tagName);
17498                XmlUtils.skipCurrentTag(parser);
17499            }
17500        }
17501
17502        scheduleWriteSettingsLocked();
17503        mSettings.writeRuntimePermissionsForUserLPr(userId, false);
17504    }
17505
17506    @Override
17507    public void addCrossProfileIntentFilter(IntentFilter intentFilter, String ownerPackage,
17508            int sourceUserId, int targetUserId, int flags) {
17509        mContext.enforceCallingOrSelfPermission(
17510                        android.Manifest.permission.INTERACT_ACROSS_USERS_FULL, null);
17511        int callingUid = Binder.getCallingUid();
17512        enforceOwnerRights(ownerPackage, callingUid);
17513        enforceShellRestriction(UserManager.DISALLOW_DEBUGGING_FEATURES, callingUid, sourceUserId);
17514        if (intentFilter.countActions() == 0) {
17515            Slog.w(TAG, "Cannot set a crossProfile intent filter with no filter actions");
17516            return;
17517        }
17518        synchronized (mPackages) {
17519            CrossProfileIntentFilter newFilter = new CrossProfileIntentFilter(intentFilter,
17520                    ownerPackage, targetUserId, flags);
17521            CrossProfileIntentResolver resolver =
17522                    mSettings.editCrossProfileIntentResolverLPw(sourceUserId);
17523            ArrayList<CrossProfileIntentFilter> existing = resolver.findFilters(intentFilter);
17524            // We have all those whose filter is equal. Now checking if the rest is equal as well.
17525            if (existing != null) {
17526                int size = existing.size();
17527                for (int i = 0; i < size; i++) {
17528                    if (newFilter.equalsIgnoreFilter(existing.get(i))) {
17529                        return;
17530                    }
17531                }
17532            }
17533            resolver.addFilter(newFilter);
17534            scheduleWritePackageRestrictionsLocked(sourceUserId);
17535        }
17536    }
17537
17538    @Override
17539    public void clearCrossProfileIntentFilters(int sourceUserId, String ownerPackage) {
17540        mContext.enforceCallingOrSelfPermission(
17541                        android.Manifest.permission.INTERACT_ACROSS_USERS_FULL, null);
17542        int callingUid = Binder.getCallingUid();
17543        enforceOwnerRights(ownerPackage, callingUid);
17544        enforceShellRestriction(UserManager.DISALLOW_DEBUGGING_FEATURES, callingUid, sourceUserId);
17545        synchronized (mPackages) {
17546            CrossProfileIntentResolver resolver =
17547                    mSettings.editCrossProfileIntentResolverLPw(sourceUserId);
17548            ArraySet<CrossProfileIntentFilter> set =
17549                    new ArraySet<CrossProfileIntentFilter>(resolver.filterSet());
17550            for (CrossProfileIntentFilter filter : set) {
17551                if (filter.getOwnerPackage().equals(ownerPackage)) {
17552                    resolver.removeFilter(filter);
17553                }
17554            }
17555            scheduleWritePackageRestrictionsLocked(sourceUserId);
17556        }
17557    }
17558
17559    // Enforcing that callingUid is owning pkg on userId
17560    private void enforceOwnerRights(String pkg, int callingUid) {
17561        // The system owns everything.
17562        if (UserHandle.getAppId(callingUid) == Process.SYSTEM_UID) {
17563            return;
17564        }
17565        int callingUserId = UserHandle.getUserId(callingUid);
17566        PackageInfo pi = getPackageInfo(pkg, 0, callingUserId);
17567        if (pi == null) {
17568            throw new IllegalArgumentException("Unknown package " + pkg + " on user "
17569                    + callingUserId);
17570        }
17571        if (!UserHandle.isSameApp(pi.applicationInfo.uid, callingUid)) {
17572            throw new SecurityException("Calling uid " + callingUid
17573                    + " does not own package " + pkg);
17574        }
17575    }
17576
17577    @Override
17578    public ComponentName getHomeActivities(List<ResolveInfo> allHomeCandidates) {
17579        return getHomeActivitiesAsUser(allHomeCandidates, UserHandle.getCallingUserId());
17580    }
17581
17582    private Intent getHomeIntent() {
17583        Intent intent = new Intent(Intent.ACTION_MAIN);
17584        intent.addCategory(Intent.CATEGORY_HOME);
17585        return intent;
17586    }
17587
17588    private IntentFilter getHomeFilter() {
17589        IntentFilter filter = new IntentFilter(Intent.ACTION_MAIN);
17590        filter.addCategory(Intent.CATEGORY_HOME);
17591        filter.addCategory(Intent.CATEGORY_DEFAULT);
17592        return filter;
17593    }
17594
17595    ComponentName getHomeActivitiesAsUser(List<ResolveInfo> allHomeCandidates,
17596            int userId) {
17597        Intent intent  = getHomeIntent();
17598        List<ResolveInfo> list = queryIntentActivitiesInternal(intent, null,
17599                PackageManager.GET_META_DATA, userId);
17600        ResolveInfo preferred = findPreferredActivity(intent, null, 0, list, 0,
17601                true, false, false, userId);
17602
17603        allHomeCandidates.clear();
17604        if (list != null) {
17605            for (ResolveInfo ri : list) {
17606                allHomeCandidates.add(ri);
17607            }
17608        }
17609        return (preferred == null || preferred.activityInfo == null)
17610                ? null
17611                : new ComponentName(preferred.activityInfo.packageName,
17612                        preferred.activityInfo.name);
17613    }
17614
17615    @Override
17616    public void setHomeActivity(ComponentName comp, int userId) {
17617        ArrayList<ResolveInfo> homeActivities = new ArrayList<>();
17618        getHomeActivitiesAsUser(homeActivities, userId);
17619
17620        boolean found = false;
17621
17622        final int size = homeActivities.size();
17623        final ComponentName[] set = new ComponentName[size];
17624        for (int i = 0; i < size; i++) {
17625            final ResolveInfo candidate = homeActivities.get(i);
17626            final ActivityInfo info = candidate.activityInfo;
17627            final ComponentName activityName = new ComponentName(info.packageName, info.name);
17628            set[i] = activityName;
17629            if (!found && activityName.equals(comp)) {
17630                found = true;
17631            }
17632        }
17633        if (!found) {
17634            throw new IllegalArgumentException("Component " + comp + " cannot be home on user "
17635                    + userId);
17636        }
17637        replacePreferredActivity(getHomeFilter(), IntentFilter.MATCH_CATEGORY_EMPTY,
17638                set, comp, userId);
17639    }
17640
17641    private @Nullable String getSetupWizardPackageName() {
17642        final Intent intent = new Intent(Intent.ACTION_MAIN);
17643        intent.addCategory(Intent.CATEGORY_SETUP_WIZARD);
17644
17645        final List<ResolveInfo> matches = queryIntentActivitiesInternal(intent, null,
17646                MATCH_SYSTEM_ONLY | MATCH_DIRECT_BOOT_AWARE | MATCH_DIRECT_BOOT_UNAWARE
17647                        | MATCH_DISABLED_COMPONENTS,
17648                UserHandle.myUserId());
17649        if (matches.size() == 1) {
17650            return matches.get(0).getComponentInfo().packageName;
17651        } else {
17652            Slog.e(TAG, "There should probably be exactly one setup wizard; found " + matches.size()
17653                    + ": matches=" + matches);
17654            return null;
17655        }
17656    }
17657
17658    @Override
17659    public void setApplicationEnabledSetting(String appPackageName,
17660            int newState, int flags, int userId, String callingPackage) {
17661        if (!sUserManager.exists(userId)) return;
17662        if (callingPackage == null) {
17663            callingPackage = Integer.toString(Binder.getCallingUid());
17664        }
17665        setEnabledSetting(appPackageName, null, newState, flags, userId, callingPackage);
17666    }
17667
17668    @Override
17669    public void setComponentEnabledSetting(ComponentName componentName,
17670            int newState, int flags, int userId) {
17671        if (!sUserManager.exists(userId)) return;
17672        setEnabledSetting(componentName.getPackageName(),
17673                componentName.getClassName(), newState, flags, userId, null);
17674    }
17675
17676    private void setEnabledSetting(final String packageName, String className, int newState,
17677            final int flags, int userId, String callingPackage) {
17678        if (!(newState == COMPONENT_ENABLED_STATE_DEFAULT
17679              || newState == COMPONENT_ENABLED_STATE_ENABLED
17680              || newState == COMPONENT_ENABLED_STATE_DISABLED
17681              || newState == COMPONENT_ENABLED_STATE_DISABLED_USER
17682              || newState == COMPONENT_ENABLED_STATE_DISABLED_UNTIL_USED)) {
17683            throw new IllegalArgumentException("Invalid new component state: "
17684                    + newState);
17685        }
17686        PackageSetting pkgSetting;
17687        final int uid = Binder.getCallingUid();
17688        final int permission;
17689        if (uid == Process.SYSTEM_UID) {
17690            permission = PackageManager.PERMISSION_GRANTED;
17691        } else {
17692            permission = mContext.checkCallingOrSelfPermission(
17693                    android.Manifest.permission.CHANGE_COMPONENT_ENABLED_STATE);
17694        }
17695        enforceCrossUserPermission(uid, userId,
17696                false /* requireFullPermission */, true /* checkShell */, "set enabled");
17697        final boolean allowedByPermission = (permission == PackageManager.PERMISSION_GRANTED);
17698        boolean sendNow = false;
17699        boolean isApp = (className == null);
17700        String componentName = isApp ? packageName : className;
17701        int packageUid = -1;
17702        ArrayList<String> components;
17703
17704        // writer
17705        synchronized (mPackages) {
17706            pkgSetting = mSettings.mPackages.get(packageName);
17707            if (pkgSetting == null) {
17708                if (className == null) {
17709                    throw new IllegalArgumentException("Unknown package: " + packageName);
17710                }
17711                throw new IllegalArgumentException(
17712                        "Unknown component: " + packageName + "/" + className);
17713            }
17714        }
17715
17716        // Limit who can change which apps
17717        if (!UserHandle.isSameApp(uid, pkgSetting.appId)) {
17718            // Don't allow apps that don't have permission to modify other apps
17719            if (!allowedByPermission) {
17720                throw new SecurityException(
17721                        "Permission Denial: attempt to change component state from pid="
17722                        + Binder.getCallingPid()
17723                        + ", uid=" + uid + ", package uid=" + pkgSetting.appId);
17724            }
17725            // Don't allow changing profile and device owners.
17726            if (mProtectedPackages.canPackageStateBeChanged(userId, packageName)) {
17727                throw new SecurityException("Cannot disable a device owner or a profile owner");
17728            }
17729        }
17730
17731        synchronized (mPackages) {
17732            if (uid == Process.SHELL_UID) {
17733                // Shell can only change whole packages between ENABLED and DISABLED_USER states
17734                int oldState = pkgSetting.getEnabled(userId);
17735                if (className == null
17736                    &&
17737                    (oldState == COMPONENT_ENABLED_STATE_DISABLED_USER
17738                     || oldState == COMPONENT_ENABLED_STATE_DEFAULT
17739                     || oldState == COMPONENT_ENABLED_STATE_ENABLED)
17740                    &&
17741                    (newState == COMPONENT_ENABLED_STATE_DISABLED_USER
17742                     || newState == COMPONENT_ENABLED_STATE_DEFAULT
17743                     || newState == COMPONENT_ENABLED_STATE_ENABLED)) {
17744                    // ok
17745                } else {
17746                    throw new SecurityException(
17747                            "Shell cannot change component state for " + packageName + "/"
17748                            + className + " to " + newState);
17749                }
17750            }
17751            if (className == null) {
17752                // We're dealing with an application/package level state change
17753                if (pkgSetting.getEnabled(userId) == newState) {
17754                    // Nothing to do
17755                    return;
17756                }
17757                if (newState == PackageManager.COMPONENT_ENABLED_STATE_DEFAULT
17758                    || newState == PackageManager.COMPONENT_ENABLED_STATE_ENABLED) {
17759                    // Don't care about who enables an app.
17760                    callingPackage = null;
17761                }
17762                pkgSetting.setEnabled(newState, userId, callingPackage);
17763                // pkgSetting.pkg.mSetEnabled = newState;
17764            } else {
17765                // We're dealing with a component level state change
17766                // First, verify that this is a valid class name.
17767                PackageParser.Package pkg = pkgSetting.pkg;
17768                if (pkg == null || !pkg.hasComponentClassName(className)) {
17769                    if (pkg != null &&
17770                            pkg.applicationInfo.targetSdkVersion >=
17771                                    Build.VERSION_CODES.JELLY_BEAN) {
17772                        throw new IllegalArgumentException("Component class " + className
17773                                + " does not exist in " + packageName);
17774                    } else {
17775                        Slog.w(TAG, "Failed setComponentEnabledSetting: component class "
17776                                + className + " does not exist in " + packageName);
17777                    }
17778                }
17779                switch (newState) {
17780                case COMPONENT_ENABLED_STATE_ENABLED:
17781                    if (!pkgSetting.enableComponentLPw(className, userId)) {
17782                        return;
17783                    }
17784                    break;
17785                case COMPONENT_ENABLED_STATE_DISABLED:
17786                    if (!pkgSetting.disableComponentLPw(className, userId)) {
17787                        return;
17788                    }
17789                    break;
17790                case COMPONENT_ENABLED_STATE_DEFAULT:
17791                    if (!pkgSetting.restoreComponentLPw(className, userId)) {
17792                        return;
17793                    }
17794                    break;
17795                default:
17796                    Slog.e(TAG, "Invalid new component state: " + newState);
17797                    return;
17798                }
17799            }
17800            scheduleWritePackageRestrictionsLocked(userId);
17801            components = mPendingBroadcasts.get(userId, packageName);
17802            final boolean newPackage = components == null;
17803            if (newPackage) {
17804                components = new ArrayList<String>();
17805            }
17806            if (!components.contains(componentName)) {
17807                components.add(componentName);
17808            }
17809            if ((flags&PackageManager.DONT_KILL_APP) == 0) {
17810                sendNow = true;
17811                // Purge entry from pending broadcast list if another one exists already
17812                // since we are sending one right away.
17813                mPendingBroadcasts.remove(userId, packageName);
17814            } else {
17815                if (newPackage) {
17816                    mPendingBroadcasts.put(userId, packageName, components);
17817                }
17818                if (!mHandler.hasMessages(SEND_PENDING_BROADCAST)) {
17819                    // Schedule a message
17820                    mHandler.sendEmptyMessageDelayed(SEND_PENDING_BROADCAST, BROADCAST_DELAY);
17821                }
17822            }
17823        }
17824
17825        long callingId = Binder.clearCallingIdentity();
17826        try {
17827            if (sendNow) {
17828                packageUid = UserHandle.getUid(userId, pkgSetting.appId);
17829                sendPackageChangedBroadcast(packageName,
17830                        (flags&PackageManager.DONT_KILL_APP) != 0, components, packageUid);
17831            }
17832        } finally {
17833            Binder.restoreCallingIdentity(callingId);
17834        }
17835    }
17836
17837    @Override
17838    public void flushPackageRestrictionsAsUser(int userId) {
17839        if (!sUserManager.exists(userId)) {
17840            return;
17841        }
17842        enforceCrossUserPermission(Binder.getCallingUid(), userId, false /* requireFullPermission*/,
17843                false /* checkShell */, "flushPackageRestrictions");
17844        synchronized (mPackages) {
17845            mSettings.writePackageRestrictionsLPr(userId);
17846            mDirtyUsers.remove(userId);
17847            if (mDirtyUsers.isEmpty()) {
17848                mHandler.removeMessages(WRITE_PACKAGE_RESTRICTIONS);
17849            }
17850        }
17851    }
17852
17853    private void sendPackageChangedBroadcast(String packageName,
17854            boolean killFlag, ArrayList<String> componentNames, int packageUid) {
17855        if (DEBUG_INSTALL)
17856            Log.v(TAG, "Sending package changed: package=" + packageName + " components="
17857                    + componentNames);
17858        Bundle extras = new Bundle(4);
17859        extras.putString(Intent.EXTRA_CHANGED_COMPONENT_NAME, componentNames.get(0));
17860        String nameList[] = new String[componentNames.size()];
17861        componentNames.toArray(nameList);
17862        extras.putStringArray(Intent.EXTRA_CHANGED_COMPONENT_NAME_LIST, nameList);
17863        extras.putBoolean(Intent.EXTRA_DONT_KILL_APP, killFlag);
17864        extras.putInt(Intent.EXTRA_UID, packageUid);
17865        // If this is not reporting a change of the overall package, then only send it
17866        // to registered receivers.  We don't want to launch a swath of apps for every
17867        // little component state change.
17868        final int flags = !componentNames.contains(packageName)
17869                ? Intent.FLAG_RECEIVER_REGISTERED_ONLY : 0;
17870        sendPackageBroadcast(Intent.ACTION_PACKAGE_CHANGED,  packageName, extras, flags, null, null,
17871                new int[] {UserHandle.getUserId(packageUid)});
17872    }
17873
17874    @Override
17875    public void setPackageStoppedState(String packageName, boolean stopped, int userId) {
17876        if (!sUserManager.exists(userId)) return;
17877        final int uid = Binder.getCallingUid();
17878        final int permission = mContext.checkCallingOrSelfPermission(
17879                android.Manifest.permission.CHANGE_COMPONENT_ENABLED_STATE);
17880        final boolean allowedByPermission = (permission == PackageManager.PERMISSION_GRANTED);
17881        enforceCrossUserPermission(uid, userId,
17882                true /* requireFullPermission */, true /* checkShell */, "stop package");
17883        // writer
17884        synchronized (mPackages) {
17885            if (mSettings.setPackageStoppedStateLPw(this, packageName, stopped,
17886                    allowedByPermission, uid, userId)) {
17887                scheduleWritePackageRestrictionsLocked(userId);
17888            }
17889        }
17890    }
17891
17892    @Override
17893    public String getInstallerPackageName(String packageName) {
17894        // reader
17895        synchronized (mPackages) {
17896            return mSettings.getInstallerPackageNameLPr(packageName);
17897        }
17898    }
17899
17900    public boolean isOrphaned(String packageName) {
17901        // reader
17902        synchronized (mPackages) {
17903            return mSettings.isOrphaned(packageName);
17904        }
17905    }
17906
17907    @Override
17908    public int getApplicationEnabledSetting(String packageName, int userId) {
17909        if (!sUserManager.exists(userId)) return COMPONENT_ENABLED_STATE_DISABLED;
17910        int uid = Binder.getCallingUid();
17911        enforceCrossUserPermission(uid, userId,
17912                false /* requireFullPermission */, false /* checkShell */, "get enabled");
17913        // reader
17914        synchronized (mPackages) {
17915            return mSettings.getApplicationEnabledSettingLPr(packageName, userId);
17916        }
17917    }
17918
17919    @Override
17920    public int getComponentEnabledSetting(ComponentName componentName, int userId) {
17921        if (!sUserManager.exists(userId)) return COMPONENT_ENABLED_STATE_DISABLED;
17922        int uid = Binder.getCallingUid();
17923        enforceCrossUserPermission(uid, userId,
17924                false /* requireFullPermission */, false /* checkShell */, "get component enabled");
17925        // reader
17926        synchronized (mPackages) {
17927            return mSettings.getComponentEnabledSettingLPr(componentName, userId);
17928        }
17929    }
17930
17931    @Override
17932    public void enterSafeMode() {
17933        enforceSystemOrRoot("Only the system can request entering safe mode");
17934
17935        if (!mSystemReady) {
17936            mSafeMode = true;
17937        }
17938    }
17939
17940    @Override
17941    public void systemReady() {
17942        mSystemReady = true;
17943
17944        // Read the compatibilty setting when the system is ready.
17945        boolean compatibilityModeEnabled = android.provider.Settings.Global.getInt(
17946                mContext.getContentResolver(),
17947                android.provider.Settings.Global.COMPATIBILITY_MODE, 1) == 1;
17948        PackageParser.setCompatibilityModeEnabled(compatibilityModeEnabled);
17949        if (DEBUG_SETTINGS) {
17950            Log.d(TAG, "compatibility mode:" + compatibilityModeEnabled);
17951        }
17952
17953        int[] grantPermissionsUserIds = EMPTY_INT_ARRAY;
17954
17955        synchronized (mPackages) {
17956            // Verify that all of the preferred activity components actually
17957            // exist.  It is possible for applications to be updated and at
17958            // that point remove a previously declared activity component that
17959            // had been set as a preferred activity.  We try to clean this up
17960            // the next time we encounter that preferred activity, but it is
17961            // possible for the user flow to never be able to return to that
17962            // situation so here we do a sanity check to make sure we haven't
17963            // left any junk around.
17964            ArrayList<PreferredActivity> removed = new ArrayList<PreferredActivity>();
17965            for (int i=0; i<mSettings.mPreferredActivities.size(); i++) {
17966                PreferredIntentResolver pir = mSettings.mPreferredActivities.valueAt(i);
17967                removed.clear();
17968                for (PreferredActivity pa : pir.filterSet()) {
17969                    if (mActivities.mActivities.get(pa.mPref.mComponent) == null) {
17970                        removed.add(pa);
17971                    }
17972                }
17973                if (removed.size() > 0) {
17974                    for (int r=0; r<removed.size(); r++) {
17975                        PreferredActivity pa = removed.get(r);
17976                        Slog.w(TAG, "Removing dangling preferred activity: "
17977                                + pa.mPref.mComponent);
17978                        pir.removeFilter(pa);
17979                    }
17980                    mSettings.writePackageRestrictionsLPr(
17981                            mSettings.mPreferredActivities.keyAt(i));
17982                }
17983            }
17984
17985            for (int userId : UserManagerService.getInstance().getUserIds()) {
17986                if (!mSettings.areDefaultRuntimePermissionsGrantedLPr(userId)) {
17987                    grantPermissionsUserIds = ArrayUtils.appendInt(
17988                            grantPermissionsUserIds, userId);
17989                }
17990            }
17991        }
17992        sUserManager.systemReady();
17993
17994        // If we upgraded grant all default permissions before kicking off.
17995        for (int userId : grantPermissionsUserIds) {
17996            mDefaultPermissionPolicy.grantDefaultPermissions(userId);
17997        }
17998
17999        // Kick off any messages waiting for system ready
18000        if (mPostSystemReadyMessages != null) {
18001            for (Message msg : mPostSystemReadyMessages) {
18002                msg.sendToTarget();
18003            }
18004            mPostSystemReadyMessages = null;
18005        }
18006
18007        // Watch for external volumes that come and go over time
18008        final StorageManager storage = mContext.getSystemService(StorageManager.class);
18009        storage.registerListener(mStorageListener);
18010
18011        mInstallerService.systemReady();
18012        mPackageDexOptimizer.systemReady();
18013
18014        MountServiceInternal mountServiceInternal = LocalServices.getService(
18015                MountServiceInternal.class);
18016        mountServiceInternal.addExternalStoragePolicy(
18017                new MountServiceInternal.ExternalStorageMountPolicy() {
18018            @Override
18019            public int getMountMode(int uid, String packageName) {
18020                if (Process.isIsolated(uid)) {
18021                    return Zygote.MOUNT_EXTERNAL_NONE;
18022                }
18023                if (checkUidPermission(WRITE_MEDIA_STORAGE, uid) == PERMISSION_GRANTED) {
18024                    return Zygote.MOUNT_EXTERNAL_DEFAULT;
18025                }
18026                if (checkUidPermission(READ_EXTERNAL_STORAGE, uid) == PERMISSION_DENIED) {
18027                    return Zygote.MOUNT_EXTERNAL_DEFAULT;
18028                }
18029                if (checkUidPermission(WRITE_EXTERNAL_STORAGE, uid) == PERMISSION_DENIED) {
18030                    return Zygote.MOUNT_EXTERNAL_READ;
18031                }
18032                return Zygote.MOUNT_EXTERNAL_WRITE;
18033            }
18034
18035            @Override
18036            public boolean hasExternalStorage(int uid, String packageName) {
18037                return true;
18038            }
18039        });
18040
18041        // Now that we're mostly running, clean up stale users and apps
18042        reconcileUsers(StorageManager.UUID_PRIVATE_INTERNAL);
18043        reconcileApps(StorageManager.UUID_PRIVATE_INTERNAL);
18044    }
18045
18046    @Override
18047    public boolean isSafeMode() {
18048        return mSafeMode;
18049    }
18050
18051    @Override
18052    public boolean hasSystemUidErrors() {
18053        return mHasSystemUidErrors;
18054    }
18055
18056    static String arrayToString(int[] array) {
18057        StringBuffer buf = new StringBuffer(128);
18058        buf.append('[');
18059        if (array != null) {
18060            for (int i=0; i<array.length; i++) {
18061                if (i > 0) buf.append(", ");
18062                buf.append(array[i]);
18063            }
18064        }
18065        buf.append(']');
18066        return buf.toString();
18067    }
18068
18069    static class DumpState {
18070        public static final int DUMP_LIBS = 1 << 0;
18071        public static final int DUMP_FEATURES = 1 << 1;
18072        public static final int DUMP_ACTIVITY_RESOLVERS = 1 << 2;
18073        public static final int DUMP_SERVICE_RESOLVERS = 1 << 3;
18074        public static final int DUMP_RECEIVER_RESOLVERS = 1 << 4;
18075        public static final int DUMP_CONTENT_RESOLVERS = 1 << 5;
18076        public static final int DUMP_PERMISSIONS = 1 << 6;
18077        public static final int DUMP_PACKAGES = 1 << 7;
18078        public static final int DUMP_SHARED_USERS = 1 << 8;
18079        public static final int DUMP_MESSAGES = 1 << 9;
18080        public static final int DUMP_PROVIDERS = 1 << 10;
18081        public static final int DUMP_VERIFIERS = 1 << 11;
18082        public static final int DUMP_PREFERRED = 1 << 12;
18083        public static final int DUMP_PREFERRED_XML = 1 << 13;
18084        public static final int DUMP_KEYSETS = 1 << 14;
18085        public static final int DUMP_VERSION = 1 << 15;
18086        public static final int DUMP_INSTALLS = 1 << 16;
18087        public static final int DUMP_INTENT_FILTER_VERIFIERS = 1 << 17;
18088        public static final int DUMP_DOMAIN_PREFERRED = 1 << 18;
18089        public static final int DUMP_FROZEN = 1 << 19;
18090        public static final int DUMP_DEXOPT = 1 << 20;
18091
18092        public static final int OPTION_SHOW_FILTERS = 1 << 0;
18093
18094        private int mTypes;
18095
18096        private int mOptions;
18097
18098        private boolean mTitlePrinted;
18099
18100        private SharedUserSetting mSharedUser;
18101
18102        public boolean isDumping(int type) {
18103            if (mTypes == 0 && type != DUMP_PREFERRED_XML) {
18104                return true;
18105            }
18106
18107            return (mTypes & type) != 0;
18108        }
18109
18110        public void setDump(int type) {
18111            mTypes |= type;
18112        }
18113
18114        public boolean isOptionEnabled(int option) {
18115            return (mOptions & option) != 0;
18116        }
18117
18118        public void setOptionEnabled(int option) {
18119            mOptions |= option;
18120        }
18121
18122        public boolean onTitlePrinted() {
18123            final boolean printed = mTitlePrinted;
18124            mTitlePrinted = true;
18125            return printed;
18126        }
18127
18128        public boolean getTitlePrinted() {
18129            return mTitlePrinted;
18130        }
18131
18132        public void setTitlePrinted(boolean enabled) {
18133            mTitlePrinted = enabled;
18134        }
18135
18136        public SharedUserSetting getSharedUser() {
18137            return mSharedUser;
18138        }
18139
18140        public void setSharedUser(SharedUserSetting user) {
18141            mSharedUser = user;
18142        }
18143    }
18144
18145    @Override
18146    public void onShellCommand(FileDescriptor in, FileDescriptor out,
18147            FileDescriptor err, String[] args, ResultReceiver resultReceiver) {
18148        (new PackageManagerShellCommand(this)).exec(
18149                this, in, out, err, args, resultReceiver);
18150    }
18151
18152    @Override
18153    protected void dump(FileDescriptor fd, PrintWriter pw, String[] args) {
18154        if (mContext.checkCallingOrSelfPermission(android.Manifest.permission.DUMP)
18155                != PackageManager.PERMISSION_GRANTED) {
18156            pw.println("Permission Denial: can't dump ActivityManager from from pid="
18157                    + Binder.getCallingPid()
18158                    + ", uid=" + Binder.getCallingUid()
18159                    + " without permission "
18160                    + android.Manifest.permission.DUMP);
18161            return;
18162        }
18163
18164        DumpState dumpState = new DumpState();
18165        boolean fullPreferred = false;
18166        boolean checkin = false;
18167
18168        String packageName = null;
18169        ArraySet<String> permissionNames = null;
18170
18171        int opti = 0;
18172        while (opti < args.length) {
18173            String opt = args[opti];
18174            if (opt == null || opt.length() <= 0 || opt.charAt(0) != '-') {
18175                break;
18176            }
18177            opti++;
18178
18179            if ("-a".equals(opt)) {
18180                // Right now we only know how to print all.
18181            } else if ("-h".equals(opt)) {
18182                pw.println("Package manager dump options:");
18183                pw.println("  [-h] [-f] [--checkin] [cmd] ...");
18184                pw.println("    --checkin: dump for a checkin");
18185                pw.println("    -f: print details of intent filters");
18186                pw.println("    -h: print this help");
18187                pw.println("  cmd may be one of:");
18188                pw.println("    l[ibraries]: list known shared libraries");
18189                pw.println("    f[eatures]: list device features");
18190                pw.println("    k[eysets]: print known keysets");
18191                pw.println("    r[esolvers] [activity|service|receiver|content]: dump intent resolvers");
18192                pw.println("    perm[issions]: dump permissions");
18193                pw.println("    permission [name ...]: dump declaration and use of given permission");
18194                pw.println("    pref[erred]: print preferred package settings");
18195                pw.println("    preferred-xml [--full]: print preferred package settings as xml");
18196                pw.println("    prov[iders]: dump content providers");
18197                pw.println("    p[ackages]: dump installed packages");
18198                pw.println("    s[hared-users]: dump shared user IDs");
18199                pw.println("    m[essages]: print collected runtime messages");
18200                pw.println("    v[erifiers]: print package verifier info");
18201                pw.println("    d[omain-preferred-apps]: print domains preferred apps");
18202                pw.println("    i[ntent-filter-verifiers]|ifv: print intent filter verifier info");
18203                pw.println("    version: print database version info");
18204                pw.println("    write: write current settings now");
18205                pw.println("    installs: details about install sessions");
18206                pw.println("    check-permission <permission> <package> [<user>]: does pkg hold perm?");
18207                pw.println("    dexopt: dump dexopt state");
18208                pw.println("    <package.name>: info about given package");
18209                return;
18210            } else if ("--checkin".equals(opt)) {
18211                checkin = true;
18212            } else if ("-f".equals(opt)) {
18213                dumpState.setOptionEnabled(DumpState.OPTION_SHOW_FILTERS);
18214            } else {
18215                pw.println("Unknown argument: " + opt + "; use -h for help");
18216            }
18217        }
18218
18219        // Is the caller requesting to dump a particular piece of data?
18220        if (opti < args.length) {
18221            String cmd = args[opti];
18222            opti++;
18223            // Is this a package name?
18224            if ("android".equals(cmd) || cmd.contains(".")) {
18225                packageName = cmd;
18226                // When dumping a single package, we always dump all of its
18227                // filter information since the amount of data will be reasonable.
18228                dumpState.setOptionEnabled(DumpState.OPTION_SHOW_FILTERS);
18229            } else if ("check-permission".equals(cmd)) {
18230                if (opti >= args.length) {
18231                    pw.println("Error: check-permission missing permission argument");
18232                    return;
18233                }
18234                String perm = args[opti];
18235                opti++;
18236                if (opti >= args.length) {
18237                    pw.println("Error: check-permission missing package argument");
18238                    return;
18239                }
18240                String pkg = args[opti];
18241                opti++;
18242                int user = UserHandle.getUserId(Binder.getCallingUid());
18243                if (opti < args.length) {
18244                    try {
18245                        user = Integer.parseInt(args[opti]);
18246                    } catch (NumberFormatException e) {
18247                        pw.println("Error: check-permission user argument is not a number: "
18248                                + args[opti]);
18249                        return;
18250                    }
18251                }
18252                pw.println(checkPermission(perm, pkg, user));
18253                return;
18254            } else if ("l".equals(cmd) || "libraries".equals(cmd)) {
18255                dumpState.setDump(DumpState.DUMP_LIBS);
18256            } else if ("f".equals(cmd) || "features".equals(cmd)) {
18257                dumpState.setDump(DumpState.DUMP_FEATURES);
18258            } else if ("r".equals(cmd) || "resolvers".equals(cmd)) {
18259                if (opti >= args.length) {
18260                    dumpState.setDump(DumpState.DUMP_ACTIVITY_RESOLVERS
18261                            | DumpState.DUMP_SERVICE_RESOLVERS
18262                            | DumpState.DUMP_RECEIVER_RESOLVERS
18263                            | DumpState.DUMP_CONTENT_RESOLVERS);
18264                } else {
18265                    while (opti < args.length) {
18266                        String name = args[opti];
18267                        if ("a".equals(name) || "activity".equals(name)) {
18268                            dumpState.setDump(DumpState.DUMP_ACTIVITY_RESOLVERS);
18269                        } else if ("s".equals(name) || "service".equals(name)) {
18270                            dumpState.setDump(DumpState.DUMP_SERVICE_RESOLVERS);
18271                        } else if ("r".equals(name) || "receiver".equals(name)) {
18272                            dumpState.setDump(DumpState.DUMP_RECEIVER_RESOLVERS);
18273                        } else if ("c".equals(name) || "content".equals(name)) {
18274                            dumpState.setDump(DumpState.DUMP_CONTENT_RESOLVERS);
18275                        } else {
18276                            pw.println("Error: unknown resolver table type: " + name);
18277                            return;
18278                        }
18279                        opti++;
18280                    }
18281                }
18282            } else if ("perm".equals(cmd) || "permissions".equals(cmd)) {
18283                dumpState.setDump(DumpState.DUMP_PERMISSIONS);
18284            } else if ("permission".equals(cmd)) {
18285                if (opti >= args.length) {
18286                    pw.println("Error: permission requires permission name");
18287                    return;
18288                }
18289                permissionNames = new ArraySet<>();
18290                while (opti < args.length) {
18291                    permissionNames.add(args[opti]);
18292                    opti++;
18293                }
18294                dumpState.setDump(DumpState.DUMP_PERMISSIONS
18295                        | DumpState.DUMP_PACKAGES | DumpState.DUMP_SHARED_USERS);
18296            } else if ("pref".equals(cmd) || "preferred".equals(cmd)) {
18297                dumpState.setDump(DumpState.DUMP_PREFERRED);
18298            } else if ("preferred-xml".equals(cmd)) {
18299                dumpState.setDump(DumpState.DUMP_PREFERRED_XML);
18300                if (opti < args.length && "--full".equals(args[opti])) {
18301                    fullPreferred = true;
18302                    opti++;
18303                }
18304            } else if ("d".equals(cmd) || "domain-preferred-apps".equals(cmd)) {
18305                dumpState.setDump(DumpState.DUMP_DOMAIN_PREFERRED);
18306            } else if ("p".equals(cmd) || "packages".equals(cmd)) {
18307                dumpState.setDump(DumpState.DUMP_PACKAGES);
18308            } else if ("s".equals(cmd) || "shared-users".equals(cmd)) {
18309                dumpState.setDump(DumpState.DUMP_SHARED_USERS);
18310            } else if ("prov".equals(cmd) || "providers".equals(cmd)) {
18311                dumpState.setDump(DumpState.DUMP_PROVIDERS);
18312            } else if ("m".equals(cmd) || "messages".equals(cmd)) {
18313                dumpState.setDump(DumpState.DUMP_MESSAGES);
18314            } else if ("v".equals(cmd) || "verifiers".equals(cmd)) {
18315                dumpState.setDump(DumpState.DUMP_VERIFIERS);
18316            } else if ("i".equals(cmd) || "ifv".equals(cmd)
18317                    || "intent-filter-verifiers".equals(cmd)) {
18318                dumpState.setDump(DumpState.DUMP_INTENT_FILTER_VERIFIERS);
18319            } else if ("version".equals(cmd)) {
18320                dumpState.setDump(DumpState.DUMP_VERSION);
18321            } else if ("k".equals(cmd) || "keysets".equals(cmd)) {
18322                dumpState.setDump(DumpState.DUMP_KEYSETS);
18323            } else if ("installs".equals(cmd)) {
18324                dumpState.setDump(DumpState.DUMP_INSTALLS);
18325            } else if ("frozen".equals(cmd)) {
18326                dumpState.setDump(DumpState.DUMP_FROZEN);
18327            } else if ("dexopt".equals(cmd)) {
18328                dumpState.setDump(DumpState.DUMP_DEXOPT);
18329            } else if ("write".equals(cmd)) {
18330                synchronized (mPackages) {
18331                    mSettings.writeLPr();
18332                    pw.println("Settings written.");
18333                    return;
18334                }
18335            }
18336        }
18337
18338        if (checkin) {
18339            pw.println("vers,1");
18340        }
18341
18342        // reader
18343        synchronized (mPackages) {
18344            if (dumpState.isDumping(DumpState.DUMP_VERSION) && packageName == null) {
18345                if (!checkin) {
18346                    if (dumpState.onTitlePrinted())
18347                        pw.println();
18348                    pw.println("Database versions:");
18349                    mSettings.dumpVersionLPr(new IndentingPrintWriter(pw, "  "));
18350                }
18351            }
18352
18353            if (dumpState.isDumping(DumpState.DUMP_VERIFIERS) && packageName == null) {
18354                if (!checkin) {
18355                    if (dumpState.onTitlePrinted())
18356                        pw.println();
18357                    pw.println("Verifiers:");
18358                    pw.print("  Required: ");
18359                    pw.print(mRequiredVerifierPackage);
18360                    pw.print(" (uid=");
18361                    pw.print(getPackageUid(mRequiredVerifierPackage, MATCH_DEBUG_TRIAGED_MISSING,
18362                            UserHandle.USER_SYSTEM));
18363                    pw.println(")");
18364                } else if (mRequiredVerifierPackage != null) {
18365                    pw.print("vrfy,"); pw.print(mRequiredVerifierPackage);
18366                    pw.print(",");
18367                    pw.println(getPackageUid(mRequiredVerifierPackage, MATCH_DEBUG_TRIAGED_MISSING,
18368                            UserHandle.USER_SYSTEM));
18369                }
18370            }
18371
18372            if (dumpState.isDumping(DumpState.DUMP_INTENT_FILTER_VERIFIERS) &&
18373                    packageName == null) {
18374                if (mIntentFilterVerifierComponent != null) {
18375                    String verifierPackageName = mIntentFilterVerifierComponent.getPackageName();
18376                    if (!checkin) {
18377                        if (dumpState.onTitlePrinted())
18378                            pw.println();
18379                        pw.println("Intent Filter Verifier:");
18380                        pw.print("  Using: ");
18381                        pw.print(verifierPackageName);
18382                        pw.print(" (uid=");
18383                        pw.print(getPackageUid(verifierPackageName, MATCH_DEBUG_TRIAGED_MISSING,
18384                                UserHandle.USER_SYSTEM));
18385                        pw.println(")");
18386                    } else if (verifierPackageName != null) {
18387                        pw.print("ifv,"); pw.print(verifierPackageName);
18388                        pw.print(",");
18389                        pw.println(getPackageUid(verifierPackageName, MATCH_DEBUG_TRIAGED_MISSING,
18390                                UserHandle.USER_SYSTEM));
18391                    }
18392                } else {
18393                    pw.println();
18394                    pw.println("No Intent Filter Verifier available!");
18395                }
18396            }
18397
18398            if (dumpState.isDumping(DumpState.DUMP_LIBS) && packageName == null) {
18399                boolean printedHeader = false;
18400                final Iterator<String> it = mSharedLibraries.keySet().iterator();
18401                while (it.hasNext()) {
18402                    String name = it.next();
18403                    SharedLibraryEntry ent = mSharedLibraries.get(name);
18404                    if (!checkin) {
18405                        if (!printedHeader) {
18406                            if (dumpState.onTitlePrinted())
18407                                pw.println();
18408                            pw.println("Libraries:");
18409                            printedHeader = true;
18410                        }
18411                        pw.print("  ");
18412                    } else {
18413                        pw.print("lib,");
18414                    }
18415                    pw.print(name);
18416                    if (!checkin) {
18417                        pw.print(" -> ");
18418                    }
18419                    if (ent.path != null) {
18420                        if (!checkin) {
18421                            pw.print("(jar) ");
18422                            pw.print(ent.path);
18423                        } else {
18424                            pw.print(",jar,");
18425                            pw.print(ent.path);
18426                        }
18427                    } else {
18428                        if (!checkin) {
18429                            pw.print("(apk) ");
18430                            pw.print(ent.apk);
18431                        } else {
18432                            pw.print(",apk,");
18433                            pw.print(ent.apk);
18434                        }
18435                    }
18436                    pw.println();
18437                }
18438            }
18439
18440            if (dumpState.isDumping(DumpState.DUMP_FEATURES) && packageName == null) {
18441                if (dumpState.onTitlePrinted())
18442                    pw.println();
18443                if (!checkin) {
18444                    pw.println("Features:");
18445                }
18446
18447                for (FeatureInfo feat : mAvailableFeatures.values()) {
18448                    if (checkin) {
18449                        pw.print("feat,");
18450                        pw.print(feat.name);
18451                        pw.print(",");
18452                        pw.println(feat.version);
18453                    } else {
18454                        pw.print("  ");
18455                        pw.print(feat.name);
18456                        if (feat.version > 0) {
18457                            pw.print(" version=");
18458                            pw.print(feat.version);
18459                        }
18460                        pw.println();
18461                    }
18462                }
18463            }
18464
18465            if (!checkin && dumpState.isDumping(DumpState.DUMP_ACTIVITY_RESOLVERS)) {
18466                if (mActivities.dump(pw, dumpState.getTitlePrinted() ? "\nActivity Resolver Table:"
18467                        : "Activity Resolver Table:", "  ", packageName,
18468                        dumpState.isOptionEnabled(DumpState.OPTION_SHOW_FILTERS), true)) {
18469                    dumpState.setTitlePrinted(true);
18470                }
18471            }
18472            if (!checkin && dumpState.isDumping(DumpState.DUMP_RECEIVER_RESOLVERS)) {
18473                if (mReceivers.dump(pw, dumpState.getTitlePrinted() ? "\nReceiver Resolver Table:"
18474                        : "Receiver Resolver Table:", "  ", packageName,
18475                        dumpState.isOptionEnabled(DumpState.OPTION_SHOW_FILTERS), true)) {
18476                    dumpState.setTitlePrinted(true);
18477                }
18478            }
18479            if (!checkin && dumpState.isDumping(DumpState.DUMP_SERVICE_RESOLVERS)) {
18480                if (mServices.dump(pw, dumpState.getTitlePrinted() ? "\nService Resolver Table:"
18481                        : "Service Resolver Table:", "  ", packageName,
18482                        dumpState.isOptionEnabled(DumpState.OPTION_SHOW_FILTERS), true)) {
18483                    dumpState.setTitlePrinted(true);
18484                }
18485            }
18486            if (!checkin && dumpState.isDumping(DumpState.DUMP_CONTENT_RESOLVERS)) {
18487                if (mProviders.dump(pw, dumpState.getTitlePrinted() ? "\nProvider Resolver Table:"
18488                        : "Provider Resolver Table:", "  ", packageName,
18489                        dumpState.isOptionEnabled(DumpState.OPTION_SHOW_FILTERS), true)) {
18490                    dumpState.setTitlePrinted(true);
18491                }
18492            }
18493
18494            if (!checkin && dumpState.isDumping(DumpState.DUMP_PREFERRED)) {
18495                for (int i=0; i<mSettings.mPreferredActivities.size(); i++) {
18496                    PreferredIntentResolver pir = mSettings.mPreferredActivities.valueAt(i);
18497                    int user = mSettings.mPreferredActivities.keyAt(i);
18498                    if (pir.dump(pw,
18499                            dumpState.getTitlePrinted()
18500                                ? "\nPreferred Activities User " + user + ":"
18501                                : "Preferred Activities User " + user + ":", "  ",
18502                            packageName, true, false)) {
18503                        dumpState.setTitlePrinted(true);
18504                    }
18505                }
18506            }
18507
18508            if (!checkin && dumpState.isDumping(DumpState.DUMP_PREFERRED_XML)) {
18509                pw.flush();
18510                FileOutputStream fout = new FileOutputStream(fd);
18511                BufferedOutputStream str = new BufferedOutputStream(fout);
18512                XmlSerializer serializer = new FastXmlSerializer();
18513                try {
18514                    serializer.setOutput(str, StandardCharsets.UTF_8.name());
18515                    serializer.startDocument(null, true);
18516                    serializer.setFeature(
18517                            "http://xmlpull.org/v1/doc/features.html#indent-output", true);
18518                    mSettings.writePreferredActivitiesLPr(serializer, 0, fullPreferred);
18519                    serializer.endDocument();
18520                    serializer.flush();
18521                } catch (IllegalArgumentException e) {
18522                    pw.println("Failed writing: " + e);
18523                } catch (IllegalStateException e) {
18524                    pw.println("Failed writing: " + e);
18525                } catch (IOException e) {
18526                    pw.println("Failed writing: " + e);
18527                }
18528            }
18529
18530            if (!checkin
18531                    && dumpState.isDumping(DumpState.DUMP_DOMAIN_PREFERRED)
18532                    && packageName == null) {
18533                pw.println();
18534                int count = mSettings.mPackages.size();
18535                if (count == 0) {
18536                    pw.println("No applications!");
18537                    pw.println();
18538                } else {
18539                    final String prefix = "  ";
18540                    Collection<PackageSetting> allPackageSettings = mSettings.mPackages.values();
18541                    if (allPackageSettings.size() == 0) {
18542                        pw.println("No domain preferred apps!");
18543                        pw.println();
18544                    } else {
18545                        pw.println("App verification status:");
18546                        pw.println();
18547                        count = 0;
18548                        for (PackageSetting ps : allPackageSettings) {
18549                            IntentFilterVerificationInfo ivi = ps.getIntentFilterVerificationInfo();
18550                            if (ivi == null || ivi.getPackageName() == null) continue;
18551                            pw.println(prefix + "Package: " + ivi.getPackageName());
18552                            pw.println(prefix + "Domains: " + ivi.getDomainsString());
18553                            pw.println(prefix + "Status:  " + ivi.getStatusString());
18554                            pw.println();
18555                            count++;
18556                        }
18557                        if (count == 0) {
18558                            pw.println(prefix + "No app verification established.");
18559                            pw.println();
18560                        }
18561                        for (int userId : sUserManager.getUserIds()) {
18562                            pw.println("App linkages for user " + userId + ":");
18563                            pw.println();
18564                            count = 0;
18565                            for (PackageSetting ps : allPackageSettings) {
18566                                final long status = ps.getDomainVerificationStatusForUser(userId);
18567                                if (status >> 32 == INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_UNDEFINED) {
18568                                    continue;
18569                                }
18570                                pw.println(prefix + "Package: " + ps.name);
18571                                pw.println(prefix + "Domains: " + dumpDomainString(ps.name));
18572                                String statusStr = IntentFilterVerificationInfo.
18573                                        getStatusStringFromValue(status);
18574                                pw.println(prefix + "Status:  " + statusStr);
18575                                pw.println();
18576                                count++;
18577                            }
18578                            if (count == 0) {
18579                                pw.println(prefix + "No configured app linkages.");
18580                                pw.println();
18581                            }
18582                        }
18583                    }
18584                }
18585            }
18586
18587            if (!checkin && dumpState.isDumping(DumpState.DUMP_PERMISSIONS)) {
18588                mSettings.dumpPermissionsLPr(pw, packageName, permissionNames, dumpState);
18589                if (packageName == null && permissionNames == null) {
18590                    for (int iperm=0; iperm<mAppOpPermissionPackages.size(); iperm++) {
18591                        if (iperm == 0) {
18592                            if (dumpState.onTitlePrinted())
18593                                pw.println();
18594                            pw.println("AppOp Permissions:");
18595                        }
18596                        pw.print("  AppOp Permission ");
18597                        pw.print(mAppOpPermissionPackages.keyAt(iperm));
18598                        pw.println(":");
18599                        ArraySet<String> pkgs = mAppOpPermissionPackages.valueAt(iperm);
18600                        for (int ipkg=0; ipkg<pkgs.size(); ipkg++) {
18601                            pw.print("    "); pw.println(pkgs.valueAt(ipkg));
18602                        }
18603                    }
18604                }
18605            }
18606
18607            if (!checkin && dumpState.isDumping(DumpState.DUMP_PROVIDERS)) {
18608                boolean printedSomething = false;
18609                for (PackageParser.Provider p : mProviders.mProviders.values()) {
18610                    if (packageName != null && !packageName.equals(p.info.packageName)) {
18611                        continue;
18612                    }
18613                    if (!printedSomething) {
18614                        if (dumpState.onTitlePrinted())
18615                            pw.println();
18616                        pw.println("Registered ContentProviders:");
18617                        printedSomething = true;
18618                    }
18619                    pw.print("  "); p.printComponentShortName(pw); pw.println(":");
18620                    pw.print("    "); pw.println(p.toString());
18621                }
18622                printedSomething = false;
18623                for (Map.Entry<String, PackageParser.Provider> entry :
18624                        mProvidersByAuthority.entrySet()) {
18625                    PackageParser.Provider p = entry.getValue();
18626                    if (packageName != null && !packageName.equals(p.info.packageName)) {
18627                        continue;
18628                    }
18629                    if (!printedSomething) {
18630                        if (dumpState.onTitlePrinted())
18631                            pw.println();
18632                        pw.println("ContentProvider Authorities:");
18633                        printedSomething = true;
18634                    }
18635                    pw.print("  ["); pw.print(entry.getKey()); pw.println("]:");
18636                    pw.print("    "); pw.println(p.toString());
18637                    if (p.info != null && p.info.applicationInfo != null) {
18638                        final String appInfo = p.info.applicationInfo.toString();
18639                        pw.print("      applicationInfo="); pw.println(appInfo);
18640                    }
18641                }
18642            }
18643
18644            if (!checkin && dumpState.isDumping(DumpState.DUMP_KEYSETS)) {
18645                mSettings.mKeySetManagerService.dumpLPr(pw, packageName, dumpState);
18646            }
18647
18648            if (dumpState.isDumping(DumpState.DUMP_PACKAGES)) {
18649                mSettings.dumpPackagesLPr(pw, packageName, permissionNames, dumpState, checkin);
18650            }
18651
18652            if (dumpState.isDumping(DumpState.DUMP_SHARED_USERS)) {
18653                mSettings.dumpSharedUsersLPr(pw, packageName, permissionNames, dumpState, checkin);
18654            }
18655
18656            if (!checkin && dumpState.isDumping(DumpState.DUMP_PERMISSIONS) && packageName == null) {
18657                mSettings.dumpRestoredPermissionGrantsLPr(pw, dumpState);
18658            }
18659
18660            if (!checkin && dumpState.isDumping(DumpState.DUMP_INSTALLS) && packageName == null) {
18661                // XXX should handle packageName != null by dumping only install data that
18662                // the given package is involved with.
18663                if (dumpState.onTitlePrinted()) pw.println();
18664                mInstallerService.dump(new IndentingPrintWriter(pw, "  ", 120));
18665            }
18666
18667            if (!checkin && dumpState.isDumping(DumpState.DUMP_FROZEN) && packageName == null) {
18668                // XXX should handle packageName != null by dumping only install data that
18669                // the given package is involved with.
18670                if (dumpState.onTitlePrinted()) pw.println();
18671
18672                final IndentingPrintWriter ipw = new IndentingPrintWriter(pw, "  ", 120);
18673                ipw.println();
18674                ipw.println("Frozen packages:");
18675                ipw.increaseIndent();
18676                if (mFrozenPackages.size() == 0) {
18677                    ipw.println("(none)");
18678                } else {
18679                    for (int i = 0; i < mFrozenPackages.size(); i++) {
18680                        ipw.println(mFrozenPackages.valueAt(i));
18681                    }
18682                }
18683                ipw.decreaseIndent();
18684            }
18685
18686            if (!checkin && dumpState.isDumping(DumpState.DUMP_DEXOPT)) {
18687                if (dumpState.onTitlePrinted()) pw.println();
18688                dumpDexoptStateLPr(pw, packageName);
18689            }
18690
18691            if (!checkin && dumpState.isDumping(DumpState.DUMP_MESSAGES) && packageName == null) {
18692                if (dumpState.onTitlePrinted()) pw.println();
18693                mSettings.dumpReadMessagesLPr(pw, dumpState);
18694
18695                pw.println();
18696                pw.println("Package warning messages:");
18697                BufferedReader in = null;
18698                String line = null;
18699                try {
18700                    in = new BufferedReader(new FileReader(getSettingsProblemFile()));
18701                    while ((line = in.readLine()) != null) {
18702                        if (line.contains("ignored: updated version")) continue;
18703                        pw.println(line);
18704                    }
18705                } catch (IOException ignored) {
18706                } finally {
18707                    IoUtils.closeQuietly(in);
18708                }
18709            }
18710
18711            if (checkin && dumpState.isDumping(DumpState.DUMP_MESSAGES)) {
18712                BufferedReader in = null;
18713                String line = null;
18714                try {
18715                    in = new BufferedReader(new FileReader(getSettingsProblemFile()));
18716                    while ((line = in.readLine()) != null) {
18717                        if (line.contains("ignored: updated version")) continue;
18718                        pw.print("msg,");
18719                        pw.println(line);
18720                    }
18721                } catch (IOException ignored) {
18722                } finally {
18723                    IoUtils.closeQuietly(in);
18724                }
18725            }
18726        }
18727    }
18728
18729    private void dumpDexoptStateLPr(PrintWriter pw, String packageName) {
18730        final IndentingPrintWriter ipw = new IndentingPrintWriter(pw, "  ", 120);
18731        ipw.println();
18732        ipw.println("Dexopt state:");
18733        ipw.increaseIndent();
18734        Collection<PackageParser.Package> packages = null;
18735        if (packageName != null) {
18736            PackageParser.Package targetPackage = mPackages.get(packageName);
18737            if (targetPackage != null) {
18738                packages = Collections.singletonList(targetPackage);
18739            } else {
18740                ipw.println("Unable to find package: " + packageName);
18741                return;
18742            }
18743        } else {
18744            packages = mPackages.values();
18745        }
18746
18747        for (PackageParser.Package pkg : packages) {
18748            ipw.println("[" + pkg.packageName + "]");
18749            ipw.increaseIndent();
18750            mPackageDexOptimizer.dumpDexoptState(ipw, pkg);
18751            ipw.decreaseIndent();
18752        }
18753    }
18754
18755    private String dumpDomainString(String packageName) {
18756        List<IntentFilterVerificationInfo> iviList = getIntentFilterVerifications(packageName)
18757                .getList();
18758        List<IntentFilter> filters = getAllIntentFilters(packageName).getList();
18759
18760        ArraySet<String> result = new ArraySet<>();
18761        if (iviList.size() > 0) {
18762            for (IntentFilterVerificationInfo ivi : iviList) {
18763                for (String host : ivi.getDomains()) {
18764                    result.add(host);
18765                }
18766            }
18767        }
18768        if (filters != null && filters.size() > 0) {
18769            for (IntentFilter filter : filters) {
18770                if (filter.hasCategory(Intent.CATEGORY_BROWSABLE)
18771                        && (filter.hasDataScheme(IntentFilter.SCHEME_HTTP) ||
18772                                filter.hasDataScheme(IntentFilter.SCHEME_HTTPS))) {
18773                    result.addAll(filter.getHostsList());
18774                }
18775            }
18776        }
18777
18778        StringBuilder sb = new StringBuilder(result.size() * 16);
18779        for (String domain : result) {
18780            if (sb.length() > 0) sb.append(" ");
18781            sb.append(domain);
18782        }
18783        return sb.toString();
18784    }
18785
18786    // ------- apps on sdcard specific code -------
18787    static final boolean DEBUG_SD_INSTALL = false;
18788
18789    private static final String SD_ENCRYPTION_KEYSTORE_NAME = "AppsOnSD";
18790
18791    private static final String SD_ENCRYPTION_ALGORITHM = "AES";
18792
18793    private boolean mMediaMounted = false;
18794
18795    static String getEncryptKey() {
18796        try {
18797            String sdEncKey = SystemKeyStore.getInstance().retrieveKeyHexString(
18798                    SD_ENCRYPTION_KEYSTORE_NAME);
18799            if (sdEncKey == null) {
18800                sdEncKey = SystemKeyStore.getInstance().generateNewKeyHexString(128,
18801                        SD_ENCRYPTION_ALGORITHM, SD_ENCRYPTION_KEYSTORE_NAME);
18802                if (sdEncKey == null) {
18803                    Slog.e(TAG, "Failed to create encryption keys");
18804                    return null;
18805                }
18806            }
18807            return sdEncKey;
18808        } catch (NoSuchAlgorithmException nsae) {
18809            Slog.e(TAG, "Failed to create encryption keys with exception: " + nsae);
18810            return null;
18811        } catch (IOException ioe) {
18812            Slog.e(TAG, "Failed to retrieve encryption keys with exception: " + ioe);
18813            return null;
18814        }
18815    }
18816
18817    /*
18818     * Update media status on PackageManager.
18819     */
18820    @Override
18821    public void updateExternalMediaStatus(final boolean mediaStatus, final boolean reportStatus) {
18822        int callingUid = Binder.getCallingUid();
18823        if (callingUid != 0 && callingUid != Process.SYSTEM_UID) {
18824            throw new SecurityException("Media status can only be updated by the system");
18825        }
18826        // reader; this apparently protects mMediaMounted, but should probably
18827        // be a different lock in that case.
18828        synchronized (mPackages) {
18829            Log.i(TAG, "Updating external media status from "
18830                    + (mMediaMounted ? "mounted" : "unmounted") + " to "
18831                    + (mediaStatus ? "mounted" : "unmounted"));
18832            if (DEBUG_SD_INSTALL)
18833                Log.i(TAG, "updateExternalMediaStatus:: mediaStatus=" + mediaStatus
18834                        + ", mMediaMounted=" + mMediaMounted);
18835            if (mediaStatus == mMediaMounted) {
18836                final Message msg = mHandler.obtainMessage(UPDATED_MEDIA_STATUS, reportStatus ? 1
18837                        : 0, -1);
18838                mHandler.sendMessage(msg);
18839                return;
18840            }
18841            mMediaMounted = mediaStatus;
18842        }
18843        // Queue up an async operation since the package installation may take a
18844        // little while.
18845        mHandler.post(new Runnable() {
18846            public void run() {
18847                updateExternalMediaStatusInner(mediaStatus, reportStatus, true);
18848            }
18849        });
18850    }
18851
18852    /**
18853     * Called by MountService when the initial ASECs to scan are available.
18854     * Should block until all the ASEC containers are finished being scanned.
18855     */
18856    public void scanAvailableAsecs() {
18857        updateExternalMediaStatusInner(true, false, false);
18858    }
18859
18860    /*
18861     * Collect information of applications on external media, map them against
18862     * existing containers and update information based on current mount status.
18863     * Please note that we always have to report status if reportStatus has been
18864     * set to true especially when unloading packages.
18865     */
18866    private void updateExternalMediaStatusInner(boolean isMounted, boolean reportStatus,
18867            boolean externalStorage) {
18868        ArrayMap<AsecInstallArgs, String> processCids = new ArrayMap<>();
18869        int[] uidArr = EmptyArray.INT;
18870
18871        final String[] list = PackageHelper.getSecureContainerList();
18872        if (ArrayUtils.isEmpty(list)) {
18873            Log.i(TAG, "No secure containers found");
18874        } else {
18875            // Process list of secure containers and categorize them
18876            // as active or stale based on their package internal state.
18877
18878            // reader
18879            synchronized (mPackages) {
18880                for (String cid : list) {
18881                    // Leave stages untouched for now; installer service owns them
18882                    if (PackageInstallerService.isStageName(cid)) continue;
18883
18884                    if (DEBUG_SD_INSTALL)
18885                        Log.i(TAG, "Processing container " + cid);
18886                    String pkgName = getAsecPackageName(cid);
18887                    if (pkgName == null) {
18888                        Slog.i(TAG, "Found stale container " + cid + " with no package name");
18889                        continue;
18890                    }
18891                    if (DEBUG_SD_INSTALL)
18892                        Log.i(TAG, "Looking for pkg : " + pkgName);
18893
18894                    final PackageSetting ps = mSettings.mPackages.get(pkgName);
18895                    if (ps == null) {
18896                        Slog.i(TAG, "Found stale container " + cid + " with no matching settings");
18897                        continue;
18898                    }
18899
18900                    /*
18901                     * Skip packages that are not external if we're unmounting
18902                     * external storage.
18903                     */
18904                    if (externalStorage && !isMounted && !isExternal(ps)) {
18905                        continue;
18906                    }
18907
18908                    final AsecInstallArgs args = new AsecInstallArgs(cid,
18909                            getAppDexInstructionSets(ps), ps.isForwardLocked());
18910                    // The package status is changed only if the code path
18911                    // matches between settings and the container id.
18912                    if (ps.codePathString != null
18913                            && ps.codePathString.startsWith(args.getCodePath())) {
18914                        if (DEBUG_SD_INSTALL) {
18915                            Log.i(TAG, "Container : " + cid + " corresponds to pkg : " + pkgName
18916                                    + " at code path: " + ps.codePathString);
18917                        }
18918
18919                        // We do have a valid package installed on sdcard
18920                        processCids.put(args, ps.codePathString);
18921                        final int uid = ps.appId;
18922                        if (uid != -1) {
18923                            uidArr = ArrayUtils.appendInt(uidArr, uid);
18924                        }
18925                    } else {
18926                        Slog.i(TAG, "Found stale container " + cid + ": expected codePath="
18927                                + ps.codePathString);
18928                    }
18929                }
18930            }
18931
18932            Arrays.sort(uidArr);
18933        }
18934
18935        // Process packages with valid entries.
18936        if (isMounted) {
18937            if (DEBUG_SD_INSTALL)
18938                Log.i(TAG, "Loading packages");
18939            loadMediaPackages(processCids, uidArr, externalStorage);
18940            startCleaningPackages();
18941            mInstallerService.onSecureContainersAvailable();
18942        } else {
18943            if (DEBUG_SD_INSTALL)
18944                Log.i(TAG, "Unloading packages");
18945            unloadMediaPackages(processCids, uidArr, reportStatus);
18946        }
18947    }
18948
18949    private void sendResourcesChangedBroadcast(boolean mediaStatus, boolean replacing,
18950            ArrayList<ApplicationInfo> infos, IIntentReceiver finishedReceiver) {
18951        final int size = infos.size();
18952        final String[] packageNames = new String[size];
18953        final int[] packageUids = new int[size];
18954        for (int i = 0; i < size; i++) {
18955            final ApplicationInfo info = infos.get(i);
18956            packageNames[i] = info.packageName;
18957            packageUids[i] = info.uid;
18958        }
18959        sendResourcesChangedBroadcast(mediaStatus, replacing, packageNames, packageUids,
18960                finishedReceiver);
18961    }
18962
18963    private void sendResourcesChangedBroadcast(boolean mediaStatus, boolean replacing,
18964            ArrayList<String> pkgList, int uidArr[], IIntentReceiver finishedReceiver) {
18965        sendResourcesChangedBroadcast(mediaStatus, replacing,
18966                pkgList.toArray(new String[pkgList.size()]), uidArr, finishedReceiver);
18967    }
18968
18969    private void sendResourcesChangedBroadcast(boolean mediaStatus, boolean replacing,
18970            String[] pkgList, int uidArr[], IIntentReceiver finishedReceiver) {
18971        int size = pkgList.length;
18972        if (size > 0) {
18973            // Send broadcasts here
18974            Bundle extras = new Bundle();
18975            extras.putStringArray(Intent.EXTRA_CHANGED_PACKAGE_LIST, pkgList);
18976            if (uidArr != null) {
18977                extras.putIntArray(Intent.EXTRA_CHANGED_UID_LIST, uidArr);
18978            }
18979            if (replacing) {
18980                extras.putBoolean(Intent.EXTRA_REPLACING, replacing);
18981            }
18982            String action = mediaStatus ? Intent.ACTION_EXTERNAL_APPLICATIONS_AVAILABLE
18983                    : Intent.ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE;
18984            sendPackageBroadcast(action, null, extras, 0, null, finishedReceiver, null);
18985        }
18986    }
18987
18988   /*
18989     * Look at potentially valid container ids from processCids If package
18990     * information doesn't match the one on record or package scanning fails,
18991     * the cid is added to list of removeCids. We currently don't delete stale
18992     * containers.
18993     */
18994    private void loadMediaPackages(ArrayMap<AsecInstallArgs, String> processCids, int[] uidArr,
18995            boolean externalStorage) {
18996        ArrayList<String> pkgList = new ArrayList<String>();
18997        Set<AsecInstallArgs> keys = processCids.keySet();
18998
18999        for (AsecInstallArgs args : keys) {
19000            String codePath = processCids.get(args);
19001            if (DEBUG_SD_INSTALL)
19002                Log.i(TAG, "Loading container : " + args.cid);
19003            int retCode = PackageManager.INSTALL_FAILED_CONTAINER_ERROR;
19004            try {
19005                // Make sure there are no container errors first.
19006                if (args.doPreInstall(PackageManager.INSTALL_SUCCEEDED) != PackageManager.INSTALL_SUCCEEDED) {
19007                    Slog.e(TAG, "Failed to mount cid : " + args.cid
19008                            + " when installing from sdcard");
19009                    continue;
19010                }
19011                // Check code path here.
19012                if (codePath == null || !codePath.startsWith(args.getCodePath())) {
19013                    Slog.e(TAG, "Container " + args.cid + " cachepath " + args.getCodePath()
19014                            + " does not match one in settings " + codePath);
19015                    continue;
19016                }
19017                // Parse package
19018                int parseFlags = mDefParseFlags;
19019                if (args.isExternalAsec()) {
19020                    parseFlags |= PackageParser.PARSE_EXTERNAL_STORAGE;
19021                }
19022                if (args.isFwdLocked()) {
19023                    parseFlags |= PackageParser.PARSE_FORWARD_LOCK;
19024                }
19025
19026                synchronized (mInstallLock) {
19027                    PackageParser.Package pkg = null;
19028                    try {
19029                        // Sadly we don't know the package name yet to freeze it
19030                        pkg = scanPackageTracedLI(new File(codePath), parseFlags,
19031                                SCAN_IGNORE_FROZEN, 0, null);
19032                    } catch (PackageManagerException e) {
19033                        Slog.w(TAG, "Failed to scan " + codePath + ": " + e.getMessage());
19034                    }
19035                    // Scan the package
19036                    if (pkg != null) {
19037                        /*
19038                         * TODO why is the lock being held? doPostInstall is
19039                         * called in other places without the lock. This needs
19040                         * to be straightened out.
19041                         */
19042                        // writer
19043                        synchronized (mPackages) {
19044                            retCode = PackageManager.INSTALL_SUCCEEDED;
19045                            pkgList.add(pkg.packageName);
19046                            // Post process args
19047                            args.doPostInstall(PackageManager.INSTALL_SUCCEEDED,
19048                                    pkg.applicationInfo.uid);
19049                        }
19050                    } else {
19051                        Slog.i(TAG, "Failed to install pkg from  " + codePath + " from sdcard");
19052                    }
19053                }
19054
19055            } finally {
19056                if (retCode != PackageManager.INSTALL_SUCCEEDED) {
19057                    Log.w(TAG, "Container " + args.cid + " is stale, retCode=" + retCode);
19058                }
19059            }
19060        }
19061        // writer
19062        synchronized (mPackages) {
19063            // If the platform SDK has changed since the last time we booted,
19064            // we need to re-grant app permission to catch any new ones that
19065            // appear. This is really a hack, and means that apps can in some
19066            // cases get permissions that the user didn't initially explicitly
19067            // allow... it would be nice to have some better way to handle
19068            // this situation.
19069            final VersionInfo ver = externalStorage ? mSettings.getExternalVersion()
19070                    : mSettings.getInternalVersion();
19071            final String volumeUuid = externalStorage ? StorageManager.UUID_PRIMARY_PHYSICAL
19072                    : StorageManager.UUID_PRIVATE_INTERNAL;
19073
19074            int updateFlags = UPDATE_PERMISSIONS_ALL;
19075            if (ver.sdkVersion != mSdkVersion) {
19076                logCriticalInfo(Log.INFO, "Platform changed from " + ver.sdkVersion + " to "
19077                        + mSdkVersion + "; regranting permissions for external");
19078                updateFlags |= UPDATE_PERMISSIONS_REPLACE_PKG | UPDATE_PERMISSIONS_REPLACE_ALL;
19079            }
19080            updatePermissionsLPw(null, null, volumeUuid, updateFlags);
19081
19082            // Yay, everything is now upgraded
19083            ver.forceCurrent();
19084
19085            // can downgrade to reader
19086            // Persist settings
19087            mSettings.writeLPr();
19088        }
19089        // Send a broadcast to let everyone know we are done processing
19090        if (pkgList.size() > 0) {
19091            sendResourcesChangedBroadcast(true, false, pkgList, uidArr, null);
19092        }
19093    }
19094
19095   /*
19096     * Utility method to unload a list of specified containers
19097     */
19098    private void unloadAllContainers(Set<AsecInstallArgs> cidArgs) {
19099        // Just unmount all valid containers.
19100        for (AsecInstallArgs arg : cidArgs) {
19101            synchronized (mInstallLock) {
19102                arg.doPostDeleteLI(false);
19103           }
19104       }
19105   }
19106
19107    /*
19108     * Unload packages mounted on external media. This involves deleting package
19109     * data from internal structures, sending broadcasts about disabled packages,
19110     * gc'ing to free up references, unmounting all secure containers
19111     * corresponding to packages on external media, and posting a
19112     * UPDATED_MEDIA_STATUS message if status has been requested. Please note
19113     * that we always have to post this message if status has been requested no
19114     * matter what.
19115     */
19116    private void unloadMediaPackages(ArrayMap<AsecInstallArgs, String> processCids, int uidArr[],
19117            final boolean reportStatus) {
19118        if (DEBUG_SD_INSTALL)
19119            Log.i(TAG, "unloading media packages");
19120        ArrayList<String> pkgList = new ArrayList<String>();
19121        ArrayList<AsecInstallArgs> failedList = new ArrayList<AsecInstallArgs>();
19122        final Set<AsecInstallArgs> keys = processCids.keySet();
19123        for (AsecInstallArgs args : keys) {
19124            String pkgName = args.getPackageName();
19125            if (DEBUG_SD_INSTALL)
19126                Log.i(TAG, "Trying to unload pkg : " + pkgName);
19127            // Delete package internally
19128            PackageRemovedInfo outInfo = new PackageRemovedInfo();
19129            synchronized (mInstallLock) {
19130                final int deleteFlags = PackageManager.DELETE_KEEP_DATA;
19131                final boolean res;
19132                try (PackageFreezer freezer = freezePackageForDelete(pkgName, deleteFlags,
19133                        "unloadMediaPackages")) {
19134                    res = deletePackageLIF(pkgName, null, false, null, deleteFlags, outInfo, false,
19135                            null);
19136                }
19137                if (res) {
19138                    pkgList.add(pkgName);
19139                } else {
19140                    Slog.e(TAG, "Failed to delete pkg from sdcard : " + pkgName);
19141                    failedList.add(args);
19142                }
19143            }
19144        }
19145
19146        // reader
19147        synchronized (mPackages) {
19148            // We didn't update the settings after removing each package;
19149            // write them now for all packages.
19150            mSettings.writeLPr();
19151        }
19152
19153        // We have to absolutely send UPDATED_MEDIA_STATUS only
19154        // after confirming that all the receivers processed the ordered
19155        // broadcast when packages get disabled, force a gc to clean things up.
19156        // and unload all the containers.
19157        if (pkgList.size() > 0) {
19158            sendResourcesChangedBroadcast(false, false, pkgList, uidArr,
19159                    new IIntentReceiver.Stub() {
19160                public void performReceive(Intent intent, int resultCode, String data,
19161                        Bundle extras, boolean ordered, boolean sticky,
19162                        int sendingUser) throws RemoteException {
19163                    Message msg = mHandler.obtainMessage(UPDATED_MEDIA_STATUS,
19164                            reportStatus ? 1 : 0, 1, keys);
19165                    mHandler.sendMessage(msg);
19166                }
19167            });
19168        } else {
19169            Message msg = mHandler.obtainMessage(UPDATED_MEDIA_STATUS, reportStatus ? 1 : 0, -1,
19170                    keys);
19171            mHandler.sendMessage(msg);
19172        }
19173    }
19174
19175    private void loadPrivatePackages(final VolumeInfo vol) {
19176        mHandler.post(new Runnable() {
19177            @Override
19178            public void run() {
19179                loadPrivatePackagesInner(vol);
19180            }
19181        });
19182    }
19183
19184    private void loadPrivatePackagesInner(VolumeInfo vol) {
19185        final String volumeUuid = vol.fsUuid;
19186        if (TextUtils.isEmpty(volumeUuid)) {
19187            Slog.e(TAG, "Loading internal storage is probably a mistake; ignoring");
19188            return;
19189        }
19190
19191        final ArrayList<PackageFreezer> freezers = new ArrayList<>();
19192        final ArrayList<ApplicationInfo> loaded = new ArrayList<>();
19193        final int parseFlags = mDefParseFlags | PackageParser.PARSE_EXTERNAL_STORAGE;
19194
19195        final VersionInfo ver;
19196        final List<PackageSetting> packages;
19197        synchronized (mPackages) {
19198            ver = mSettings.findOrCreateVersion(volumeUuid);
19199            packages = mSettings.getVolumePackagesLPr(volumeUuid);
19200        }
19201
19202        for (PackageSetting ps : packages) {
19203            freezers.add(freezePackage(ps.name, "loadPrivatePackagesInner"));
19204            synchronized (mInstallLock) {
19205                final PackageParser.Package pkg;
19206                try {
19207                    pkg = scanPackageTracedLI(ps.codePath, parseFlags, SCAN_INITIAL, 0, null);
19208                    loaded.add(pkg.applicationInfo);
19209
19210                } catch (PackageManagerException e) {
19211                    Slog.w(TAG, "Failed to scan " + ps.codePath + ": " + e.getMessage());
19212                }
19213
19214                if (!Build.FINGERPRINT.equals(ver.fingerprint)) {
19215                    clearAppDataLIF(ps.pkg, UserHandle.USER_ALL,
19216                            StorageManager.FLAG_STORAGE_DE | StorageManager.FLAG_STORAGE_CE
19217                                    | Installer.FLAG_CLEAR_CODE_CACHE_ONLY);
19218                }
19219            }
19220        }
19221
19222        // Reconcile app data for all started/unlocked users
19223        final StorageManager sm = mContext.getSystemService(StorageManager.class);
19224        final UserManager um = mContext.getSystemService(UserManager.class);
19225        UserManagerInternal umInternal = getUserManagerInternal();
19226        for (UserInfo user : um.getUsers()) {
19227            final int flags;
19228            if (umInternal.isUserUnlockingOrUnlocked(user.id)) {
19229                flags = StorageManager.FLAG_STORAGE_DE | StorageManager.FLAG_STORAGE_CE;
19230            } else if (umInternal.isUserRunning(user.id)) {
19231                flags = StorageManager.FLAG_STORAGE_DE;
19232            } else {
19233                continue;
19234            }
19235
19236            try {
19237                sm.prepareUserStorage(volumeUuid, user.id, user.serialNumber, flags);
19238                synchronized (mInstallLock) {
19239                    reconcileAppsDataLI(volumeUuid, user.id, flags);
19240                }
19241            } catch (IllegalStateException e) {
19242                // Device was probably ejected, and we'll process that event momentarily
19243                Slog.w(TAG, "Failed to prepare storage: " + e);
19244            }
19245        }
19246
19247        synchronized (mPackages) {
19248            int updateFlags = UPDATE_PERMISSIONS_ALL;
19249            if (ver.sdkVersion != mSdkVersion) {
19250                logCriticalInfo(Log.INFO, "Platform changed from " + ver.sdkVersion + " to "
19251                        + mSdkVersion + "; regranting permissions for " + volumeUuid);
19252                updateFlags |= UPDATE_PERMISSIONS_REPLACE_PKG | UPDATE_PERMISSIONS_REPLACE_ALL;
19253            }
19254            updatePermissionsLPw(null, null, volumeUuid, updateFlags);
19255
19256            // Yay, everything is now upgraded
19257            ver.forceCurrent();
19258
19259            mSettings.writeLPr();
19260        }
19261
19262        for (PackageFreezer freezer : freezers) {
19263            freezer.close();
19264        }
19265
19266        if (DEBUG_INSTALL) Slog.d(TAG, "Loaded packages " + loaded);
19267        sendResourcesChangedBroadcast(true, false, loaded, null);
19268    }
19269
19270    private void unloadPrivatePackages(final VolumeInfo vol) {
19271        mHandler.post(new Runnable() {
19272            @Override
19273            public void run() {
19274                unloadPrivatePackagesInner(vol);
19275            }
19276        });
19277    }
19278
19279    private void unloadPrivatePackagesInner(VolumeInfo vol) {
19280        final String volumeUuid = vol.fsUuid;
19281        if (TextUtils.isEmpty(volumeUuid)) {
19282            Slog.e(TAG, "Unloading internal storage is probably a mistake; ignoring");
19283            return;
19284        }
19285
19286        final ArrayList<ApplicationInfo> unloaded = new ArrayList<>();
19287        synchronized (mInstallLock) {
19288        synchronized (mPackages) {
19289            final List<PackageSetting> packages = mSettings.getVolumePackagesLPr(volumeUuid);
19290            for (PackageSetting ps : packages) {
19291                if (ps.pkg == null) continue;
19292
19293                final ApplicationInfo info = ps.pkg.applicationInfo;
19294                final int deleteFlags = PackageManager.DELETE_KEEP_DATA;
19295                final PackageRemovedInfo outInfo = new PackageRemovedInfo();
19296
19297                try (PackageFreezer freezer = freezePackageForDelete(ps.name, deleteFlags,
19298                        "unloadPrivatePackagesInner")) {
19299                    if (deletePackageLIF(ps.name, null, false, null, deleteFlags, outInfo,
19300                            false, null)) {
19301                        unloaded.add(info);
19302                    } else {
19303                        Slog.w(TAG, "Failed to unload " + ps.codePath);
19304                    }
19305                }
19306
19307                // Try very hard to release any references to this package
19308                // so we don't risk the system server being killed due to
19309                // open FDs
19310                AttributeCache.instance().removePackage(ps.name);
19311            }
19312
19313            mSettings.writeLPr();
19314        }
19315        }
19316
19317        if (DEBUG_INSTALL) Slog.d(TAG, "Unloaded packages " + unloaded);
19318        sendResourcesChangedBroadcast(false, false, unloaded, null);
19319
19320        // Try very hard to release any references to this path so we don't risk
19321        // the system server being killed due to open FDs
19322        ResourcesManager.getInstance().invalidatePath(vol.getPath().getAbsolutePath());
19323
19324        for (int i = 0; i < 3; i++) {
19325            System.gc();
19326            System.runFinalization();
19327        }
19328    }
19329
19330    /**
19331     * Prepare storage areas for given user on all mounted devices.
19332     */
19333    void prepareUserData(int userId, int userSerial, int flags) {
19334        synchronized (mInstallLock) {
19335            final StorageManager storage = mContext.getSystemService(StorageManager.class);
19336            for (VolumeInfo vol : storage.getWritablePrivateVolumes()) {
19337                final String volumeUuid = vol.getFsUuid();
19338                prepareUserDataLI(volumeUuid, userId, userSerial, flags, true);
19339            }
19340        }
19341    }
19342
19343    private void prepareUserDataLI(String volumeUuid, int userId, int userSerial, int flags,
19344            boolean allowRecover) {
19345        // Prepare storage and verify that serial numbers are consistent; if
19346        // there's a mismatch we need to destroy to avoid leaking data
19347        final StorageManager storage = mContext.getSystemService(StorageManager.class);
19348        try {
19349            storage.prepareUserStorage(volumeUuid, userId, userSerial, flags);
19350
19351            if ((flags & StorageManager.FLAG_STORAGE_DE) != 0 && !mOnlyCore) {
19352                UserManagerService.enforceSerialNumber(
19353                        Environment.getDataUserDeDirectory(volumeUuid, userId), userSerial);
19354                if (Objects.equals(volumeUuid, StorageManager.UUID_PRIVATE_INTERNAL)) {
19355                    UserManagerService.enforceSerialNumber(
19356                            Environment.getDataSystemDeDirectory(userId), userSerial);
19357                }
19358            }
19359            if ((flags & StorageManager.FLAG_STORAGE_CE) != 0 && !mOnlyCore) {
19360                UserManagerService.enforceSerialNumber(
19361                        Environment.getDataUserCeDirectory(volumeUuid, userId), userSerial);
19362                if (Objects.equals(volumeUuid, StorageManager.UUID_PRIVATE_INTERNAL)) {
19363                    UserManagerService.enforceSerialNumber(
19364                            Environment.getDataSystemCeDirectory(userId), userSerial);
19365                }
19366            }
19367
19368            synchronized (mInstallLock) {
19369                mInstaller.createUserData(volumeUuid, userId, userSerial, flags);
19370            }
19371        } catch (Exception e) {
19372            logCriticalInfo(Log.WARN, "Destroying user " + userId + " on volume " + volumeUuid
19373                    + " because we failed to prepare: " + e);
19374            destroyUserDataLI(volumeUuid, userId,
19375                    StorageManager.FLAG_STORAGE_DE | StorageManager.FLAG_STORAGE_CE);
19376
19377            if (allowRecover) {
19378                // Try one last time; if we fail again we're really in trouble
19379                prepareUserDataLI(volumeUuid, userId, userSerial, flags, false);
19380            }
19381        }
19382    }
19383
19384    /**
19385     * Destroy storage areas for given user on all mounted devices.
19386     */
19387    void destroyUserData(int userId, int flags) {
19388        synchronized (mInstallLock) {
19389            final StorageManager storage = mContext.getSystemService(StorageManager.class);
19390            for (VolumeInfo vol : storage.getWritablePrivateVolumes()) {
19391                final String volumeUuid = vol.getFsUuid();
19392                destroyUserDataLI(volumeUuid, userId, flags);
19393            }
19394        }
19395    }
19396
19397    private void destroyUserDataLI(String volumeUuid, int userId, int flags) {
19398        final StorageManager storage = mContext.getSystemService(StorageManager.class);
19399        try {
19400            // Clean up app data, profile data, and media data
19401            mInstaller.destroyUserData(volumeUuid, userId, flags);
19402
19403            // Clean up system data
19404            if (Objects.equals(volumeUuid, StorageManager.UUID_PRIVATE_INTERNAL)) {
19405                if ((flags & StorageManager.FLAG_STORAGE_DE) != 0) {
19406                    FileUtils.deleteContentsAndDir(Environment.getUserSystemDirectory(userId));
19407                    FileUtils.deleteContentsAndDir(Environment.getDataSystemDeDirectory(userId));
19408                }
19409                if ((flags & StorageManager.FLAG_STORAGE_CE) != 0) {
19410                    FileUtils.deleteContentsAndDir(Environment.getDataSystemCeDirectory(userId));
19411                }
19412            }
19413
19414            // Data with special labels is now gone, so finish the job
19415            storage.destroyUserStorage(volumeUuid, userId, flags);
19416
19417        } catch (Exception e) {
19418            logCriticalInfo(Log.WARN,
19419                    "Failed to destroy user " + userId + " on volume " + volumeUuid + ": " + e);
19420        }
19421    }
19422
19423    /**
19424     * Examine all users present on given mounted volume, and destroy data
19425     * belonging to users that are no longer valid, or whose user ID has been
19426     * recycled.
19427     */
19428    private void reconcileUsers(String volumeUuid) {
19429        final List<File> files = new ArrayList<>();
19430        Collections.addAll(files, FileUtils
19431                .listFilesOrEmpty(Environment.getDataUserDeDirectory(volumeUuid)));
19432        Collections.addAll(files, FileUtils
19433                .listFilesOrEmpty(Environment.getDataUserCeDirectory(volumeUuid)));
19434        Collections.addAll(files, FileUtils
19435                .listFilesOrEmpty(Environment.getDataSystemDeDirectory()));
19436        Collections.addAll(files, FileUtils
19437                .listFilesOrEmpty(Environment.getDataSystemCeDirectory()));
19438        for (File file : files) {
19439            if (!file.isDirectory()) continue;
19440
19441            final int userId;
19442            final UserInfo info;
19443            try {
19444                userId = Integer.parseInt(file.getName());
19445                info = sUserManager.getUserInfo(userId);
19446            } catch (NumberFormatException e) {
19447                Slog.w(TAG, "Invalid user directory " + file);
19448                continue;
19449            }
19450
19451            boolean destroyUser = false;
19452            if (info == null) {
19453                logCriticalInfo(Log.WARN, "Destroying user directory " + file
19454                        + " because no matching user was found");
19455                destroyUser = true;
19456            } else if (!mOnlyCore) {
19457                try {
19458                    UserManagerService.enforceSerialNumber(file, info.serialNumber);
19459                } catch (IOException e) {
19460                    logCriticalInfo(Log.WARN, "Destroying user directory " + file
19461                            + " because we failed to enforce serial number: " + e);
19462                    destroyUser = true;
19463                }
19464            }
19465
19466            if (destroyUser) {
19467                synchronized (mInstallLock) {
19468                    destroyUserDataLI(volumeUuid, userId,
19469                            StorageManager.FLAG_STORAGE_DE | StorageManager.FLAG_STORAGE_CE);
19470                }
19471            }
19472        }
19473    }
19474
19475    private void assertPackageKnown(String volumeUuid, String packageName)
19476            throws PackageManagerException {
19477        synchronized (mPackages) {
19478            final PackageSetting ps = mSettings.mPackages.get(packageName);
19479            if (ps == null) {
19480                throw new PackageManagerException("Package " + packageName + " is unknown");
19481            } else if (!TextUtils.equals(volumeUuid, ps.volumeUuid)) {
19482                throw new PackageManagerException(
19483                        "Package " + packageName + " found on unknown volume " + volumeUuid
19484                                + "; expected volume " + ps.volumeUuid);
19485            }
19486        }
19487    }
19488
19489    private void assertPackageKnownAndInstalled(String volumeUuid, String packageName, int userId)
19490            throws PackageManagerException {
19491        synchronized (mPackages) {
19492            final PackageSetting ps = mSettings.mPackages.get(packageName);
19493            if (ps == null) {
19494                throw new PackageManagerException("Package " + packageName + " is unknown");
19495            } else if (!TextUtils.equals(volumeUuid, ps.volumeUuid)) {
19496                throw new PackageManagerException(
19497                        "Package " + packageName + " found on unknown volume " + volumeUuid
19498                                + "; expected volume " + ps.volumeUuid);
19499            } else if (!ps.getInstalled(userId)) {
19500                throw new PackageManagerException(
19501                        "Package " + packageName + " not installed for user " + userId);
19502            }
19503        }
19504    }
19505
19506    /**
19507     * Examine all apps present on given mounted volume, and destroy apps that
19508     * aren't expected, either due to uninstallation or reinstallation on
19509     * another volume.
19510     */
19511    private void reconcileApps(String volumeUuid) {
19512        final File[] files = FileUtils
19513                .listFilesOrEmpty(Environment.getDataAppDirectory(volumeUuid));
19514        for (File file : files) {
19515            final boolean isPackage = (isApkFile(file) || file.isDirectory())
19516                    && !PackageInstallerService.isStageName(file.getName());
19517            if (!isPackage) {
19518                // Ignore entries which are not packages
19519                continue;
19520            }
19521
19522            try {
19523                final PackageLite pkg = PackageParser.parsePackageLite(file,
19524                        PackageParser.PARSE_MUST_BE_APK);
19525                assertPackageKnown(volumeUuid, pkg.packageName);
19526
19527            } catch (PackageParserException | PackageManagerException e) {
19528                logCriticalInfo(Log.WARN, "Destroying " + file + " due to: " + e);
19529                synchronized (mInstallLock) {
19530                    removeCodePathLI(file);
19531                }
19532            }
19533        }
19534    }
19535
19536    /**
19537     * Reconcile all app data for the given user.
19538     * <p>
19539     * Verifies that directories exist and that ownership and labeling is
19540     * correct for all installed apps on all mounted volumes.
19541     */
19542    void reconcileAppsData(int userId, int flags) {
19543        final StorageManager storage = mContext.getSystemService(StorageManager.class);
19544        for (VolumeInfo vol : storage.getWritablePrivateVolumes()) {
19545            final String volumeUuid = vol.getFsUuid();
19546            synchronized (mInstallLock) {
19547                reconcileAppsDataLI(volumeUuid, userId, flags);
19548            }
19549        }
19550    }
19551
19552    /**
19553     * Reconcile all app data on given mounted volume.
19554     * <p>
19555     * Destroys app data that isn't expected, either due to uninstallation or
19556     * reinstallation on another volume.
19557     * <p>
19558     * Verifies that directories exist and that ownership and labeling is
19559     * correct for all installed apps.
19560     */
19561    private void reconcileAppsDataLI(String volumeUuid, int userId, int flags) {
19562        Slog.v(TAG, "reconcileAppsData for " + volumeUuid + " u" + userId + " 0x"
19563                + Integer.toHexString(flags));
19564
19565        final File ceDir = Environment.getDataUserCeDirectory(volumeUuid, userId);
19566        final File deDir = Environment.getDataUserDeDirectory(volumeUuid, userId);
19567
19568        boolean restoreconNeeded = false;
19569
19570        // First look for stale data that doesn't belong, and check if things
19571        // have changed since we did our last restorecon
19572        if ((flags & StorageManager.FLAG_STORAGE_CE) != 0) {
19573            if (StorageManager.isFileEncryptedNativeOrEmulated()
19574                    && !StorageManager.isUserKeyUnlocked(userId)) {
19575                throw new RuntimeException(
19576                        "Yikes, someone asked us to reconcile CE storage while " + userId
19577                                + " was still locked; this would have caused massive data loss!");
19578            }
19579
19580            restoreconNeeded |= SELinuxMMAC.isRestoreconNeeded(ceDir);
19581
19582            final File[] files = FileUtils.listFilesOrEmpty(ceDir);
19583            for (File file : files) {
19584                final String packageName = file.getName();
19585                try {
19586                    assertPackageKnownAndInstalled(volumeUuid, packageName, userId);
19587                } catch (PackageManagerException e) {
19588                    logCriticalInfo(Log.WARN, "Destroying " + file + " due to: " + e);
19589                    try {
19590                        mInstaller.destroyAppData(volumeUuid, packageName, userId,
19591                                StorageManager.FLAG_STORAGE_CE, 0);
19592                    } catch (InstallerException e2) {
19593                        logCriticalInfo(Log.WARN, "Failed to destroy: " + e2);
19594                    }
19595                }
19596            }
19597        }
19598        if ((flags & StorageManager.FLAG_STORAGE_DE) != 0) {
19599            restoreconNeeded |= SELinuxMMAC.isRestoreconNeeded(deDir);
19600
19601            final File[] files = FileUtils.listFilesOrEmpty(deDir);
19602            for (File file : files) {
19603                final String packageName = file.getName();
19604                try {
19605                    assertPackageKnownAndInstalled(volumeUuid, packageName, userId);
19606                } catch (PackageManagerException e) {
19607                    logCriticalInfo(Log.WARN, "Destroying " + file + " due to: " + e);
19608                    try {
19609                        mInstaller.destroyAppData(volumeUuid, packageName, userId,
19610                                StorageManager.FLAG_STORAGE_DE, 0);
19611                    } catch (InstallerException e2) {
19612                        logCriticalInfo(Log.WARN, "Failed to destroy: " + e2);
19613                    }
19614                }
19615            }
19616        }
19617
19618        // Ensure that data directories are ready to roll for all packages
19619        // installed for this volume and user
19620        final List<PackageSetting> packages;
19621        synchronized (mPackages) {
19622            packages = mSettings.getVolumePackagesLPr(volumeUuid);
19623        }
19624        int preparedCount = 0;
19625        for (PackageSetting ps : packages) {
19626            final String packageName = ps.name;
19627            if (ps.pkg == null) {
19628                Slog.w(TAG, "Odd, missing scanned package " + packageName);
19629                // TODO: might be due to legacy ASEC apps; we should circle back
19630                // and reconcile again once they're scanned
19631                continue;
19632            }
19633
19634            if (ps.getInstalled(userId)) {
19635                prepareAppDataLIF(ps.pkg, userId, flags, restoreconNeeded);
19636
19637                if (maybeMigrateAppDataLIF(ps.pkg, userId)) {
19638                    // We may have just shuffled around app data directories, so
19639                    // prepare them one more time
19640                    prepareAppDataLIF(ps.pkg, userId, flags, restoreconNeeded);
19641                }
19642
19643                preparedCount++;
19644            }
19645        }
19646
19647        if (restoreconNeeded) {
19648            if ((flags & StorageManager.FLAG_STORAGE_CE) != 0) {
19649                SELinuxMMAC.setRestoreconDone(ceDir);
19650            }
19651            if ((flags & StorageManager.FLAG_STORAGE_DE) != 0) {
19652                SELinuxMMAC.setRestoreconDone(deDir);
19653            }
19654        }
19655
19656        Slog.v(TAG, "reconcileAppsData finished " + preparedCount
19657                + " packages; restoreconNeeded was " + restoreconNeeded);
19658    }
19659
19660    /**
19661     * Prepare app data for the given app just after it was installed or
19662     * upgraded. This method carefully only touches users that it's installed
19663     * for, and it forces a restorecon to handle any seinfo changes.
19664     * <p>
19665     * Verifies that directories exist and that ownership and labeling is
19666     * correct for all installed apps. If there is an ownership mismatch, it
19667     * will try recovering system apps by wiping data; third-party app data is
19668     * left intact.
19669     * <p>
19670     * <em>Note: To avoid a deadlock, do not call this method with {@code mPackages} lock held</em>
19671     */
19672    private void prepareAppDataAfterInstallLIF(PackageParser.Package pkg) {
19673        final PackageSetting ps;
19674        synchronized (mPackages) {
19675            ps = mSettings.mPackages.get(pkg.packageName);
19676            mSettings.writeKernelMappingLPr(ps);
19677        }
19678
19679        final UserManager um = mContext.getSystemService(UserManager.class);
19680        UserManagerInternal umInternal = getUserManagerInternal();
19681        for (UserInfo user : um.getUsers()) {
19682            final int flags;
19683            if (umInternal.isUserUnlockingOrUnlocked(user.id)) {
19684                flags = StorageManager.FLAG_STORAGE_DE | StorageManager.FLAG_STORAGE_CE;
19685            } else if (umInternal.isUserRunning(user.id)) {
19686                flags = StorageManager.FLAG_STORAGE_DE;
19687            } else {
19688                continue;
19689            }
19690
19691            if (ps.getInstalled(user.id)) {
19692                // Whenever an app changes, force a restorecon of its data
19693                // TODO: when user data is locked, mark that we're still dirty
19694                prepareAppDataLIF(pkg, user.id, flags, true);
19695            }
19696        }
19697    }
19698
19699    /**
19700     * Prepare app data for the given app.
19701     * <p>
19702     * Verifies that directories exist and that ownership and labeling is
19703     * correct for all installed apps. If there is an ownership mismatch, this
19704     * will try recovering system apps by wiping data; third-party app data is
19705     * left intact.
19706     */
19707    private void prepareAppDataLIF(PackageParser.Package pkg, int userId, int flags,
19708            boolean restoreconNeeded) {
19709        if (pkg == null) {
19710            Slog.wtf(TAG, "Package was null!", new Throwable());
19711            return;
19712        }
19713        prepareAppDataLeafLIF(pkg, userId, flags, restoreconNeeded);
19714        final int childCount = (pkg.childPackages != null) ? pkg.childPackages.size() : 0;
19715        for (int i = 0; i < childCount; i++) {
19716            prepareAppDataLeafLIF(pkg.childPackages.get(i), userId, flags, restoreconNeeded);
19717        }
19718    }
19719
19720    private void prepareAppDataLeafLIF(PackageParser.Package pkg, int userId, int flags,
19721            boolean restoreconNeeded) {
19722        if (DEBUG_APP_DATA) {
19723            Slog.v(TAG, "prepareAppData for " + pkg.packageName + " u" + userId + " 0x"
19724                    + Integer.toHexString(flags) + (restoreconNeeded ? " restoreconNeeded" : ""));
19725        }
19726
19727        final String volumeUuid = pkg.volumeUuid;
19728        final String packageName = pkg.packageName;
19729        final ApplicationInfo app = pkg.applicationInfo;
19730        final int appId = UserHandle.getAppId(app.uid);
19731
19732        Preconditions.checkNotNull(app.seinfo);
19733
19734        try {
19735            mInstaller.createAppData(volumeUuid, packageName, userId, flags,
19736                    appId, app.seinfo, app.targetSdkVersion);
19737        } catch (InstallerException e) {
19738            if (app.isSystemApp()) {
19739                logCriticalInfo(Log.ERROR, "Failed to create app data for " + packageName
19740                        + ", but trying to recover: " + e);
19741                destroyAppDataLeafLIF(pkg, userId, flags);
19742                try {
19743                    mInstaller.createAppData(volumeUuid, packageName, userId, flags,
19744                            appId, app.seinfo, app.targetSdkVersion);
19745                    logCriticalInfo(Log.DEBUG, "Recovery succeeded!");
19746                } catch (InstallerException e2) {
19747                    logCriticalInfo(Log.DEBUG, "Recovery failed!");
19748                }
19749            } else {
19750                Slog.e(TAG, "Failed to create app data for " + packageName + ": " + e);
19751            }
19752        }
19753
19754        if (restoreconNeeded) {
19755            try {
19756                mInstaller.restoreconAppData(volumeUuid, packageName, userId, flags, appId,
19757                        app.seinfo);
19758            } catch (InstallerException e) {
19759                Slog.e(TAG, "Failed to restorecon for " + packageName + ": " + e);
19760            }
19761        }
19762
19763        if ((flags & StorageManager.FLAG_STORAGE_CE) != 0) {
19764            try {
19765                // CE storage is unlocked right now, so read out the inode and
19766                // remember for use later when it's locked
19767                // TODO: mark this structure as dirty so we persist it!
19768                final long ceDataInode = mInstaller.getAppDataInode(volumeUuid, packageName, userId,
19769                        StorageManager.FLAG_STORAGE_CE);
19770                synchronized (mPackages) {
19771                    final PackageSetting ps = mSettings.mPackages.get(packageName);
19772                    if (ps != null) {
19773                        ps.setCeDataInode(ceDataInode, userId);
19774                    }
19775                }
19776            } catch (InstallerException e) {
19777                Slog.e(TAG, "Failed to find inode for " + packageName + ": " + e);
19778            }
19779        }
19780
19781        prepareAppDataContentsLeafLIF(pkg, userId, flags);
19782    }
19783
19784    private void prepareAppDataContentsLIF(PackageParser.Package pkg, int userId, int flags) {
19785        if (pkg == null) {
19786            Slog.wtf(TAG, "Package was null!", new Throwable());
19787            return;
19788        }
19789        prepareAppDataContentsLeafLIF(pkg, userId, flags);
19790        final int childCount = (pkg.childPackages != null) ? pkg.childPackages.size() : 0;
19791        for (int i = 0; i < childCount; i++) {
19792            prepareAppDataContentsLeafLIF(pkg.childPackages.get(i), userId, flags);
19793        }
19794    }
19795
19796    private void prepareAppDataContentsLeafLIF(PackageParser.Package pkg, int userId, int flags) {
19797        final String volumeUuid = pkg.volumeUuid;
19798        final String packageName = pkg.packageName;
19799        final ApplicationInfo app = pkg.applicationInfo;
19800
19801        if ((flags & StorageManager.FLAG_STORAGE_CE) != 0) {
19802            // Create a native library symlink only if we have native libraries
19803            // and if the native libraries are 32 bit libraries. We do not provide
19804            // this symlink for 64 bit libraries.
19805            if (app.primaryCpuAbi != null && !VMRuntime.is64BitAbi(app.primaryCpuAbi)) {
19806                final String nativeLibPath = app.nativeLibraryDir;
19807                try {
19808                    mInstaller.linkNativeLibraryDirectory(volumeUuid, packageName,
19809                            nativeLibPath, userId);
19810                } catch (InstallerException e) {
19811                    Slog.e(TAG, "Failed to link native for " + packageName + ": " + e);
19812                }
19813            }
19814        }
19815    }
19816
19817    /**
19818     * For system apps on non-FBE devices, this method migrates any existing
19819     * CE/DE data to match the {@code defaultToDeviceProtectedStorage} flag
19820     * requested by the app.
19821     */
19822    private boolean maybeMigrateAppDataLIF(PackageParser.Package pkg, int userId) {
19823        if (pkg.isSystemApp() && !StorageManager.isFileEncryptedNativeOrEmulated()
19824                && PackageManager.APPLY_DEFAULT_TO_DEVICE_PROTECTED_STORAGE) {
19825            final int storageTarget = pkg.applicationInfo.isDefaultToDeviceProtectedStorage()
19826                    ? StorageManager.FLAG_STORAGE_DE : StorageManager.FLAG_STORAGE_CE;
19827            try {
19828                mInstaller.migrateAppData(pkg.volumeUuid, pkg.packageName, userId,
19829                        storageTarget);
19830            } catch (InstallerException e) {
19831                logCriticalInfo(Log.WARN,
19832                        "Failed to migrate " + pkg.packageName + ": " + e.getMessage());
19833            }
19834            return true;
19835        } else {
19836            return false;
19837        }
19838    }
19839
19840    public PackageFreezer freezePackage(String packageName, String killReason) {
19841        return new PackageFreezer(packageName, killReason);
19842    }
19843
19844    public PackageFreezer freezePackageForInstall(String packageName, int installFlags,
19845            String killReason) {
19846        if ((installFlags & PackageManager.INSTALL_DONT_KILL_APP) != 0) {
19847            return new PackageFreezer();
19848        } else {
19849            return freezePackage(packageName, killReason);
19850        }
19851    }
19852
19853    public PackageFreezer freezePackageForDelete(String packageName, int deleteFlags,
19854            String killReason) {
19855        if ((deleteFlags & PackageManager.DELETE_DONT_KILL_APP) != 0) {
19856            return new PackageFreezer();
19857        } else {
19858            return freezePackage(packageName, killReason);
19859        }
19860    }
19861
19862    /**
19863     * Class that freezes and kills the given package upon creation, and
19864     * unfreezes it upon closing. This is typically used when doing surgery on
19865     * app code/data to prevent the app from running while you're working.
19866     */
19867    private class PackageFreezer implements AutoCloseable {
19868        private final String mPackageName;
19869        private final PackageFreezer[] mChildren;
19870
19871        private final boolean mWeFroze;
19872
19873        private final AtomicBoolean mClosed = new AtomicBoolean();
19874        private final CloseGuard mCloseGuard = CloseGuard.get();
19875
19876        /**
19877         * Create and return a stub freezer that doesn't actually do anything,
19878         * typically used when someone requested
19879         * {@link PackageManager#INSTALL_DONT_KILL_APP} or
19880         * {@link PackageManager#DELETE_DONT_KILL_APP}.
19881         */
19882        public PackageFreezer() {
19883            mPackageName = null;
19884            mChildren = null;
19885            mWeFroze = false;
19886            mCloseGuard.open("close");
19887        }
19888
19889        public PackageFreezer(String packageName, String killReason) {
19890            synchronized (mPackages) {
19891                mPackageName = packageName;
19892                mWeFroze = mFrozenPackages.add(mPackageName);
19893
19894                final PackageSetting ps = mSettings.mPackages.get(mPackageName);
19895                if (ps != null) {
19896                    killApplication(ps.name, ps.appId, killReason);
19897                }
19898
19899                final PackageParser.Package p = mPackages.get(packageName);
19900                if (p != null && p.childPackages != null) {
19901                    final int N = p.childPackages.size();
19902                    mChildren = new PackageFreezer[N];
19903                    for (int i = 0; i < N; i++) {
19904                        mChildren[i] = new PackageFreezer(p.childPackages.get(i).packageName,
19905                                killReason);
19906                    }
19907                } else {
19908                    mChildren = null;
19909                }
19910            }
19911            mCloseGuard.open("close");
19912        }
19913
19914        @Override
19915        protected void finalize() throws Throwable {
19916            try {
19917                mCloseGuard.warnIfOpen();
19918                close();
19919            } finally {
19920                super.finalize();
19921            }
19922        }
19923
19924        @Override
19925        public void close() {
19926            mCloseGuard.close();
19927            if (mClosed.compareAndSet(false, true)) {
19928                synchronized (mPackages) {
19929                    if (mWeFroze) {
19930                        mFrozenPackages.remove(mPackageName);
19931                    }
19932
19933                    if (mChildren != null) {
19934                        for (PackageFreezer freezer : mChildren) {
19935                            freezer.close();
19936                        }
19937                    }
19938                }
19939            }
19940        }
19941    }
19942
19943    /**
19944     * Verify that given package is currently frozen.
19945     */
19946    private void checkPackageFrozen(String packageName) {
19947        synchronized (mPackages) {
19948            if (!mFrozenPackages.contains(packageName)) {
19949                Slog.wtf(TAG, "Expected " + packageName + " to be frozen!", new Throwable());
19950            }
19951        }
19952    }
19953
19954    @Override
19955    public int movePackage(final String packageName, final String volumeUuid) {
19956        mContext.enforceCallingOrSelfPermission(android.Manifest.permission.MOVE_PACKAGE, null);
19957
19958        final UserHandle user = new UserHandle(UserHandle.getCallingUserId());
19959        final int moveId = mNextMoveId.getAndIncrement();
19960        mHandler.post(new Runnable() {
19961            @Override
19962            public void run() {
19963                try {
19964                    movePackageInternal(packageName, volumeUuid, moveId, user);
19965                } catch (PackageManagerException e) {
19966                    Slog.w(TAG, "Failed to move " + packageName, e);
19967                    mMoveCallbacks.notifyStatusChanged(moveId,
19968                            PackageManager.MOVE_FAILED_INTERNAL_ERROR);
19969                }
19970            }
19971        });
19972        return moveId;
19973    }
19974
19975    private void movePackageInternal(final String packageName, final String volumeUuid,
19976            final int moveId, UserHandle user) throws PackageManagerException {
19977        final StorageManager storage = mContext.getSystemService(StorageManager.class);
19978        final PackageManager pm = mContext.getPackageManager();
19979
19980        final boolean currentAsec;
19981        final String currentVolumeUuid;
19982        final File codeFile;
19983        final String installerPackageName;
19984        final String packageAbiOverride;
19985        final int appId;
19986        final String seinfo;
19987        final String label;
19988        final int targetSdkVersion;
19989        final PackageFreezer freezer;
19990        final int[] installedUserIds;
19991
19992        // reader
19993        synchronized (mPackages) {
19994            final PackageParser.Package pkg = mPackages.get(packageName);
19995            final PackageSetting ps = mSettings.mPackages.get(packageName);
19996            if (pkg == null || ps == null) {
19997                throw new PackageManagerException(MOVE_FAILED_DOESNT_EXIST, "Missing package");
19998            }
19999
20000            if (pkg.applicationInfo.isSystemApp()) {
20001                throw new PackageManagerException(MOVE_FAILED_SYSTEM_PACKAGE,
20002                        "Cannot move system application");
20003            }
20004
20005            if (pkg.applicationInfo.isExternalAsec()) {
20006                currentAsec = true;
20007                currentVolumeUuid = StorageManager.UUID_PRIMARY_PHYSICAL;
20008            } else if (pkg.applicationInfo.isForwardLocked()) {
20009                currentAsec = true;
20010                currentVolumeUuid = "forward_locked";
20011            } else {
20012                currentAsec = false;
20013                currentVolumeUuid = ps.volumeUuid;
20014
20015                final File probe = new File(pkg.codePath);
20016                final File probeOat = new File(probe, "oat");
20017                if (!probe.isDirectory() || !probeOat.isDirectory()) {
20018                    throw new PackageManagerException(MOVE_FAILED_INTERNAL_ERROR,
20019                            "Move only supported for modern cluster style installs");
20020                }
20021            }
20022
20023            if (Objects.equals(currentVolumeUuid, volumeUuid)) {
20024                throw new PackageManagerException(MOVE_FAILED_INTERNAL_ERROR,
20025                        "Package already moved to " + volumeUuid);
20026            }
20027            if (pkg.applicationInfo.isInternal() && isPackageDeviceAdminOnAnyUser(packageName)) {
20028                throw new PackageManagerException(MOVE_FAILED_DEVICE_ADMIN,
20029                        "Device admin cannot be moved");
20030            }
20031
20032            if (mFrozenPackages.contains(packageName)) {
20033                throw new PackageManagerException(MOVE_FAILED_OPERATION_PENDING,
20034                        "Failed to move already frozen package");
20035            }
20036
20037            codeFile = new File(pkg.codePath);
20038            installerPackageName = ps.installerPackageName;
20039            packageAbiOverride = ps.cpuAbiOverrideString;
20040            appId = UserHandle.getAppId(pkg.applicationInfo.uid);
20041            seinfo = pkg.applicationInfo.seinfo;
20042            label = String.valueOf(pm.getApplicationLabel(pkg.applicationInfo));
20043            targetSdkVersion = pkg.applicationInfo.targetSdkVersion;
20044            freezer = new PackageFreezer(packageName, "movePackageInternal");
20045            installedUserIds = ps.queryInstalledUsers(sUserManager.getUserIds(), true);
20046        }
20047
20048        final Bundle extras = new Bundle();
20049        extras.putString(Intent.EXTRA_PACKAGE_NAME, packageName);
20050        extras.putString(Intent.EXTRA_TITLE, label);
20051        mMoveCallbacks.notifyCreated(moveId, extras);
20052
20053        int installFlags;
20054        final boolean moveCompleteApp;
20055        final File measurePath;
20056
20057        if (Objects.equals(StorageManager.UUID_PRIVATE_INTERNAL, volumeUuid)) {
20058            installFlags = INSTALL_INTERNAL;
20059            moveCompleteApp = !currentAsec;
20060            measurePath = Environment.getDataAppDirectory(volumeUuid);
20061        } else if (Objects.equals(StorageManager.UUID_PRIMARY_PHYSICAL, volumeUuid)) {
20062            installFlags = INSTALL_EXTERNAL;
20063            moveCompleteApp = false;
20064            measurePath = storage.getPrimaryPhysicalVolume().getPath();
20065        } else {
20066            final VolumeInfo volume = storage.findVolumeByUuid(volumeUuid);
20067            if (volume == null || volume.getType() != VolumeInfo.TYPE_PRIVATE
20068                    || !volume.isMountedWritable()) {
20069                freezer.close();
20070                throw new PackageManagerException(MOVE_FAILED_INTERNAL_ERROR,
20071                        "Move location not mounted private volume");
20072            }
20073
20074            Preconditions.checkState(!currentAsec);
20075
20076            installFlags = INSTALL_INTERNAL;
20077            moveCompleteApp = true;
20078            measurePath = Environment.getDataAppDirectory(volumeUuid);
20079        }
20080
20081        final PackageStats stats = new PackageStats(null, -1);
20082        synchronized (mInstaller) {
20083            for (int userId : installedUserIds) {
20084                if (!getPackageSizeInfoLI(packageName, userId, stats)) {
20085                    freezer.close();
20086                    throw new PackageManagerException(MOVE_FAILED_INTERNAL_ERROR,
20087                            "Failed to measure package size");
20088                }
20089            }
20090        }
20091
20092        if (DEBUG_INSTALL) Slog.d(TAG, "Measured code size " + stats.codeSize + ", data size "
20093                + stats.dataSize);
20094
20095        final long startFreeBytes = measurePath.getFreeSpace();
20096        final long sizeBytes;
20097        if (moveCompleteApp) {
20098            sizeBytes = stats.codeSize + stats.dataSize;
20099        } else {
20100            sizeBytes = stats.codeSize;
20101        }
20102
20103        if (sizeBytes > storage.getStorageBytesUntilLow(measurePath)) {
20104            freezer.close();
20105            throw new PackageManagerException(MOVE_FAILED_INTERNAL_ERROR,
20106                    "Not enough free space to move");
20107        }
20108
20109        mMoveCallbacks.notifyStatusChanged(moveId, 10);
20110
20111        final CountDownLatch installedLatch = new CountDownLatch(1);
20112        final IPackageInstallObserver2 installObserver = new IPackageInstallObserver2.Stub() {
20113            @Override
20114            public void onUserActionRequired(Intent intent) throws RemoteException {
20115                throw new IllegalStateException();
20116            }
20117
20118            @Override
20119            public void onPackageInstalled(String basePackageName, int returnCode, String msg,
20120                    Bundle extras) throws RemoteException {
20121                if (DEBUG_INSTALL) Slog.d(TAG, "Install result for move: "
20122                        + PackageManager.installStatusToString(returnCode, msg));
20123
20124                installedLatch.countDown();
20125                freezer.close();
20126
20127                final int status = PackageManager.installStatusToPublicStatus(returnCode);
20128                switch (status) {
20129                    case PackageInstaller.STATUS_SUCCESS:
20130                        mMoveCallbacks.notifyStatusChanged(moveId,
20131                                PackageManager.MOVE_SUCCEEDED);
20132                        break;
20133                    case PackageInstaller.STATUS_FAILURE_STORAGE:
20134                        mMoveCallbacks.notifyStatusChanged(moveId,
20135                                PackageManager.MOVE_FAILED_INSUFFICIENT_STORAGE);
20136                        break;
20137                    default:
20138                        mMoveCallbacks.notifyStatusChanged(moveId,
20139                                PackageManager.MOVE_FAILED_INTERNAL_ERROR);
20140                        break;
20141                }
20142            }
20143        };
20144
20145        final MoveInfo move;
20146        if (moveCompleteApp) {
20147            // Kick off a thread to report progress estimates
20148            new Thread() {
20149                @Override
20150                public void run() {
20151                    while (true) {
20152                        try {
20153                            if (installedLatch.await(1, TimeUnit.SECONDS)) {
20154                                break;
20155                            }
20156                        } catch (InterruptedException ignored) {
20157                        }
20158
20159                        final long deltaFreeBytes = startFreeBytes - measurePath.getFreeSpace();
20160                        final int progress = 10 + (int) MathUtils.constrain(
20161                                ((deltaFreeBytes * 80) / sizeBytes), 0, 80);
20162                        mMoveCallbacks.notifyStatusChanged(moveId, progress);
20163                    }
20164                }
20165            }.start();
20166
20167            final String dataAppName = codeFile.getName();
20168            move = new MoveInfo(moveId, currentVolumeUuid, volumeUuid, packageName,
20169                    dataAppName, appId, seinfo, targetSdkVersion);
20170        } else {
20171            move = null;
20172        }
20173
20174        installFlags |= PackageManager.INSTALL_REPLACE_EXISTING;
20175
20176        final Message msg = mHandler.obtainMessage(INIT_COPY);
20177        final OriginInfo origin = OriginInfo.fromExistingFile(codeFile);
20178        final InstallParams params = new InstallParams(origin, move, installObserver, installFlags,
20179                installerPackageName, volumeUuid, null /*verificationInfo*/, user,
20180                packageAbiOverride, null /*grantedPermissions*/, null /*certificates*/);
20181        params.setTraceMethod("movePackage").setTraceCookie(System.identityHashCode(params));
20182        msg.obj = params;
20183
20184        Trace.asyncTraceBegin(TRACE_TAG_PACKAGE_MANAGER, "movePackage",
20185                System.identityHashCode(msg.obj));
20186        Trace.asyncTraceBegin(TRACE_TAG_PACKAGE_MANAGER, "queueInstall",
20187                System.identityHashCode(msg.obj));
20188
20189        mHandler.sendMessage(msg);
20190    }
20191
20192    @Override
20193    public int movePrimaryStorage(String volumeUuid) throws RemoteException {
20194        mContext.enforceCallingOrSelfPermission(android.Manifest.permission.MOVE_PACKAGE, null);
20195
20196        final int realMoveId = mNextMoveId.getAndIncrement();
20197        final Bundle extras = new Bundle();
20198        extras.putString(VolumeRecord.EXTRA_FS_UUID, volumeUuid);
20199        mMoveCallbacks.notifyCreated(realMoveId, extras);
20200
20201        final IPackageMoveObserver callback = new IPackageMoveObserver.Stub() {
20202            @Override
20203            public void onCreated(int moveId, Bundle extras) {
20204                // Ignored
20205            }
20206
20207            @Override
20208            public void onStatusChanged(int moveId, int status, long estMillis) {
20209                mMoveCallbacks.notifyStatusChanged(realMoveId, status, estMillis);
20210            }
20211        };
20212
20213        final StorageManager storage = mContext.getSystemService(StorageManager.class);
20214        storage.setPrimaryStorageUuid(volumeUuid, callback);
20215        return realMoveId;
20216    }
20217
20218    @Override
20219    public int getMoveStatus(int moveId) {
20220        mContext.enforceCallingOrSelfPermission(
20221                android.Manifest.permission.MOUNT_UNMOUNT_FILESYSTEMS, null);
20222        return mMoveCallbacks.mLastStatus.get(moveId);
20223    }
20224
20225    @Override
20226    public void registerMoveCallback(IPackageMoveObserver callback) {
20227        mContext.enforceCallingOrSelfPermission(
20228                android.Manifest.permission.MOUNT_UNMOUNT_FILESYSTEMS, null);
20229        mMoveCallbacks.register(callback);
20230    }
20231
20232    @Override
20233    public void unregisterMoveCallback(IPackageMoveObserver callback) {
20234        mContext.enforceCallingOrSelfPermission(
20235                android.Manifest.permission.MOUNT_UNMOUNT_FILESYSTEMS, null);
20236        mMoveCallbacks.unregister(callback);
20237    }
20238
20239    @Override
20240    public boolean setInstallLocation(int loc) {
20241        mContext.enforceCallingOrSelfPermission(android.Manifest.permission.WRITE_SECURE_SETTINGS,
20242                null);
20243        if (getInstallLocation() == loc) {
20244            return true;
20245        }
20246        if (loc == PackageHelper.APP_INSTALL_AUTO || loc == PackageHelper.APP_INSTALL_INTERNAL
20247                || loc == PackageHelper.APP_INSTALL_EXTERNAL) {
20248            android.provider.Settings.Global.putInt(mContext.getContentResolver(),
20249                    android.provider.Settings.Global.DEFAULT_INSTALL_LOCATION, loc);
20250            return true;
20251        }
20252        return false;
20253   }
20254
20255    @Override
20256    public int getInstallLocation() {
20257        return android.provider.Settings.Global.getInt(mContext.getContentResolver(),
20258                android.provider.Settings.Global.DEFAULT_INSTALL_LOCATION,
20259                PackageHelper.APP_INSTALL_AUTO);
20260    }
20261
20262    /** Called by UserManagerService */
20263    void cleanUpUser(UserManagerService userManager, int userHandle) {
20264        synchronized (mPackages) {
20265            mDirtyUsers.remove(userHandle);
20266            mUserNeedsBadging.delete(userHandle);
20267            mSettings.removeUserLPw(userHandle);
20268            mPendingBroadcasts.remove(userHandle);
20269            mEphemeralApplicationRegistry.onUserRemovedLPw(userHandle);
20270            removeUnusedPackagesLPw(userManager, userHandle);
20271        }
20272    }
20273
20274    /**
20275     * We're removing userHandle and would like to remove any downloaded packages
20276     * that are no longer in use by any other user.
20277     * @param userHandle the user being removed
20278     */
20279    private void removeUnusedPackagesLPw(UserManagerService userManager, final int userHandle) {
20280        final boolean DEBUG_CLEAN_APKS = false;
20281        int [] users = userManager.getUserIds();
20282        Iterator<PackageSetting> psit = mSettings.mPackages.values().iterator();
20283        while (psit.hasNext()) {
20284            PackageSetting ps = psit.next();
20285            if (ps.pkg == null) {
20286                continue;
20287            }
20288            final String packageName = ps.pkg.packageName;
20289            // Skip over if system app
20290            if ((ps.pkgFlags & ApplicationInfo.FLAG_SYSTEM) != 0) {
20291                continue;
20292            }
20293            if (DEBUG_CLEAN_APKS) {
20294                Slog.i(TAG, "Checking package " + packageName);
20295            }
20296            boolean keep = shouldKeepUninstalledPackageLPr(packageName);
20297            if (keep) {
20298                if (DEBUG_CLEAN_APKS) {
20299                    Slog.i(TAG, "  Keeping package " + packageName + " - requested by DO");
20300                }
20301            } else {
20302                for (int i = 0; i < users.length; i++) {
20303                    if (users[i] != userHandle && ps.getInstalled(users[i])) {
20304                        keep = true;
20305                        if (DEBUG_CLEAN_APKS) {
20306                            Slog.i(TAG, "  Keeping package " + packageName + " for user "
20307                                    + users[i]);
20308                        }
20309                        break;
20310                    }
20311                }
20312            }
20313            if (!keep) {
20314                if (DEBUG_CLEAN_APKS) {
20315                    Slog.i(TAG, "  Removing package " + packageName);
20316                }
20317                mHandler.post(new Runnable() {
20318                    public void run() {
20319                        deletePackageX(packageName, userHandle, 0);
20320                    } //end run
20321                });
20322            }
20323        }
20324    }
20325
20326    /** Called by UserManagerService */
20327    void createNewUser(int userId) {
20328        synchronized (mInstallLock) {
20329            mSettings.createNewUserLI(this, mInstaller, userId);
20330        }
20331        synchronized (mPackages) {
20332            scheduleWritePackageRestrictionsLocked(userId);
20333            scheduleWritePackageListLocked(userId);
20334            applyFactoryDefaultBrowserLPw(userId);
20335            primeDomainVerificationsLPw(userId);
20336        }
20337    }
20338
20339    void onBeforeUserStartUninitialized(final int userId) {
20340        synchronized (mPackages) {
20341            if (mSettings.areDefaultRuntimePermissionsGrantedLPr(userId)) {
20342                return;
20343            }
20344        }
20345        mDefaultPermissionPolicy.grantDefaultPermissions(userId);
20346        // If permission review for legacy apps is required, we represent
20347        // dagerous permissions for such apps as always granted runtime
20348        // permissions to keep per user flag state whether review is needed.
20349        // Hence, if a new user is added we have to propagate dangerous
20350        // permission grants for these legacy apps.
20351        if (Build.PERMISSIONS_REVIEW_REQUIRED) {
20352            updatePermissionsLPw(null, null, UPDATE_PERMISSIONS_ALL
20353                    | UPDATE_PERMISSIONS_REPLACE_ALL);
20354        }
20355    }
20356
20357    @Override
20358    public VerifierDeviceIdentity getVerifierDeviceIdentity() throws RemoteException {
20359        mContext.enforceCallingOrSelfPermission(
20360                android.Manifest.permission.PACKAGE_VERIFICATION_AGENT,
20361                "Only package verification agents can read the verifier device identity");
20362
20363        synchronized (mPackages) {
20364            return mSettings.getVerifierDeviceIdentityLPw();
20365        }
20366    }
20367
20368    @Override
20369    public void setPermissionEnforced(String permission, boolean enforced) {
20370        // TODO: Now that we no longer change GID for storage, this should to away.
20371        mContext.enforceCallingOrSelfPermission(Manifest.permission.GRANT_RUNTIME_PERMISSIONS,
20372                "setPermissionEnforced");
20373        if (READ_EXTERNAL_STORAGE.equals(permission)) {
20374            synchronized (mPackages) {
20375                if (mSettings.mReadExternalStorageEnforced == null
20376                        || mSettings.mReadExternalStorageEnforced != enforced) {
20377                    mSettings.mReadExternalStorageEnforced = enforced;
20378                    mSettings.writeLPr();
20379                }
20380            }
20381            // kill any non-foreground processes so we restart them and
20382            // grant/revoke the GID.
20383            final IActivityManager am = ActivityManagerNative.getDefault();
20384            if (am != null) {
20385                final long token = Binder.clearCallingIdentity();
20386                try {
20387                    am.killProcessesBelowForeground("setPermissionEnforcement");
20388                } catch (RemoteException e) {
20389                } finally {
20390                    Binder.restoreCallingIdentity(token);
20391                }
20392            }
20393        } else {
20394            throw new IllegalArgumentException("No selective enforcement for " + permission);
20395        }
20396    }
20397
20398    @Override
20399    @Deprecated
20400    public boolean isPermissionEnforced(String permission) {
20401        return true;
20402    }
20403
20404    @Override
20405    public boolean isStorageLow() {
20406        final long token = Binder.clearCallingIdentity();
20407        try {
20408            final DeviceStorageMonitorInternal
20409                    dsm = LocalServices.getService(DeviceStorageMonitorInternal.class);
20410            if (dsm != null) {
20411                return dsm.isMemoryLow();
20412            } else {
20413                return false;
20414            }
20415        } finally {
20416            Binder.restoreCallingIdentity(token);
20417        }
20418    }
20419
20420    @Override
20421    public IPackageInstaller getPackageInstaller() {
20422        return mInstallerService;
20423    }
20424
20425    private boolean userNeedsBadging(int userId) {
20426        int index = mUserNeedsBadging.indexOfKey(userId);
20427        if (index < 0) {
20428            final UserInfo userInfo;
20429            final long token = Binder.clearCallingIdentity();
20430            try {
20431                userInfo = sUserManager.getUserInfo(userId);
20432            } finally {
20433                Binder.restoreCallingIdentity(token);
20434            }
20435            final boolean b;
20436            if (userInfo != null && userInfo.isManagedProfile()) {
20437                b = true;
20438            } else {
20439                b = false;
20440            }
20441            mUserNeedsBadging.put(userId, b);
20442            return b;
20443        }
20444        return mUserNeedsBadging.valueAt(index);
20445    }
20446
20447    @Override
20448    public KeySet getKeySetByAlias(String packageName, String alias) {
20449        if (packageName == null || alias == null) {
20450            return null;
20451        }
20452        synchronized(mPackages) {
20453            final PackageParser.Package pkg = mPackages.get(packageName);
20454            if (pkg == null) {
20455                Slog.w(TAG, "KeySet requested for unknown package: " + packageName);
20456                throw new IllegalArgumentException("Unknown package: " + packageName);
20457            }
20458            KeySetManagerService ksms = mSettings.mKeySetManagerService;
20459            return new KeySet(ksms.getKeySetByAliasAndPackageNameLPr(packageName, alias));
20460        }
20461    }
20462
20463    @Override
20464    public KeySet getSigningKeySet(String packageName) {
20465        if (packageName == null) {
20466            return null;
20467        }
20468        synchronized(mPackages) {
20469            final PackageParser.Package pkg = mPackages.get(packageName);
20470            if (pkg == null) {
20471                Slog.w(TAG, "KeySet requested for unknown package: " + packageName);
20472                throw new IllegalArgumentException("Unknown package: " + packageName);
20473            }
20474            if (pkg.applicationInfo.uid != Binder.getCallingUid()
20475                    && Process.SYSTEM_UID != Binder.getCallingUid()) {
20476                throw new SecurityException("May not access signing KeySet of other apps.");
20477            }
20478            KeySetManagerService ksms = mSettings.mKeySetManagerService;
20479            return new KeySet(ksms.getSigningKeySetByPackageNameLPr(packageName));
20480        }
20481    }
20482
20483    @Override
20484    public boolean isPackageSignedByKeySet(String packageName, KeySet ks) {
20485        if (packageName == null || ks == null) {
20486            return false;
20487        }
20488        synchronized(mPackages) {
20489            final PackageParser.Package pkg = mPackages.get(packageName);
20490            if (pkg == null) {
20491                Slog.w(TAG, "KeySet requested for unknown package: " + packageName);
20492                throw new IllegalArgumentException("Unknown package: " + packageName);
20493            }
20494            IBinder ksh = ks.getToken();
20495            if (ksh instanceof KeySetHandle) {
20496                KeySetManagerService ksms = mSettings.mKeySetManagerService;
20497                return ksms.packageIsSignedByLPr(packageName, (KeySetHandle) ksh);
20498            }
20499            return false;
20500        }
20501    }
20502
20503    @Override
20504    public boolean isPackageSignedByKeySetExactly(String packageName, KeySet ks) {
20505        if (packageName == null || ks == null) {
20506            return false;
20507        }
20508        synchronized(mPackages) {
20509            final PackageParser.Package pkg = mPackages.get(packageName);
20510            if (pkg == null) {
20511                Slog.w(TAG, "KeySet requested for unknown package: " + packageName);
20512                throw new IllegalArgumentException("Unknown package: " + packageName);
20513            }
20514            IBinder ksh = ks.getToken();
20515            if (ksh instanceof KeySetHandle) {
20516                KeySetManagerService ksms = mSettings.mKeySetManagerService;
20517                return ksms.packageIsSignedByExactlyLPr(packageName, (KeySetHandle) ksh);
20518            }
20519            return false;
20520        }
20521    }
20522
20523    private void deletePackageIfUnusedLPr(final String packageName) {
20524        PackageSetting ps = mSettings.mPackages.get(packageName);
20525        if (ps == null) {
20526            return;
20527        }
20528        if (!ps.isAnyInstalled(sUserManager.getUserIds())) {
20529            // TODO Implement atomic delete if package is unused
20530            // It is currently possible that the package will be deleted even if it is installed
20531            // after this method returns.
20532            mHandler.post(new Runnable() {
20533                public void run() {
20534                    deletePackageX(packageName, 0, PackageManager.DELETE_ALL_USERS);
20535                }
20536            });
20537        }
20538    }
20539
20540    /**
20541     * Check and throw if the given before/after packages would be considered a
20542     * downgrade.
20543     */
20544    private static void checkDowngrade(PackageParser.Package before, PackageInfoLite after)
20545            throws PackageManagerException {
20546        if (after.versionCode < before.mVersionCode) {
20547            throw new PackageManagerException(INSTALL_FAILED_VERSION_DOWNGRADE,
20548                    "Update version code " + after.versionCode + " is older than current "
20549                    + before.mVersionCode);
20550        } else if (after.versionCode == before.mVersionCode) {
20551            if (after.baseRevisionCode < before.baseRevisionCode) {
20552                throw new PackageManagerException(INSTALL_FAILED_VERSION_DOWNGRADE,
20553                        "Update base revision code " + after.baseRevisionCode
20554                        + " is older than current " + before.baseRevisionCode);
20555            }
20556
20557            if (!ArrayUtils.isEmpty(after.splitNames)) {
20558                for (int i = 0; i < after.splitNames.length; i++) {
20559                    final String splitName = after.splitNames[i];
20560                    final int j = ArrayUtils.indexOf(before.splitNames, splitName);
20561                    if (j != -1) {
20562                        if (after.splitRevisionCodes[i] < before.splitRevisionCodes[j]) {
20563                            throw new PackageManagerException(INSTALL_FAILED_VERSION_DOWNGRADE,
20564                                    "Update split " + splitName + " revision code "
20565                                    + after.splitRevisionCodes[i] + " is older than current "
20566                                    + before.splitRevisionCodes[j]);
20567                        }
20568                    }
20569                }
20570            }
20571        }
20572    }
20573
20574    private static class MoveCallbacks extends Handler {
20575        private static final int MSG_CREATED = 1;
20576        private static final int MSG_STATUS_CHANGED = 2;
20577
20578        private final RemoteCallbackList<IPackageMoveObserver>
20579                mCallbacks = new RemoteCallbackList<>();
20580
20581        private final SparseIntArray mLastStatus = new SparseIntArray();
20582
20583        public MoveCallbacks(Looper looper) {
20584            super(looper);
20585        }
20586
20587        public void register(IPackageMoveObserver callback) {
20588            mCallbacks.register(callback);
20589        }
20590
20591        public void unregister(IPackageMoveObserver callback) {
20592            mCallbacks.unregister(callback);
20593        }
20594
20595        @Override
20596        public void handleMessage(Message msg) {
20597            final SomeArgs args = (SomeArgs) msg.obj;
20598            final int n = mCallbacks.beginBroadcast();
20599            for (int i = 0; i < n; i++) {
20600                final IPackageMoveObserver callback = mCallbacks.getBroadcastItem(i);
20601                try {
20602                    invokeCallback(callback, msg.what, args);
20603                } catch (RemoteException ignored) {
20604                }
20605            }
20606            mCallbacks.finishBroadcast();
20607            args.recycle();
20608        }
20609
20610        private void invokeCallback(IPackageMoveObserver callback, int what, SomeArgs args)
20611                throws RemoteException {
20612            switch (what) {
20613                case MSG_CREATED: {
20614                    callback.onCreated(args.argi1, (Bundle) args.arg2);
20615                    break;
20616                }
20617                case MSG_STATUS_CHANGED: {
20618                    callback.onStatusChanged(args.argi1, args.argi2, (long) args.arg3);
20619                    break;
20620                }
20621            }
20622        }
20623
20624        private void notifyCreated(int moveId, Bundle extras) {
20625            Slog.v(TAG, "Move " + moveId + " created " + extras.toString());
20626
20627            final SomeArgs args = SomeArgs.obtain();
20628            args.argi1 = moveId;
20629            args.arg2 = extras;
20630            obtainMessage(MSG_CREATED, args).sendToTarget();
20631        }
20632
20633        private void notifyStatusChanged(int moveId, int status) {
20634            notifyStatusChanged(moveId, status, -1);
20635        }
20636
20637        private void notifyStatusChanged(int moveId, int status, long estMillis) {
20638            Slog.v(TAG, "Move " + moveId + " status " + status);
20639
20640            final SomeArgs args = SomeArgs.obtain();
20641            args.argi1 = moveId;
20642            args.argi2 = status;
20643            args.arg3 = estMillis;
20644            obtainMessage(MSG_STATUS_CHANGED, args).sendToTarget();
20645
20646            synchronized (mLastStatus) {
20647                mLastStatus.put(moveId, status);
20648            }
20649        }
20650    }
20651
20652    private final static class OnPermissionChangeListeners extends Handler {
20653        private static final int MSG_ON_PERMISSIONS_CHANGED = 1;
20654
20655        private final RemoteCallbackList<IOnPermissionsChangeListener> mPermissionListeners =
20656                new RemoteCallbackList<>();
20657
20658        public OnPermissionChangeListeners(Looper looper) {
20659            super(looper);
20660        }
20661
20662        @Override
20663        public void handleMessage(Message msg) {
20664            switch (msg.what) {
20665                case MSG_ON_PERMISSIONS_CHANGED: {
20666                    final int uid = msg.arg1;
20667                    handleOnPermissionsChanged(uid);
20668                } break;
20669            }
20670        }
20671
20672        public void addListenerLocked(IOnPermissionsChangeListener listener) {
20673            mPermissionListeners.register(listener);
20674
20675        }
20676
20677        public void removeListenerLocked(IOnPermissionsChangeListener listener) {
20678            mPermissionListeners.unregister(listener);
20679        }
20680
20681        public void onPermissionsChanged(int uid) {
20682            if (mPermissionListeners.getRegisteredCallbackCount() > 0) {
20683                obtainMessage(MSG_ON_PERMISSIONS_CHANGED, uid, 0).sendToTarget();
20684            }
20685        }
20686
20687        private void handleOnPermissionsChanged(int uid) {
20688            final int count = mPermissionListeners.beginBroadcast();
20689            try {
20690                for (int i = 0; i < count; i++) {
20691                    IOnPermissionsChangeListener callback = mPermissionListeners
20692                            .getBroadcastItem(i);
20693                    try {
20694                        callback.onPermissionsChanged(uid);
20695                    } catch (RemoteException e) {
20696                        Log.e(TAG, "Permission listener is dead", e);
20697                    }
20698                }
20699            } finally {
20700                mPermissionListeners.finishBroadcast();
20701            }
20702        }
20703    }
20704
20705    private class PackageManagerInternalImpl extends PackageManagerInternal {
20706        @Override
20707        public void setLocationPackagesProvider(PackagesProvider provider) {
20708            synchronized (mPackages) {
20709                mDefaultPermissionPolicy.setLocationPackagesProviderLPw(provider);
20710            }
20711        }
20712
20713        @Override
20714        public void setVoiceInteractionPackagesProvider(PackagesProvider provider) {
20715            synchronized (mPackages) {
20716                mDefaultPermissionPolicy.setVoiceInteractionPackagesProviderLPw(provider);
20717            }
20718        }
20719
20720        @Override
20721        public void setSmsAppPackagesProvider(PackagesProvider provider) {
20722            synchronized (mPackages) {
20723                mDefaultPermissionPolicy.setSmsAppPackagesProviderLPw(provider);
20724            }
20725        }
20726
20727        @Override
20728        public void setDialerAppPackagesProvider(PackagesProvider provider) {
20729            synchronized (mPackages) {
20730                mDefaultPermissionPolicy.setDialerAppPackagesProviderLPw(provider);
20731            }
20732        }
20733
20734        @Override
20735        public void setSimCallManagerPackagesProvider(PackagesProvider provider) {
20736            synchronized (mPackages) {
20737                mDefaultPermissionPolicy.setSimCallManagerPackagesProviderLPw(provider);
20738            }
20739        }
20740
20741        @Override
20742        public void setSyncAdapterPackagesprovider(SyncAdapterPackagesProvider provider) {
20743            synchronized (mPackages) {
20744                mDefaultPermissionPolicy.setSyncAdapterPackagesProviderLPw(provider);
20745            }
20746        }
20747
20748        @Override
20749        public void grantDefaultPermissionsToDefaultSmsApp(String packageName, int userId) {
20750            synchronized (mPackages) {
20751                mDefaultPermissionPolicy.grantDefaultPermissionsToDefaultSmsAppLPr(
20752                        packageName, userId);
20753            }
20754        }
20755
20756        @Override
20757        public void grantDefaultPermissionsToDefaultDialerApp(String packageName, int userId) {
20758            synchronized (mPackages) {
20759                mSettings.setDefaultDialerPackageNameLPw(packageName, userId);
20760                mDefaultPermissionPolicy.grantDefaultPermissionsToDefaultDialerAppLPr(
20761                        packageName, userId);
20762            }
20763        }
20764
20765        @Override
20766        public void grantDefaultPermissionsToDefaultSimCallManager(String packageName, int userId) {
20767            synchronized (mPackages) {
20768                mDefaultPermissionPolicy.grantDefaultPermissionsToDefaultSimCallManagerLPr(
20769                        packageName, userId);
20770            }
20771        }
20772
20773        @Override
20774        public void setKeepUninstalledPackages(final List<String> packageList) {
20775            Preconditions.checkNotNull(packageList);
20776            List<String> removedFromList = null;
20777            synchronized (mPackages) {
20778                if (mKeepUninstalledPackages != null) {
20779                    final int packagesCount = mKeepUninstalledPackages.size();
20780                    for (int i = 0; i < packagesCount; i++) {
20781                        String oldPackage = mKeepUninstalledPackages.get(i);
20782                        if (packageList != null && packageList.contains(oldPackage)) {
20783                            continue;
20784                        }
20785                        if (removedFromList == null) {
20786                            removedFromList = new ArrayList<>();
20787                        }
20788                        removedFromList.add(oldPackage);
20789                    }
20790                }
20791                mKeepUninstalledPackages = new ArrayList<>(packageList);
20792                if (removedFromList != null) {
20793                    final int removedCount = removedFromList.size();
20794                    for (int i = 0; i < removedCount; i++) {
20795                        deletePackageIfUnusedLPr(removedFromList.get(i));
20796                    }
20797                }
20798            }
20799        }
20800
20801        @Override
20802        public boolean isPermissionsReviewRequired(String packageName, int userId) {
20803            synchronized (mPackages) {
20804                // If we do not support permission review, done.
20805                if (!Build.PERMISSIONS_REVIEW_REQUIRED) {
20806                    return false;
20807                }
20808
20809                PackageSetting packageSetting = mSettings.mPackages.get(packageName);
20810                if (packageSetting == null) {
20811                    return false;
20812                }
20813
20814                // Permission review applies only to apps not supporting the new permission model.
20815                if (packageSetting.pkg.applicationInfo.targetSdkVersion >= Build.VERSION_CODES.M) {
20816                    return false;
20817                }
20818
20819                // Legacy apps have the permission and get user consent on launch.
20820                PermissionsState permissionsState = packageSetting.getPermissionsState();
20821                return permissionsState.isPermissionReviewRequired(userId);
20822            }
20823        }
20824
20825        @Override
20826        public ApplicationInfo getApplicationInfo(String packageName, int userId) {
20827            return PackageManagerService.this.getApplicationInfo(packageName, 0 /*flags*/, userId);
20828        }
20829
20830        @Override
20831        public ComponentName getHomeActivitiesAsUser(List<ResolveInfo> allHomeCandidates,
20832                int userId) {
20833            return PackageManagerService.this.getHomeActivitiesAsUser(allHomeCandidates, userId);
20834        }
20835
20836        @Override
20837        public void setDeviceAndProfileOwnerPackages(
20838                int deviceOwnerUserId, String deviceOwnerPackage,
20839                SparseArray<String> profileOwnerPackages) {
20840            mProtectedPackages.setDeviceAndProfileOwnerPackages(
20841                    deviceOwnerUserId, deviceOwnerPackage, profileOwnerPackages);
20842        }
20843
20844        @Override
20845        public boolean canPackageBeWiped(int userId, String packageName) {
20846            return mProtectedPackages.canPackageBeWiped(userId,
20847                    packageName);
20848        }
20849    }
20850
20851    @Override
20852    public void grantDefaultPermissionsToEnabledCarrierApps(String[] packageNames, int userId) {
20853        enforceSystemOrPhoneCaller("grantPermissionsToEnabledCarrierApps");
20854        synchronized (mPackages) {
20855            final long identity = Binder.clearCallingIdentity();
20856            try {
20857                mDefaultPermissionPolicy.grantDefaultPermissionsToEnabledCarrierAppsLPr(
20858                        packageNames, userId);
20859            } finally {
20860                Binder.restoreCallingIdentity(identity);
20861            }
20862        }
20863    }
20864
20865    private static void enforceSystemOrPhoneCaller(String tag) {
20866        int callingUid = Binder.getCallingUid();
20867        if (callingUid != Process.PHONE_UID && callingUid != Process.SYSTEM_UID) {
20868            throw new SecurityException(
20869                    "Cannot call " + tag + " from UID " + callingUid);
20870        }
20871    }
20872
20873    boolean isHistoricalPackageUsageAvailable() {
20874        return mPackageUsage.isHistoricalPackageUsageAvailable();
20875    }
20876
20877    /**
20878     * Return a <b>copy</b> of the collection of packages known to the package manager.
20879     * @return A copy of the values of mPackages.
20880     */
20881    Collection<PackageParser.Package> getPackages() {
20882        synchronized (mPackages) {
20883            return new ArrayList<>(mPackages.values());
20884        }
20885    }
20886
20887    /**
20888     * Logs process start information (including base APK hash) to the security log.
20889     * @hide
20890     */
20891    public void logAppProcessStartIfNeeded(String processName, int uid, String seinfo,
20892            String apkFile, int pid) {
20893        if (!SecurityLog.isLoggingEnabled()) {
20894            return;
20895        }
20896        Bundle data = new Bundle();
20897        data.putLong("startTimestamp", System.currentTimeMillis());
20898        data.putString("processName", processName);
20899        data.putInt("uid", uid);
20900        data.putString("seinfo", seinfo);
20901        data.putString("apkFile", apkFile);
20902        data.putInt("pid", pid);
20903        Message msg = mProcessLoggingHandler.obtainMessage(
20904                ProcessLoggingHandler.LOG_APP_PROCESS_START_MSG);
20905        msg.setData(data);
20906        mProcessLoggingHandler.sendMessage(msg);
20907    }
20908}
20909