PackageManagerService.java revision 4504b0e40c8e1bca6d826faf04526bcf01b673d7
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.EphemeralDigest;
129import android.content.pm.EphemeralResolveInfo.EphemeralResolveIntentInfo;
130import android.content.pm.FeatureInfo;
131import android.content.pm.IOnPermissionsChangeListener;
132import android.content.pm.IPackageDataObserver;
133import android.content.pm.IPackageDeleteObserver;
134import android.content.pm.IPackageDeleteObserver2;
135import android.content.pm.IPackageInstallObserver2;
136import android.content.pm.IPackageInstaller;
137import android.content.pm.IPackageManager;
138import android.content.pm.IPackageMoveObserver;
139import android.content.pm.IPackageStatsObserver;
140import android.content.pm.InstrumentationInfo;
141import android.content.pm.IntentFilterVerificationInfo;
142import android.content.pm.KeySet;
143import android.content.pm.PackageCleanItem;
144import android.content.pm.PackageInfo;
145import android.content.pm.PackageInfoLite;
146import android.content.pm.PackageInstaller;
147import android.content.pm.PackageManager;
148import android.content.pm.PackageManager.LegacyPackageDeleteObserver;
149import android.content.pm.PackageManagerInternal;
150import android.content.pm.PackageParser;
151import android.content.pm.PackageParser.ActivityIntentInfo;
152import android.content.pm.PackageParser.PackageLite;
153import android.content.pm.PackageParser.PackageParserException;
154import android.content.pm.PackageStats;
155import android.content.pm.PackageUserState;
156import android.content.pm.ParceledListSlice;
157import android.content.pm.PermissionGroupInfo;
158import android.content.pm.PermissionInfo;
159import android.content.pm.ProviderInfo;
160import android.content.pm.ResolveInfo;
161import android.content.pm.ServiceInfo;
162import android.content.pm.Signature;
163import android.content.pm.UserInfo;
164import android.content.pm.VerifierDeviceIdentity;
165import android.content.pm.VerifierInfo;
166import android.content.res.Resources;
167import android.graphics.Bitmap;
168import android.hardware.display.DisplayManager;
169import android.net.Uri;
170import android.os.Binder;
171import android.os.Build;
172import android.os.Bundle;
173import android.os.Debug;
174import android.os.Environment;
175import android.os.Environment.UserEnvironment;
176import android.os.FileUtils;
177import android.os.Handler;
178import android.os.IBinder;
179import android.os.Looper;
180import android.os.Message;
181import android.os.Parcel;
182import android.os.ParcelFileDescriptor;
183import android.os.Process;
184import android.os.RemoteCallbackList;
185import android.os.RemoteException;
186import android.os.ResultReceiver;
187import android.os.SELinux;
188import android.os.ServiceManager;
189import android.os.SystemClock;
190import android.os.SystemProperties;
191import android.os.Trace;
192import android.os.UserHandle;
193import android.os.UserManager;
194import android.os.UserManagerInternal;
195import android.os.storage.IMountService;
196import android.os.storage.MountServiceInternal;
197import android.os.storage.StorageEventListener;
198import android.os.storage.StorageManager;
199import android.os.storage.VolumeInfo;
200import android.os.storage.VolumeRecord;
201import android.provider.Settings.Global;
202import android.security.KeyStore;
203import android.security.SystemKeyStore;
204import android.system.ErrnoException;
205import android.system.Os;
206import android.text.TextUtils;
207import android.text.format.DateUtils;
208import android.util.ArrayMap;
209import android.util.ArraySet;
210import android.util.AtomicFile;
211import android.util.DisplayMetrics;
212import android.util.EventLog;
213import android.util.ExceptionUtils;
214import android.util.Log;
215import android.util.LogPrinter;
216import android.util.MathUtils;
217import android.util.PrintStreamPrinter;
218import android.util.Slog;
219import android.util.SparseArray;
220import android.util.SparseBooleanArray;
221import android.util.SparseIntArray;
222import android.util.Xml;
223import android.util.jar.StrictJarFile;
224import android.view.Display;
225
226import com.android.internal.R;
227import com.android.internal.annotations.GuardedBy;
228import com.android.internal.app.IMediaContainerService;
229import com.android.internal.app.ResolverActivity;
230import com.android.internal.content.NativeLibraryHelper;
231import com.android.internal.content.PackageHelper;
232import com.android.internal.logging.MetricsLogger;
233import com.android.internal.os.IParcelFileDescriptorFactory;
234import com.android.internal.os.InstallerConnection.InstallerException;
235import com.android.internal.os.SomeArgs;
236import com.android.internal.os.Zygote;
237import com.android.internal.telephony.CarrierAppUtils;
238import com.android.internal.util.ArrayUtils;
239import com.android.internal.util.FastPrintWriter;
240import com.android.internal.util.FastXmlSerializer;
241import com.android.internal.util.IndentingPrintWriter;
242import com.android.internal.util.Preconditions;
243import com.android.internal.util.XmlUtils;
244import com.android.server.AttributeCache;
245import com.android.server.EventLogTags;
246import com.android.server.FgThread;
247import com.android.server.IntentResolver;
248import com.android.server.LocalServices;
249import com.android.server.ServiceThread;
250import com.android.server.SystemConfig;
251import com.android.server.Watchdog;
252import com.android.server.net.NetworkPolicyManagerInternal;
253import com.android.server.pm.PermissionsState.PermissionState;
254import com.android.server.pm.Settings.DatabaseVersion;
255import com.android.server.pm.Settings.VersionInfo;
256import com.android.server.storage.DeviceStorageMonitorInternal;
257
258import dalvik.system.CloseGuard;
259import dalvik.system.DexFile;
260import dalvik.system.VMRuntime;
261
262import libcore.io.IoUtils;
263import libcore.util.EmptyArray;
264
265import org.xmlpull.v1.XmlPullParser;
266import org.xmlpull.v1.XmlPullParserException;
267import org.xmlpull.v1.XmlSerializer;
268
269import java.io.BufferedInputStream;
270import java.io.BufferedOutputStream;
271import java.io.BufferedReader;
272import java.io.ByteArrayInputStream;
273import java.io.ByteArrayOutputStream;
274import java.io.File;
275import java.io.FileDescriptor;
276import java.io.FileInputStream;
277import java.io.FileNotFoundException;
278import java.io.FileOutputStream;
279import java.io.FileReader;
280import java.io.FilenameFilter;
281import java.io.IOException;
282import java.io.InputStream;
283import java.io.PrintWriter;
284import java.nio.charset.StandardCharsets;
285import java.security.DigestInputStream;
286import java.security.MessageDigest;
287import java.security.NoSuchAlgorithmException;
288import java.security.PublicKey;
289import java.security.cert.Certificate;
290import java.security.cert.CertificateEncodingException;
291import java.security.cert.CertificateException;
292import java.text.SimpleDateFormat;
293import java.util.ArrayList;
294import java.util.Arrays;
295import java.util.Collection;
296import java.util.Collections;
297import java.util.Comparator;
298import java.util.Date;
299import java.util.HashSet;
300import java.util.Iterator;
301import java.util.List;
302import java.util.Map;
303import java.util.Objects;
304import java.util.Set;
305import java.util.concurrent.CountDownLatch;
306import java.util.concurrent.TimeUnit;
307import java.util.concurrent.atomic.AtomicBoolean;
308import java.util.concurrent.atomic.AtomicInteger;
309import java.util.concurrent.atomic.AtomicLong;
310
311/**
312 * Keep track of all those APKs everywhere.
313 * <p>
314 * Internally there are two important locks:
315 * <ul>
316 * <li>{@link #mPackages} is used to guard all in-memory parsed package details
317 * and other related state. It is a fine-grained lock that should only be held
318 * momentarily, as it's one of the most contended locks in the system.
319 * <li>{@link #mInstallLock} is used to guard all {@code installd} access, whose
320 * operations typically involve heavy lifting of application data on disk. Since
321 * {@code installd} is single-threaded, and it's operations can often be slow,
322 * this lock should never be acquired while already holding {@link #mPackages}.
323 * Conversely, it's safe to acquire {@link #mPackages} momentarily while already
324 * holding {@link #mInstallLock}.
325 * </ul>
326 * Many internal methods rely on the caller to hold the appropriate locks, and
327 * this contract is expressed through method name suffixes:
328 * <ul>
329 * <li>fooLI(): the caller must hold {@link #mInstallLock}
330 * <li>fooLIF(): the caller must hold {@link #mInstallLock} and the package
331 * being modified must be frozen
332 * <li>fooLPr(): the caller must hold {@link #mPackages} for reading
333 * <li>fooLPw(): the caller must hold {@link #mPackages} for writing
334 * </ul>
335 * <p>
336 * Because this class is very central to the platform's security; please run all
337 * CTS and unit tests whenever making modifications:
338 *
339 * <pre>
340 * $ runtest -c android.content.pm.PackageManagerTests frameworks-core
341 * $ cts-tradefed run commandAndExit cts -m AppSecurityTests
342 * </pre>
343 */
344public class PackageManagerService extends IPackageManager.Stub {
345    static final String TAG = "PackageManager";
346    static final boolean DEBUG_SETTINGS = false;
347    static final boolean DEBUG_PREFERRED = false;
348    static final boolean DEBUG_UPGRADE = false;
349    static final boolean DEBUG_DOMAIN_VERIFICATION = false;
350    private static final boolean DEBUG_BACKUP = false;
351    private static final boolean DEBUG_INSTALL = false;
352    private static final boolean DEBUG_REMOVE = false;
353    private static final boolean DEBUG_BROADCASTS = false;
354    private static final boolean DEBUG_SHOW_INFO = false;
355    private static final boolean DEBUG_PACKAGE_INFO = false;
356    private static final boolean DEBUG_INTENT_MATCHING = false;
357    private static final boolean DEBUG_PACKAGE_SCANNING = false;
358    private static final boolean DEBUG_VERIFY = false;
359    private static final boolean DEBUG_FILTERS = false;
360
361    // Debug output for dexopting. This is shared between PackageManagerService, OtaDexoptService
362    // and PackageDexOptimizer. All these classes have their own flag to allow switching a single
363    // user, but by default initialize to this.
364    static final boolean DEBUG_DEXOPT = false;
365
366    private static final boolean DEBUG_ABI_SELECTION = false;
367    private static final boolean DEBUG_EPHEMERAL = Build.IS_DEBUGGABLE;
368    private static final boolean DEBUG_TRIAGED_MISSING = false;
369    private static final boolean DEBUG_APP_DATA = false;
370
371    static final boolean CLEAR_RUNTIME_PERMISSIONS_ON_UPGRADE = false;
372
373    private static final boolean DISABLE_EPHEMERAL_APPS = !Build.IS_DEBUGGABLE;
374
375    private static final int RADIO_UID = Process.PHONE_UID;
376    private static final int LOG_UID = Process.LOG_UID;
377    private static final int NFC_UID = Process.NFC_UID;
378    private static final int BLUETOOTH_UID = Process.BLUETOOTH_UID;
379    private static final int SHELL_UID = Process.SHELL_UID;
380
381    // Cap the size of permission trees that 3rd party apps can define
382    private static final int MAX_PERMISSION_TREE_FOOTPRINT = 32768;     // characters of text
383
384    // Suffix used during package installation when copying/moving
385    // package apks to install directory.
386    private static final String INSTALL_PACKAGE_SUFFIX = "-";
387
388    static final int SCAN_NO_DEX = 1<<1;
389    static final int SCAN_FORCE_DEX = 1<<2;
390    static final int SCAN_UPDATE_SIGNATURE = 1<<3;
391    static final int SCAN_NEW_INSTALL = 1<<4;
392    static final int SCAN_NO_PATHS = 1<<5;
393    static final int SCAN_UPDATE_TIME = 1<<6;
394    static final int SCAN_DEFER_DEX = 1<<7;
395    static final int SCAN_BOOTING = 1<<8;
396    static final int SCAN_TRUSTED_OVERLAY = 1<<9;
397    static final int SCAN_DELETE_DATA_ON_FAILURES = 1<<10;
398    static final int SCAN_REPLACING = 1<<11;
399    static final int SCAN_REQUIRE_KNOWN = 1<<12;
400    static final int SCAN_MOVE = 1<<13;
401    static final int SCAN_INITIAL = 1<<14;
402    static final int SCAN_CHECK_ONLY = 1<<15;
403    static final int SCAN_DONT_KILL_APP = 1<<17;
404    static final int SCAN_IGNORE_FROZEN = 1<<18;
405
406    static final int REMOVE_CHATTY = 1<<16;
407
408    private static final int[] EMPTY_INT_ARRAY = new int[0];
409
410    /**
411     * Timeout (in milliseconds) after which the watchdog should declare that
412     * our handler thread is wedged.  The usual default for such things is one
413     * minute but we sometimes do very lengthy I/O operations on this thread,
414     * such as installing multi-gigabyte applications, so ours needs to be longer.
415     */
416    private static final long WATCHDOG_TIMEOUT = 1000*60*10;     // ten minutes
417
418    /**
419     * Wall-clock timeout (in milliseconds) after which we *require* that an fstrim
420     * be run on this device.  We use the value in the Settings.Global.MANDATORY_FSTRIM_INTERVAL
421     * settings entry if available, otherwise we use the hardcoded default.  If it's been
422     * more than this long since the last fstrim, we force one during the boot sequence.
423     *
424     * This backstops other fstrim scheduling:  if the device is alive at midnight+idle,
425     * one gets run at the next available charging+idle time.  This final mandatory
426     * no-fstrim check kicks in only of the other scheduling criteria is never met.
427     */
428    private static final long DEFAULT_MANDATORY_FSTRIM_INTERVAL = 3 * DateUtils.DAY_IN_MILLIS;
429
430    /**
431     * Whether verification is enabled by default.
432     */
433    private static final boolean DEFAULT_VERIFY_ENABLE = true;
434
435    /**
436     * The default maximum time to wait for the verification agent to return in
437     * milliseconds.
438     */
439    private static final long DEFAULT_VERIFICATION_TIMEOUT = 10 * 1000;
440
441    /**
442     * The default response for package verification timeout.
443     *
444     * This can be either PackageManager.VERIFICATION_ALLOW or
445     * PackageManager.VERIFICATION_REJECT.
446     */
447    private static final int DEFAULT_VERIFICATION_RESPONSE = PackageManager.VERIFICATION_ALLOW;
448
449    static final String PLATFORM_PACKAGE_NAME = "android";
450
451    static final String DEFAULT_CONTAINER_PACKAGE = "com.android.defcontainer";
452
453    static final ComponentName DEFAULT_CONTAINER_COMPONENT = new ComponentName(
454            DEFAULT_CONTAINER_PACKAGE,
455            "com.android.defcontainer.DefaultContainerService");
456
457    private static final String KILL_APP_REASON_GIDS_CHANGED =
458            "permission grant or revoke changed gids";
459
460    private static final String KILL_APP_REASON_PERMISSIONS_REVOKED =
461            "permissions revoked";
462
463    private static final String PACKAGE_MIME_TYPE = "application/vnd.android.package-archive";
464
465    private static final String VENDOR_OVERLAY_DIR = "/vendor/overlay";
466
467    private static int DEFAULT_EPHEMERAL_HASH_PREFIX_MASK = 0xFFFFF000;
468    private static int DEFAULT_EPHEMERAL_HASH_PREFIX_COUNT = 5;
469
470    /** Permission grant: not grant the permission. */
471    private static final int GRANT_DENIED = 1;
472
473    /** Permission grant: grant the permission as an install permission. */
474    private static final int GRANT_INSTALL = 2;
475
476    /** Permission grant: grant the permission as a runtime one. */
477    private static final int GRANT_RUNTIME = 3;
478
479    /** Permission grant: grant as runtime a permission that was granted as an install time one. */
480    private static final int GRANT_UPGRADE = 4;
481
482    /** Canonical intent used to identify what counts as a "web browser" app */
483    private static final Intent sBrowserIntent;
484    static {
485        sBrowserIntent = new Intent();
486        sBrowserIntent.setAction(Intent.ACTION_VIEW);
487        sBrowserIntent.addCategory(Intent.CATEGORY_BROWSABLE);
488        sBrowserIntent.setData(Uri.parse("http:"));
489    }
490
491    /**
492     * The set of all protected actions [i.e. those actions for which a high priority
493     * intent filter is disallowed].
494     */
495    private static final Set<String> PROTECTED_ACTIONS = new ArraySet<>();
496    static {
497        PROTECTED_ACTIONS.add(Intent.ACTION_SEND);
498        PROTECTED_ACTIONS.add(Intent.ACTION_SENDTO);
499        PROTECTED_ACTIONS.add(Intent.ACTION_SEND_MULTIPLE);
500        PROTECTED_ACTIONS.add(Intent.ACTION_VIEW);
501    }
502
503    // Compilation reasons.
504    public static final int REASON_FIRST_BOOT = 0;
505    public static final int REASON_BOOT = 1;
506    public static final int REASON_INSTALL = 2;
507    public static final int REASON_BACKGROUND_DEXOPT = 3;
508    public static final int REASON_AB_OTA = 4;
509    public static final int REASON_NON_SYSTEM_LIBRARY = 5;
510    public static final int REASON_SHARED_APK = 6;
511    public static final int REASON_FORCED_DEXOPT = 7;
512    public static final int REASON_CORE_APP = 8;
513
514    public static final int REASON_LAST = REASON_CORE_APP;
515
516    /** Special library name that skips shared libraries check during compilation. */
517    private static final String SKIP_SHARED_LIBRARY_CHECK = "&";
518
519    final ServiceThread mHandlerThread;
520
521    final PackageHandler mHandler;
522
523    private final ProcessLoggingHandler mProcessLoggingHandler;
524
525    /**
526     * Messages for {@link #mHandler} that need to wait for system ready before
527     * being dispatched.
528     */
529    private ArrayList<Message> mPostSystemReadyMessages;
530
531    final int mSdkVersion = Build.VERSION.SDK_INT;
532
533    final Context mContext;
534    final boolean mFactoryTest;
535    final boolean mOnlyCore;
536    final DisplayMetrics mMetrics;
537    final int mDefParseFlags;
538    final String[] mSeparateProcesses;
539    final boolean mIsUpgrade;
540    final boolean mIsPreNUpgrade;
541
542    /** The location for ASEC container files on internal storage. */
543    final String mAsecInternalPath;
544
545    // Used for privilege escalation. MUST NOT BE CALLED WITH mPackages
546    // LOCK HELD.  Can be called with mInstallLock held.
547    @GuardedBy("mInstallLock")
548    final Installer mInstaller;
549
550    /** Directory where installed third-party apps stored */
551    final File mAppInstallDir;
552    final File mEphemeralInstallDir;
553
554    /**
555     * Directory to which applications installed internally have their
556     * 32 bit native libraries copied.
557     */
558    private File mAppLib32InstallDir;
559
560    // Directory containing the private parts (e.g. code and non-resource assets) of forward-locked
561    // apps.
562    final File mDrmAppPrivateInstallDir;
563
564    // ----------------------------------------------------------------
565
566    // Lock for state used when installing and doing other long running
567    // operations.  Methods that must be called with this lock held have
568    // the suffix "LI".
569    final Object mInstallLock = new Object();
570
571    // ----------------------------------------------------------------
572
573    // Keys are String (package name), values are Package.  This also serves
574    // as the lock for the global state.  Methods that must be called with
575    // this lock held have the prefix "LP".
576    @GuardedBy("mPackages")
577    final ArrayMap<String, PackageParser.Package> mPackages =
578            new ArrayMap<String, PackageParser.Package>();
579
580    final ArrayMap<String, Set<String>> mKnownCodebase =
581            new ArrayMap<String, Set<String>>();
582
583    // Tracks available target package names -> overlay package paths.
584    final ArrayMap<String, ArrayMap<String, PackageParser.Package>> mOverlays =
585        new ArrayMap<String, ArrayMap<String, PackageParser.Package>>();
586
587    /**
588     * Tracks new system packages [received in an OTA] that we expect to
589     * find updated user-installed versions. Keys are package name, values
590     * are package location.
591     */
592    final private ArrayMap<String, File> mExpectingBetter = new ArrayMap<>();
593    /**
594     * Tracks high priority intent filters for protected actions. During boot, certain
595     * filter actions are protected and should never be allowed to have a high priority
596     * intent filter for them. However, there is one, and only one exception -- the
597     * setup wizard. It must be able to define a high priority intent filter for these
598     * actions to ensure there are no escapes from the wizard. We need to delay processing
599     * of these during boot as we need to look at all of the system packages in order
600     * to know which component is the setup wizard.
601     */
602    private final List<PackageParser.ActivityIntentInfo> mProtectedFilters = new ArrayList<>();
603    /**
604     * Whether or not processing protected filters should be deferred.
605     */
606    private boolean mDeferProtectedFilters = true;
607
608    /**
609     * Tracks existing system packages prior to receiving an OTA. Keys are package name.
610     */
611    final private ArraySet<String> mExistingSystemPackages = new ArraySet<>();
612    /**
613     * Whether or not system app permissions should be promoted from install to runtime.
614     */
615    boolean mPromoteSystemApps;
616
617    @GuardedBy("mPackages")
618    final Settings mSettings;
619
620    /**
621     * Set of package names that are currently "frozen", which means active
622     * surgery is being done on the code/data for that package. The platform
623     * will refuse to launch frozen packages to avoid race conditions.
624     *
625     * @see PackageFreezer
626     */
627    @GuardedBy("mPackages")
628    final ArraySet<String> mFrozenPackages = new ArraySet<>();
629
630    final ProtectedPackages mProtectedPackages = new ProtectedPackages();
631
632    boolean mRestoredSettings;
633
634    // System configuration read by SystemConfig.
635    final int[] mGlobalGids;
636    final SparseArray<ArraySet<String>> mSystemPermissions;
637    final ArrayMap<String, FeatureInfo> mAvailableFeatures;
638
639    // If mac_permissions.xml was found for seinfo labeling.
640    boolean mFoundPolicyFile;
641
642    private final EphemeralApplicationRegistry mEphemeralApplicationRegistry;
643
644    public static final class SharedLibraryEntry {
645        public final String path;
646        public final String apk;
647
648        SharedLibraryEntry(String _path, String _apk) {
649            path = _path;
650            apk = _apk;
651        }
652    }
653
654    // Currently known shared libraries.
655    final ArrayMap<String, SharedLibraryEntry> mSharedLibraries =
656            new ArrayMap<String, SharedLibraryEntry>();
657
658    // All available activities, for your resolving pleasure.
659    final ActivityIntentResolver mActivities =
660            new ActivityIntentResolver();
661
662    // All available receivers, for your resolving pleasure.
663    final ActivityIntentResolver mReceivers =
664            new ActivityIntentResolver();
665
666    // All available services, for your resolving pleasure.
667    final ServiceIntentResolver mServices = new ServiceIntentResolver();
668
669    // All available providers, for your resolving pleasure.
670    final ProviderIntentResolver mProviders = new ProviderIntentResolver();
671
672    // Mapping from provider base names (first directory in content URI codePath)
673    // to the provider information.
674    final ArrayMap<String, PackageParser.Provider> mProvidersByAuthority =
675            new ArrayMap<String, PackageParser.Provider>();
676
677    // Mapping from instrumentation class names to info about them.
678    final ArrayMap<ComponentName, PackageParser.Instrumentation> mInstrumentation =
679            new ArrayMap<ComponentName, PackageParser.Instrumentation>();
680
681    // Mapping from permission names to info about them.
682    final ArrayMap<String, PackageParser.PermissionGroup> mPermissionGroups =
683            new ArrayMap<String, PackageParser.PermissionGroup>();
684
685    // Packages whose data we have transfered into another package, thus
686    // should no longer exist.
687    final ArraySet<String> mTransferedPackages = new ArraySet<String>();
688
689    // Broadcast actions that are only available to the system.
690    final ArraySet<String> mProtectedBroadcasts = new ArraySet<String>();
691
692    /** List of packages waiting for verification. */
693    final SparseArray<PackageVerificationState> mPendingVerification
694            = new SparseArray<PackageVerificationState>();
695
696    /** Set of packages associated with each app op permission. */
697    final ArrayMap<String, ArraySet<String>> mAppOpPermissionPackages = new ArrayMap<>();
698
699    final PackageInstallerService mInstallerService;
700
701    private final PackageDexOptimizer mPackageDexOptimizer;
702
703    private AtomicInteger mNextMoveId = new AtomicInteger();
704    private final MoveCallbacks mMoveCallbacks;
705
706    private final OnPermissionChangeListeners mOnPermissionChangeListeners;
707
708    // Cache of users who need badging.
709    SparseBooleanArray mUserNeedsBadging = new SparseBooleanArray();
710
711    /** Token for keys in mPendingVerification. */
712    private int mPendingVerificationToken = 0;
713
714    volatile boolean mSystemReady;
715    volatile boolean mSafeMode;
716    volatile boolean mHasSystemUidErrors;
717
718    ApplicationInfo mAndroidApplication;
719    final ActivityInfo mResolveActivity = new ActivityInfo();
720    final ResolveInfo mResolveInfo = new ResolveInfo();
721    ComponentName mResolveComponentName;
722    PackageParser.Package mPlatformPackage;
723    ComponentName mCustomResolverComponentName;
724
725    boolean mResolverReplaced = false;
726
727    private final @Nullable ComponentName mIntentFilterVerifierComponent;
728    private final @Nullable IntentFilterVerifier<ActivityIntentInfo> mIntentFilterVerifier;
729
730    private int mIntentFilterVerificationToken = 0;
731
732    /** Component that knows whether or not an ephemeral application exists */
733    final ComponentName mEphemeralResolverComponent;
734    /** The service connection to the ephemeral resolver */
735    final EphemeralResolverConnection mEphemeralResolverConnection;
736
737    /** Component used to install ephemeral applications */
738    final ComponentName mEphemeralInstallerComponent;
739    final ActivityInfo mEphemeralInstallerActivity = new ActivityInfo();
740    final ResolveInfo mEphemeralInstallerInfo = new ResolveInfo();
741
742    final SparseArray<IntentFilterVerificationState> mIntentFilterVerificationStates
743            = new SparseArray<IntentFilterVerificationState>();
744
745    final DefaultPermissionGrantPolicy mDefaultPermissionPolicy =
746            new DefaultPermissionGrantPolicy(this);
747
748    // List of packages names to keep cached, even if they are uninstalled for all users
749    private List<String> mKeepUninstalledPackages;
750
751    private UserManagerInternal mUserManagerInternal;
752
753    private static class IFVerificationParams {
754        PackageParser.Package pkg;
755        boolean replacing;
756        int userId;
757        int verifierUid;
758
759        public IFVerificationParams(PackageParser.Package _pkg, boolean _replacing,
760                int _userId, int _verifierUid) {
761            pkg = _pkg;
762            replacing = _replacing;
763            userId = _userId;
764            replacing = _replacing;
765            verifierUid = _verifierUid;
766        }
767    }
768
769    private interface IntentFilterVerifier<T extends IntentFilter> {
770        boolean addOneIntentFilterVerification(int verifierId, int userId, int verificationId,
771                                               T filter, String packageName);
772        void startVerifications(int userId);
773        void receiveVerificationResponse(int verificationId);
774    }
775
776    private class IntentVerifierProxy implements IntentFilterVerifier<ActivityIntentInfo> {
777        private Context mContext;
778        private ComponentName mIntentFilterVerifierComponent;
779        private ArrayList<Integer> mCurrentIntentFilterVerifications = new ArrayList<Integer>();
780
781        public IntentVerifierProxy(Context context, ComponentName verifierComponent) {
782            mContext = context;
783            mIntentFilterVerifierComponent = verifierComponent;
784        }
785
786        private String getDefaultScheme() {
787            return IntentFilter.SCHEME_HTTPS;
788        }
789
790        @Override
791        public void startVerifications(int userId) {
792            // Launch verifications requests
793            int count = mCurrentIntentFilterVerifications.size();
794            for (int n=0; n<count; n++) {
795                int verificationId = mCurrentIntentFilterVerifications.get(n);
796                final IntentFilterVerificationState ivs =
797                        mIntentFilterVerificationStates.get(verificationId);
798
799                String packageName = ivs.getPackageName();
800
801                ArrayList<PackageParser.ActivityIntentInfo> filters = ivs.getFilters();
802                final int filterCount = filters.size();
803                ArraySet<String> domainsSet = new ArraySet<>();
804                for (int m=0; m<filterCount; m++) {
805                    PackageParser.ActivityIntentInfo filter = filters.get(m);
806                    domainsSet.addAll(filter.getHostsList());
807                }
808                ArrayList<String> domainsList = new ArrayList<>(domainsSet);
809                synchronized (mPackages) {
810                    if (mSettings.createIntentFilterVerificationIfNeededLPw(
811                            packageName, domainsList) != null) {
812                        scheduleWriteSettingsLocked();
813                    }
814                }
815                sendVerificationRequest(userId, verificationId, ivs);
816            }
817            mCurrentIntentFilterVerifications.clear();
818        }
819
820        private void sendVerificationRequest(int userId, int verificationId,
821                IntentFilterVerificationState ivs) {
822
823            Intent verificationIntent = new Intent(Intent.ACTION_INTENT_FILTER_NEEDS_VERIFICATION);
824            verificationIntent.putExtra(
825                    PackageManager.EXTRA_INTENT_FILTER_VERIFICATION_ID,
826                    verificationId);
827            verificationIntent.putExtra(
828                    PackageManager.EXTRA_INTENT_FILTER_VERIFICATION_URI_SCHEME,
829                    getDefaultScheme());
830            verificationIntent.putExtra(
831                    PackageManager.EXTRA_INTENT_FILTER_VERIFICATION_HOSTS,
832                    ivs.getHostsString());
833            verificationIntent.putExtra(
834                    PackageManager.EXTRA_INTENT_FILTER_VERIFICATION_PACKAGE_NAME,
835                    ivs.getPackageName());
836            verificationIntent.setComponent(mIntentFilterVerifierComponent);
837            verificationIntent.addFlags(Intent.FLAG_RECEIVER_FOREGROUND);
838
839            UserHandle user = new UserHandle(userId);
840            mContext.sendBroadcastAsUser(verificationIntent, user);
841            if (DEBUG_DOMAIN_VERIFICATION) Slog.d(TAG,
842                    "Sending IntentFilter verification broadcast");
843        }
844
845        public void receiveVerificationResponse(int verificationId) {
846            IntentFilterVerificationState ivs = mIntentFilterVerificationStates.get(verificationId);
847
848            final boolean verified = ivs.isVerified();
849
850            ArrayList<PackageParser.ActivityIntentInfo> filters = ivs.getFilters();
851            final int count = filters.size();
852            if (DEBUG_DOMAIN_VERIFICATION) {
853                Slog.i(TAG, "Received verification response " + verificationId
854                        + " for " + count + " filters, verified=" + verified);
855            }
856            for (int n=0; n<count; n++) {
857                PackageParser.ActivityIntentInfo filter = filters.get(n);
858                filter.setVerified(verified);
859
860                if (DEBUG_DOMAIN_VERIFICATION) Slog.d(TAG, "IntentFilter " + filter.toString()
861                        + " verified with result:" + verified + " and hosts:"
862                        + ivs.getHostsString());
863            }
864
865            mIntentFilterVerificationStates.remove(verificationId);
866
867            final String packageName = ivs.getPackageName();
868            IntentFilterVerificationInfo ivi = null;
869
870            synchronized (mPackages) {
871                ivi = mSettings.getIntentFilterVerificationLPr(packageName);
872            }
873            if (ivi == null) {
874                Slog.w(TAG, "IntentFilterVerificationInfo not found for verificationId:"
875                        + verificationId + " packageName:" + packageName);
876                return;
877            }
878            if (DEBUG_DOMAIN_VERIFICATION) Slog.d(TAG,
879                    "Updating IntentFilterVerificationInfo for package " + packageName
880                            +" verificationId:" + verificationId);
881
882            synchronized (mPackages) {
883                if (verified) {
884                    ivi.setStatus(INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_ALWAYS);
885                } else {
886                    ivi.setStatus(INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_ASK);
887                }
888                scheduleWriteSettingsLocked();
889
890                final int userId = ivs.getUserId();
891                if (userId != UserHandle.USER_ALL) {
892                    final int userStatus =
893                            mSettings.getIntentFilterVerificationStatusLPr(packageName, userId);
894
895                    int updatedStatus = INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_UNDEFINED;
896                    boolean needUpdate = false;
897
898                    // We cannot override the STATUS_ALWAYS / STATUS_NEVER states if they have
899                    // already been set by the User thru the Disambiguation dialog
900                    switch (userStatus) {
901                        case INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_UNDEFINED:
902                            if (verified) {
903                                updatedStatus = INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_ALWAYS;
904                            } else {
905                                updatedStatus = INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_ASK;
906                            }
907                            needUpdate = true;
908                            break;
909
910                        case INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_ASK:
911                            if (verified) {
912                                updatedStatus = INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_ALWAYS;
913                                needUpdate = true;
914                            }
915                            break;
916
917                        default:
918                            // Nothing to do
919                    }
920
921                    if (needUpdate) {
922                        mSettings.updateIntentFilterVerificationStatusLPw(
923                                packageName, updatedStatus, userId);
924                        scheduleWritePackageRestrictionsLocked(userId);
925                    }
926                }
927            }
928        }
929
930        @Override
931        public boolean addOneIntentFilterVerification(int verifierUid, int userId, int verificationId,
932                    ActivityIntentInfo filter, String packageName) {
933            if (!hasValidDomains(filter)) {
934                return false;
935            }
936            IntentFilterVerificationState ivs = mIntentFilterVerificationStates.get(verificationId);
937            if (ivs == null) {
938                ivs = createDomainVerificationState(verifierUid, userId, verificationId,
939                        packageName);
940            }
941            if (DEBUG_DOMAIN_VERIFICATION) {
942                Slog.d(TAG, "Adding verification filter for " + packageName + ": " + filter);
943            }
944            ivs.addFilter(filter);
945            return true;
946        }
947
948        private IntentFilterVerificationState createDomainVerificationState(int verifierUid,
949                int userId, int verificationId, String packageName) {
950            IntentFilterVerificationState ivs = new IntentFilterVerificationState(
951                    verifierUid, userId, packageName);
952            ivs.setPendingState();
953            synchronized (mPackages) {
954                mIntentFilterVerificationStates.append(verificationId, ivs);
955                mCurrentIntentFilterVerifications.add(verificationId);
956            }
957            return ivs;
958        }
959    }
960
961    private static boolean hasValidDomains(ActivityIntentInfo filter) {
962        return filter.hasCategory(Intent.CATEGORY_BROWSABLE)
963                && (filter.hasDataScheme(IntentFilter.SCHEME_HTTP) ||
964                        filter.hasDataScheme(IntentFilter.SCHEME_HTTPS));
965    }
966
967    // Set of pending broadcasts for aggregating enable/disable of components.
968    static class PendingPackageBroadcasts {
969        // for each user id, a map of <package name -> components within that package>
970        final SparseArray<ArrayMap<String, ArrayList<String>>> mUidMap;
971
972        public PendingPackageBroadcasts() {
973            mUidMap = new SparseArray<ArrayMap<String, ArrayList<String>>>(2);
974        }
975
976        public ArrayList<String> get(int userId, String packageName) {
977            ArrayMap<String, ArrayList<String>> packages = getOrAllocate(userId);
978            return packages.get(packageName);
979        }
980
981        public void put(int userId, String packageName, ArrayList<String> components) {
982            ArrayMap<String, ArrayList<String>> packages = getOrAllocate(userId);
983            packages.put(packageName, components);
984        }
985
986        public void remove(int userId, String packageName) {
987            ArrayMap<String, ArrayList<String>> packages = mUidMap.get(userId);
988            if (packages != null) {
989                packages.remove(packageName);
990            }
991        }
992
993        public void remove(int userId) {
994            mUidMap.remove(userId);
995        }
996
997        public int userIdCount() {
998            return mUidMap.size();
999        }
1000
1001        public int userIdAt(int n) {
1002            return mUidMap.keyAt(n);
1003        }
1004
1005        public ArrayMap<String, ArrayList<String>> packagesForUserId(int userId) {
1006            return mUidMap.get(userId);
1007        }
1008
1009        public int size() {
1010            // total number of pending broadcast entries across all userIds
1011            int num = 0;
1012            for (int i = 0; i< mUidMap.size(); i++) {
1013                num += mUidMap.valueAt(i).size();
1014            }
1015            return num;
1016        }
1017
1018        public void clear() {
1019            mUidMap.clear();
1020        }
1021
1022        private ArrayMap<String, ArrayList<String>> getOrAllocate(int userId) {
1023            ArrayMap<String, ArrayList<String>> map = mUidMap.get(userId);
1024            if (map == null) {
1025                map = new ArrayMap<String, ArrayList<String>>();
1026                mUidMap.put(userId, map);
1027            }
1028            return map;
1029        }
1030    }
1031    final PendingPackageBroadcasts mPendingBroadcasts = new PendingPackageBroadcasts();
1032
1033    // Service Connection to remote media container service to copy
1034    // package uri's from external media onto secure containers
1035    // or internal storage.
1036    private IMediaContainerService mContainerService = null;
1037
1038    static final int SEND_PENDING_BROADCAST = 1;
1039    static final int MCS_BOUND = 3;
1040    static final int END_COPY = 4;
1041    static final int INIT_COPY = 5;
1042    static final int MCS_UNBIND = 6;
1043    static final int START_CLEANING_PACKAGE = 7;
1044    static final int FIND_INSTALL_LOC = 8;
1045    static final int POST_INSTALL = 9;
1046    static final int MCS_RECONNECT = 10;
1047    static final int MCS_GIVE_UP = 11;
1048    static final int UPDATED_MEDIA_STATUS = 12;
1049    static final int WRITE_SETTINGS = 13;
1050    static final int WRITE_PACKAGE_RESTRICTIONS = 14;
1051    static final int PACKAGE_VERIFIED = 15;
1052    static final int CHECK_PENDING_VERIFICATION = 16;
1053    static final int START_INTENT_FILTER_VERIFICATIONS = 17;
1054    static final int INTENT_FILTER_VERIFIED = 18;
1055    static final int WRITE_PACKAGE_LIST = 19;
1056
1057    static final int WRITE_SETTINGS_DELAY = 10*1000;  // 10 seconds
1058
1059    // Delay time in millisecs
1060    static final int BROADCAST_DELAY = 10 * 1000;
1061
1062    static UserManagerService sUserManager;
1063
1064    // Stores a list of users whose package restrictions file needs to be updated
1065    private ArraySet<Integer> mDirtyUsers = new ArraySet<Integer>();
1066
1067    final private DefaultContainerConnection mDefContainerConn =
1068            new DefaultContainerConnection();
1069    class DefaultContainerConnection implements ServiceConnection {
1070        public void onServiceConnected(ComponentName name, IBinder service) {
1071            if (DEBUG_SD_INSTALL) Log.i(TAG, "onServiceConnected");
1072            IMediaContainerService imcs =
1073                IMediaContainerService.Stub.asInterface(service);
1074            mHandler.sendMessage(mHandler.obtainMessage(MCS_BOUND, imcs));
1075        }
1076
1077        public void onServiceDisconnected(ComponentName name) {
1078            if (DEBUG_SD_INSTALL) Log.i(TAG, "onServiceDisconnected");
1079        }
1080    }
1081
1082    // Recordkeeping of restore-after-install operations that are currently in flight
1083    // between the Package Manager and the Backup Manager
1084    static class PostInstallData {
1085        public InstallArgs args;
1086        public PackageInstalledInfo res;
1087
1088        PostInstallData(InstallArgs _a, PackageInstalledInfo _r) {
1089            args = _a;
1090            res = _r;
1091        }
1092    }
1093
1094    final SparseArray<PostInstallData> mRunningInstalls = new SparseArray<PostInstallData>();
1095    int mNextInstallToken = 1;  // nonzero; will be wrapped back to 1 when ++ overflows
1096
1097    // XML tags for backup/restore of various bits of state
1098    private static final String TAG_PREFERRED_BACKUP = "pa";
1099    private static final String TAG_DEFAULT_APPS = "da";
1100    private static final String TAG_INTENT_FILTER_VERIFICATION = "iv";
1101
1102    private static final String TAG_PERMISSION_BACKUP = "perm-grant-backup";
1103    private static final String TAG_ALL_GRANTS = "rt-grants";
1104    private static final String TAG_GRANT = "grant";
1105    private static final String ATTR_PACKAGE_NAME = "pkg";
1106
1107    private static final String TAG_PERMISSION = "perm";
1108    private static final String ATTR_PERMISSION_NAME = "name";
1109    private static final String ATTR_IS_GRANTED = "g";
1110    private static final String ATTR_USER_SET = "set";
1111    private static final String ATTR_USER_FIXED = "fixed";
1112    private static final String ATTR_REVOKE_ON_UPGRADE = "rou";
1113
1114    // System/policy permission grants are not backed up
1115    private static final int SYSTEM_RUNTIME_GRANT_MASK =
1116            FLAG_PERMISSION_POLICY_FIXED
1117            | FLAG_PERMISSION_SYSTEM_FIXED
1118            | FLAG_PERMISSION_GRANTED_BY_DEFAULT;
1119
1120    // And we back up these user-adjusted states
1121    private static final int USER_RUNTIME_GRANT_MASK =
1122            FLAG_PERMISSION_USER_SET
1123            | FLAG_PERMISSION_USER_FIXED
1124            | FLAG_PERMISSION_REVOKE_ON_UPGRADE;
1125
1126    final @Nullable String mRequiredVerifierPackage;
1127    final @NonNull String mRequiredInstallerPackage;
1128    final @Nullable String mSetupWizardPackage;
1129    final @NonNull String mServicesSystemSharedLibraryPackageName;
1130    final @NonNull String mSharedSystemSharedLibraryPackageName;
1131
1132    private final PackageUsage mPackageUsage = new PackageUsage();
1133
1134    private class PackageUsage {
1135        private static final int WRITE_INTERVAL
1136            = (DEBUG_DEXOPT) ? 0 : 30*60*1000; // 30m in ms
1137
1138        private final Object mFileLock = new Object();
1139        private final AtomicLong mLastWritten = new AtomicLong(0);
1140        private final AtomicBoolean mBackgroundWriteRunning = new AtomicBoolean(false);
1141
1142        private boolean mIsHistoricalPackageUsageAvailable = true;
1143
1144        boolean isHistoricalPackageUsageAvailable() {
1145            return mIsHistoricalPackageUsageAvailable;
1146        }
1147
1148        void write(boolean force) {
1149            if (force) {
1150                writeInternal();
1151                return;
1152            }
1153            if (SystemClock.elapsedRealtime() - mLastWritten.get() < WRITE_INTERVAL
1154                && !DEBUG_DEXOPT) {
1155                return;
1156            }
1157            if (mBackgroundWriteRunning.compareAndSet(false, true)) {
1158                new Thread("PackageUsage_DiskWriter") {
1159                    @Override
1160                    public void run() {
1161                        try {
1162                            writeInternal();
1163                        } finally {
1164                            mBackgroundWriteRunning.set(false);
1165                        }
1166                    }
1167                }.start();
1168            }
1169        }
1170
1171        private void writeInternal() {
1172            synchronized (mPackages) {
1173                synchronized (mFileLock) {
1174                    AtomicFile file = getFile();
1175                    FileOutputStream f = null;
1176                    try {
1177                        f = file.startWrite();
1178                        BufferedOutputStream out = new BufferedOutputStream(f);
1179                        FileUtils.setPermissions(file.getBaseFile().getPath(),
1180                                0640, SYSTEM_UID, PACKAGE_INFO_GID);
1181                        StringBuilder sb = new StringBuilder();
1182
1183                        sb.append(USAGE_FILE_MAGIC_VERSION_1);
1184                        sb.append('\n');
1185                        out.write(sb.toString().getBytes(StandardCharsets.US_ASCII));
1186
1187                        for (PackageParser.Package pkg : mPackages.values()) {
1188                            if (pkg.getLatestPackageUseTimeInMills() == 0L) {
1189                                continue;
1190                            }
1191                            sb.setLength(0);
1192                            sb.append(pkg.packageName);
1193                            for (long usageTimeInMillis : pkg.mLastPackageUsageTimeInMills) {
1194                                sb.append(' ');
1195                                sb.append(usageTimeInMillis);
1196                            }
1197                            sb.append('\n');
1198                            out.write(sb.toString().getBytes(StandardCharsets.US_ASCII));
1199                        }
1200                        out.flush();
1201                        file.finishWrite(f);
1202                    } catch (IOException e) {
1203                        if (f != null) {
1204                            file.failWrite(f);
1205                        }
1206                        Log.e(TAG, "Failed to write package usage times", e);
1207                    }
1208                }
1209            }
1210            mLastWritten.set(SystemClock.elapsedRealtime());
1211        }
1212
1213        void readLP() {
1214            synchronized (mFileLock) {
1215                AtomicFile file = getFile();
1216                BufferedInputStream in = null;
1217                try {
1218                    in = new BufferedInputStream(file.openRead());
1219                    StringBuffer sb = new StringBuffer();
1220
1221                    String firstLine = readLine(in, sb);
1222                    if (firstLine == null) {
1223                        // Empty file. Do nothing.
1224                    } else if (USAGE_FILE_MAGIC_VERSION_1.equals(firstLine)) {
1225                        readVersion1LP(in, sb);
1226                    } else {
1227                        readVersion0LP(in, sb, firstLine);
1228                    }
1229                } catch (FileNotFoundException expected) {
1230                    mIsHistoricalPackageUsageAvailable = false;
1231                } catch (IOException e) {
1232                    Log.w(TAG, "Failed to read package usage times", e);
1233                } finally {
1234                    IoUtils.closeQuietly(in);
1235                }
1236            }
1237            mLastWritten.set(SystemClock.elapsedRealtime());
1238        }
1239
1240        private void readVersion0LP(InputStream in, StringBuffer sb, String firstLine)
1241                throws IOException {
1242            // Initial version of the file had no version number and stored one
1243            // package-timestamp pair per line.
1244            // Note that the first line has already been read from the InputStream.
1245            for (String line = firstLine; line != null; line = readLine(in, sb)) {
1246                String[] tokens = line.split(" ");
1247                if (tokens.length != 2) {
1248                    throw new IOException("Failed to parse " + line +
1249                            " as package-timestamp pair.");
1250                }
1251
1252                String packageName = tokens[0];
1253                PackageParser.Package pkg = mPackages.get(packageName);
1254                if (pkg == null) {
1255                    continue;
1256                }
1257
1258                long timestamp = parseAsLong(tokens[1]);
1259                for (int reason = 0;
1260                        reason < PackageManager.NOTIFY_PACKAGE_USE_REASONS_COUNT;
1261                        reason++) {
1262                    pkg.mLastPackageUsageTimeInMills[reason] = timestamp;
1263                }
1264            }
1265        }
1266
1267        private void readVersion1LP(InputStream in, StringBuffer sb) throws IOException {
1268            // Version 1 of the file started with the corresponding version
1269            // number and then stored a package name and eight timestamps per line.
1270            String line;
1271            while ((line = readLine(in, sb)) != null) {
1272                String[] tokens = line.split(" ");
1273                if (tokens.length != PackageManager.NOTIFY_PACKAGE_USE_REASONS_COUNT + 1) {
1274                    throw new IOException("Failed to parse " + line + " as a timestamp array.");
1275                }
1276
1277                String packageName = tokens[0];
1278                PackageParser.Package pkg = mPackages.get(packageName);
1279                if (pkg == null) {
1280                    continue;
1281                }
1282
1283                for (int reason = 0;
1284                        reason < PackageManager.NOTIFY_PACKAGE_USE_REASONS_COUNT;
1285                        reason++) {
1286                    pkg.mLastPackageUsageTimeInMills[reason] = parseAsLong(tokens[reason + 1]);
1287                }
1288            }
1289        }
1290
1291        private long parseAsLong(String token) throws IOException {
1292            try {
1293                return Long.parseLong(token);
1294            } catch (NumberFormatException e) {
1295                throw new IOException("Failed to parse " + token + " as a long.", e);
1296            }
1297        }
1298
1299        private String readLine(InputStream in, StringBuffer sb) throws IOException {
1300            return readToken(in, sb, '\n');
1301        }
1302
1303        private String readToken(InputStream in, StringBuffer sb, char endOfToken)
1304                throws IOException {
1305            sb.setLength(0);
1306            while (true) {
1307                int ch = in.read();
1308                if (ch == -1) {
1309                    if (sb.length() == 0) {
1310                        return null;
1311                    }
1312                    throw new IOException("Unexpected EOF");
1313                }
1314                if (ch == endOfToken) {
1315                    return sb.toString();
1316                }
1317                sb.append((char)ch);
1318            }
1319        }
1320
1321        private AtomicFile getFile() {
1322            File dataDir = Environment.getDataDirectory();
1323            File systemDir = new File(dataDir, "system");
1324            File fname = new File(systemDir, "package-usage.list");
1325            return new AtomicFile(fname);
1326        }
1327
1328        private static final String USAGE_FILE_MAGIC = "PACKAGE_USAGE__VERSION_";
1329        private static final String USAGE_FILE_MAGIC_VERSION_1 = USAGE_FILE_MAGIC + "1";
1330    }
1331
1332    class PackageHandler extends Handler {
1333        private boolean mBound = false;
1334        final ArrayList<HandlerParams> mPendingInstalls =
1335            new ArrayList<HandlerParams>();
1336
1337        private boolean connectToService() {
1338            if (DEBUG_SD_INSTALL) Log.i(TAG, "Trying to bind to" +
1339                    " DefaultContainerService");
1340            Intent service = new Intent().setComponent(DEFAULT_CONTAINER_COMPONENT);
1341            Process.setThreadPriority(Process.THREAD_PRIORITY_DEFAULT);
1342            if (mContext.bindServiceAsUser(service, mDefContainerConn,
1343                    Context.BIND_AUTO_CREATE, UserHandle.SYSTEM)) {
1344                Process.setThreadPriority(Process.THREAD_PRIORITY_BACKGROUND);
1345                mBound = true;
1346                return true;
1347            }
1348            Process.setThreadPriority(Process.THREAD_PRIORITY_BACKGROUND);
1349            return false;
1350        }
1351
1352        private void disconnectService() {
1353            mContainerService = null;
1354            mBound = false;
1355            Process.setThreadPriority(Process.THREAD_PRIORITY_DEFAULT);
1356            mContext.unbindService(mDefContainerConn);
1357            Process.setThreadPriority(Process.THREAD_PRIORITY_BACKGROUND);
1358        }
1359
1360        PackageHandler(Looper looper) {
1361            super(looper);
1362        }
1363
1364        public void handleMessage(Message msg) {
1365            try {
1366                doHandleMessage(msg);
1367            } finally {
1368                Process.setThreadPriority(Process.THREAD_PRIORITY_BACKGROUND);
1369            }
1370        }
1371
1372        void doHandleMessage(Message msg) {
1373            switch (msg.what) {
1374                case INIT_COPY: {
1375                    HandlerParams params = (HandlerParams) msg.obj;
1376                    int idx = mPendingInstalls.size();
1377                    if (DEBUG_INSTALL) Slog.i(TAG, "init_copy idx=" + idx + ": " + params);
1378                    // If a bind was already initiated we dont really
1379                    // need to do anything. The pending install
1380                    // will be processed later on.
1381                    if (!mBound) {
1382                        Trace.asyncTraceBegin(TRACE_TAG_PACKAGE_MANAGER, "bindingMCS",
1383                                System.identityHashCode(mHandler));
1384                        // If this is the only one pending we might
1385                        // have to bind to the service again.
1386                        if (!connectToService()) {
1387                            Slog.e(TAG, "Failed to bind to media container service");
1388                            params.serviceError();
1389                            Trace.asyncTraceEnd(TRACE_TAG_PACKAGE_MANAGER, "bindingMCS",
1390                                    System.identityHashCode(mHandler));
1391                            if (params.traceMethod != null) {
1392                                Trace.asyncTraceEnd(TRACE_TAG_PACKAGE_MANAGER, params.traceMethod,
1393                                        params.traceCookie);
1394                            }
1395                            return;
1396                        } else {
1397                            // Once we bind to the service, the first
1398                            // pending request will be processed.
1399                            mPendingInstalls.add(idx, params);
1400                        }
1401                    } else {
1402                        mPendingInstalls.add(idx, params);
1403                        // Already bound to the service. Just make
1404                        // sure we trigger off processing the first request.
1405                        if (idx == 0) {
1406                            mHandler.sendEmptyMessage(MCS_BOUND);
1407                        }
1408                    }
1409                    break;
1410                }
1411                case MCS_BOUND: {
1412                    if (DEBUG_INSTALL) Slog.i(TAG, "mcs_bound");
1413                    if (msg.obj != null) {
1414                        mContainerService = (IMediaContainerService) msg.obj;
1415                        Trace.asyncTraceEnd(TRACE_TAG_PACKAGE_MANAGER, "bindingMCS",
1416                                System.identityHashCode(mHandler));
1417                    }
1418                    if (mContainerService == null) {
1419                        if (!mBound) {
1420                            // Something seriously wrong since we are not bound and we are not
1421                            // waiting for connection. Bail out.
1422                            Slog.e(TAG, "Cannot bind to media container service");
1423                            for (HandlerParams params : mPendingInstalls) {
1424                                // Indicate service bind error
1425                                params.serviceError();
1426                                Trace.asyncTraceEnd(TRACE_TAG_PACKAGE_MANAGER, "queueInstall",
1427                                        System.identityHashCode(params));
1428                                if (params.traceMethod != null) {
1429                                    Trace.asyncTraceEnd(TRACE_TAG_PACKAGE_MANAGER,
1430                                            params.traceMethod, params.traceCookie);
1431                                }
1432                                return;
1433                            }
1434                            mPendingInstalls.clear();
1435                        } else {
1436                            Slog.w(TAG, "Waiting to connect to media container service");
1437                        }
1438                    } else if (mPendingInstalls.size() > 0) {
1439                        HandlerParams params = mPendingInstalls.get(0);
1440                        if (params != null) {
1441                            Trace.asyncTraceEnd(TRACE_TAG_PACKAGE_MANAGER, "queueInstall",
1442                                    System.identityHashCode(params));
1443                            Trace.traceBegin(TRACE_TAG_PACKAGE_MANAGER, "startCopy");
1444                            if (params.startCopy()) {
1445                                // We are done...  look for more work or to
1446                                // go idle.
1447                                if (DEBUG_SD_INSTALL) Log.i(TAG,
1448                                        "Checking for more work or unbind...");
1449                                // Delete pending install
1450                                if (mPendingInstalls.size() > 0) {
1451                                    mPendingInstalls.remove(0);
1452                                }
1453                                if (mPendingInstalls.size() == 0) {
1454                                    if (mBound) {
1455                                        if (DEBUG_SD_INSTALL) Log.i(TAG,
1456                                                "Posting delayed MCS_UNBIND");
1457                                        removeMessages(MCS_UNBIND);
1458                                        Message ubmsg = obtainMessage(MCS_UNBIND);
1459                                        // Unbind after a little delay, to avoid
1460                                        // continual thrashing.
1461                                        sendMessageDelayed(ubmsg, 10000);
1462                                    }
1463                                } else {
1464                                    // There are more pending requests in queue.
1465                                    // Just post MCS_BOUND message to trigger processing
1466                                    // of next pending install.
1467                                    if (DEBUG_SD_INSTALL) Log.i(TAG,
1468                                            "Posting MCS_BOUND for next work");
1469                                    mHandler.sendEmptyMessage(MCS_BOUND);
1470                                }
1471                            }
1472                            Trace.traceEnd(TRACE_TAG_PACKAGE_MANAGER);
1473                        }
1474                    } else {
1475                        // Should never happen ideally.
1476                        Slog.w(TAG, "Empty queue");
1477                    }
1478                    break;
1479                }
1480                case MCS_RECONNECT: {
1481                    if (DEBUG_INSTALL) Slog.i(TAG, "mcs_reconnect");
1482                    if (mPendingInstalls.size() > 0) {
1483                        if (mBound) {
1484                            disconnectService();
1485                        }
1486                        if (!connectToService()) {
1487                            Slog.e(TAG, "Failed to bind to media container service");
1488                            for (HandlerParams params : mPendingInstalls) {
1489                                // Indicate service bind error
1490                                params.serviceError();
1491                                Trace.asyncTraceEnd(TRACE_TAG_PACKAGE_MANAGER, "queueInstall",
1492                                        System.identityHashCode(params));
1493                            }
1494                            mPendingInstalls.clear();
1495                        }
1496                    }
1497                    break;
1498                }
1499                case MCS_UNBIND: {
1500                    // If there is no actual work left, then time to unbind.
1501                    if (DEBUG_INSTALL) Slog.i(TAG, "mcs_unbind");
1502
1503                    if (mPendingInstalls.size() == 0 && mPendingVerification.size() == 0) {
1504                        if (mBound) {
1505                            if (DEBUG_INSTALL) Slog.i(TAG, "calling disconnectService()");
1506
1507                            disconnectService();
1508                        }
1509                    } else if (mPendingInstalls.size() > 0) {
1510                        // There are more pending requests in queue.
1511                        // Just post MCS_BOUND message to trigger processing
1512                        // of next pending install.
1513                        mHandler.sendEmptyMessage(MCS_BOUND);
1514                    }
1515
1516                    break;
1517                }
1518                case MCS_GIVE_UP: {
1519                    if (DEBUG_INSTALL) Slog.i(TAG, "mcs_giveup too many retries");
1520                    HandlerParams params = mPendingInstalls.remove(0);
1521                    Trace.asyncTraceEnd(TRACE_TAG_PACKAGE_MANAGER, "queueInstall",
1522                            System.identityHashCode(params));
1523                    break;
1524                }
1525                case SEND_PENDING_BROADCAST: {
1526                    String packages[];
1527                    ArrayList<String> components[];
1528                    int size = 0;
1529                    int uids[];
1530                    Process.setThreadPriority(Process.THREAD_PRIORITY_DEFAULT);
1531                    synchronized (mPackages) {
1532                        if (mPendingBroadcasts == null) {
1533                            return;
1534                        }
1535                        size = mPendingBroadcasts.size();
1536                        if (size <= 0) {
1537                            // Nothing to be done. Just return
1538                            return;
1539                        }
1540                        packages = new String[size];
1541                        components = new ArrayList[size];
1542                        uids = new int[size];
1543                        int i = 0;  // filling out the above arrays
1544
1545                        for (int n = 0; n < mPendingBroadcasts.userIdCount(); n++) {
1546                            int packageUserId = mPendingBroadcasts.userIdAt(n);
1547                            Iterator<Map.Entry<String, ArrayList<String>>> it
1548                                    = mPendingBroadcasts.packagesForUserId(packageUserId)
1549                                            .entrySet().iterator();
1550                            while (it.hasNext() && i < size) {
1551                                Map.Entry<String, ArrayList<String>> ent = it.next();
1552                                packages[i] = ent.getKey();
1553                                components[i] = ent.getValue();
1554                                PackageSetting ps = mSettings.mPackages.get(ent.getKey());
1555                                uids[i] = (ps != null)
1556                                        ? UserHandle.getUid(packageUserId, ps.appId)
1557                                        : -1;
1558                                i++;
1559                            }
1560                        }
1561                        size = i;
1562                        mPendingBroadcasts.clear();
1563                    }
1564                    // Send broadcasts
1565                    for (int i = 0; i < size; i++) {
1566                        sendPackageChangedBroadcast(packages[i], true, components[i], uids[i]);
1567                    }
1568                    Process.setThreadPriority(Process.THREAD_PRIORITY_BACKGROUND);
1569                    break;
1570                }
1571                case START_CLEANING_PACKAGE: {
1572                    Process.setThreadPriority(Process.THREAD_PRIORITY_DEFAULT);
1573                    final String packageName = (String)msg.obj;
1574                    final int userId = msg.arg1;
1575                    final boolean andCode = msg.arg2 != 0;
1576                    synchronized (mPackages) {
1577                        if (userId == UserHandle.USER_ALL) {
1578                            int[] users = sUserManager.getUserIds();
1579                            for (int user : users) {
1580                                mSettings.addPackageToCleanLPw(
1581                                        new PackageCleanItem(user, packageName, andCode));
1582                            }
1583                        } else {
1584                            mSettings.addPackageToCleanLPw(
1585                                    new PackageCleanItem(userId, packageName, andCode));
1586                        }
1587                    }
1588                    Process.setThreadPriority(Process.THREAD_PRIORITY_BACKGROUND);
1589                    startCleaningPackages();
1590                } break;
1591                case POST_INSTALL: {
1592                    if (DEBUG_INSTALL) Log.v(TAG, "Handling post-install for " + msg.arg1);
1593
1594                    PostInstallData data = mRunningInstalls.get(msg.arg1);
1595                    final boolean didRestore = (msg.arg2 != 0);
1596                    mRunningInstalls.delete(msg.arg1);
1597
1598                    if (data != null) {
1599                        InstallArgs args = data.args;
1600                        PackageInstalledInfo parentRes = data.res;
1601
1602                        final boolean grantPermissions = (args.installFlags
1603                                & PackageManager.INSTALL_GRANT_RUNTIME_PERMISSIONS) != 0;
1604                        final boolean killApp = (args.installFlags
1605                                & PackageManager.INSTALL_DONT_KILL_APP) == 0;
1606                        final String[] grantedPermissions = args.installGrantPermissions;
1607
1608                        // Handle the parent package
1609                        handlePackagePostInstall(parentRes, grantPermissions, killApp,
1610                                grantedPermissions, didRestore, args.installerPackageName,
1611                                args.observer);
1612
1613                        // Handle the child packages
1614                        final int childCount = (parentRes.addedChildPackages != null)
1615                                ? parentRes.addedChildPackages.size() : 0;
1616                        for (int i = 0; i < childCount; i++) {
1617                            PackageInstalledInfo childRes = parentRes.addedChildPackages.valueAt(i);
1618                            handlePackagePostInstall(childRes, grantPermissions, killApp,
1619                                    grantedPermissions, false, args.installerPackageName,
1620                                    args.observer);
1621                        }
1622
1623                        // Log tracing if needed
1624                        if (args.traceMethod != null) {
1625                            Trace.asyncTraceEnd(TRACE_TAG_PACKAGE_MANAGER, args.traceMethod,
1626                                    args.traceCookie);
1627                        }
1628                    } else {
1629                        Slog.e(TAG, "Bogus post-install token " + msg.arg1);
1630                    }
1631
1632                    Trace.asyncTraceEnd(TRACE_TAG_PACKAGE_MANAGER, "postInstall", msg.arg1);
1633                } break;
1634                case UPDATED_MEDIA_STATUS: {
1635                    if (DEBUG_SD_INSTALL) Log.i(TAG, "Got message UPDATED_MEDIA_STATUS");
1636                    boolean reportStatus = msg.arg1 == 1;
1637                    boolean doGc = msg.arg2 == 1;
1638                    if (DEBUG_SD_INSTALL) Log.i(TAG, "reportStatus=" + reportStatus + ", doGc = " + doGc);
1639                    if (doGc) {
1640                        // Force a gc to clear up stale containers.
1641                        Runtime.getRuntime().gc();
1642                    }
1643                    if (msg.obj != null) {
1644                        @SuppressWarnings("unchecked")
1645                        Set<AsecInstallArgs> args = (Set<AsecInstallArgs>) msg.obj;
1646                        if (DEBUG_SD_INSTALL) Log.i(TAG, "Unloading all containers");
1647                        // Unload containers
1648                        unloadAllContainers(args);
1649                    }
1650                    if (reportStatus) {
1651                        try {
1652                            if (DEBUG_SD_INSTALL) Log.i(TAG, "Invoking MountService call back");
1653                            PackageHelper.getMountService().finishMediaUpdate();
1654                        } catch (RemoteException e) {
1655                            Log.e(TAG, "MountService not running?");
1656                        }
1657                    }
1658                } break;
1659                case WRITE_SETTINGS: {
1660                    Process.setThreadPriority(Process.THREAD_PRIORITY_DEFAULT);
1661                    synchronized (mPackages) {
1662                        removeMessages(WRITE_SETTINGS);
1663                        removeMessages(WRITE_PACKAGE_RESTRICTIONS);
1664                        mSettings.writeLPr();
1665                        mDirtyUsers.clear();
1666                    }
1667                    Process.setThreadPriority(Process.THREAD_PRIORITY_BACKGROUND);
1668                } break;
1669                case WRITE_PACKAGE_RESTRICTIONS: {
1670                    Process.setThreadPriority(Process.THREAD_PRIORITY_DEFAULT);
1671                    synchronized (mPackages) {
1672                        removeMessages(WRITE_PACKAGE_RESTRICTIONS);
1673                        for (int userId : mDirtyUsers) {
1674                            mSettings.writePackageRestrictionsLPr(userId);
1675                        }
1676                        mDirtyUsers.clear();
1677                    }
1678                    Process.setThreadPriority(Process.THREAD_PRIORITY_BACKGROUND);
1679                } break;
1680                case WRITE_PACKAGE_LIST: {
1681                    Process.setThreadPriority(Process.THREAD_PRIORITY_DEFAULT);
1682                    synchronized (mPackages) {
1683                        removeMessages(WRITE_PACKAGE_LIST);
1684                        mSettings.writePackageListLPr(msg.arg1);
1685                    }
1686                    Process.setThreadPriority(Process.THREAD_PRIORITY_BACKGROUND);
1687                } break;
1688                case CHECK_PENDING_VERIFICATION: {
1689                    final int verificationId = msg.arg1;
1690                    final PackageVerificationState state = mPendingVerification.get(verificationId);
1691
1692                    if ((state != null) && !state.timeoutExtended()) {
1693                        final InstallArgs args = state.getInstallArgs();
1694                        final Uri originUri = Uri.fromFile(args.origin.resolvedFile);
1695
1696                        Slog.i(TAG, "Verification timed out for " + originUri);
1697                        mPendingVerification.remove(verificationId);
1698
1699                        int ret = PackageManager.INSTALL_FAILED_VERIFICATION_FAILURE;
1700
1701                        if (getDefaultVerificationResponse() == PackageManager.VERIFICATION_ALLOW) {
1702                            Slog.i(TAG, "Continuing with installation of " + originUri);
1703                            state.setVerifierResponse(Binder.getCallingUid(),
1704                                    PackageManager.VERIFICATION_ALLOW_WITHOUT_SUFFICIENT);
1705                            broadcastPackageVerified(verificationId, originUri,
1706                                    PackageManager.VERIFICATION_ALLOW,
1707                                    state.getInstallArgs().getUser());
1708                            try {
1709                                ret = args.copyApk(mContainerService, true);
1710                            } catch (RemoteException e) {
1711                                Slog.e(TAG, "Could not contact the ContainerService");
1712                            }
1713                        } else {
1714                            broadcastPackageVerified(verificationId, originUri,
1715                                    PackageManager.VERIFICATION_REJECT,
1716                                    state.getInstallArgs().getUser());
1717                        }
1718
1719                        Trace.asyncTraceEnd(
1720                                TRACE_TAG_PACKAGE_MANAGER, "verification", verificationId);
1721
1722                        processPendingInstall(args, ret);
1723                        mHandler.sendEmptyMessage(MCS_UNBIND);
1724                    }
1725                    break;
1726                }
1727                case PACKAGE_VERIFIED: {
1728                    final int verificationId = msg.arg1;
1729
1730                    final PackageVerificationState state = mPendingVerification.get(verificationId);
1731                    if (state == null) {
1732                        Slog.w(TAG, "Invalid verification token " + verificationId + " received");
1733                        break;
1734                    }
1735
1736                    final PackageVerificationResponse response = (PackageVerificationResponse) msg.obj;
1737
1738                    state.setVerifierResponse(response.callerUid, response.code);
1739
1740                    if (state.isVerificationComplete()) {
1741                        mPendingVerification.remove(verificationId);
1742
1743                        final InstallArgs args = state.getInstallArgs();
1744                        final Uri originUri = Uri.fromFile(args.origin.resolvedFile);
1745
1746                        int ret;
1747                        if (state.isInstallAllowed()) {
1748                            ret = PackageManager.INSTALL_FAILED_INTERNAL_ERROR;
1749                            broadcastPackageVerified(verificationId, originUri,
1750                                    response.code, state.getInstallArgs().getUser());
1751                            try {
1752                                ret = args.copyApk(mContainerService, true);
1753                            } catch (RemoteException e) {
1754                                Slog.e(TAG, "Could not contact the ContainerService");
1755                            }
1756                        } else {
1757                            ret = PackageManager.INSTALL_FAILED_VERIFICATION_FAILURE;
1758                        }
1759
1760                        Trace.asyncTraceEnd(
1761                                TRACE_TAG_PACKAGE_MANAGER, "verification", verificationId);
1762
1763                        processPendingInstall(args, ret);
1764                        mHandler.sendEmptyMessage(MCS_UNBIND);
1765                    }
1766
1767                    break;
1768                }
1769                case START_INTENT_FILTER_VERIFICATIONS: {
1770                    IFVerificationParams params = (IFVerificationParams) msg.obj;
1771                    verifyIntentFiltersIfNeeded(params.userId, params.verifierUid,
1772                            params.replacing, params.pkg);
1773                    break;
1774                }
1775                case INTENT_FILTER_VERIFIED: {
1776                    final int verificationId = msg.arg1;
1777
1778                    final IntentFilterVerificationState state = mIntentFilterVerificationStates.get(
1779                            verificationId);
1780                    if (state == null) {
1781                        Slog.w(TAG, "Invalid IntentFilter verification token "
1782                                + verificationId + " received");
1783                        break;
1784                    }
1785
1786                    final int userId = state.getUserId();
1787
1788                    if (DEBUG_DOMAIN_VERIFICATION) Slog.d(TAG,
1789                            "Processing IntentFilter verification with token:"
1790                            + verificationId + " and userId:" + userId);
1791
1792                    final IntentFilterVerificationResponse response =
1793                            (IntentFilterVerificationResponse) msg.obj;
1794
1795                    state.setVerifierResponse(response.callerUid, response.code);
1796
1797                    if (DEBUG_DOMAIN_VERIFICATION) Slog.d(TAG,
1798                            "IntentFilter verification with token:" + verificationId
1799                            + " and userId:" + userId
1800                            + " is settings verifier response with response code:"
1801                            + response.code);
1802
1803                    if (response.code == PackageManager.INTENT_FILTER_VERIFICATION_FAILURE) {
1804                        if (DEBUG_DOMAIN_VERIFICATION) Slog.d(TAG, "Domains failing verification: "
1805                                + response.getFailedDomainsString());
1806                    }
1807
1808                    if (state.isVerificationComplete()) {
1809                        mIntentFilterVerifier.receiveVerificationResponse(verificationId);
1810                    } else {
1811                        if (DEBUG_DOMAIN_VERIFICATION) Slog.d(TAG,
1812                                "IntentFilter verification with token:" + verificationId
1813                                + " was not said to be complete");
1814                    }
1815
1816                    break;
1817                }
1818            }
1819        }
1820    }
1821
1822    private void handlePackagePostInstall(PackageInstalledInfo res, boolean grantPermissions,
1823            boolean killApp, String[] grantedPermissions,
1824            boolean launchedForRestore, String installerPackage,
1825            IPackageInstallObserver2 installObserver) {
1826        if (res.returnCode == PackageManager.INSTALL_SUCCEEDED) {
1827            // Send the removed broadcasts
1828            if (res.removedInfo != null) {
1829                res.removedInfo.sendPackageRemovedBroadcasts(killApp);
1830            }
1831
1832            // Now that we successfully installed the package, grant runtime
1833            // permissions if requested before broadcasting the install.
1834            if (grantPermissions && res.pkg.applicationInfo.targetSdkVersion
1835                    >= Build.VERSION_CODES.M) {
1836                grantRequestedRuntimePermissions(res.pkg, res.newUsers, grantedPermissions);
1837            }
1838
1839            final boolean update = res.removedInfo != null
1840                    && res.removedInfo.removedPackage != null;
1841
1842            // If this is the first time we have child packages for a disabled privileged
1843            // app that had no children, we grant requested runtime permissions to the new
1844            // children if the parent on the system image had them already granted.
1845            if (res.pkg.parentPackage != null) {
1846                synchronized (mPackages) {
1847                    grantRuntimePermissionsGrantedToDisabledPrivSysPackageParentLPw(res.pkg);
1848                }
1849            }
1850
1851            synchronized (mPackages) {
1852                mEphemeralApplicationRegistry.onPackageInstalledLPw(res.pkg);
1853            }
1854
1855            final String packageName = res.pkg.applicationInfo.packageName;
1856            Bundle extras = new Bundle(1);
1857            extras.putInt(Intent.EXTRA_UID, res.uid);
1858
1859            // Determine the set of users who are adding this package for
1860            // the first time vs. those who are seeing an update.
1861            int[] firstUsers = EMPTY_INT_ARRAY;
1862            int[] updateUsers = EMPTY_INT_ARRAY;
1863            if (res.origUsers == null || res.origUsers.length == 0) {
1864                firstUsers = res.newUsers;
1865            } else {
1866                for (int newUser : res.newUsers) {
1867                    boolean isNew = true;
1868                    for (int origUser : res.origUsers) {
1869                        if (origUser == newUser) {
1870                            isNew = false;
1871                            break;
1872                        }
1873                    }
1874                    if (isNew) {
1875                        firstUsers = ArrayUtils.appendInt(firstUsers, newUser);
1876                    } else {
1877                        updateUsers = ArrayUtils.appendInt(updateUsers, newUser);
1878                    }
1879                }
1880            }
1881
1882            // Send installed broadcasts if the install/update is not ephemeral
1883            if (!isEphemeral(res.pkg)) {
1884                mProcessLoggingHandler.invalidateProcessLoggingBaseApkHash(res.pkg.baseCodePath);
1885
1886                // Send added for users that see the package for the first time
1887                sendPackageBroadcast(Intent.ACTION_PACKAGE_ADDED, packageName,
1888                        extras, 0 /*flags*/, null /*targetPackage*/,
1889                        null /*finishedReceiver*/, firstUsers);
1890
1891                // Send added for users that don't see the package for the first time
1892                if (update) {
1893                    extras.putBoolean(Intent.EXTRA_REPLACING, true);
1894                }
1895                sendPackageBroadcast(Intent.ACTION_PACKAGE_ADDED, packageName,
1896                        extras, 0 /*flags*/, null /*targetPackage*/,
1897                        null /*finishedReceiver*/, updateUsers);
1898
1899                // Send replaced for users that don't see the package for the first time
1900                if (update) {
1901                    sendPackageBroadcast(Intent.ACTION_PACKAGE_REPLACED,
1902                            packageName, extras, 0 /*flags*/,
1903                            null /*targetPackage*/, null /*finishedReceiver*/,
1904                            updateUsers);
1905                    sendPackageBroadcast(Intent.ACTION_MY_PACKAGE_REPLACED,
1906                            null /*package*/, null /*extras*/, 0 /*flags*/,
1907                            packageName /*targetPackage*/,
1908                            null /*finishedReceiver*/, updateUsers);
1909                } else if (launchedForRestore && !isSystemApp(res.pkg)) {
1910                    // First-install and we did a restore, so we're responsible for the
1911                    // first-launch broadcast.
1912                    if (DEBUG_BACKUP) {
1913                        Slog.i(TAG, "Post-restore of " + packageName
1914                                + " sending FIRST_LAUNCH in " + Arrays.toString(firstUsers));
1915                    }
1916                    sendFirstLaunchBroadcast(packageName, installerPackage, firstUsers);
1917                }
1918
1919                // Send broadcast package appeared if forward locked/external for all users
1920                // treat asec-hosted packages like removable media on upgrade
1921                if (res.pkg.isForwardLocked() || isExternal(res.pkg)) {
1922                    if (DEBUG_INSTALL) {
1923                        Slog.i(TAG, "upgrading pkg " + res.pkg
1924                                + " is ASEC-hosted -> AVAILABLE");
1925                    }
1926                    final int[] uidArray = new int[]{res.pkg.applicationInfo.uid};
1927                    ArrayList<String> pkgList = new ArrayList<>(1);
1928                    pkgList.add(packageName);
1929                    sendResourcesChangedBroadcast(true, true, pkgList, uidArray, null);
1930                }
1931            }
1932
1933            // Work that needs to happen on first install within each user
1934            if (firstUsers != null && firstUsers.length > 0) {
1935                synchronized (mPackages) {
1936                    for (int userId : firstUsers) {
1937                        // If this app is a browser and it's newly-installed for some
1938                        // users, clear any default-browser state in those users. The
1939                        // app's nature doesn't depend on the user, so we can just check
1940                        // its browser nature in any user and generalize.
1941                        if (packageIsBrowser(packageName, userId)) {
1942                            mSettings.setDefaultBrowserPackageNameLPw(null, userId);
1943                        }
1944
1945                        // We may also need to apply pending (restored) runtime
1946                        // permission grants within these users.
1947                        mSettings.applyPendingPermissionGrantsLPw(packageName, userId);
1948                    }
1949                }
1950            }
1951
1952            // Log current value of "unknown sources" setting
1953            EventLog.writeEvent(EventLogTags.UNKNOWN_SOURCES_ENABLED,
1954                    getUnknownSourcesSettings());
1955
1956            // Force a gc to clear up things
1957            Runtime.getRuntime().gc();
1958
1959            // Remove the replaced package's older resources safely now
1960            // We delete after a gc for applications  on sdcard.
1961            if (res.removedInfo != null && res.removedInfo.args != null) {
1962                synchronized (mInstallLock) {
1963                    res.removedInfo.args.doPostDeleteLI(true);
1964                }
1965            }
1966        }
1967
1968        // If someone is watching installs - notify them
1969        if (installObserver != null) {
1970            try {
1971                Bundle extras = extrasForInstallResult(res);
1972                installObserver.onPackageInstalled(res.name, res.returnCode,
1973                        res.returnMsg, extras);
1974            } catch (RemoteException e) {
1975                Slog.i(TAG, "Observer no longer exists.");
1976            }
1977        }
1978    }
1979
1980    private void grantRuntimePermissionsGrantedToDisabledPrivSysPackageParentLPw(
1981            PackageParser.Package pkg) {
1982        if (pkg.parentPackage == null) {
1983            return;
1984        }
1985        if (pkg.requestedPermissions == null) {
1986            return;
1987        }
1988        final PackageSetting disabledSysParentPs = mSettings
1989                .getDisabledSystemPkgLPr(pkg.parentPackage.packageName);
1990        if (disabledSysParentPs == null || disabledSysParentPs.pkg == null
1991                || !disabledSysParentPs.isPrivileged()
1992                || (disabledSysParentPs.childPackageNames != null
1993                        && !disabledSysParentPs.childPackageNames.isEmpty())) {
1994            return;
1995        }
1996        final int[] allUserIds = sUserManager.getUserIds();
1997        final int permCount = pkg.requestedPermissions.size();
1998        for (int i = 0; i < permCount; i++) {
1999            String permission = pkg.requestedPermissions.get(i);
2000            BasePermission bp = mSettings.mPermissions.get(permission);
2001            if (bp == null || !(bp.isRuntime() || bp.isDevelopment())) {
2002                continue;
2003            }
2004            for (int userId : allUserIds) {
2005                if (disabledSysParentPs.getPermissionsState().hasRuntimePermission(
2006                        permission, userId)) {
2007                    grantRuntimePermission(pkg.packageName, permission, userId);
2008                }
2009            }
2010        }
2011    }
2012
2013    private StorageEventListener mStorageListener = new StorageEventListener() {
2014        @Override
2015        public void onVolumeStateChanged(VolumeInfo vol, int oldState, int newState) {
2016            if (vol.type == VolumeInfo.TYPE_PRIVATE) {
2017                if (vol.state == VolumeInfo.STATE_MOUNTED) {
2018                    final String volumeUuid = vol.getFsUuid();
2019
2020                    // Clean up any users or apps that were removed or recreated
2021                    // while this volume was missing
2022                    reconcileUsers(volumeUuid);
2023                    reconcileApps(volumeUuid);
2024
2025                    // Clean up any install sessions that expired or were
2026                    // cancelled while this volume was missing
2027                    mInstallerService.onPrivateVolumeMounted(volumeUuid);
2028
2029                    loadPrivatePackages(vol);
2030
2031                } else if (vol.state == VolumeInfo.STATE_EJECTING) {
2032                    unloadPrivatePackages(vol);
2033                }
2034            }
2035
2036            if (vol.type == VolumeInfo.TYPE_PUBLIC && vol.isPrimary()) {
2037                if (vol.state == VolumeInfo.STATE_MOUNTED) {
2038                    updateExternalMediaStatus(true, false);
2039                } else if (vol.state == VolumeInfo.STATE_EJECTING) {
2040                    updateExternalMediaStatus(false, false);
2041                }
2042            }
2043        }
2044
2045        @Override
2046        public void onVolumeForgotten(String fsUuid) {
2047            if (TextUtils.isEmpty(fsUuid)) {
2048                Slog.e(TAG, "Forgetting internal storage is probably a mistake; ignoring");
2049                return;
2050            }
2051
2052            // Remove any apps installed on the forgotten volume
2053            synchronized (mPackages) {
2054                final List<PackageSetting> packages = mSettings.getVolumePackagesLPr(fsUuid);
2055                for (PackageSetting ps : packages) {
2056                    Slog.d(TAG, "Destroying " + ps.name + " because volume was forgotten");
2057                    deletePackage(ps.name, new LegacyPackageDeleteObserver(null).getBinder(),
2058                            UserHandle.USER_SYSTEM, PackageManager.DELETE_ALL_USERS);
2059                }
2060
2061                mSettings.onVolumeForgotten(fsUuid);
2062                mSettings.writeLPr();
2063            }
2064        }
2065    };
2066
2067    private void grantRequestedRuntimePermissions(PackageParser.Package pkg, int[] userIds,
2068            String[] grantedPermissions) {
2069        for (int userId : userIds) {
2070            grantRequestedRuntimePermissionsForUser(pkg, userId, grantedPermissions);
2071        }
2072
2073        // We could have touched GID membership, so flush out packages.list
2074        synchronized (mPackages) {
2075            mSettings.writePackageListLPr();
2076        }
2077    }
2078
2079    private void grantRequestedRuntimePermissionsForUser(PackageParser.Package pkg, int userId,
2080            String[] grantedPermissions) {
2081        SettingBase sb = (SettingBase) pkg.mExtras;
2082        if (sb == null) {
2083            return;
2084        }
2085
2086        PermissionsState permissionsState = sb.getPermissionsState();
2087
2088        final int immutableFlags = PackageManager.FLAG_PERMISSION_SYSTEM_FIXED
2089                | PackageManager.FLAG_PERMISSION_POLICY_FIXED;
2090
2091        for (String permission : pkg.requestedPermissions) {
2092            final BasePermission bp;
2093            synchronized (mPackages) {
2094                bp = mSettings.mPermissions.get(permission);
2095            }
2096            if (bp != null && (bp.isRuntime() || bp.isDevelopment())
2097                    && (grantedPermissions == null
2098                           || ArrayUtils.contains(grantedPermissions, permission))) {
2099                final int flags = permissionsState.getPermissionFlags(permission, userId);
2100                // Installer cannot change immutable permissions.
2101                if ((flags & immutableFlags) == 0) {
2102                    grantRuntimePermission(pkg.packageName, permission, userId);
2103                }
2104            }
2105        }
2106    }
2107
2108    Bundle extrasForInstallResult(PackageInstalledInfo res) {
2109        Bundle extras = null;
2110        switch (res.returnCode) {
2111            case PackageManager.INSTALL_FAILED_DUPLICATE_PERMISSION: {
2112                extras = new Bundle();
2113                extras.putString(PackageManager.EXTRA_FAILURE_EXISTING_PERMISSION,
2114                        res.origPermission);
2115                extras.putString(PackageManager.EXTRA_FAILURE_EXISTING_PACKAGE,
2116                        res.origPackage);
2117                break;
2118            }
2119            case PackageManager.INSTALL_SUCCEEDED: {
2120                extras = new Bundle();
2121                extras.putBoolean(Intent.EXTRA_REPLACING,
2122                        res.removedInfo != null && res.removedInfo.removedPackage != null);
2123                break;
2124            }
2125        }
2126        return extras;
2127    }
2128
2129    void scheduleWriteSettingsLocked() {
2130        if (!mHandler.hasMessages(WRITE_SETTINGS)) {
2131            mHandler.sendEmptyMessageDelayed(WRITE_SETTINGS, WRITE_SETTINGS_DELAY);
2132        }
2133    }
2134
2135    void scheduleWritePackageListLocked(int userId) {
2136        if (!mHandler.hasMessages(WRITE_PACKAGE_LIST)) {
2137            Message msg = mHandler.obtainMessage(WRITE_PACKAGE_LIST);
2138            msg.arg1 = userId;
2139            mHandler.sendMessageDelayed(msg, WRITE_SETTINGS_DELAY);
2140        }
2141    }
2142
2143    void scheduleWritePackageRestrictionsLocked(UserHandle user) {
2144        final int userId = user == null ? UserHandle.USER_ALL : user.getIdentifier();
2145        scheduleWritePackageRestrictionsLocked(userId);
2146    }
2147
2148    void scheduleWritePackageRestrictionsLocked(int userId) {
2149        final int[] userIds = (userId == UserHandle.USER_ALL)
2150                ? sUserManager.getUserIds() : new int[]{userId};
2151        for (int nextUserId : userIds) {
2152            if (!sUserManager.exists(nextUserId)) return;
2153            mDirtyUsers.add(nextUserId);
2154            if (!mHandler.hasMessages(WRITE_PACKAGE_RESTRICTIONS)) {
2155                mHandler.sendEmptyMessageDelayed(WRITE_PACKAGE_RESTRICTIONS, WRITE_SETTINGS_DELAY);
2156            }
2157        }
2158    }
2159
2160    public static PackageManagerService main(Context context, Installer installer,
2161            boolean factoryTest, boolean onlyCore) {
2162        // Self-check for initial settings.
2163        PackageManagerServiceCompilerMapping.checkProperties();
2164
2165        PackageManagerService m = new PackageManagerService(context, installer,
2166                factoryTest, onlyCore);
2167        m.enableSystemUserPackages();
2168        // Disable any carrier apps. We do this very early in boot to prevent the apps from being
2169        // disabled after already being started.
2170        CarrierAppUtils.disableCarrierAppsUntilPrivileged(context.getOpPackageName(), m,
2171                UserHandle.USER_SYSTEM);
2172        ServiceManager.addService("package", m);
2173        return m;
2174    }
2175
2176    private void enableSystemUserPackages() {
2177        if (!UserManager.isSplitSystemUser()) {
2178            return;
2179        }
2180        // For system user, enable apps based on the following conditions:
2181        // - app is whitelisted or belong to one of these groups:
2182        //   -- system app which has no launcher icons
2183        //   -- system app which has INTERACT_ACROSS_USERS permission
2184        //   -- system IME app
2185        // - app is not in the blacklist
2186        AppsQueryHelper queryHelper = new AppsQueryHelper(this);
2187        Set<String> enableApps = new ArraySet<>();
2188        enableApps.addAll(queryHelper.queryApps(AppsQueryHelper.GET_NON_LAUNCHABLE_APPS
2189                | AppsQueryHelper.GET_APPS_WITH_INTERACT_ACROSS_USERS_PERM
2190                | AppsQueryHelper.GET_IMES, /* systemAppsOnly */ true, UserHandle.SYSTEM));
2191        ArraySet<String> wlApps = SystemConfig.getInstance().getSystemUserWhitelistedApps();
2192        enableApps.addAll(wlApps);
2193        enableApps.addAll(queryHelper.queryApps(AppsQueryHelper.GET_REQUIRED_FOR_SYSTEM_USER,
2194                /* systemAppsOnly */ false, UserHandle.SYSTEM));
2195        ArraySet<String> blApps = SystemConfig.getInstance().getSystemUserBlacklistedApps();
2196        enableApps.removeAll(blApps);
2197        Log.i(TAG, "Applications installed for system user: " + enableApps);
2198        List<String> allAps = queryHelper.queryApps(0, /* systemAppsOnly */ false,
2199                UserHandle.SYSTEM);
2200        final int allAppsSize = allAps.size();
2201        synchronized (mPackages) {
2202            for (int i = 0; i < allAppsSize; i++) {
2203                String pName = allAps.get(i);
2204                PackageSetting pkgSetting = mSettings.mPackages.get(pName);
2205                // Should not happen, but we shouldn't be failing if it does
2206                if (pkgSetting == null) {
2207                    continue;
2208                }
2209                boolean install = enableApps.contains(pName);
2210                if (pkgSetting.getInstalled(UserHandle.USER_SYSTEM) != install) {
2211                    Log.i(TAG, (install ? "Installing " : "Uninstalling ") + pName
2212                            + " for system user");
2213                    pkgSetting.setInstalled(install, UserHandle.USER_SYSTEM);
2214                }
2215            }
2216        }
2217    }
2218
2219    private static void getDefaultDisplayMetrics(Context context, DisplayMetrics metrics) {
2220        DisplayManager displayManager = (DisplayManager) context.getSystemService(
2221                Context.DISPLAY_SERVICE);
2222        displayManager.getDisplay(Display.DEFAULT_DISPLAY).getMetrics(metrics);
2223    }
2224
2225    public PackageManagerService(Context context, Installer installer,
2226            boolean factoryTest, boolean onlyCore) {
2227        EventLog.writeEvent(EventLogTags.BOOT_PROGRESS_PMS_START,
2228                SystemClock.uptimeMillis());
2229
2230        if (mSdkVersion <= 0) {
2231            Slog.w(TAG, "**** ro.build.version.sdk not set!");
2232        }
2233
2234        mContext = context;
2235        mFactoryTest = factoryTest;
2236        mOnlyCore = onlyCore;
2237        mMetrics = new DisplayMetrics();
2238        mSettings = new Settings(mPackages);
2239        mSettings.addSharedUserLPw("android.uid.system", Process.SYSTEM_UID,
2240                ApplicationInfo.FLAG_SYSTEM, ApplicationInfo.PRIVATE_FLAG_PRIVILEGED);
2241        mSettings.addSharedUserLPw("android.uid.phone", RADIO_UID,
2242                ApplicationInfo.FLAG_SYSTEM, ApplicationInfo.PRIVATE_FLAG_PRIVILEGED);
2243        mSettings.addSharedUserLPw("android.uid.log", LOG_UID,
2244                ApplicationInfo.FLAG_SYSTEM, ApplicationInfo.PRIVATE_FLAG_PRIVILEGED);
2245        mSettings.addSharedUserLPw("android.uid.nfc", NFC_UID,
2246                ApplicationInfo.FLAG_SYSTEM, ApplicationInfo.PRIVATE_FLAG_PRIVILEGED);
2247        mSettings.addSharedUserLPw("android.uid.bluetooth", BLUETOOTH_UID,
2248                ApplicationInfo.FLAG_SYSTEM, ApplicationInfo.PRIVATE_FLAG_PRIVILEGED);
2249        mSettings.addSharedUserLPw("android.uid.shell", SHELL_UID,
2250                ApplicationInfo.FLAG_SYSTEM, ApplicationInfo.PRIVATE_FLAG_PRIVILEGED);
2251
2252        String separateProcesses = SystemProperties.get("debug.separate_processes");
2253        if (separateProcesses != null && separateProcesses.length() > 0) {
2254            if ("*".equals(separateProcesses)) {
2255                mDefParseFlags = PackageParser.PARSE_IGNORE_PROCESSES;
2256                mSeparateProcesses = null;
2257                Slog.w(TAG, "Running with debug.separate_processes: * (ALL)");
2258            } else {
2259                mDefParseFlags = 0;
2260                mSeparateProcesses = separateProcesses.split(",");
2261                Slog.w(TAG, "Running with debug.separate_processes: "
2262                        + separateProcesses);
2263            }
2264        } else {
2265            mDefParseFlags = 0;
2266            mSeparateProcesses = null;
2267        }
2268
2269        mInstaller = installer;
2270        mPackageDexOptimizer = new PackageDexOptimizer(installer, mInstallLock, context,
2271                "*dexopt*");
2272        mMoveCallbacks = new MoveCallbacks(FgThread.get().getLooper());
2273
2274        mOnPermissionChangeListeners = new OnPermissionChangeListeners(
2275                FgThread.get().getLooper());
2276
2277        getDefaultDisplayMetrics(context, mMetrics);
2278
2279        SystemConfig systemConfig = SystemConfig.getInstance();
2280        mGlobalGids = systemConfig.getGlobalGids();
2281        mSystemPermissions = systemConfig.getSystemPermissions();
2282        mAvailableFeatures = systemConfig.getAvailableFeatures();
2283
2284        synchronized (mInstallLock) {
2285        // writer
2286        synchronized (mPackages) {
2287            mHandlerThread = new ServiceThread(TAG,
2288                    Process.THREAD_PRIORITY_BACKGROUND, true /*allowIo*/);
2289            mHandlerThread.start();
2290            mHandler = new PackageHandler(mHandlerThread.getLooper());
2291            mProcessLoggingHandler = new ProcessLoggingHandler();
2292            Watchdog.getInstance().addThread(mHandler, WATCHDOG_TIMEOUT);
2293
2294            File dataDir = Environment.getDataDirectory();
2295            mAppInstallDir = new File(dataDir, "app");
2296            mAppLib32InstallDir = new File(dataDir, "app-lib");
2297            mEphemeralInstallDir = new File(dataDir, "app-ephemeral");
2298            mAsecInternalPath = new File(dataDir, "app-asec").getPath();
2299            mDrmAppPrivateInstallDir = new File(dataDir, "app-private");
2300
2301            sUserManager = new UserManagerService(context, this, mPackages);
2302
2303            // Propagate permission configuration in to package manager.
2304            ArrayMap<String, SystemConfig.PermissionEntry> permConfig
2305                    = systemConfig.getPermissions();
2306            for (int i=0; i<permConfig.size(); i++) {
2307                SystemConfig.PermissionEntry perm = permConfig.valueAt(i);
2308                BasePermission bp = mSettings.mPermissions.get(perm.name);
2309                if (bp == null) {
2310                    bp = new BasePermission(perm.name, "android", BasePermission.TYPE_BUILTIN);
2311                    mSettings.mPermissions.put(perm.name, bp);
2312                }
2313                if (perm.gids != null) {
2314                    bp.setGids(perm.gids, perm.perUser);
2315                }
2316            }
2317
2318            ArrayMap<String, String> libConfig = systemConfig.getSharedLibraries();
2319            for (int i=0; i<libConfig.size(); i++) {
2320                mSharedLibraries.put(libConfig.keyAt(i),
2321                        new SharedLibraryEntry(libConfig.valueAt(i), null));
2322            }
2323
2324            mFoundPolicyFile = SELinuxMMAC.readInstallPolicy();
2325
2326            mRestoredSettings = mSettings.readLPw(sUserManager.getUsers(false));
2327
2328            String customResolverActivity = Resources.getSystem().getString(
2329                    R.string.config_customResolverActivity);
2330            if (TextUtils.isEmpty(customResolverActivity)) {
2331                customResolverActivity = null;
2332            } else {
2333                mCustomResolverComponentName = ComponentName.unflattenFromString(
2334                        customResolverActivity);
2335            }
2336
2337            long startTime = SystemClock.uptimeMillis();
2338
2339            EventLog.writeEvent(EventLogTags.BOOT_PROGRESS_PMS_SYSTEM_SCAN_START,
2340                    startTime);
2341
2342            // Set flag to monitor and not change apk file paths when
2343            // scanning install directories.
2344            final int scanFlags = SCAN_NO_PATHS | SCAN_DEFER_DEX | SCAN_BOOTING | SCAN_INITIAL;
2345
2346            final String bootClassPath = System.getenv("BOOTCLASSPATH");
2347            final String systemServerClassPath = System.getenv("SYSTEMSERVERCLASSPATH");
2348
2349            if (bootClassPath == null) {
2350                Slog.w(TAG, "No BOOTCLASSPATH found!");
2351            }
2352
2353            if (systemServerClassPath == null) {
2354                Slog.w(TAG, "No SYSTEMSERVERCLASSPATH found!");
2355            }
2356
2357            final List<String> allInstructionSets = InstructionSets.getAllInstructionSets();
2358            final String[] dexCodeInstructionSets =
2359                    getDexCodeInstructionSets(
2360                            allInstructionSets.toArray(new String[allInstructionSets.size()]));
2361
2362            /**
2363             * Ensure all external libraries have had dexopt run on them.
2364             */
2365            if (mSharedLibraries.size() > 0) {
2366                // NOTE: For now, we're compiling these system "shared libraries"
2367                // (and framework jars) into all available architectures. It's possible
2368                // to compile them only when we come across an app that uses them (there's
2369                // already logic for that in scanPackageLI) but that adds some complexity.
2370                for (String dexCodeInstructionSet : dexCodeInstructionSets) {
2371                    for (SharedLibraryEntry libEntry : mSharedLibraries.values()) {
2372                        final String lib = libEntry.path;
2373                        if (lib == null) {
2374                            continue;
2375                        }
2376
2377                        try {
2378                            // Shared libraries do not have profiles so we perform a full
2379                            // AOT compilation (if needed).
2380                            int dexoptNeeded = DexFile.getDexOptNeeded(
2381                                    lib, dexCodeInstructionSet,
2382                                    getCompilerFilterForReason(REASON_SHARED_APK),
2383                                    false /* newProfile */);
2384                            if (dexoptNeeded != DexFile.NO_DEXOPT_NEEDED) {
2385                                mInstaller.dexopt(lib, Process.SYSTEM_UID, dexCodeInstructionSet,
2386                                        dexoptNeeded, DEXOPT_PUBLIC /*dexFlags*/,
2387                                        getCompilerFilterForReason(REASON_SHARED_APK),
2388                                        StorageManager.UUID_PRIVATE_INTERNAL,
2389                                        SKIP_SHARED_LIBRARY_CHECK);
2390                            }
2391                        } catch (FileNotFoundException e) {
2392                            Slog.w(TAG, "Library not found: " + lib);
2393                        } catch (IOException | InstallerException e) {
2394                            Slog.w(TAG, "Cannot dexopt " + lib + "; is it an APK or JAR? "
2395                                    + e.getMessage());
2396                        }
2397                    }
2398                }
2399            }
2400
2401            File frameworkDir = new File(Environment.getRootDirectory(), "framework");
2402
2403            final VersionInfo ver = mSettings.getInternalVersion();
2404            mIsUpgrade = !Build.FINGERPRINT.equals(ver.fingerprint);
2405
2406            // when upgrading from pre-M, promote system app permissions from install to runtime
2407            mPromoteSystemApps =
2408                    mIsUpgrade && ver.sdkVersion <= Build.VERSION_CODES.LOLLIPOP_MR1;
2409
2410            // When upgrading from pre-N, we need to handle package extraction like first boot,
2411            // as there is no profiling data available.
2412            mIsPreNUpgrade = mIsUpgrade && ver.sdkVersion < Build.VERSION_CODES.N;
2413
2414            // save off the names of pre-existing system packages prior to scanning; we don't
2415            // want to automatically grant runtime permissions for new system apps
2416            if (mPromoteSystemApps) {
2417                Iterator<PackageSetting> pkgSettingIter = mSettings.mPackages.values().iterator();
2418                while (pkgSettingIter.hasNext()) {
2419                    PackageSetting ps = pkgSettingIter.next();
2420                    if (isSystemApp(ps)) {
2421                        mExistingSystemPackages.add(ps.name);
2422                    }
2423                }
2424            }
2425
2426            // Collect vendor overlay packages.
2427            // (Do this before scanning any apps.)
2428            // For security and version matching reason, only consider
2429            // overlay packages if they reside in VENDOR_OVERLAY_DIR.
2430            File vendorOverlayDir = new File(VENDOR_OVERLAY_DIR);
2431            scanDirTracedLI(vendorOverlayDir, mDefParseFlags
2432                    | PackageParser.PARSE_IS_SYSTEM
2433                    | PackageParser.PARSE_IS_SYSTEM_DIR
2434                    | PackageParser.PARSE_TRUSTED_OVERLAY, scanFlags | SCAN_TRUSTED_OVERLAY, 0);
2435
2436            // Find base frameworks (resource packages without code).
2437            scanDirTracedLI(frameworkDir, mDefParseFlags
2438                    | PackageParser.PARSE_IS_SYSTEM
2439                    | PackageParser.PARSE_IS_SYSTEM_DIR
2440                    | PackageParser.PARSE_IS_PRIVILEGED,
2441                    scanFlags | SCAN_NO_DEX, 0);
2442
2443            // Collected privileged system packages.
2444            final File privilegedAppDir = new File(Environment.getRootDirectory(), "priv-app");
2445            scanDirTracedLI(privilegedAppDir, mDefParseFlags
2446                    | PackageParser.PARSE_IS_SYSTEM
2447                    | PackageParser.PARSE_IS_SYSTEM_DIR
2448                    | PackageParser.PARSE_IS_PRIVILEGED, scanFlags, 0);
2449
2450            // Collect ordinary system packages.
2451            final File systemAppDir = new File(Environment.getRootDirectory(), "app");
2452            scanDirTracedLI(systemAppDir, mDefParseFlags
2453                    | PackageParser.PARSE_IS_SYSTEM
2454                    | PackageParser.PARSE_IS_SYSTEM_DIR, scanFlags, 0);
2455
2456            // Collect all vendor packages.
2457            File vendorAppDir = new File("/vendor/app");
2458            try {
2459                vendorAppDir = vendorAppDir.getCanonicalFile();
2460            } catch (IOException e) {
2461                // failed to look up canonical path, continue with original one
2462            }
2463            scanDirTracedLI(vendorAppDir, mDefParseFlags
2464                    | PackageParser.PARSE_IS_SYSTEM
2465                    | PackageParser.PARSE_IS_SYSTEM_DIR, scanFlags, 0);
2466
2467            // Collect all OEM packages.
2468            final File oemAppDir = new File(Environment.getOemDirectory(), "app");
2469            scanDirTracedLI(oemAppDir, mDefParseFlags
2470                    | PackageParser.PARSE_IS_SYSTEM
2471                    | PackageParser.PARSE_IS_SYSTEM_DIR, scanFlags, 0);
2472
2473            // Prune any system packages that no longer exist.
2474            final List<String> possiblyDeletedUpdatedSystemApps = new ArrayList<String>();
2475            if (!mOnlyCore) {
2476                Iterator<PackageSetting> psit = mSettings.mPackages.values().iterator();
2477                while (psit.hasNext()) {
2478                    PackageSetting ps = psit.next();
2479
2480                    /*
2481                     * If this is not a system app, it can't be a
2482                     * disable system app.
2483                     */
2484                    if ((ps.pkgFlags & ApplicationInfo.FLAG_SYSTEM) == 0) {
2485                        continue;
2486                    }
2487
2488                    /*
2489                     * If the package is scanned, it's not erased.
2490                     */
2491                    final PackageParser.Package scannedPkg = mPackages.get(ps.name);
2492                    if (scannedPkg != null) {
2493                        /*
2494                         * If the system app is both scanned and in the
2495                         * disabled packages list, then it must have been
2496                         * added via OTA. Remove it from the currently
2497                         * scanned package so the previously user-installed
2498                         * application can be scanned.
2499                         */
2500                        if (mSettings.isDisabledSystemPackageLPr(ps.name)) {
2501                            logCriticalInfo(Log.WARN, "Expecting better updated system app for "
2502                                    + ps.name + "; removing system app.  Last known codePath="
2503                                    + ps.codePathString + ", installStatus=" + ps.installStatus
2504                                    + ", versionCode=" + ps.versionCode + "; scanned versionCode="
2505                                    + scannedPkg.mVersionCode);
2506                            removePackageLI(scannedPkg, true);
2507                            mExpectingBetter.put(ps.name, ps.codePath);
2508                        }
2509
2510                        continue;
2511                    }
2512
2513                    if (!mSettings.isDisabledSystemPackageLPr(ps.name)) {
2514                        psit.remove();
2515                        logCriticalInfo(Log.WARN, "System package " + ps.name
2516                                + " no longer exists; it's data will be wiped");
2517                        // Actual deletion of code and data will be handled by later
2518                        // reconciliation step
2519                    } else {
2520                        final PackageSetting disabledPs = mSettings.getDisabledSystemPkgLPr(ps.name);
2521                        if (disabledPs.codePath == null || !disabledPs.codePath.exists()) {
2522                            possiblyDeletedUpdatedSystemApps.add(ps.name);
2523                        }
2524                    }
2525                }
2526            }
2527
2528            //look for any incomplete package installations
2529            ArrayList<PackageSetting> deletePkgsList = mSettings.getListOfIncompleteInstallPackagesLPr();
2530            for (int i = 0; i < deletePkgsList.size(); i++) {
2531                // Actual deletion of code and data will be handled by later
2532                // reconciliation step
2533                final String packageName = deletePkgsList.get(i).name;
2534                logCriticalInfo(Log.WARN, "Cleaning up incompletely installed app: " + packageName);
2535                synchronized (mPackages) {
2536                    mSettings.removePackageLPw(packageName);
2537                }
2538            }
2539
2540            //delete tmp files
2541            deleteTempPackageFiles();
2542
2543            // Remove any shared userIDs that have no associated packages
2544            mSettings.pruneSharedUsersLPw();
2545
2546            if (!mOnlyCore) {
2547                EventLog.writeEvent(EventLogTags.BOOT_PROGRESS_PMS_DATA_SCAN_START,
2548                        SystemClock.uptimeMillis());
2549                scanDirTracedLI(mAppInstallDir, 0, scanFlags | SCAN_REQUIRE_KNOWN, 0);
2550
2551                scanDirTracedLI(mDrmAppPrivateInstallDir, mDefParseFlags
2552                        | PackageParser.PARSE_FORWARD_LOCK,
2553                        scanFlags | SCAN_REQUIRE_KNOWN, 0);
2554
2555                scanDirLI(mEphemeralInstallDir, mDefParseFlags
2556                        | PackageParser.PARSE_IS_EPHEMERAL,
2557                        scanFlags | SCAN_REQUIRE_KNOWN, 0);
2558
2559                /**
2560                 * Remove disable package settings for any updated system
2561                 * apps that were removed via an OTA. If they're not a
2562                 * previously-updated app, remove them completely.
2563                 * Otherwise, just revoke their system-level permissions.
2564                 */
2565                for (String deletedAppName : possiblyDeletedUpdatedSystemApps) {
2566                    PackageParser.Package deletedPkg = mPackages.get(deletedAppName);
2567                    mSettings.removeDisabledSystemPackageLPw(deletedAppName);
2568
2569                    String msg;
2570                    if (deletedPkg == null) {
2571                        msg = "Updated system package " + deletedAppName
2572                                + " no longer exists; it's data will be wiped";
2573                        // Actual deletion of code and data will be handled by later
2574                        // reconciliation step
2575                    } else {
2576                        msg = "Updated system app + " + deletedAppName
2577                                + " no longer present; removing system privileges for "
2578                                + deletedAppName;
2579
2580                        deletedPkg.applicationInfo.flags &= ~ApplicationInfo.FLAG_SYSTEM;
2581
2582                        PackageSetting deletedPs = mSettings.mPackages.get(deletedAppName);
2583                        deletedPs.pkgFlags &= ~ApplicationInfo.FLAG_SYSTEM;
2584                    }
2585                    logCriticalInfo(Log.WARN, msg);
2586                }
2587
2588                /**
2589                 * Make sure all system apps that we expected to appear on
2590                 * the userdata partition actually showed up. If they never
2591                 * appeared, crawl back and revive the system version.
2592                 */
2593                for (int i = 0; i < mExpectingBetter.size(); i++) {
2594                    final String packageName = mExpectingBetter.keyAt(i);
2595                    if (!mPackages.containsKey(packageName)) {
2596                        final File scanFile = mExpectingBetter.valueAt(i);
2597
2598                        logCriticalInfo(Log.WARN, "Expected better " + packageName
2599                                + " but never showed up; reverting to system");
2600
2601                        int reparseFlags = mDefParseFlags;
2602                        if (FileUtils.contains(privilegedAppDir, scanFile)) {
2603                            reparseFlags = PackageParser.PARSE_IS_SYSTEM
2604                                    | PackageParser.PARSE_IS_SYSTEM_DIR
2605                                    | PackageParser.PARSE_IS_PRIVILEGED;
2606                        } else if (FileUtils.contains(systemAppDir, scanFile)) {
2607                            reparseFlags = PackageParser.PARSE_IS_SYSTEM
2608                                    | PackageParser.PARSE_IS_SYSTEM_DIR;
2609                        } else if (FileUtils.contains(vendorAppDir, scanFile)) {
2610                            reparseFlags = PackageParser.PARSE_IS_SYSTEM
2611                                    | PackageParser.PARSE_IS_SYSTEM_DIR;
2612                        } else if (FileUtils.contains(oemAppDir, scanFile)) {
2613                            reparseFlags = PackageParser.PARSE_IS_SYSTEM
2614                                    | PackageParser.PARSE_IS_SYSTEM_DIR;
2615                        } else {
2616                            Slog.e(TAG, "Ignoring unexpected fallback path " + scanFile);
2617                            continue;
2618                        }
2619
2620                        mSettings.enableSystemPackageLPw(packageName);
2621
2622                        try {
2623                            scanPackageTracedLI(scanFile, reparseFlags, scanFlags, 0, null);
2624                        } catch (PackageManagerException e) {
2625                            Slog.e(TAG, "Failed to parse original system package: "
2626                                    + e.getMessage());
2627                        }
2628                    }
2629                }
2630            }
2631            mExpectingBetter.clear();
2632
2633            // Resolve protected action filters. Only the setup wizard is allowed to
2634            // have a high priority filter for these actions.
2635            mSetupWizardPackage = getSetupWizardPackageName();
2636            if (mProtectedFilters.size() > 0) {
2637                if (DEBUG_FILTERS && mSetupWizardPackage == null) {
2638                    Slog.i(TAG, "No setup wizard;"
2639                        + " All protected intents capped to priority 0");
2640                }
2641                for (ActivityIntentInfo filter : mProtectedFilters) {
2642                    if (filter.activity.info.packageName.equals(mSetupWizardPackage)) {
2643                        if (DEBUG_FILTERS) {
2644                            Slog.i(TAG, "Found setup wizard;"
2645                                + " allow priority " + filter.getPriority() + ";"
2646                                + " package: " + filter.activity.info.packageName
2647                                + " activity: " + filter.activity.className
2648                                + " priority: " + filter.getPriority());
2649                        }
2650                        // skip setup wizard; allow it to keep the high priority filter
2651                        continue;
2652                    }
2653                    Slog.w(TAG, "Protected action; cap priority to 0;"
2654                            + " package: " + filter.activity.info.packageName
2655                            + " activity: " + filter.activity.className
2656                            + " origPrio: " + filter.getPriority());
2657                    filter.setPriority(0);
2658                }
2659            }
2660            mDeferProtectedFilters = false;
2661            mProtectedFilters.clear();
2662
2663            // Now that we know all of the shared libraries, update all clients to have
2664            // the correct library paths.
2665            updateAllSharedLibrariesLPw();
2666
2667            for (SharedUserSetting setting : mSettings.getAllSharedUsersLPw()) {
2668                // NOTE: We ignore potential failures here during a system scan (like
2669                // the rest of the commands above) because there's precious little we
2670                // can do about it. A settings error is reported, though.
2671                adjustCpuAbisForSharedUserLPw(setting.packages, null /* scanned package */,
2672                        false /* boot complete */);
2673            }
2674
2675            // Now that we know all the packages we are keeping,
2676            // read and update their last usage times.
2677            mPackageUsage.readLP();
2678
2679            EventLog.writeEvent(EventLogTags.BOOT_PROGRESS_PMS_SCAN_END,
2680                    SystemClock.uptimeMillis());
2681            Slog.i(TAG, "Time to scan packages: "
2682                    + ((SystemClock.uptimeMillis()-startTime)/1000f)
2683                    + " seconds");
2684
2685            // If the platform SDK has changed since the last time we booted,
2686            // we need to re-grant app permission to catch any new ones that
2687            // appear.  This is really a hack, and means that apps can in some
2688            // cases get permissions that the user didn't initially explicitly
2689            // allow...  it would be nice to have some better way to handle
2690            // this situation.
2691            int updateFlags = UPDATE_PERMISSIONS_ALL;
2692            if (ver.sdkVersion != mSdkVersion) {
2693                Slog.i(TAG, "Platform changed from " + ver.sdkVersion + " to "
2694                        + mSdkVersion + "; regranting permissions for internal storage");
2695                updateFlags |= UPDATE_PERMISSIONS_REPLACE_PKG | UPDATE_PERMISSIONS_REPLACE_ALL;
2696            }
2697            updatePermissionsLPw(null, null, StorageManager.UUID_PRIVATE_INTERNAL, updateFlags);
2698            ver.sdkVersion = mSdkVersion;
2699
2700            // If this is the first boot or an update from pre-M, and it is a normal
2701            // boot, then we need to initialize the default preferred apps across
2702            // all defined users.
2703            if (!onlyCore && (mPromoteSystemApps || !mRestoredSettings)) {
2704                for (UserInfo user : sUserManager.getUsers(true)) {
2705                    mSettings.applyDefaultPreferredAppsLPw(this, user.id);
2706                    applyFactoryDefaultBrowserLPw(user.id);
2707                    primeDomainVerificationsLPw(user.id);
2708                }
2709            }
2710
2711            // Prepare storage for system user really early during boot,
2712            // since core system apps like SettingsProvider and SystemUI
2713            // can't wait for user to start
2714            final int storageFlags;
2715            if (StorageManager.isFileEncryptedNativeOrEmulated()) {
2716                storageFlags = StorageManager.FLAG_STORAGE_DE;
2717            } else {
2718                storageFlags = StorageManager.FLAG_STORAGE_DE | StorageManager.FLAG_STORAGE_CE;
2719            }
2720            reconcileAppsDataLI(StorageManager.UUID_PRIVATE_INTERNAL, UserHandle.USER_SYSTEM,
2721                    storageFlags);
2722
2723            // If this is first boot after an OTA, and a normal boot, then
2724            // we need to clear code cache directories.
2725            // Note that we do *not* clear the application profiles. These remain valid
2726            // across OTAs and are used to drive profile verification (post OTA) and
2727            // profile compilation (without waiting to collect a fresh set of profiles).
2728            if (mIsUpgrade && !onlyCore) {
2729                Slog.i(TAG, "Build fingerprint changed; clearing code caches");
2730                for (int i = 0; i < mSettings.mPackages.size(); i++) {
2731                    final PackageSetting ps = mSettings.mPackages.valueAt(i);
2732                    if (Objects.equals(StorageManager.UUID_PRIVATE_INTERNAL, ps.volumeUuid)) {
2733                        // No apps are running this early, so no need to freeze
2734                        clearAppDataLIF(ps.pkg, UserHandle.USER_ALL,
2735                                StorageManager.FLAG_STORAGE_DE | StorageManager.FLAG_STORAGE_CE
2736                                        | Installer.FLAG_CLEAR_CODE_CACHE_ONLY);
2737                    }
2738                }
2739                ver.fingerprint = Build.FINGERPRINT;
2740            }
2741
2742            checkDefaultBrowser();
2743
2744            // clear only after permissions and other defaults have been updated
2745            mExistingSystemPackages.clear();
2746            mPromoteSystemApps = false;
2747
2748            // All the changes are done during package scanning.
2749            ver.databaseVersion = Settings.CURRENT_DATABASE_VERSION;
2750
2751            // can downgrade to reader
2752            mSettings.writeLPr();
2753
2754            // Perform dexopt on all apps that mark themselves as coreApps. We do this pretty
2755            // early on (before the package manager declares itself as early) because other
2756            // components in the system server might ask for package contexts for these apps.
2757            //
2758            // Note that "onlyCore" in this context means the system is encrypted or encrypting
2759            // (i.e, that the data partition is unavailable).
2760            if ((isFirstBoot() || isUpgrade() || VMRuntime.didPruneDalvikCache()) && !onlyCore) {
2761                long start = System.nanoTime();
2762                List<PackageParser.Package> coreApps = new ArrayList<>();
2763                for (PackageParser.Package pkg : mPackages.values()) {
2764                    if (pkg.coreApp) {
2765                        coreApps.add(pkg);
2766                    }
2767                }
2768
2769                int[] stats = performDexOpt(coreApps, false,
2770                        getCompilerFilterForReason(REASON_CORE_APP));
2771
2772                final int elapsedTimeSeconds =
2773                        (int) TimeUnit.NANOSECONDS.toSeconds(System.nanoTime() - start);
2774                MetricsLogger.histogram(mContext, "opt_coreapps_time_s", elapsedTimeSeconds);
2775
2776                if (DEBUG_DEXOPT) {
2777                    Slog.i(TAG, "Dex-opt core apps took : " + elapsedTimeSeconds + " seconds (" +
2778                            stats[0] + ", " + stats[1] + ", " + stats[2] + ")");
2779                }
2780
2781
2782                // TODO: Should we log these stats to tron too ?
2783                // MetricsLogger.histogram(mContext, "opt_coreapps_num_dexopted", stats[0]);
2784                // MetricsLogger.histogram(mContext, "opt_coreapps_num_skipped", stats[1]);
2785                // MetricsLogger.histogram(mContext, "opt_coreapps_num_failed", stats[2]);
2786                // MetricsLogger.histogram(mContext, "opt_coreapps_num_total", coreApps.size());
2787            }
2788
2789            EventLog.writeEvent(EventLogTags.BOOT_PROGRESS_PMS_READY,
2790                    SystemClock.uptimeMillis());
2791
2792            if (!mOnlyCore) {
2793                mRequiredVerifierPackage = getRequiredButNotReallyRequiredVerifierLPr();
2794                mRequiredInstallerPackage = getRequiredInstallerLPr();
2795                mIntentFilterVerifierComponent = getIntentFilterVerifierComponentNameLPr();
2796                mIntentFilterVerifier = new IntentVerifierProxy(mContext,
2797                        mIntentFilterVerifierComponent);
2798                mServicesSystemSharedLibraryPackageName = getRequiredSharedLibraryLPr(
2799                        PackageManager.SYSTEM_SHARED_LIBRARY_SERVICES);
2800                mSharedSystemSharedLibraryPackageName = getRequiredSharedLibraryLPr(
2801                        PackageManager.SYSTEM_SHARED_LIBRARY_SHARED);
2802            } else {
2803                mRequiredVerifierPackage = null;
2804                mRequiredInstallerPackage = null;
2805                mIntentFilterVerifierComponent = null;
2806                mIntentFilterVerifier = null;
2807                mServicesSystemSharedLibraryPackageName = null;
2808                mSharedSystemSharedLibraryPackageName = null;
2809            }
2810
2811            mInstallerService = new PackageInstallerService(context, this);
2812
2813            final ComponentName ephemeralResolverComponent = getEphemeralResolverLPr();
2814            final ComponentName ephemeralInstallerComponent = getEphemeralInstallerLPr();
2815            // both the installer and resolver must be present to enable ephemeral
2816            if (ephemeralInstallerComponent != null && ephemeralResolverComponent != null) {
2817                if (DEBUG_EPHEMERAL) {
2818                    Slog.i(TAG, "Ephemeral activated; resolver: " + ephemeralResolverComponent
2819                            + " installer:" + ephemeralInstallerComponent);
2820                }
2821                mEphemeralResolverComponent = ephemeralResolverComponent;
2822                mEphemeralInstallerComponent = ephemeralInstallerComponent;
2823                setUpEphemeralInstallerActivityLP(mEphemeralInstallerComponent);
2824                mEphemeralResolverConnection =
2825                        new EphemeralResolverConnection(mContext, mEphemeralResolverComponent);
2826            } else {
2827                if (DEBUG_EPHEMERAL) {
2828                    final String missingComponent =
2829                            (ephemeralResolverComponent == null)
2830                            ? (ephemeralInstallerComponent == null)
2831                                    ? "resolver and installer"
2832                                    : "resolver"
2833                            : "installer";
2834                    Slog.i(TAG, "Ephemeral deactivated; missing " + missingComponent);
2835                }
2836                mEphemeralResolverComponent = null;
2837                mEphemeralInstallerComponent = null;
2838                mEphemeralResolverConnection = null;
2839            }
2840
2841            mEphemeralApplicationRegistry = new EphemeralApplicationRegistry(this);
2842        } // synchronized (mPackages)
2843        } // synchronized (mInstallLock)
2844
2845        // Now after opening every single application zip, make sure they
2846        // are all flushed.  Not really needed, but keeps things nice and
2847        // tidy.
2848        Runtime.getRuntime().gc();
2849
2850        // The initial scanning above does many calls into installd while
2851        // holding the mPackages lock, but we're mostly interested in yelling
2852        // once we have a booted system.
2853        mInstaller.setWarnIfHeld(mPackages);
2854
2855        // Expose private service for system components to use.
2856        LocalServices.addService(PackageManagerInternal.class, new PackageManagerInternalImpl());
2857    }
2858
2859    @Override
2860    public boolean isFirstBoot() {
2861        return !mRestoredSettings;
2862    }
2863
2864    @Override
2865    public boolean isOnlyCoreApps() {
2866        return mOnlyCore;
2867    }
2868
2869    @Override
2870    public boolean isUpgrade() {
2871        return mIsUpgrade;
2872    }
2873
2874    private @Nullable String getRequiredButNotReallyRequiredVerifierLPr() {
2875        final Intent intent = new Intent(Intent.ACTION_PACKAGE_NEEDS_VERIFICATION);
2876
2877        final List<ResolveInfo> matches = queryIntentReceiversInternal(intent, PACKAGE_MIME_TYPE,
2878                MATCH_SYSTEM_ONLY | MATCH_DIRECT_BOOT_AWARE | MATCH_DIRECT_BOOT_UNAWARE,
2879                UserHandle.USER_SYSTEM);
2880        if (matches.size() == 1) {
2881            return matches.get(0).getComponentInfo().packageName;
2882        } else {
2883            Log.e(TAG, "There should probably be exactly one verifier; found " + matches);
2884            return null;
2885        }
2886    }
2887
2888    private @NonNull String getRequiredSharedLibraryLPr(String libraryName) {
2889        synchronized (mPackages) {
2890            SharedLibraryEntry libraryEntry = mSharedLibraries.get(libraryName);
2891            if (libraryEntry == null) {
2892                throw new IllegalStateException("Missing required shared library:" + libraryName);
2893            }
2894            return libraryEntry.apk;
2895        }
2896    }
2897
2898    private @NonNull String getRequiredInstallerLPr() {
2899        final Intent intent = new Intent(Intent.ACTION_INSTALL_PACKAGE);
2900        intent.addCategory(Intent.CATEGORY_DEFAULT);
2901        intent.setDataAndType(Uri.fromFile(new File("foo.apk")), PACKAGE_MIME_TYPE);
2902
2903        final List<ResolveInfo> matches = queryIntentActivitiesInternal(intent, PACKAGE_MIME_TYPE,
2904                MATCH_SYSTEM_ONLY | MATCH_DIRECT_BOOT_AWARE | MATCH_DIRECT_BOOT_UNAWARE,
2905                UserHandle.USER_SYSTEM);
2906        if (matches.size() == 1) {
2907            ResolveInfo resolveInfo = matches.get(0);
2908            if (!resolveInfo.activityInfo.applicationInfo.isPrivilegedApp()) {
2909                throw new RuntimeException("The installer must be a privileged app");
2910            }
2911            return matches.get(0).getComponentInfo().packageName;
2912        } else {
2913            throw new RuntimeException("There must be exactly one installer; found " + matches);
2914        }
2915    }
2916
2917    private @NonNull ComponentName getIntentFilterVerifierComponentNameLPr() {
2918        final Intent intent = new Intent(Intent.ACTION_INTENT_FILTER_NEEDS_VERIFICATION);
2919
2920        final List<ResolveInfo> matches = queryIntentReceiversInternal(intent, PACKAGE_MIME_TYPE,
2921                MATCH_SYSTEM_ONLY | MATCH_DIRECT_BOOT_AWARE | MATCH_DIRECT_BOOT_UNAWARE,
2922                UserHandle.USER_SYSTEM);
2923        ResolveInfo best = null;
2924        final int N = matches.size();
2925        for (int i = 0; i < N; i++) {
2926            final ResolveInfo cur = matches.get(i);
2927            final String packageName = cur.getComponentInfo().packageName;
2928            if (checkPermission(android.Manifest.permission.INTENT_FILTER_VERIFICATION_AGENT,
2929                    packageName, UserHandle.USER_SYSTEM) != PackageManager.PERMISSION_GRANTED) {
2930                continue;
2931            }
2932
2933            if (best == null || cur.priority > best.priority) {
2934                best = cur;
2935            }
2936        }
2937
2938        if (best != null) {
2939            return best.getComponentInfo().getComponentName();
2940        } else {
2941            throw new RuntimeException("There must be at least one intent filter verifier");
2942        }
2943    }
2944
2945    private @Nullable ComponentName getEphemeralResolverLPr() {
2946        final String[] packageArray =
2947                mContext.getResources().getStringArray(R.array.config_ephemeralResolverPackage);
2948        if (packageArray.length == 0 && !Build.IS_DEBUGGABLE) {
2949            if (DEBUG_EPHEMERAL) {
2950                Slog.d(TAG, "Ephemeral resolver NOT found; empty package list");
2951            }
2952            return null;
2953        }
2954
2955        final int resolveFlags =
2956                MATCH_DIRECT_BOOT_AWARE
2957                | MATCH_DIRECT_BOOT_UNAWARE
2958                | (!Build.IS_DEBUGGABLE ? MATCH_SYSTEM_ONLY : 0);
2959        final Intent resolverIntent = new Intent(Intent.ACTION_RESOLVE_EPHEMERAL_PACKAGE);
2960        final List<ResolveInfo> resolvers = queryIntentServicesInternal(resolverIntent, null,
2961                resolveFlags, UserHandle.USER_SYSTEM);
2962
2963        final int N = resolvers.size();
2964        if (N == 0) {
2965            if (DEBUG_EPHEMERAL) {
2966                Slog.d(TAG, "Ephemeral resolver NOT found; no matching intent filters");
2967            }
2968            return null;
2969        }
2970
2971        final Set<String> possiblePackages = new ArraySet<>(Arrays.asList(packageArray));
2972        for (int i = 0; i < N; i++) {
2973            final ResolveInfo info = resolvers.get(i);
2974
2975            if (info.serviceInfo == null) {
2976                continue;
2977            }
2978
2979            final String packageName = info.serviceInfo.packageName;
2980            if (!possiblePackages.contains(packageName) && !Build.IS_DEBUGGABLE) {
2981                if (DEBUG_EPHEMERAL) {
2982                    Slog.d(TAG, "Ephemeral resolver not in allowed package list;"
2983                            + " pkg: " + packageName + ", info:" + info);
2984                }
2985                continue;
2986            }
2987
2988            if (DEBUG_EPHEMERAL) {
2989                Slog.v(TAG, "Ephemeral resolver found;"
2990                        + " pkg: " + packageName + ", info:" + info);
2991            }
2992            return new ComponentName(packageName, info.serviceInfo.name);
2993        }
2994        if (DEBUG_EPHEMERAL) {
2995            Slog.v(TAG, "Ephemeral resolver NOT found");
2996        }
2997        return null;
2998    }
2999
3000    private @Nullable ComponentName getEphemeralInstallerLPr() {
3001        final Intent intent = new Intent(Intent.ACTION_INSTALL_EPHEMERAL_PACKAGE);
3002        intent.addCategory(Intent.CATEGORY_DEFAULT);
3003        intent.setDataAndType(Uri.fromFile(new File("foo.apk")), PACKAGE_MIME_TYPE);
3004
3005        final int resolveFlags =
3006                MATCH_DIRECT_BOOT_AWARE
3007                | MATCH_DIRECT_BOOT_UNAWARE
3008                | (!Build.IS_DEBUGGABLE ? MATCH_SYSTEM_ONLY : 0);
3009        final List<ResolveInfo> matches = queryIntentActivitiesInternal(intent, PACKAGE_MIME_TYPE,
3010                resolveFlags, UserHandle.USER_SYSTEM);
3011        if (matches.size() == 0) {
3012            return null;
3013        } else if (matches.size() == 1) {
3014            return matches.get(0).getComponentInfo().getComponentName();
3015        } else {
3016            throw new RuntimeException(
3017                    "There must be at most one ephemeral installer; found " + matches);
3018        }
3019    }
3020
3021    private void primeDomainVerificationsLPw(int userId) {
3022        if (DEBUG_DOMAIN_VERIFICATION) {
3023            Slog.d(TAG, "Priming domain verifications in user " + userId);
3024        }
3025
3026        SystemConfig systemConfig = SystemConfig.getInstance();
3027        ArraySet<String> packages = systemConfig.getLinkedApps();
3028        ArraySet<String> domains = new ArraySet<String>();
3029
3030        for (String packageName : packages) {
3031            PackageParser.Package pkg = mPackages.get(packageName);
3032            if (pkg != null) {
3033                if (!pkg.isSystemApp()) {
3034                    Slog.w(TAG, "Non-system app '" + packageName + "' in sysconfig <app-link>");
3035                    continue;
3036                }
3037
3038                domains.clear();
3039                for (PackageParser.Activity a : pkg.activities) {
3040                    for (ActivityIntentInfo filter : a.intents) {
3041                        if (hasValidDomains(filter)) {
3042                            domains.addAll(filter.getHostsList());
3043                        }
3044                    }
3045                }
3046
3047                if (domains.size() > 0) {
3048                    if (DEBUG_DOMAIN_VERIFICATION) {
3049                        Slog.v(TAG, "      + " + packageName);
3050                    }
3051                    // 'Undefined' in the global IntentFilterVerificationInfo, i.e. the usual
3052                    // state w.r.t. the formal app-linkage "no verification attempted" state;
3053                    // and then 'always' in the per-user state actually used for intent resolution.
3054                    final IntentFilterVerificationInfo ivi;
3055                    ivi = mSettings.createIntentFilterVerificationIfNeededLPw(packageName,
3056                            new ArrayList<String>(domains));
3057                    ivi.setStatus(INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_UNDEFINED);
3058                    mSettings.updateIntentFilterVerificationStatusLPw(packageName,
3059                            INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_ALWAYS, userId);
3060                } else {
3061                    Slog.w(TAG, "Sysconfig <app-link> package '" + packageName
3062                            + "' does not handle web links");
3063                }
3064            } else {
3065                Slog.w(TAG, "Unknown package " + packageName + " in sysconfig <app-link>");
3066            }
3067        }
3068
3069        scheduleWritePackageRestrictionsLocked(userId);
3070        scheduleWriteSettingsLocked();
3071    }
3072
3073    private void applyFactoryDefaultBrowserLPw(int userId) {
3074        // The default browser app's package name is stored in a string resource,
3075        // with a product-specific overlay used for vendor customization.
3076        String browserPkg = mContext.getResources().getString(
3077                com.android.internal.R.string.default_browser);
3078        if (!TextUtils.isEmpty(browserPkg)) {
3079            // non-empty string => required to be a known package
3080            PackageSetting ps = mSettings.mPackages.get(browserPkg);
3081            if (ps == null) {
3082                Slog.e(TAG, "Product default browser app does not exist: " + browserPkg);
3083                browserPkg = null;
3084            } else {
3085                mSettings.setDefaultBrowserPackageNameLPw(browserPkg, userId);
3086            }
3087        }
3088
3089        // Nothing valid explicitly set? Make the factory-installed browser the explicit
3090        // default.  If there's more than one, just leave everything alone.
3091        if (browserPkg == null) {
3092            calculateDefaultBrowserLPw(userId);
3093        }
3094    }
3095
3096    private void calculateDefaultBrowserLPw(int userId) {
3097        List<String> allBrowsers = resolveAllBrowserApps(userId);
3098        final String browserPkg = (allBrowsers.size() == 1) ? allBrowsers.get(0) : null;
3099        mSettings.setDefaultBrowserPackageNameLPw(browserPkg, userId);
3100    }
3101
3102    private List<String> resolveAllBrowserApps(int userId) {
3103        // Resolve the canonical browser intent and check that the handleAllWebDataURI boolean is set
3104        List<ResolveInfo> list = queryIntentActivitiesInternal(sBrowserIntent, null,
3105                PackageManager.MATCH_ALL, userId);
3106
3107        final int count = list.size();
3108        List<String> result = new ArrayList<String>(count);
3109        for (int i=0; i<count; i++) {
3110            ResolveInfo info = list.get(i);
3111            if (info.activityInfo == null
3112                    || !info.handleAllWebDataURI
3113                    || (info.activityInfo.applicationInfo.flags & ApplicationInfo.FLAG_SYSTEM) == 0
3114                    || result.contains(info.activityInfo.packageName)) {
3115                continue;
3116            }
3117            result.add(info.activityInfo.packageName);
3118        }
3119
3120        return result;
3121    }
3122
3123    private boolean packageIsBrowser(String packageName, int userId) {
3124        List<ResolveInfo> list = queryIntentActivitiesInternal(sBrowserIntent, null,
3125                PackageManager.MATCH_ALL, userId);
3126        final int N = list.size();
3127        for (int i = 0; i < N; i++) {
3128            ResolveInfo info = list.get(i);
3129            if (packageName.equals(info.activityInfo.packageName)) {
3130                return true;
3131            }
3132        }
3133        return false;
3134    }
3135
3136    private void checkDefaultBrowser() {
3137        final int myUserId = UserHandle.myUserId();
3138        final String packageName = getDefaultBrowserPackageName(myUserId);
3139        if (packageName != null) {
3140            PackageInfo info = getPackageInfo(packageName, 0, myUserId);
3141            if (info == null) {
3142                Slog.w(TAG, "Default browser no longer installed: " + packageName);
3143                synchronized (mPackages) {
3144                    applyFactoryDefaultBrowserLPw(myUserId);    // leaves ambiguous when > 1
3145                }
3146            }
3147        }
3148    }
3149
3150    @Override
3151    public boolean onTransact(int code, Parcel data, Parcel reply, int flags)
3152            throws RemoteException {
3153        try {
3154            return super.onTransact(code, data, reply, flags);
3155        } catch (RuntimeException e) {
3156            if (!(e instanceof SecurityException) && !(e instanceof IllegalArgumentException)) {
3157                Slog.wtf(TAG, "Package Manager Crash", e);
3158            }
3159            throw e;
3160        }
3161    }
3162
3163    static int[] appendInts(int[] cur, int[] add) {
3164        if (add == null) return cur;
3165        if (cur == null) return add;
3166        final int N = add.length;
3167        for (int i=0; i<N; i++) {
3168            cur = appendInt(cur, add[i]);
3169        }
3170        return cur;
3171    }
3172
3173    private PackageInfo generatePackageInfo(PackageSetting ps, int flags, int userId) {
3174        if (!sUserManager.exists(userId)) return null;
3175        if (ps == null) {
3176            return null;
3177        }
3178        final PackageParser.Package p = ps.pkg;
3179        if (p == null) {
3180            return null;
3181        }
3182
3183        final PermissionsState permissionsState = ps.getPermissionsState();
3184
3185        final int[] gids = permissionsState.computeGids(userId);
3186        final Set<String> permissions = permissionsState.getPermissions(userId);
3187        final PackageUserState state = ps.readUserState(userId);
3188
3189        return PackageParser.generatePackageInfo(p, gids, flags,
3190                ps.firstInstallTime, ps.lastUpdateTime, permissions, state, userId);
3191    }
3192
3193    @Override
3194    public void checkPackageStartable(String packageName, int userId) {
3195        final boolean userKeyUnlocked = StorageManager.isUserKeyUnlocked(userId);
3196
3197        synchronized (mPackages) {
3198            final PackageSetting ps = mSettings.mPackages.get(packageName);
3199            if (ps == null) {
3200                throw new SecurityException("Package " + packageName + " was not found!");
3201            }
3202
3203            if (!ps.getInstalled(userId)) {
3204                throw new SecurityException(
3205                        "Package " + packageName + " was not installed for user " + userId + "!");
3206            }
3207
3208            if (mSafeMode && !ps.isSystem()) {
3209                throw new SecurityException("Package " + packageName + " not a system app!");
3210            }
3211
3212            if (mFrozenPackages.contains(packageName)) {
3213                throw new SecurityException("Package " + packageName + " is currently frozen!");
3214            }
3215
3216            if (!userKeyUnlocked && !(ps.pkg.applicationInfo.isDirectBootAware()
3217                    || ps.pkg.applicationInfo.isPartiallyDirectBootAware())) {
3218                throw new SecurityException("Package " + packageName + " is not encryption aware!");
3219            }
3220        }
3221    }
3222
3223    @Override
3224    public boolean isPackageAvailable(String packageName, int userId) {
3225        if (!sUserManager.exists(userId)) return false;
3226        enforceCrossUserPermission(Binder.getCallingUid(), userId,
3227                false /* requireFullPermission */, false /* checkShell */, "is package available");
3228        synchronized (mPackages) {
3229            PackageParser.Package p = mPackages.get(packageName);
3230            if (p != null) {
3231                final PackageSetting ps = (PackageSetting) p.mExtras;
3232                if (ps != null) {
3233                    final PackageUserState state = ps.readUserState(userId);
3234                    if (state != null) {
3235                        return PackageParser.isAvailable(state);
3236                    }
3237                }
3238            }
3239        }
3240        return false;
3241    }
3242
3243    @Override
3244    public PackageInfo getPackageInfo(String packageName, int flags, int userId) {
3245        if (!sUserManager.exists(userId)) return null;
3246        flags = updateFlagsForPackage(flags, userId, packageName);
3247        enforceCrossUserPermission(Binder.getCallingUid(), userId,
3248                false /* requireFullPermission */, false /* checkShell */, "get package info");
3249        // reader
3250        synchronized (mPackages) {
3251            final boolean matchFactoryOnly = (flags & MATCH_FACTORY_ONLY) != 0;
3252            PackageParser.Package p = null;
3253            if (matchFactoryOnly) {
3254                final PackageSetting ps = mSettings.getDisabledSystemPkgLPr(packageName);
3255                if (ps != null) {
3256                    return generatePackageInfo(ps, flags, userId);
3257                }
3258            }
3259            if (p == null) {
3260                p = mPackages.get(packageName);
3261                if (matchFactoryOnly && p != null && !isSystemApp(p)) {
3262                    return null;
3263                }
3264            }
3265            if (DEBUG_PACKAGE_INFO)
3266                Log.v(TAG, "getPackageInfo " + packageName + ": " + p);
3267            if (p != null) {
3268                return generatePackageInfo((PackageSetting)p.mExtras, flags, userId);
3269            }
3270            if (!matchFactoryOnly && (flags & MATCH_UNINSTALLED_PACKAGES) != 0) {
3271                final PackageSetting ps = mSettings.mPackages.get(packageName);
3272                return generatePackageInfo(ps, flags, userId);
3273            }
3274        }
3275        return null;
3276    }
3277
3278    @Override
3279    public String[] currentToCanonicalPackageNames(String[] names) {
3280        String[] out = new String[names.length];
3281        // reader
3282        synchronized (mPackages) {
3283            for (int i=names.length-1; i>=0; i--) {
3284                PackageSetting ps = mSettings.mPackages.get(names[i]);
3285                out[i] = ps != null && ps.realName != null ? ps.realName : names[i];
3286            }
3287        }
3288        return out;
3289    }
3290
3291    @Override
3292    public String[] canonicalToCurrentPackageNames(String[] names) {
3293        String[] out = new String[names.length];
3294        // reader
3295        synchronized (mPackages) {
3296            for (int i=names.length-1; i>=0; i--) {
3297                String cur = mSettings.mRenamedPackages.get(names[i]);
3298                out[i] = cur != null ? cur : names[i];
3299            }
3300        }
3301        return out;
3302    }
3303
3304    @Override
3305    public int getPackageUid(String packageName, int flags, int userId) {
3306        if (!sUserManager.exists(userId)) return -1;
3307        flags = updateFlagsForPackage(flags, userId, packageName);
3308        enforceCrossUserPermission(Binder.getCallingUid(), userId,
3309                false /* requireFullPermission */, false /* checkShell */, "get package uid");
3310
3311        // reader
3312        synchronized (mPackages) {
3313            final PackageParser.Package p = mPackages.get(packageName);
3314            if (p != null && p.isMatch(flags)) {
3315                return UserHandle.getUid(userId, p.applicationInfo.uid);
3316            }
3317            if ((flags & MATCH_UNINSTALLED_PACKAGES) != 0) {
3318                final PackageSetting ps = mSettings.mPackages.get(packageName);
3319                if (ps != null && ps.isMatch(flags)) {
3320                    return UserHandle.getUid(userId, ps.appId);
3321                }
3322            }
3323        }
3324
3325        return -1;
3326    }
3327
3328    @Override
3329    public int[] getPackageGids(String packageName, int flags, int userId) {
3330        if (!sUserManager.exists(userId)) return null;
3331        flags = updateFlagsForPackage(flags, userId, packageName);
3332        enforceCrossUserPermission(Binder.getCallingUid(), userId,
3333                false /* requireFullPermission */, false /* checkShell */,
3334                "getPackageGids");
3335
3336        // reader
3337        synchronized (mPackages) {
3338            final PackageParser.Package p = mPackages.get(packageName);
3339            if (p != null && p.isMatch(flags)) {
3340                PackageSetting ps = (PackageSetting) p.mExtras;
3341                return ps.getPermissionsState().computeGids(userId);
3342            }
3343            if ((flags & MATCH_UNINSTALLED_PACKAGES) != 0) {
3344                final PackageSetting ps = mSettings.mPackages.get(packageName);
3345                if (ps != null && ps.isMatch(flags)) {
3346                    return ps.getPermissionsState().computeGids(userId);
3347                }
3348            }
3349        }
3350
3351        return null;
3352    }
3353
3354    static PermissionInfo generatePermissionInfo(BasePermission bp, int flags) {
3355        if (bp.perm != null) {
3356            return PackageParser.generatePermissionInfo(bp.perm, flags);
3357        }
3358        PermissionInfo pi = new PermissionInfo();
3359        pi.name = bp.name;
3360        pi.packageName = bp.sourcePackage;
3361        pi.nonLocalizedLabel = bp.name;
3362        pi.protectionLevel = bp.protectionLevel;
3363        return pi;
3364    }
3365
3366    @Override
3367    public PermissionInfo getPermissionInfo(String name, int flags) {
3368        // reader
3369        synchronized (mPackages) {
3370            final BasePermission p = mSettings.mPermissions.get(name);
3371            if (p != null) {
3372                return generatePermissionInfo(p, flags);
3373            }
3374            return null;
3375        }
3376    }
3377
3378    @Override
3379    public @Nullable ParceledListSlice<PermissionInfo> queryPermissionsByGroup(String group,
3380            int flags) {
3381        // reader
3382        synchronized (mPackages) {
3383            if (group != null && !mPermissionGroups.containsKey(group)) {
3384                // This is thrown as NameNotFoundException
3385                return null;
3386            }
3387
3388            ArrayList<PermissionInfo> out = new ArrayList<PermissionInfo>(10);
3389            for (BasePermission p : mSettings.mPermissions.values()) {
3390                if (group == null) {
3391                    if (p.perm == null || p.perm.info.group == null) {
3392                        out.add(generatePermissionInfo(p, flags));
3393                    }
3394                } else {
3395                    if (p.perm != null && group.equals(p.perm.info.group)) {
3396                        out.add(PackageParser.generatePermissionInfo(p.perm, flags));
3397                    }
3398                }
3399            }
3400            return new ParceledListSlice<>(out);
3401        }
3402    }
3403
3404    @Override
3405    public PermissionGroupInfo getPermissionGroupInfo(String name, int flags) {
3406        // reader
3407        synchronized (mPackages) {
3408            return PackageParser.generatePermissionGroupInfo(
3409                    mPermissionGroups.get(name), flags);
3410        }
3411    }
3412
3413    @Override
3414    public @NonNull ParceledListSlice<PermissionGroupInfo> getAllPermissionGroups(int flags) {
3415        // reader
3416        synchronized (mPackages) {
3417            final int N = mPermissionGroups.size();
3418            ArrayList<PermissionGroupInfo> out
3419                    = new ArrayList<PermissionGroupInfo>(N);
3420            for (PackageParser.PermissionGroup pg : mPermissionGroups.values()) {
3421                out.add(PackageParser.generatePermissionGroupInfo(pg, flags));
3422            }
3423            return new ParceledListSlice<>(out);
3424        }
3425    }
3426
3427    private ApplicationInfo generateApplicationInfoFromSettingsLPw(String packageName, int flags,
3428            int userId) {
3429        if (!sUserManager.exists(userId)) return null;
3430        PackageSetting ps = mSettings.mPackages.get(packageName);
3431        if (ps != null) {
3432            if (ps.pkg == null) {
3433                final PackageInfo pInfo = generatePackageInfo(ps, flags, userId);
3434                if (pInfo != null) {
3435                    return pInfo.applicationInfo;
3436                }
3437                return null;
3438            }
3439            return PackageParser.generateApplicationInfo(ps.pkg, flags,
3440                    ps.readUserState(userId), userId);
3441        }
3442        return null;
3443    }
3444
3445    @Override
3446    public ApplicationInfo getApplicationInfo(String packageName, int flags, int userId) {
3447        if (!sUserManager.exists(userId)) return null;
3448        flags = updateFlagsForApplication(flags, userId, packageName);
3449        enforceCrossUserPermission(Binder.getCallingUid(), userId,
3450                false /* requireFullPermission */, false /* checkShell */, "get application info");
3451        // writer
3452        synchronized (mPackages) {
3453            PackageParser.Package p = mPackages.get(packageName);
3454            if (DEBUG_PACKAGE_INFO) Log.v(
3455                    TAG, "getApplicationInfo " + packageName
3456                    + ": " + p);
3457            if (p != null) {
3458                PackageSetting ps = mSettings.mPackages.get(packageName);
3459                if (ps == null) return null;
3460                // Note: isEnabledLP() does not apply here - always return info
3461                return PackageParser.generateApplicationInfo(
3462                        p, flags, ps.readUserState(userId), userId);
3463            }
3464            if ("android".equals(packageName)||"system".equals(packageName)) {
3465                return mAndroidApplication;
3466            }
3467            if ((flags & MATCH_UNINSTALLED_PACKAGES) != 0) {
3468                return generateApplicationInfoFromSettingsLPw(packageName, flags, userId);
3469            }
3470        }
3471        return null;
3472    }
3473
3474    @Override
3475    public void freeStorageAndNotify(final String volumeUuid, final long freeStorageSize,
3476            final IPackageDataObserver observer) {
3477        mContext.enforceCallingOrSelfPermission(
3478                android.Manifest.permission.CLEAR_APP_CACHE, null);
3479        // Queue up an async operation since clearing cache may take a little while.
3480        mHandler.post(new Runnable() {
3481            public void run() {
3482                mHandler.removeCallbacks(this);
3483                boolean success = true;
3484                synchronized (mInstallLock) {
3485                    try {
3486                        mInstaller.freeCache(volumeUuid, freeStorageSize);
3487                    } catch (InstallerException e) {
3488                        Slog.w(TAG, "Couldn't clear application caches: " + e);
3489                        success = false;
3490                    }
3491                }
3492                if (observer != null) {
3493                    try {
3494                        observer.onRemoveCompleted(null, success);
3495                    } catch (RemoteException e) {
3496                        Slog.w(TAG, "RemoveException when invoking call back");
3497                    }
3498                }
3499            }
3500        });
3501    }
3502
3503    @Override
3504    public void freeStorage(final String volumeUuid, final long freeStorageSize,
3505            final IntentSender pi) {
3506        mContext.enforceCallingOrSelfPermission(
3507                android.Manifest.permission.CLEAR_APP_CACHE, null);
3508        // Queue up an async operation since clearing cache may take a little while.
3509        mHandler.post(new Runnable() {
3510            public void run() {
3511                mHandler.removeCallbacks(this);
3512                boolean success = true;
3513                synchronized (mInstallLock) {
3514                    try {
3515                        mInstaller.freeCache(volumeUuid, freeStorageSize);
3516                    } catch (InstallerException e) {
3517                        Slog.w(TAG, "Couldn't clear application caches: " + e);
3518                        success = false;
3519                    }
3520                }
3521                if(pi != null) {
3522                    try {
3523                        // Callback via pending intent
3524                        int code = success ? 1 : 0;
3525                        pi.sendIntent(null, code, null,
3526                                null, null);
3527                    } catch (SendIntentException e1) {
3528                        Slog.i(TAG, "Failed to send pending intent");
3529                    }
3530                }
3531            }
3532        });
3533    }
3534
3535    void freeStorage(String volumeUuid, long freeStorageSize) throws IOException {
3536        synchronized (mInstallLock) {
3537            try {
3538                mInstaller.freeCache(volumeUuid, freeStorageSize);
3539            } catch (InstallerException e) {
3540                throw new IOException("Failed to free enough space", e);
3541            }
3542        }
3543    }
3544
3545    /**
3546     * Update given flags based on encryption status of current user.
3547     */
3548    private int updateFlags(int flags, int userId) {
3549        if ((flags & (PackageManager.MATCH_DIRECT_BOOT_UNAWARE
3550                | PackageManager.MATCH_DIRECT_BOOT_AWARE)) != 0) {
3551            // Caller expressed an explicit opinion about what encryption
3552            // aware/unaware components they want to see, so fall through and
3553            // give them what they want
3554        } else {
3555            // Caller expressed no opinion, so match based on user state
3556            if (getUserManagerInternal().isUserUnlockingOrUnlocked(userId)) {
3557                flags |= PackageManager.MATCH_DIRECT_BOOT_AWARE | MATCH_DIRECT_BOOT_UNAWARE;
3558            } else {
3559                flags |= PackageManager.MATCH_DIRECT_BOOT_AWARE;
3560            }
3561        }
3562        return flags;
3563    }
3564
3565    private UserManagerInternal getUserManagerInternal() {
3566        if (mUserManagerInternal == null) {
3567            mUserManagerInternal = LocalServices.getService(UserManagerInternal.class);
3568        }
3569        return mUserManagerInternal;
3570    }
3571
3572    /**
3573     * Update given flags when being used to request {@link PackageInfo}.
3574     */
3575    private int updateFlagsForPackage(int flags, int userId, Object cookie) {
3576        boolean triaged = true;
3577        if ((flags & (PackageManager.GET_ACTIVITIES | PackageManager.GET_RECEIVERS
3578                | PackageManager.GET_SERVICES | PackageManager.GET_PROVIDERS)) != 0) {
3579            // Caller is asking for component details, so they'd better be
3580            // asking for specific encryption matching behavior, or be triaged
3581            if ((flags & (PackageManager.MATCH_DIRECT_BOOT_UNAWARE
3582                    | PackageManager.MATCH_DIRECT_BOOT_AWARE
3583                    | PackageManager.MATCH_DEBUG_TRIAGED_MISSING)) == 0) {
3584                triaged = false;
3585            }
3586        }
3587        if ((flags & (PackageManager.MATCH_UNINSTALLED_PACKAGES
3588                | PackageManager.MATCH_SYSTEM_ONLY
3589                | PackageManager.MATCH_DEBUG_TRIAGED_MISSING)) == 0) {
3590            triaged = false;
3591        }
3592        if (DEBUG_TRIAGED_MISSING && (Binder.getCallingUid() == Process.SYSTEM_UID) && !triaged) {
3593            Log.w(TAG, "Caller hasn't been triaged for missing apps; they asked about " + cookie
3594                    + " with flags 0x" + Integer.toHexString(flags), new Throwable());
3595        }
3596        return updateFlags(flags, userId);
3597    }
3598
3599    /**
3600     * Update given flags when being used to request {@link ApplicationInfo}.
3601     */
3602    private int updateFlagsForApplication(int flags, int userId, Object cookie) {
3603        return updateFlagsForPackage(flags, userId, cookie);
3604    }
3605
3606    /**
3607     * Update given flags when being used to request {@link ComponentInfo}.
3608     */
3609    private int updateFlagsForComponent(int flags, int userId, Object cookie) {
3610        if (cookie instanceof Intent) {
3611            if ((((Intent) cookie).getFlags() & Intent.FLAG_DEBUG_TRIAGED_MISSING) != 0) {
3612                flags |= PackageManager.MATCH_DEBUG_TRIAGED_MISSING;
3613            }
3614        }
3615
3616        boolean triaged = true;
3617        // Caller is asking for component details, so they'd better be
3618        // asking for specific encryption matching behavior, or be triaged
3619        if ((flags & (PackageManager.MATCH_DIRECT_BOOT_UNAWARE
3620                | PackageManager.MATCH_DIRECT_BOOT_AWARE
3621                | PackageManager.MATCH_DEBUG_TRIAGED_MISSING)) == 0) {
3622            triaged = false;
3623        }
3624        if (DEBUG_TRIAGED_MISSING && (Binder.getCallingUid() == Process.SYSTEM_UID) && !triaged) {
3625            Log.w(TAG, "Caller hasn't been triaged for missing apps; they asked about " + cookie
3626                    + " with flags 0x" + Integer.toHexString(flags), new Throwable());
3627        }
3628
3629        return updateFlags(flags, userId);
3630    }
3631
3632    /**
3633     * Update given flags when being used to request {@link ResolveInfo}.
3634     */
3635    int updateFlagsForResolve(int flags, int userId, Object cookie) {
3636        // Safe mode means we shouldn't match any third-party components
3637        if (mSafeMode) {
3638            flags |= PackageManager.MATCH_SYSTEM_ONLY;
3639        }
3640
3641        return updateFlagsForComponent(flags, userId, cookie);
3642    }
3643
3644    @Override
3645    public ActivityInfo getActivityInfo(ComponentName component, int flags, int userId) {
3646        if (!sUserManager.exists(userId)) return null;
3647        flags = updateFlagsForComponent(flags, userId, component);
3648        enforceCrossUserPermission(Binder.getCallingUid(), userId,
3649                false /* requireFullPermission */, false /* checkShell */, "get activity info");
3650        synchronized (mPackages) {
3651            PackageParser.Activity a = mActivities.mActivities.get(component);
3652
3653            if (DEBUG_PACKAGE_INFO) Log.v(TAG, "getActivityInfo " + component + ": " + a);
3654            if (a != null && mSettings.isEnabledAndMatchLPr(a.info, flags, userId)) {
3655                PackageSetting ps = mSettings.mPackages.get(component.getPackageName());
3656                if (ps == null) return null;
3657                return PackageParser.generateActivityInfo(a, flags, ps.readUserState(userId),
3658                        userId);
3659            }
3660            if (mResolveComponentName.equals(component)) {
3661                return PackageParser.generateActivityInfo(mResolveActivity, flags,
3662                        new PackageUserState(), userId);
3663            }
3664        }
3665        return null;
3666    }
3667
3668    @Override
3669    public boolean activitySupportsIntent(ComponentName component, Intent intent,
3670            String resolvedType) {
3671        synchronized (mPackages) {
3672            if (component.equals(mResolveComponentName)) {
3673                // The resolver supports EVERYTHING!
3674                return true;
3675            }
3676            PackageParser.Activity a = mActivities.mActivities.get(component);
3677            if (a == null) {
3678                return false;
3679            }
3680            for (int i=0; i<a.intents.size(); i++) {
3681                if (a.intents.get(i).match(intent.getAction(), resolvedType, intent.getScheme(),
3682                        intent.getData(), intent.getCategories(), TAG) >= 0) {
3683                    return true;
3684                }
3685            }
3686            return false;
3687        }
3688    }
3689
3690    @Override
3691    public ActivityInfo getReceiverInfo(ComponentName component, int flags, int userId) {
3692        if (!sUserManager.exists(userId)) return null;
3693        flags = updateFlagsForComponent(flags, userId, component);
3694        enforceCrossUserPermission(Binder.getCallingUid(), userId,
3695                false /* requireFullPermission */, false /* checkShell */, "get receiver info");
3696        synchronized (mPackages) {
3697            PackageParser.Activity a = mReceivers.mActivities.get(component);
3698            if (DEBUG_PACKAGE_INFO) Log.v(
3699                TAG, "getReceiverInfo " + component + ": " + a);
3700            if (a != null && mSettings.isEnabledAndMatchLPr(a.info, flags, userId)) {
3701                PackageSetting ps = mSettings.mPackages.get(component.getPackageName());
3702                if (ps == null) return null;
3703                return PackageParser.generateActivityInfo(a, flags, ps.readUserState(userId),
3704                        userId);
3705            }
3706        }
3707        return null;
3708    }
3709
3710    @Override
3711    public ServiceInfo getServiceInfo(ComponentName component, int flags, int userId) {
3712        if (!sUserManager.exists(userId)) return null;
3713        flags = updateFlagsForComponent(flags, userId, component);
3714        enforceCrossUserPermission(Binder.getCallingUid(), userId,
3715                false /* requireFullPermission */, false /* checkShell */, "get service info");
3716        synchronized (mPackages) {
3717            PackageParser.Service s = mServices.mServices.get(component);
3718            if (DEBUG_PACKAGE_INFO) Log.v(
3719                TAG, "getServiceInfo " + component + ": " + s);
3720            if (s != null && mSettings.isEnabledAndMatchLPr(s.info, flags, userId)) {
3721                PackageSetting ps = mSettings.mPackages.get(component.getPackageName());
3722                if (ps == null) return null;
3723                return PackageParser.generateServiceInfo(s, flags, ps.readUserState(userId),
3724                        userId);
3725            }
3726        }
3727        return null;
3728    }
3729
3730    @Override
3731    public ProviderInfo getProviderInfo(ComponentName component, int flags, int userId) {
3732        if (!sUserManager.exists(userId)) return null;
3733        flags = updateFlagsForComponent(flags, userId, component);
3734        enforceCrossUserPermission(Binder.getCallingUid(), userId,
3735                false /* requireFullPermission */, false /* checkShell */, "get provider info");
3736        synchronized (mPackages) {
3737            PackageParser.Provider p = mProviders.mProviders.get(component);
3738            if (DEBUG_PACKAGE_INFO) Log.v(
3739                TAG, "getProviderInfo " + component + ": " + p);
3740            if (p != null && mSettings.isEnabledAndMatchLPr(p.info, flags, userId)) {
3741                PackageSetting ps = mSettings.mPackages.get(component.getPackageName());
3742                if (ps == null) return null;
3743                return PackageParser.generateProviderInfo(p, flags, ps.readUserState(userId),
3744                        userId);
3745            }
3746        }
3747        return null;
3748    }
3749
3750    @Override
3751    public String[] getSystemSharedLibraryNames() {
3752        Set<String> libSet;
3753        synchronized (mPackages) {
3754            libSet = mSharedLibraries.keySet();
3755            int size = libSet.size();
3756            if (size > 0) {
3757                String[] libs = new String[size];
3758                libSet.toArray(libs);
3759                return libs;
3760            }
3761        }
3762        return null;
3763    }
3764
3765    @Override
3766    public @NonNull String getServicesSystemSharedLibraryPackageName() {
3767        synchronized (mPackages) {
3768            return mServicesSystemSharedLibraryPackageName;
3769        }
3770    }
3771
3772    @Override
3773    public @NonNull String getSharedSystemSharedLibraryPackageName() {
3774        synchronized (mPackages) {
3775            return mSharedSystemSharedLibraryPackageName;
3776        }
3777    }
3778
3779    @Override
3780    public @NonNull ParceledListSlice<FeatureInfo> getSystemAvailableFeatures() {
3781        synchronized (mPackages) {
3782            final ArrayList<FeatureInfo> res = new ArrayList<>(mAvailableFeatures.values());
3783
3784            final FeatureInfo fi = new FeatureInfo();
3785            fi.reqGlEsVersion = SystemProperties.getInt("ro.opengles.version",
3786                    FeatureInfo.GL_ES_VERSION_UNDEFINED);
3787            res.add(fi);
3788
3789            return new ParceledListSlice<>(res);
3790        }
3791    }
3792
3793    @Override
3794    public boolean hasSystemFeature(String name, int version) {
3795        synchronized (mPackages) {
3796            final FeatureInfo feat = mAvailableFeatures.get(name);
3797            if (feat == null) {
3798                return false;
3799            } else {
3800                return feat.version >= version;
3801            }
3802        }
3803    }
3804
3805    @Override
3806    public int checkPermission(String permName, String pkgName, int userId) {
3807        if (!sUserManager.exists(userId)) {
3808            return PackageManager.PERMISSION_DENIED;
3809        }
3810
3811        synchronized (mPackages) {
3812            final PackageParser.Package p = mPackages.get(pkgName);
3813            if (p != null && p.mExtras != null) {
3814                final PackageSetting ps = (PackageSetting) p.mExtras;
3815                final PermissionsState permissionsState = ps.getPermissionsState();
3816                if (permissionsState.hasPermission(permName, userId)) {
3817                    return PackageManager.PERMISSION_GRANTED;
3818                }
3819                // Special case: ACCESS_FINE_LOCATION permission includes ACCESS_COARSE_LOCATION
3820                if (Manifest.permission.ACCESS_COARSE_LOCATION.equals(permName) && permissionsState
3821                        .hasPermission(Manifest.permission.ACCESS_FINE_LOCATION, userId)) {
3822                    return PackageManager.PERMISSION_GRANTED;
3823                }
3824            }
3825        }
3826
3827        return PackageManager.PERMISSION_DENIED;
3828    }
3829
3830    @Override
3831    public int checkUidPermission(String permName, int uid) {
3832        final int userId = UserHandle.getUserId(uid);
3833
3834        if (!sUserManager.exists(userId)) {
3835            return PackageManager.PERMISSION_DENIED;
3836        }
3837
3838        synchronized (mPackages) {
3839            Object obj = mSettings.getUserIdLPr(UserHandle.getAppId(uid));
3840            if (obj != null) {
3841                final SettingBase ps = (SettingBase) obj;
3842                final PermissionsState permissionsState = ps.getPermissionsState();
3843                if (permissionsState.hasPermission(permName, userId)) {
3844                    return PackageManager.PERMISSION_GRANTED;
3845                }
3846                // Special case: ACCESS_FINE_LOCATION permission includes ACCESS_COARSE_LOCATION
3847                if (Manifest.permission.ACCESS_COARSE_LOCATION.equals(permName) && permissionsState
3848                        .hasPermission(Manifest.permission.ACCESS_FINE_LOCATION, userId)) {
3849                    return PackageManager.PERMISSION_GRANTED;
3850                }
3851            } else {
3852                ArraySet<String> perms = mSystemPermissions.get(uid);
3853                if (perms != null) {
3854                    if (perms.contains(permName)) {
3855                        return PackageManager.PERMISSION_GRANTED;
3856                    }
3857                    if (Manifest.permission.ACCESS_COARSE_LOCATION.equals(permName) && perms
3858                            .contains(Manifest.permission.ACCESS_FINE_LOCATION)) {
3859                        return PackageManager.PERMISSION_GRANTED;
3860                    }
3861                }
3862            }
3863        }
3864
3865        return PackageManager.PERMISSION_DENIED;
3866    }
3867
3868    @Override
3869    public boolean isPermissionRevokedByPolicy(String permission, String packageName, int userId) {
3870        if (UserHandle.getCallingUserId() != userId) {
3871            mContext.enforceCallingPermission(
3872                    android.Manifest.permission.INTERACT_ACROSS_USERS_FULL,
3873                    "isPermissionRevokedByPolicy for user " + userId);
3874        }
3875
3876        if (checkPermission(permission, packageName, userId)
3877                == PackageManager.PERMISSION_GRANTED) {
3878            return false;
3879        }
3880
3881        final long identity = Binder.clearCallingIdentity();
3882        try {
3883            final int flags = getPermissionFlags(permission, packageName, userId);
3884            return (flags & PackageManager.FLAG_PERMISSION_POLICY_FIXED) != 0;
3885        } finally {
3886            Binder.restoreCallingIdentity(identity);
3887        }
3888    }
3889
3890    @Override
3891    public String getPermissionControllerPackageName() {
3892        synchronized (mPackages) {
3893            return mRequiredInstallerPackage;
3894        }
3895    }
3896
3897    /**
3898     * Checks if the request is from the system or an app that has INTERACT_ACROSS_USERS
3899     * or INTERACT_ACROSS_USERS_FULL permissions, if the userid is not for the caller.
3900     * @param checkShell whether to prevent shell from access if there's a debugging restriction
3901     * @param message the message to log on security exception
3902     */
3903    void enforceCrossUserPermission(int callingUid, int userId, boolean requireFullPermission,
3904            boolean checkShell, String message) {
3905        if (userId < 0) {
3906            throw new IllegalArgumentException("Invalid userId " + userId);
3907        }
3908        if (checkShell) {
3909            enforceShellRestriction(UserManager.DISALLOW_DEBUGGING_FEATURES, callingUid, userId);
3910        }
3911        if (userId == UserHandle.getUserId(callingUid)) return;
3912        if (callingUid != Process.SYSTEM_UID && callingUid != 0) {
3913            if (requireFullPermission) {
3914                mContext.enforceCallingOrSelfPermission(
3915                        android.Manifest.permission.INTERACT_ACROSS_USERS_FULL, message);
3916            } else {
3917                try {
3918                    mContext.enforceCallingOrSelfPermission(
3919                            android.Manifest.permission.INTERACT_ACROSS_USERS_FULL, message);
3920                } catch (SecurityException se) {
3921                    mContext.enforceCallingOrSelfPermission(
3922                            android.Manifest.permission.INTERACT_ACROSS_USERS, message);
3923                }
3924            }
3925        }
3926    }
3927
3928    void enforceShellRestriction(String restriction, int callingUid, int userHandle) {
3929        if (callingUid == Process.SHELL_UID) {
3930            if (userHandle >= 0
3931                    && sUserManager.hasUserRestriction(restriction, userHandle)) {
3932                throw new SecurityException("Shell does not have permission to access user "
3933                        + userHandle);
3934            } else if (userHandle < 0) {
3935                Slog.e(TAG, "Unable to check shell permission for user " + userHandle + "\n\t"
3936                        + Debug.getCallers(3));
3937            }
3938        }
3939    }
3940
3941    private BasePermission findPermissionTreeLP(String permName) {
3942        for(BasePermission bp : mSettings.mPermissionTrees.values()) {
3943            if (permName.startsWith(bp.name) &&
3944                    permName.length() > bp.name.length() &&
3945                    permName.charAt(bp.name.length()) == '.') {
3946                return bp;
3947            }
3948        }
3949        return null;
3950    }
3951
3952    private BasePermission checkPermissionTreeLP(String permName) {
3953        if (permName != null) {
3954            BasePermission bp = findPermissionTreeLP(permName);
3955            if (bp != null) {
3956                if (bp.uid == UserHandle.getAppId(Binder.getCallingUid())) {
3957                    return bp;
3958                }
3959                throw new SecurityException("Calling uid "
3960                        + Binder.getCallingUid()
3961                        + " is not allowed to add to permission tree "
3962                        + bp.name + " owned by uid " + bp.uid);
3963            }
3964        }
3965        throw new SecurityException("No permission tree found for " + permName);
3966    }
3967
3968    static boolean compareStrings(CharSequence s1, CharSequence s2) {
3969        if (s1 == null) {
3970            return s2 == null;
3971        }
3972        if (s2 == null) {
3973            return false;
3974        }
3975        if (s1.getClass() != s2.getClass()) {
3976            return false;
3977        }
3978        return s1.equals(s2);
3979    }
3980
3981    static boolean comparePermissionInfos(PermissionInfo pi1, PermissionInfo pi2) {
3982        if (pi1.icon != pi2.icon) return false;
3983        if (pi1.logo != pi2.logo) return false;
3984        if (pi1.protectionLevel != pi2.protectionLevel) return false;
3985        if (!compareStrings(pi1.name, pi2.name)) return false;
3986        if (!compareStrings(pi1.nonLocalizedLabel, pi2.nonLocalizedLabel)) return false;
3987        // We'll take care of setting this one.
3988        if (!compareStrings(pi1.packageName, pi2.packageName)) return false;
3989        // These are not currently stored in settings.
3990        //if (!compareStrings(pi1.group, pi2.group)) return false;
3991        //if (!compareStrings(pi1.nonLocalizedDescription, pi2.nonLocalizedDescription)) return false;
3992        //if (pi1.labelRes != pi2.labelRes) return false;
3993        //if (pi1.descriptionRes != pi2.descriptionRes) return false;
3994        return true;
3995    }
3996
3997    int permissionInfoFootprint(PermissionInfo info) {
3998        int size = info.name.length();
3999        if (info.nonLocalizedLabel != null) size += info.nonLocalizedLabel.length();
4000        if (info.nonLocalizedDescription != null) size += info.nonLocalizedDescription.length();
4001        return size;
4002    }
4003
4004    int calculateCurrentPermissionFootprintLocked(BasePermission tree) {
4005        int size = 0;
4006        for (BasePermission perm : mSettings.mPermissions.values()) {
4007            if (perm.uid == tree.uid) {
4008                size += perm.name.length() + permissionInfoFootprint(perm.perm.info);
4009            }
4010        }
4011        return size;
4012    }
4013
4014    void enforcePermissionCapLocked(PermissionInfo info, BasePermission tree) {
4015        // We calculate the max size of permissions defined by this uid and throw
4016        // if that plus the size of 'info' would exceed our stated maximum.
4017        if (tree.uid != Process.SYSTEM_UID) {
4018            final int curTreeSize = calculateCurrentPermissionFootprintLocked(tree);
4019            if (curTreeSize + permissionInfoFootprint(info) > MAX_PERMISSION_TREE_FOOTPRINT) {
4020                throw new SecurityException("Permission tree size cap exceeded");
4021            }
4022        }
4023    }
4024
4025    boolean addPermissionLocked(PermissionInfo info, boolean async) {
4026        if (info.labelRes == 0 && info.nonLocalizedLabel == null) {
4027            throw new SecurityException("Label must be specified in permission");
4028        }
4029        BasePermission tree = checkPermissionTreeLP(info.name);
4030        BasePermission bp = mSettings.mPermissions.get(info.name);
4031        boolean added = bp == null;
4032        boolean changed = true;
4033        int fixedLevel = PermissionInfo.fixProtectionLevel(info.protectionLevel);
4034        if (added) {
4035            enforcePermissionCapLocked(info, tree);
4036            bp = new BasePermission(info.name, tree.sourcePackage,
4037                    BasePermission.TYPE_DYNAMIC);
4038        } else if (bp.type != BasePermission.TYPE_DYNAMIC) {
4039            throw new SecurityException(
4040                    "Not allowed to modify non-dynamic permission "
4041                    + info.name);
4042        } else {
4043            if (bp.protectionLevel == fixedLevel
4044                    && bp.perm.owner.equals(tree.perm.owner)
4045                    && bp.uid == tree.uid
4046                    && comparePermissionInfos(bp.perm.info, info)) {
4047                changed = false;
4048            }
4049        }
4050        bp.protectionLevel = fixedLevel;
4051        info = new PermissionInfo(info);
4052        info.protectionLevel = fixedLevel;
4053        bp.perm = new PackageParser.Permission(tree.perm.owner, info);
4054        bp.perm.info.packageName = tree.perm.info.packageName;
4055        bp.uid = tree.uid;
4056        if (added) {
4057            mSettings.mPermissions.put(info.name, bp);
4058        }
4059        if (changed) {
4060            if (!async) {
4061                mSettings.writeLPr();
4062            } else {
4063                scheduleWriteSettingsLocked();
4064            }
4065        }
4066        return added;
4067    }
4068
4069    @Override
4070    public boolean addPermission(PermissionInfo info) {
4071        synchronized (mPackages) {
4072            return addPermissionLocked(info, false);
4073        }
4074    }
4075
4076    @Override
4077    public boolean addPermissionAsync(PermissionInfo info) {
4078        synchronized (mPackages) {
4079            return addPermissionLocked(info, true);
4080        }
4081    }
4082
4083    @Override
4084    public void removePermission(String name) {
4085        synchronized (mPackages) {
4086            checkPermissionTreeLP(name);
4087            BasePermission bp = mSettings.mPermissions.get(name);
4088            if (bp != null) {
4089                if (bp.type != BasePermission.TYPE_DYNAMIC) {
4090                    throw new SecurityException(
4091                            "Not allowed to modify non-dynamic permission "
4092                            + name);
4093                }
4094                mSettings.mPermissions.remove(name);
4095                mSettings.writeLPr();
4096            }
4097        }
4098    }
4099
4100    private static void enforceDeclaredAsUsedAndRuntimeOrDevelopmentPermission(PackageParser.Package pkg,
4101            BasePermission bp) {
4102        int index = pkg.requestedPermissions.indexOf(bp.name);
4103        if (index == -1) {
4104            throw new SecurityException("Package " + pkg.packageName
4105                    + " has not requested permission " + bp.name);
4106        }
4107        if (!bp.isRuntime() && !bp.isDevelopment()) {
4108            throw new SecurityException("Permission " + bp.name
4109                    + " is not a changeable permission type");
4110        }
4111    }
4112
4113    @Override
4114    public void grantRuntimePermission(String packageName, String name, final int userId) {
4115        if (!sUserManager.exists(userId)) {
4116            Log.e(TAG, "No such user:" + userId);
4117            return;
4118        }
4119
4120        mContext.enforceCallingOrSelfPermission(
4121                android.Manifest.permission.GRANT_RUNTIME_PERMISSIONS,
4122                "grantRuntimePermission");
4123
4124        enforceCrossUserPermission(Binder.getCallingUid(), userId,
4125                true /* requireFullPermission */, true /* checkShell */,
4126                "grantRuntimePermission");
4127
4128        final int uid;
4129        final SettingBase sb;
4130
4131        synchronized (mPackages) {
4132            final PackageParser.Package pkg = mPackages.get(packageName);
4133            if (pkg == null) {
4134                throw new IllegalArgumentException("Unknown package: " + packageName);
4135            }
4136
4137            final BasePermission bp = mSettings.mPermissions.get(name);
4138            if (bp == null) {
4139                throw new IllegalArgumentException("Unknown permission: " + name);
4140            }
4141
4142            enforceDeclaredAsUsedAndRuntimeOrDevelopmentPermission(pkg, bp);
4143
4144            // If a permission review is required for legacy apps we represent
4145            // their permissions as always granted runtime ones since we need
4146            // to keep the review required permission flag per user while an
4147            // install permission's state is shared across all users.
4148            if (Build.PERMISSIONS_REVIEW_REQUIRED
4149                    && pkg.applicationInfo.targetSdkVersion < Build.VERSION_CODES.M
4150                    && bp.isRuntime()) {
4151                return;
4152            }
4153
4154            uid = UserHandle.getUid(userId, pkg.applicationInfo.uid);
4155            sb = (SettingBase) pkg.mExtras;
4156            if (sb == null) {
4157                throw new IllegalArgumentException("Unknown package: " + packageName);
4158            }
4159
4160            final PermissionsState permissionsState = sb.getPermissionsState();
4161
4162            final int flags = permissionsState.getPermissionFlags(name, userId);
4163            if ((flags & PackageManager.FLAG_PERMISSION_SYSTEM_FIXED) != 0) {
4164                throw new SecurityException("Cannot grant system fixed permission "
4165                        + name + " for package " + packageName);
4166            }
4167
4168            if (bp.isDevelopment()) {
4169                // Development permissions must be handled specially, since they are not
4170                // normal runtime permissions.  For now they apply to all users.
4171                if (permissionsState.grantInstallPermission(bp) !=
4172                        PermissionsState.PERMISSION_OPERATION_FAILURE) {
4173                    scheduleWriteSettingsLocked();
4174                }
4175                return;
4176            }
4177
4178            if (pkg.applicationInfo.targetSdkVersion < Build.VERSION_CODES.M) {
4179                Slog.w(TAG, "Cannot grant runtime permission to a legacy app");
4180                return;
4181            }
4182
4183            final int result = permissionsState.grantRuntimePermission(bp, userId);
4184            switch (result) {
4185                case PermissionsState.PERMISSION_OPERATION_FAILURE: {
4186                    return;
4187                }
4188
4189                case PermissionsState.PERMISSION_OPERATION_SUCCESS_GIDS_CHANGED: {
4190                    final int appId = UserHandle.getAppId(pkg.applicationInfo.uid);
4191                    mHandler.post(new Runnable() {
4192                        @Override
4193                        public void run() {
4194                            killUid(appId, userId, KILL_APP_REASON_GIDS_CHANGED);
4195                        }
4196                    });
4197                }
4198                break;
4199            }
4200
4201            mOnPermissionChangeListeners.onPermissionsChanged(uid);
4202
4203            // Not critical if that is lost - app has to request again.
4204            mSettings.writeRuntimePermissionsForUserLPr(userId, false);
4205        }
4206
4207        // Only need to do this if user is initialized. Otherwise it's a new user
4208        // and there are no processes running as the user yet and there's no need
4209        // to make an expensive call to remount processes for the changed permissions.
4210        if (READ_EXTERNAL_STORAGE.equals(name)
4211                || WRITE_EXTERNAL_STORAGE.equals(name)) {
4212            final long token = Binder.clearCallingIdentity();
4213            try {
4214                if (sUserManager.isInitialized(userId)) {
4215                    MountServiceInternal mountServiceInternal = LocalServices.getService(
4216                            MountServiceInternal.class);
4217                    mountServiceInternal.onExternalStoragePolicyChanged(uid, packageName);
4218                }
4219            } finally {
4220                Binder.restoreCallingIdentity(token);
4221            }
4222        }
4223    }
4224
4225    @Override
4226    public void revokeRuntimePermission(String packageName, String name, int userId) {
4227        if (!sUserManager.exists(userId)) {
4228            Log.e(TAG, "No such user:" + userId);
4229            return;
4230        }
4231
4232        mContext.enforceCallingOrSelfPermission(
4233                android.Manifest.permission.REVOKE_RUNTIME_PERMISSIONS,
4234                "revokeRuntimePermission");
4235
4236        enforceCrossUserPermission(Binder.getCallingUid(), userId,
4237                true /* requireFullPermission */, true /* checkShell */,
4238                "revokeRuntimePermission");
4239
4240        final int appId;
4241
4242        synchronized (mPackages) {
4243            final PackageParser.Package pkg = mPackages.get(packageName);
4244            if (pkg == null) {
4245                throw new IllegalArgumentException("Unknown package: " + packageName);
4246            }
4247
4248            final BasePermission bp = mSettings.mPermissions.get(name);
4249            if (bp == null) {
4250                throw new IllegalArgumentException("Unknown permission: " + name);
4251            }
4252
4253            enforceDeclaredAsUsedAndRuntimeOrDevelopmentPermission(pkg, bp);
4254
4255            // If a permission review is required for legacy apps we represent
4256            // their permissions as always granted runtime ones since we need
4257            // to keep the review required permission flag per user while an
4258            // install permission's state is shared across all users.
4259            if (Build.PERMISSIONS_REVIEW_REQUIRED
4260                    && pkg.applicationInfo.targetSdkVersion < Build.VERSION_CODES.M
4261                    && bp.isRuntime()) {
4262                return;
4263            }
4264
4265            SettingBase sb = (SettingBase) pkg.mExtras;
4266            if (sb == null) {
4267                throw new IllegalArgumentException("Unknown package: " + packageName);
4268            }
4269
4270            final PermissionsState permissionsState = sb.getPermissionsState();
4271
4272            final int flags = permissionsState.getPermissionFlags(name, userId);
4273            if ((flags & PackageManager.FLAG_PERMISSION_SYSTEM_FIXED) != 0) {
4274                throw new SecurityException("Cannot revoke system fixed permission "
4275                        + name + " for package " + packageName);
4276            }
4277
4278            if (bp.isDevelopment()) {
4279                // Development permissions must be handled specially, since they are not
4280                // normal runtime permissions.  For now they apply to all users.
4281                if (permissionsState.revokeInstallPermission(bp) !=
4282                        PermissionsState.PERMISSION_OPERATION_FAILURE) {
4283                    scheduleWriteSettingsLocked();
4284                }
4285                return;
4286            }
4287
4288            if (permissionsState.revokeRuntimePermission(bp, userId) ==
4289                    PermissionsState.PERMISSION_OPERATION_FAILURE) {
4290                return;
4291            }
4292
4293            mOnPermissionChangeListeners.onPermissionsChanged(pkg.applicationInfo.uid);
4294
4295            // Critical, after this call app should never have the permission.
4296            mSettings.writeRuntimePermissionsForUserLPr(userId, true);
4297
4298            appId = UserHandle.getAppId(pkg.applicationInfo.uid);
4299        }
4300
4301        killUid(appId, userId, KILL_APP_REASON_PERMISSIONS_REVOKED);
4302    }
4303
4304    @Override
4305    public void resetRuntimePermissions() {
4306        mContext.enforceCallingOrSelfPermission(
4307                android.Manifest.permission.REVOKE_RUNTIME_PERMISSIONS,
4308                "revokeRuntimePermission");
4309
4310        int callingUid = Binder.getCallingUid();
4311        if (callingUid != Process.SYSTEM_UID && callingUid != 0) {
4312            mContext.enforceCallingOrSelfPermission(
4313                    android.Manifest.permission.INTERACT_ACROSS_USERS_FULL,
4314                    "resetRuntimePermissions");
4315        }
4316
4317        synchronized (mPackages) {
4318            updatePermissionsLPw(null, null, UPDATE_PERMISSIONS_ALL);
4319            for (int userId : UserManagerService.getInstance().getUserIds()) {
4320                final int packageCount = mPackages.size();
4321                for (int i = 0; i < packageCount; i++) {
4322                    PackageParser.Package pkg = mPackages.valueAt(i);
4323                    if (!(pkg.mExtras instanceof PackageSetting)) {
4324                        continue;
4325                    }
4326                    PackageSetting ps = (PackageSetting) pkg.mExtras;
4327                    resetUserChangesToRuntimePermissionsAndFlagsLPw(ps, userId);
4328                }
4329            }
4330        }
4331    }
4332
4333    @Override
4334    public int getPermissionFlags(String name, String packageName, int userId) {
4335        if (!sUserManager.exists(userId)) {
4336            return 0;
4337        }
4338
4339        enforceGrantRevokeRuntimePermissionPermissions("getPermissionFlags");
4340
4341        enforceCrossUserPermission(Binder.getCallingUid(), userId,
4342                true /* requireFullPermission */, false /* checkShell */,
4343                "getPermissionFlags");
4344
4345        synchronized (mPackages) {
4346            final PackageParser.Package pkg = mPackages.get(packageName);
4347            if (pkg == null) {
4348                return 0;
4349            }
4350
4351            final BasePermission bp = mSettings.mPermissions.get(name);
4352            if (bp == null) {
4353                return 0;
4354            }
4355
4356            SettingBase sb = (SettingBase) pkg.mExtras;
4357            if (sb == null) {
4358                return 0;
4359            }
4360
4361            PermissionsState permissionsState = sb.getPermissionsState();
4362            return permissionsState.getPermissionFlags(name, userId);
4363        }
4364    }
4365
4366    @Override
4367    public void updatePermissionFlags(String name, String packageName, int flagMask,
4368            int flagValues, int userId) {
4369        if (!sUserManager.exists(userId)) {
4370            return;
4371        }
4372
4373        enforceGrantRevokeRuntimePermissionPermissions("updatePermissionFlags");
4374
4375        enforceCrossUserPermission(Binder.getCallingUid(), userId,
4376                true /* requireFullPermission */, true /* checkShell */,
4377                "updatePermissionFlags");
4378
4379        // Only the system can change these flags and nothing else.
4380        if (getCallingUid() != Process.SYSTEM_UID) {
4381            flagMask &= ~PackageManager.FLAG_PERMISSION_SYSTEM_FIXED;
4382            flagValues &= ~PackageManager.FLAG_PERMISSION_SYSTEM_FIXED;
4383            flagMask &= ~PackageManager.FLAG_PERMISSION_GRANTED_BY_DEFAULT;
4384            flagValues &= ~PackageManager.FLAG_PERMISSION_GRANTED_BY_DEFAULT;
4385            flagValues &= ~PackageManager.FLAG_PERMISSION_REVIEW_REQUIRED;
4386        }
4387
4388        synchronized (mPackages) {
4389            final PackageParser.Package pkg = mPackages.get(packageName);
4390            if (pkg == null) {
4391                throw new IllegalArgumentException("Unknown package: " + packageName);
4392            }
4393
4394            final BasePermission bp = mSettings.mPermissions.get(name);
4395            if (bp == null) {
4396                throw new IllegalArgumentException("Unknown permission: " + name);
4397            }
4398
4399            SettingBase sb = (SettingBase) pkg.mExtras;
4400            if (sb == null) {
4401                throw new IllegalArgumentException("Unknown package: " + packageName);
4402            }
4403
4404            PermissionsState permissionsState = sb.getPermissionsState();
4405
4406            boolean hadState = permissionsState.getRuntimePermissionState(name, userId) != null;
4407
4408            if (permissionsState.updatePermissionFlags(bp, userId, flagMask, flagValues)) {
4409                // Install and runtime permissions are stored in different places,
4410                // so figure out what permission changed and persist the change.
4411                if (permissionsState.getInstallPermissionState(name) != null) {
4412                    scheduleWriteSettingsLocked();
4413                } else if (permissionsState.getRuntimePermissionState(name, userId) != null
4414                        || hadState) {
4415                    mSettings.writeRuntimePermissionsForUserLPr(userId, false);
4416                }
4417            }
4418        }
4419    }
4420
4421    /**
4422     * Update the permission flags for all packages and runtime permissions of a user in order
4423     * to allow device or profile owner to remove POLICY_FIXED.
4424     */
4425    @Override
4426    public void updatePermissionFlagsForAllApps(int flagMask, int flagValues, int userId) {
4427        if (!sUserManager.exists(userId)) {
4428            return;
4429        }
4430
4431        enforceGrantRevokeRuntimePermissionPermissions("updatePermissionFlagsForAllApps");
4432
4433        enforceCrossUserPermission(Binder.getCallingUid(), userId,
4434                true /* requireFullPermission */, true /* checkShell */,
4435                "updatePermissionFlagsForAllApps");
4436
4437        // Only the system can change system fixed flags.
4438        if (getCallingUid() != Process.SYSTEM_UID) {
4439            flagMask &= ~PackageManager.FLAG_PERMISSION_SYSTEM_FIXED;
4440            flagValues &= ~PackageManager.FLAG_PERMISSION_SYSTEM_FIXED;
4441        }
4442
4443        synchronized (mPackages) {
4444            boolean changed = false;
4445            final int packageCount = mPackages.size();
4446            for (int pkgIndex = 0; pkgIndex < packageCount; pkgIndex++) {
4447                final PackageParser.Package pkg = mPackages.valueAt(pkgIndex);
4448                SettingBase sb = (SettingBase) pkg.mExtras;
4449                if (sb == null) {
4450                    continue;
4451                }
4452                PermissionsState permissionsState = sb.getPermissionsState();
4453                changed |= permissionsState.updatePermissionFlagsForAllPermissions(
4454                        userId, flagMask, flagValues);
4455            }
4456            if (changed) {
4457                mSettings.writeRuntimePermissionsForUserLPr(userId, false);
4458            }
4459        }
4460    }
4461
4462    private void enforceGrantRevokeRuntimePermissionPermissions(String message) {
4463        if (mContext.checkCallingOrSelfPermission(Manifest.permission.GRANT_RUNTIME_PERMISSIONS)
4464                != PackageManager.PERMISSION_GRANTED
4465            && mContext.checkCallingOrSelfPermission(Manifest.permission.REVOKE_RUNTIME_PERMISSIONS)
4466                != PackageManager.PERMISSION_GRANTED) {
4467            throw new SecurityException(message + " requires "
4468                    + Manifest.permission.GRANT_RUNTIME_PERMISSIONS + " or "
4469                    + Manifest.permission.REVOKE_RUNTIME_PERMISSIONS);
4470        }
4471    }
4472
4473    @Override
4474    public boolean shouldShowRequestPermissionRationale(String permissionName,
4475            String packageName, int userId) {
4476        if (UserHandle.getCallingUserId() != userId) {
4477            mContext.enforceCallingPermission(
4478                    android.Manifest.permission.INTERACT_ACROSS_USERS_FULL,
4479                    "canShowRequestPermissionRationale for user " + userId);
4480        }
4481
4482        final int uid = getPackageUid(packageName, MATCH_DEBUG_TRIAGED_MISSING, userId);
4483        if (UserHandle.getAppId(getCallingUid()) != UserHandle.getAppId(uid)) {
4484            return false;
4485        }
4486
4487        if (checkPermission(permissionName, packageName, userId)
4488                == PackageManager.PERMISSION_GRANTED) {
4489            return false;
4490        }
4491
4492        final int flags;
4493
4494        final long identity = Binder.clearCallingIdentity();
4495        try {
4496            flags = getPermissionFlags(permissionName,
4497                    packageName, userId);
4498        } finally {
4499            Binder.restoreCallingIdentity(identity);
4500        }
4501
4502        final int fixedFlags = PackageManager.FLAG_PERMISSION_SYSTEM_FIXED
4503                | PackageManager.FLAG_PERMISSION_POLICY_FIXED
4504                | PackageManager.FLAG_PERMISSION_USER_FIXED;
4505
4506        if ((flags & fixedFlags) != 0) {
4507            return false;
4508        }
4509
4510        return (flags & PackageManager.FLAG_PERMISSION_USER_SET) != 0;
4511    }
4512
4513    @Override
4514    public void addOnPermissionsChangeListener(IOnPermissionsChangeListener listener) {
4515        mContext.enforceCallingOrSelfPermission(
4516                Manifest.permission.OBSERVE_GRANT_REVOKE_PERMISSIONS,
4517                "addOnPermissionsChangeListener");
4518
4519        synchronized (mPackages) {
4520            mOnPermissionChangeListeners.addListenerLocked(listener);
4521        }
4522    }
4523
4524    @Override
4525    public void removeOnPermissionsChangeListener(IOnPermissionsChangeListener listener) {
4526        synchronized (mPackages) {
4527            mOnPermissionChangeListeners.removeListenerLocked(listener);
4528        }
4529    }
4530
4531    @Override
4532    public boolean isProtectedBroadcast(String actionName) {
4533        synchronized (mPackages) {
4534            if (mProtectedBroadcasts.contains(actionName)) {
4535                return true;
4536            } else if (actionName != null) {
4537                // TODO: remove these terrible hacks
4538                if (actionName.startsWith("android.net.netmon.lingerExpired")
4539                        || actionName.startsWith("com.android.server.sip.SipWakeupTimer")
4540                        || actionName.startsWith("com.android.internal.telephony.data-reconnect")
4541                        || actionName.startsWith("android.net.netmon.launchCaptivePortalApp")) {
4542                    return true;
4543                }
4544            }
4545        }
4546        return false;
4547    }
4548
4549    @Override
4550    public int checkSignatures(String pkg1, String pkg2) {
4551        synchronized (mPackages) {
4552            final PackageParser.Package p1 = mPackages.get(pkg1);
4553            final PackageParser.Package p2 = mPackages.get(pkg2);
4554            if (p1 == null || p1.mExtras == null
4555                    || p2 == null || p2.mExtras == null) {
4556                return PackageManager.SIGNATURE_UNKNOWN_PACKAGE;
4557            }
4558            return compareSignatures(p1.mSignatures, p2.mSignatures);
4559        }
4560    }
4561
4562    @Override
4563    public int checkUidSignatures(int uid1, int uid2) {
4564        // Map to base uids.
4565        uid1 = UserHandle.getAppId(uid1);
4566        uid2 = UserHandle.getAppId(uid2);
4567        // reader
4568        synchronized (mPackages) {
4569            Signature[] s1;
4570            Signature[] s2;
4571            Object obj = mSettings.getUserIdLPr(uid1);
4572            if (obj != null) {
4573                if (obj instanceof SharedUserSetting) {
4574                    s1 = ((SharedUserSetting)obj).signatures.mSignatures;
4575                } else if (obj instanceof PackageSetting) {
4576                    s1 = ((PackageSetting)obj).signatures.mSignatures;
4577                } else {
4578                    return PackageManager.SIGNATURE_UNKNOWN_PACKAGE;
4579                }
4580            } else {
4581                return PackageManager.SIGNATURE_UNKNOWN_PACKAGE;
4582            }
4583            obj = mSettings.getUserIdLPr(uid2);
4584            if (obj != null) {
4585                if (obj instanceof SharedUserSetting) {
4586                    s2 = ((SharedUserSetting)obj).signatures.mSignatures;
4587                } else if (obj instanceof PackageSetting) {
4588                    s2 = ((PackageSetting)obj).signatures.mSignatures;
4589                } else {
4590                    return PackageManager.SIGNATURE_UNKNOWN_PACKAGE;
4591                }
4592            } else {
4593                return PackageManager.SIGNATURE_UNKNOWN_PACKAGE;
4594            }
4595            return compareSignatures(s1, s2);
4596        }
4597    }
4598
4599    /**
4600     * This method should typically only be used when granting or revoking
4601     * permissions, since the app may immediately restart after this call.
4602     * <p>
4603     * If you're doing surgery on app code/data, use {@link PackageFreezer} to
4604     * guard your work against the app being relaunched.
4605     */
4606    private void killUid(int appId, int userId, String reason) {
4607        final long identity = Binder.clearCallingIdentity();
4608        try {
4609            IActivityManager am = ActivityManagerNative.getDefault();
4610            if (am != null) {
4611                try {
4612                    am.killUid(appId, userId, reason);
4613                } catch (RemoteException e) {
4614                    /* ignore - same process */
4615                }
4616            }
4617        } finally {
4618            Binder.restoreCallingIdentity(identity);
4619        }
4620    }
4621
4622    /**
4623     * Compares two sets of signatures. Returns:
4624     * <br />
4625     * {@link PackageManager#SIGNATURE_NEITHER_SIGNED}: if both signature sets are null,
4626     * <br />
4627     * {@link PackageManager#SIGNATURE_FIRST_NOT_SIGNED}: if the first signature set is null,
4628     * <br />
4629     * {@link PackageManager#SIGNATURE_SECOND_NOT_SIGNED}: if the second signature set is null,
4630     * <br />
4631     * {@link PackageManager#SIGNATURE_MATCH}: if the two signature sets are identical,
4632     * <br />
4633     * {@link PackageManager#SIGNATURE_NO_MATCH}: if the two signature sets differ.
4634     */
4635    static int compareSignatures(Signature[] s1, Signature[] s2) {
4636        if (s1 == null) {
4637            return s2 == null
4638                    ? PackageManager.SIGNATURE_NEITHER_SIGNED
4639                    : PackageManager.SIGNATURE_FIRST_NOT_SIGNED;
4640        }
4641
4642        if (s2 == null) {
4643            return PackageManager.SIGNATURE_SECOND_NOT_SIGNED;
4644        }
4645
4646        if (s1.length != s2.length) {
4647            return PackageManager.SIGNATURE_NO_MATCH;
4648        }
4649
4650        // Since both signature sets are of size 1, we can compare without HashSets.
4651        if (s1.length == 1) {
4652            return s1[0].equals(s2[0]) ?
4653                    PackageManager.SIGNATURE_MATCH :
4654                    PackageManager.SIGNATURE_NO_MATCH;
4655        }
4656
4657        ArraySet<Signature> set1 = new ArraySet<Signature>();
4658        for (Signature sig : s1) {
4659            set1.add(sig);
4660        }
4661        ArraySet<Signature> set2 = new ArraySet<Signature>();
4662        for (Signature sig : s2) {
4663            set2.add(sig);
4664        }
4665        // Make sure s2 contains all signatures in s1.
4666        if (set1.equals(set2)) {
4667            return PackageManager.SIGNATURE_MATCH;
4668        }
4669        return PackageManager.SIGNATURE_NO_MATCH;
4670    }
4671
4672    /**
4673     * If the database version for this type of package (internal storage or
4674     * external storage) is less than the version where package signatures
4675     * were updated, return true.
4676     */
4677    private boolean isCompatSignatureUpdateNeeded(PackageParser.Package scannedPkg) {
4678        final VersionInfo ver = getSettingsVersionForPackage(scannedPkg);
4679        return ver.databaseVersion < DatabaseVersion.SIGNATURE_END_ENTITY;
4680    }
4681
4682    /**
4683     * Used for backward compatibility to make sure any packages with
4684     * certificate chains get upgraded to the new style. {@code existingSigs}
4685     * will be in the old format (since they were stored on disk from before the
4686     * system upgrade) and {@code scannedSigs} will be in the newer format.
4687     */
4688    private int compareSignaturesCompat(PackageSignatures existingSigs,
4689            PackageParser.Package scannedPkg) {
4690        if (!isCompatSignatureUpdateNeeded(scannedPkg)) {
4691            return PackageManager.SIGNATURE_NO_MATCH;
4692        }
4693
4694        ArraySet<Signature> existingSet = new ArraySet<Signature>();
4695        for (Signature sig : existingSigs.mSignatures) {
4696            existingSet.add(sig);
4697        }
4698        ArraySet<Signature> scannedCompatSet = new ArraySet<Signature>();
4699        for (Signature sig : scannedPkg.mSignatures) {
4700            try {
4701                Signature[] chainSignatures = sig.getChainSignatures();
4702                for (Signature chainSig : chainSignatures) {
4703                    scannedCompatSet.add(chainSig);
4704                }
4705            } catch (CertificateEncodingException e) {
4706                scannedCompatSet.add(sig);
4707            }
4708        }
4709        /*
4710         * Make sure the expanded scanned set contains all signatures in the
4711         * existing one.
4712         */
4713        if (scannedCompatSet.equals(existingSet)) {
4714            // Migrate the old signatures to the new scheme.
4715            existingSigs.assignSignatures(scannedPkg.mSignatures);
4716            // The new KeySets will be re-added later in the scanning process.
4717            synchronized (mPackages) {
4718                mSettings.mKeySetManagerService.removeAppKeySetDataLPw(scannedPkg.packageName);
4719            }
4720            return PackageManager.SIGNATURE_MATCH;
4721        }
4722        return PackageManager.SIGNATURE_NO_MATCH;
4723    }
4724
4725    private boolean isRecoverSignatureUpdateNeeded(PackageParser.Package scannedPkg) {
4726        final VersionInfo ver = getSettingsVersionForPackage(scannedPkg);
4727        return ver.databaseVersion < DatabaseVersion.SIGNATURE_MALFORMED_RECOVER;
4728    }
4729
4730    private int compareSignaturesRecover(PackageSignatures existingSigs,
4731            PackageParser.Package scannedPkg) {
4732        if (!isRecoverSignatureUpdateNeeded(scannedPkg)) {
4733            return PackageManager.SIGNATURE_NO_MATCH;
4734        }
4735
4736        String msg = null;
4737        try {
4738            if (Signature.areEffectiveMatch(existingSigs.mSignatures, scannedPkg.mSignatures)) {
4739                logCriticalInfo(Log.INFO, "Recovered effectively matching certificates for "
4740                        + scannedPkg.packageName);
4741                return PackageManager.SIGNATURE_MATCH;
4742            }
4743        } catch (CertificateException e) {
4744            msg = e.getMessage();
4745        }
4746
4747        logCriticalInfo(Log.INFO,
4748                "Failed to recover certificates for " + scannedPkg.packageName + ": " + msg);
4749        return PackageManager.SIGNATURE_NO_MATCH;
4750    }
4751
4752    @Override
4753    public List<String> getAllPackages() {
4754        synchronized (mPackages) {
4755            return new ArrayList<String>(mPackages.keySet());
4756        }
4757    }
4758
4759    @Override
4760    public String[] getPackagesForUid(int uid) {
4761        uid = UserHandle.getAppId(uid);
4762        // reader
4763        synchronized (mPackages) {
4764            Object obj = mSettings.getUserIdLPr(uid);
4765            if (obj instanceof SharedUserSetting) {
4766                final SharedUserSetting sus = (SharedUserSetting) obj;
4767                final int N = sus.packages.size();
4768                final String[] res = new String[N];
4769                for (int i = 0; i < N; i++) {
4770                    res[i] = sus.packages.valueAt(i).name;
4771                }
4772                return res;
4773            } else if (obj instanceof PackageSetting) {
4774                final PackageSetting ps = (PackageSetting) obj;
4775                return new String[] { ps.name };
4776            }
4777        }
4778        return null;
4779    }
4780
4781    @Override
4782    public String getNameForUid(int uid) {
4783        // reader
4784        synchronized (mPackages) {
4785            Object obj = mSettings.getUserIdLPr(UserHandle.getAppId(uid));
4786            if (obj instanceof SharedUserSetting) {
4787                final SharedUserSetting sus = (SharedUserSetting) obj;
4788                return sus.name + ":" + sus.userId;
4789            } else if (obj instanceof PackageSetting) {
4790                final PackageSetting ps = (PackageSetting) obj;
4791                return ps.name;
4792            }
4793        }
4794        return null;
4795    }
4796
4797    @Override
4798    public int getUidForSharedUser(String sharedUserName) {
4799        if(sharedUserName == null) {
4800            return -1;
4801        }
4802        // reader
4803        synchronized (mPackages) {
4804            final SharedUserSetting suid = mSettings.getSharedUserLPw(sharedUserName, 0, 0, false);
4805            if (suid == null) {
4806                return -1;
4807            }
4808            return suid.userId;
4809        }
4810    }
4811
4812    @Override
4813    public int getFlagsForUid(int uid) {
4814        synchronized (mPackages) {
4815            Object obj = mSettings.getUserIdLPr(UserHandle.getAppId(uid));
4816            if (obj instanceof SharedUserSetting) {
4817                final SharedUserSetting sus = (SharedUserSetting) obj;
4818                return sus.pkgFlags;
4819            } else if (obj instanceof PackageSetting) {
4820                final PackageSetting ps = (PackageSetting) obj;
4821                return ps.pkgFlags;
4822            }
4823        }
4824        return 0;
4825    }
4826
4827    @Override
4828    public int getPrivateFlagsForUid(int uid) {
4829        synchronized (mPackages) {
4830            Object obj = mSettings.getUserIdLPr(UserHandle.getAppId(uid));
4831            if (obj instanceof SharedUserSetting) {
4832                final SharedUserSetting sus = (SharedUserSetting) obj;
4833                return sus.pkgPrivateFlags;
4834            } else if (obj instanceof PackageSetting) {
4835                final PackageSetting ps = (PackageSetting) obj;
4836                return ps.pkgPrivateFlags;
4837            }
4838        }
4839        return 0;
4840    }
4841
4842    @Override
4843    public boolean isUidPrivileged(int uid) {
4844        uid = UserHandle.getAppId(uid);
4845        // reader
4846        synchronized (mPackages) {
4847            Object obj = mSettings.getUserIdLPr(uid);
4848            if (obj instanceof SharedUserSetting) {
4849                final SharedUserSetting sus = (SharedUserSetting) obj;
4850                final Iterator<PackageSetting> it = sus.packages.iterator();
4851                while (it.hasNext()) {
4852                    if (it.next().isPrivileged()) {
4853                        return true;
4854                    }
4855                }
4856            } else if (obj instanceof PackageSetting) {
4857                final PackageSetting ps = (PackageSetting) obj;
4858                return ps.isPrivileged();
4859            }
4860        }
4861        return false;
4862    }
4863
4864    @Override
4865    public String[] getAppOpPermissionPackages(String permissionName) {
4866        synchronized (mPackages) {
4867            ArraySet<String> pkgs = mAppOpPermissionPackages.get(permissionName);
4868            if (pkgs == null) {
4869                return null;
4870            }
4871            return pkgs.toArray(new String[pkgs.size()]);
4872        }
4873    }
4874
4875    @Override
4876    public ResolveInfo resolveIntent(Intent intent, String resolvedType,
4877            int flags, int userId) {
4878        try {
4879            Trace.traceBegin(TRACE_TAG_PACKAGE_MANAGER, "resolveIntent");
4880
4881            if (!sUserManager.exists(userId)) return null;
4882            flags = updateFlagsForResolve(flags, userId, intent);
4883            enforceCrossUserPermission(Binder.getCallingUid(), userId,
4884                    false /*requireFullPermission*/, false /*checkShell*/, "resolve intent");
4885
4886            Trace.traceBegin(TRACE_TAG_PACKAGE_MANAGER, "queryIntentActivities");
4887            final List<ResolveInfo> query = queryIntentActivitiesInternal(intent, resolvedType,
4888                    flags, userId);
4889            Trace.traceEnd(TRACE_TAG_PACKAGE_MANAGER);
4890
4891            final ResolveInfo bestChoice =
4892                    chooseBestActivity(intent, resolvedType, flags, query, userId);
4893
4894            if (isEphemeralAllowed(intent, query, userId)) {
4895                Trace.traceBegin(TRACE_TAG_PACKAGE_MANAGER, "resolveEphemeral");
4896                final EphemeralResolveInfo ai =
4897                        getEphemeralResolveInfo(intent, resolvedType, userId);
4898                if (ai != null) {
4899                    if (DEBUG_EPHEMERAL) {
4900                        Slog.v(TAG, "Returning an EphemeralResolveInfo");
4901                    }
4902                    bestChoice.ephemeralInstaller = mEphemeralInstallerInfo;
4903                    bestChoice.ephemeralResolveInfo = ai;
4904                }
4905                Trace.traceEnd(TRACE_TAG_PACKAGE_MANAGER);
4906            }
4907            return bestChoice;
4908        } finally {
4909            Trace.traceEnd(TRACE_TAG_PACKAGE_MANAGER);
4910        }
4911    }
4912
4913    @Override
4914    public void setLastChosenActivity(Intent intent, String resolvedType, int flags,
4915            IntentFilter filter, int match, ComponentName activity) {
4916        final int userId = UserHandle.getCallingUserId();
4917        if (DEBUG_PREFERRED) {
4918            Log.v(TAG, "setLastChosenActivity intent=" + intent
4919                + " resolvedType=" + resolvedType
4920                + " flags=" + flags
4921                + " filter=" + filter
4922                + " match=" + match
4923                + " activity=" + activity);
4924            filter.dump(new PrintStreamPrinter(System.out), "    ");
4925        }
4926        intent.setComponent(null);
4927        final List<ResolveInfo> query = queryIntentActivitiesInternal(intent, resolvedType, flags,
4928                userId);
4929        // Find any earlier preferred or last chosen entries and nuke them
4930        findPreferredActivity(intent, resolvedType,
4931                flags, query, 0, false, true, false, userId);
4932        // Add the new activity as the last chosen for this filter
4933        addPreferredActivityInternal(filter, match, null, activity, false, userId,
4934                "Setting last chosen");
4935    }
4936
4937    @Override
4938    public ResolveInfo getLastChosenActivity(Intent intent, String resolvedType, int flags) {
4939        final int userId = UserHandle.getCallingUserId();
4940        if (DEBUG_PREFERRED) Log.v(TAG, "Querying last chosen activity for " + intent);
4941        final List<ResolveInfo> query = queryIntentActivitiesInternal(intent, resolvedType, flags,
4942                userId);
4943        return findPreferredActivity(intent, resolvedType, flags, query, 0,
4944                false, false, false, userId);
4945    }
4946
4947
4948    private boolean isEphemeralAllowed(
4949            Intent intent, List<ResolveInfo> resolvedActivites, int userId) {
4950        // Short circuit and return early if possible.
4951        if (DISABLE_EPHEMERAL_APPS) {
4952            return false;
4953        }
4954        final int callingUser = UserHandle.getCallingUserId();
4955        if (callingUser != UserHandle.USER_SYSTEM) {
4956            return false;
4957        }
4958        if (mEphemeralResolverConnection == null) {
4959            return false;
4960        }
4961        if (intent.getComponent() != null) {
4962            return false;
4963        }
4964        if (intent.getPackage() != null) {
4965            return false;
4966        }
4967        final boolean isWebUri = hasWebURI(intent);
4968        if (!isWebUri) {
4969            return false;
4970        }
4971        // Deny ephemeral apps if the user chose _ALWAYS or _ALWAYS_ASK for intent resolution.
4972        synchronized (mPackages) {
4973            final int count = resolvedActivites.size();
4974            for (int n = 0; n < count; n++) {
4975                ResolveInfo info = resolvedActivites.get(n);
4976                String packageName = info.activityInfo.packageName;
4977                PackageSetting ps = mSettings.mPackages.get(packageName);
4978                if (ps != null) {
4979                    // Try to get the status from User settings first
4980                    long packedStatus = getDomainVerificationStatusLPr(ps, userId);
4981                    int status = (int) (packedStatus >> 32);
4982                    if (status == INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_ALWAYS
4983                            || status == INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_ALWAYS_ASK) {
4984                        if (DEBUG_EPHEMERAL) {
4985                            Slog.v(TAG, "DENY ephemeral apps;"
4986                                + " pkg: " + packageName + ", status: " + status);
4987                        }
4988                        return false;
4989                    }
4990                }
4991            }
4992        }
4993        // We've exhausted all ways to deny ephemeral application; let the system look for them.
4994        return true;
4995    }
4996
4997    private EphemeralResolveInfo getEphemeralResolveInfo(Intent intent, String resolvedType,
4998            int userId) {
4999        final int ephemeralPrefixMask = Global.getInt(mContext.getContentResolver(),
5000                Global.EPHEMERAL_HASH_PREFIX_MASK, DEFAULT_EPHEMERAL_HASH_PREFIX_MASK);
5001        final int ephemeralPrefixCount = Global.getInt(mContext.getContentResolver(),
5002                Global.EPHEMERAL_HASH_PREFIX_COUNT, DEFAULT_EPHEMERAL_HASH_PREFIX_COUNT);
5003        final EphemeralDigest digest = new EphemeralDigest(intent.getData(), ephemeralPrefixMask,
5004                ephemeralPrefixCount);
5005        final int[] shaPrefix = digest.getDigestPrefix();
5006        final byte[][] digestBytes = digest.getDigestBytes();
5007        final List<EphemeralResolveInfo> ephemeralResolveInfoList =
5008                mEphemeralResolverConnection.getEphemeralResolveInfoList(
5009                        shaPrefix, ephemeralPrefixMask);
5010        if (ephemeralResolveInfoList == null || ephemeralResolveInfoList.size() == 0) {
5011            // No hash prefix match; there are no ephemeral apps for this domain.
5012            return null;
5013        }
5014
5015        // Go in reverse order so we match the narrowest scope first.
5016        for (int i = shaPrefix.length - 1; i >= 0 ; --i) {
5017            for (EphemeralResolveInfo ephemeralApplication : ephemeralResolveInfoList) {
5018                if (!Arrays.equals(digestBytes[i], ephemeralApplication.getDigestBytes())) {
5019                    continue;
5020                }
5021                final List<IntentFilter> filters = ephemeralApplication.getFilters();
5022                // No filters; this should never happen.
5023                if (filters.isEmpty()) {
5024                    continue;
5025                }
5026                // We have a domain match; resolve the filters to see if anything matches.
5027                final EphemeralIntentResolver ephemeralResolver = new EphemeralIntentResolver();
5028                for (int j = filters.size() - 1; j >= 0; --j) {
5029                    final EphemeralResolveIntentInfo intentInfo =
5030                            new EphemeralResolveIntentInfo(filters.get(j), ephemeralApplication);
5031                    ephemeralResolver.addFilter(intentInfo);
5032                }
5033                List<EphemeralResolveInfo> matchedResolveInfoList = ephemeralResolver.queryIntent(
5034                        intent, resolvedType, false /*defaultOnly*/, userId);
5035                if (!matchedResolveInfoList.isEmpty()) {
5036                    return matchedResolveInfoList.get(0);
5037                }
5038            }
5039        }
5040        // Hash or filter mis-match; no ephemeral apps for this domain.
5041        return null;
5042    }
5043
5044    private ResolveInfo chooseBestActivity(Intent intent, String resolvedType,
5045            int flags, List<ResolveInfo> query, int userId) {
5046        if (query != null) {
5047            final int N = query.size();
5048            if (N == 1) {
5049                return query.get(0);
5050            } else if (N > 1) {
5051                final boolean debug = ((intent.getFlags() & Intent.FLAG_DEBUG_LOG_RESOLUTION) != 0);
5052                // If there is more than one activity with the same priority,
5053                // then let the user decide between them.
5054                ResolveInfo r0 = query.get(0);
5055                ResolveInfo r1 = query.get(1);
5056                if (DEBUG_INTENT_MATCHING || debug) {
5057                    Slog.v(TAG, r0.activityInfo.name + "=" + r0.priority + " vs "
5058                            + r1.activityInfo.name + "=" + r1.priority);
5059                }
5060                // If the first activity has a higher priority, or a different
5061                // default, then it is always desirable to pick it.
5062                if (r0.priority != r1.priority
5063                        || r0.preferredOrder != r1.preferredOrder
5064                        || r0.isDefault != r1.isDefault) {
5065                    return query.get(0);
5066                }
5067                // If we have saved a preference for a preferred activity for
5068                // this Intent, use that.
5069                ResolveInfo ri = findPreferredActivity(intent, resolvedType,
5070                        flags, query, r0.priority, true, false, debug, userId);
5071                if (ri != null) {
5072                    return ri;
5073                }
5074                ri = new ResolveInfo(mResolveInfo);
5075                ri.activityInfo = new ActivityInfo(ri.activityInfo);
5076                ri.activityInfo.labelRes = ResolverActivity.getLabelRes(intent.getAction());
5077                // If all of the options come from the same package, show the application's
5078                // label and icon instead of the generic resolver's.
5079                // Some calls like Intent.resolveActivityInfo query the ResolveInfo from here
5080                // and then throw away the ResolveInfo itself, meaning that the caller loses
5081                // the resolvePackageName. Therefore the activityInfo.labelRes above provides
5082                // a fallback for this case; we only set the target package's resources on
5083                // the ResolveInfo, not the ActivityInfo.
5084                final String intentPackage = intent.getPackage();
5085                if (!TextUtils.isEmpty(intentPackage) && allHavePackage(query, intentPackage)) {
5086                    final ApplicationInfo appi = query.get(0).activityInfo.applicationInfo;
5087                    ri.resolvePackageName = intentPackage;
5088                    if (userNeedsBadging(userId)) {
5089                        ri.noResourceId = true;
5090                    } else {
5091                        ri.icon = appi.icon;
5092                    }
5093                    ri.iconResourceId = appi.icon;
5094                    ri.labelRes = appi.labelRes;
5095                }
5096                ri.activityInfo.applicationInfo = new ApplicationInfo(
5097                        ri.activityInfo.applicationInfo);
5098                if (userId != 0) {
5099                    ri.activityInfo.applicationInfo.uid = UserHandle.getUid(userId,
5100                            UserHandle.getAppId(ri.activityInfo.applicationInfo.uid));
5101                }
5102                // Make sure that the resolver is displayable in car mode
5103                if (ri.activityInfo.metaData == null) ri.activityInfo.metaData = new Bundle();
5104                ri.activityInfo.metaData.putBoolean(Intent.METADATA_DOCK_HOME, true);
5105                return ri;
5106            }
5107        }
5108        return null;
5109    }
5110
5111    /**
5112     * Return true if the given list is not empty and all of its contents have
5113     * an activityInfo with the given package name.
5114     */
5115    private boolean allHavePackage(List<ResolveInfo> list, String packageName) {
5116        if (ArrayUtils.isEmpty(list)) {
5117            return false;
5118        }
5119        for (int i = 0, N = list.size(); i < N; i++) {
5120            final ResolveInfo ri = list.get(i);
5121            final ActivityInfo ai = ri != null ? ri.activityInfo : null;
5122            if (ai == null || !packageName.equals(ai.packageName)) {
5123                return false;
5124            }
5125        }
5126        return true;
5127    }
5128
5129    private ResolveInfo findPersistentPreferredActivityLP(Intent intent, String resolvedType,
5130            int flags, List<ResolveInfo> query, boolean debug, int userId) {
5131        final int N = query.size();
5132        PersistentPreferredIntentResolver ppir = mSettings.mPersistentPreferredActivities
5133                .get(userId);
5134        // Get the list of persistent preferred activities that handle the intent
5135        if (DEBUG_PREFERRED || debug) Slog.v(TAG, "Looking for presistent preferred activities...");
5136        List<PersistentPreferredActivity> pprefs = ppir != null
5137                ? ppir.queryIntent(intent, resolvedType,
5138                        (flags & PackageManager.MATCH_DEFAULT_ONLY) != 0, userId)
5139                : null;
5140        if (pprefs != null && pprefs.size() > 0) {
5141            final int M = pprefs.size();
5142            for (int i=0; i<M; i++) {
5143                final PersistentPreferredActivity ppa = pprefs.get(i);
5144                if (DEBUG_PREFERRED || debug) {
5145                    Slog.v(TAG, "Checking PersistentPreferredActivity ds="
5146                            + (ppa.countDataSchemes() > 0 ? ppa.getDataScheme(0) : "<none>")
5147                            + "\n  component=" + ppa.mComponent);
5148                    ppa.dump(new LogPrinter(Log.VERBOSE, TAG, Log.LOG_ID_SYSTEM), "  ");
5149                }
5150                final ActivityInfo ai = getActivityInfo(ppa.mComponent,
5151                        flags | MATCH_DISABLED_COMPONENTS, userId);
5152                if (DEBUG_PREFERRED || debug) {
5153                    Slog.v(TAG, "Found persistent preferred activity:");
5154                    if (ai != null) {
5155                        ai.dump(new LogPrinter(Log.VERBOSE, TAG, Log.LOG_ID_SYSTEM), "  ");
5156                    } else {
5157                        Slog.v(TAG, "  null");
5158                    }
5159                }
5160                if (ai == null) {
5161                    // This previously registered persistent preferred activity
5162                    // component is no longer known. Ignore it and do NOT remove it.
5163                    continue;
5164                }
5165                for (int j=0; j<N; j++) {
5166                    final ResolveInfo ri = query.get(j);
5167                    if (!ri.activityInfo.applicationInfo.packageName
5168                            .equals(ai.applicationInfo.packageName)) {
5169                        continue;
5170                    }
5171                    if (!ri.activityInfo.name.equals(ai.name)) {
5172                        continue;
5173                    }
5174                    //  Found a persistent preference that can handle the intent.
5175                    if (DEBUG_PREFERRED || debug) {
5176                        Slog.v(TAG, "Returning persistent preferred activity: " +
5177                                ri.activityInfo.packageName + "/" + ri.activityInfo.name);
5178                    }
5179                    return ri;
5180                }
5181            }
5182        }
5183        return null;
5184    }
5185
5186    // TODO: handle preferred activities missing while user has amnesia
5187    ResolveInfo findPreferredActivity(Intent intent, String resolvedType, int flags,
5188            List<ResolveInfo> query, int priority, boolean always,
5189            boolean removeMatches, boolean debug, int userId) {
5190        if (!sUserManager.exists(userId)) return null;
5191        flags = updateFlagsForResolve(flags, userId, intent);
5192        // writer
5193        synchronized (mPackages) {
5194            if (intent.getSelector() != null) {
5195                intent = intent.getSelector();
5196            }
5197            if (DEBUG_PREFERRED) intent.addFlags(Intent.FLAG_DEBUG_LOG_RESOLUTION);
5198
5199            // Try to find a matching persistent preferred activity.
5200            ResolveInfo pri = findPersistentPreferredActivityLP(intent, resolvedType, flags, query,
5201                    debug, userId);
5202
5203            // If a persistent preferred activity matched, use it.
5204            if (pri != null) {
5205                return pri;
5206            }
5207
5208            PreferredIntentResolver pir = mSettings.mPreferredActivities.get(userId);
5209            // Get the list of preferred activities that handle the intent
5210            if (DEBUG_PREFERRED || debug) Slog.v(TAG, "Looking for preferred activities...");
5211            List<PreferredActivity> prefs = pir != null
5212                    ? pir.queryIntent(intent, resolvedType,
5213                            (flags & PackageManager.MATCH_DEFAULT_ONLY) != 0, userId)
5214                    : null;
5215            if (prefs != null && prefs.size() > 0) {
5216                boolean changed = false;
5217                try {
5218                    // First figure out how good the original match set is.
5219                    // We will only allow preferred activities that came
5220                    // from the same match quality.
5221                    int match = 0;
5222
5223                    if (DEBUG_PREFERRED || debug) Slog.v(TAG, "Figuring out best match...");
5224
5225                    final int N = query.size();
5226                    for (int j=0; j<N; j++) {
5227                        final ResolveInfo ri = query.get(j);
5228                        if (DEBUG_PREFERRED || debug) Slog.v(TAG, "Match for " + ri.activityInfo
5229                                + ": 0x" + Integer.toHexString(match));
5230                        if (ri.match > match) {
5231                            match = ri.match;
5232                        }
5233                    }
5234
5235                    if (DEBUG_PREFERRED || debug) Slog.v(TAG, "Best match: 0x"
5236                            + Integer.toHexString(match));
5237
5238                    match &= IntentFilter.MATCH_CATEGORY_MASK;
5239                    final int M = prefs.size();
5240                    for (int i=0; i<M; i++) {
5241                        final PreferredActivity pa = prefs.get(i);
5242                        if (DEBUG_PREFERRED || debug) {
5243                            Slog.v(TAG, "Checking PreferredActivity ds="
5244                                    + (pa.countDataSchemes() > 0 ? pa.getDataScheme(0) : "<none>")
5245                                    + "\n  component=" + pa.mPref.mComponent);
5246                            pa.dump(new LogPrinter(Log.VERBOSE, TAG, Log.LOG_ID_SYSTEM), "  ");
5247                        }
5248                        if (pa.mPref.mMatch != match) {
5249                            if (DEBUG_PREFERRED || debug) Slog.v(TAG, "Skipping bad match "
5250                                    + Integer.toHexString(pa.mPref.mMatch));
5251                            continue;
5252                        }
5253                        // If it's not an "always" type preferred activity and that's what we're
5254                        // looking for, skip it.
5255                        if (always && !pa.mPref.mAlways) {
5256                            if (DEBUG_PREFERRED || debug) Slog.v(TAG, "Skipping mAlways=false entry");
5257                            continue;
5258                        }
5259                        final ActivityInfo ai = getActivityInfo(
5260                                pa.mPref.mComponent, flags | MATCH_DISABLED_COMPONENTS
5261                                        | MATCH_DIRECT_BOOT_AWARE | MATCH_DIRECT_BOOT_UNAWARE,
5262                                userId);
5263                        if (DEBUG_PREFERRED || debug) {
5264                            Slog.v(TAG, "Found preferred activity:");
5265                            if (ai != null) {
5266                                ai.dump(new LogPrinter(Log.VERBOSE, TAG, Log.LOG_ID_SYSTEM), "  ");
5267                            } else {
5268                                Slog.v(TAG, "  null");
5269                            }
5270                        }
5271                        if (ai == null) {
5272                            // This previously registered preferred activity
5273                            // component is no longer known.  Most likely an update
5274                            // to the app was installed and in the new version this
5275                            // component no longer exists.  Clean it up by removing
5276                            // it from the preferred activities list, and skip it.
5277                            Slog.w(TAG, "Removing dangling preferred activity: "
5278                                    + pa.mPref.mComponent);
5279                            pir.removeFilter(pa);
5280                            changed = true;
5281                            continue;
5282                        }
5283                        for (int j=0; j<N; j++) {
5284                            final ResolveInfo ri = query.get(j);
5285                            if (!ri.activityInfo.applicationInfo.packageName
5286                                    .equals(ai.applicationInfo.packageName)) {
5287                                continue;
5288                            }
5289                            if (!ri.activityInfo.name.equals(ai.name)) {
5290                                continue;
5291                            }
5292
5293                            if (removeMatches) {
5294                                pir.removeFilter(pa);
5295                                changed = true;
5296                                if (DEBUG_PREFERRED) {
5297                                    Slog.v(TAG, "Removing match " + pa.mPref.mComponent);
5298                                }
5299                                break;
5300                            }
5301
5302                            // Okay we found a previously set preferred or last chosen app.
5303                            // If the result set is different from when this
5304                            // was created, we need to clear it and re-ask the
5305                            // user their preference, if we're looking for an "always" type entry.
5306                            if (always && !pa.mPref.sameSet(query)) {
5307                                Slog.i(TAG, "Result set changed, dropping preferred activity for "
5308                                        + intent + " type " + resolvedType);
5309                                if (DEBUG_PREFERRED) {
5310                                    Slog.v(TAG, "Removing preferred activity since set changed "
5311                                            + pa.mPref.mComponent);
5312                                }
5313                                pir.removeFilter(pa);
5314                                // Re-add the filter as a "last chosen" entry (!always)
5315                                PreferredActivity lastChosen = new PreferredActivity(
5316                                        pa, pa.mPref.mMatch, null, pa.mPref.mComponent, false);
5317                                pir.addFilter(lastChosen);
5318                                changed = true;
5319                                return null;
5320                            }
5321
5322                            // Yay! Either the set matched or we're looking for the last chosen
5323                            if (DEBUG_PREFERRED || debug) Slog.v(TAG, "Returning preferred activity: "
5324                                    + ri.activityInfo.packageName + "/" + ri.activityInfo.name);
5325                            return ri;
5326                        }
5327                    }
5328                } finally {
5329                    if (changed) {
5330                        if (DEBUG_PREFERRED) {
5331                            Slog.v(TAG, "Preferred activity bookkeeping changed; writing restrictions");
5332                        }
5333                        scheduleWritePackageRestrictionsLocked(userId);
5334                    }
5335                }
5336            }
5337        }
5338        if (DEBUG_PREFERRED || debug) Slog.v(TAG, "No preferred activity to return");
5339        return null;
5340    }
5341
5342    /*
5343     * Returns if intent can be forwarded from the sourceUserId to the targetUserId
5344     */
5345    @Override
5346    public boolean canForwardTo(Intent intent, String resolvedType, int sourceUserId,
5347            int targetUserId) {
5348        mContext.enforceCallingOrSelfPermission(
5349                android.Manifest.permission.INTERACT_ACROSS_USERS_FULL, null);
5350        List<CrossProfileIntentFilter> matches =
5351                getMatchingCrossProfileIntentFilters(intent, resolvedType, sourceUserId);
5352        if (matches != null) {
5353            int size = matches.size();
5354            for (int i = 0; i < size; i++) {
5355                if (matches.get(i).getTargetUserId() == targetUserId) return true;
5356            }
5357        }
5358        if (hasWebURI(intent)) {
5359            // cross-profile app linking works only towards the parent.
5360            final UserInfo parent = getProfileParent(sourceUserId);
5361            synchronized(mPackages) {
5362                int flags = updateFlagsForResolve(0, parent.id, intent);
5363                CrossProfileDomainInfo xpDomainInfo = getCrossProfileDomainPreferredLpr(
5364                        intent, resolvedType, flags, sourceUserId, parent.id);
5365                return xpDomainInfo != null;
5366            }
5367        }
5368        return false;
5369    }
5370
5371    private UserInfo getProfileParent(int userId) {
5372        final long identity = Binder.clearCallingIdentity();
5373        try {
5374            return sUserManager.getProfileParent(userId);
5375        } finally {
5376            Binder.restoreCallingIdentity(identity);
5377        }
5378    }
5379
5380    private List<CrossProfileIntentFilter> getMatchingCrossProfileIntentFilters(Intent intent,
5381            String resolvedType, int userId) {
5382        CrossProfileIntentResolver resolver = mSettings.mCrossProfileIntentResolvers.get(userId);
5383        if (resolver != null) {
5384            return resolver.queryIntent(intent, resolvedType, false, userId);
5385        }
5386        return null;
5387    }
5388
5389    @Override
5390    public @NonNull ParceledListSlice<ResolveInfo> queryIntentActivities(Intent intent,
5391            String resolvedType, int flags, int userId) {
5392        try {
5393            Trace.traceBegin(TRACE_TAG_PACKAGE_MANAGER, "queryIntentActivities");
5394
5395            return new ParceledListSlice<>(
5396                    queryIntentActivitiesInternal(intent, resolvedType, flags, userId));
5397        } finally {
5398            Trace.traceEnd(TRACE_TAG_PACKAGE_MANAGER);
5399        }
5400    }
5401
5402    private @NonNull List<ResolveInfo> queryIntentActivitiesInternal(Intent intent,
5403            String resolvedType, int flags, int userId) {
5404        if (!sUserManager.exists(userId)) return Collections.emptyList();
5405        flags = updateFlagsForResolve(flags, userId, intent);
5406        enforceCrossUserPermission(Binder.getCallingUid(), userId,
5407                false /* requireFullPermission */, false /* checkShell */,
5408                "query intent activities");
5409        ComponentName comp = intent.getComponent();
5410        if (comp == null) {
5411            if (intent.getSelector() != null) {
5412                intent = intent.getSelector();
5413                comp = intent.getComponent();
5414            }
5415        }
5416
5417        if (comp != null) {
5418            final List<ResolveInfo> list = new ArrayList<ResolveInfo>(1);
5419            final ActivityInfo ai = getActivityInfo(comp, flags, userId);
5420            if (ai != null) {
5421                final ResolveInfo ri = new ResolveInfo();
5422                ri.activityInfo = ai;
5423                list.add(ri);
5424            }
5425            return list;
5426        }
5427
5428        // reader
5429        synchronized (mPackages) {
5430            final String pkgName = intent.getPackage();
5431            if (pkgName == null) {
5432                List<CrossProfileIntentFilter> matchingFilters =
5433                        getMatchingCrossProfileIntentFilters(intent, resolvedType, userId);
5434                // Check for results that need to skip the current profile.
5435                ResolveInfo xpResolveInfo  = querySkipCurrentProfileIntents(matchingFilters, intent,
5436                        resolvedType, flags, userId);
5437                if (xpResolveInfo != null) {
5438                    List<ResolveInfo> result = new ArrayList<ResolveInfo>(1);
5439                    result.add(xpResolveInfo);
5440                    return filterIfNotSystemUser(result, userId);
5441                }
5442
5443                // Check for results in the current profile.
5444                List<ResolveInfo> result = mActivities.queryIntent(
5445                        intent, resolvedType, flags, userId);
5446                result = filterIfNotSystemUser(result, userId);
5447
5448                // Check for cross profile results.
5449                boolean hasNonNegativePriorityResult = hasNonNegativePriority(result);
5450                xpResolveInfo = queryCrossProfileIntents(
5451                        matchingFilters, intent, resolvedType, flags, userId,
5452                        hasNonNegativePriorityResult);
5453                if (xpResolveInfo != null && isUserEnabled(xpResolveInfo.targetUserId)) {
5454                    boolean isVisibleToUser = filterIfNotSystemUser(
5455                            Collections.singletonList(xpResolveInfo), userId).size() > 0;
5456                    if (isVisibleToUser) {
5457                        result.add(xpResolveInfo);
5458                        Collections.sort(result, mResolvePrioritySorter);
5459                    }
5460                }
5461                if (hasWebURI(intent)) {
5462                    CrossProfileDomainInfo xpDomainInfo = null;
5463                    final UserInfo parent = getProfileParent(userId);
5464                    if (parent != null) {
5465                        xpDomainInfo = getCrossProfileDomainPreferredLpr(intent, resolvedType,
5466                                flags, userId, parent.id);
5467                    }
5468                    if (xpDomainInfo != null) {
5469                        if (xpResolveInfo != null) {
5470                            // If we didn't remove it, the cross-profile ResolveInfo would be twice
5471                            // in the result.
5472                            result.remove(xpResolveInfo);
5473                        }
5474                        if (result.size() == 0) {
5475                            result.add(xpDomainInfo.resolveInfo);
5476                            return result;
5477                        }
5478                    } else if (result.size() <= 1) {
5479                        return result;
5480                    }
5481                    result = filterCandidatesWithDomainPreferredActivitiesLPr(intent, flags, result,
5482                            xpDomainInfo, userId);
5483                    Collections.sort(result, mResolvePrioritySorter);
5484                }
5485                return result;
5486            }
5487            final PackageParser.Package pkg = mPackages.get(pkgName);
5488            if (pkg != null) {
5489                return filterIfNotSystemUser(
5490                        mActivities.queryIntentForPackage(
5491                                intent, resolvedType, flags, pkg.activities, userId),
5492                        userId);
5493            }
5494            return new ArrayList<ResolveInfo>();
5495        }
5496    }
5497
5498    private static class CrossProfileDomainInfo {
5499        /* ResolveInfo for IntentForwarderActivity to send the intent to the other profile */
5500        ResolveInfo resolveInfo;
5501        /* Best domain verification status of the activities found in the other profile */
5502        int bestDomainVerificationStatus;
5503    }
5504
5505    private CrossProfileDomainInfo getCrossProfileDomainPreferredLpr(Intent intent,
5506            String resolvedType, int flags, int sourceUserId, int parentUserId) {
5507        if (!sUserManager.hasUserRestriction(UserManager.ALLOW_PARENT_PROFILE_APP_LINKING,
5508                sourceUserId)) {
5509            return null;
5510        }
5511        List<ResolveInfo> resultTargetUser = mActivities.queryIntent(intent,
5512                resolvedType, flags, parentUserId);
5513
5514        if (resultTargetUser == null || resultTargetUser.isEmpty()) {
5515            return null;
5516        }
5517        CrossProfileDomainInfo result = null;
5518        int size = resultTargetUser.size();
5519        for (int i = 0; i < size; i++) {
5520            ResolveInfo riTargetUser = resultTargetUser.get(i);
5521            // Intent filter verification is only for filters that specify a host. So don't return
5522            // those that handle all web uris.
5523            if (riTargetUser.handleAllWebDataURI) {
5524                continue;
5525            }
5526            String packageName = riTargetUser.activityInfo.packageName;
5527            PackageSetting ps = mSettings.mPackages.get(packageName);
5528            if (ps == null) {
5529                continue;
5530            }
5531            long verificationState = getDomainVerificationStatusLPr(ps, parentUserId);
5532            int status = (int)(verificationState >> 32);
5533            if (result == null) {
5534                result = new CrossProfileDomainInfo();
5535                result.resolveInfo = createForwardingResolveInfoUnchecked(new IntentFilter(),
5536                        sourceUserId, parentUserId);
5537                result.bestDomainVerificationStatus = status;
5538            } else {
5539                result.bestDomainVerificationStatus = bestDomainVerificationStatus(status,
5540                        result.bestDomainVerificationStatus);
5541            }
5542        }
5543        // Don't consider matches with status NEVER across profiles.
5544        if (result != null && result.bestDomainVerificationStatus
5545                == INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_NEVER) {
5546            return null;
5547        }
5548        return result;
5549    }
5550
5551    /**
5552     * Verification statuses are ordered from the worse to the best, except for
5553     * INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_NEVER, which is the worse.
5554     */
5555    private int bestDomainVerificationStatus(int status1, int status2) {
5556        if (status1 == INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_NEVER) {
5557            return status2;
5558        }
5559        if (status2 == INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_NEVER) {
5560            return status1;
5561        }
5562        return (int) MathUtils.max(status1, status2);
5563    }
5564
5565    private boolean isUserEnabled(int userId) {
5566        long callingId = Binder.clearCallingIdentity();
5567        try {
5568            UserInfo userInfo = sUserManager.getUserInfo(userId);
5569            return userInfo != null && userInfo.isEnabled();
5570        } finally {
5571            Binder.restoreCallingIdentity(callingId);
5572        }
5573    }
5574
5575    /**
5576     * Filter out activities with systemUserOnly flag set, when current user is not System.
5577     *
5578     * @return filtered list
5579     */
5580    private List<ResolveInfo> filterIfNotSystemUser(List<ResolveInfo> resolveInfos, int userId) {
5581        if (userId == UserHandle.USER_SYSTEM) {
5582            return resolveInfos;
5583        }
5584        for (int i = resolveInfos.size() - 1; i >= 0; i--) {
5585            ResolveInfo info = resolveInfos.get(i);
5586            if ((info.activityInfo.flags & ActivityInfo.FLAG_SYSTEM_USER_ONLY) != 0) {
5587                resolveInfos.remove(i);
5588            }
5589        }
5590        return resolveInfos;
5591    }
5592
5593    /**
5594     * @param resolveInfos list of resolve infos in descending priority order
5595     * @return if the list contains a resolve info with non-negative priority
5596     */
5597    private boolean hasNonNegativePriority(List<ResolveInfo> resolveInfos) {
5598        return resolveInfos.size() > 0 && resolveInfos.get(0).priority >= 0;
5599    }
5600
5601    private static boolean hasWebURI(Intent intent) {
5602        if (intent.getData() == null) {
5603            return false;
5604        }
5605        final String scheme = intent.getScheme();
5606        if (TextUtils.isEmpty(scheme)) {
5607            return false;
5608        }
5609        return scheme.equals(IntentFilter.SCHEME_HTTP) || scheme.equals(IntentFilter.SCHEME_HTTPS);
5610    }
5611
5612    private List<ResolveInfo> filterCandidatesWithDomainPreferredActivitiesLPr(Intent intent,
5613            int matchFlags, List<ResolveInfo> candidates, CrossProfileDomainInfo xpDomainInfo,
5614            int userId) {
5615        final boolean debug = (intent.getFlags() & Intent.FLAG_DEBUG_LOG_RESOLUTION) != 0;
5616
5617        if (DEBUG_PREFERRED || DEBUG_DOMAIN_VERIFICATION) {
5618            Slog.v(TAG, "Filtering results with preferred activities. Candidates count: " +
5619                    candidates.size());
5620        }
5621
5622        ArrayList<ResolveInfo> result = new ArrayList<ResolveInfo>();
5623        ArrayList<ResolveInfo> alwaysList = new ArrayList<ResolveInfo>();
5624        ArrayList<ResolveInfo> undefinedList = new ArrayList<ResolveInfo>();
5625        ArrayList<ResolveInfo> alwaysAskList = new ArrayList<ResolveInfo>();
5626        ArrayList<ResolveInfo> neverList = new ArrayList<ResolveInfo>();
5627        ArrayList<ResolveInfo> matchAllList = new ArrayList<ResolveInfo>();
5628
5629        synchronized (mPackages) {
5630            final int count = candidates.size();
5631            // First, try to use linked apps. Partition the candidates into four lists:
5632            // one for the final results, one for the "do not use ever", one for "undefined status"
5633            // and finally one for "browser app type".
5634            for (int n=0; n<count; n++) {
5635                ResolveInfo info = candidates.get(n);
5636                String packageName = info.activityInfo.packageName;
5637                PackageSetting ps = mSettings.mPackages.get(packageName);
5638                if (ps != null) {
5639                    // Add to the special match all list (Browser use case)
5640                    if (info.handleAllWebDataURI) {
5641                        matchAllList.add(info);
5642                        continue;
5643                    }
5644                    // Try to get the status from User settings first
5645                    long packedStatus = getDomainVerificationStatusLPr(ps, userId);
5646                    int status = (int)(packedStatus >> 32);
5647                    int linkGeneration = (int)(packedStatus & 0xFFFFFFFF);
5648                    if (status == INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_ALWAYS) {
5649                        if (DEBUG_DOMAIN_VERIFICATION) {
5650                            Slog.i(TAG, "  + always: " + info.activityInfo.packageName
5651                                    + " : linkgen=" + linkGeneration);
5652                        }
5653                        // Use link-enabled generation as preferredOrder, i.e.
5654                        // prefer newly-enabled over earlier-enabled.
5655                        info.preferredOrder = linkGeneration;
5656                        alwaysList.add(info);
5657                    } else if (status == INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_NEVER) {
5658                        if (DEBUG_DOMAIN_VERIFICATION) {
5659                            Slog.i(TAG, "  + never: " + info.activityInfo.packageName);
5660                        }
5661                        neverList.add(info);
5662                    } else if (status == INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_ALWAYS_ASK) {
5663                        if (DEBUG_DOMAIN_VERIFICATION) {
5664                            Slog.i(TAG, "  + always-ask: " + info.activityInfo.packageName);
5665                        }
5666                        alwaysAskList.add(info);
5667                    } else if (status == INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_UNDEFINED ||
5668                            status == INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_ASK) {
5669                        if (DEBUG_DOMAIN_VERIFICATION) {
5670                            Slog.i(TAG, "  + ask: " + info.activityInfo.packageName);
5671                        }
5672                        undefinedList.add(info);
5673                    }
5674                }
5675            }
5676
5677            // We'll want to include browser possibilities in a few cases
5678            boolean includeBrowser = false;
5679
5680            // First try to add the "always" resolution(s) for the current user, if any
5681            if (alwaysList.size() > 0) {
5682                result.addAll(alwaysList);
5683            } else {
5684                // Add all undefined apps as we want them to appear in the disambiguation dialog.
5685                result.addAll(undefinedList);
5686                // Maybe add one for the other profile.
5687                if (xpDomainInfo != null && (
5688                        xpDomainInfo.bestDomainVerificationStatus
5689                        != INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_NEVER)) {
5690                    result.add(xpDomainInfo.resolveInfo);
5691                }
5692                includeBrowser = true;
5693            }
5694
5695            // The presence of any 'always ask' alternatives means we'll also offer browsers.
5696            // If there were 'always' entries their preferred order has been set, so we also
5697            // back that off to make the alternatives equivalent
5698            if (alwaysAskList.size() > 0) {
5699                for (ResolveInfo i : result) {
5700                    i.preferredOrder = 0;
5701                }
5702                result.addAll(alwaysAskList);
5703                includeBrowser = true;
5704            }
5705
5706            if (includeBrowser) {
5707                // Also add browsers (all of them or only the default one)
5708                if (DEBUG_DOMAIN_VERIFICATION) {
5709                    Slog.v(TAG, "   ...including browsers in candidate set");
5710                }
5711                if ((matchFlags & MATCH_ALL) != 0) {
5712                    result.addAll(matchAllList);
5713                } else {
5714                    // Browser/generic handling case.  If there's a default browser, go straight
5715                    // to that (but only if there is no other higher-priority match).
5716                    final String defaultBrowserPackageName = getDefaultBrowserPackageName(userId);
5717                    int maxMatchPrio = 0;
5718                    ResolveInfo defaultBrowserMatch = null;
5719                    final int numCandidates = matchAllList.size();
5720                    for (int n = 0; n < numCandidates; n++) {
5721                        ResolveInfo info = matchAllList.get(n);
5722                        // track the highest overall match priority...
5723                        if (info.priority > maxMatchPrio) {
5724                            maxMatchPrio = info.priority;
5725                        }
5726                        // ...and the highest-priority default browser match
5727                        if (info.activityInfo.packageName.equals(defaultBrowserPackageName)) {
5728                            if (defaultBrowserMatch == null
5729                                    || (defaultBrowserMatch.priority < info.priority)) {
5730                                if (debug) {
5731                                    Slog.v(TAG, "Considering default browser match " + info);
5732                                }
5733                                defaultBrowserMatch = info;
5734                            }
5735                        }
5736                    }
5737                    if (defaultBrowserMatch != null
5738                            && defaultBrowserMatch.priority >= maxMatchPrio
5739                            && !TextUtils.isEmpty(defaultBrowserPackageName))
5740                    {
5741                        if (debug) {
5742                            Slog.v(TAG, "Default browser match " + defaultBrowserMatch);
5743                        }
5744                        result.add(defaultBrowserMatch);
5745                    } else {
5746                        result.addAll(matchAllList);
5747                    }
5748                }
5749
5750                // If there is nothing selected, add all candidates and remove the ones that the user
5751                // has explicitly put into the INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_NEVER state
5752                if (result.size() == 0) {
5753                    result.addAll(candidates);
5754                    result.removeAll(neverList);
5755                }
5756            }
5757        }
5758        if (DEBUG_PREFERRED || DEBUG_DOMAIN_VERIFICATION) {
5759            Slog.v(TAG, "Filtered results with preferred activities. New candidates count: " +
5760                    result.size());
5761            for (ResolveInfo info : result) {
5762                Slog.v(TAG, "  + " + info.activityInfo);
5763            }
5764        }
5765        return result;
5766    }
5767
5768    // Returns a packed value as a long:
5769    //
5770    // high 'int'-sized word: link status: undefined/ask/never/always.
5771    // low 'int'-sized word: relative priority among 'always' results.
5772    private long getDomainVerificationStatusLPr(PackageSetting ps, int userId) {
5773        long result = ps.getDomainVerificationStatusForUser(userId);
5774        // if none available, get the master status
5775        if (result >> 32 == INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_UNDEFINED) {
5776            if (ps.getIntentFilterVerificationInfo() != null) {
5777                result = ((long)ps.getIntentFilterVerificationInfo().getStatus()) << 32;
5778            }
5779        }
5780        return result;
5781    }
5782
5783    private ResolveInfo querySkipCurrentProfileIntents(
5784            List<CrossProfileIntentFilter> matchingFilters, Intent intent, String resolvedType,
5785            int flags, int sourceUserId) {
5786        if (matchingFilters != null) {
5787            int size = matchingFilters.size();
5788            for (int i = 0; i < size; i ++) {
5789                CrossProfileIntentFilter filter = matchingFilters.get(i);
5790                if ((filter.getFlags() & PackageManager.SKIP_CURRENT_PROFILE) != 0) {
5791                    // Checking if there are activities in the target user that can handle the
5792                    // intent.
5793                    ResolveInfo resolveInfo = createForwardingResolveInfo(filter, intent,
5794                            resolvedType, flags, sourceUserId);
5795                    if (resolveInfo != null) {
5796                        return resolveInfo;
5797                    }
5798                }
5799            }
5800        }
5801        return null;
5802    }
5803
5804    // Return matching ResolveInfo in target user if any.
5805    private ResolveInfo queryCrossProfileIntents(
5806            List<CrossProfileIntentFilter> matchingFilters, Intent intent, String resolvedType,
5807            int flags, int sourceUserId, boolean matchInCurrentProfile) {
5808        if (matchingFilters != null) {
5809            // Two {@link CrossProfileIntentFilter}s can have the same targetUserId and
5810            // match the same intent. For performance reasons, it is better not to
5811            // run queryIntent twice for the same userId
5812            SparseBooleanArray alreadyTriedUserIds = new SparseBooleanArray();
5813            int size = matchingFilters.size();
5814            for (int i = 0; i < size; i++) {
5815                CrossProfileIntentFilter filter = matchingFilters.get(i);
5816                int targetUserId = filter.getTargetUserId();
5817                boolean skipCurrentProfile =
5818                        (filter.getFlags() & PackageManager.SKIP_CURRENT_PROFILE) != 0;
5819                boolean skipCurrentProfileIfNoMatchFound =
5820                        (filter.getFlags() & PackageManager.ONLY_IF_NO_MATCH_FOUND) != 0;
5821                if (!skipCurrentProfile && !alreadyTriedUserIds.get(targetUserId)
5822                        && (!skipCurrentProfileIfNoMatchFound || !matchInCurrentProfile)) {
5823                    // Checking if there are activities in the target user that can handle the
5824                    // intent.
5825                    ResolveInfo resolveInfo = createForwardingResolveInfo(filter, intent,
5826                            resolvedType, flags, sourceUserId);
5827                    if (resolveInfo != null) return resolveInfo;
5828                    alreadyTriedUserIds.put(targetUserId, true);
5829                }
5830            }
5831        }
5832        return null;
5833    }
5834
5835    /**
5836     * If the filter's target user can handle the intent and is enabled: returns a ResolveInfo that
5837     * will forward the intent to the filter's target user.
5838     * Otherwise, returns null.
5839     */
5840    private ResolveInfo createForwardingResolveInfo(CrossProfileIntentFilter filter, Intent intent,
5841            String resolvedType, int flags, int sourceUserId) {
5842        int targetUserId = filter.getTargetUserId();
5843        List<ResolveInfo> resultTargetUser = mActivities.queryIntent(intent,
5844                resolvedType, flags, targetUserId);
5845        if (resultTargetUser != null && isUserEnabled(targetUserId)) {
5846            // If all the matches in the target profile are suspended, return null.
5847            for (int i = resultTargetUser.size() - 1; i >= 0; i--) {
5848                if ((resultTargetUser.get(i).activityInfo.applicationInfo.flags
5849                        & ApplicationInfo.FLAG_SUSPENDED) == 0) {
5850                    return createForwardingResolveInfoUnchecked(filter, sourceUserId,
5851                            targetUserId);
5852                }
5853            }
5854        }
5855        return null;
5856    }
5857
5858    private ResolveInfo createForwardingResolveInfoUnchecked(IntentFilter filter,
5859            int sourceUserId, int targetUserId) {
5860        ResolveInfo forwardingResolveInfo = new ResolveInfo();
5861        long ident = Binder.clearCallingIdentity();
5862        boolean targetIsProfile;
5863        try {
5864            targetIsProfile = sUserManager.getUserInfo(targetUserId).isManagedProfile();
5865        } finally {
5866            Binder.restoreCallingIdentity(ident);
5867        }
5868        String className;
5869        if (targetIsProfile) {
5870            className = FORWARD_INTENT_TO_MANAGED_PROFILE;
5871        } else {
5872            className = FORWARD_INTENT_TO_PARENT;
5873        }
5874        ComponentName forwardingActivityComponentName = new ComponentName(
5875                mAndroidApplication.packageName, className);
5876        ActivityInfo forwardingActivityInfo = getActivityInfo(forwardingActivityComponentName, 0,
5877                sourceUserId);
5878        if (!targetIsProfile) {
5879            forwardingActivityInfo.showUserIcon = targetUserId;
5880            forwardingResolveInfo.noResourceId = true;
5881        }
5882        forwardingResolveInfo.activityInfo = forwardingActivityInfo;
5883        forwardingResolveInfo.priority = 0;
5884        forwardingResolveInfo.preferredOrder = 0;
5885        forwardingResolveInfo.match = 0;
5886        forwardingResolveInfo.isDefault = true;
5887        forwardingResolveInfo.filter = filter;
5888        forwardingResolveInfo.targetUserId = targetUserId;
5889        return forwardingResolveInfo;
5890    }
5891
5892    @Override
5893    public @NonNull ParceledListSlice<ResolveInfo> queryIntentActivityOptions(ComponentName caller,
5894            Intent[] specifics, String[] specificTypes, Intent intent,
5895            String resolvedType, int flags, int userId) {
5896        return new ParceledListSlice<>(queryIntentActivityOptionsInternal(caller, specifics,
5897                specificTypes, intent, resolvedType, flags, userId));
5898    }
5899
5900    private @NonNull List<ResolveInfo> queryIntentActivityOptionsInternal(ComponentName caller,
5901            Intent[] specifics, String[] specificTypes, Intent intent,
5902            String resolvedType, int flags, int userId) {
5903        if (!sUserManager.exists(userId)) return Collections.emptyList();
5904        flags = updateFlagsForResolve(flags, userId, intent);
5905        enforceCrossUserPermission(Binder.getCallingUid(), userId,
5906                false /* requireFullPermission */, false /* checkShell */,
5907                "query intent activity options");
5908        final String resultsAction = intent.getAction();
5909
5910        final List<ResolveInfo> results = queryIntentActivitiesInternal(intent, resolvedType, flags
5911                | PackageManager.GET_RESOLVED_FILTER, userId);
5912
5913        if (DEBUG_INTENT_MATCHING) {
5914            Log.v(TAG, "Query " + intent + ": " + results);
5915        }
5916
5917        int specificsPos = 0;
5918        int N;
5919
5920        // todo: note that the algorithm used here is O(N^2).  This
5921        // isn't a problem in our current environment, but if we start running
5922        // into situations where we have more than 5 or 10 matches then this
5923        // should probably be changed to something smarter...
5924
5925        // First we go through and resolve each of the specific items
5926        // that were supplied, taking care of removing any corresponding
5927        // duplicate items in the generic resolve list.
5928        if (specifics != null) {
5929            for (int i=0; i<specifics.length; i++) {
5930                final Intent sintent = specifics[i];
5931                if (sintent == null) {
5932                    continue;
5933                }
5934
5935                if (DEBUG_INTENT_MATCHING) {
5936                    Log.v(TAG, "Specific #" + i + ": " + sintent);
5937                }
5938
5939                String action = sintent.getAction();
5940                if (resultsAction != null && resultsAction.equals(action)) {
5941                    // If this action was explicitly requested, then don't
5942                    // remove things that have it.
5943                    action = null;
5944                }
5945
5946                ResolveInfo ri = null;
5947                ActivityInfo ai = null;
5948
5949                ComponentName comp = sintent.getComponent();
5950                if (comp == null) {
5951                    ri = resolveIntent(
5952                        sintent,
5953                        specificTypes != null ? specificTypes[i] : null,
5954                            flags, userId);
5955                    if (ri == null) {
5956                        continue;
5957                    }
5958                    if (ri == mResolveInfo) {
5959                        // ACK!  Must do something better with this.
5960                    }
5961                    ai = ri.activityInfo;
5962                    comp = new ComponentName(ai.applicationInfo.packageName,
5963                            ai.name);
5964                } else {
5965                    ai = getActivityInfo(comp, flags, userId);
5966                    if (ai == null) {
5967                        continue;
5968                    }
5969                }
5970
5971                // Look for any generic query activities that are duplicates
5972                // of this specific one, and remove them from the results.
5973                if (DEBUG_INTENT_MATCHING) Log.v(TAG, "Specific #" + i + ": " + ai);
5974                N = results.size();
5975                int j;
5976                for (j=specificsPos; j<N; j++) {
5977                    ResolveInfo sri = results.get(j);
5978                    if ((sri.activityInfo.name.equals(comp.getClassName())
5979                            && sri.activityInfo.applicationInfo.packageName.equals(
5980                                    comp.getPackageName()))
5981                        || (action != null && sri.filter.matchAction(action))) {
5982                        results.remove(j);
5983                        if (DEBUG_INTENT_MATCHING) Log.v(
5984                            TAG, "Removing duplicate item from " + j
5985                            + " due to specific " + specificsPos);
5986                        if (ri == null) {
5987                            ri = sri;
5988                        }
5989                        j--;
5990                        N--;
5991                    }
5992                }
5993
5994                // Add this specific item to its proper place.
5995                if (ri == null) {
5996                    ri = new ResolveInfo();
5997                    ri.activityInfo = ai;
5998                }
5999                results.add(specificsPos, ri);
6000                ri.specificIndex = i;
6001                specificsPos++;
6002            }
6003        }
6004
6005        // Now we go through the remaining generic results and remove any
6006        // duplicate actions that are found here.
6007        N = results.size();
6008        for (int i=specificsPos; i<N-1; i++) {
6009            final ResolveInfo rii = results.get(i);
6010            if (rii.filter == null) {
6011                continue;
6012            }
6013
6014            // Iterate over all of the actions of this result's intent
6015            // filter...  typically this should be just one.
6016            final Iterator<String> it = rii.filter.actionsIterator();
6017            if (it == null) {
6018                continue;
6019            }
6020            while (it.hasNext()) {
6021                final String action = it.next();
6022                if (resultsAction != null && resultsAction.equals(action)) {
6023                    // If this action was explicitly requested, then don't
6024                    // remove things that have it.
6025                    continue;
6026                }
6027                for (int j=i+1; j<N; j++) {
6028                    final ResolveInfo rij = results.get(j);
6029                    if (rij.filter != null && rij.filter.hasAction(action)) {
6030                        results.remove(j);
6031                        if (DEBUG_INTENT_MATCHING) Log.v(
6032                            TAG, "Removing duplicate item from " + j
6033                            + " due to action " + action + " at " + i);
6034                        j--;
6035                        N--;
6036                    }
6037                }
6038            }
6039
6040            // If the caller didn't request filter information, drop it now
6041            // so we don't have to marshall/unmarshall it.
6042            if ((flags&PackageManager.GET_RESOLVED_FILTER) == 0) {
6043                rii.filter = null;
6044            }
6045        }
6046
6047        // Filter out the caller activity if so requested.
6048        if (caller != null) {
6049            N = results.size();
6050            for (int i=0; i<N; i++) {
6051                ActivityInfo ainfo = results.get(i).activityInfo;
6052                if (caller.getPackageName().equals(ainfo.applicationInfo.packageName)
6053                        && caller.getClassName().equals(ainfo.name)) {
6054                    results.remove(i);
6055                    break;
6056                }
6057            }
6058        }
6059
6060        // If the caller didn't request filter information,
6061        // drop them now so we don't have to
6062        // marshall/unmarshall it.
6063        if ((flags&PackageManager.GET_RESOLVED_FILTER) == 0) {
6064            N = results.size();
6065            for (int i=0; i<N; i++) {
6066                results.get(i).filter = null;
6067            }
6068        }
6069
6070        if (DEBUG_INTENT_MATCHING) Log.v(TAG, "Result: " + results);
6071        return results;
6072    }
6073
6074    @Override
6075    public @NonNull ParceledListSlice<ResolveInfo> queryIntentReceivers(Intent intent,
6076            String resolvedType, int flags, int userId) {
6077        return new ParceledListSlice<>(
6078                queryIntentReceiversInternal(intent, resolvedType, flags, userId));
6079    }
6080
6081    private @NonNull List<ResolveInfo> queryIntentReceiversInternal(Intent intent,
6082            String resolvedType, int flags, int userId) {
6083        if (!sUserManager.exists(userId)) return Collections.emptyList();
6084        flags = updateFlagsForResolve(flags, userId, intent);
6085        ComponentName comp = intent.getComponent();
6086        if (comp == null) {
6087            if (intent.getSelector() != null) {
6088                intent = intent.getSelector();
6089                comp = intent.getComponent();
6090            }
6091        }
6092        if (comp != null) {
6093            List<ResolveInfo> list = new ArrayList<ResolveInfo>(1);
6094            ActivityInfo ai = getReceiverInfo(comp, flags, userId);
6095            if (ai != null) {
6096                ResolveInfo ri = new ResolveInfo();
6097                ri.activityInfo = ai;
6098                list.add(ri);
6099            }
6100            return list;
6101        }
6102
6103        // reader
6104        synchronized (mPackages) {
6105            String pkgName = intent.getPackage();
6106            if (pkgName == null) {
6107                return mReceivers.queryIntent(intent, resolvedType, flags, userId);
6108            }
6109            final PackageParser.Package pkg = mPackages.get(pkgName);
6110            if (pkg != null) {
6111                return mReceivers.queryIntentForPackage(intent, resolvedType, flags, pkg.receivers,
6112                        userId);
6113            }
6114            return Collections.emptyList();
6115        }
6116    }
6117
6118    @Override
6119    public ResolveInfo resolveService(Intent intent, String resolvedType, int flags, int userId) {
6120        if (!sUserManager.exists(userId)) return null;
6121        flags = updateFlagsForResolve(flags, userId, intent);
6122        List<ResolveInfo> query = queryIntentServicesInternal(intent, resolvedType, flags, userId);
6123        if (query != null) {
6124            if (query.size() >= 1) {
6125                // If there is more than one service with the same priority,
6126                // just arbitrarily pick the first one.
6127                return query.get(0);
6128            }
6129        }
6130        return null;
6131    }
6132
6133    @Override
6134    public @NonNull ParceledListSlice<ResolveInfo> queryIntentServices(Intent intent,
6135            String resolvedType, int flags, int userId) {
6136        return new ParceledListSlice<>(
6137                queryIntentServicesInternal(intent, resolvedType, flags, userId));
6138    }
6139
6140    private @NonNull List<ResolveInfo> queryIntentServicesInternal(Intent intent,
6141            String resolvedType, int flags, int userId) {
6142        if (!sUserManager.exists(userId)) return Collections.emptyList();
6143        flags = updateFlagsForResolve(flags, userId, intent);
6144        ComponentName comp = intent.getComponent();
6145        if (comp == null) {
6146            if (intent.getSelector() != null) {
6147                intent = intent.getSelector();
6148                comp = intent.getComponent();
6149            }
6150        }
6151        if (comp != null) {
6152            final List<ResolveInfo> list = new ArrayList<ResolveInfo>(1);
6153            final ServiceInfo si = getServiceInfo(comp, flags, userId);
6154            if (si != null) {
6155                final ResolveInfo ri = new ResolveInfo();
6156                ri.serviceInfo = si;
6157                list.add(ri);
6158            }
6159            return list;
6160        }
6161
6162        // reader
6163        synchronized (mPackages) {
6164            String pkgName = intent.getPackage();
6165            if (pkgName == null) {
6166                return mServices.queryIntent(intent, resolvedType, flags, userId);
6167            }
6168            final PackageParser.Package pkg = mPackages.get(pkgName);
6169            if (pkg != null) {
6170                return mServices.queryIntentForPackage(intent, resolvedType, flags, pkg.services,
6171                        userId);
6172            }
6173            return Collections.emptyList();
6174        }
6175    }
6176
6177    @Override
6178    public @NonNull ParceledListSlice<ResolveInfo> queryIntentContentProviders(Intent intent,
6179            String resolvedType, int flags, int userId) {
6180        return new ParceledListSlice<>(
6181                queryIntentContentProvidersInternal(intent, resolvedType, flags, userId));
6182    }
6183
6184    private @NonNull List<ResolveInfo> queryIntentContentProvidersInternal(
6185            Intent intent, String resolvedType, int flags, int userId) {
6186        if (!sUserManager.exists(userId)) return Collections.emptyList();
6187        flags = updateFlagsForResolve(flags, userId, intent);
6188        ComponentName comp = intent.getComponent();
6189        if (comp == null) {
6190            if (intent.getSelector() != null) {
6191                intent = intent.getSelector();
6192                comp = intent.getComponent();
6193            }
6194        }
6195        if (comp != null) {
6196            final List<ResolveInfo> list = new ArrayList<ResolveInfo>(1);
6197            final ProviderInfo pi = getProviderInfo(comp, flags, userId);
6198            if (pi != null) {
6199                final ResolveInfo ri = new ResolveInfo();
6200                ri.providerInfo = pi;
6201                list.add(ri);
6202            }
6203            return list;
6204        }
6205
6206        // reader
6207        synchronized (mPackages) {
6208            String pkgName = intent.getPackage();
6209            if (pkgName == null) {
6210                return mProviders.queryIntent(intent, resolvedType, flags, userId);
6211            }
6212            final PackageParser.Package pkg = mPackages.get(pkgName);
6213            if (pkg != null) {
6214                return mProviders.queryIntentForPackage(
6215                        intent, resolvedType, flags, pkg.providers, userId);
6216            }
6217            return Collections.emptyList();
6218        }
6219    }
6220
6221    @Override
6222    public ParceledListSlice<PackageInfo> getInstalledPackages(int flags, int userId) {
6223        if (!sUserManager.exists(userId)) return ParceledListSlice.emptyList();
6224        flags = updateFlagsForPackage(flags, userId, null);
6225        final boolean listUninstalled = (flags & MATCH_UNINSTALLED_PACKAGES) != 0;
6226        enforceCrossUserPermission(Binder.getCallingUid(), userId,
6227                true /* requireFullPermission */, false /* checkShell */,
6228                "get installed packages");
6229
6230        // writer
6231        synchronized (mPackages) {
6232            ArrayList<PackageInfo> list;
6233            if (listUninstalled) {
6234                list = new ArrayList<PackageInfo>(mSettings.mPackages.size());
6235                for (PackageSetting ps : mSettings.mPackages.values()) {
6236                    final PackageInfo pi;
6237                    if (ps.pkg != null) {
6238                        pi = generatePackageInfo(ps, flags, userId);
6239                    } else {
6240                        pi = generatePackageInfo(ps, flags, userId);
6241                    }
6242                    if (pi != null) {
6243                        list.add(pi);
6244                    }
6245                }
6246            } else {
6247                list = new ArrayList<PackageInfo>(mPackages.size());
6248                for (PackageParser.Package p : mPackages.values()) {
6249                    final PackageInfo pi =
6250                            generatePackageInfo((PackageSetting)p.mExtras, flags, userId);
6251                    if (pi != null) {
6252                        list.add(pi);
6253                    }
6254                }
6255            }
6256
6257            return new ParceledListSlice<PackageInfo>(list);
6258        }
6259    }
6260
6261    private void addPackageHoldingPermissions(ArrayList<PackageInfo> list, PackageSetting ps,
6262            String[] permissions, boolean[] tmp, int flags, int userId) {
6263        int numMatch = 0;
6264        final PermissionsState permissionsState = ps.getPermissionsState();
6265        for (int i=0; i<permissions.length; i++) {
6266            final String permission = permissions[i];
6267            if (permissionsState.hasPermission(permission, userId)) {
6268                tmp[i] = true;
6269                numMatch++;
6270            } else {
6271                tmp[i] = false;
6272            }
6273        }
6274        if (numMatch == 0) {
6275            return;
6276        }
6277        final PackageInfo pi;
6278        if (ps.pkg != null) {
6279            pi = generatePackageInfo(ps, flags, userId);
6280        } else {
6281            pi = generatePackageInfo(ps, flags, userId);
6282        }
6283        // The above might return null in cases of uninstalled apps or install-state
6284        // skew across users/profiles.
6285        if (pi != null) {
6286            if ((flags&PackageManager.GET_PERMISSIONS) == 0) {
6287                if (numMatch == permissions.length) {
6288                    pi.requestedPermissions = permissions;
6289                } else {
6290                    pi.requestedPermissions = new String[numMatch];
6291                    numMatch = 0;
6292                    for (int i=0; i<permissions.length; i++) {
6293                        if (tmp[i]) {
6294                            pi.requestedPermissions[numMatch] = permissions[i];
6295                            numMatch++;
6296                        }
6297                    }
6298                }
6299            }
6300            list.add(pi);
6301        }
6302    }
6303
6304    @Override
6305    public ParceledListSlice<PackageInfo> getPackagesHoldingPermissions(
6306            String[] permissions, int flags, int userId) {
6307        if (!sUserManager.exists(userId)) return ParceledListSlice.emptyList();
6308        flags = updateFlagsForPackage(flags, userId, permissions);
6309        final boolean listUninstalled = (flags & MATCH_UNINSTALLED_PACKAGES) != 0;
6310
6311        // writer
6312        synchronized (mPackages) {
6313            ArrayList<PackageInfo> list = new ArrayList<PackageInfo>();
6314            boolean[] tmpBools = new boolean[permissions.length];
6315            if (listUninstalled) {
6316                for (PackageSetting ps : mSettings.mPackages.values()) {
6317                    addPackageHoldingPermissions(list, ps, permissions, tmpBools, flags, userId);
6318                }
6319            } else {
6320                for (PackageParser.Package pkg : mPackages.values()) {
6321                    PackageSetting ps = (PackageSetting)pkg.mExtras;
6322                    if (ps != null) {
6323                        addPackageHoldingPermissions(list, ps, permissions, tmpBools, flags,
6324                                userId);
6325                    }
6326                }
6327            }
6328
6329            return new ParceledListSlice<PackageInfo>(list);
6330        }
6331    }
6332
6333    @Override
6334    public ParceledListSlice<ApplicationInfo> getInstalledApplications(int flags, int userId) {
6335        if (!sUserManager.exists(userId)) return ParceledListSlice.emptyList();
6336        flags = updateFlagsForApplication(flags, userId, null);
6337        final boolean listUninstalled = (flags & MATCH_UNINSTALLED_PACKAGES) != 0;
6338
6339        // writer
6340        synchronized (mPackages) {
6341            ArrayList<ApplicationInfo> list;
6342            if (listUninstalled) {
6343                list = new ArrayList<ApplicationInfo>(mSettings.mPackages.size());
6344                for (PackageSetting ps : mSettings.mPackages.values()) {
6345                    ApplicationInfo ai;
6346                    if (ps.pkg != null) {
6347                        ai = PackageParser.generateApplicationInfo(ps.pkg, flags,
6348                                ps.readUserState(userId), userId);
6349                    } else {
6350                        ai = generateApplicationInfoFromSettingsLPw(ps.name, flags, userId);
6351                    }
6352                    if (ai != null) {
6353                        list.add(ai);
6354                    }
6355                }
6356            } else {
6357                list = new ArrayList<ApplicationInfo>(mPackages.size());
6358                for (PackageParser.Package p : mPackages.values()) {
6359                    if (p.mExtras != null) {
6360                        ApplicationInfo ai = PackageParser.generateApplicationInfo(p, flags,
6361                                ((PackageSetting)p.mExtras).readUserState(userId), userId);
6362                        if (ai != null) {
6363                            list.add(ai);
6364                        }
6365                    }
6366                }
6367            }
6368
6369            return new ParceledListSlice<ApplicationInfo>(list);
6370        }
6371    }
6372
6373    @Override
6374    public ParceledListSlice<EphemeralApplicationInfo> getEphemeralApplications(int userId) {
6375        if (DISABLE_EPHEMERAL_APPS) {
6376            return null;
6377        }
6378
6379        mContext.enforceCallingOrSelfPermission(Manifest.permission.ACCESS_EPHEMERAL_APPS,
6380                "getEphemeralApplications");
6381        enforceCrossUserPermission(Binder.getCallingUid(), userId,
6382                true /* requireFullPermission */, false /* checkShell */,
6383                "getEphemeralApplications");
6384        synchronized (mPackages) {
6385            List<EphemeralApplicationInfo> ephemeralApps = mEphemeralApplicationRegistry
6386                    .getEphemeralApplicationsLPw(userId);
6387            if (ephemeralApps != null) {
6388                return new ParceledListSlice<>(ephemeralApps);
6389            }
6390        }
6391        return null;
6392    }
6393
6394    @Override
6395    public boolean isEphemeralApplication(String packageName, int userId) {
6396        enforceCrossUserPermission(Binder.getCallingUid(), userId,
6397                true /* requireFullPermission */, false /* checkShell */,
6398                "isEphemeral");
6399        if (DISABLE_EPHEMERAL_APPS) {
6400            return false;
6401        }
6402
6403        if (!isCallerSameApp(packageName)) {
6404            return false;
6405        }
6406        synchronized (mPackages) {
6407            PackageParser.Package pkg = mPackages.get(packageName);
6408            if (pkg != null) {
6409                return pkg.applicationInfo.isEphemeralApp();
6410            }
6411        }
6412        return false;
6413    }
6414
6415    @Override
6416    public byte[] getEphemeralApplicationCookie(String packageName, int userId) {
6417        if (DISABLE_EPHEMERAL_APPS) {
6418            return null;
6419        }
6420
6421        enforceCrossUserPermission(Binder.getCallingUid(), userId,
6422                true /* requireFullPermission */, false /* checkShell */,
6423                "getCookie");
6424        if (!isCallerSameApp(packageName)) {
6425            return null;
6426        }
6427        synchronized (mPackages) {
6428            return mEphemeralApplicationRegistry.getEphemeralApplicationCookieLPw(
6429                    packageName, userId);
6430        }
6431    }
6432
6433    @Override
6434    public boolean setEphemeralApplicationCookie(String packageName, byte[] cookie, int userId) {
6435        if (DISABLE_EPHEMERAL_APPS) {
6436            return true;
6437        }
6438
6439        enforceCrossUserPermission(Binder.getCallingUid(), userId,
6440                true /* requireFullPermission */, true /* checkShell */,
6441                "setCookie");
6442        if (!isCallerSameApp(packageName)) {
6443            return false;
6444        }
6445        synchronized (mPackages) {
6446            return mEphemeralApplicationRegistry.setEphemeralApplicationCookieLPw(
6447                    packageName, cookie, userId);
6448        }
6449    }
6450
6451    @Override
6452    public Bitmap getEphemeralApplicationIcon(String packageName, int userId) {
6453        if (DISABLE_EPHEMERAL_APPS) {
6454            return null;
6455        }
6456
6457        mContext.enforceCallingOrSelfPermission(Manifest.permission.ACCESS_EPHEMERAL_APPS,
6458                "getEphemeralApplicationIcon");
6459        enforceCrossUserPermission(Binder.getCallingUid(), userId,
6460                true /* requireFullPermission */, false /* checkShell */,
6461                "getEphemeralApplicationIcon");
6462        synchronized (mPackages) {
6463            return mEphemeralApplicationRegistry.getEphemeralApplicationIconLPw(
6464                    packageName, userId);
6465        }
6466    }
6467
6468    private boolean isCallerSameApp(String packageName) {
6469        PackageParser.Package pkg = mPackages.get(packageName);
6470        return pkg != null
6471                && UserHandle.getAppId(Binder.getCallingUid()) == pkg.applicationInfo.uid;
6472    }
6473
6474    @Override
6475    public @NonNull ParceledListSlice<ApplicationInfo> getPersistentApplications(int flags) {
6476        return new ParceledListSlice<>(getPersistentApplicationsInternal(flags));
6477    }
6478
6479    private @NonNull List<ApplicationInfo> getPersistentApplicationsInternal(int flags) {
6480        final ArrayList<ApplicationInfo> finalList = new ArrayList<ApplicationInfo>();
6481
6482        // reader
6483        synchronized (mPackages) {
6484            final Iterator<PackageParser.Package> i = mPackages.values().iterator();
6485            final int userId = UserHandle.getCallingUserId();
6486            while (i.hasNext()) {
6487                final PackageParser.Package p = i.next();
6488                if (p.applicationInfo == null) continue;
6489
6490                final boolean matchesUnaware = ((flags & MATCH_DIRECT_BOOT_UNAWARE) != 0)
6491                        && !p.applicationInfo.isDirectBootAware();
6492                final boolean matchesAware = ((flags & MATCH_DIRECT_BOOT_AWARE) != 0)
6493                        && p.applicationInfo.isDirectBootAware();
6494
6495                if ((p.applicationInfo.flags & ApplicationInfo.FLAG_PERSISTENT) != 0
6496                        && (!mSafeMode || isSystemApp(p))
6497                        && (matchesUnaware || matchesAware)) {
6498                    PackageSetting ps = mSettings.mPackages.get(p.packageName);
6499                    if (ps != null) {
6500                        ApplicationInfo ai = PackageParser.generateApplicationInfo(p, flags,
6501                                ps.readUserState(userId), userId);
6502                        if (ai != null) {
6503                            finalList.add(ai);
6504                        }
6505                    }
6506                }
6507            }
6508        }
6509
6510        return finalList;
6511    }
6512
6513    @Override
6514    public ProviderInfo resolveContentProvider(String name, int flags, int userId) {
6515        if (!sUserManager.exists(userId)) return null;
6516        flags = updateFlagsForComponent(flags, userId, name);
6517        // reader
6518        synchronized (mPackages) {
6519            final PackageParser.Provider provider = mProvidersByAuthority.get(name);
6520            PackageSetting ps = provider != null
6521                    ? mSettings.mPackages.get(provider.owner.packageName)
6522                    : null;
6523            return ps != null
6524                    && mSettings.isEnabledAndMatchLPr(provider.info, flags, userId)
6525                    ? PackageParser.generateProviderInfo(provider, flags,
6526                            ps.readUserState(userId), userId)
6527                    : null;
6528        }
6529    }
6530
6531    /**
6532     * @deprecated
6533     */
6534    @Deprecated
6535    public void querySyncProviders(List<String> outNames, List<ProviderInfo> outInfo) {
6536        // reader
6537        synchronized (mPackages) {
6538            final Iterator<Map.Entry<String, PackageParser.Provider>> i = mProvidersByAuthority
6539                    .entrySet().iterator();
6540            final int userId = UserHandle.getCallingUserId();
6541            while (i.hasNext()) {
6542                Map.Entry<String, PackageParser.Provider> entry = i.next();
6543                PackageParser.Provider p = entry.getValue();
6544                PackageSetting ps = mSettings.mPackages.get(p.owner.packageName);
6545
6546                if (ps != null && p.syncable
6547                        && (!mSafeMode || (p.info.applicationInfo.flags
6548                                &ApplicationInfo.FLAG_SYSTEM) != 0)) {
6549                    ProviderInfo info = PackageParser.generateProviderInfo(p, 0,
6550                            ps.readUserState(userId), userId);
6551                    if (info != null) {
6552                        outNames.add(entry.getKey());
6553                        outInfo.add(info);
6554                    }
6555                }
6556            }
6557        }
6558    }
6559
6560    @Override
6561    public @NonNull ParceledListSlice<ProviderInfo> queryContentProviders(String processName,
6562            int uid, int flags) {
6563        final int userId = processName != null ? UserHandle.getUserId(uid)
6564                : UserHandle.getCallingUserId();
6565        if (!sUserManager.exists(userId)) return ParceledListSlice.emptyList();
6566        flags = updateFlagsForComponent(flags, userId, processName);
6567
6568        ArrayList<ProviderInfo> finalList = null;
6569        // reader
6570        synchronized (mPackages) {
6571            final Iterator<PackageParser.Provider> i = mProviders.mProviders.values().iterator();
6572            while (i.hasNext()) {
6573                final PackageParser.Provider p = i.next();
6574                PackageSetting ps = mSettings.mPackages.get(p.owner.packageName);
6575                if (ps != null && p.info.authority != null
6576                        && (processName == null
6577                                || (p.info.processName.equals(processName)
6578                                        && UserHandle.isSameApp(p.info.applicationInfo.uid, uid)))
6579                        && mSettings.isEnabledAndMatchLPr(p.info, flags, userId)) {
6580                    if (finalList == null) {
6581                        finalList = new ArrayList<ProviderInfo>(3);
6582                    }
6583                    ProviderInfo info = PackageParser.generateProviderInfo(p, flags,
6584                            ps.readUserState(userId), userId);
6585                    if (info != null) {
6586                        finalList.add(info);
6587                    }
6588                }
6589            }
6590        }
6591
6592        if (finalList != null) {
6593            Collections.sort(finalList, mProviderInitOrderSorter);
6594            return new ParceledListSlice<ProviderInfo>(finalList);
6595        }
6596
6597        return ParceledListSlice.emptyList();
6598    }
6599
6600    @Override
6601    public InstrumentationInfo getInstrumentationInfo(ComponentName name, int flags) {
6602        // reader
6603        synchronized (mPackages) {
6604            final PackageParser.Instrumentation i = mInstrumentation.get(name);
6605            return PackageParser.generateInstrumentationInfo(i, flags);
6606        }
6607    }
6608
6609    @Override
6610    public @NonNull ParceledListSlice<InstrumentationInfo> queryInstrumentation(
6611            String targetPackage, int flags) {
6612        return new ParceledListSlice<>(queryInstrumentationInternal(targetPackage, flags));
6613    }
6614
6615    private @NonNull List<InstrumentationInfo> queryInstrumentationInternal(String targetPackage,
6616            int flags) {
6617        ArrayList<InstrumentationInfo> finalList = new ArrayList<InstrumentationInfo>();
6618
6619        // reader
6620        synchronized (mPackages) {
6621            final Iterator<PackageParser.Instrumentation> i = mInstrumentation.values().iterator();
6622            while (i.hasNext()) {
6623                final PackageParser.Instrumentation p = i.next();
6624                if (targetPackage == null
6625                        || targetPackage.equals(p.info.targetPackage)) {
6626                    InstrumentationInfo ii = PackageParser.generateInstrumentationInfo(p,
6627                            flags);
6628                    if (ii != null) {
6629                        finalList.add(ii);
6630                    }
6631                }
6632            }
6633        }
6634
6635        return finalList;
6636    }
6637
6638    private void createIdmapsForPackageLI(PackageParser.Package pkg) {
6639        ArrayMap<String, PackageParser.Package> overlays = mOverlays.get(pkg.packageName);
6640        if (overlays == null) {
6641            Slog.w(TAG, "Unable to create idmap for " + pkg.packageName + ": no overlay packages");
6642            return;
6643        }
6644        for (PackageParser.Package opkg : overlays.values()) {
6645            // Not much to do if idmap fails: we already logged the error
6646            // and we certainly don't want to abort installation of pkg simply
6647            // because an overlay didn't fit properly. For these reasons,
6648            // ignore the return value of createIdmapForPackagePairLI.
6649            createIdmapForPackagePairLI(pkg, opkg);
6650        }
6651    }
6652
6653    private boolean createIdmapForPackagePairLI(PackageParser.Package pkg,
6654            PackageParser.Package opkg) {
6655        if (!opkg.mTrustedOverlay) {
6656            Slog.w(TAG, "Skipping target and overlay pair " + pkg.baseCodePath + " and " +
6657                    opkg.baseCodePath + ": overlay not trusted");
6658            return false;
6659        }
6660        ArrayMap<String, PackageParser.Package> overlaySet = mOverlays.get(pkg.packageName);
6661        if (overlaySet == null) {
6662            Slog.e(TAG, "was about to create idmap for " + pkg.baseCodePath + " and " +
6663                    opkg.baseCodePath + " but target package has no known overlays");
6664            return false;
6665        }
6666        final int sharedGid = UserHandle.getSharedAppGid(pkg.applicationInfo.uid);
6667        // TODO: generate idmap for split APKs
6668        try {
6669            mInstaller.idmap(pkg.baseCodePath, opkg.baseCodePath, sharedGid);
6670        } catch (InstallerException e) {
6671            Slog.e(TAG, "Failed to generate idmap for " + pkg.baseCodePath + " and "
6672                    + opkg.baseCodePath);
6673            return false;
6674        }
6675        PackageParser.Package[] overlayArray =
6676            overlaySet.values().toArray(new PackageParser.Package[0]);
6677        Comparator<PackageParser.Package> cmp = new Comparator<PackageParser.Package>() {
6678            public int compare(PackageParser.Package p1, PackageParser.Package p2) {
6679                return p1.mOverlayPriority - p2.mOverlayPriority;
6680            }
6681        };
6682        Arrays.sort(overlayArray, cmp);
6683
6684        pkg.applicationInfo.resourceDirs = new String[overlayArray.length];
6685        int i = 0;
6686        for (PackageParser.Package p : overlayArray) {
6687            pkg.applicationInfo.resourceDirs[i++] = p.baseCodePath;
6688        }
6689        return true;
6690    }
6691
6692    private void scanDirTracedLI(File dir, final int parseFlags, int scanFlags, long currentTime) {
6693        Trace.traceBegin(TRACE_TAG_PACKAGE_MANAGER, "scanDir");
6694        try {
6695            scanDirLI(dir, parseFlags, scanFlags, currentTime);
6696        } finally {
6697            Trace.traceEnd(TRACE_TAG_PACKAGE_MANAGER);
6698        }
6699    }
6700
6701    private void scanDirLI(File dir, final int parseFlags, int scanFlags, long currentTime) {
6702        final File[] files = dir.listFiles();
6703        if (ArrayUtils.isEmpty(files)) {
6704            Log.d(TAG, "No files in app dir " + dir);
6705            return;
6706        }
6707
6708        if (DEBUG_PACKAGE_SCANNING) {
6709            Log.d(TAG, "Scanning app dir " + dir + " scanFlags=" + scanFlags
6710                    + " flags=0x" + Integer.toHexString(parseFlags));
6711        }
6712
6713        for (File file : files) {
6714            final boolean isPackage = (isApkFile(file) || file.isDirectory())
6715                    && !PackageInstallerService.isStageName(file.getName());
6716            if (!isPackage) {
6717                // Ignore entries which are not packages
6718                continue;
6719            }
6720            try {
6721                scanPackageTracedLI(file, parseFlags | PackageParser.PARSE_MUST_BE_APK,
6722                        scanFlags, currentTime, null);
6723            } catch (PackageManagerException e) {
6724                Slog.w(TAG, "Failed to parse " + file + ": " + e.getMessage());
6725
6726                // Delete invalid userdata apps
6727                if ((parseFlags & PackageParser.PARSE_IS_SYSTEM) == 0 &&
6728                        e.error == PackageManager.INSTALL_FAILED_INVALID_APK) {
6729                    logCriticalInfo(Log.WARN, "Deleting invalid package at " + file);
6730                    removeCodePathLI(file);
6731                }
6732            }
6733        }
6734    }
6735
6736    private static File getSettingsProblemFile() {
6737        File dataDir = Environment.getDataDirectory();
6738        File systemDir = new File(dataDir, "system");
6739        File fname = new File(systemDir, "uiderrors.txt");
6740        return fname;
6741    }
6742
6743    static void reportSettingsProblem(int priority, String msg) {
6744        logCriticalInfo(priority, msg);
6745    }
6746
6747    static void logCriticalInfo(int priority, String msg) {
6748        Slog.println(priority, TAG, msg);
6749        EventLogTags.writePmCriticalInfo(msg);
6750        try {
6751            File fname = getSettingsProblemFile();
6752            FileOutputStream out = new FileOutputStream(fname, true);
6753            PrintWriter pw = new FastPrintWriter(out);
6754            SimpleDateFormat formatter = new SimpleDateFormat();
6755            String dateString = formatter.format(new Date(System.currentTimeMillis()));
6756            pw.println(dateString + ": " + msg);
6757            pw.close();
6758            FileUtils.setPermissions(
6759                    fname.toString(),
6760                    FileUtils.S_IRWXU|FileUtils.S_IRWXG|FileUtils.S_IROTH,
6761                    -1, -1);
6762        } catch (java.io.IOException e) {
6763        }
6764    }
6765
6766    private void collectCertificatesLI(PackageSetting ps, PackageParser.Package pkg, File srcFile,
6767            final int policyFlags) throws PackageManagerException {
6768        if (ps != null
6769                && ps.codePath.equals(srcFile)
6770                && ps.timeStamp == srcFile.lastModified()
6771                && !isCompatSignatureUpdateNeeded(pkg)
6772                && !isRecoverSignatureUpdateNeeded(pkg)) {
6773            long mSigningKeySetId = ps.keySetData.getProperSigningKeySet();
6774            KeySetManagerService ksms = mSettings.mKeySetManagerService;
6775            ArraySet<PublicKey> signingKs;
6776            synchronized (mPackages) {
6777                signingKs = ksms.getPublicKeysFromKeySetLPr(mSigningKeySetId);
6778            }
6779            if (ps.signatures.mSignatures != null
6780                    && ps.signatures.mSignatures.length != 0
6781                    && signingKs != null) {
6782                // Optimization: reuse the existing cached certificates
6783                // if the package appears to be unchanged.
6784                pkg.mSignatures = ps.signatures.mSignatures;
6785                pkg.mSigningKeys = signingKs;
6786                return;
6787            }
6788
6789            Slog.w(TAG, "PackageSetting for " + ps.name
6790                    + " is missing signatures.  Collecting certs again to recover them.");
6791        } else {
6792            Log.i(TAG, srcFile.toString() + " changed; collecting certs");
6793        }
6794
6795        try {
6796            PackageParser.collectCertificates(pkg, policyFlags);
6797        } catch (PackageParserException e) {
6798            throw PackageManagerException.from(e);
6799        }
6800    }
6801
6802    /**
6803     *  Traces a package scan.
6804     *  @see #scanPackageLI(File, int, int, long, UserHandle)
6805     */
6806    private PackageParser.Package scanPackageTracedLI(File scanFile, final int parseFlags,
6807            int scanFlags, long currentTime, UserHandle user) throws PackageManagerException {
6808        Trace.traceBegin(TRACE_TAG_PACKAGE_MANAGER, "scanPackage");
6809        try {
6810            return scanPackageLI(scanFile, parseFlags, scanFlags, currentTime, user);
6811        } finally {
6812            Trace.traceEnd(TRACE_TAG_PACKAGE_MANAGER);
6813        }
6814    }
6815
6816    /**
6817     *  Scans a package and returns the newly parsed package.
6818     *  Returns {@code null} in case of errors and the error code is stored in mLastScanError
6819     */
6820    private PackageParser.Package scanPackageLI(File scanFile, int parseFlags, int scanFlags,
6821            long currentTime, UserHandle user) throws PackageManagerException {
6822        if (DEBUG_INSTALL) Slog.d(TAG, "Parsing: " + scanFile);
6823        PackageParser pp = new PackageParser();
6824        pp.setSeparateProcesses(mSeparateProcesses);
6825        pp.setOnlyCoreApps(mOnlyCore);
6826        pp.setDisplayMetrics(mMetrics);
6827
6828        if ((scanFlags & SCAN_TRUSTED_OVERLAY) != 0) {
6829            parseFlags |= PackageParser.PARSE_TRUSTED_OVERLAY;
6830        }
6831
6832        Trace.traceBegin(TRACE_TAG_PACKAGE_MANAGER, "parsePackage");
6833        final PackageParser.Package pkg;
6834        try {
6835            pkg = pp.parsePackage(scanFile, parseFlags);
6836        } catch (PackageParserException e) {
6837            throw PackageManagerException.from(e);
6838        } finally {
6839            Trace.traceEnd(TRACE_TAG_PACKAGE_MANAGER);
6840        }
6841
6842        return scanPackageLI(pkg, scanFile, parseFlags, scanFlags, currentTime, user);
6843    }
6844
6845    /**
6846     *  Scans a package and returns the newly parsed package.
6847     *  @throws PackageManagerException on a parse error.
6848     */
6849    private PackageParser.Package scanPackageLI(PackageParser.Package pkg, File scanFile,
6850            final int policyFlags, int scanFlags, long currentTime, UserHandle user)
6851            throws PackageManagerException {
6852        // If the package has children and this is the first dive in the function
6853        // we scan the package with the SCAN_CHECK_ONLY flag set to see whether all
6854        // packages (parent and children) would be successfully scanned before the
6855        // actual scan since scanning mutates internal state and we want to atomically
6856        // install the package and its children.
6857        if ((scanFlags & SCAN_CHECK_ONLY) == 0) {
6858            if (pkg.childPackages != null && pkg.childPackages.size() > 0) {
6859                scanFlags |= SCAN_CHECK_ONLY;
6860            }
6861        } else {
6862            scanFlags &= ~SCAN_CHECK_ONLY;
6863        }
6864
6865        // Scan the parent
6866        PackageParser.Package scannedPkg = scanPackageInternalLI(pkg, scanFile, policyFlags,
6867                scanFlags, currentTime, user);
6868
6869        // Scan the children
6870        final int childCount = (pkg.childPackages != null) ? pkg.childPackages.size() : 0;
6871        for (int i = 0; i < childCount; i++) {
6872            PackageParser.Package childPackage = pkg.childPackages.get(i);
6873            scanPackageInternalLI(childPackage, scanFile, policyFlags, scanFlags,
6874                    currentTime, user);
6875        }
6876
6877
6878        if ((scanFlags & SCAN_CHECK_ONLY) != 0) {
6879            return scanPackageLI(pkg, scanFile, policyFlags, scanFlags, currentTime, user);
6880        }
6881
6882        return scannedPkg;
6883    }
6884
6885    /**
6886     *  Scans a package and returns the newly parsed package.
6887     *  @throws PackageManagerException on a parse error.
6888     */
6889    private PackageParser.Package scanPackageInternalLI(PackageParser.Package pkg, File scanFile,
6890            int policyFlags, int scanFlags, long currentTime, UserHandle user)
6891            throws PackageManagerException {
6892        PackageSetting ps = null;
6893        PackageSetting updatedPkg;
6894        // reader
6895        synchronized (mPackages) {
6896            // Look to see if we already know about this package.
6897            String oldName = mSettings.mRenamedPackages.get(pkg.packageName);
6898            if (pkg.mOriginalPackages != null && pkg.mOriginalPackages.contains(oldName)) {
6899                // This package has been renamed to its original name.  Let's
6900                // use that.
6901                ps = mSettings.peekPackageLPr(oldName);
6902            }
6903            // If there was no original package, see one for the real package name.
6904            if (ps == null) {
6905                ps = mSettings.peekPackageLPr(pkg.packageName);
6906            }
6907            // Check to see if this package could be hiding/updating a system
6908            // package.  Must look for it either under the original or real
6909            // package name depending on our state.
6910            updatedPkg = mSettings.getDisabledSystemPkgLPr(ps != null ? ps.name : pkg.packageName);
6911            if (DEBUG_INSTALL && updatedPkg != null) Slog.d(TAG, "updatedPkg = " + updatedPkg);
6912
6913            // If this is a package we don't know about on the system partition, we
6914            // may need to remove disabled child packages on the system partition
6915            // or may need to not add child packages if the parent apk is updated
6916            // on the data partition and no longer defines this child package.
6917            if ((policyFlags & PackageParser.PARSE_IS_SYSTEM) != 0) {
6918                // If this is a parent package for an updated system app and this system
6919                // app got an OTA update which no longer defines some of the child packages
6920                // we have to prune them from the disabled system packages.
6921                PackageSetting disabledPs = mSettings.getDisabledSystemPkgLPr(pkg.packageName);
6922                if (disabledPs != null) {
6923                    final int scannedChildCount = (pkg.childPackages != null)
6924                            ? pkg.childPackages.size() : 0;
6925                    final int disabledChildCount = disabledPs.childPackageNames != null
6926                            ? disabledPs.childPackageNames.size() : 0;
6927                    for (int i = 0; i < disabledChildCount; i++) {
6928                        String disabledChildPackageName = disabledPs.childPackageNames.get(i);
6929                        boolean disabledPackageAvailable = false;
6930                        for (int j = 0; j < scannedChildCount; j++) {
6931                            PackageParser.Package childPkg = pkg.childPackages.get(j);
6932                            if (childPkg.packageName.equals(disabledChildPackageName)) {
6933                                disabledPackageAvailable = true;
6934                                break;
6935                            }
6936                         }
6937                         if (!disabledPackageAvailable) {
6938                             mSettings.removeDisabledSystemPackageLPw(disabledChildPackageName);
6939                         }
6940                    }
6941                }
6942            }
6943        }
6944
6945        boolean updatedPkgBetter = false;
6946        // First check if this is a system package that may involve an update
6947        if (updatedPkg != null && (policyFlags & PackageParser.PARSE_IS_SYSTEM) != 0) {
6948            // If new package is not located in "/system/priv-app" (e.g. due to an OTA),
6949            // it needs to drop FLAG_PRIVILEGED.
6950            if (locationIsPrivileged(scanFile)) {
6951                updatedPkg.pkgPrivateFlags |= ApplicationInfo.PRIVATE_FLAG_PRIVILEGED;
6952            } else {
6953                updatedPkg.pkgPrivateFlags &= ~ApplicationInfo.PRIVATE_FLAG_PRIVILEGED;
6954            }
6955
6956            if (ps != null && !ps.codePath.equals(scanFile)) {
6957                // The path has changed from what was last scanned...  check the
6958                // version of the new path against what we have stored to determine
6959                // what to do.
6960                if (DEBUG_INSTALL) Slog.d(TAG, "Path changing from " + ps.codePath);
6961                if (pkg.mVersionCode <= ps.versionCode) {
6962                    // The system package has been updated and the code path does not match
6963                    // Ignore entry. Skip it.
6964                    if (DEBUG_INSTALL) Slog.i(TAG, "Package " + ps.name + " at " + scanFile
6965                            + " ignored: updated version " + ps.versionCode
6966                            + " better than this " + pkg.mVersionCode);
6967                    if (!updatedPkg.codePath.equals(scanFile)) {
6968                        Slog.w(PackageManagerService.TAG, "Code path for hidden system pkg "
6969                                + ps.name + " changing from " + updatedPkg.codePathString
6970                                + " to " + scanFile);
6971                        updatedPkg.codePath = scanFile;
6972                        updatedPkg.codePathString = scanFile.toString();
6973                        updatedPkg.resourcePath = scanFile;
6974                        updatedPkg.resourcePathString = scanFile.toString();
6975                    }
6976                    updatedPkg.pkg = pkg;
6977                    updatedPkg.versionCode = pkg.mVersionCode;
6978
6979                    // Update the disabled system child packages to point to the package too.
6980                    final int childCount = updatedPkg.childPackageNames != null
6981                            ? updatedPkg.childPackageNames.size() : 0;
6982                    for (int i = 0; i < childCount; i++) {
6983                        String childPackageName = updatedPkg.childPackageNames.get(i);
6984                        PackageSetting updatedChildPkg = mSettings.getDisabledSystemPkgLPr(
6985                                childPackageName);
6986                        if (updatedChildPkg != null) {
6987                            updatedChildPkg.pkg = pkg;
6988                            updatedChildPkg.versionCode = pkg.mVersionCode;
6989                        }
6990                    }
6991
6992                    throw new PackageManagerException(Log.WARN, "Package " + ps.name + " at "
6993                            + scanFile + " ignored: updated version " + ps.versionCode
6994                            + " better than this " + pkg.mVersionCode);
6995                } else {
6996                    // The current app on the system partition is better than
6997                    // what we have updated to on the data partition; switch
6998                    // back to the system partition version.
6999                    // At this point, its safely assumed that package installation for
7000                    // apps in system partition will go through. If not there won't be a working
7001                    // version of the app
7002                    // writer
7003                    synchronized (mPackages) {
7004                        // Just remove the loaded entries from package lists.
7005                        mPackages.remove(ps.name);
7006                    }
7007
7008                    logCriticalInfo(Log.WARN, "Package " + ps.name + " at " + scanFile
7009                            + " reverting from " + ps.codePathString
7010                            + ": new version " + pkg.mVersionCode
7011                            + " better than installed " + ps.versionCode);
7012
7013                    InstallArgs args = createInstallArgsForExisting(packageFlagsToInstallFlags(ps),
7014                            ps.codePathString, ps.resourcePathString, getAppDexInstructionSets(ps));
7015                    synchronized (mInstallLock) {
7016                        args.cleanUpResourcesLI();
7017                    }
7018                    synchronized (mPackages) {
7019                        mSettings.enableSystemPackageLPw(ps.name);
7020                    }
7021                    updatedPkgBetter = true;
7022                }
7023            }
7024        }
7025
7026        if (updatedPkg != null) {
7027            // An updated system app will not have the PARSE_IS_SYSTEM flag set
7028            // initially
7029            policyFlags |= PackageParser.PARSE_IS_SYSTEM;
7030
7031            // An updated privileged app will not have the PARSE_IS_PRIVILEGED
7032            // flag set initially
7033            if ((updatedPkg.pkgPrivateFlags & ApplicationInfo.PRIVATE_FLAG_PRIVILEGED) != 0) {
7034                policyFlags |= PackageParser.PARSE_IS_PRIVILEGED;
7035            }
7036        }
7037
7038        // Verify certificates against what was last scanned
7039        collectCertificatesLI(ps, pkg, scanFile, policyFlags);
7040
7041        /*
7042         * A new system app appeared, but we already had a non-system one of the
7043         * same name installed earlier.
7044         */
7045        boolean shouldHideSystemApp = false;
7046        if (updatedPkg == null && ps != null
7047                && (policyFlags & PackageParser.PARSE_IS_SYSTEM_DIR) != 0 && !isSystemApp(ps)) {
7048            /*
7049             * Check to make sure the signatures match first. If they don't,
7050             * wipe the installed application and its data.
7051             */
7052            if (compareSignatures(ps.signatures.mSignatures, pkg.mSignatures)
7053                    != PackageManager.SIGNATURE_MATCH) {
7054                logCriticalInfo(Log.WARN, "Package " + ps.name + " appeared on system, but"
7055                        + " signatures don't match existing userdata copy; removing");
7056                try (PackageFreezer freezer = freezePackage(pkg.packageName,
7057                        "scanPackageInternalLI")) {
7058                    deletePackageLIF(pkg.packageName, null, true, null, 0, null, false, null);
7059                }
7060                ps = null;
7061            } else {
7062                /*
7063                 * If the newly-added system app is an older version than the
7064                 * already installed version, hide it. It will be scanned later
7065                 * and re-added like an update.
7066                 */
7067                if (pkg.mVersionCode <= ps.versionCode) {
7068                    shouldHideSystemApp = true;
7069                    logCriticalInfo(Log.INFO, "Package " + ps.name + " appeared at " + scanFile
7070                            + " but new version " + pkg.mVersionCode + " better than installed "
7071                            + ps.versionCode + "; hiding system");
7072                } else {
7073                    /*
7074                     * The newly found system app is a newer version that the
7075                     * one previously installed. Simply remove the
7076                     * already-installed application and replace it with our own
7077                     * while keeping the application data.
7078                     */
7079                    logCriticalInfo(Log.WARN, "Package " + ps.name + " at " + scanFile
7080                            + " reverting from " + ps.codePathString + ": new version "
7081                            + pkg.mVersionCode + " better than installed " + ps.versionCode);
7082                    InstallArgs args = createInstallArgsForExisting(packageFlagsToInstallFlags(ps),
7083                            ps.codePathString, ps.resourcePathString, getAppDexInstructionSets(ps));
7084                    synchronized (mInstallLock) {
7085                        args.cleanUpResourcesLI();
7086                    }
7087                }
7088            }
7089        }
7090
7091        // The apk is forward locked (not public) if its code and resources
7092        // are kept in different files. (except for app in either system or
7093        // vendor path).
7094        // TODO grab this value from PackageSettings
7095        if ((policyFlags & PackageParser.PARSE_IS_SYSTEM_DIR) == 0) {
7096            if (ps != null && !ps.codePath.equals(ps.resourcePath)) {
7097                policyFlags |= PackageParser.PARSE_FORWARD_LOCK;
7098            }
7099        }
7100
7101        // TODO: extend to support forward-locked splits
7102        String resourcePath = null;
7103        String baseResourcePath = null;
7104        if ((policyFlags & PackageParser.PARSE_FORWARD_LOCK) != 0 && !updatedPkgBetter) {
7105            if (ps != null && ps.resourcePathString != null) {
7106                resourcePath = ps.resourcePathString;
7107                baseResourcePath = ps.resourcePathString;
7108            } else {
7109                // Should not happen at all. Just log an error.
7110                Slog.e(TAG, "Resource path not set for package " + pkg.packageName);
7111            }
7112        } else {
7113            resourcePath = pkg.codePath;
7114            baseResourcePath = pkg.baseCodePath;
7115        }
7116
7117        // Set application objects path explicitly.
7118        pkg.setApplicationVolumeUuid(pkg.volumeUuid);
7119        pkg.setApplicationInfoCodePath(pkg.codePath);
7120        pkg.setApplicationInfoBaseCodePath(pkg.baseCodePath);
7121        pkg.setApplicationInfoSplitCodePaths(pkg.splitCodePaths);
7122        pkg.setApplicationInfoResourcePath(resourcePath);
7123        pkg.setApplicationInfoBaseResourcePath(baseResourcePath);
7124        pkg.setApplicationInfoSplitResourcePaths(pkg.splitCodePaths);
7125
7126        // Note that we invoke the following method only if we are about to unpack an application
7127        PackageParser.Package scannedPkg = scanPackageLI(pkg, policyFlags, scanFlags
7128                | SCAN_UPDATE_SIGNATURE, currentTime, user);
7129
7130        /*
7131         * If the system app should be overridden by a previously installed
7132         * data, hide the system app now and let the /data/app scan pick it up
7133         * again.
7134         */
7135        if (shouldHideSystemApp) {
7136            synchronized (mPackages) {
7137                mSettings.disableSystemPackageLPw(pkg.packageName, true);
7138            }
7139        }
7140
7141        return scannedPkg;
7142    }
7143
7144    private static String fixProcessName(String defProcessName,
7145            String processName, int uid) {
7146        if (processName == null) {
7147            return defProcessName;
7148        }
7149        return processName;
7150    }
7151
7152    private void verifySignaturesLP(PackageSetting pkgSetting, PackageParser.Package pkg)
7153            throws PackageManagerException {
7154        if (pkgSetting.signatures.mSignatures != null) {
7155            // Already existing package. Make sure signatures match
7156            boolean match = compareSignatures(pkgSetting.signatures.mSignatures, pkg.mSignatures)
7157                    == PackageManager.SIGNATURE_MATCH;
7158            if (!match) {
7159                match = compareSignaturesCompat(pkgSetting.signatures, pkg)
7160                        == PackageManager.SIGNATURE_MATCH;
7161            }
7162            if (!match) {
7163                match = compareSignaturesRecover(pkgSetting.signatures, pkg)
7164                        == PackageManager.SIGNATURE_MATCH;
7165            }
7166            if (!match) {
7167                throw new PackageManagerException(INSTALL_FAILED_UPDATE_INCOMPATIBLE, "Package "
7168                        + pkg.packageName + " signatures do not match the "
7169                        + "previously installed version; ignoring!");
7170            }
7171        }
7172
7173        // Check for shared user signatures
7174        if (pkgSetting.sharedUser != null && pkgSetting.sharedUser.signatures.mSignatures != null) {
7175            // Already existing package. Make sure signatures match
7176            boolean match = compareSignatures(pkgSetting.sharedUser.signatures.mSignatures,
7177                    pkg.mSignatures) == PackageManager.SIGNATURE_MATCH;
7178            if (!match) {
7179                match = compareSignaturesCompat(pkgSetting.sharedUser.signatures, pkg)
7180                        == PackageManager.SIGNATURE_MATCH;
7181            }
7182            if (!match) {
7183                match = compareSignaturesRecover(pkgSetting.sharedUser.signatures, pkg)
7184                        == PackageManager.SIGNATURE_MATCH;
7185            }
7186            if (!match) {
7187                throw new PackageManagerException(INSTALL_FAILED_SHARED_USER_INCOMPATIBLE,
7188                        "Package " + pkg.packageName
7189                        + " has no signatures that match those in shared user "
7190                        + pkgSetting.sharedUser.name + "; ignoring!");
7191            }
7192        }
7193    }
7194
7195    /**
7196     * Enforces that only the system UID or root's UID can call a method exposed
7197     * via Binder.
7198     *
7199     * @param message used as message if SecurityException is thrown
7200     * @throws SecurityException if the caller is not system or root
7201     */
7202    private static final void enforceSystemOrRoot(String message) {
7203        final int uid = Binder.getCallingUid();
7204        if (uid != Process.SYSTEM_UID && uid != 0) {
7205            throw new SecurityException(message);
7206        }
7207    }
7208
7209    @Override
7210    public void performFstrimIfNeeded() {
7211        enforceSystemOrRoot("Only the system can request fstrim");
7212
7213        // Before everything else, see whether we need to fstrim.
7214        try {
7215            IMountService ms = PackageHelper.getMountService();
7216            if (ms != null) {
7217                final boolean isUpgrade = isUpgrade();
7218                boolean doTrim = isUpgrade;
7219                if (doTrim) {
7220                    Slog.w(TAG, "Running disk maintenance immediately due to system update");
7221                } else {
7222                    final long interval = android.provider.Settings.Global.getLong(
7223                            mContext.getContentResolver(),
7224                            android.provider.Settings.Global.FSTRIM_MANDATORY_INTERVAL,
7225                            DEFAULT_MANDATORY_FSTRIM_INTERVAL);
7226                    if (interval > 0) {
7227                        final long timeSinceLast = System.currentTimeMillis() - ms.lastMaintenance();
7228                        if (timeSinceLast > interval) {
7229                            doTrim = true;
7230                            Slog.w(TAG, "No disk maintenance in " + timeSinceLast
7231                                    + "; running immediately");
7232                        }
7233                    }
7234                }
7235                if (doTrim) {
7236                    if (!isFirstBoot()) {
7237                        try {
7238                            ActivityManagerNative.getDefault().showBootMessage(
7239                                    mContext.getResources().getString(
7240                                            R.string.android_upgrading_fstrim), true);
7241                        } catch (RemoteException e) {
7242                        }
7243                    }
7244                    ms.runMaintenance();
7245                }
7246            } else {
7247                Slog.e(TAG, "Mount service unavailable!");
7248            }
7249        } catch (RemoteException e) {
7250            // Can't happen; MountService is local
7251        }
7252    }
7253
7254    @Override
7255    public void updatePackagesIfNeeded() {
7256        enforceSystemOrRoot("Only the system can request package update");
7257
7258        // We need to re-extract after an OTA.
7259        boolean causeUpgrade = isUpgrade();
7260
7261        // First boot or factory reset.
7262        // Note: we also handle devices that are upgrading to N right now as if it is their
7263        //       first boot, as they do not have profile data.
7264        boolean causeFirstBoot = isFirstBoot() || mIsPreNUpgrade;
7265
7266        // We need to re-extract after a pruned cache, as AoT-ed files will be out of date.
7267        boolean causePrunedCache = VMRuntime.didPruneDalvikCache();
7268
7269        if (!causeUpgrade && !causeFirstBoot && !causePrunedCache) {
7270            return;
7271        }
7272
7273        List<PackageParser.Package> pkgs;
7274        synchronized (mPackages) {
7275            pkgs = PackageManagerServiceUtils.getPackagesForDexopt(mPackages.values(), this);
7276        }
7277
7278        final long startTime = System.nanoTime();
7279        final int[] stats = performDexOpt(pkgs, mIsPreNUpgrade /* showDialog */,
7280                    getCompilerFilterForReason(causeFirstBoot ? REASON_FIRST_BOOT : REASON_BOOT));
7281
7282        final int elapsedTimeSeconds =
7283                (int) TimeUnit.NANOSECONDS.toSeconds(System.nanoTime() - startTime);
7284
7285        MetricsLogger.histogram(mContext, "opt_dialog_num_dexopted", stats[0]);
7286        MetricsLogger.histogram(mContext, "opt_dialog_num_skipped", stats[1]);
7287        MetricsLogger.histogram(mContext, "opt_dialog_num_failed", stats[2]);
7288        MetricsLogger.histogram(mContext, "opt_dialog_num_total", getOptimizablePackages().size());
7289        MetricsLogger.histogram(mContext, "opt_dialog_time_s", elapsedTimeSeconds);
7290    }
7291
7292    /**
7293     * Performs dexopt on the set of packages in {@code packages} and returns an int array
7294     * containing statistics about the invocation. The array consists of three elements,
7295     * which are (in order) {@code numberOfPackagesOptimized}, {@code numberOfPackagesSkipped}
7296     * and {@code numberOfPackagesFailed}.
7297     */
7298    private int[] performDexOpt(List<PackageParser.Package> pkgs, boolean showDialog,
7299            String compilerFilter) {
7300
7301        int numberOfPackagesVisited = 0;
7302        int numberOfPackagesOptimized = 0;
7303        int numberOfPackagesSkipped = 0;
7304        int numberOfPackagesFailed = 0;
7305        final int numberOfPackagesToDexopt = pkgs.size();
7306
7307        for (PackageParser.Package pkg : pkgs) {
7308            numberOfPackagesVisited++;
7309
7310            if (!PackageDexOptimizer.canOptimizePackage(pkg)) {
7311                if (DEBUG_DEXOPT) {
7312                    Log.i(TAG, "Skipping update of of non-optimizable app " + pkg.packageName);
7313                }
7314                numberOfPackagesSkipped++;
7315                continue;
7316            }
7317
7318            if (DEBUG_DEXOPT) {
7319                Log.i(TAG, "Updating app " + numberOfPackagesVisited + " of " +
7320                        numberOfPackagesToDexopt + ": " + pkg.packageName);
7321            }
7322
7323            if (showDialog) {
7324                try {
7325                    ActivityManagerNative.getDefault().showBootMessage(
7326                            mContext.getResources().getString(R.string.android_upgrading_apk,
7327                                    numberOfPackagesVisited, numberOfPackagesToDexopt), true);
7328                } catch (RemoteException e) {
7329                }
7330            }
7331
7332            // checkProfiles is false to avoid merging profiles during boot which
7333            // might interfere with background compilation (b/28612421).
7334            // Unfortunately this will also means that "pm.dexopt.boot=speed-profile" will
7335            // behave differently than "pm.dexopt.bg-dexopt=speed-profile" but that's a
7336            // trade-off worth doing to save boot time work.
7337            int dexOptStatus = performDexOptTraced(pkg.packageName,
7338                    false /* checkProfiles */,
7339                    compilerFilter,
7340                    false /* force */);
7341            switch (dexOptStatus) {
7342                case PackageDexOptimizer.DEX_OPT_PERFORMED:
7343                    numberOfPackagesOptimized++;
7344                    break;
7345                case PackageDexOptimizer.DEX_OPT_SKIPPED:
7346                    numberOfPackagesSkipped++;
7347                    break;
7348                case PackageDexOptimizer.DEX_OPT_FAILED:
7349                    numberOfPackagesFailed++;
7350                    break;
7351                default:
7352                    Log.e(TAG, "Unexpected dexopt return code " + dexOptStatus);
7353                    break;
7354            }
7355        }
7356
7357        return new int[] { numberOfPackagesOptimized, numberOfPackagesSkipped,
7358                numberOfPackagesFailed };
7359    }
7360
7361    @Override
7362    public void notifyPackageUse(String packageName, int reason) {
7363        synchronized (mPackages) {
7364            PackageParser.Package p = mPackages.get(packageName);
7365            if (p == null) {
7366                return;
7367            }
7368            p.mLastPackageUsageTimeInMills[reason] = System.currentTimeMillis();
7369        }
7370    }
7371
7372    // TODO: this is not used nor needed. Delete it.
7373    @Override
7374    public boolean performDexOptIfNeeded(String packageName) {
7375        int dexOptStatus = performDexOptTraced(packageName,
7376                false /* checkProfiles */, getFullCompilerFilter(), false /* force */);
7377        return dexOptStatus != PackageDexOptimizer.DEX_OPT_FAILED;
7378    }
7379
7380    @Override
7381    public boolean performDexOpt(String packageName,
7382            boolean checkProfiles, int compileReason, boolean force) {
7383        int dexOptStatus = performDexOptTraced(packageName, checkProfiles,
7384                getCompilerFilterForReason(compileReason), force);
7385        return dexOptStatus != PackageDexOptimizer.DEX_OPT_FAILED;
7386    }
7387
7388    @Override
7389    public boolean performDexOptMode(String packageName,
7390            boolean checkProfiles, String targetCompilerFilter, boolean force) {
7391        int dexOptStatus = performDexOptTraced(packageName, checkProfiles,
7392                targetCompilerFilter, force);
7393        return dexOptStatus != PackageDexOptimizer.DEX_OPT_FAILED;
7394    }
7395
7396    private int performDexOptTraced(String packageName,
7397                boolean checkProfiles, String targetCompilerFilter, boolean force) {
7398        Trace.traceBegin(TRACE_TAG_PACKAGE_MANAGER, "dexopt");
7399        try {
7400            return performDexOptInternal(packageName, checkProfiles,
7401                    targetCompilerFilter, force);
7402        } finally {
7403            Trace.traceEnd(TRACE_TAG_PACKAGE_MANAGER);
7404        }
7405    }
7406
7407    // Run dexopt on a given package. Returns true if dexopt did not fail, i.e.
7408    // if the package can now be considered up to date for the given filter.
7409    private int performDexOptInternal(String packageName,
7410                boolean checkProfiles, String targetCompilerFilter, boolean force) {
7411        PackageParser.Package p;
7412        synchronized (mPackages) {
7413            p = mPackages.get(packageName);
7414            if (p == null) {
7415                // Package could not be found. Report failure.
7416                return PackageDexOptimizer.DEX_OPT_FAILED;
7417            }
7418            mPackageUsage.write(false);
7419        }
7420        long callingId = Binder.clearCallingIdentity();
7421        try {
7422            synchronized (mInstallLock) {
7423                return performDexOptInternalWithDependenciesLI(p, checkProfiles,
7424                        targetCompilerFilter, force);
7425            }
7426        } finally {
7427            Binder.restoreCallingIdentity(callingId);
7428        }
7429    }
7430
7431    public ArraySet<String> getOptimizablePackages() {
7432        ArraySet<String> pkgs = new ArraySet<String>();
7433        synchronized (mPackages) {
7434            for (PackageParser.Package p : mPackages.values()) {
7435                if (PackageDexOptimizer.canOptimizePackage(p)) {
7436                    pkgs.add(p.packageName);
7437                }
7438            }
7439        }
7440        return pkgs;
7441    }
7442
7443    private int performDexOptInternalWithDependenciesLI(PackageParser.Package p,
7444            boolean checkProfiles, String targetCompilerFilter,
7445            boolean force) {
7446        // Select the dex optimizer based on the force parameter.
7447        // Note: The force option is rarely used (cmdline input for testing, mostly), so it's OK to
7448        //       allocate an object here.
7449        PackageDexOptimizer pdo = force
7450                ? new PackageDexOptimizer.ForcedUpdatePackageDexOptimizer(mPackageDexOptimizer)
7451                : mPackageDexOptimizer;
7452
7453        // Optimize all dependencies first. Note: we ignore the return value and march on
7454        // on errors.
7455        Collection<PackageParser.Package> deps = findSharedNonSystemLibraries(p);
7456        final String[] instructionSets = getAppDexInstructionSets(p.applicationInfo);
7457        if (!deps.isEmpty()) {
7458            for (PackageParser.Package depPackage : deps) {
7459                // TODO: Analyze and investigate if we (should) profile libraries.
7460                // Currently this will do a full compilation of the library by default.
7461                pdo.performDexOpt(depPackage, null /* sharedLibraries */, instructionSets,
7462                        false /* checkProfiles */,
7463                        getCompilerFilterForReason(REASON_NON_SYSTEM_LIBRARY));
7464            }
7465        }
7466        return pdo.performDexOpt(p, p.usesLibraryFiles, instructionSets, checkProfiles,
7467                targetCompilerFilter);
7468    }
7469
7470    Collection<PackageParser.Package> findSharedNonSystemLibraries(PackageParser.Package p) {
7471        if (p.usesLibraries != null || p.usesOptionalLibraries != null) {
7472            ArrayList<PackageParser.Package> retValue = new ArrayList<>();
7473            Set<String> collectedNames = new HashSet<>();
7474            findSharedNonSystemLibrariesRecursive(p, retValue, collectedNames);
7475
7476            retValue.remove(p);
7477
7478            return retValue;
7479        } else {
7480            return Collections.emptyList();
7481        }
7482    }
7483
7484    private void findSharedNonSystemLibrariesRecursive(PackageParser.Package p,
7485            Collection<PackageParser.Package> collected, Set<String> collectedNames) {
7486        if (!collectedNames.contains(p.packageName)) {
7487            collectedNames.add(p.packageName);
7488            collected.add(p);
7489
7490            if (p.usesLibraries != null) {
7491                findSharedNonSystemLibrariesRecursive(p.usesLibraries, collected, collectedNames);
7492            }
7493            if (p.usesOptionalLibraries != null) {
7494                findSharedNonSystemLibrariesRecursive(p.usesOptionalLibraries, collected,
7495                        collectedNames);
7496            }
7497        }
7498    }
7499
7500    private void findSharedNonSystemLibrariesRecursive(Collection<String> libs,
7501            Collection<PackageParser.Package> collected, Set<String> collectedNames) {
7502        for (String libName : libs) {
7503            PackageParser.Package libPkg = findSharedNonSystemLibrary(libName);
7504            if (libPkg != null) {
7505                findSharedNonSystemLibrariesRecursive(libPkg, collected, collectedNames);
7506            }
7507        }
7508    }
7509
7510    private PackageParser.Package findSharedNonSystemLibrary(String libName) {
7511        synchronized (mPackages) {
7512            PackageManagerService.SharedLibraryEntry lib = mSharedLibraries.get(libName);
7513            if (lib != null && lib.apk != null) {
7514                return mPackages.get(lib.apk);
7515            }
7516        }
7517        return null;
7518    }
7519
7520    public void shutdown() {
7521        mPackageUsage.write(true);
7522    }
7523
7524    @Override
7525    public void dumpProfiles(String packageName) {
7526        PackageParser.Package pkg;
7527        synchronized (mPackages) {
7528            pkg = mPackages.get(packageName);
7529            if (pkg == null) {
7530                throw new IllegalArgumentException("Unknown package: " + packageName);
7531            }
7532        }
7533        /* Only the shell, root, or the app user should be able to dump profiles. */
7534        int callingUid = Binder.getCallingUid();
7535        if (callingUid != Process.SHELL_UID &&
7536            callingUid != Process.ROOT_UID &&
7537            callingUid != pkg.applicationInfo.uid) {
7538            throw new SecurityException("dumpProfiles");
7539        }
7540
7541        synchronized (mInstallLock) {
7542            Trace.traceBegin(TRACE_TAG_PACKAGE_MANAGER, "dump profiles");
7543            final int sharedGid = UserHandle.getSharedAppGid(pkg.applicationInfo.uid);
7544            try {
7545                List<String> allCodePaths = pkg.getAllCodePathsExcludingResourceOnly();
7546                String gid = Integer.toString(sharedGid);
7547                String codePaths = TextUtils.join(";", allCodePaths);
7548                mInstaller.dumpProfiles(gid, packageName, codePaths);
7549            } catch (InstallerException e) {
7550                Slog.w(TAG, "Failed to dump profiles", e);
7551            }
7552            Trace.traceEnd(TRACE_TAG_PACKAGE_MANAGER);
7553        }
7554    }
7555
7556    @Override
7557    public void forceDexOpt(String packageName) {
7558        enforceSystemOrRoot("forceDexOpt");
7559
7560        PackageParser.Package pkg;
7561        synchronized (mPackages) {
7562            pkg = mPackages.get(packageName);
7563            if (pkg == null) {
7564                throw new IllegalArgumentException("Unknown package: " + packageName);
7565            }
7566        }
7567
7568        synchronized (mInstallLock) {
7569            Trace.traceBegin(TRACE_TAG_PACKAGE_MANAGER, "dexopt");
7570
7571            // Whoever is calling forceDexOpt wants a fully compiled package.
7572            // Don't use profiles since that may cause compilation to be skipped.
7573            final int res = performDexOptInternalWithDependenciesLI(pkg,
7574                    false /* checkProfiles */, getCompilerFilterForReason(REASON_FORCED_DEXOPT),
7575                    true /* force */);
7576
7577            Trace.traceEnd(TRACE_TAG_PACKAGE_MANAGER);
7578            if (res != PackageDexOptimizer.DEX_OPT_PERFORMED) {
7579                throw new IllegalStateException("Failed to dexopt: " + res);
7580            }
7581        }
7582    }
7583
7584    private boolean verifyPackageUpdateLPr(PackageSetting oldPkg, PackageParser.Package newPkg) {
7585        if ((oldPkg.pkgFlags&ApplicationInfo.FLAG_SYSTEM) == 0) {
7586            Slog.w(TAG, "Unable to update from " + oldPkg.name
7587                    + " to " + newPkg.packageName
7588                    + ": old package not in system partition");
7589            return false;
7590        } else if (mPackages.get(oldPkg.name) != null) {
7591            Slog.w(TAG, "Unable to update from " + oldPkg.name
7592                    + " to " + newPkg.packageName
7593                    + ": old package still exists");
7594            return false;
7595        }
7596        return true;
7597    }
7598
7599    void removeCodePathLI(File codePath) {
7600        if (codePath.isDirectory()) {
7601            try {
7602                mInstaller.rmPackageDir(codePath.getAbsolutePath());
7603            } catch (InstallerException e) {
7604                Slog.w(TAG, "Failed to remove code path", e);
7605            }
7606        } else {
7607            codePath.delete();
7608        }
7609    }
7610
7611    private int[] resolveUserIds(int userId) {
7612        return (userId == UserHandle.USER_ALL) ? sUserManager.getUserIds() : new int[] { userId };
7613    }
7614
7615    private void clearAppDataLIF(PackageParser.Package pkg, int userId, int flags) {
7616        if (pkg == null) {
7617            Slog.wtf(TAG, "Package was null!", new Throwable());
7618            return;
7619        }
7620        clearAppDataLeafLIF(pkg, userId, flags);
7621        final int childCount = (pkg.childPackages != null) ? pkg.childPackages.size() : 0;
7622        for (int i = 0; i < childCount; i++) {
7623            clearAppDataLeafLIF(pkg.childPackages.get(i), userId, flags);
7624        }
7625    }
7626
7627    private void clearAppDataLeafLIF(PackageParser.Package pkg, int userId, int flags) {
7628        final PackageSetting ps;
7629        synchronized (mPackages) {
7630            ps = mSettings.mPackages.get(pkg.packageName);
7631        }
7632        for (int realUserId : resolveUserIds(userId)) {
7633            final long ceDataInode = (ps != null) ? ps.getCeDataInode(realUserId) : 0;
7634            try {
7635                mInstaller.clearAppData(pkg.volumeUuid, pkg.packageName, realUserId, flags,
7636                        ceDataInode);
7637            } catch (InstallerException e) {
7638                Slog.w(TAG, String.valueOf(e));
7639            }
7640        }
7641    }
7642
7643    private void destroyAppDataLIF(PackageParser.Package pkg, int userId, int flags) {
7644        if (pkg == null) {
7645            Slog.wtf(TAG, "Package was null!", new Throwable());
7646            return;
7647        }
7648        destroyAppDataLeafLIF(pkg, userId, flags);
7649        final int childCount = (pkg.childPackages != null) ? pkg.childPackages.size() : 0;
7650        for (int i = 0; i < childCount; i++) {
7651            destroyAppDataLeafLIF(pkg.childPackages.get(i), userId, flags);
7652        }
7653    }
7654
7655    private void destroyAppDataLeafLIF(PackageParser.Package pkg, int userId, int flags) {
7656        final PackageSetting ps;
7657        synchronized (mPackages) {
7658            ps = mSettings.mPackages.get(pkg.packageName);
7659        }
7660        for (int realUserId : resolveUserIds(userId)) {
7661            final long ceDataInode = (ps != null) ? ps.getCeDataInode(realUserId) : 0;
7662            try {
7663                mInstaller.destroyAppData(pkg.volumeUuid, pkg.packageName, realUserId, flags,
7664                        ceDataInode);
7665            } catch (InstallerException e) {
7666                Slog.w(TAG, String.valueOf(e));
7667            }
7668        }
7669    }
7670
7671    private void destroyAppProfilesLIF(PackageParser.Package pkg, int userId) {
7672        if (pkg == null) {
7673            Slog.wtf(TAG, "Package was null!", new Throwable());
7674            return;
7675        }
7676        destroyAppProfilesLeafLIF(pkg);
7677        destroyAppReferenceProfileLeafLIF(pkg, userId, true /* removeBaseMarker */);
7678        final int childCount = (pkg.childPackages != null) ? pkg.childPackages.size() : 0;
7679        for (int i = 0; i < childCount; i++) {
7680            destroyAppProfilesLeafLIF(pkg.childPackages.get(i));
7681            destroyAppReferenceProfileLeafLIF(pkg.childPackages.get(i), userId,
7682                    true /* removeBaseMarker */);
7683        }
7684    }
7685
7686    private void destroyAppReferenceProfileLeafLIF(PackageParser.Package pkg, int userId,
7687            boolean removeBaseMarker) {
7688        if (pkg.isForwardLocked()) {
7689            return;
7690        }
7691
7692        for (String path : pkg.getAllCodePathsExcludingResourceOnly()) {
7693            try {
7694                path = PackageManagerServiceUtils.realpath(new File(path));
7695            } catch (IOException e) {
7696                // TODO: Should we return early here ?
7697                Slog.w(TAG, "Failed to get canonical path", e);
7698                continue;
7699            }
7700
7701            final String useMarker = path.replace('/', '@');
7702            for (int realUserId : resolveUserIds(userId)) {
7703                File profileDir = Environment.getDataProfilesDeForeignDexDirectory(realUserId);
7704                if (removeBaseMarker) {
7705                    File foreignUseMark = new File(profileDir, useMarker);
7706                    if (foreignUseMark.exists()) {
7707                        if (!foreignUseMark.delete()) {
7708                            Slog.w(TAG, "Unable to delete foreign user mark for package: "
7709                                    + pkg.packageName);
7710                        }
7711                    }
7712                }
7713
7714                File[] markers = profileDir.listFiles();
7715                if (markers != null) {
7716                    final String searchString = "@" + pkg.packageName + "@";
7717                    // We also delete all markers that contain the package name we're
7718                    // uninstalling. These are associated with secondary dex-files belonging
7719                    // to the package. Reconstructing the path of these dex files is messy
7720                    // in general.
7721                    for (File marker : markers) {
7722                        if (marker.getName().indexOf(searchString) > 0) {
7723                            if (!marker.delete()) {
7724                                Slog.w(TAG, "Unable to delete foreign user mark for package: "
7725                                    + pkg.packageName);
7726                            }
7727                        }
7728                    }
7729                }
7730            }
7731        }
7732    }
7733
7734    private void destroyAppProfilesLeafLIF(PackageParser.Package pkg) {
7735        try {
7736            mInstaller.destroyAppProfiles(pkg.packageName);
7737        } catch (InstallerException e) {
7738            Slog.w(TAG, String.valueOf(e));
7739        }
7740    }
7741
7742    private void clearAppProfilesLIF(PackageParser.Package pkg, int userId) {
7743        if (pkg == null) {
7744            Slog.wtf(TAG, "Package was null!", new Throwable());
7745            return;
7746        }
7747        clearAppProfilesLeafLIF(pkg);
7748        // We don't remove the base foreign use marker when clearing profiles because
7749        // we will rename it when the app is updated. Unlike the actual profile contents,
7750        // the foreign use marker is good across installs.
7751        destroyAppReferenceProfileLeafLIF(pkg, userId, false /* removeBaseMarker */);
7752        final int childCount = (pkg.childPackages != null) ? pkg.childPackages.size() : 0;
7753        for (int i = 0; i < childCount; i++) {
7754            clearAppProfilesLeafLIF(pkg.childPackages.get(i));
7755        }
7756    }
7757
7758    private void clearAppProfilesLeafLIF(PackageParser.Package pkg) {
7759        try {
7760            mInstaller.clearAppProfiles(pkg.packageName);
7761        } catch (InstallerException e) {
7762            Slog.w(TAG, String.valueOf(e));
7763        }
7764    }
7765
7766    private void setInstallAndUpdateTime(PackageParser.Package pkg, long firstInstallTime,
7767            long lastUpdateTime) {
7768        // Set parent install/update time
7769        PackageSetting ps = (PackageSetting) pkg.mExtras;
7770        if (ps != null) {
7771            ps.firstInstallTime = firstInstallTime;
7772            ps.lastUpdateTime = lastUpdateTime;
7773        }
7774        // Set children install/update time
7775        final int childCount = (pkg.childPackages != null) ? pkg.childPackages.size() : 0;
7776        for (int i = 0; i < childCount; i++) {
7777            PackageParser.Package childPkg = pkg.childPackages.get(i);
7778            ps = (PackageSetting) childPkg.mExtras;
7779            if (ps != null) {
7780                ps.firstInstallTime = firstInstallTime;
7781                ps.lastUpdateTime = lastUpdateTime;
7782            }
7783        }
7784    }
7785
7786    private void addSharedLibraryLPw(ArraySet<String> usesLibraryFiles, SharedLibraryEntry file,
7787            PackageParser.Package changingLib) {
7788        if (file.path != null) {
7789            usesLibraryFiles.add(file.path);
7790            return;
7791        }
7792        PackageParser.Package p = mPackages.get(file.apk);
7793        if (changingLib != null && changingLib.packageName.equals(file.apk)) {
7794            // If we are doing this while in the middle of updating a library apk,
7795            // then we need to make sure to use that new apk for determining the
7796            // dependencies here.  (We haven't yet finished committing the new apk
7797            // to the package manager state.)
7798            if (p == null || p.packageName.equals(changingLib.packageName)) {
7799                p = changingLib;
7800            }
7801        }
7802        if (p != null) {
7803            usesLibraryFiles.addAll(p.getAllCodePaths());
7804        }
7805    }
7806
7807    private void updateSharedLibrariesLPw(PackageParser.Package pkg,
7808            PackageParser.Package changingLib) throws PackageManagerException {
7809        if (pkg.usesLibraries != null || pkg.usesOptionalLibraries != null) {
7810            final ArraySet<String> usesLibraryFiles = new ArraySet<>();
7811            int N = pkg.usesLibraries != null ? pkg.usesLibraries.size() : 0;
7812            for (int i=0; i<N; i++) {
7813                final SharedLibraryEntry file = mSharedLibraries.get(pkg.usesLibraries.get(i));
7814                if (file == null) {
7815                    throw new PackageManagerException(INSTALL_FAILED_MISSING_SHARED_LIBRARY,
7816                            "Package " + pkg.packageName + " requires unavailable shared library "
7817                            + pkg.usesLibraries.get(i) + "; failing!");
7818                }
7819                addSharedLibraryLPw(usesLibraryFiles, file, changingLib);
7820            }
7821            N = pkg.usesOptionalLibraries != null ? pkg.usesOptionalLibraries.size() : 0;
7822            for (int i=0; i<N; i++) {
7823                final SharedLibraryEntry file = mSharedLibraries.get(pkg.usesOptionalLibraries.get(i));
7824                if (file == null) {
7825                    Slog.w(TAG, "Package " + pkg.packageName
7826                            + " desires unavailable shared library "
7827                            + pkg.usesOptionalLibraries.get(i) + "; ignoring!");
7828                } else {
7829                    addSharedLibraryLPw(usesLibraryFiles, file, changingLib);
7830                }
7831            }
7832            N = usesLibraryFiles.size();
7833            if (N > 0) {
7834                pkg.usesLibraryFiles = usesLibraryFiles.toArray(new String[N]);
7835            } else {
7836                pkg.usesLibraryFiles = null;
7837            }
7838        }
7839    }
7840
7841    private static boolean hasString(List<String> list, List<String> which) {
7842        if (list == null) {
7843            return false;
7844        }
7845        for (int i=list.size()-1; i>=0; i--) {
7846            for (int j=which.size()-1; j>=0; j--) {
7847                if (which.get(j).equals(list.get(i))) {
7848                    return true;
7849                }
7850            }
7851        }
7852        return false;
7853    }
7854
7855    private void updateAllSharedLibrariesLPw() {
7856        for (PackageParser.Package pkg : mPackages.values()) {
7857            try {
7858                updateSharedLibrariesLPw(pkg, null);
7859            } catch (PackageManagerException e) {
7860                Slog.e(TAG, "updateAllSharedLibrariesLPw failed: " + e.getMessage());
7861            }
7862        }
7863    }
7864
7865    private ArrayList<PackageParser.Package> updateAllSharedLibrariesLPw(
7866            PackageParser.Package changingPkg) {
7867        ArrayList<PackageParser.Package> res = null;
7868        for (PackageParser.Package pkg : mPackages.values()) {
7869            if (hasString(pkg.usesLibraries, changingPkg.libraryNames)
7870                    || hasString(pkg.usesOptionalLibraries, changingPkg.libraryNames)) {
7871                if (res == null) {
7872                    res = new ArrayList<PackageParser.Package>();
7873                }
7874                res.add(pkg);
7875                try {
7876                    updateSharedLibrariesLPw(pkg, changingPkg);
7877                } catch (PackageManagerException e) {
7878                    Slog.e(TAG, "updateAllSharedLibrariesLPw failed: " + e.getMessage());
7879                }
7880            }
7881        }
7882        return res;
7883    }
7884
7885    /**
7886     * Derive the value of the {@code cpuAbiOverride} based on the provided
7887     * value and an optional stored value from the package settings.
7888     */
7889    private static String deriveAbiOverride(String abiOverride, PackageSetting settings) {
7890        String cpuAbiOverride = null;
7891
7892        if (NativeLibraryHelper.CLEAR_ABI_OVERRIDE.equals(abiOverride)) {
7893            cpuAbiOverride = null;
7894        } else if (abiOverride != null) {
7895            cpuAbiOverride = abiOverride;
7896        } else if (settings != null) {
7897            cpuAbiOverride = settings.cpuAbiOverrideString;
7898        }
7899
7900        return cpuAbiOverride;
7901    }
7902
7903    private PackageParser.Package scanPackageTracedLI(PackageParser.Package pkg,
7904            final int policyFlags, int scanFlags, long currentTime, UserHandle user)
7905                    throws PackageManagerException {
7906        Trace.traceBegin(TRACE_TAG_PACKAGE_MANAGER, "scanPackage");
7907        // If the package has children and this is the first dive in the function
7908        // we recursively scan the package with the SCAN_CHECK_ONLY flag set to see
7909        // whether all packages (parent and children) would be successfully scanned
7910        // before the actual scan since scanning mutates internal state and we want
7911        // to atomically install the package and its children.
7912        if ((scanFlags & SCAN_CHECK_ONLY) == 0) {
7913            if (pkg.childPackages != null && pkg.childPackages.size() > 0) {
7914                scanFlags |= SCAN_CHECK_ONLY;
7915            }
7916        } else {
7917            scanFlags &= ~SCAN_CHECK_ONLY;
7918        }
7919
7920        final PackageParser.Package scannedPkg;
7921        try {
7922            // Scan the parent
7923            scannedPkg = scanPackageLI(pkg, policyFlags, scanFlags, currentTime, user);
7924            // Scan the children
7925            final int childCount = (pkg.childPackages != null) ? pkg.childPackages.size() : 0;
7926            for (int i = 0; i < childCount; i++) {
7927                PackageParser.Package childPkg = pkg.childPackages.get(i);
7928                scanPackageLI(childPkg, policyFlags,
7929                        scanFlags, currentTime, user);
7930            }
7931        } finally {
7932            Trace.traceEnd(TRACE_TAG_PACKAGE_MANAGER);
7933        }
7934
7935        if ((scanFlags & SCAN_CHECK_ONLY) != 0) {
7936            return scanPackageTracedLI(pkg, policyFlags, scanFlags, currentTime, user);
7937        }
7938
7939        return scannedPkg;
7940    }
7941
7942    private PackageParser.Package scanPackageLI(PackageParser.Package pkg, final int policyFlags,
7943            int scanFlags, long currentTime, UserHandle user) throws PackageManagerException {
7944        boolean success = false;
7945        try {
7946            final PackageParser.Package res = scanPackageDirtyLI(pkg, policyFlags, scanFlags,
7947                    currentTime, user);
7948            success = true;
7949            return res;
7950        } finally {
7951            if (!success && (scanFlags & SCAN_DELETE_DATA_ON_FAILURES) != 0) {
7952                // DELETE_DATA_ON_FAILURES is only used by frozen paths
7953                destroyAppDataLIF(pkg, UserHandle.USER_ALL,
7954                        StorageManager.FLAG_STORAGE_DE | StorageManager.FLAG_STORAGE_CE);
7955                destroyAppProfilesLIF(pkg, UserHandle.USER_ALL);
7956            }
7957        }
7958    }
7959
7960    /**
7961     * Returns {@code true} if the given file contains code. Otherwise {@code false}.
7962     */
7963    private static boolean apkHasCode(String fileName) {
7964        StrictJarFile jarFile = null;
7965        try {
7966            jarFile = new StrictJarFile(fileName,
7967                    false /*verify*/, false /*signatureSchemeRollbackProtectionsEnforced*/);
7968            return jarFile.findEntry("classes.dex") != null;
7969        } catch (IOException ignore) {
7970        } finally {
7971            try {
7972                jarFile.close();
7973            } catch (IOException ignore) {}
7974        }
7975        return false;
7976    }
7977
7978    /**
7979     * Enforces code policy for the package. This ensures that if an APK has
7980     * declared hasCode="true" in its manifest that the APK actually contains
7981     * code.
7982     *
7983     * @throws PackageManagerException If bytecode could not be found when it should exist
7984     */
7985    private static void enforceCodePolicy(PackageParser.Package pkg)
7986            throws PackageManagerException {
7987        final boolean shouldHaveCode =
7988                (pkg.applicationInfo.flags & ApplicationInfo.FLAG_HAS_CODE) != 0;
7989        if (shouldHaveCode && !apkHasCode(pkg.baseCodePath)) {
7990            throw new PackageManagerException(INSTALL_FAILED_INVALID_APK,
7991                    "Package " + pkg.baseCodePath + " code is missing");
7992        }
7993
7994        if (!ArrayUtils.isEmpty(pkg.splitCodePaths)) {
7995            for (int i = 0; i < pkg.splitCodePaths.length; i++) {
7996                final boolean splitShouldHaveCode =
7997                        (pkg.splitFlags[i] & ApplicationInfo.FLAG_HAS_CODE) != 0;
7998                if (splitShouldHaveCode && !apkHasCode(pkg.splitCodePaths[i])) {
7999                    throw new PackageManagerException(INSTALL_FAILED_INVALID_APK,
8000                            "Package " + pkg.splitCodePaths[i] + " code is missing");
8001                }
8002            }
8003        }
8004    }
8005
8006    private PackageParser.Package scanPackageDirtyLI(PackageParser.Package pkg,
8007            final int policyFlags, final int scanFlags, long currentTime, UserHandle user)
8008            throws PackageManagerException {
8009        final File scanFile = new File(pkg.codePath);
8010        if (pkg.applicationInfo.getCodePath() == null ||
8011                pkg.applicationInfo.getResourcePath() == null) {
8012            // Bail out. The resource and code paths haven't been set.
8013            throw new PackageManagerException(INSTALL_FAILED_INVALID_APK,
8014                    "Code and resource paths haven't been set correctly");
8015        }
8016
8017        // Apply policy
8018        if ((policyFlags&PackageParser.PARSE_IS_SYSTEM) != 0) {
8019            pkg.applicationInfo.flags |= ApplicationInfo.FLAG_SYSTEM;
8020            if (pkg.applicationInfo.isDirectBootAware()) {
8021                // we're direct boot aware; set for all components
8022                for (PackageParser.Service s : pkg.services) {
8023                    s.info.encryptionAware = s.info.directBootAware = true;
8024                }
8025                for (PackageParser.Provider p : pkg.providers) {
8026                    p.info.encryptionAware = p.info.directBootAware = true;
8027                }
8028                for (PackageParser.Activity a : pkg.activities) {
8029                    a.info.encryptionAware = a.info.directBootAware = true;
8030                }
8031                for (PackageParser.Activity r : pkg.receivers) {
8032                    r.info.encryptionAware = r.info.directBootAware = true;
8033                }
8034            }
8035        } else {
8036            // Only allow system apps to be flagged as core apps.
8037            pkg.coreApp = false;
8038            // clear flags not applicable to regular apps
8039            pkg.applicationInfo.privateFlags &=
8040                    ~ApplicationInfo.PRIVATE_FLAG_DEFAULT_TO_DEVICE_PROTECTED_STORAGE;
8041            pkg.applicationInfo.privateFlags &=
8042                    ~ApplicationInfo.PRIVATE_FLAG_DIRECT_BOOT_AWARE;
8043        }
8044        pkg.mTrustedOverlay = (policyFlags&PackageParser.PARSE_TRUSTED_OVERLAY) != 0;
8045
8046        if ((policyFlags&PackageParser.PARSE_IS_PRIVILEGED) != 0) {
8047            pkg.applicationInfo.privateFlags |= ApplicationInfo.PRIVATE_FLAG_PRIVILEGED;
8048        }
8049
8050        if ((policyFlags & PackageParser.PARSE_ENFORCE_CODE) != 0) {
8051            enforceCodePolicy(pkg);
8052        }
8053
8054        if (mCustomResolverComponentName != null &&
8055                mCustomResolverComponentName.getPackageName().equals(pkg.packageName)) {
8056            setUpCustomResolverActivity(pkg);
8057        }
8058
8059        if (pkg.packageName.equals("android")) {
8060            synchronized (mPackages) {
8061                if (mAndroidApplication != null) {
8062                    Slog.w(TAG, "*************************************************");
8063                    Slog.w(TAG, "Core android package being redefined.  Skipping.");
8064                    Slog.w(TAG, " file=" + scanFile);
8065                    Slog.w(TAG, "*************************************************");
8066                    throw new PackageManagerException(INSTALL_FAILED_DUPLICATE_PACKAGE,
8067                            "Core android package being redefined.  Skipping.");
8068                }
8069
8070                if ((scanFlags & SCAN_CHECK_ONLY) == 0) {
8071                    // Set up information for our fall-back user intent resolution activity.
8072                    mPlatformPackage = pkg;
8073                    pkg.mVersionCode = mSdkVersion;
8074                    mAndroidApplication = pkg.applicationInfo;
8075
8076                    if (!mResolverReplaced) {
8077                        mResolveActivity.applicationInfo = mAndroidApplication;
8078                        mResolveActivity.name = ResolverActivity.class.getName();
8079                        mResolveActivity.packageName = mAndroidApplication.packageName;
8080                        mResolveActivity.processName = "system:ui";
8081                        mResolveActivity.launchMode = ActivityInfo.LAUNCH_MULTIPLE;
8082                        mResolveActivity.documentLaunchMode = ActivityInfo.DOCUMENT_LAUNCH_NEVER;
8083                        mResolveActivity.flags = ActivityInfo.FLAG_EXCLUDE_FROM_RECENTS;
8084                        mResolveActivity.theme = R.style.Theme_Material_Dialog_Alert;
8085                        mResolveActivity.exported = true;
8086                        mResolveActivity.enabled = true;
8087                        mResolveActivity.resizeMode = ActivityInfo.RESIZE_MODE_RESIZEABLE;
8088                        mResolveActivity.configChanges = ActivityInfo.CONFIG_SCREEN_SIZE
8089                                | ActivityInfo.CONFIG_SMALLEST_SCREEN_SIZE
8090                                | ActivityInfo.CONFIG_SCREEN_LAYOUT
8091                                | ActivityInfo.CONFIG_ORIENTATION
8092                                | ActivityInfo.CONFIG_KEYBOARD
8093                                | ActivityInfo.CONFIG_KEYBOARD_HIDDEN;
8094                        mResolveInfo.activityInfo = mResolveActivity;
8095                        mResolveInfo.priority = 0;
8096                        mResolveInfo.preferredOrder = 0;
8097                        mResolveInfo.match = 0;
8098                        mResolveComponentName = new ComponentName(
8099                                mAndroidApplication.packageName, mResolveActivity.name);
8100                    }
8101                }
8102            }
8103        }
8104
8105        if (DEBUG_PACKAGE_SCANNING) {
8106            if ((policyFlags & PackageParser.PARSE_CHATTY) != 0)
8107                Log.d(TAG, "Scanning package " + pkg.packageName);
8108        }
8109
8110        synchronized (mPackages) {
8111            if (mPackages.containsKey(pkg.packageName)
8112                    || mSharedLibraries.containsKey(pkg.packageName)) {
8113                throw new PackageManagerException(INSTALL_FAILED_DUPLICATE_PACKAGE,
8114                        "Application package " + pkg.packageName
8115                                + " already installed.  Skipping duplicate.");
8116            }
8117
8118            // If we're only installing presumed-existing packages, require that the
8119            // scanned APK is both already known and at the path previously established
8120            // for it.  Previously unknown packages we pick up normally, but if we have an
8121            // a priori expectation about this package's install presence, enforce it.
8122            // With a singular exception for new system packages. When an OTA contains
8123            // a new system package, we allow the codepath to change from a system location
8124            // to the user-installed location. If we don't allow this change, any newer,
8125            // user-installed version of the application will be ignored.
8126            if ((scanFlags & SCAN_REQUIRE_KNOWN) != 0) {
8127                if (mExpectingBetter.containsKey(pkg.packageName)) {
8128                    logCriticalInfo(Log.WARN,
8129                            "Relax SCAN_REQUIRE_KNOWN requirement for package " + pkg.packageName);
8130                } else {
8131                    PackageSetting known = mSettings.peekPackageLPr(pkg.packageName);
8132                    if (known != null) {
8133                        if (DEBUG_PACKAGE_SCANNING) {
8134                            Log.d(TAG, "Examining " + pkg.codePath
8135                                    + " and requiring known paths " + known.codePathString
8136                                    + " & " + known.resourcePathString);
8137                        }
8138                        if (!pkg.applicationInfo.getCodePath().equals(known.codePathString)
8139                                || !pkg.applicationInfo.getResourcePath().equals(
8140                                known.resourcePathString)) {
8141                            throw new PackageManagerException(INSTALL_FAILED_PACKAGE_CHANGED,
8142                                    "Application package " + pkg.packageName
8143                                            + " found at " + pkg.applicationInfo.getCodePath()
8144                                            + " but expected at " + known.codePathString
8145                                            + "; ignoring.");
8146                        }
8147                    }
8148                }
8149            }
8150        }
8151
8152        // Initialize package source and resource directories
8153        File destCodeFile = new File(pkg.applicationInfo.getCodePath());
8154        File destResourceFile = new File(pkg.applicationInfo.getResourcePath());
8155
8156        SharedUserSetting suid = null;
8157        PackageSetting pkgSetting = null;
8158
8159        if (!isSystemApp(pkg)) {
8160            // Only system apps can use these features.
8161            pkg.mOriginalPackages = null;
8162            pkg.mRealPackage = null;
8163            pkg.mAdoptPermissions = null;
8164        }
8165
8166        // Getting the package setting may have a side-effect, so if we
8167        // are only checking if scan would succeed, stash a copy of the
8168        // old setting to restore at the end.
8169        PackageSetting nonMutatedPs = null;
8170
8171        // writer
8172        synchronized (mPackages) {
8173            if (pkg.mSharedUserId != null) {
8174                suid = mSettings.getSharedUserLPw(pkg.mSharedUserId, 0, 0, true);
8175                if (suid == null) {
8176                    throw new PackageManagerException(INSTALL_FAILED_INSUFFICIENT_STORAGE,
8177                            "Creating application package " + pkg.packageName
8178                            + " for shared user failed");
8179                }
8180                if (DEBUG_PACKAGE_SCANNING) {
8181                    if ((policyFlags & PackageParser.PARSE_CHATTY) != 0)
8182                        Log.d(TAG, "Shared UserID " + pkg.mSharedUserId + " (uid=" + suid.userId
8183                                + "): packages=" + suid.packages);
8184                }
8185            }
8186
8187            // Check if we are renaming from an original package name.
8188            PackageSetting origPackage = null;
8189            String realName = null;
8190            if (pkg.mOriginalPackages != null) {
8191                // This package may need to be renamed to a previously
8192                // installed name.  Let's check on that...
8193                final String renamed = mSettings.mRenamedPackages.get(pkg.mRealPackage);
8194                if (pkg.mOriginalPackages.contains(renamed)) {
8195                    // This package had originally been installed as the
8196                    // original name, and we have already taken care of
8197                    // transitioning to the new one.  Just update the new
8198                    // one to continue using the old name.
8199                    realName = pkg.mRealPackage;
8200                    if (!pkg.packageName.equals(renamed)) {
8201                        // Callers into this function may have already taken
8202                        // care of renaming the package; only do it here if
8203                        // it is not already done.
8204                        pkg.setPackageName(renamed);
8205                    }
8206
8207                } else {
8208                    for (int i=pkg.mOriginalPackages.size()-1; i>=0; i--) {
8209                        if ((origPackage = mSettings.peekPackageLPr(
8210                                pkg.mOriginalPackages.get(i))) != null) {
8211                            // We do have the package already installed under its
8212                            // original name...  should we use it?
8213                            if (!verifyPackageUpdateLPr(origPackage, pkg)) {
8214                                // New package is not compatible with original.
8215                                origPackage = null;
8216                                continue;
8217                            } else if (origPackage.sharedUser != null) {
8218                                // Make sure uid is compatible between packages.
8219                                if (!origPackage.sharedUser.name.equals(pkg.mSharedUserId)) {
8220                                    Slog.w(TAG, "Unable to migrate data from " + origPackage.name
8221                                            + " to " + pkg.packageName + ": old uid "
8222                                            + origPackage.sharedUser.name
8223                                            + " differs from " + pkg.mSharedUserId);
8224                                    origPackage = null;
8225                                    continue;
8226                                }
8227                                // TODO: Add case when shared user id is added [b/28144775]
8228                            } else {
8229                                if (DEBUG_UPGRADE) Log.v(TAG, "Renaming new package "
8230                                        + pkg.packageName + " to old name " + origPackage.name);
8231                            }
8232                            break;
8233                        }
8234                    }
8235                }
8236            }
8237
8238            if (mTransferedPackages.contains(pkg.packageName)) {
8239                Slog.w(TAG, "Package " + pkg.packageName
8240                        + " was transferred to another, but its .apk remains");
8241            }
8242
8243            // See comments in nonMutatedPs declaration
8244            if ((scanFlags & SCAN_CHECK_ONLY) != 0) {
8245                PackageSetting foundPs = mSettings.peekPackageLPr(pkg.packageName);
8246                if (foundPs != null) {
8247                    nonMutatedPs = new PackageSetting(foundPs);
8248                }
8249            }
8250
8251            // Just create the setting, don't add it yet. For already existing packages
8252            // the PkgSetting exists already and doesn't have to be created.
8253            pkgSetting = mSettings.getPackageLPw(pkg, origPackage, realName, suid, destCodeFile,
8254                    destResourceFile, pkg.applicationInfo.nativeLibraryRootDir,
8255                    pkg.applicationInfo.primaryCpuAbi,
8256                    pkg.applicationInfo.secondaryCpuAbi,
8257                    pkg.applicationInfo.flags, pkg.applicationInfo.privateFlags,
8258                    user, false);
8259            if (pkgSetting == null) {
8260                throw new PackageManagerException(INSTALL_FAILED_INSUFFICIENT_STORAGE,
8261                        "Creating application package " + pkg.packageName + " failed");
8262            }
8263
8264            if (pkgSetting.origPackage != null) {
8265                // If we are first transitioning from an original package,
8266                // fix up the new package's name now.  We need to do this after
8267                // looking up the package under its new name, so getPackageLP
8268                // can take care of fiddling things correctly.
8269                pkg.setPackageName(origPackage.name);
8270
8271                // File a report about this.
8272                String msg = "New package " + pkgSetting.realName
8273                        + " renamed to replace old package " + pkgSetting.name;
8274                reportSettingsProblem(Log.WARN, msg);
8275
8276                // Make a note of it.
8277                if ((scanFlags & SCAN_CHECK_ONLY) == 0) {
8278                    mTransferedPackages.add(origPackage.name);
8279                }
8280
8281                // No longer need to retain this.
8282                pkgSetting.origPackage = null;
8283            }
8284
8285            if ((scanFlags & SCAN_CHECK_ONLY) == 0 && realName != null) {
8286                // Make a note of it.
8287                mTransferedPackages.add(pkg.packageName);
8288            }
8289
8290            if (mSettings.isDisabledSystemPackageLPr(pkg.packageName)) {
8291                pkg.applicationInfo.flags |= ApplicationInfo.FLAG_UPDATED_SYSTEM_APP;
8292            }
8293
8294            if ((policyFlags&PackageParser.PARSE_IS_SYSTEM_DIR) == 0) {
8295                // Check all shared libraries and map to their actual file path.
8296                // We only do this here for apps not on a system dir, because those
8297                // are the only ones that can fail an install due to this.  We
8298                // will take care of the system apps by updating all of their
8299                // library paths after the scan is done.
8300                updateSharedLibrariesLPw(pkg, null);
8301            }
8302
8303            if (mFoundPolicyFile) {
8304                SELinuxMMAC.assignSeinfoValue(pkg);
8305            }
8306
8307            pkg.applicationInfo.uid = pkgSetting.appId;
8308            pkg.mExtras = pkgSetting;
8309            if (shouldCheckUpgradeKeySetLP(pkgSetting, scanFlags)) {
8310                if (checkUpgradeKeySetLP(pkgSetting, pkg)) {
8311                    // We just determined the app is signed correctly, so bring
8312                    // over the latest parsed certs.
8313                    pkgSetting.signatures.mSignatures = pkg.mSignatures;
8314                } else {
8315                    if ((policyFlags & PackageParser.PARSE_IS_SYSTEM_DIR) == 0) {
8316                        throw new PackageManagerException(INSTALL_FAILED_UPDATE_INCOMPATIBLE,
8317                                "Package " + pkg.packageName + " upgrade keys do not match the "
8318                                + "previously installed version");
8319                    } else {
8320                        pkgSetting.signatures.mSignatures = pkg.mSignatures;
8321                        String msg = "System package " + pkg.packageName
8322                            + " signature changed; retaining data.";
8323                        reportSettingsProblem(Log.WARN, msg);
8324                    }
8325                }
8326            } else {
8327                try {
8328                    verifySignaturesLP(pkgSetting, pkg);
8329                    // We just determined the app is signed correctly, so bring
8330                    // over the latest parsed certs.
8331                    pkgSetting.signatures.mSignatures = pkg.mSignatures;
8332                } catch (PackageManagerException e) {
8333                    if ((policyFlags & PackageParser.PARSE_IS_SYSTEM_DIR) == 0) {
8334                        throw e;
8335                    }
8336                    // The signature has changed, but this package is in the system
8337                    // image...  let's recover!
8338                    pkgSetting.signatures.mSignatures = pkg.mSignatures;
8339                    // However...  if this package is part of a shared user, but it
8340                    // doesn't match the signature of the shared user, let's fail.
8341                    // What this means is that you can't change the signatures
8342                    // associated with an overall shared user, which doesn't seem all
8343                    // that unreasonable.
8344                    if (pkgSetting.sharedUser != null) {
8345                        if (compareSignatures(pkgSetting.sharedUser.signatures.mSignatures,
8346                                              pkg.mSignatures) != PackageManager.SIGNATURE_MATCH) {
8347                            throw new PackageManagerException(
8348                                    INSTALL_PARSE_FAILED_INCONSISTENT_CERTIFICATES,
8349                                            "Signature mismatch for shared user: "
8350                                            + pkgSetting.sharedUser);
8351                        }
8352                    }
8353                    // File a report about this.
8354                    String msg = "System package " + pkg.packageName
8355                        + " signature changed; retaining data.";
8356                    reportSettingsProblem(Log.WARN, msg);
8357                }
8358            }
8359            // Verify that this new package doesn't have any content providers
8360            // that conflict with existing packages.  Only do this if the
8361            // package isn't already installed, since we don't want to break
8362            // things that are installed.
8363            if ((scanFlags & SCAN_NEW_INSTALL) != 0) {
8364                final int N = pkg.providers.size();
8365                int i;
8366                for (i=0; i<N; i++) {
8367                    PackageParser.Provider p = pkg.providers.get(i);
8368                    if (p.info.authority != null) {
8369                        String names[] = p.info.authority.split(";");
8370                        for (int j = 0; j < names.length; j++) {
8371                            if (mProvidersByAuthority.containsKey(names[j])) {
8372                                PackageParser.Provider other = mProvidersByAuthority.get(names[j]);
8373                                final String otherPackageName =
8374                                        ((other != null && other.getComponentName() != null) ?
8375                                                other.getComponentName().getPackageName() : "?");
8376                                throw new PackageManagerException(
8377                                        INSTALL_FAILED_CONFLICTING_PROVIDER,
8378                                                "Can't install because provider name " + names[j]
8379                                                + " (in package " + pkg.applicationInfo.packageName
8380                                                + ") is already used by " + otherPackageName);
8381                            }
8382                        }
8383                    }
8384                }
8385            }
8386
8387            if ((scanFlags & SCAN_CHECK_ONLY) == 0 && pkg.mAdoptPermissions != null) {
8388                // This package wants to adopt ownership of permissions from
8389                // another package.
8390                for (int i = pkg.mAdoptPermissions.size() - 1; i >= 0; i--) {
8391                    final String origName = pkg.mAdoptPermissions.get(i);
8392                    final PackageSetting orig = mSettings.peekPackageLPr(origName);
8393                    if (orig != null) {
8394                        if (verifyPackageUpdateLPr(orig, pkg)) {
8395                            Slog.i(TAG, "Adopting permissions from " + origName + " to "
8396                                    + pkg.packageName);
8397                            mSettings.transferPermissionsLPw(origName, pkg.packageName);
8398                        }
8399                    }
8400                }
8401            }
8402        }
8403
8404        final String pkgName = pkg.packageName;
8405
8406        final long scanFileTime = scanFile.lastModified();
8407        final boolean forceDex = (scanFlags & SCAN_FORCE_DEX) != 0;
8408        pkg.applicationInfo.processName = fixProcessName(
8409                pkg.applicationInfo.packageName,
8410                pkg.applicationInfo.processName,
8411                pkg.applicationInfo.uid);
8412
8413        if (pkg != mPlatformPackage) {
8414            // Get all of our default paths setup
8415            pkg.applicationInfo.initForUser(UserHandle.USER_SYSTEM);
8416        }
8417
8418        final String path = scanFile.getPath();
8419        final String cpuAbiOverride = deriveAbiOverride(pkg.cpuAbiOverride, pkgSetting);
8420
8421        if ((scanFlags & SCAN_NEW_INSTALL) == 0) {
8422            derivePackageAbi(pkg, scanFile, cpuAbiOverride, true /* extract libs */);
8423
8424            // Some system apps still use directory structure for native libraries
8425            // in which case we might end up not detecting abi solely based on apk
8426            // structure. Try to detect abi based on directory structure.
8427            if (isSystemApp(pkg) && !pkg.isUpdatedSystemApp() &&
8428                    pkg.applicationInfo.primaryCpuAbi == null) {
8429                setBundledAppAbisAndRoots(pkg, pkgSetting);
8430                setNativeLibraryPaths(pkg);
8431            }
8432
8433        } else {
8434            if ((scanFlags & SCAN_MOVE) != 0) {
8435                // We haven't run dex-opt for this move (since we've moved the compiled output too)
8436                // but we already have this packages package info in the PackageSetting. We just
8437                // use that and derive the native library path based on the new codepath.
8438                pkg.applicationInfo.primaryCpuAbi = pkgSetting.primaryCpuAbiString;
8439                pkg.applicationInfo.secondaryCpuAbi = pkgSetting.secondaryCpuAbiString;
8440            }
8441
8442            // Set native library paths again. For moves, the path will be updated based on the
8443            // ABIs we've determined above. For non-moves, the path will be updated based on the
8444            // ABIs we determined during compilation, but the path will depend on the final
8445            // package path (after the rename away from the stage path).
8446            setNativeLibraryPaths(pkg);
8447        }
8448
8449        // This is a special case for the "system" package, where the ABI is
8450        // dictated by the zygote configuration (and init.rc). We should keep track
8451        // of this ABI so that we can deal with "normal" applications that run under
8452        // the same UID correctly.
8453        if (mPlatformPackage == pkg) {
8454            pkg.applicationInfo.primaryCpuAbi = VMRuntime.getRuntime().is64Bit() ?
8455                    Build.SUPPORTED_64_BIT_ABIS[0] : Build.SUPPORTED_32_BIT_ABIS[0];
8456        }
8457
8458        // If there's a mismatch between the abi-override in the package setting
8459        // and the abiOverride specified for the install. Warn about this because we
8460        // would've already compiled the app without taking the package setting into
8461        // account.
8462        if ((scanFlags & SCAN_NO_DEX) == 0 && (scanFlags & SCAN_NEW_INSTALL) != 0) {
8463            if (cpuAbiOverride == null && pkgSetting.cpuAbiOverrideString != null) {
8464                Slog.w(TAG, "Ignoring persisted ABI override " + cpuAbiOverride +
8465                        " for package " + pkg.packageName);
8466            }
8467        }
8468
8469        pkgSetting.primaryCpuAbiString = pkg.applicationInfo.primaryCpuAbi;
8470        pkgSetting.secondaryCpuAbiString = pkg.applicationInfo.secondaryCpuAbi;
8471        pkgSetting.cpuAbiOverrideString = cpuAbiOverride;
8472
8473        // Copy the derived override back to the parsed package, so that we can
8474        // update the package settings accordingly.
8475        pkg.cpuAbiOverride = cpuAbiOverride;
8476
8477        if (DEBUG_ABI_SELECTION) {
8478            Slog.d(TAG, "Resolved nativeLibraryRoot for " + pkg.applicationInfo.packageName
8479                    + " to root=" + pkg.applicationInfo.nativeLibraryRootDir + ", isa="
8480                    + pkg.applicationInfo.nativeLibraryRootRequiresIsa);
8481        }
8482
8483        // Push the derived path down into PackageSettings so we know what to
8484        // clean up at uninstall time.
8485        pkgSetting.legacyNativeLibraryPathString = pkg.applicationInfo.nativeLibraryRootDir;
8486
8487        if (DEBUG_ABI_SELECTION) {
8488            Log.d(TAG, "Abis for package[" + pkg.packageName + "] are" +
8489                    " primary=" + pkg.applicationInfo.primaryCpuAbi +
8490                    " secondary=" + pkg.applicationInfo.secondaryCpuAbi);
8491        }
8492
8493        if ((scanFlags & SCAN_BOOTING) == 0 && pkgSetting.sharedUser != null) {
8494            // We don't do this here during boot because we can do it all
8495            // at once after scanning all existing packages.
8496            //
8497            // We also do this *before* we perform dexopt on this package, so that
8498            // we can avoid redundant dexopts, and also to make sure we've got the
8499            // code and package path correct.
8500            adjustCpuAbisForSharedUserLPw(pkgSetting.sharedUser.packages,
8501                    pkg, true /* boot complete */);
8502        }
8503
8504        if (mFactoryTest && pkg.requestedPermissions.contains(
8505                android.Manifest.permission.FACTORY_TEST)) {
8506            pkg.applicationInfo.flags |= ApplicationInfo.FLAG_FACTORY_TEST;
8507        }
8508
8509        ArrayList<PackageParser.Package> clientLibPkgs = null;
8510
8511        if ((scanFlags & SCAN_CHECK_ONLY) != 0) {
8512            if (nonMutatedPs != null) {
8513                synchronized (mPackages) {
8514                    mSettings.mPackages.put(nonMutatedPs.name, nonMutatedPs);
8515                }
8516            }
8517            return pkg;
8518        }
8519
8520        // Only privileged apps and updated privileged apps can add child packages.
8521        if (pkg.childPackages != null && !pkg.childPackages.isEmpty()) {
8522            if ((policyFlags & PARSE_IS_PRIVILEGED) == 0) {
8523                throw new PackageManagerException("Only privileged apps and updated "
8524                        + "privileged apps can add child packages. Ignoring package "
8525                        + pkg.packageName);
8526            }
8527            final int childCount = pkg.childPackages.size();
8528            for (int i = 0; i < childCount; i++) {
8529                PackageParser.Package childPkg = pkg.childPackages.get(i);
8530                if (mSettings.hasOtherDisabledSystemPkgWithChildLPr(pkg.packageName,
8531                        childPkg.packageName)) {
8532                    throw new PackageManagerException("Cannot override a child package of "
8533                            + "another disabled system app. Ignoring package " + pkg.packageName);
8534                }
8535            }
8536        }
8537
8538        // writer
8539        synchronized (mPackages) {
8540            if ((pkg.applicationInfo.flags&ApplicationInfo.FLAG_SYSTEM) != 0) {
8541                // Only system apps can add new shared libraries.
8542                if (pkg.libraryNames != null) {
8543                    for (int i=0; i<pkg.libraryNames.size(); i++) {
8544                        String name = pkg.libraryNames.get(i);
8545                        boolean allowed = false;
8546                        if (pkg.isUpdatedSystemApp()) {
8547                            // New library entries can only be added through the
8548                            // system image.  This is important to get rid of a lot
8549                            // of nasty edge cases: for example if we allowed a non-
8550                            // system update of the app to add a library, then uninstalling
8551                            // the update would make the library go away, and assumptions
8552                            // we made such as through app install filtering would now
8553                            // have allowed apps on the device which aren't compatible
8554                            // with it.  Better to just have the restriction here, be
8555                            // conservative, and create many fewer cases that can negatively
8556                            // impact the user experience.
8557                            final PackageSetting sysPs = mSettings
8558                                    .getDisabledSystemPkgLPr(pkg.packageName);
8559                            if (sysPs.pkg != null && sysPs.pkg.libraryNames != null) {
8560                                for (int j=0; j<sysPs.pkg.libraryNames.size(); j++) {
8561                                    if (name.equals(sysPs.pkg.libraryNames.get(j))) {
8562                                        allowed = true;
8563                                        break;
8564                                    }
8565                                }
8566                            }
8567                        } else {
8568                            allowed = true;
8569                        }
8570                        if (allowed) {
8571                            if (!mSharedLibraries.containsKey(name)) {
8572                                mSharedLibraries.put(name, new SharedLibraryEntry(null, pkg.packageName));
8573                            } else if (!name.equals(pkg.packageName)) {
8574                                Slog.w(TAG, "Package " + pkg.packageName + " library "
8575                                        + name + " already exists; skipping");
8576                            }
8577                        } else {
8578                            Slog.w(TAG, "Package " + pkg.packageName + " declares lib "
8579                                    + name + " that is not declared on system image; skipping");
8580                        }
8581                    }
8582                    if ((scanFlags & SCAN_BOOTING) == 0) {
8583                        // If we are not booting, we need to update any applications
8584                        // that are clients of our shared library.  If we are booting,
8585                        // this will all be done once the scan is complete.
8586                        clientLibPkgs = updateAllSharedLibrariesLPw(pkg);
8587                    }
8588                }
8589            }
8590        }
8591
8592        if ((scanFlags & SCAN_BOOTING) != 0) {
8593            // No apps can run during boot scan, so they don't need to be frozen
8594        } else if ((scanFlags & SCAN_DONT_KILL_APP) != 0) {
8595            // Caller asked to not kill app, so it's probably not frozen
8596        } else if ((scanFlags & SCAN_IGNORE_FROZEN) != 0) {
8597            // Caller asked us to ignore frozen check for some reason; they
8598            // probably didn't know the package name
8599        } else {
8600            // We're doing major surgery on this package, so it better be frozen
8601            // right now to keep it from launching
8602            checkPackageFrozen(pkgName);
8603        }
8604
8605        // Also need to kill any apps that are dependent on the library.
8606        if (clientLibPkgs != null) {
8607            for (int i=0; i<clientLibPkgs.size(); i++) {
8608                PackageParser.Package clientPkg = clientLibPkgs.get(i);
8609                killApplication(clientPkg.applicationInfo.packageName,
8610                        clientPkg.applicationInfo.uid, "update lib");
8611            }
8612        }
8613
8614        // Make sure we're not adding any bogus keyset info
8615        KeySetManagerService ksms = mSettings.mKeySetManagerService;
8616        ksms.assertScannedPackageValid(pkg);
8617
8618        // writer
8619        Trace.traceBegin(TRACE_TAG_PACKAGE_MANAGER, "updateSettings");
8620
8621        boolean createIdmapFailed = false;
8622        synchronized (mPackages) {
8623            // We don't expect installation to fail beyond this point
8624
8625            if (pkgSetting.pkg != null) {
8626                // Note that |user| might be null during the initial boot scan. If a codePath
8627                // for an app has changed during a boot scan, it's due to an app update that's
8628                // part of the system partition and marker changes must be applied to all users.
8629                maybeRenameForeignDexMarkers(pkgSetting.pkg, pkg,
8630                    (user != null) ? user : UserHandle.ALL);
8631            }
8632
8633            // Add the new setting to mSettings
8634            mSettings.insertPackageSettingLPw(pkgSetting, pkg);
8635            // Add the new setting to mPackages
8636            mPackages.put(pkg.applicationInfo.packageName, pkg);
8637            // Make sure we don't accidentally delete its data.
8638            final Iterator<PackageCleanItem> iter = mSettings.mPackagesToBeCleaned.iterator();
8639            while (iter.hasNext()) {
8640                PackageCleanItem item = iter.next();
8641                if (pkgName.equals(item.packageName)) {
8642                    iter.remove();
8643                }
8644            }
8645
8646            // Take care of first install / last update times.
8647            if (currentTime != 0) {
8648                if (pkgSetting.firstInstallTime == 0) {
8649                    pkgSetting.firstInstallTime = pkgSetting.lastUpdateTime = currentTime;
8650                } else if ((scanFlags&SCAN_UPDATE_TIME) != 0) {
8651                    pkgSetting.lastUpdateTime = currentTime;
8652                }
8653            } else if (pkgSetting.firstInstallTime == 0) {
8654                // We need *something*.  Take time time stamp of the file.
8655                pkgSetting.firstInstallTime = pkgSetting.lastUpdateTime = scanFileTime;
8656            } else if ((policyFlags&PackageParser.PARSE_IS_SYSTEM_DIR) != 0) {
8657                if (scanFileTime != pkgSetting.timeStamp) {
8658                    // A package on the system image has changed; consider this
8659                    // to be an update.
8660                    pkgSetting.lastUpdateTime = scanFileTime;
8661                }
8662            }
8663
8664            // Add the package's KeySets to the global KeySetManagerService
8665            ksms.addScannedPackageLPw(pkg);
8666
8667            int N = pkg.providers.size();
8668            StringBuilder r = null;
8669            int i;
8670            for (i=0; i<N; i++) {
8671                PackageParser.Provider p = pkg.providers.get(i);
8672                p.info.processName = fixProcessName(pkg.applicationInfo.processName,
8673                        p.info.processName, pkg.applicationInfo.uid);
8674                mProviders.addProvider(p);
8675                p.syncable = p.info.isSyncable;
8676                if (p.info.authority != null) {
8677                    String names[] = p.info.authority.split(";");
8678                    p.info.authority = null;
8679                    for (int j = 0; j < names.length; j++) {
8680                        if (j == 1 && p.syncable) {
8681                            // We only want the first authority for a provider to possibly be
8682                            // syncable, so if we already added this provider using a different
8683                            // authority clear the syncable flag. We copy the provider before
8684                            // changing it because the mProviders object contains a reference
8685                            // to a provider that we don't want to change.
8686                            // Only do this for the second authority since the resulting provider
8687                            // object can be the same for all future authorities for this provider.
8688                            p = new PackageParser.Provider(p);
8689                            p.syncable = false;
8690                        }
8691                        if (!mProvidersByAuthority.containsKey(names[j])) {
8692                            mProvidersByAuthority.put(names[j], p);
8693                            if (p.info.authority == null) {
8694                                p.info.authority = names[j];
8695                            } else {
8696                                p.info.authority = p.info.authority + ";" + names[j];
8697                            }
8698                            if (DEBUG_PACKAGE_SCANNING) {
8699                                if ((policyFlags & PackageParser.PARSE_CHATTY) != 0)
8700                                    Log.d(TAG, "Registered content provider: " + names[j]
8701                                            + ", className = " + p.info.name + ", isSyncable = "
8702                                            + p.info.isSyncable);
8703                            }
8704                        } else {
8705                            PackageParser.Provider other = mProvidersByAuthority.get(names[j]);
8706                            Slog.w(TAG, "Skipping provider name " + names[j] +
8707                                    " (in package " + pkg.applicationInfo.packageName +
8708                                    "): name already used by "
8709                                    + ((other != null && other.getComponentName() != null)
8710                                            ? other.getComponentName().getPackageName() : "?"));
8711                        }
8712                    }
8713                }
8714                if ((policyFlags&PackageParser.PARSE_CHATTY) != 0) {
8715                    if (r == null) {
8716                        r = new StringBuilder(256);
8717                    } else {
8718                        r.append(' ');
8719                    }
8720                    r.append(p.info.name);
8721                }
8722            }
8723            if (r != null) {
8724                if (DEBUG_PACKAGE_SCANNING) Log.d(TAG, "  Providers: " + r);
8725            }
8726
8727            N = pkg.services.size();
8728            r = null;
8729            for (i=0; i<N; i++) {
8730                PackageParser.Service s = pkg.services.get(i);
8731                s.info.processName = fixProcessName(pkg.applicationInfo.processName,
8732                        s.info.processName, pkg.applicationInfo.uid);
8733                mServices.addService(s);
8734                if ((policyFlags&PackageParser.PARSE_CHATTY) != 0) {
8735                    if (r == null) {
8736                        r = new StringBuilder(256);
8737                    } else {
8738                        r.append(' ');
8739                    }
8740                    r.append(s.info.name);
8741                }
8742            }
8743            if (r != null) {
8744                if (DEBUG_PACKAGE_SCANNING) Log.d(TAG, "  Services: " + r);
8745            }
8746
8747            N = pkg.receivers.size();
8748            r = null;
8749            for (i=0; i<N; i++) {
8750                PackageParser.Activity a = pkg.receivers.get(i);
8751                a.info.processName = fixProcessName(pkg.applicationInfo.processName,
8752                        a.info.processName, pkg.applicationInfo.uid);
8753                mReceivers.addActivity(a, "receiver");
8754                if ((policyFlags&PackageParser.PARSE_CHATTY) != 0) {
8755                    if (r == null) {
8756                        r = new StringBuilder(256);
8757                    } else {
8758                        r.append(' ');
8759                    }
8760                    r.append(a.info.name);
8761                }
8762            }
8763            if (r != null) {
8764                if (DEBUG_PACKAGE_SCANNING) Log.d(TAG, "  Receivers: " + r);
8765            }
8766
8767            N = pkg.activities.size();
8768            r = null;
8769            for (i=0; i<N; i++) {
8770                PackageParser.Activity a = pkg.activities.get(i);
8771                a.info.processName = fixProcessName(pkg.applicationInfo.processName,
8772                        a.info.processName, pkg.applicationInfo.uid);
8773                mActivities.addActivity(a, "activity");
8774                if ((policyFlags&PackageParser.PARSE_CHATTY) != 0) {
8775                    if (r == null) {
8776                        r = new StringBuilder(256);
8777                    } else {
8778                        r.append(' ');
8779                    }
8780                    r.append(a.info.name);
8781                }
8782            }
8783            if (r != null) {
8784                if (DEBUG_PACKAGE_SCANNING) Log.d(TAG, "  Activities: " + r);
8785            }
8786
8787            N = pkg.permissionGroups.size();
8788            r = null;
8789            for (i=0; i<N; i++) {
8790                PackageParser.PermissionGroup pg = pkg.permissionGroups.get(i);
8791                PackageParser.PermissionGroup cur = mPermissionGroups.get(pg.info.name);
8792                if (cur == null) {
8793                    mPermissionGroups.put(pg.info.name, pg);
8794                    if ((policyFlags&PackageParser.PARSE_CHATTY) != 0) {
8795                        if (r == null) {
8796                            r = new StringBuilder(256);
8797                        } else {
8798                            r.append(' ');
8799                        }
8800                        r.append(pg.info.name);
8801                    }
8802                } else {
8803                    Slog.w(TAG, "Permission group " + pg.info.name + " from package "
8804                            + pg.info.packageName + " ignored: original from "
8805                            + cur.info.packageName);
8806                    if ((policyFlags&PackageParser.PARSE_CHATTY) != 0) {
8807                        if (r == null) {
8808                            r = new StringBuilder(256);
8809                        } else {
8810                            r.append(' ');
8811                        }
8812                        r.append("DUP:");
8813                        r.append(pg.info.name);
8814                    }
8815                }
8816            }
8817            if (r != null) {
8818                if (DEBUG_PACKAGE_SCANNING) Log.d(TAG, "  Permission Groups: " + r);
8819            }
8820
8821            N = pkg.permissions.size();
8822            r = null;
8823            for (i=0; i<N; i++) {
8824                PackageParser.Permission p = pkg.permissions.get(i);
8825
8826                // Assume by default that we did not install this permission into the system.
8827                p.info.flags &= ~PermissionInfo.FLAG_INSTALLED;
8828
8829                // Now that permission groups have a special meaning, we ignore permission
8830                // groups for legacy apps to prevent unexpected behavior. In particular,
8831                // permissions for one app being granted to someone just becase they happen
8832                // to be in a group defined by another app (before this had no implications).
8833                if (pkg.applicationInfo.targetSdkVersion > Build.VERSION_CODES.LOLLIPOP_MR1) {
8834                    p.group = mPermissionGroups.get(p.info.group);
8835                    // Warn for a permission in an unknown group.
8836                    if (p.info.group != null && p.group == null) {
8837                        Slog.w(TAG, "Permission " + p.info.name + " from package "
8838                                + p.info.packageName + " in an unknown group " + p.info.group);
8839                    }
8840                }
8841
8842                ArrayMap<String, BasePermission> permissionMap =
8843                        p.tree ? mSettings.mPermissionTrees
8844                                : mSettings.mPermissions;
8845                BasePermission bp = permissionMap.get(p.info.name);
8846
8847                // Allow system apps to redefine non-system permissions
8848                if (bp != null && !Objects.equals(bp.sourcePackage, p.info.packageName)) {
8849                    final boolean currentOwnerIsSystem = (bp.perm != null
8850                            && isSystemApp(bp.perm.owner));
8851                    if (isSystemApp(p.owner)) {
8852                        if (bp.type == BasePermission.TYPE_BUILTIN && bp.perm == null) {
8853                            // It's a built-in permission and no owner, take ownership now
8854                            bp.packageSetting = pkgSetting;
8855                            bp.perm = p;
8856                            bp.uid = pkg.applicationInfo.uid;
8857                            bp.sourcePackage = p.info.packageName;
8858                            p.info.flags |= PermissionInfo.FLAG_INSTALLED;
8859                        } else if (!currentOwnerIsSystem) {
8860                            String msg = "New decl " + p.owner + " of permission  "
8861                                    + p.info.name + " is system; overriding " + bp.sourcePackage;
8862                            reportSettingsProblem(Log.WARN, msg);
8863                            bp = null;
8864                        }
8865                    }
8866                }
8867
8868                if (bp == null) {
8869                    bp = new BasePermission(p.info.name, p.info.packageName,
8870                            BasePermission.TYPE_NORMAL);
8871                    permissionMap.put(p.info.name, bp);
8872                }
8873
8874                if (bp.perm == null) {
8875                    if (bp.sourcePackage == null
8876                            || bp.sourcePackage.equals(p.info.packageName)) {
8877                        BasePermission tree = findPermissionTreeLP(p.info.name);
8878                        if (tree == null
8879                                || tree.sourcePackage.equals(p.info.packageName)) {
8880                            bp.packageSetting = pkgSetting;
8881                            bp.perm = p;
8882                            bp.uid = pkg.applicationInfo.uid;
8883                            bp.sourcePackage = p.info.packageName;
8884                            p.info.flags |= PermissionInfo.FLAG_INSTALLED;
8885                            if ((policyFlags&PackageParser.PARSE_CHATTY) != 0) {
8886                                if (r == null) {
8887                                    r = new StringBuilder(256);
8888                                } else {
8889                                    r.append(' ');
8890                                }
8891                                r.append(p.info.name);
8892                            }
8893                        } else {
8894                            Slog.w(TAG, "Permission " + p.info.name + " from package "
8895                                    + p.info.packageName + " ignored: base tree "
8896                                    + tree.name + " is from package "
8897                                    + tree.sourcePackage);
8898                        }
8899                    } else {
8900                        Slog.w(TAG, "Permission " + p.info.name + " from package "
8901                                + p.info.packageName + " ignored: original from "
8902                                + bp.sourcePackage);
8903                    }
8904                } else if ((policyFlags&PackageParser.PARSE_CHATTY) != 0) {
8905                    if (r == null) {
8906                        r = new StringBuilder(256);
8907                    } else {
8908                        r.append(' ');
8909                    }
8910                    r.append("DUP:");
8911                    r.append(p.info.name);
8912                }
8913                if (bp.perm == p) {
8914                    bp.protectionLevel = p.info.protectionLevel;
8915                }
8916            }
8917
8918            if (r != null) {
8919                if (DEBUG_PACKAGE_SCANNING) Log.d(TAG, "  Permissions: " + r);
8920            }
8921
8922            N = pkg.instrumentation.size();
8923            r = null;
8924            for (i=0; i<N; i++) {
8925                PackageParser.Instrumentation a = pkg.instrumentation.get(i);
8926                a.info.packageName = pkg.applicationInfo.packageName;
8927                a.info.sourceDir = pkg.applicationInfo.sourceDir;
8928                a.info.publicSourceDir = pkg.applicationInfo.publicSourceDir;
8929                a.info.splitSourceDirs = pkg.applicationInfo.splitSourceDirs;
8930                a.info.splitPublicSourceDirs = pkg.applicationInfo.splitPublicSourceDirs;
8931                a.info.dataDir = pkg.applicationInfo.dataDir;
8932                a.info.deviceProtectedDataDir = pkg.applicationInfo.deviceProtectedDataDir;
8933                a.info.credentialProtectedDataDir = pkg.applicationInfo.credentialProtectedDataDir;
8934
8935                a.info.nativeLibraryDir = pkg.applicationInfo.nativeLibraryDir;
8936                a.info.secondaryNativeLibraryDir = pkg.applicationInfo.secondaryNativeLibraryDir;
8937                mInstrumentation.put(a.getComponentName(), a);
8938                if ((policyFlags&PackageParser.PARSE_CHATTY) != 0) {
8939                    if (r == null) {
8940                        r = new StringBuilder(256);
8941                    } else {
8942                        r.append(' ');
8943                    }
8944                    r.append(a.info.name);
8945                }
8946            }
8947            if (r != null) {
8948                if (DEBUG_PACKAGE_SCANNING) Log.d(TAG, "  Instrumentation: " + r);
8949            }
8950
8951            if (pkg.protectedBroadcasts != null) {
8952                N = pkg.protectedBroadcasts.size();
8953                for (i=0; i<N; i++) {
8954                    mProtectedBroadcasts.add(pkg.protectedBroadcasts.get(i));
8955                }
8956            }
8957
8958            pkgSetting.setTimeStamp(scanFileTime);
8959
8960            // Create idmap files for pairs of (packages, overlay packages).
8961            // Note: "android", ie framework-res.apk, is handled by native layers.
8962            if (pkg.mOverlayTarget != null) {
8963                // This is an overlay package.
8964                if (pkg.mOverlayTarget != null && !pkg.mOverlayTarget.equals("android")) {
8965                    if (!mOverlays.containsKey(pkg.mOverlayTarget)) {
8966                        mOverlays.put(pkg.mOverlayTarget,
8967                                new ArrayMap<String, PackageParser.Package>());
8968                    }
8969                    ArrayMap<String, PackageParser.Package> map = mOverlays.get(pkg.mOverlayTarget);
8970                    map.put(pkg.packageName, pkg);
8971                    PackageParser.Package orig = mPackages.get(pkg.mOverlayTarget);
8972                    if (orig != null && !createIdmapForPackagePairLI(orig, pkg)) {
8973                        createIdmapFailed = true;
8974                    }
8975                }
8976            } else if (mOverlays.containsKey(pkg.packageName) &&
8977                    !pkg.packageName.equals("android")) {
8978                // This is a regular package, with one or more known overlay packages.
8979                createIdmapsForPackageLI(pkg);
8980            }
8981        }
8982
8983        Trace.traceEnd(TRACE_TAG_PACKAGE_MANAGER);
8984
8985        if (createIdmapFailed) {
8986            throw new PackageManagerException(INSTALL_FAILED_UPDATE_INCOMPATIBLE,
8987                    "scanPackageLI failed to createIdmap");
8988        }
8989        return pkg;
8990    }
8991
8992    private void maybeRenameForeignDexMarkers(PackageParser.Package existing,
8993            PackageParser.Package update, UserHandle user) {
8994        if (existing.applicationInfo == null || update.applicationInfo == null) {
8995            // This isn't due to an app installation.
8996            return;
8997        }
8998
8999        final File oldCodePath = new File(existing.applicationInfo.getCodePath());
9000        final File newCodePath = new File(update.applicationInfo.getCodePath());
9001
9002        // The codePath hasn't changed, so there's nothing for us to do.
9003        if (Objects.equals(oldCodePath, newCodePath)) {
9004            return;
9005        }
9006
9007        File canonicalNewCodePath;
9008        try {
9009            canonicalNewCodePath = new File(PackageManagerServiceUtils.realpath(newCodePath));
9010        } catch (IOException e) {
9011            Slog.w(TAG, "Failed to get canonical path.", e);
9012            return;
9013        }
9014
9015        // This is a bit of a hack. The oldCodePath doesn't exist at this point (because
9016        // we've already renamed / deleted it) so we cannot call realpath on it. Here we assume
9017        // that the last component of the path (i.e, the name) doesn't need canonicalization
9018        // (i.e, that it isn't ".", ".." or a symbolic link). This is a valid assumption for now
9019        // but may change in the future. Hopefully this function won't exist at that point.
9020        final File canonicalOldCodePath = new File(canonicalNewCodePath.getParentFile(),
9021                oldCodePath.getName());
9022
9023        // Calculate the prefixes of the markers. These are just the paths with "/" replaced
9024        // with "@".
9025        String oldMarkerPrefix = canonicalOldCodePath.getAbsolutePath().replace('/', '@');
9026        if (!oldMarkerPrefix.endsWith("@")) {
9027            oldMarkerPrefix += "@";
9028        }
9029        String newMarkerPrefix = canonicalNewCodePath.getAbsolutePath().replace('/', '@');
9030        if (!newMarkerPrefix.endsWith("@")) {
9031            newMarkerPrefix += "@";
9032        }
9033
9034        List<String> updatedPaths = update.getAllCodePathsExcludingResourceOnly();
9035        List<String> markerSuffixes = new ArrayList<String>(updatedPaths.size());
9036        for (String updatedPath : updatedPaths) {
9037            String updatedPathName = new File(updatedPath).getName();
9038            markerSuffixes.add(updatedPathName.replace('/', '@'));
9039        }
9040
9041        for (int userId : resolveUserIds(user.getIdentifier())) {
9042            File profileDir = Environment.getDataProfilesDeForeignDexDirectory(userId);
9043
9044            for (String markerSuffix : markerSuffixes) {
9045                File oldForeignUseMark = new File(profileDir, oldMarkerPrefix + markerSuffix);
9046                File newForeignUseMark = new File(profileDir, newMarkerPrefix + markerSuffix);
9047                if (oldForeignUseMark.exists()) {
9048                    try {
9049                        Os.rename(oldForeignUseMark.getAbsolutePath(),
9050                                newForeignUseMark.getAbsolutePath());
9051                    } catch (ErrnoException e) {
9052                        Slog.w(TAG, "Failed to rename foreign use marker", e);
9053                        oldForeignUseMark.delete();
9054                    }
9055                }
9056            }
9057        }
9058    }
9059
9060    /**
9061     * Derive the ABI of a non-system package located at {@code scanFile}. This information
9062     * is derived purely on the basis of the contents of {@code scanFile} and
9063     * {@code cpuAbiOverride}.
9064     *
9065     * If {@code extractLibs} is true, native libraries are extracted from the app if required.
9066     */
9067    private void derivePackageAbi(PackageParser.Package pkg, File scanFile,
9068                                 String cpuAbiOverride, boolean extractLibs)
9069            throws PackageManagerException {
9070        // TODO: We can probably be smarter about this stuff. For installed apps,
9071        // we can calculate this information at install time once and for all. For
9072        // system apps, we can probably assume that this information doesn't change
9073        // after the first boot scan. As things stand, we do lots of unnecessary work.
9074
9075        // Give ourselves some initial paths; we'll come back for another
9076        // pass once we've determined ABI below.
9077        setNativeLibraryPaths(pkg);
9078
9079        // We would never need to extract libs for forward-locked and external packages,
9080        // since the container service will do it for us. We shouldn't attempt to
9081        // extract libs from system app when it was not updated.
9082        if (pkg.isForwardLocked() || pkg.applicationInfo.isExternalAsec() ||
9083                (isSystemApp(pkg) && !pkg.isUpdatedSystemApp())) {
9084            extractLibs = false;
9085        }
9086
9087        final String nativeLibraryRootStr = pkg.applicationInfo.nativeLibraryRootDir;
9088        final boolean useIsaSpecificSubdirs = pkg.applicationInfo.nativeLibraryRootRequiresIsa;
9089
9090        NativeLibraryHelper.Handle handle = null;
9091        try {
9092            handle = NativeLibraryHelper.Handle.create(pkg);
9093            // TODO(multiArch): This can be null for apps that didn't go through the
9094            // usual installation process. We can calculate it again, like we
9095            // do during install time.
9096            //
9097            // TODO(multiArch): Why do we need to rescan ASEC apps again ? It seems totally
9098            // unnecessary.
9099            final File nativeLibraryRoot = new File(nativeLibraryRootStr);
9100
9101            // Null out the abis so that they can be recalculated.
9102            pkg.applicationInfo.primaryCpuAbi = null;
9103            pkg.applicationInfo.secondaryCpuAbi = null;
9104            if (isMultiArch(pkg.applicationInfo)) {
9105                // Warn if we've set an abiOverride for multi-lib packages..
9106                // By definition, we need to copy both 32 and 64 bit libraries for
9107                // such packages.
9108                if (pkg.cpuAbiOverride != null
9109                        && !NativeLibraryHelper.CLEAR_ABI_OVERRIDE.equals(pkg.cpuAbiOverride)) {
9110                    Slog.w(TAG, "Ignoring abiOverride for multi arch application.");
9111                }
9112
9113                int abi32 = PackageManager.NO_NATIVE_LIBRARIES;
9114                int abi64 = PackageManager.NO_NATIVE_LIBRARIES;
9115                if (Build.SUPPORTED_32_BIT_ABIS.length > 0) {
9116                    if (extractLibs) {
9117                        abi32 = NativeLibraryHelper.copyNativeBinariesForSupportedAbi(handle,
9118                                nativeLibraryRoot, Build.SUPPORTED_32_BIT_ABIS,
9119                                useIsaSpecificSubdirs);
9120                    } else {
9121                        abi32 = NativeLibraryHelper.findSupportedAbi(handle, Build.SUPPORTED_32_BIT_ABIS);
9122                    }
9123                }
9124
9125                maybeThrowExceptionForMultiArchCopy(
9126                        "Error unpackaging 32 bit native libs for multiarch app.", abi32);
9127
9128                if (Build.SUPPORTED_64_BIT_ABIS.length > 0) {
9129                    if (extractLibs) {
9130                        abi64 = NativeLibraryHelper.copyNativeBinariesForSupportedAbi(handle,
9131                                nativeLibraryRoot, Build.SUPPORTED_64_BIT_ABIS,
9132                                useIsaSpecificSubdirs);
9133                    } else {
9134                        abi64 = NativeLibraryHelper.findSupportedAbi(handle, Build.SUPPORTED_64_BIT_ABIS);
9135                    }
9136                }
9137
9138                maybeThrowExceptionForMultiArchCopy(
9139                        "Error unpackaging 64 bit native libs for multiarch app.", abi64);
9140
9141                if (abi64 >= 0) {
9142                    pkg.applicationInfo.primaryCpuAbi = Build.SUPPORTED_64_BIT_ABIS[abi64];
9143                }
9144
9145                if (abi32 >= 0) {
9146                    final String abi = Build.SUPPORTED_32_BIT_ABIS[abi32];
9147                    if (abi64 >= 0) {
9148                        if (pkg.use32bitAbi) {
9149                            pkg.applicationInfo.secondaryCpuAbi = pkg.applicationInfo.primaryCpuAbi;
9150                            pkg.applicationInfo.primaryCpuAbi = abi;
9151                        } else {
9152                            pkg.applicationInfo.secondaryCpuAbi = abi;
9153                        }
9154                    } else {
9155                        pkg.applicationInfo.primaryCpuAbi = abi;
9156                    }
9157                }
9158
9159            } else {
9160                String[] abiList = (cpuAbiOverride != null) ?
9161                        new String[] { cpuAbiOverride } : Build.SUPPORTED_ABIS;
9162
9163                // Enable gross and lame hacks for apps that are built with old
9164                // SDK tools. We must scan their APKs for renderscript bitcode and
9165                // not launch them if it's present. Don't bother checking on devices
9166                // that don't have 64 bit support.
9167                boolean needsRenderScriptOverride = false;
9168                if (Build.SUPPORTED_64_BIT_ABIS.length > 0 && cpuAbiOverride == null &&
9169                        NativeLibraryHelper.hasRenderscriptBitcode(handle)) {
9170                    abiList = Build.SUPPORTED_32_BIT_ABIS;
9171                    needsRenderScriptOverride = true;
9172                }
9173
9174                final int copyRet;
9175                if (extractLibs) {
9176                    copyRet = NativeLibraryHelper.copyNativeBinariesForSupportedAbi(handle,
9177                            nativeLibraryRoot, abiList, useIsaSpecificSubdirs);
9178                } else {
9179                    copyRet = NativeLibraryHelper.findSupportedAbi(handle, abiList);
9180                }
9181
9182                if (copyRet < 0 && copyRet != PackageManager.NO_NATIVE_LIBRARIES) {
9183                    throw new PackageManagerException(INSTALL_FAILED_INTERNAL_ERROR,
9184                            "Error unpackaging native libs for app, errorCode=" + copyRet);
9185                }
9186
9187                if (copyRet >= 0) {
9188                    pkg.applicationInfo.primaryCpuAbi = abiList[copyRet];
9189                } else if (copyRet == PackageManager.NO_NATIVE_LIBRARIES && cpuAbiOverride != null) {
9190                    pkg.applicationInfo.primaryCpuAbi = cpuAbiOverride;
9191                } else if (needsRenderScriptOverride) {
9192                    pkg.applicationInfo.primaryCpuAbi = abiList[0];
9193                }
9194            }
9195        } catch (IOException ioe) {
9196            Slog.e(TAG, "Unable to get canonical file " + ioe.toString());
9197        } finally {
9198            IoUtils.closeQuietly(handle);
9199        }
9200
9201        // Now that we've calculated the ABIs and determined if it's an internal app,
9202        // we will go ahead and populate the nativeLibraryPath.
9203        setNativeLibraryPaths(pkg);
9204    }
9205
9206    /**
9207     * Adjusts ABIs for a set of packages belonging to a shared user so that they all match.
9208     * i.e, so that all packages can be run inside a single process if required.
9209     *
9210     * Optionally, callers can pass in a parsed package via {@code newPackage} in which case
9211     * this function will either try and make the ABI for all packages in {@code packagesForUser}
9212     * match {@code scannedPackage} or will update the ABI of {@code scannedPackage} to match
9213     * the ABI selected for {@code packagesForUser}. This variant is used when installing or
9214     * updating a package that belongs to a shared user.
9215     *
9216     * NOTE: We currently only match for the primary CPU abi string. Matching the secondary
9217     * adds unnecessary complexity.
9218     */
9219    private void adjustCpuAbisForSharedUserLPw(Set<PackageSetting> packagesForUser,
9220            PackageParser.Package scannedPackage, boolean bootComplete) {
9221        String requiredInstructionSet = null;
9222        if (scannedPackage != null && scannedPackage.applicationInfo.primaryCpuAbi != null) {
9223            requiredInstructionSet = VMRuntime.getInstructionSet(
9224                     scannedPackage.applicationInfo.primaryCpuAbi);
9225        }
9226
9227        PackageSetting requirer = null;
9228        for (PackageSetting ps : packagesForUser) {
9229            // If packagesForUser contains scannedPackage, we skip it. This will happen
9230            // when scannedPackage is an update of an existing package. Without this check,
9231            // we will never be able to change the ABI of any package belonging to a shared
9232            // user, even if it's compatible with other packages.
9233            if (scannedPackage == null || !scannedPackage.packageName.equals(ps.name)) {
9234                if (ps.primaryCpuAbiString == null) {
9235                    continue;
9236                }
9237
9238                final String instructionSet = VMRuntime.getInstructionSet(ps.primaryCpuAbiString);
9239                if (requiredInstructionSet != null && !instructionSet.equals(requiredInstructionSet)) {
9240                    // We have a mismatch between instruction sets (say arm vs arm64) warn about
9241                    // this but there's not much we can do.
9242                    String errorMessage = "Instruction set mismatch, "
9243                            + ((requirer == null) ? "[caller]" : requirer)
9244                            + " requires " + requiredInstructionSet + " whereas " + ps
9245                            + " requires " + instructionSet;
9246                    Slog.w(TAG, errorMessage);
9247                }
9248
9249                if (requiredInstructionSet == null) {
9250                    requiredInstructionSet = instructionSet;
9251                    requirer = ps;
9252                }
9253            }
9254        }
9255
9256        if (requiredInstructionSet != null) {
9257            String adjustedAbi;
9258            if (requirer != null) {
9259                // requirer != null implies that either scannedPackage was null or that scannedPackage
9260                // did not require an ABI, in which case we have to adjust scannedPackage to match
9261                // the ABI of the set (which is the same as requirer's ABI)
9262                adjustedAbi = requirer.primaryCpuAbiString;
9263                if (scannedPackage != null) {
9264                    scannedPackage.applicationInfo.primaryCpuAbi = adjustedAbi;
9265                }
9266            } else {
9267                // requirer == null implies that we're updating all ABIs in the set to
9268                // match scannedPackage.
9269                adjustedAbi =  scannedPackage.applicationInfo.primaryCpuAbi;
9270            }
9271
9272            for (PackageSetting ps : packagesForUser) {
9273                if (scannedPackage == null || !scannedPackage.packageName.equals(ps.name)) {
9274                    if (ps.primaryCpuAbiString != null) {
9275                        continue;
9276                    }
9277
9278                    ps.primaryCpuAbiString = adjustedAbi;
9279                    if (ps.pkg != null && ps.pkg.applicationInfo != null &&
9280                            !TextUtils.equals(adjustedAbi, ps.pkg.applicationInfo.primaryCpuAbi)) {
9281                        ps.pkg.applicationInfo.primaryCpuAbi = adjustedAbi;
9282                        Slog.i(TAG, "Adjusting ABI for " + ps.name + " to " + adjustedAbi
9283                                + " (requirer="
9284                                + (requirer == null ? "null" : requirer.pkg.packageName)
9285                                + ", scannedPackage="
9286                                + (scannedPackage != null ? scannedPackage.packageName : "null")
9287                                + ")");
9288                        try {
9289                            mInstaller.rmdex(ps.codePathString,
9290                                    getDexCodeInstructionSet(getPreferredInstructionSet()));
9291                        } catch (InstallerException ignored) {
9292                        }
9293                    }
9294                }
9295            }
9296        }
9297    }
9298
9299    private void setUpCustomResolverActivity(PackageParser.Package pkg) {
9300        synchronized (mPackages) {
9301            mResolverReplaced = true;
9302            // Set up information for custom user intent resolution activity.
9303            mResolveActivity.applicationInfo = pkg.applicationInfo;
9304            mResolveActivity.name = mCustomResolverComponentName.getClassName();
9305            mResolveActivity.packageName = pkg.applicationInfo.packageName;
9306            mResolveActivity.processName = pkg.applicationInfo.packageName;
9307            mResolveActivity.launchMode = ActivityInfo.LAUNCH_MULTIPLE;
9308            mResolveActivity.flags = ActivityInfo.FLAG_EXCLUDE_FROM_RECENTS |
9309                    ActivityInfo.FLAG_FINISH_ON_CLOSE_SYSTEM_DIALOGS;
9310            mResolveActivity.theme = 0;
9311            mResolveActivity.exported = true;
9312            mResolveActivity.enabled = true;
9313            mResolveInfo.activityInfo = mResolveActivity;
9314            mResolveInfo.priority = 0;
9315            mResolveInfo.preferredOrder = 0;
9316            mResolveInfo.match = 0;
9317            mResolveComponentName = mCustomResolverComponentName;
9318            Slog.i(TAG, "Replacing default ResolverActivity with custom activity: " +
9319                    mResolveComponentName);
9320        }
9321    }
9322
9323    private void setUpEphemeralInstallerActivityLP(ComponentName installerComponent) {
9324        final PackageParser.Package pkg = mPackages.get(installerComponent.getPackageName());
9325
9326        // Set up information for ephemeral installer activity
9327        mEphemeralInstallerActivity.applicationInfo = pkg.applicationInfo;
9328        mEphemeralInstallerActivity.name = mEphemeralInstallerComponent.getClassName();
9329        mEphemeralInstallerActivity.packageName = pkg.applicationInfo.packageName;
9330        mEphemeralInstallerActivity.processName = pkg.applicationInfo.packageName;
9331        mEphemeralInstallerActivity.launchMode = ActivityInfo.LAUNCH_MULTIPLE;
9332        mEphemeralInstallerActivity.flags = ActivityInfo.FLAG_EXCLUDE_FROM_RECENTS |
9333                ActivityInfo.FLAG_FINISH_ON_CLOSE_SYSTEM_DIALOGS;
9334        mEphemeralInstallerActivity.theme = 0;
9335        mEphemeralInstallerActivity.exported = true;
9336        mEphemeralInstallerActivity.enabled = true;
9337        mEphemeralInstallerInfo.activityInfo = mEphemeralInstallerActivity;
9338        mEphemeralInstallerInfo.priority = 0;
9339        mEphemeralInstallerInfo.preferredOrder = 0;
9340        mEphemeralInstallerInfo.match = 0;
9341
9342        if (DEBUG_EPHEMERAL) {
9343            Slog.d(TAG, "Set ephemeral installer activity: " + mEphemeralInstallerComponent);
9344        }
9345    }
9346
9347    private static String calculateBundledApkRoot(final String codePathString) {
9348        final File codePath = new File(codePathString);
9349        final File codeRoot;
9350        if (FileUtils.contains(Environment.getRootDirectory(), codePath)) {
9351            codeRoot = Environment.getRootDirectory();
9352        } else if (FileUtils.contains(Environment.getOemDirectory(), codePath)) {
9353            codeRoot = Environment.getOemDirectory();
9354        } else if (FileUtils.contains(Environment.getVendorDirectory(), codePath)) {
9355            codeRoot = Environment.getVendorDirectory();
9356        } else {
9357            // Unrecognized code path; take its top real segment as the apk root:
9358            // e.g. /something/app/blah.apk => /something
9359            try {
9360                File f = codePath.getCanonicalFile();
9361                File parent = f.getParentFile();    // non-null because codePath is a file
9362                File tmp;
9363                while ((tmp = parent.getParentFile()) != null) {
9364                    f = parent;
9365                    parent = tmp;
9366                }
9367                codeRoot = f;
9368                Slog.w(TAG, "Unrecognized code path "
9369                        + codePath + " - using " + codeRoot);
9370            } catch (IOException e) {
9371                // Can't canonicalize the code path -- shenanigans?
9372                Slog.w(TAG, "Can't canonicalize code path " + codePath);
9373                return Environment.getRootDirectory().getPath();
9374            }
9375        }
9376        return codeRoot.getPath();
9377    }
9378
9379    /**
9380     * Derive and set the location of native libraries for the given package,
9381     * which varies depending on where and how the package was installed.
9382     */
9383    private void setNativeLibraryPaths(PackageParser.Package pkg) {
9384        final ApplicationInfo info = pkg.applicationInfo;
9385        final String codePath = pkg.codePath;
9386        final File codeFile = new File(codePath);
9387        final boolean bundledApp = info.isSystemApp() && !info.isUpdatedSystemApp();
9388        final boolean asecApp = info.isForwardLocked() || info.isExternalAsec();
9389
9390        info.nativeLibraryRootDir = null;
9391        info.nativeLibraryRootRequiresIsa = false;
9392        info.nativeLibraryDir = null;
9393        info.secondaryNativeLibraryDir = null;
9394
9395        if (isApkFile(codeFile)) {
9396            // Monolithic install
9397            if (bundledApp) {
9398                // If "/system/lib64/apkname" exists, assume that is the per-package
9399                // native library directory to use; otherwise use "/system/lib/apkname".
9400                final String apkRoot = calculateBundledApkRoot(info.sourceDir);
9401                final boolean is64Bit = VMRuntime.is64BitInstructionSet(
9402                        getPrimaryInstructionSet(info));
9403
9404                // This is a bundled system app so choose the path based on the ABI.
9405                // if it's a 64 bit abi, use lib64 otherwise use lib32. Note that this
9406                // is just the default path.
9407                final String apkName = deriveCodePathName(codePath);
9408                final String libDir = is64Bit ? LIB64_DIR_NAME : LIB_DIR_NAME;
9409                info.nativeLibraryRootDir = Environment.buildPath(new File(apkRoot), libDir,
9410                        apkName).getAbsolutePath();
9411
9412                if (info.secondaryCpuAbi != null) {
9413                    final String secondaryLibDir = is64Bit ? LIB_DIR_NAME : LIB64_DIR_NAME;
9414                    info.secondaryNativeLibraryDir = Environment.buildPath(new File(apkRoot),
9415                            secondaryLibDir, apkName).getAbsolutePath();
9416                }
9417            } else if (asecApp) {
9418                info.nativeLibraryRootDir = new File(codeFile.getParentFile(), LIB_DIR_NAME)
9419                        .getAbsolutePath();
9420            } else {
9421                final String apkName = deriveCodePathName(codePath);
9422                info.nativeLibraryRootDir = new File(mAppLib32InstallDir, apkName)
9423                        .getAbsolutePath();
9424            }
9425
9426            info.nativeLibraryRootRequiresIsa = false;
9427            info.nativeLibraryDir = info.nativeLibraryRootDir;
9428        } else {
9429            // Cluster install
9430            info.nativeLibraryRootDir = new File(codeFile, LIB_DIR_NAME).getAbsolutePath();
9431            info.nativeLibraryRootRequiresIsa = true;
9432
9433            info.nativeLibraryDir = new File(info.nativeLibraryRootDir,
9434                    getPrimaryInstructionSet(info)).getAbsolutePath();
9435
9436            if (info.secondaryCpuAbi != null) {
9437                info.secondaryNativeLibraryDir = new File(info.nativeLibraryRootDir,
9438                        VMRuntime.getInstructionSet(info.secondaryCpuAbi)).getAbsolutePath();
9439            }
9440        }
9441    }
9442
9443    /**
9444     * Calculate the abis and roots for a bundled app. These can uniquely
9445     * be determined from the contents of the system partition, i.e whether
9446     * it contains 64 or 32 bit shared libraries etc. We do not validate any
9447     * of this information, and instead assume that the system was built
9448     * sensibly.
9449     */
9450    private void setBundledAppAbisAndRoots(PackageParser.Package pkg,
9451                                           PackageSetting pkgSetting) {
9452        final String apkName = deriveCodePathName(pkg.applicationInfo.getCodePath());
9453
9454        // If "/system/lib64/apkname" exists, assume that is the per-package
9455        // native library directory to use; otherwise use "/system/lib/apkname".
9456        final String apkRoot = calculateBundledApkRoot(pkg.applicationInfo.sourceDir);
9457        setBundledAppAbi(pkg, apkRoot, apkName);
9458        // pkgSetting might be null during rescan following uninstall of updates
9459        // to a bundled app, so accommodate that possibility.  The settings in
9460        // that case will be established later from the parsed package.
9461        //
9462        // If the settings aren't null, sync them up with what we've just derived.
9463        // note that apkRoot isn't stored in the package settings.
9464        if (pkgSetting != null) {
9465            pkgSetting.primaryCpuAbiString = pkg.applicationInfo.primaryCpuAbi;
9466            pkgSetting.secondaryCpuAbiString = pkg.applicationInfo.secondaryCpuAbi;
9467        }
9468    }
9469
9470    /**
9471     * Deduces the ABI of a bundled app and sets the relevant fields on the
9472     * parsed pkg object.
9473     *
9474     * @param apkRoot the root of the installed apk, something like {@code /system} or {@code /oem}
9475     *        under which system libraries are installed.
9476     * @param apkName the name of the installed package.
9477     */
9478    private static void setBundledAppAbi(PackageParser.Package pkg, String apkRoot, String apkName) {
9479        final File codeFile = new File(pkg.codePath);
9480
9481        final boolean has64BitLibs;
9482        final boolean has32BitLibs;
9483        if (isApkFile(codeFile)) {
9484            // Monolithic install
9485            has64BitLibs = (new File(apkRoot, new File(LIB64_DIR_NAME, apkName).getPath())).exists();
9486            has32BitLibs = (new File(apkRoot, new File(LIB_DIR_NAME, apkName).getPath())).exists();
9487        } else {
9488            // Cluster install
9489            final File rootDir = new File(codeFile, LIB_DIR_NAME);
9490            if (!ArrayUtils.isEmpty(Build.SUPPORTED_64_BIT_ABIS)
9491                    && !TextUtils.isEmpty(Build.SUPPORTED_64_BIT_ABIS[0])) {
9492                final String isa = VMRuntime.getInstructionSet(Build.SUPPORTED_64_BIT_ABIS[0]);
9493                has64BitLibs = (new File(rootDir, isa)).exists();
9494            } else {
9495                has64BitLibs = false;
9496            }
9497            if (!ArrayUtils.isEmpty(Build.SUPPORTED_32_BIT_ABIS)
9498                    && !TextUtils.isEmpty(Build.SUPPORTED_32_BIT_ABIS[0])) {
9499                final String isa = VMRuntime.getInstructionSet(Build.SUPPORTED_32_BIT_ABIS[0]);
9500                has32BitLibs = (new File(rootDir, isa)).exists();
9501            } else {
9502                has32BitLibs = false;
9503            }
9504        }
9505
9506        if (has64BitLibs && !has32BitLibs) {
9507            // The package has 64 bit libs, but not 32 bit libs. Its primary
9508            // ABI should be 64 bit. We can safely assume here that the bundled
9509            // native libraries correspond to the most preferred ABI in the list.
9510
9511            pkg.applicationInfo.primaryCpuAbi = Build.SUPPORTED_64_BIT_ABIS[0];
9512            pkg.applicationInfo.secondaryCpuAbi = null;
9513        } else if (has32BitLibs && !has64BitLibs) {
9514            // The package has 32 bit libs but not 64 bit libs. Its primary
9515            // ABI should be 32 bit.
9516
9517            pkg.applicationInfo.primaryCpuAbi = Build.SUPPORTED_32_BIT_ABIS[0];
9518            pkg.applicationInfo.secondaryCpuAbi = null;
9519        } else if (has32BitLibs && has64BitLibs) {
9520            // The application has both 64 and 32 bit bundled libraries. We check
9521            // here that the app declares multiArch support, and warn if it doesn't.
9522            //
9523            // We will be lenient here and record both ABIs. The primary will be the
9524            // ABI that's higher on the list, i.e, a device that's configured to prefer
9525            // 64 bit apps will see a 64 bit primary ABI,
9526
9527            if ((pkg.applicationInfo.flags & ApplicationInfo.FLAG_MULTIARCH) == 0) {
9528                Slog.e(TAG, "Package " + pkg + " has multiple bundled libs, but is not multiarch.");
9529            }
9530
9531            if (VMRuntime.is64BitInstructionSet(getPreferredInstructionSet())) {
9532                pkg.applicationInfo.primaryCpuAbi = Build.SUPPORTED_64_BIT_ABIS[0];
9533                pkg.applicationInfo.secondaryCpuAbi = Build.SUPPORTED_32_BIT_ABIS[0];
9534            } else {
9535                pkg.applicationInfo.primaryCpuAbi = Build.SUPPORTED_32_BIT_ABIS[0];
9536                pkg.applicationInfo.secondaryCpuAbi = Build.SUPPORTED_64_BIT_ABIS[0];
9537            }
9538        } else {
9539            pkg.applicationInfo.primaryCpuAbi = null;
9540            pkg.applicationInfo.secondaryCpuAbi = null;
9541        }
9542    }
9543
9544    private void killApplication(String pkgName, int appId, String reason) {
9545        // Request the ActivityManager to kill the process(only for existing packages)
9546        // so that we do not end up in a confused state while the user is still using the older
9547        // version of the application while the new one gets installed.
9548        final long token = Binder.clearCallingIdentity();
9549        try {
9550            IActivityManager am = ActivityManagerNative.getDefault();
9551            if (am != null) {
9552                try {
9553                    am.killApplicationWithAppId(pkgName, appId, reason);
9554                } catch (RemoteException e) {
9555                }
9556            }
9557        } finally {
9558            Binder.restoreCallingIdentity(token);
9559        }
9560    }
9561
9562    private void removePackageLI(PackageParser.Package pkg, boolean chatty) {
9563        // Remove the parent package setting
9564        PackageSetting ps = (PackageSetting) pkg.mExtras;
9565        if (ps != null) {
9566            removePackageLI(ps, chatty);
9567        }
9568        // Remove the child package setting
9569        final int childCount = (pkg.childPackages != null) ? pkg.childPackages.size() : 0;
9570        for (int i = 0; i < childCount; i++) {
9571            PackageParser.Package childPkg = pkg.childPackages.get(i);
9572            ps = (PackageSetting) childPkg.mExtras;
9573            if (ps != null) {
9574                removePackageLI(ps, chatty);
9575            }
9576        }
9577    }
9578
9579    void removePackageLI(PackageSetting ps, boolean chatty) {
9580        if (DEBUG_INSTALL) {
9581            if (chatty)
9582                Log.d(TAG, "Removing package " + ps.name);
9583        }
9584
9585        // writer
9586        synchronized (mPackages) {
9587            mPackages.remove(ps.name);
9588            final PackageParser.Package pkg = ps.pkg;
9589            if (pkg != null) {
9590                cleanPackageDataStructuresLILPw(pkg, chatty);
9591            }
9592        }
9593    }
9594
9595    void removeInstalledPackageLI(PackageParser.Package pkg, boolean chatty) {
9596        if (DEBUG_INSTALL) {
9597            if (chatty)
9598                Log.d(TAG, "Removing package " + pkg.applicationInfo.packageName);
9599        }
9600
9601        // writer
9602        synchronized (mPackages) {
9603            // Remove the parent package
9604            mPackages.remove(pkg.applicationInfo.packageName);
9605            cleanPackageDataStructuresLILPw(pkg, chatty);
9606
9607            // Remove the child packages
9608            final int childCount = (pkg.childPackages != null) ? pkg.childPackages.size() : 0;
9609            for (int i = 0; i < childCount; i++) {
9610                PackageParser.Package childPkg = pkg.childPackages.get(i);
9611                mPackages.remove(childPkg.applicationInfo.packageName);
9612                cleanPackageDataStructuresLILPw(childPkg, chatty);
9613            }
9614        }
9615    }
9616
9617    void cleanPackageDataStructuresLILPw(PackageParser.Package pkg, boolean chatty) {
9618        int N = pkg.providers.size();
9619        StringBuilder r = null;
9620        int i;
9621        for (i=0; i<N; i++) {
9622            PackageParser.Provider p = pkg.providers.get(i);
9623            mProviders.removeProvider(p);
9624            if (p.info.authority == null) {
9625
9626                /* There was another ContentProvider with this authority when
9627                 * this app was installed so this authority is null,
9628                 * Ignore it as we don't have to unregister the provider.
9629                 */
9630                continue;
9631            }
9632            String names[] = p.info.authority.split(";");
9633            for (int j = 0; j < names.length; j++) {
9634                if (mProvidersByAuthority.get(names[j]) == p) {
9635                    mProvidersByAuthority.remove(names[j]);
9636                    if (DEBUG_REMOVE) {
9637                        if (chatty)
9638                            Log.d(TAG, "Unregistered content provider: " + names[j]
9639                                    + ", className = " + p.info.name + ", isSyncable = "
9640                                    + p.info.isSyncable);
9641                    }
9642                }
9643            }
9644            if (DEBUG_REMOVE && chatty) {
9645                if (r == null) {
9646                    r = new StringBuilder(256);
9647                } else {
9648                    r.append(' ');
9649                }
9650                r.append(p.info.name);
9651            }
9652        }
9653        if (r != null) {
9654            if (DEBUG_REMOVE) Log.d(TAG, "  Providers: " + r);
9655        }
9656
9657        N = pkg.services.size();
9658        r = null;
9659        for (i=0; i<N; i++) {
9660            PackageParser.Service s = pkg.services.get(i);
9661            mServices.removeService(s);
9662            if (chatty) {
9663                if (r == null) {
9664                    r = new StringBuilder(256);
9665                } else {
9666                    r.append(' ');
9667                }
9668                r.append(s.info.name);
9669            }
9670        }
9671        if (r != null) {
9672            if (DEBUG_REMOVE) Log.d(TAG, "  Services: " + r);
9673        }
9674
9675        N = pkg.receivers.size();
9676        r = null;
9677        for (i=0; i<N; i++) {
9678            PackageParser.Activity a = pkg.receivers.get(i);
9679            mReceivers.removeActivity(a, "receiver");
9680            if (DEBUG_REMOVE && chatty) {
9681                if (r == null) {
9682                    r = new StringBuilder(256);
9683                } else {
9684                    r.append(' ');
9685                }
9686                r.append(a.info.name);
9687            }
9688        }
9689        if (r != null) {
9690            if (DEBUG_REMOVE) Log.d(TAG, "  Receivers: " + r);
9691        }
9692
9693        N = pkg.activities.size();
9694        r = null;
9695        for (i=0; i<N; i++) {
9696            PackageParser.Activity a = pkg.activities.get(i);
9697            mActivities.removeActivity(a, "activity");
9698            if (DEBUG_REMOVE && chatty) {
9699                if (r == null) {
9700                    r = new StringBuilder(256);
9701                } else {
9702                    r.append(' ');
9703                }
9704                r.append(a.info.name);
9705            }
9706        }
9707        if (r != null) {
9708            if (DEBUG_REMOVE) Log.d(TAG, "  Activities: " + r);
9709        }
9710
9711        N = pkg.permissions.size();
9712        r = null;
9713        for (i=0; i<N; i++) {
9714            PackageParser.Permission p = pkg.permissions.get(i);
9715            BasePermission bp = mSettings.mPermissions.get(p.info.name);
9716            if (bp == null) {
9717                bp = mSettings.mPermissionTrees.get(p.info.name);
9718            }
9719            if (bp != null && bp.perm == p) {
9720                bp.perm = null;
9721                if (DEBUG_REMOVE && chatty) {
9722                    if (r == null) {
9723                        r = new StringBuilder(256);
9724                    } else {
9725                        r.append(' ');
9726                    }
9727                    r.append(p.info.name);
9728                }
9729            }
9730            if ((p.info.protectionLevel&PermissionInfo.PROTECTION_FLAG_APPOP) != 0) {
9731                ArraySet<String> appOpPkgs = mAppOpPermissionPackages.get(p.info.name);
9732                if (appOpPkgs != null) {
9733                    appOpPkgs.remove(pkg.packageName);
9734                }
9735            }
9736        }
9737        if (r != null) {
9738            if (DEBUG_REMOVE) Log.d(TAG, "  Permissions: " + r);
9739        }
9740
9741        N = pkg.requestedPermissions.size();
9742        r = null;
9743        for (i=0; i<N; i++) {
9744            String perm = pkg.requestedPermissions.get(i);
9745            BasePermission bp = mSettings.mPermissions.get(perm);
9746            if (bp != null && (bp.protectionLevel&PermissionInfo.PROTECTION_FLAG_APPOP) != 0) {
9747                ArraySet<String> appOpPkgs = mAppOpPermissionPackages.get(perm);
9748                if (appOpPkgs != null) {
9749                    appOpPkgs.remove(pkg.packageName);
9750                    if (appOpPkgs.isEmpty()) {
9751                        mAppOpPermissionPackages.remove(perm);
9752                    }
9753                }
9754            }
9755        }
9756        if (r != null) {
9757            if (DEBUG_REMOVE) Log.d(TAG, "  Permissions: " + r);
9758        }
9759
9760        N = pkg.instrumentation.size();
9761        r = null;
9762        for (i=0; i<N; i++) {
9763            PackageParser.Instrumentation a = pkg.instrumentation.get(i);
9764            mInstrumentation.remove(a.getComponentName());
9765            if (DEBUG_REMOVE && chatty) {
9766                if (r == null) {
9767                    r = new StringBuilder(256);
9768                } else {
9769                    r.append(' ');
9770                }
9771                r.append(a.info.name);
9772            }
9773        }
9774        if (r != null) {
9775            if (DEBUG_REMOVE) Log.d(TAG, "  Instrumentation: " + r);
9776        }
9777
9778        r = null;
9779        if ((pkg.applicationInfo.flags&ApplicationInfo.FLAG_SYSTEM) != 0) {
9780            // Only system apps can hold shared libraries.
9781            if (pkg.libraryNames != null) {
9782                for (i=0; i<pkg.libraryNames.size(); i++) {
9783                    String name = pkg.libraryNames.get(i);
9784                    SharedLibraryEntry cur = mSharedLibraries.get(name);
9785                    if (cur != null && cur.apk != null && cur.apk.equals(pkg.packageName)) {
9786                        mSharedLibraries.remove(name);
9787                        if (DEBUG_REMOVE && chatty) {
9788                            if (r == null) {
9789                                r = new StringBuilder(256);
9790                            } else {
9791                                r.append(' ');
9792                            }
9793                            r.append(name);
9794                        }
9795                    }
9796                }
9797            }
9798        }
9799        if (r != null) {
9800            if (DEBUG_REMOVE) Log.d(TAG, "  Libraries: " + r);
9801        }
9802    }
9803
9804    private static boolean hasPermission(PackageParser.Package pkgInfo, String perm) {
9805        for (int i=pkgInfo.permissions.size()-1; i>=0; i--) {
9806            if (pkgInfo.permissions.get(i).info.name.equals(perm)) {
9807                return true;
9808            }
9809        }
9810        return false;
9811    }
9812
9813    static final int UPDATE_PERMISSIONS_ALL = 1<<0;
9814    static final int UPDATE_PERMISSIONS_REPLACE_PKG = 1<<1;
9815    static final int UPDATE_PERMISSIONS_REPLACE_ALL = 1<<2;
9816
9817    private void updatePermissionsLPw(PackageParser.Package pkg, int flags) {
9818        // Update the parent permissions
9819        updatePermissionsLPw(pkg.packageName, pkg, flags);
9820        // Update the child permissions
9821        final int childCount = (pkg.childPackages != null) ? pkg.childPackages.size() : 0;
9822        for (int i = 0; i < childCount; i++) {
9823            PackageParser.Package childPkg = pkg.childPackages.get(i);
9824            updatePermissionsLPw(childPkg.packageName, childPkg, flags);
9825        }
9826    }
9827
9828    private void updatePermissionsLPw(String changingPkg, PackageParser.Package pkgInfo,
9829            int flags) {
9830        final String volumeUuid = (pkgInfo != null) ? getVolumeUuidForPackage(pkgInfo) : null;
9831        updatePermissionsLPw(changingPkg, pkgInfo, volumeUuid, flags);
9832    }
9833
9834    private void updatePermissionsLPw(String changingPkg,
9835            PackageParser.Package pkgInfo, String replaceVolumeUuid, int flags) {
9836        // Make sure there are no dangling permission trees.
9837        Iterator<BasePermission> it = mSettings.mPermissionTrees.values().iterator();
9838        while (it.hasNext()) {
9839            final BasePermission bp = it.next();
9840            if (bp.packageSetting == null) {
9841                // We may not yet have parsed the package, so just see if
9842                // we still know about its settings.
9843                bp.packageSetting = mSettings.mPackages.get(bp.sourcePackage);
9844            }
9845            if (bp.packageSetting == null) {
9846                Slog.w(TAG, "Removing dangling permission tree: " + bp.name
9847                        + " from package " + bp.sourcePackage);
9848                it.remove();
9849            } else if (changingPkg != null && changingPkg.equals(bp.sourcePackage)) {
9850                if (pkgInfo == null || !hasPermission(pkgInfo, bp.name)) {
9851                    Slog.i(TAG, "Removing old permission tree: " + bp.name
9852                            + " from package " + bp.sourcePackage);
9853                    flags |= UPDATE_PERMISSIONS_ALL;
9854                    it.remove();
9855                }
9856            }
9857        }
9858
9859        // Make sure all dynamic permissions have been assigned to a package,
9860        // and make sure there are no dangling permissions.
9861        it = mSettings.mPermissions.values().iterator();
9862        while (it.hasNext()) {
9863            final BasePermission bp = it.next();
9864            if (bp.type == BasePermission.TYPE_DYNAMIC) {
9865                if (DEBUG_SETTINGS) Log.v(TAG, "Dynamic permission: name="
9866                        + bp.name + " pkg=" + bp.sourcePackage
9867                        + " info=" + bp.pendingInfo);
9868                if (bp.packageSetting == null && bp.pendingInfo != null) {
9869                    final BasePermission tree = findPermissionTreeLP(bp.name);
9870                    if (tree != null && tree.perm != null) {
9871                        bp.packageSetting = tree.packageSetting;
9872                        bp.perm = new PackageParser.Permission(tree.perm.owner,
9873                                new PermissionInfo(bp.pendingInfo));
9874                        bp.perm.info.packageName = tree.perm.info.packageName;
9875                        bp.perm.info.name = bp.name;
9876                        bp.uid = tree.uid;
9877                    }
9878                }
9879            }
9880            if (bp.packageSetting == null) {
9881                // We may not yet have parsed the package, so just see if
9882                // we still know about its settings.
9883                bp.packageSetting = mSettings.mPackages.get(bp.sourcePackage);
9884            }
9885            if (bp.packageSetting == null) {
9886                Slog.w(TAG, "Removing dangling permission: " + bp.name
9887                        + " from package " + bp.sourcePackage);
9888                it.remove();
9889            } else if (changingPkg != null && changingPkg.equals(bp.sourcePackage)) {
9890                if (pkgInfo == null || !hasPermission(pkgInfo, bp.name)) {
9891                    Slog.i(TAG, "Removing old permission: " + bp.name
9892                            + " from package " + bp.sourcePackage);
9893                    flags |= UPDATE_PERMISSIONS_ALL;
9894                    it.remove();
9895                }
9896            }
9897        }
9898
9899        // Now update the permissions for all packages, in particular
9900        // replace the granted permissions of the system packages.
9901        if ((flags&UPDATE_PERMISSIONS_ALL) != 0) {
9902            for (PackageParser.Package pkg : mPackages.values()) {
9903                if (pkg != pkgInfo) {
9904                    // Only replace for packages on requested volume
9905                    final String volumeUuid = getVolumeUuidForPackage(pkg);
9906                    final boolean replace = ((flags & UPDATE_PERMISSIONS_REPLACE_ALL) != 0)
9907                            && Objects.equals(replaceVolumeUuid, volumeUuid);
9908                    grantPermissionsLPw(pkg, replace, changingPkg);
9909                }
9910            }
9911        }
9912
9913        if (pkgInfo != null) {
9914            // Only replace for packages on requested volume
9915            final String volumeUuid = getVolumeUuidForPackage(pkgInfo);
9916            final boolean replace = ((flags & UPDATE_PERMISSIONS_REPLACE_PKG) != 0)
9917                    && Objects.equals(replaceVolumeUuid, volumeUuid);
9918            grantPermissionsLPw(pkgInfo, replace, changingPkg);
9919        }
9920    }
9921
9922    private void grantPermissionsLPw(PackageParser.Package pkg, boolean replace,
9923            String packageOfInterest) {
9924        // IMPORTANT: There are two types of permissions: install and runtime.
9925        // Install time permissions are granted when the app is installed to
9926        // all device users and users added in the future. Runtime permissions
9927        // are granted at runtime explicitly to specific users. Normal and signature
9928        // protected permissions are install time permissions. Dangerous permissions
9929        // are install permissions if the app's target SDK is Lollipop MR1 or older,
9930        // otherwise they are runtime permissions. This function does not manage
9931        // runtime permissions except for the case an app targeting Lollipop MR1
9932        // being upgraded to target a newer SDK, in which case dangerous permissions
9933        // are transformed from install time to runtime ones.
9934
9935        final PackageSetting ps = (PackageSetting) pkg.mExtras;
9936        if (ps == null) {
9937            return;
9938        }
9939
9940        Trace.traceBegin(TRACE_TAG_PACKAGE_MANAGER, "grantPermissions");
9941
9942        PermissionsState permissionsState = ps.getPermissionsState();
9943        PermissionsState origPermissions = permissionsState;
9944
9945        final int[] currentUserIds = UserManagerService.getInstance().getUserIds();
9946
9947        boolean runtimePermissionsRevoked = false;
9948        int[] changedRuntimePermissionUserIds = EMPTY_INT_ARRAY;
9949
9950        boolean changedInstallPermission = false;
9951
9952        if (replace) {
9953            ps.installPermissionsFixed = false;
9954            if (!ps.isSharedUser()) {
9955                origPermissions = new PermissionsState(permissionsState);
9956                permissionsState.reset();
9957            } else {
9958                // We need to know only about runtime permission changes since the
9959                // calling code always writes the install permissions state but
9960                // the runtime ones are written only if changed. The only cases of
9961                // changed runtime permissions here are promotion of an install to
9962                // runtime and revocation of a runtime from a shared user.
9963                changedRuntimePermissionUserIds = revokeUnusedSharedUserPermissionsLPw(
9964                        ps.sharedUser, UserManagerService.getInstance().getUserIds());
9965                if (!ArrayUtils.isEmpty(changedRuntimePermissionUserIds)) {
9966                    runtimePermissionsRevoked = true;
9967                }
9968            }
9969        }
9970
9971        permissionsState.setGlobalGids(mGlobalGids);
9972
9973        final int N = pkg.requestedPermissions.size();
9974        for (int i=0; i<N; i++) {
9975            final String name = pkg.requestedPermissions.get(i);
9976            final BasePermission bp = mSettings.mPermissions.get(name);
9977
9978            if (DEBUG_INSTALL) {
9979                Log.i(TAG, "Package " + pkg.packageName + " checking " + name + ": " + bp);
9980            }
9981
9982            if (bp == null || bp.packageSetting == null) {
9983                if (packageOfInterest == null || packageOfInterest.equals(pkg.packageName)) {
9984                    Slog.w(TAG, "Unknown permission " + name
9985                            + " in package " + pkg.packageName);
9986                }
9987                continue;
9988            }
9989
9990            final String perm = bp.name;
9991            boolean allowedSig = false;
9992            int grant = GRANT_DENIED;
9993
9994            // Keep track of app op permissions.
9995            if ((bp.protectionLevel & PermissionInfo.PROTECTION_FLAG_APPOP) != 0) {
9996                ArraySet<String> pkgs = mAppOpPermissionPackages.get(bp.name);
9997                if (pkgs == null) {
9998                    pkgs = new ArraySet<>();
9999                    mAppOpPermissionPackages.put(bp.name, pkgs);
10000                }
10001                pkgs.add(pkg.packageName);
10002            }
10003
10004            final int level = bp.protectionLevel & PermissionInfo.PROTECTION_MASK_BASE;
10005            final boolean appSupportsRuntimePermissions = pkg.applicationInfo.targetSdkVersion
10006                    >= Build.VERSION_CODES.M;
10007            switch (level) {
10008                case PermissionInfo.PROTECTION_NORMAL: {
10009                    // For all apps normal permissions are install time ones.
10010                    grant = GRANT_INSTALL;
10011                } break;
10012
10013                case PermissionInfo.PROTECTION_DANGEROUS: {
10014                    // If a permission review is required for legacy apps we represent
10015                    // their permissions as always granted runtime ones since we need
10016                    // to keep the review required permission flag per user while an
10017                    // install permission's state is shared across all users.
10018                    if (!appSupportsRuntimePermissions && !Build.PERMISSIONS_REVIEW_REQUIRED) {
10019                        // For legacy apps dangerous permissions are install time ones.
10020                        grant = GRANT_INSTALL;
10021                    } else if (origPermissions.hasInstallPermission(bp.name)) {
10022                        // For legacy apps that became modern, install becomes runtime.
10023                        grant = GRANT_UPGRADE;
10024                    } else if (mPromoteSystemApps
10025                            && isSystemApp(ps)
10026                            && mExistingSystemPackages.contains(ps.name)) {
10027                        // For legacy system apps, install becomes runtime.
10028                        // We cannot check hasInstallPermission() for system apps since those
10029                        // permissions were granted implicitly and not persisted pre-M.
10030                        grant = GRANT_UPGRADE;
10031                    } else {
10032                        // For modern apps keep runtime permissions unchanged.
10033                        grant = GRANT_RUNTIME;
10034                    }
10035                } break;
10036
10037                case PermissionInfo.PROTECTION_SIGNATURE: {
10038                    // For all apps signature permissions are install time ones.
10039                    allowedSig = grantSignaturePermission(perm, pkg, bp, origPermissions);
10040                    if (allowedSig) {
10041                        grant = GRANT_INSTALL;
10042                    }
10043                } break;
10044            }
10045
10046            if (DEBUG_INSTALL) {
10047                Log.i(TAG, "Package " + pkg.packageName + " granting " + perm);
10048            }
10049
10050            if (grant != GRANT_DENIED) {
10051                if (!isSystemApp(ps) && ps.installPermissionsFixed) {
10052                    // If this is an existing, non-system package, then
10053                    // we can't add any new permissions to it.
10054                    if (!allowedSig && !origPermissions.hasInstallPermission(perm)) {
10055                        // Except...  if this is a permission that was added
10056                        // to the platform (note: need to only do this when
10057                        // updating the platform).
10058                        if (!isNewPlatformPermissionForPackage(perm, pkg)) {
10059                            grant = GRANT_DENIED;
10060                        }
10061                    }
10062                }
10063
10064                switch (grant) {
10065                    case GRANT_INSTALL: {
10066                        // Revoke this as runtime permission to handle the case of
10067                        // a runtime permission being downgraded to an install one.
10068                        // Also in permission review mode we keep dangerous permissions
10069                        // for legacy apps
10070                        for (int userId : UserManagerService.getInstance().getUserIds()) {
10071                            if (origPermissions.getRuntimePermissionState(
10072                                    bp.name, userId) != null) {
10073                                // Revoke the runtime permission and clear the flags.
10074                                origPermissions.revokeRuntimePermission(bp, userId);
10075                                origPermissions.updatePermissionFlags(bp, userId,
10076                                      PackageManager.MASK_PERMISSION_FLAGS, 0);
10077                                // If we revoked a permission permission, we have to write.
10078                                changedRuntimePermissionUserIds = ArrayUtils.appendInt(
10079                                        changedRuntimePermissionUserIds, userId);
10080                            }
10081                        }
10082                        // Grant an install permission.
10083                        if (permissionsState.grantInstallPermission(bp) !=
10084                                PermissionsState.PERMISSION_OPERATION_FAILURE) {
10085                            changedInstallPermission = true;
10086                        }
10087                    } break;
10088
10089                    case GRANT_RUNTIME: {
10090                        // Grant previously granted runtime permissions.
10091                        for (int userId : UserManagerService.getInstance().getUserIds()) {
10092                            PermissionState permissionState = origPermissions
10093                                    .getRuntimePermissionState(bp.name, userId);
10094                            int flags = permissionState != null
10095                                    ? permissionState.getFlags() : 0;
10096                            if (origPermissions.hasRuntimePermission(bp.name, userId)) {
10097                                if (permissionsState.grantRuntimePermission(bp, userId) ==
10098                                        PermissionsState.PERMISSION_OPERATION_FAILURE) {
10099                                    // If we cannot put the permission as it was, we have to write.
10100                                    changedRuntimePermissionUserIds = ArrayUtils.appendInt(
10101                                            changedRuntimePermissionUserIds, userId);
10102                                }
10103                                // If the app supports runtime permissions no need for a review.
10104                                if (Build.PERMISSIONS_REVIEW_REQUIRED
10105                                        && appSupportsRuntimePermissions
10106                                        && (flags & PackageManager
10107                                                .FLAG_PERMISSION_REVIEW_REQUIRED) != 0) {
10108                                    flags &= ~PackageManager.FLAG_PERMISSION_REVIEW_REQUIRED;
10109                                    // Since we changed the flags, we have to write.
10110                                    changedRuntimePermissionUserIds = ArrayUtils.appendInt(
10111                                            changedRuntimePermissionUserIds, userId);
10112                                }
10113                            } else if (Build.PERMISSIONS_REVIEW_REQUIRED
10114                                    && !appSupportsRuntimePermissions) {
10115                                // For legacy apps that need a permission review, every new
10116                                // runtime permission is granted but it is pending a review.
10117                                // We also need to review only platform defined runtime
10118                                // permissions as these are the only ones the platform knows
10119                                // how to disable the API to simulate revocation as legacy
10120                                // apps don't expect to run with revoked permissions.
10121                                if (PLATFORM_PACKAGE_NAME.equals(bp.sourcePackage)) {
10122                                    if ((flags & FLAG_PERMISSION_REVIEW_REQUIRED) == 0) {
10123                                        flags |= FLAG_PERMISSION_REVIEW_REQUIRED;
10124                                        // We changed the flags, hence have to write.
10125                                        changedRuntimePermissionUserIds = ArrayUtils.appendInt(
10126                                                changedRuntimePermissionUserIds, userId);
10127                                    }
10128                                }
10129                                if (permissionsState.grantRuntimePermission(bp, userId)
10130                                        != PermissionsState.PERMISSION_OPERATION_FAILURE) {
10131                                    // We changed the permission, hence have to write.
10132                                    changedRuntimePermissionUserIds = ArrayUtils.appendInt(
10133                                            changedRuntimePermissionUserIds, userId);
10134                                }
10135                            }
10136                            // Propagate the permission flags.
10137                            permissionsState.updatePermissionFlags(bp, userId, flags, flags);
10138                        }
10139                    } break;
10140
10141                    case GRANT_UPGRADE: {
10142                        // Grant runtime permissions for a previously held install permission.
10143                        PermissionState permissionState = origPermissions
10144                                .getInstallPermissionState(bp.name);
10145                        final int flags = permissionState != null ? permissionState.getFlags() : 0;
10146
10147                        if (origPermissions.revokeInstallPermission(bp)
10148                                != PermissionsState.PERMISSION_OPERATION_FAILURE) {
10149                            // We will be transferring the permission flags, so clear them.
10150                            origPermissions.updatePermissionFlags(bp, UserHandle.USER_ALL,
10151                                    PackageManager.MASK_PERMISSION_FLAGS, 0);
10152                            changedInstallPermission = true;
10153                        }
10154
10155                        // If the permission is not to be promoted to runtime we ignore it and
10156                        // also its other flags as they are not applicable to install permissions.
10157                        if ((flags & PackageManager.FLAG_PERMISSION_REVOKE_ON_UPGRADE) == 0) {
10158                            for (int userId : currentUserIds) {
10159                                if (permissionsState.grantRuntimePermission(bp, userId) !=
10160                                        PermissionsState.PERMISSION_OPERATION_FAILURE) {
10161                                    // Transfer the permission flags.
10162                                    permissionsState.updatePermissionFlags(bp, userId,
10163                                            flags, flags);
10164                                    // If we granted the permission, we have to write.
10165                                    changedRuntimePermissionUserIds = ArrayUtils.appendInt(
10166                                            changedRuntimePermissionUserIds, userId);
10167                                }
10168                            }
10169                        }
10170                    } break;
10171
10172                    default: {
10173                        if (packageOfInterest == null
10174                                || packageOfInterest.equals(pkg.packageName)) {
10175                            Slog.w(TAG, "Not granting permission " + perm
10176                                    + " to package " + pkg.packageName
10177                                    + " because it was previously installed without");
10178                        }
10179                    } break;
10180                }
10181            } else {
10182                if (permissionsState.revokeInstallPermission(bp) !=
10183                        PermissionsState.PERMISSION_OPERATION_FAILURE) {
10184                    // Also drop the permission flags.
10185                    permissionsState.updatePermissionFlags(bp, UserHandle.USER_ALL,
10186                            PackageManager.MASK_PERMISSION_FLAGS, 0);
10187                    changedInstallPermission = true;
10188                    Slog.i(TAG, "Un-granting permission " + perm
10189                            + " from package " + pkg.packageName
10190                            + " (protectionLevel=" + bp.protectionLevel
10191                            + " flags=0x" + Integer.toHexString(pkg.applicationInfo.flags)
10192                            + ")");
10193                } else if ((bp.protectionLevel&PermissionInfo.PROTECTION_FLAG_APPOP) == 0) {
10194                    // Don't print warning for app op permissions, since it is fine for them
10195                    // not to be granted, there is a UI for the user to decide.
10196                    if (packageOfInterest == null || packageOfInterest.equals(pkg.packageName)) {
10197                        Slog.w(TAG, "Not granting permission " + perm
10198                                + " to package " + pkg.packageName
10199                                + " (protectionLevel=" + bp.protectionLevel
10200                                + " flags=0x" + Integer.toHexString(pkg.applicationInfo.flags)
10201                                + ")");
10202                    }
10203                }
10204            }
10205        }
10206
10207        if ((changedInstallPermission || replace) && !ps.installPermissionsFixed &&
10208                !isSystemApp(ps) || isUpdatedSystemApp(ps)){
10209            // This is the first that we have heard about this package, so the
10210            // permissions we have now selected are fixed until explicitly
10211            // changed.
10212            ps.installPermissionsFixed = true;
10213        }
10214
10215        // Persist the runtime permissions state for users with changes. If permissions
10216        // were revoked because no app in the shared user declares them we have to
10217        // write synchronously to avoid losing runtime permissions state.
10218        for (int userId : changedRuntimePermissionUserIds) {
10219            mSettings.writeRuntimePermissionsForUserLPr(userId, runtimePermissionsRevoked);
10220        }
10221
10222        Trace.traceEnd(TRACE_TAG_PACKAGE_MANAGER);
10223    }
10224
10225    private boolean isNewPlatformPermissionForPackage(String perm, PackageParser.Package pkg) {
10226        boolean allowed = false;
10227        final int NP = PackageParser.NEW_PERMISSIONS.length;
10228        for (int ip=0; ip<NP; ip++) {
10229            final PackageParser.NewPermissionInfo npi
10230                    = PackageParser.NEW_PERMISSIONS[ip];
10231            if (npi.name.equals(perm)
10232                    && pkg.applicationInfo.targetSdkVersion < npi.sdkVersion) {
10233                allowed = true;
10234                Log.i(TAG, "Auto-granting " + perm + " to old pkg "
10235                        + pkg.packageName);
10236                break;
10237            }
10238        }
10239        return allowed;
10240    }
10241
10242    private boolean grantSignaturePermission(String perm, PackageParser.Package pkg,
10243            BasePermission bp, PermissionsState origPermissions) {
10244        boolean allowed;
10245        allowed = (compareSignatures(
10246                bp.packageSetting.signatures.mSignatures, pkg.mSignatures)
10247                        == PackageManager.SIGNATURE_MATCH)
10248                || (compareSignatures(mPlatformPackage.mSignatures, pkg.mSignatures)
10249                        == PackageManager.SIGNATURE_MATCH);
10250        if (!allowed && (bp.protectionLevel
10251                & PermissionInfo.PROTECTION_FLAG_PRIVILEGED) != 0) {
10252            if (isSystemApp(pkg)) {
10253                // For updated system applications, a system permission
10254                // is granted only if it had been defined by the original application.
10255                if (pkg.isUpdatedSystemApp()) {
10256                    final PackageSetting sysPs = mSettings
10257                            .getDisabledSystemPkgLPr(pkg.packageName);
10258                    if (sysPs != null && sysPs.getPermissionsState().hasInstallPermission(perm)) {
10259                        // If the original was granted this permission, we take
10260                        // that grant decision as read and propagate it to the
10261                        // update.
10262                        if (sysPs.isPrivileged()) {
10263                            allowed = true;
10264                        }
10265                    } else {
10266                        // The system apk may have been updated with an older
10267                        // version of the one on the data partition, but which
10268                        // granted a new system permission that it didn't have
10269                        // before.  In this case we do want to allow the app to
10270                        // now get the new permission if the ancestral apk is
10271                        // privileged to get it.
10272                        if (sysPs != null && sysPs.pkg != null && sysPs.isPrivileged()) {
10273                            for (int j = 0; j < sysPs.pkg.requestedPermissions.size(); j++) {
10274                                if (perm.equals(sysPs.pkg.requestedPermissions.get(j))) {
10275                                    allowed = true;
10276                                    break;
10277                                }
10278                            }
10279                        }
10280                        // Also if a privileged parent package on the system image or any of
10281                        // its children requested a privileged permission, the updated child
10282                        // packages can also get the permission.
10283                        if (pkg.parentPackage != null) {
10284                            final PackageSetting disabledSysParentPs = mSettings
10285                                    .getDisabledSystemPkgLPr(pkg.parentPackage.packageName);
10286                            if (disabledSysParentPs != null && disabledSysParentPs.pkg != null
10287                                    && disabledSysParentPs.isPrivileged()) {
10288                                if (isPackageRequestingPermission(disabledSysParentPs.pkg, perm)) {
10289                                    allowed = true;
10290                                } else if (disabledSysParentPs.pkg.childPackages != null) {
10291                                    final int count = disabledSysParentPs.pkg.childPackages.size();
10292                                    for (int i = 0; i < count; i++) {
10293                                        PackageParser.Package disabledSysChildPkg =
10294                                                disabledSysParentPs.pkg.childPackages.get(i);
10295                                        if (isPackageRequestingPermission(disabledSysChildPkg,
10296                                                perm)) {
10297                                            allowed = true;
10298                                            break;
10299                                        }
10300                                    }
10301                                }
10302                            }
10303                        }
10304                    }
10305                } else {
10306                    allowed = isPrivilegedApp(pkg);
10307                }
10308            }
10309        }
10310        if (!allowed) {
10311            if (!allowed && (bp.protectionLevel
10312                    & PermissionInfo.PROTECTION_FLAG_PRE23) != 0
10313                    && pkg.applicationInfo.targetSdkVersion < Build.VERSION_CODES.M) {
10314                // If this was a previously normal/dangerous permission that got moved
10315                // to a system permission as part of the runtime permission redesign, then
10316                // we still want to blindly grant it to old apps.
10317                allowed = true;
10318            }
10319            if (!allowed && (bp.protectionLevel & PermissionInfo.PROTECTION_FLAG_INSTALLER) != 0
10320                    && pkg.packageName.equals(mRequiredInstallerPackage)) {
10321                // If this permission is to be granted to the system installer and
10322                // this app is an installer, then it gets the permission.
10323                allowed = true;
10324            }
10325            if (!allowed && (bp.protectionLevel & PermissionInfo.PROTECTION_FLAG_VERIFIER) != 0
10326                    && pkg.packageName.equals(mRequiredVerifierPackage)) {
10327                // If this permission is to be granted to the system verifier and
10328                // this app is a verifier, then it gets the permission.
10329                allowed = true;
10330            }
10331            if (!allowed && (bp.protectionLevel
10332                    & PermissionInfo.PROTECTION_FLAG_PREINSTALLED) != 0
10333                    && isSystemApp(pkg)) {
10334                // Any pre-installed system app is allowed to get this permission.
10335                allowed = true;
10336            }
10337            if (!allowed && (bp.protectionLevel
10338                    & PermissionInfo.PROTECTION_FLAG_DEVELOPMENT) != 0) {
10339                // For development permissions, a development permission
10340                // is granted only if it was already granted.
10341                allowed = origPermissions.hasInstallPermission(perm);
10342            }
10343            if (!allowed && (bp.protectionLevel & PermissionInfo.PROTECTION_FLAG_SETUP) != 0
10344                    && pkg.packageName.equals(mSetupWizardPackage)) {
10345                // If this permission is to be granted to the system setup wizard and
10346                // this app is a setup wizard, then it gets the permission.
10347                allowed = true;
10348            }
10349        }
10350        return allowed;
10351    }
10352
10353    private boolean isPackageRequestingPermission(PackageParser.Package pkg, String permission) {
10354        final int permCount = pkg.requestedPermissions.size();
10355        for (int j = 0; j < permCount; j++) {
10356            String requestedPermission = pkg.requestedPermissions.get(j);
10357            if (permission.equals(requestedPermission)) {
10358                return true;
10359            }
10360        }
10361        return false;
10362    }
10363
10364    final class ActivityIntentResolver
10365            extends IntentResolver<PackageParser.ActivityIntentInfo, ResolveInfo> {
10366        public List<ResolveInfo> queryIntent(Intent intent, String resolvedType,
10367                boolean defaultOnly, int userId) {
10368            if (!sUserManager.exists(userId)) return null;
10369            mFlags = defaultOnly ? PackageManager.MATCH_DEFAULT_ONLY : 0;
10370            return super.queryIntent(intent, resolvedType, defaultOnly, userId);
10371        }
10372
10373        public List<ResolveInfo> queryIntent(Intent intent, String resolvedType, int flags,
10374                int userId) {
10375            if (!sUserManager.exists(userId)) return null;
10376            mFlags = flags;
10377            return super.queryIntent(intent, resolvedType,
10378                    (flags & PackageManager.MATCH_DEFAULT_ONLY) != 0, userId);
10379        }
10380
10381        public List<ResolveInfo> queryIntentForPackage(Intent intent, String resolvedType,
10382                int flags, ArrayList<PackageParser.Activity> packageActivities, int userId) {
10383            if (!sUserManager.exists(userId)) return null;
10384            if (packageActivities == null) {
10385                return null;
10386            }
10387            mFlags = flags;
10388            final boolean defaultOnly = (flags&PackageManager.MATCH_DEFAULT_ONLY) != 0;
10389            final int N = packageActivities.size();
10390            ArrayList<PackageParser.ActivityIntentInfo[]> listCut =
10391                new ArrayList<PackageParser.ActivityIntentInfo[]>(N);
10392
10393            ArrayList<PackageParser.ActivityIntentInfo> intentFilters;
10394            for (int i = 0; i < N; ++i) {
10395                intentFilters = packageActivities.get(i).intents;
10396                if (intentFilters != null && intentFilters.size() > 0) {
10397                    PackageParser.ActivityIntentInfo[] array =
10398                            new PackageParser.ActivityIntentInfo[intentFilters.size()];
10399                    intentFilters.toArray(array);
10400                    listCut.add(array);
10401                }
10402            }
10403            return super.queryIntentFromList(intent, resolvedType, defaultOnly, listCut, userId);
10404        }
10405
10406        /**
10407         * Finds a privileged activity that matches the specified activity names.
10408         */
10409        private PackageParser.Activity findMatchingActivity(
10410                List<PackageParser.Activity> activityList, ActivityInfo activityInfo) {
10411            for (PackageParser.Activity sysActivity : activityList) {
10412                if (sysActivity.info.name.equals(activityInfo.name)) {
10413                    return sysActivity;
10414                }
10415                if (sysActivity.info.name.equals(activityInfo.targetActivity)) {
10416                    return sysActivity;
10417                }
10418                if (sysActivity.info.targetActivity != null) {
10419                    if (sysActivity.info.targetActivity.equals(activityInfo.name)) {
10420                        return sysActivity;
10421                    }
10422                    if (sysActivity.info.targetActivity.equals(activityInfo.targetActivity)) {
10423                        return sysActivity;
10424                    }
10425                }
10426            }
10427            return null;
10428        }
10429
10430        public class IterGenerator<E> {
10431            public Iterator<E> generate(ActivityIntentInfo info) {
10432                return null;
10433            }
10434        }
10435
10436        public class ActionIterGenerator extends IterGenerator<String> {
10437            @Override
10438            public Iterator<String> generate(ActivityIntentInfo info) {
10439                return info.actionsIterator();
10440            }
10441        }
10442
10443        public class CategoriesIterGenerator extends IterGenerator<String> {
10444            @Override
10445            public Iterator<String> generate(ActivityIntentInfo info) {
10446                return info.categoriesIterator();
10447            }
10448        }
10449
10450        public class SchemesIterGenerator extends IterGenerator<String> {
10451            @Override
10452            public Iterator<String> generate(ActivityIntentInfo info) {
10453                return info.schemesIterator();
10454            }
10455        }
10456
10457        public class AuthoritiesIterGenerator extends IterGenerator<IntentFilter.AuthorityEntry> {
10458            @Override
10459            public Iterator<IntentFilter.AuthorityEntry> generate(ActivityIntentInfo info) {
10460                return info.authoritiesIterator();
10461            }
10462        }
10463
10464        /**
10465         * <em>WARNING</em> for performance reasons, the passed in intentList WILL BE
10466         * MODIFIED. Do not pass in a list that should not be changed.
10467         */
10468        private <T> void getIntentListSubset(List<ActivityIntentInfo> intentList,
10469                IterGenerator<T> generator, Iterator<T> searchIterator) {
10470            // loop through the set of actions; every one must be found in the intent filter
10471            while (searchIterator.hasNext()) {
10472                // we must have at least one filter in the list to consider a match
10473                if (intentList.size() == 0) {
10474                    break;
10475                }
10476
10477                final T searchAction = searchIterator.next();
10478
10479                // loop through the set of intent filters
10480                final Iterator<ActivityIntentInfo> intentIter = intentList.iterator();
10481                while (intentIter.hasNext()) {
10482                    final ActivityIntentInfo intentInfo = intentIter.next();
10483                    boolean selectionFound = false;
10484
10485                    // loop through the intent filter's selection criteria; at least one
10486                    // of them must match the searched criteria
10487                    final Iterator<T> intentSelectionIter = generator.generate(intentInfo);
10488                    while (intentSelectionIter != null && intentSelectionIter.hasNext()) {
10489                        final T intentSelection = intentSelectionIter.next();
10490                        if (intentSelection != null && intentSelection.equals(searchAction)) {
10491                            selectionFound = true;
10492                            break;
10493                        }
10494                    }
10495
10496                    // the selection criteria wasn't found in this filter's set; this filter
10497                    // is not a potential match
10498                    if (!selectionFound) {
10499                        intentIter.remove();
10500                    }
10501                }
10502            }
10503        }
10504
10505        private boolean isProtectedAction(ActivityIntentInfo filter) {
10506            final Iterator<String> actionsIter = filter.actionsIterator();
10507            while (actionsIter != null && actionsIter.hasNext()) {
10508                final String filterAction = actionsIter.next();
10509                if (PROTECTED_ACTIONS.contains(filterAction)) {
10510                    return true;
10511                }
10512            }
10513            return false;
10514        }
10515
10516        /**
10517         * Adjusts the priority of the given intent filter according to policy.
10518         * <p>
10519         * <ul>
10520         * <li>The priority for non privileged applications is capped to '0'</li>
10521         * <li>The priority for protected actions on privileged applications is capped to '0'</li>
10522         * <li>The priority for unbundled updates to privileged applications is capped to the
10523         *      priority defined on the system partition</li>
10524         * </ul>
10525         * <p>
10526         * <em>NOTE:</em> There is one exception. For security reasons, the setup wizard is
10527         * allowed to obtain any priority on any action.
10528         */
10529        private void adjustPriority(
10530                List<PackageParser.Activity> systemActivities, ActivityIntentInfo intent) {
10531            // nothing to do; priority is fine as-is
10532            if (intent.getPriority() <= 0) {
10533                return;
10534            }
10535
10536            final ActivityInfo activityInfo = intent.activity.info;
10537            final ApplicationInfo applicationInfo = activityInfo.applicationInfo;
10538
10539            final boolean privilegedApp =
10540                    ((applicationInfo.privateFlags & ApplicationInfo.PRIVATE_FLAG_PRIVILEGED) != 0);
10541            if (!privilegedApp) {
10542                // non-privileged applications can never define a priority >0
10543                Slog.w(TAG, "Non-privileged app; cap priority to 0;"
10544                        + " package: " + applicationInfo.packageName
10545                        + " activity: " + intent.activity.className
10546                        + " origPrio: " + intent.getPriority());
10547                intent.setPriority(0);
10548                return;
10549            }
10550
10551            if (systemActivities == null) {
10552                // the system package is not disabled; we're parsing the system partition
10553                if (isProtectedAction(intent)) {
10554                    if (mDeferProtectedFilters) {
10555                        // We can't deal with these just yet. No component should ever obtain a
10556                        // >0 priority for a protected actions, with ONE exception -- the setup
10557                        // wizard. The setup wizard, however, cannot be known until we're able to
10558                        // query it for the category CATEGORY_SETUP_WIZARD. Which we can't do
10559                        // until all intent filters have been processed. Chicken, meet egg.
10560                        // Let the filter temporarily have a high priority and rectify the
10561                        // priorities after all system packages have been scanned.
10562                        mProtectedFilters.add(intent);
10563                        if (DEBUG_FILTERS) {
10564                            Slog.i(TAG, "Protected action; save for later;"
10565                                    + " package: " + applicationInfo.packageName
10566                                    + " activity: " + intent.activity.className
10567                                    + " origPrio: " + intent.getPriority());
10568                        }
10569                        return;
10570                    } else {
10571                        if (DEBUG_FILTERS && mSetupWizardPackage == null) {
10572                            Slog.i(TAG, "No setup wizard;"
10573                                + " All protected intents capped to priority 0");
10574                        }
10575                        if (intent.activity.info.packageName.equals(mSetupWizardPackage)) {
10576                            if (DEBUG_FILTERS) {
10577                                Slog.i(TAG, "Found setup wizard;"
10578                                    + " allow priority " + intent.getPriority() + ";"
10579                                    + " package: " + intent.activity.info.packageName
10580                                    + " activity: " + intent.activity.className
10581                                    + " priority: " + intent.getPriority());
10582                            }
10583                            // setup wizard gets whatever it wants
10584                            return;
10585                        }
10586                        Slog.w(TAG, "Protected action; cap priority to 0;"
10587                                + " package: " + intent.activity.info.packageName
10588                                + " activity: " + intent.activity.className
10589                                + " origPrio: " + intent.getPriority());
10590                        intent.setPriority(0);
10591                        return;
10592                    }
10593                }
10594                // privileged apps on the system image get whatever priority they request
10595                return;
10596            }
10597
10598            // privileged app unbundled update ... try to find the same activity
10599            final PackageParser.Activity foundActivity =
10600                    findMatchingActivity(systemActivities, activityInfo);
10601            if (foundActivity == null) {
10602                // this is a new activity; it cannot obtain >0 priority
10603                if (DEBUG_FILTERS) {
10604                    Slog.i(TAG, "New activity; cap priority to 0;"
10605                            + " package: " + applicationInfo.packageName
10606                            + " activity: " + intent.activity.className
10607                            + " origPrio: " + intent.getPriority());
10608                }
10609                intent.setPriority(0);
10610                return;
10611            }
10612
10613            // found activity, now check for filter equivalence
10614
10615            // a shallow copy is enough; we modify the list, not its contents
10616            final List<ActivityIntentInfo> intentListCopy =
10617                    new ArrayList<>(foundActivity.intents);
10618            final List<ActivityIntentInfo> foundFilters = findFilters(intent);
10619
10620            // find matching action subsets
10621            final Iterator<String> actionsIterator = intent.actionsIterator();
10622            if (actionsIterator != null) {
10623                getIntentListSubset(
10624                        intentListCopy, new ActionIterGenerator(), actionsIterator);
10625                if (intentListCopy.size() == 0) {
10626                    // no more intents to match; we're not equivalent
10627                    if (DEBUG_FILTERS) {
10628                        Slog.i(TAG, "Mismatched action; cap priority to 0;"
10629                                + " package: " + applicationInfo.packageName
10630                                + " activity: " + intent.activity.className
10631                                + " origPrio: " + intent.getPriority());
10632                    }
10633                    intent.setPriority(0);
10634                    return;
10635                }
10636            }
10637
10638            // find matching category subsets
10639            final Iterator<String> categoriesIterator = intent.categoriesIterator();
10640            if (categoriesIterator != null) {
10641                getIntentListSubset(intentListCopy, new CategoriesIterGenerator(),
10642                        categoriesIterator);
10643                if (intentListCopy.size() == 0) {
10644                    // no more intents to match; we're not equivalent
10645                    if (DEBUG_FILTERS) {
10646                        Slog.i(TAG, "Mismatched category; cap priority to 0;"
10647                                + " package: " + applicationInfo.packageName
10648                                + " activity: " + intent.activity.className
10649                                + " origPrio: " + intent.getPriority());
10650                    }
10651                    intent.setPriority(0);
10652                    return;
10653                }
10654            }
10655
10656            // find matching schemes subsets
10657            final Iterator<String> schemesIterator = intent.schemesIterator();
10658            if (schemesIterator != null) {
10659                getIntentListSubset(intentListCopy, new SchemesIterGenerator(),
10660                        schemesIterator);
10661                if (intentListCopy.size() == 0) {
10662                    // no more intents to match; we're not equivalent
10663                    if (DEBUG_FILTERS) {
10664                        Slog.i(TAG, "Mismatched scheme; cap priority to 0;"
10665                                + " package: " + applicationInfo.packageName
10666                                + " activity: " + intent.activity.className
10667                                + " origPrio: " + intent.getPriority());
10668                    }
10669                    intent.setPriority(0);
10670                    return;
10671                }
10672            }
10673
10674            // find matching authorities subsets
10675            final Iterator<IntentFilter.AuthorityEntry>
10676                    authoritiesIterator = intent.authoritiesIterator();
10677            if (authoritiesIterator != null) {
10678                getIntentListSubset(intentListCopy,
10679                        new AuthoritiesIterGenerator(),
10680                        authoritiesIterator);
10681                if (intentListCopy.size() == 0) {
10682                    // no more intents to match; we're not equivalent
10683                    if (DEBUG_FILTERS) {
10684                        Slog.i(TAG, "Mismatched authority; cap priority to 0;"
10685                                + " package: " + applicationInfo.packageName
10686                                + " activity: " + intent.activity.className
10687                                + " origPrio: " + intent.getPriority());
10688                    }
10689                    intent.setPriority(0);
10690                    return;
10691                }
10692            }
10693
10694            // we found matching filter(s); app gets the max priority of all intents
10695            int cappedPriority = 0;
10696            for (int i = intentListCopy.size() - 1; i >= 0; --i) {
10697                cappedPriority = Math.max(cappedPriority, intentListCopy.get(i).getPriority());
10698            }
10699            if (intent.getPriority() > cappedPriority) {
10700                if (DEBUG_FILTERS) {
10701                    Slog.i(TAG, "Found matching filter(s);"
10702                            + " cap priority to " + cappedPriority + ";"
10703                            + " package: " + applicationInfo.packageName
10704                            + " activity: " + intent.activity.className
10705                            + " origPrio: " + intent.getPriority());
10706                }
10707                intent.setPriority(cappedPriority);
10708                return;
10709            }
10710            // all this for nothing; the requested priority was <= what was on the system
10711        }
10712
10713        public final void addActivity(PackageParser.Activity a, String type) {
10714            mActivities.put(a.getComponentName(), a);
10715            if (DEBUG_SHOW_INFO)
10716                Log.v(
10717                TAG, "  " + type + " " +
10718                (a.info.nonLocalizedLabel != null ? a.info.nonLocalizedLabel : a.info.name) + ":");
10719            if (DEBUG_SHOW_INFO)
10720                Log.v(TAG, "    Class=" + a.info.name);
10721            final int NI = a.intents.size();
10722            for (int j=0; j<NI; j++) {
10723                PackageParser.ActivityIntentInfo intent = a.intents.get(j);
10724                if ("activity".equals(type)) {
10725                    final PackageSetting ps =
10726                            mSettings.getDisabledSystemPkgLPr(intent.activity.info.packageName);
10727                    final List<PackageParser.Activity> systemActivities =
10728                            ps != null && ps.pkg != null ? ps.pkg.activities : null;
10729                    adjustPriority(systemActivities, intent);
10730                }
10731                if (DEBUG_SHOW_INFO) {
10732                    Log.v(TAG, "    IntentFilter:");
10733                    intent.dump(new LogPrinter(Log.VERBOSE, TAG), "      ");
10734                }
10735                if (!intent.debugCheck()) {
10736                    Log.w(TAG, "==> For Activity " + a.info.name);
10737                }
10738                addFilter(intent);
10739            }
10740        }
10741
10742        public final void removeActivity(PackageParser.Activity a, String type) {
10743            mActivities.remove(a.getComponentName());
10744            if (DEBUG_SHOW_INFO) {
10745                Log.v(TAG, "  " + type + " "
10746                        + (a.info.nonLocalizedLabel != null ? a.info.nonLocalizedLabel
10747                                : a.info.name) + ":");
10748                Log.v(TAG, "    Class=" + a.info.name);
10749            }
10750            final int NI = a.intents.size();
10751            for (int j=0; j<NI; j++) {
10752                PackageParser.ActivityIntentInfo intent = a.intents.get(j);
10753                if (DEBUG_SHOW_INFO) {
10754                    Log.v(TAG, "    IntentFilter:");
10755                    intent.dump(new LogPrinter(Log.VERBOSE, TAG), "      ");
10756                }
10757                removeFilter(intent);
10758            }
10759        }
10760
10761        @Override
10762        protected boolean allowFilterResult(
10763                PackageParser.ActivityIntentInfo filter, List<ResolveInfo> dest) {
10764            ActivityInfo filterAi = filter.activity.info;
10765            for (int i=dest.size()-1; i>=0; i--) {
10766                ActivityInfo destAi = dest.get(i).activityInfo;
10767                if (destAi.name == filterAi.name
10768                        && destAi.packageName == filterAi.packageName) {
10769                    return false;
10770                }
10771            }
10772            return true;
10773        }
10774
10775        @Override
10776        protected ActivityIntentInfo[] newArray(int size) {
10777            return new ActivityIntentInfo[size];
10778        }
10779
10780        @Override
10781        protected boolean isFilterStopped(PackageParser.ActivityIntentInfo filter, int userId) {
10782            if (!sUserManager.exists(userId)) return true;
10783            PackageParser.Package p = filter.activity.owner;
10784            if (p != null) {
10785                PackageSetting ps = (PackageSetting)p.mExtras;
10786                if (ps != null) {
10787                    // System apps are never considered stopped for purposes of
10788                    // filtering, because there may be no way for the user to
10789                    // actually re-launch them.
10790                    return (ps.pkgFlags&ApplicationInfo.FLAG_SYSTEM) == 0
10791                            && ps.getStopped(userId);
10792                }
10793            }
10794            return false;
10795        }
10796
10797        @Override
10798        protected boolean isPackageForFilter(String packageName,
10799                PackageParser.ActivityIntentInfo info) {
10800            return packageName.equals(info.activity.owner.packageName);
10801        }
10802
10803        @Override
10804        protected ResolveInfo newResult(PackageParser.ActivityIntentInfo info,
10805                int match, int userId) {
10806            if (!sUserManager.exists(userId)) return null;
10807            if (!mSettings.isEnabledAndMatchLPr(info.activity.info, mFlags, userId)) {
10808                return null;
10809            }
10810            final PackageParser.Activity activity = info.activity;
10811            PackageSetting ps = (PackageSetting) activity.owner.mExtras;
10812            if (ps == null) {
10813                return null;
10814            }
10815            ActivityInfo ai = PackageParser.generateActivityInfo(activity, mFlags,
10816                    ps.readUserState(userId), userId);
10817            if (ai == null) {
10818                return null;
10819            }
10820            final ResolveInfo res = new ResolveInfo();
10821            res.activityInfo = ai;
10822            if ((mFlags&PackageManager.GET_RESOLVED_FILTER) != 0) {
10823                res.filter = info;
10824            }
10825            if (info != null) {
10826                res.handleAllWebDataURI = info.handleAllWebDataURI();
10827            }
10828            res.priority = info.getPriority();
10829            res.preferredOrder = activity.owner.mPreferredOrder;
10830            //System.out.println("Result: " + res.activityInfo.className +
10831            //                   " = " + res.priority);
10832            res.match = match;
10833            res.isDefault = info.hasDefault;
10834            res.labelRes = info.labelRes;
10835            res.nonLocalizedLabel = info.nonLocalizedLabel;
10836            if (userNeedsBadging(userId)) {
10837                res.noResourceId = true;
10838            } else {
10839                res.icon = info.icon;
10840            }
10841            res.iconResourceId = info.icon;
10842            res.system = res.activityInfo.applicationInfo.isSystemApp();
10843            return res;
10844        }
10845
10846        @Override
10847        protected void sortResults(List<ResolveInfo> results) {
10848            Collections.sort(results, mResolvePrioritySorter);
10849        }
10850
10851        @Override
10852        protected void dumpFilter(PrintWriter out, String prefix,
10853                PackageParser.ActivityIntentInfo filter) {
10854            out.print(prefix); out.print(
10855                    Integer.toHexString(System.identityHashCode(filter.activity)));
10856                    out.print(' ');
10857                    filter.activity.printComponentShortName(out);
10858                    out.print(" filter ");
10859                    out.println(Integer.toHexString(System.identityHashCode(filter)));
10860        }
10861
10862        @Override
10863        protected Object filterToLabel(PackageParser.ActivityIntentInfo filter) {
10864            return filter.activity;
10865        }
10866
10867        protected void dumpFilterLabel(PrintWriter out, String prefix, Object label, int count) {
10868            PackageParser.Activity activity = (PackageParser.Activity)label;
10869            out.print(prefix); out.print(
10870                    Integer.toHexString(System.identityHashCode(activity)));
10871                    out.print(' ');
10872                    activity.printComponentShortName(out);
10873            if (count > 1) {
10874                out.print(" ("); out.print(count); out.print(" filters)");
10875            }
10876            out.println();
10877        }
10878
10879        // Keys are String (activity class name), values are Activity.
10880        private final ArrayMap<ComponentName, PackageParser.Activity> mActivities
10881                = new ArrayMap<ComponentName, PackageParser.Activity>();
10882        private int mFlags;
10883    }
10884
10885    private final class ServiceIntentResolver
10886            extends IntentResolver<PackageParser.ServiceIntentInfo, ResolveInfo> {
10887        public List<ResolveInfo> queryIntent(Intent intent, String resolvedType,
10888                boolean defaultOnly, int userId) {
10889            mFlags = defaultOnly ? PackageManager.MATCH_DEFAULT_ONLY : 0;
10890            return super.queryIntent(intent, resolvedType, defaultOnly, userId);
10891        }
10892
10893        public List<ResolveInfo> queryIntent(Intent intent, String resolvedType, int flags,
10894                int userId) {
10895            if (!sUserManager.exists(userId)) return null;
10896            mFlags = flags;
10897            return super.queryIntent(intent, resolvedType,
10898                    (flags & PackageManager.MATCH_DEFAULT_ONLY) != 0, userId);
10899        }
10900
10901        public List<ResolveInfo> queryIntentForPackage(Intent intent, String resolvedType,
10902                int flags, ArrayList<PackageParser.Service> packageServices, int userId) {
10903            if (!sUserManager.exists(userId)) return null;
10904            if (packageServices == null) {
10905                return null;
10906            }
10907            mFlags = flags;
10908            final boolean defaultOnly = (flags&PackageManager.MATCH_DEFAULT_ONLY) != 0;
10909            final int N = packageServices.size();
10910            ArrayList<PackageParser.ServiceIntentInfo[]> listCut =
10911                new ArrayList<PackageParser.ServiceIntentInfo[]>(N);
10912
10913            ArrayList<PackageParser.ServiceIntentInfo> intentFilters;
10914            for (int i = 0; i < N; ++i) {
10915                intentFilters = packageServices.get(i).intents;
10916                if (intentFilters != null && intentFilters.size() > 0) {
10917                    PackageParser.ServiceIntentInfo[] array =
10918                            new PackageParser.ServiceIntentInfo[intentFilters.size()];
10919                    intentFilters.toArray(array);
10920                    listCut.add(array);
10921                }
10922            }
10923            return super.queryIntentFromList(intent, resolvedType, defaultOnly, listCut, userId);
10924        }
10925
10926        public final void addService(PackageParser.Service s) {
10927            mServices.put(s.getComponentName(), s);
10928            if (DEBUG_SHOW_INFO) {
10929                Log.v(TAG, "  "
10930                        + (s.info.nonLocalizedLabel != null
10931                        ? s.info.nonLocalizedLabel : s.info.name) + ":");
10932                Log.v(TAG, "    Class=" + s.info.name);
10933            }
10934            final int NI = s.intents.size();
10935            int j;
10936            for (j=0; j<NI; j++) {
10937                PackageParser.ServiceIntentInfo intent = s.intents.get(j);
10938                if (DEBUG_SHOW_INFO) {
10939                    Log.v(TAG, "    IntentFilter:");
10940                    intent.dump(new LogPrinter(Log.VERBOSE, TAG), "      ");
10941                }
10942                if (!intent.debugCheck()) {
10943                    Log.w(TAG, "==> For Service " + s.info.name);
10944                }
10945                addFilter(intent);
10946            }
10947        }
10948
10949        public final void removeService(PackageParser.Service s) {
10950            mServices.remove(s.getComponentName());
10951            if (DEBUG_SHOW_INFO) {
10952                Log.v(TAG, "  " + (s.info.nonLocalizedLabel != null
10953                        ? s.info.nonLocalizedLabel : s.info.name) + ":");
10954                Log.v(TAG, "    Class=" + s.info.name);
10955            }
10956            final int NI = s.intents.size();
10957            int j;
10958            for (j=0; j<NI; j++) {
10959                PackageParser.ServiceIntentInfo intent = s.intents.get(j);
10960                if (DEBUG_SHOW_INFO) {
10961                    Log.v(TAG, "    IntentFilter:");
10962                    intent.dump(new LogPrinter(Log.VERBOSE, TAG), "      ");
10963                }
10964                removeFilter(intent);
10965            }
10966        }
10967
10968        @Override
10969        protected boolean allowFilterResult(
10970                PackageParser.ServiceIntentInfo filter, List<ResolveInfo> dest) {
10971            ServiceInfo filterSi = filter.service.info;
10972            for (int i=dest.size()-1; i>=0; i--) {
10973                ServiceInfo destAi = dest.get(i).serviceInfo;
10974                if (destAi.name == filterSi.name
10975                        && destAi.packageName == filterSi.packageName) {
10976                    return false;
10977                }
10978            }
10979            return true;
10980        }
10981
10982        @Override
10983        protected PackageParser.ServiceIntentInfo[] newArray(int size) {
10984            return new PackageParser.ServiceIntentInfo[size];
10985        }
10986
10987        @Override
10988        protected boolean isFilterStopped(PackageParser.ServiceIntentInfo filter, int userId) {
10989            if (!sUserManager.exists(userId)) return true;
10990            PackageParser.Package p = filter.service.owner;
10991            if (p != null) {
10992                PackageSetting ps = (PackageSetting)p.mExtras;
10993                if (ps != null) {
10994                    // System apps are never considered stopped for purposes of
10995                    // filtering, because there may be no way for the user to
10996                    // actually re-launch them.
10997                    return (ps.pkgFlags & ApplicationInfo.FLAG_SYSTEM) == 0
10998                            && ps.getStopped(userId);
10999                }
11000            }
11001            return false;
11002        }
11003
11004        @Override
11005        protected boolean isPackageForFilter(String packageName,
11006                PackageParser.ServiceIntentInfo info) {
11007            return packageName.equals(info.service.owner.packageName);
11008        }
11009
11010        @Override
11011        protected ResolveInfo newResult(PackageParser.ServiceIntentInfo filter,
11012                int match, int userId) {
11013            if (!sUserManager.exists(userId)) return null;
11014            final PackageParser.ServiceIntentInfo info = (PackageParser.ServiceIntentInfo)filter;
11015            if (!mSettings.isEnabledAndMatchLPr(info.service.info, mFlags, userId)) {
11016                return null;
11017            }
11018            final PackageParser.Service service = info.service;
11019            PackageSetting ps = (PackageSetting) service.owner.mExtras;
11020            if (ps == null) {
11021                return null;
11022            }
11023            ServiceInfo si = PackageParser.generateServiceInfo(service, mFlags,
11024                    ps.readUserState(userId), userId);
11025            if (si == null) {
11026                return null;
11027            }
11028            final ResolveInfo res = new ResolveInfo();
11029            res.serviceInfo = si;
11030            if ((mFlags&PackageManager.GET_RESOLVED_FILTER) != 0) {
11031                res.filter = filter;
11032            }
11033            res.priority = info.getPriority();
11034            res.preferredOrder = service.owner.mPreferredOrder;
11035            res.match = match;
11036            res.isDefault = info.hasDefault;
11037            res.labelRes = info.labelRes;
11038            res.nonLocalizedLabel = info.nonLocalizedLabel;
11039            res.icon = info.icon;
11040            res.system = res.serviceInfo.applicationInfo.isSystemApp();
11041            return res;
11042        }
11043
11044        @Override
11045        protected void sortResults(List<ResolveInfo> results) {
11046            Collections.sort(results, mResolvePrioritySorter);
11047        }
11048
11049        @Override
11050        protected void dumpFilter(PrintWriter out, String prefix,
11051                PackageParser.ServiceIntentInfo filter) {
11052            out.print(prefix); out.print(
11053                    Integer.toHexString(System.identityHashCode(filter.service)));
11054                    out.print(' ');
11055                    filter.service.printComponentShortName(out);
11056                    out.print(" filter ");
11057                    out.println(Integer.toHexString(System.identityHashCode(filter)));
11058        }
11059
11060        @Override
11061        protected Object filterToLabel(PackageParser.ServiceIntentInfo filter) {
11062            return filter.service;
11063        }
11064
11065        protected void dumpFilterLabel(PrintWriter out, String prefix, Object label, int count) {
11066            PackageParser.Service service = (PackageParser.Service)label;
11067            out.print(prefix); out.print(
11068                    Integer.toHexString(System.identityHashCode(service)));
11069                    out.print(' ');
11070                    service.printComponentShortName(out);
11071            if (count > 1) {
11072                out.print(" ("); out.print(count); out.print(" filters)");
11073            }
11074            out.println();
11075        }
11076
11077//        List<ResolveInfo> filterEnabled(List<ResolveInfo> resolveInfoList) {
11078//            final Iterator<ResolveInfo> i = resolveInfoList.iterator();
11079//            final List<ResolveInfo> retList = Lists.newArrayList();
11080//            while (i.hasNext()) {
11081//                final ResolveInfo resolveInfo = (ResolveInfo) i;
11082//                if (isEnabledLP(resolveInfo.serviceInfo)) {
11083//                    retList.add(resolveInfo);
11084//                }
11085//            }
11086//            return retList;
11087//        }
11088
11089        // Keys are String (activity class name), values are Activity.
11090        private final ArrayMap<ComponentName, PackageParser.Service> mServices
11091                = new ArrayMap<ComponentName, PackageParser.Service>();
11092        private int mFlags;
11093    };
11094
11095    private final class ProviderIntentResolver
11096            extends IntentResolver<PackageParser.ProviderIntentInfo, ResolveInfo> {
11097        public List<ResolveInfo> queryIntent(Intent intent, String resolvedType,
11098                boolean defaultOnly, int userId) {
11099            mFlags = defaultOnly ? PackageManager.MATCH_DEFAULT_ONLY : 0;
11100            return super.queryIntent(intent, resolvedType, defaultOnly, userId);
11101        }
11102
11103        public List<ResolveInfo> queryIntent(Intent intent, String resolvedType, int flags,
11104                int userId) {
11105            if (!sUserManager.exists(userId))
11106                return null;
11107            mFlags = flags;
11108            return super.queryIntent(intent, resolvedType,
11109                    (flags & PackageManager.MATCH_DEFAULT_ONLY) != 0, userId);
11110        }
11111
11112        public List<ResolveInfo> queryIntentForPackage(Intent intent, String resolvedType,
11113                int flags, ArrayList<PackageParser.Provider> packageProviders, int userId) {
11114            if (!sUserManager.exists(userId))
11115                return null;
11116            if (packageProviders == null) {
11117                return null;
11118            }
11119            mFlags = flags;
11120            final boolean defaultOnly = (flags & PackageManager.MATCH_DEFAULT_ONLY) != 0;
11121            final int N = packageProviders.size();
11122            ArrayList<PackageParser.ProviderIntentInfo[]> listCut =
11123                    new ArrayList<PackageParser.ProviderIntentInfo[]>(N);
11124
11125            ArrayList<PackageParser.ProviderIntentInfo> intentFilters;
11126            for (int i = 0; i < N; ++i) {
11127                intentFilters = packageProviders.get(i).intents;
11128                if (intentFilters != null && intentFilters.size() > 0) {
11129                    PackageParser.ProviderIntentInfo[] array =
11130                            new PackageParser.ProviderIntentInfo[intentFilters.size()];
11131                    intentFilters.toArray(array);
11132                    listCut.add(array);
11133                }
11134            }
11135            return super.queryIntentFromList(intent, resolvedType, defaultOnly, listCut, userId);
11136        }
11137
11138        public final void addProvider(PackageParser.Provider p) {
11139            if (mProviders.containsKey(p.getComponentName())) {
11140                Slog.w(TAG, "Provider " + p.getComponentName() + " already defined; ignoring");
11141                return;
11142            }
11143
11144            mProviders.put(p.getComponentName(), p);
11145            if (DEBUG_SHOW_INFO) {
11146                Log.v(TAG, "  "
11147                        + (p.info.nonLocalizedLabel != null
11148                                ? p.info.nonLocalizedLabel : p.info.name) + ":");
11149                Log.v(TAG, "    Class=" + p.info.name);
11150            }
11151            final int NI = p.intents.size();
11152            int j;
11153            for (j = 0; j < NI; j++) {
11154                PackageParser.ProviderIntentInfo intent = p.intents.get(j);
11155                if (DEBUG_SHOW_INFO) {
11156                    Log.v(TAG, "    IntentFilter:");
11157                    intent.dump(new LogPrinter(Log.VERBOSE, TAG), "      ");
11158                }
11159                if (!intent.debugCheck()) {
11160                    Log.w(TAG, "==> For Provider " + p.info.name);
11161                }
11162                addFilter(intent);
11163            }
11164        }
11165
11166        public final void removeProvider(PackageParser.Provider p) {
11167            mProviders.remove(p.getComponentName());
11168            if (DEBUG_SHOW_INFO) {
11169                Log.v(TAG, "  " + (p.info.nonLocalizedLabel != null
11170                        ? p.info.nonLocalizedLabel : p.info.name) + ":");
11171                Log.v(TAG, "    Class=" + p.info.name);
11172            }
11173            final int NI = p.intents.size();
11174            int j;
11175            for (j = 0; j < NI; j++) {
11176                PackageParser.ProviderIntentInfo intent = p.intents.get(j);
11177                if (DEBUG_SHOW_INFO) {
11178                    Log.v(TAG, "    IntentFilter:");
11179                    intent.dump(new LogPrinter(Log.VERBOSE, TAG), "      ");
11180                }
11181                removeFilter(intent);
11182            }
11183        }
11184
11185        @Override
11186        protected boolean allowFilterResult(
11187                PackageParser.ProviderIntentInfo filter, List<ResolveInfo> dest) {
11188            ProviderInfo filterPi = filter.provider.info;
11189            for (int i = dest.size() - 1; i >= 0; i--) {
11190                ProviderInfo destPi = dest.get(i).providerInfo;
11191                if (destPi.name == filterPi.name
11192                        && destPi.packageName == filterPi.packageName) {
11193                    return false;
11194                }
11195            }
11196            return true;
11197        }
11198
11199        @Override
11200        protected PackageParser.ProviderIntentInfo[] newArray(int size) {
11201            return new PackageParser.ProviderIntentInfo[size];
11202        }
11203
11204        @Override
11205        protected boolean isFilterStopped(PackageParser.ProviderIntentInfo filter, int userId) {
11206            if (!sUserManager.exists(userId))
11207                return true;
11208            PackageParser.Package p = filter.provider.owner;
11209            if (p != null) {
11210                PackageSetting ps = (PackageSetting) p.mExtras;
11211                if (ps != null) {
11212                    // System apps are never considered stopped for purposes of
11213                    // filtering, because there may be no way for the user to
11214                    // actually re-launch them.
11215                    return (ps.pkgFlags & ApplicationInfo.FLAG_SYSTEM) == 0
11216                            && ps.getStopped(userId);
11217                }
11218            }
11219            return false;
11220        }
11221
11222        @Override
11223        protected boolean isPackageForFilter(String packageName,
11224                PackageParser.ProviderIntentInfo info) {
11225            return packageName.equals(info.provider.owner.packageName);
11226        }
11227
11228        @Override
11229        protected ResolveInfo newResult(PackageParser.ProviderIntentInfo filter,
11230                int match, int userId) {
11231            if (!sUserManager.exists(userId))
11232                return null;
11233            final PackageParser.ProviderIntentInfo info = filter;
11234            if (!mSettings.isEnabledAndMatchLPr(info.provider.info, mFlags, userId)) {
11235                return null;
11236            }
11237            final PackageParser.Provider provider = info.provider;
11238            PackageSetting ps = (PackageSetting) provider.owner.mExtras;
11239            if (ps == null) {
11240                return null;
11241            }
11242            ProviderInfo pi = PackageParser.generateProviderInfo(provider, mFlags,
11243                    ps.readUserState(userId), userId);
11244            if (pi == null) {
11245                return null;
11246            }
11247            final ResolveInfo res = new ResolveInfo();
11248            res.providerInfo = pi;
11249            if ((mFlags & PackageManager.GET_RESOLVED_FILTER) != 0) {
11250                res.filter = filter;
11251            }
11252            res.priority = info.getPriority();
11253            res.preferredOrder = provider.owner.mPreferredOrder;
11254            res.match = match;
11255            res.isDefault = info.hasDefault;
11256            res.labelRes = info.labelRes;
11257            res.nonLocalizedLabel = info.nonLocalizedLabel;
11258            res.icon = info.icon;
11259            res.system = res.providerInfo.applicationInfo.isSystemApp();
11260            return res;
11261        }
11262
11263        @Override
11264        protected void sortResults(List<ResolveInfo> results) {
11265            Collections.sort(results, mResolvePrioritySorter);
11266        }
11267
11268        @Override
11269        protected void dumpFilter(PrintWriter out, String prefix,
11270                PackageParser.ProviderIntentInfo filter) {
11271            out.print(prefix);
11272            out.print(
11273                    Integer.toHexString(System.identityHashCode(filter.provider)));
11274            out.print(' ');
11275            filter.provider.printComponentShortName(out);
11276            out.print(" filter ");
11277            out.println(Integer.toHexString(System.identityHashCode(filter)));
11278        }
11279
11280        @Override
11281        protected Object filterToLabel(PackageParser.ProviderIntentInfo filter) {
11282            return filter.provider;
11283        }
11284
11285        protected void dumpFilterLabel(PrintWriter out, String prefix, Object label, int count) {
11286            PackageParser.Provider provider = (PackageParser.Provider)label;
11287            out.print(prefix); out.print(
11288                    Integer.toHexString(System.identityHashCode(provider)));
11289                    out.print(' ');
11290                    provider.printComponentShortName(out);
11291            if (count > 1) {
11292                out.print(" ("); out.print(count); out.print(" filters)");
11293            }
11294            out.println();
11295        }
11296
11297        private final ArrayMap<ComponentName, PackageParser.Provider> mProviders
11298                = new ArrayMap<ComponentName, PackageParser.Provider>();
11299        private int mFlags;
11300    }
11301
11302    private static final class EphemeralIntentResolver
11303            extends IntentResolver<EphemeralResolveIntentInfo, EphemeralResolveInfo> {
11304        @Override
11305        protected EphemeralResolveIntentInfo[] newArray(int size) {
11306            return new EphemeralResolveIntentInfo[size];
11307        }
11308
11309        @Override
11310        protected boolean isPackageForFilter(String packageName, EphemeralResolveIntentInfo info) {
11311            return true;
11312        }
11313
11314        @Override
11315        protected EphemeralResolveInfo newResult(EphemeralResolveIntentInfo info, int match,
11316                int userId) {
11317            if (!sUserManager.exists(userId)) {
11318                return null;
11319            }
11320            return info.getEphemeralResolveInfo();
11321        }
11322    }
11323
11324    private static final Comparator<ResolveInfo> mResolvePrioritySorter =
11325            new Comparator<ResolveInfo>() {
11326        public int compare(ResolveInfo r1, ResolveInfo r2) {
11327            int v1 = r1.priority;
11328            int v2 = r2.priority;
11329            //System.out.println("Comparing: q1=" + q1 + " q2=" + q2);
11330            if (v1 != v2) {
11331                return (v1 > v2) ? -1 : 1;
11332            }
11333            v1 = r1.preferredOrder;
11334            v2 = r2.preferredOrder;
11335            if (v1 != v2) {
11336                return (v1 > v2) ? -1 : 1;
11337            }
11338            if (r1.isDefault != r2.isDefault) {
11339                return r1.isDefault ? -1 : 1;
11340            }
11341            v1 = r1.match;
11342            v2 = r2.match;
11343            //System.out.println("Comparing: m1=" + m1 + " m2=" + m2);
11344            if (v1 != v2) {
11345                return (v1 > v2) ? -1 : 1;
11346            }
11347            if (r1.system != r2.system) {
11348                return r1.system ? -1 : 1;
11349            }
11350            if (r1.activityInfo != null) {
11351                return r1.activityInfo.packageName.compareTo(r2.activityInfo.packageName);
11352            }
11353            if (r1.serviceInfo != null) {
11354                return r1.serviceInfo.packageName.compareTo(r2.serviceInfo.packageName);
11355            }
11356            if (r1.providerInfo != null) {
11357                return r1.providerInfo.packageName.compareTo(r2.providerInfo.packageName);
11358            }
11359            return 0;
11360        }
11361    };
11362
11363    private static final Comparator<ProviderInfo> mProviderInitOrderSorter =
11364            new Comparator<ProviderInfo>() {
11365        public int compare(ProviderInfo p1, ProviderInfo p2) {
11366            final int v1 = p1.initOrder;
11367            final int v2 = p2.initOrder;
11368            return (v1 > v2) ? -1 : ((v1 < v2) ? 1 : 0);
11369        }
11370    };
11371
11372    final void sendPackageBroadcast(final String action, final String pkg, final Bundle extras,
11373            final int flags, final String targetPkg, final IIntentReceiver finishedReceiver,
11374            final int[] userIds) {
11375        mHandler.post(new Runnable() {
11376            @Override
11377            public void run() {
11378                try {
11379                    final IActivityManager am = ActivityManagerNative.getDefault();
11380                    if (am == null) return;
11381                    final int[] resolvedUserIds;
11382                    if (userIds == null) {
11383                        resolvedUserIds = am.getRunningUserIds();
11384                    } else {
11385                        resolvedUserIds = userIds;
11386                    }
11387                    for (int id : resolvedUserIds) {
11388                        final Intent intent = new Intent(action,
11389                                pkg != null ? Uri.fromParts("package", pkg, null) : null);
11390                        if (extras != null) {
11391                            intent.putExtras(extras);
11392                        }
11393                        if (targetPkg != null) {
11394                            intent.setPackage(targetPkg);
11395                        }
11396                        // Modify the UID when posting to other users
11397                        int uid = intent.getIntExtra(Intent.EXTRA_UID, -1);
11398                        if (uid > 0 && UserHandle.getUserId(uid) != id) {
11399                            uid = UserHandle.getUid(id, UserHandle.getAppId(uid));
11400                            intent.putExtra(Intent.EXTRA_UID, uid);
11401                        }
11402                        intent.putExtra(Intent.EXTRA_USER_HANDLE, id);
11403                        intent.addFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY_BEFORE_BOOT | flags);
11404                        if (DEBUG_BROADCASTS) {
11405                            RuntimeException here = new RuntimeException("here");
11406                            here.fillInStackTrace();
11407                            Slog.d(TAG, "Sending to user " + id + ": "
11408                                    + intent.toShortString(false, true, false, false)
11409                                    + " " + intent.getExtras(), here);
11410                        }
11411                        am.broadcastIntent(null, intent, null, finishedReceiver,
11412                                0, null, null, null, android.app.AppOpsManager.OP_NONE,
11413                                null, finishedReceiver != null, false, id);
11414                    }
11415                } catch (RemoteException ex) {
11416                }
11417            }
11418        });
11419    }
11420
11421    /**
11422     * Check if the external storage media is available. This is true if there
11423     * is a mounted external storage medium or if the external storage is
11424     * emulated.
11425     */
11426    private boolean isExternalMediaAvailable() {
11427        return mMediaMounted || Environment.isExternalStorageEmulated();
11428    }
11429
11430    @Override
11431    public PackageCleanItem nextPackageToClean(PackageCleanItem lastPackage) {
11432        // writer
11433        synchronized (mPackages) {
11434            if (!isExternalMediaAvailable()) {
11435                // If the external storage is no longer mounted at this point,
11436                // the caller may not have been able to delete all of this
11437                // packages files and can not delete any more.  Bail.
11438                return null;
11439            }
11440            final ArrayList<PackageCleanItem> pkgs = mSettings.mPackagesToBeCleaned;
11441            if (lastPackage != null) {
11442                pkgs.remove(lastPackage);
11443            }
11444            if (pkgs.size() > 0) {
11445                return pkgs.get(0);
11446            }
11447        }
11448        return null;
11449    }
11450
11451    void schedulePackageCleaning(String packageName, int userId, boolean andCode) {
11452        final Message msg = mHandler.obtainMessage(START_CLEANING_PACKAGE,
11453                userId, andCode ? 1 : 0, packageName);
11454        if (mSystemReady) {
11455            msg.sendToTarget();
11456        } else {
11457            if (mPostSystemReadyMessages == null) {
11458                mPostSystemReadyMessages = new ArrayList<>();
11459            }
11460            mPostSystemReadyMessages.add(msg);
11461        }
11462    }
11463
11464    void startCleaningPackages() {
11465        // reader
11466        if (!isExternalMediaAvailable()) {
11467            return;
11468        }
11469        synchronized (mPackages) {
11470            if (mSettings.mPackagesToBeCleaned.isEmpty()) {
11471                return;
11472            }
11473        }
11474        Intent intent = new Intent(PackageManager.ACTION_CLEAN_EXTERNAL_STORAGE);
11475        intent.setComponent(DEFAULT_CONTAINER_COMPONENT);
11476        IActivityManager am = ActivityManagerNative.getDefault();
11477        if (am != null) {
11478            try {
11479                am.startService(null, intent, null, mContext.getOpPackageName(),
11480                        UserHandle.USER_SYSTEM);
11481            } catch (RemoteException e) {
11482            }
11483        }
11484    }
11485
11486    @Override
11487    public void installPackageAsUser(String originPath, IPackageInstallObserver2 observer,
11488            int installFlags, String installerPackageName, int userId) {
11489        mContext.enforceCallingOrSelfPermission(android.Manifest.permission.INSTALL_PACKAGES, null);
11490
11491        final int callingUid = Binder.getCallingUid();
11492        enforceCrossUserPermission(callingUid, userId,
11493                true /* requireFullPermission */, true /* checkShell */, "installPackageAsUser");
11494
11495        if (isUserRestricted(userId, UserManager.DISALLOW_INSTALL_APPS)) {
11496            try {
11497                if (observer != null) {
11498                    observer.onPackageInstalled("", INSTALL_FAILED_USER_RESTRICTED, null, null);
11499                }
11500            } catch (RemoteException re) {
11501            }
11502            return;
11503        }
11504
11505        if ((callingUid == Process.SHELL_UID) || (callingUid == Process.ROOT_UID)) {
11506            installFlags |= PackageManager.INSTALL_FROM_ADB;
11507
11508        } else {
11509            // Caller holds INSTALL_PACKAGES permission, so we're less strict
11510            // about installerPackageName.
11511
11512            installFlags &= ~PackageManager.INSTALL_FROM_ADB;
11513            installFlags &= ~PackageManager.INSTALL_ALL_USERS;
11514        }
11515
11516        UserHandle user;
11517        if ((installFlags & PackageManager.INSTALL_ALL_USERS) != 0) {
11518            user = UserHandle.ALL;
11519        } else {
11520            user = new UserHandle(userId);
11521        }
11522
11523        // Only system components can circumvent runtime permissions when installing.
11524        if ((installFlags & PackageManager.INSTALL_GRANT_RUNTIME_PERMISSIONS) != 0
11525                && mContext.checkCallingOrSelfPermission(Manifest.permission
11526                .INSTALL_GRANT_RUNTIME_PERMISSIONS) == PackageManager.PERMISSION_DENIED) {
11527            throw new SecurityException("You need the "
11528                    + "android.permission.INSTALL_GRANT_RUNTIME_PERMISSIONS permission "
11529                    + "to use the PackageManager.INSTALL_GRANT_RUNTIME_PERMISSIONS flag");
11530        }
11531
11532        final File originFile = new File(originPath);
11533        final OriginInfo origin = OriginInfo.fromUntrustedFile(originFile);
11534
11535        final Message msg = mHandler.obtainMessage(INIT_COPY);
11536        final VerificationInfo verificationInfo = new VerificationInfo(
11537                null /*originatingUri*/, null /*referrer*/, -1 /*originatingUid*/, callingUid);
11538        final InstallParams params = new InstallParams(origin, null /*moveInfo*/, observer,
11539                installFlags, installerPackageName, null /*volumeUuid*/, verificationInfo, user,
11540                null /*packageAbiOverride*/, null /*grantedPermissions*/,
11541                null /*certificates*/);
11542        params.setTraceMethod("installAsUser").setTraceCookie(System.identityHashCode(params));
11543        msg.obj = params;
11544
11545        Trace.asyncTraceBegin(TRACE_TAG_PACKAGE_MANAGER, "installAsUser",
11546                System.identityHashCode(msg.obj));
11547        Trace.asyncTraceBegin(TRACE_TAG_PACKAGE_MANAGER, "queueInstall",
11548                System.identityHashCode(msg.obj));
11549
11550        mHandler.sendMessage(msg);
11551    }
11552
11553    void installStage(String packageName, File stagedDir, String stagedCid,
11554            IPackageInstallObserver2 observer, PackageInstaller.SessionParams sessionParams,
11555            String installerPackageName, int installerUid, UserHandle user,
11556            Certificate[][] certificates) {
11557        if (DEBUG_EPHEMERAL) {
11558            if ((sessionParams.installFlags & PackageManager.INSTALL_EPHEMERAL) != 0) {
11559                Slog.d(TAG, "Ephemeral install of " + packageName);
11560            }
11561        }
11562        final VerificationInfo verificationInfo = new VerificationInfo(
11563                sessionParams.originatingUri, sessionParams.referrerUri,
11564                sessionParams.originatingUid, installerUid);
11565
11566        final OriginInfo origin;
11567        if (stagedDir != null) {
11568            origin = OriginInfo.fromStagedFile(stagedDir);
11569        } else {
11570            origin = OriginInfo.fromStagedContainer(stagedCid);
11571        }
11572
11573        final Message msg = mHandler.obtainMessage(INIT_COPY);
11574        final InstallParams params = new InstallParams(origin, null, observer,
11575                sessionParams.installFlags, installerPackageName, sessionParams.volumeUuid,
11576                verificationInfo, user, sessionParams.abiOverride,
11577                sessionParams.grantedRuntimePermissions, certificates);
11578        params.setTraceMethod("installStage").setTraceCookie(System.identityHashCode(params));
11579        msg.obj = params;
11580
11581        Trace.asyncTraceBegin(TRACE_TAG_PACKAGE_MANAGER, "installStage",
11582                System.identityHashCode(msg.obj));
11583        Trace.asyncTraceBegin(TRACE_TAG_PACKAGE_MANAGER, "queueInstall",
11584                System.identityHashCode(msg.obj));
11585
11586        mHandler.sendMessage(msg);
11587    }
11588
11589    private void sendPackageAddedForUser(String packageName, PackageSetting pkgSetting,
11590            int userId) {
11591        final boolean isSystem = isSystemApp(pkgSetting) || isUpdatedSystemApp(pkgSetting);
11592        sendPackageAddedForUser(packageName, isSystem, pkgSetting.appId, userId);
11593    }
11594
11595    private void sendPackageAddedForUser(String packageName, boolean isSystem,
11596            int appId, int userId) {
11597        Bundle extras = new Bundle(1);
11598        extras.putInt(Intent.EXTRA_UID, UserHandle.getUid(userId, appId));
11599
11600        sendPackageBroadcast(Intent.ACTION_PACKAGE_ADDED,
11601                packageName, extras, 0, null, null, new int[] {userId});
11602        try {
11603            IActivityManager am = ActivityManagerNative.getDefault();
11604            if (isSystem && am.isUserRunning(userId, 0)) {
11605                // The just-installed/enabled app is bundled on the system, so presumed
11606                // to be able to run automatically without needing an explicit launch.
11607                // Send it a BOOT_COMPLETED if it would ordinarily have gotten one.
11608                Intent bcIntent = new Intent(Intent.ACTION_BOOT_COMPLETED)
11609                        .addFlags(Intent.FLAG_INCLUDE_STOPPED_PACKAGES)
11610                        .setPackage(packageName);
11611                am.broadcastIntent(null, bcIntent, null, null, 0, null, null, null,
11612                        android.app.AppOpsManager.OP_NONE, null, false, false, userId);
11613            }
11614        } catch (RemoteException e) {
11615            // shouldn't happen
11616            Slog.w(TAG, "Unable to bootstrap installed package", e);
11617        }
11618    }
11619
11620    @Override
11621    public boolean setApplicationHiddenSettingAsUser(String packageName, boolean hidden,
11622            int userId) {
11623        mContext.enforceCallingOrSelfPermission(android.Manifest.permission.MANAGE_USERS, null);
11624        PackageSetting pkgSetting;
11625        final int uid = Binder.getCallingUid();
11626        enforceCrossUserPermission(uid, userId,
11627                true /* requireFullPermission */, true /* checkShell */,
11628                "setApplicationHiddenSetting for user " + userId);
11629
11630        if (hidden && isPackageDeviceAdmin(packageName, userId)) {
11631            Slog.w(TAG, "Not hiding package " + packageName + ": has active device admin");
11632            return false;
11633        }
11634
11635        long callingId = Binder.clearCallingIdentity();
11636        try {
11637            boolean sendAdded = false;
11638            boolean sendRemoved = false;
11639            // writer
11640            synchronized (mPackages) {
11641                pkgSetting = mSettings.mPackages.get(packageName);
11642                if (pkgSetting == null) {
11643                    return false;
11644                }
11645                if (pkgSetting.getHidden(userId) != hidden) {
11646                    pkgSetting.setHidden(hidden, userId);
11647                    mSettings.writePackageRestrictionsLPr(userId);
11648                    if (hidden) {
11649                        sendRemoved = true;
11650                    } else {
11651                        sendAdded = true;
11652                    }
11653                }
11654            }
11655            if (sendAdded) {
11656                sendPackageAddedForUser(packageName, pkgSetting, userId);
11657                return true;
11658            }
11659            if (sendRemoved) {
11660                killApplication(packageName, UserHandle.getUid(userId, pkgSetting.appId),
11661                        "hiding pkg");
11662                sendApplicationHiddenForUser(packageName, pkgSetting, userId);
11663                return true;
11664            }
11665        } finally {
11666            Binder.restoreCallingIdentity(callingId);
11667        }
11668        return false;
11669    }
11670
11671    private void sendApplicationHiddenForUser(String packageName, PackageSetting pkgSetting,
11672            int userId) {
11673        final PackageRemovedInfo info = new PackageRemovedInfo();
11674        info.removedPackage = packageName;
11675        info.removedUsers = new int[] {userId};
11676        info.uid = UserHandle.getUid(userId, pkgSetting.appId);
11677        info.sendPackageRemovedBroadcasts(true /*killApp*/);
11678    }
11679
11680    private void sendPackagesSuspendedForUser(String[] pkgList, int userId, boolean suspended) {
11681        if (pkgList.length > 0) {
11682            Bundle extras = new Bundle(1);
11683            extras.putStringArray(Intent.EXTRA_CHANGED_PACKAGE_LIST, pkgList);
11684
11685            sendPackageBroadcast(
11686                    suspended ? Intent.ACTION_PACKAGES_SUSPENDED
11687                            : Intent.ACTION_PACKAGES_UNSUSPENDED,
11688                    null, extras, Intent.FLAG_RECEIVER_REGISTERED_ONLY, null, null,
11689                    new int[] {userId});
11690        }
11691    }
11692
11693    /**
11694     * Returns true if application is not found or there was an error. Otherwise it returns
11695     * the hidden state of the package for the given user.
11696     */
11697    @Override
11698    public boolean getApplicationHiddenSettingAsUser(String packageName, int userId) {
11699        mContext.enforceCallingOrSelfPermission(android.Manifest.permission.MANAGE_USERS, null);
11700        enforceCrossUserPermission(Binder.getCallingUid(), userId,
11701                true /* requireFullPermission */, false /* checkShell */,
11702                "getApplicationHidden for user " + userId);
11703        PackageSetting pkgSetting;
11704        long callingId = Binder.clearCallingIdentity();
11705        try {
11706            // writer
11707            synchronized (mPackages) {
11708                pkgSetting = mSettings.mPackages.get(packageName);
11709                if (pkgSetting == null) {
11710                    return true;
11711                }
11712                return pkgSetting.getHidden(userId);
11713            }
11714        } finally {
11715            Binder.restoreCallingIdentity(callingId);
11716        }
11717    }
11718
11719    /**
11720     * @hide
11721     */
11722    @Override
11723    public int installExistingPackageAsUser(String packageName, int userId) {
11724        mContext.enforceCallingOrSelfPermission(android.Manifest.permission.INSTALL_PACKAGES,
11725                null);
11726        PackageSetting pkgSetting;
11727        final int uid = Binder.getCallingUid();
11728        enforceCrossUserPermission(uid, userId,
11729                true /* requireFullPermission */, true /* checkShell */,
11730                "installExistingPackage for user " + userId);
11731        if (isUserRestricted(userId, UserManager.DISALLOW_INSTALL_APPS)) {
11732            return PackageManager.INSTALL_FAILED_USER_RESTRICTED;
11733        }
11734
11735        long callingId = Binder.clearCallingIdentity();
11736        try {
11737            boolean installed = false;
11738
11739            // writer
11740            synchronized (mPackages) {
11741                pkgSetting = mSettings.mPackages.get(packageName);
11742                if (pkgSetting == null) {
11743                    return PackageManager.INSTALL_FAILED_INVALID_URI;
11744                }
11745                if (!pkgSetting.getInstalled(userId)) {
11746                    pkgSetting.setInstalled(true, userId);
11747                    pkgSetting.setHidden(false, userId);
11748                    mSettings.writePackageRestrictionsLPr(userId);
11749                    installed = true;
11750                }
11751            }
11752
11753            if (installed) {
11754                if (pkgSetting.pkg != null) {
11755                    synchronized (mInstallLock) {
11756                        // We don't need to freeze for a brand new install
11757                        prepareAppDataAfterInstallLIF(pkgSetting.pkg);
11758                    }
11759                }
11760                sendPackageAddedForUser(packageName, pkgSetting, userId);
11761            }
11762        } finally {
11763            Binder.restoreCallingIdentity(callingId);
11764        }
11765
11766        return PackageManager.INSTALL_SUCCEEDED;
11767    }
11768
11769    boolean isUserRestricted(int userId, String restrictionKey) {
11770        Bundle restrictions = sUserManager.getUserRestrictions(userId);
11771        if (restrictions.getBoolean(restrictionKey, false)) {
11772            Log.w(TAG, "User is restricted: " + restrictionKey);
11773            return true;
11774        }
11775        return false;
11776    }
11777
11778    @Override
11779    public String[] setPackagesSuspendedAsUser(String[] packageNames, boolean suspended,
11780            int userId) {
11781        mContext.enforceCallingOrSelfPermission(android.Manifest.permission.MANAGE_USERS, null);
11782        enforceCrossUserPermission(Binder.getCallingUid(), userId,
11783                true /* requireFullPermission */, true /* checkShell */,
11784                "setPackagesSuspended for user " + userId);
11785
11786        if (ArrayUtils.isEmpty(packageNames)) {
11787            return packageNames;
11788        }
11789
11790        // List of package names for whom the suspended state has changed.
11791        List<String> changedPackages = new ArrayList<>(packageNames.length);
11792        // List of package names for whom the suspended state is not set as requested in this
11793        // method.
11794        List<String> unactionedPackages = new ArrayList<>(packageNames.length);
11795        long callingId = Binder.clearCallingIdentity();
11796        try {
11797            for (int i = 0; i < packageNames.length; i++) {
11798                String packageName = packageNames[i];
11799                boolean changed = false;
11800                final int appId;
11801                synchronized (mPackages) {
11802                    final PackageSetting pkgSetting = mSettings.mPackages.get(packageName);
11803                    if (pkgSetting == null) {
11804                        Slog.w(TAG, "Could not find package setting for package \"" + packageName
11805                                + "\". Skipping suspending/un-suspending.");
11806                        unactionedPackages.add(packageName);
11807                        continue;
11808                    }
11809                    appId = pkgSetting.appId;
11810                    if (pkgSetting.getSuspended(userId) != suspended) {
11811                        if (!canSuspendPackageForUserLocked(packageName, userId)) {
11812                            unactionedPackages.add(packageName);
11813                            continue;
11814                        }
11815                        pkgSetting.setSuspended(suspended, userId);
11816                        mSettings.writePackageRestrictionsLPr(userId);
11817                        changed = true;
11818                        changedPackages.add(packageName);
11819                    }
11820                }
11821
11822                if (changed && suspended) {
11823                    killApplication(packageName, UserHandle.getUid(userId, appId),
11824                            "suspending package");
11825                }
11826            }
11827        } finally {
11828            Binder.restoreCallingIdentity(callingId);
11829        }
11830
11831        if (!changedPackages.isEmpty()) {
11832            sendPackagesSuspendedForUser(changedPackages.toArray(
11833                    new String[changedPackages.size()]), userId, suspended);
11834        }
11835
11836        return unactionedPackages.toArray(new String[unactionedPackages.size()]);
11837    }
11838
11839    @Override
11840    public boolean isPackageSuspendedForUser(String packageName, int userId) {
11841        enforceCrossUserPermission(Binder.getCallingUid(), userId,
11842                true /* requireFullPermission */, false /* checkShell */,
11843                "isPackageSuspendedForUser for user " + userId);
11844        synchronized (mPackages) {
11845            final PackageSetting pkgSetting = mSettings.mPackages.get(packageName);
11846            if (pkgSetting == null) {
11847                throw new IllegalArgumentException("Unknown target package: " + packageName);
11848            }
11849            return pkgSetting.getSuspended(userId);
11850        }
11851    }
11852
11853    private boolean canSuspendPackageForUserLocked(String packageName, int userId) {
11854        if (isPackageDeviceAdmin(packageName, userId)) {
11855            Slog.w(TAG, "Cannot suspend/un-suspend package \"" + packageName
11856                    + "\": has an active device admin");
11857            return false;
11858        }
11859
11860        String activeLauncherPackageName = getActiveLauncherPackageName(userId);
11861        if (packageName.equals(activeLauncherPackageName)) {
11862            Slog.w(TAG, "Cannot suspend/un-suspend package \"" + packageName
11863                    + "\": contains the active launcher");
11864            return false;
11865        }
11866
11867        if (packageName.equals(mRequiredInstallerPackage)) {
11868            Slog.w(TAG, "Cannot suspend/un-suspend package \"" + packageName
11869                    + "\": required for package installation");
11870            return false;
11871        }
11872
11873        if (packageName.equals(mRequiredVerifierPackage)) {
11874            Slog.w(TAG, "Cannot suspend/un-suspend package \"" + packageName
11875                    + "\": required for package verification");
11876            return false;
11877        }
11878
11879        if (packageName.equals(getDefaultDialerPackageName(userId))) {
11880            Slog.w(TAG, "Cannot suspend/un-suspend package \"" + packageName
11881                    + "\": is the default dialer");
11882            return false;
11883        }
11884
11885        return true;
11886    }
11887
11888    private String getActiveLauncherPackageName(int userId) {
11889        Intent intent = new Intent(Intent.ACTION_MAIN);
11890        intent.addCategory(Intent.CATEGORY_HOME);
11891        ResolveInfo resolveInfo = resolveIntent(
11892                intent,
11893                intent.resolveTypeIfNeeded(mContext.getContentResolver()),
11894                PackageManager.MATCH_DEFAULT_ONLY,
11895                userId);
11896
11897        return resolveInfo == null ? null : resolveInfo.activityInfo.packageName;
11898    }
11899
11900    private String getDefaultDialerPackageName(int userId) {
11901        synchronized (mPackages) {
11902            return mSettings.getDefaultDialerPackageNameLPw(userId);
11903        }
11904    }
11905
11906    @Override
11907    public void verifyPendingInstall(int id, int verificationCode) throws RemoteException {
11908        mContext.enforceCallingOrSelfPermission(
11909                android.Manifest.permission.PACKAGE_VERIFICATION_AGENT,
11910                "Only package verification agents can verify applications");
11911
11912        final Message msg = mHandler.obtainMessage(PACKAGE_VERIFIED);
11913        final PackageVerificationResponse response = new PackageVerificationResponse(
11914                verificationCode, Binder.getCallingUid());
11915        msg.arg1 = id;
11916        msg.obj = response;
11917        mHandler.sendMessage(msg);
11918    }
11919
11920    @Override
11921    public void extendVerificationTimeout(int id, int verificationCodeAtTimeout,
11922            long millisecondsToDelay) {
11923        mContext.enforceCallingOrSelfPermission(
11924                android.Manifest.permission.PACKAGE_VERIFICATION_AGENT,
11925                "Only package verification agents can extend verification timeouts");
11926
11927        final PackageVerificationState state = mPendingVerification.get(id);
11928        final PackageVerificationResponse response = new PackageVerificationResponse(
11929                verificationCodeAtTimeout, Binder.getCallingUid());
11930
11931        if (millisecondsToDelay > PackageManager.MAXIMUM_VERIFICATION_TIMEOUT) {
11932            millisecondsToDelay = PackageManager.MAXIMUM_VERIFICATION_TIMEOUT;
11933        }
11934        if (millisecondsToDelay < 0) {
11935            millisecondsToDelay = 0;
11936        }
11937        if ((verificationCodeAtTimeout != PackageManager.VERIFICATION_ALLOW)
11938                && (verificationCodeAtTimeout != PackageManager.VERIFICATION_REJECT)) {
11939            verificationCodeAtTimeout = PackageManager.VERIFICATION_REJECT;
11940        }
11941
11942        if ((state != null) && !state.timeoutExtended()) {
11943            state.extendTimeout();
11944
11945            final Message msg = mHandler.obtainMessage(PACKAGE_VERIFIED);
11946            msg.arg1 = id;
11947            msg.obj = response;
11948            mHandler.sendMessageDelayed(msg, millisecondsToDelay);
11949        }
11950    }
11951
11952    private void broadcastPackageVerified(int verificationId, Uri packageUri,
11953            int verificationCode, UserHandle user) {
11954        final Intent intent = new Intent(Intent.ACTION_PACKAGE_VERIFIED);
11955        intent.setDataAndType(packageUri, PACKAGE_MIME_TYPE);
11956        intent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
11957        intent.putExtra(PackageManager.EXTRA_VERIFICATION_ID, verificationId);
11958        intent.putExtra(PackageManager.EXTRA_VERIFICATION_RESULT, verificationCode);
11959
11960        mContext.sendBroadcastAsUser(intent, user,
11961                android.Manifest.permission.PACKAGE_VERIFICATION_AGENT);
11962    }
11963
11964    private ComponentName matchComponentForVerifier(String packageName,
11965            List<ResolveInfo> receivers) {
11966        ActivityInfo targetReceiver = null;
11967
11968        final int NR = receivers.size();
11969        for (int i = 0; i < NR; i++) {
11970            final ResolveInfo info = receivers.get(i);
11971            if (info.activityInfo == null) {
11972                continue;
11973            }
11974
11975            if (packageName.equals(info.activityInfo.packageName)) {
11976                targetReceiver = info.activityInfo;
11977                break;
11978            }
11979        }
11980
11981        if (targetReceiver == null) {
11982            return null;
11983        }
11984
11985        return new ComponentName(targetReceiver.packageName, targetReceiver.name);
11986    }
11987
11988    private List<ComponentName> matchVerifiers(PackageInfoLite pkgInfo,
11989            List<ResolveInfo> receivers, final PackageVerificationState verificationState) {
11990        if (pkgInfo.verifiers.length == 0) {
11991            return null;
11992        }
11993
11994        final int N = pkgInfo.verifiers.length;
11995        final List<ComponentName> sufficientVerifiers = new ArrayList<ComponentName>(N + 1);
11996        for (int i = 0; i < N; i++) {
11997            final VerifierInfo verifierInfo = pkgInfo.verifiers[i];
11998
11999            final ComponentName comp = matchComponentForVerifier(verifierInfo.packageName,
12000                    receivers);
12001            if (comp == null) {
12002                continue;
12003            }
12004
12005            final int verifierUid = getUidForVerifier(verifierInfo);
12006            if (verifierUid == -1) {
12007                continue;
12008            }
12009
12010            if (DEBUG_VERIFY) {
12011                Slog.d(TAG, "Added sufficient verifier " + verifierInfo.packageName
12012                        + " with the correct signature");
12013            }
12014            sufficientVerifiers.add(comp);
12015            verificationState.addSufficientVerifier(verifierUid);
12016        }
12017
12018        return sufficientVerifiers;
12019    }
12020
12021    private int getUidForVerifier(VerifierInfo verifierInfo) {
12022        synchronized (mPackages) {
12023            final PackageParser.Package pkg = mPackages.get(verifierInfo.packageName);
12024            if (pkg == null) {
12025                return -1;
12026            } else if (pkg.mSignatures.length != 1) {
12027                Slog.i(TAG, "Verifier package " + verifierInfo.packageName
12028                        + " has more than one signature; ignoring");
12029                return -1;
12030            }
12031
12032            /*
12033             * If the public key of the package's signature does not match
12034             * our expected public key, then this is a different package and
12035             * we should skip.
12036             */
12037
12038            final byte[] expectedPublicKey;
12039            try {
12040                final Signature verifierSig = pkg.mSignatures[0];
12041                final PublicKey publicKey = verifierSig.getPublicKey();
12042                expectedPublicKey = publicKey.getEncoded();
12043            } catch (CertificateException e) {
12044                return -1;
12045            }
12046
12047            final byte[] actualPublicKey = verifierInfo.publicKey.getEncoded();
12048
12049            if (!Arrays.equals(actualPublicKey, expectedPublicKey)) {
12050                Slog.i(TAG, "Verifier package " + verifierInfo.packageName
12051                        + " does not have the expected public key; ignoring");
12052                return -1;
12053            }
12054
12055            return pkg.applicationInfo.uid;
12056        }
12057    }
12058
12059    @Override
12060    public void finishPackageInstall(int token, boolean didLaunch) {
12061        enforceSystemOrRoot("Only the system is allowed to finish installs");
12062
12063        if (DEBUG_INSTALL) {
12064            Slog.v(TAG, "BM finishing package install for " + token);
12065        }
12066        Trace.asyncTraceEnd(TRACE_TAG_PACKAGE_MANAGER, "restore", token);
12067
12068        final Message msg = mHandler.obtainMessage(POST_INSTALL, token, didLaunch ? 1 : 0);
12069        mHandler.sendMessage(msg);
12070    }
12071
12072    /**
12073     * Get the verification agent timeout.
12074     *
12075     * @return verification timeout in milliseconds
12076     */
12077    private long getVerificationTimeout() {
12078        return android.provider.Settings.Global.getLong(mContext.getContentResolver(),
12079                android.provider.Settings.Global.PACKAGE_VERIFIER_TIMEOUT,
12080                DEFAULT_VERIFICATION_TIMEOUT);
12081    }
12082
12083    /**
12084     * Get the default verification agent response code.
12085     *
12086     * @return default verification response code
12087     */
12088    private int getDefaultVerificationResponse() {
12089        return android.provider.Settings.Global.getInt(mContext.getContentResolver(),
12090                android.provider.Settings.Global.PACKAGE_VERIFIER_DEFAULT_RESPONSE,
12091                DEFAULT_VERIFICATION_RESPONSE);
12092    }
12093
12094    /**
12095     * Check whether or not package verification has been enabled.
12096     *
12097     * @return true if verification should be performed
12098     */
12099    private boolean isVerificationEnabled(int userId, int installFlags) {
12100        if (!DEFAULT_VERIFY_ENABLE) {
12101            return false;
12102        }
12103        // Ephemeral apps don't get the full verification treatment
12104        if ((installFlags & PackageManager.INSTALL_EPHEMERAL) != 0) {
12105            if (DEBUG_EPHEMERAL) {
12106                Slog.d(TAG, "INSTALL_EPHEMERAL so skipping verification");
12107            }
12108            return false;
12109        }
12110
12111        boolean ensureVerifyAppsEnabled = isUserRestricted(userId, UserManager.ENSURE_VERIFY_APPS);
12112
12113        // Check if installing from ADB
12114        if ((installFlags & PackageManager.INSTALL_FROM_ADB) != 0) {
12115            // Do not run verification in a test harness environment
12116            if (ActivityManager.isRunningInTestHarness()) {
12117                return false;
12118            }
12119            if (ensureVerifyAppsEnabled) {
12120                return true;
12121            }
12122            // Check if the developer does not want package verification for ADB installs
12123            if (android.provider.Settings.Global.getInt(mContext.getContentResolver(),
12124                    android.provider.Settings.Global.PACKAGE_VERIFIER_INCLUDE_ADB, 1) == 0) {
12125                return false;
12126            }
12127        }
12128
12129        if (ensureVerifyAppsEnabled) {
12130            return true;
12131        }
12132
12133        return android.provider.Settings.Global.getInt(mContext.getContentResolver(),
12134                android.provider.Settings.Global.PACKAGE_VERIFIER_ENABLE, 1) == 1;
12135    }
12136
12137    @Override
12138    public void verifyIntentFilter(int id, int verificationCode, List<String> failedDomains)
12139            throws RemoteException {
12140        mContext.enforceCallingOrSelfPermission(
12141                Manifest.permission.INTENT_FILTER_VERIFICATION_AGENT,
12142                "Only intentfilter verification agents can verify applications");
12143
12144        final Message msg = mHandler.obtainMessage(INTENT_FILTER_VERIFIED);
12145        final IntentFilterVerificationResponse response = new IntentFilterVerificationResponse(
12146                Binder.getCallingUid(), verificationCode, failedDomains);
12147        msg.arg1 = id;
12148        msg.obj = response;
12149        mHandler.sendMessage(msg);
12150    }
12151
12152    @Override
12153    public int getIntentVerificationStatus(String packageName, int userId) {
12154        synchronized (mPackages) {
12155            return mSettings.getIntentFilterVerificationStatusLPr(packageName, userId);
12156        }
12157    }
12158
12159    @Override
12160    public boolean updateIntentVerificationStatus(String packageName, int status, int userId) {
12161        mContext.enforceCallingOrSelfPermission(
12162                android.Manifest.permission.SET_PREFERRED_APPLICATIONS, null);
12163
12164        boolean result = false;
12165        synchronized (mPackages) {
12166            result = mSettings.updateIntentFilterVerificationStatusLPw(packageName, status, userId);
12167        }
12168        if (result) {
12169            scheduleWritePackageRestrictionsLocked(userId);
12170        }
12171        return result;
12172    }
12173
12174    @Override
12175    public @NonNull ParceledListSlice<IntentFilterVerificationInfo> getIntentFilterVerifications(
12176            String packageName) {
12177        synchronized (mPackages) {
12178            return new ParceledListSlice<>(mSettings.getIntentFilterVerificationsLPr(packageName));
12179        }
12180    }
12181
12182    @Override
12183    public @NonNull ParceledListSlice<IntentFilter> getAllIntentFilters(String packageName) {
12184        if (TextUtils.isEmpty(packageName)) {
12185            return ParceledListSlice.emptyList();
12186        }
12187        synchronized (mPackages) {
12188            PackageParser.Package pkg = mPackages.get(packageName);
12189            if (pkg == null || pkg.activities == null) {
12190                return ParceledListSlice.emptyList();
12191            }
12192            final int count = pkg.activities.size();
12193            ArrayList<IntentFilter> result = new ArrayList<>();
12194            for (int n=0; n<count; n++) {
12195                PackageParser.Activity activity = pkg.activities.get(n);
12196                if (activity.intents != null && activity.intents.size() > 0) {
12197                    result.addAll(activity.intents);
12198                }
12199            }
12200            return new ParceledListSlice<>(result);
12201        }
12202    }
12203
12204    @Override
12205    public boolean setDefaultBrowserPackageName(String packageName, int userId) {
12206        mContext.enforceCallingOrSelfPermission(
12207                android.Manifest.permission.SET_PREFERRED_APPLICATIONS, null);
12208
12209        synchronized (mPackages) {
12210            boolean result = mSettings.setDefaultBrowserPackageNameLPw(packageName, userId);
12211            if (packageName != null) {
12212                result |= updateIntentVerificationStatus(packageName,
12213                        PackageManager.INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_ALWAYS,
12214                        userId);
12215                mDefaultPermissionPolicy.grantDefaultPermissionsToDefaultBrowserLPr(
12216                        packageName, userId);
12217            }
12218            return result;
12219        }
12220    }
12221
12222    @Override
12223    public String getDefaultBrowserPackageName(int userId) {
12224        synchronized (mPackages) {
12225            return mSettings.getDefaultBrowserPackageNameLPw(userId);
12226        }
12227    }
12228
12229    /**
12230     * Get the "allow unknown sources" setting.
12231     *
12232     * @return the current "allow unknown sources" setting
12233     */
12234    private int getUnknownSourcesSettings() {
12235        return android.provider.Settings.Secure.getInt(mContext.getContentResolver(),
12236                android.provider.Settings.Secure.INSTALL_NON_MARKET_APPS,
12237                -1);
12238    }
12239
12240    @Override
12241    public void setInstallerPackageName(String targetPackage, String installerPackageName) {
12242        final int uid = Binder.getCallingUid();
12243        // writer
12244        synchronized (mPackages) {
12245            PackageSetting targetPackageSetting = mSettings.mPackages.get(targetPackage);
12246            if (targetPackageSetting == null) {
12247                throw new IllegalArgumentException("Unknown target package: " + targetPackage);
12248            }
12249
12250            PackageSetting installerPackageSetting;
12251            if (installerPackageName != null) {
12252                installerPackageSetting = mSettings.mPackages.get(installerPackageName);
12253                if (installerPackageSetting == null) {
12254                    throw new IllegalArgumentException("Unknown installer package: "
12255                            + installerPackageName);
12256                }
12257            } else {
12258                installerPackageSetting = null;
12259            }
12260
12261            Signature[] callerSignature;
12262            Object obj = mSettings.getUserIdLPr(uid);
12263            if (obj != null) {
12264                if (obj instanceof SharedUserSetting) {
12265                    callerSignature = ((SharedUserSetting)obj).signatures.mSignatures;
12266                } else if (obj instanceof PackageSetting) {
12267                    callerSignature = ((PackageSetting)obj).signatures.mSignatures;
12268                } else {
12269                    throw new SecurityException("Bad object " + obj + " for uid " + uid);
12270                }
12271            } else {
12272                throw new SecurityException("Unknown calling UID: " + uid);
12273            }
12274
12275            // Verify: can't set installerPackageName to a package that is
12276            // not signed with the same cert as the caller.
12277            if (installerPackageSetting != null) {
12278                if (compareSignatures(callerSignature,
12279                        installerPackageSetting.signatures.mSignatures)
12280                        != PackageManager.SIGNATURE_MATCH) {
12281                    throw new SecurityException(
12282                            "Caller does not have same cert as new installer package "
12283                            + installerPackageName);
12284                }
12285            }
12286
12287            // Verify: if target already has an installer package, it must
12288            // be signed with the same cert as the caller.
12289            if (targetPackageSetting.installerPackageName != null) {
12290                PackageSetting setting = mSettings.mPackages.get(
12291                        targetPackageSetting.installerPackageName);
12292                // If the currently set package isn't valid, then it's always
12293                // okay to change it.
12294                if (setting != null) {
12295                    if (compareSignatures(callerSignature,
12296                            setting.signatures.mSignatures)
12297                            != PackageManager.SIGNATURE_MATCH) {
12298                        throw new SecurityException(
12299                                "Caller does not have same cert as old installer package "
12300                                + targetPackageSetting.installerPackageName);
12301                    }
12302                }
12303            }
12304
12305            // Okay!
12306            targetPackageSetting.installerPackageName = installerPackageName;
12307            if (installerPackageName != null) {
12308                mSettings.mInstallerPackages.add(installerPackageName);
12309            }
12310            scheduleWriteSettingsLocked();
12311        }
12312    }
12313
12314    private void processPendingInstall(final InstallArgs args, final int currentStatus) {
12315        // Queue up an async operation since the package installation may take a little while.
12316        mHandler.post(new Runnable() {
12317            public void run() {
12318                mHandler.removeCallbacks(this);
12319                 // Result object to be returned
12320                PackageInstalledInfo res = new PackageInstalledInfo();
12321                res.setReturnCode(currentStatus);
12322                res.uid = -1;
12323                res.pkg = null;
12324                res.removedInfo = null;
12325                if (res.returnCode == PackageManager.INSTALL_SUCCEEDED) {
12326                    args.doPreInstall(res.returnCode);
12327                    synchronized (mInstallLock) {
12328                        installPackageTracedLI(args, res);
12329                    }
12330                    args.doPostInstall(res.returnCode, res.uid);
12331                }
12332
12333                // A restore should be performed at this point if (a) the install
12334                // succeeded, (b) the operation is not an update, and (c) the new
12335                // package has not opted out of backup participation.
12336                final boolean update = res.removedInfo != null
12337                        && res.removedInfo.removedPackage != null;
12338                final int flags = (res.pkg == null) ? 0 : res.pkg.applicationInfo.flags;
12339                boolean doRestore = !update
12340                        && ((flags & ApplicationInfo.FLAG_ALLOW_BACKUP) != 0);
12341
12342                // Set up the post-install work request bookkeeping.  This will be used
12343                // and cleaned up by the post-install event handling regardless of whether
12344                // there's a restore pass performed.  Token values are >= 1.
12345                int token;
12346                if (mNextInstallToken < 0) mNextInstallToken = 1;
12347                token = mNextInstallToken++;
12348
12349                PostInstallData data = new PostInstallData(args, res);
12350                mRunningInstalls.put(token, data);
12351                if (DEBUG_INSTALL) Log.v(TAG, "+ starting restore round-trip " + token);
12352
12353                if (res.returnCode == PackageManager.INSTALL_SUCCEEDED && doRestore) {
12354                    // Pass responsibility to the Backup Manager.  It will perform a
12355                    // restore if appropriate, then pass responsibility back to the
12356                    // Package Manager to run the post-install observer callbacks
12357                    // and broadcasts.
12358                    IBackupManager bm = IBackupManager.Stub.asInterface(
12359                            ServiceManager.getService(Context.BACKUP_SERVICE));
12360                    if (bm != null) {
12361                        if (DEBUG_INSTALL) Log.v(TAG, "token " + token
12362                                + " to BM for possible restore");
12363                        Trace.asyncTraceBegin(TRACE_TAG_PACKAGE_MANAGER, "restore", token);
12364                        try {
12365                            // TODO: http://b/22388012
12366                            if (bm.isBackupServiceActive(UserHandle.USER_SYSTEM)) {
12367                                bm.restoreAtInstall(res.pkg.applicationInfo.packageName, token);
12368                            } else {
12369                                doRestore = false;
12370                            }
12371                        } catch (RemoteException e) {
12372                            // can't happen; the backup manager is local
12373                        } catch (Exception e) {
12374                            Slog.e(TAG, "Exception trying to enqueue restore", e);
12375                            doRestore = false;
12376                        }
12377                    } else {
12378                        Slog.e(TAG, "Backup Manager not found!");
12379                        doRestore = false;
12380                    }
12381                }
12382
12383                if (!doRestore) {
12384                    // No restore possible, or the Backup Manager was mysteriously not
12385                    // available -- just fire the post-install work request directly.
12386                    if (DEBUG_INSTALL) Log.v(TAG, "No restore - queue post-install for " + token);
12387
12388                    Trace.asyncTraceBegin(TRACE_TAG_PACKAGE_MANAGER, "postInstall", token);
12389
12390                    Message msg = mHandler.obtainMessage(POST_INSTALL, token, 0);
12391                    mHandler.sendMessage(msg);
12392                }
12393            }
12394        });
12395    }
12396
12397    /**
12398     * Callback from PackageSettings whenever an app is first transitioned out of the
12399     * 'stopped' state.  Normally we just issue the broadcast, but we can't do that if
12400     * the app was "launched" for a restoreAtInstall operation.  Therefore we check
12401     * here whether the app is the target of an ongoing install, and only send the
12402     * broadcast immediately if it is not in that state.  If it *is* undergoing a restore,
12403     * the first-launch broadcast will be sent implicitly on that basis in POST_INSTALL
12404     * handling.
12405     */
12406    void notifyFirstLaunch(final String pkgName, final String installerPackage, final int userId) {
12407        // Serialize this with the rest of the install-process message chain.  In the
12408        // restore-at-install case, this Runnable will necessarily run before the
12409        // POST_INSTALL message is processed, so the contents of mRunningInstalls
12410        // are coherent.  In the non-restore case, the app has already completed install
12411        // and been launched through some other means, so it is not in a problematic
12412        // state for observers to see the FIRST_LAUNCH signal.
12413        mHandler.post(new Runnable() {
12414            @Override
12415            public void run() {
12416                for (int i = 0; i < mRunningInstalls.size(); i++) {
12417                    final PostInstallData data = mRunningInstalls.valueAt(i);
12418                    if (pkgName.equals(data.res.pkg.applicationInfo.packageName)) {
12419                        // right package; but is it for the right user?
12420                        for (int uIndex = 0; uIndex < data.res.newUsers.length; uIndex++) {
12421                            if (userId == data.res.newUsers[uIndex]) {
12422                                if (DEBUG_BACKUP) {
12423                                    Slog.i(TAG, "Package " + pkgName
12424                                            + " being restored so deferring FIRST_LAUNCH");
12425                                }
12426                                return;
12427                            }
12428                        }
12429                    }
12430                }
12431                // didn't find it, so not being restored
12432                if (DEBUG_BACKUP) {
12433                    Slog.i(TAG, "Package " + pkgName + " sending normal FIRST_LAUNCH");
12434                }
12435                sendFirstLaunchBroadcast(pkgName, installerPackage, new int[] {userId});
12436            }
12437        });
12438    }
12439
12440    private void sendFirstLaunchBroadcast(String pkgName, String installerPkg, int[] userIds) {
12441        sendPackageBroadcast(Intent.ACTION_PACKAGE_FIRST_LAUNCH, pkgName, null, 0,
12442                installerPkg, null, userIds);
12443    }
12444
12445    private abstract class HandlerParams {
12446        private static final int MAX_RETRIES = 4;
12447
12448        /**
12449         * Number of times startCopy() has been attempted and had a non-fatal
12450         * error.
12451         */
12452        private int mRetries = 0;
12453
12454        /** User handle for the user requesting the information or installation. */
12455        private final UserHandle mUser;
12456        String traceMethod;
12457        int traceCookie;
12458
12459        HandlerParams(UserHandle user) {
12460            mUser = user;
12461        }
12462
12463        UserHandle getUser() {
12464            return mUser;
12465        }
12466
12467        HandlerParams setTraceMethod(String traceMethod) {
12468            this.traceMethod = traceMethod;
12469            return this;
12470        }
12471
12472        HandlerParams setTraceCookie(int traceCookie) {
12473            this.traceCookie = traceCookie;
12474            return this;
12475        }
12476
12477        final boolean startCopy() {
12478            boolean res;
12479            try {
12480                if (DEBUG_INSTALL) Slog.i(TAG, "startCopy " + mUser + ": " + this);
12481
12482                if (++mRetries > MAX_RETRIES) {
12483                    Slog.w(TAG, "Failed to invoke remote methods on default container service. Giving up");
12484                    mHandler.sendEmptyMessage(MCS_GIVE_UP);
12485                    handleServiceError();
12486                    return false;
12487                } else {
12488                    handleStartCopy();
12489                    res = true;
12490                }
12491            } catch (RemoteException e) {
12492                if (DEBUG_INSTALL) Slog.i(TAG, "Posting install MCS_RECONNECT");
12493                mHandler.sendEmptyMessage(MCS_RECONNECT);
12494                res = false;
12495            }
12496            handleReturnCode();
12497            return res;
12498        }
12499
12500        final void serviceError() {
12501            if (DEBUG_INSTALL) Slog.i(TAG, "serviceError");
12502            handleServiceError();
12503            handleReturnCode();
12504        }
12505
12506        abstract void handleStartCopy() throws RemoteException;
12507        abstract void handleServiceError();
12508        abstract void handleReturnCode();
12509    }
12510
12511    class MeasureParams extends HandlerParams {
12512        private final PackageStats mStats;
12513        private boolean mSuccess;
12514
12515        private final IPackageStatsObserver mObserver;
12516
12517        public MeasureParams(PackageStats stats, IPackageStatsObserver observer) {
12518            super(new UserHandle(stats.userHandle));
12519            mObserver = observer;
12520            mStats = stats;
12521        }
12522
12523        @Override
12524        public String toString() {
12525            return "MeasureParams{"
12526                + Integer.toHexString(System.identityHashCode(this))
12527                + " " + mStats.packageName + "}";
12528        }
12529
12530        @Override
12531        void handleStartCopy() throws RemoteException {
12532            synchronized (mInstallLock) {
12533                mSuccess = getPackageSizeInfoLI(mStats.packageName, mStats.userHandle, mStats);
12534            }
12535
12536            if (mSuccess) {
12537                final boolean mounted;
12538                if (Environment.isExternalStorageEmulated()) {
12539                    mounted = true;
12540                } else {
12541                    final String status = Environment.getExternalStorageState();
12542                    mounted = (Environment.MEDIA_MOUNTED.equals(status)
12543                            || Environment.MEDIA_MOUNTED_READ_ONLY.equals(status));
12544                }
12545
12546                if (mounted) {
12547                    final UserEnvironment userEnv = new UserEnvironment(mStats.userHandle);
12548
12549                    mStats.externalCacheSize = calculateDirectorySize(mContainerService,
12550                            userEnv.buildExternalStorageAppCacheDirs(mStats.packageName));
12551
12552                    mStats.externalDataSize = calculateDirectorySize(mContainerService,
12553                            userEnv.buildExternalStorageAppDataDirs(mStats.packageName));
12554
12555                    // Always subtract cache size, since it's a subdirectory
12556                    mStats.externalDataSize -= mStats.externalCacheSize;
12557
12558                    mStats.externalMediaSize = calculateDirectorySize(mContainerService,
12559                            userEnv.buildExternalStorageAppMediaDirs(mStats.packageName));
12560
12561                    mStats.externalObbSize = calculateDirectorySize(mContainerService,
12562                            userEnv.buildExternalStorageAppObbDirs(mStats.packageName));
12563                }
12564            }
12565        }
12566
12567        @Override
12568        void handleReturnCode() {
12569            if (mObserver != null) {
12570                try {
12571                    mObserver.onGetStatsCompleted(mStats, mSuccess);
12572                } catch (RemoteException e) {
12573                    Slog.i(TAG, "Observer no longer exists.");
12574                }
12575            }
12576        }
12577
12578        @Override
12579        void handleServiceError() {
12580            Slog.e(TAG, "Could not measure application " + mStats.packageName
12581                            + " external storage");
12582        }
12583    }
12584
12585    private static long calculateDirectorySize(IMediaContainerService mcs, File[] paths)
12586            throws RemoteException {
12587        long result = 0;
12588        for (File path : paths) {
12589            result += mcs.calculateDirectorySize(path.getAbsolutePath());
12590        }
12591        return result;
12592    }
12593
12594    private static void clearDirectory(IMediaContainerService mcs, File[] paths) {
12595        for (File path : paths) {
12596            try {
12597                mcs.clearDirectory(path.getAbsolutePath());
12598            } catch (RemoteException e) {
12599            }
12600        }
12601    }
12602
12603    static class OriginInfo {
12604        /**
12605         * Location where install is coming from, before it has been
12606         * copied/renamed into place. This could be a single monolithic APK
12607         * file, or a cluster directory. This location may be untrusted.
12608         */
12609        final File file;
12610        final String cid;
12611
12612        /**
12613         * Flag indicating that {@link #file} or {@link #cid} has already been
12614         * staged, meaning downstream users don't need to defensively copy the
12615         * contents.
12616         */
12617        final boolean staged;
12618
12619        /**
12620         * Flag indicating that {@link #file} or {@link #cid} is an already
12621         * installed app that is being moved.
12622         */
12623        final boolean existing;
12624
12625        final String resolvedPath;
12626        final File resolvedFile;
12627
12628        static OriginInfo fromNothing() {
12629            return new OriginInfo(null, null, false, false);
12630        }
12631
12632        static OriginInfo fromUntrustedFile(File file) {
12633            return new OriginInfo(file, null, false, false);
12634        }
12635
12636        static OriginInfo fromExistingFile(File file) {
12637            return new OriginInfo(file, null, false, true);
12638        }
12639
12640        static OriginInfo fromStagedFile(File file) {
12641            return new OriginInfo(file, null, true, false);
12642        }
12643
12644        static OriginInfo fromStagedContainer(String cid) {
12645            return new OriginInfo(null, cid, true, false);
12646        }
12647
12648        private OriginInfo(File file, String cid, boolean staged, boolean existing) {
12649            this.file = file;
12650            this.cid = cid;
12651            this.staged = staged;
12652            this.existing = existing;
12653
12654            if (cid != null) {
12655                resolvedPath = PackageHelper.getSdDir(cid);
12656                resolvedFile = new File(resolvedPath);
12657            } else if (file != null) {
12658                resolvedPath = file.getAbsolutePath();
12659                resolvedFile = file;
12660            } else {
12661                resolvedPath = null;
12662                resolvedFile = null;
12663            }
12664        }
12665    }
12666
12667    static class MoveInfo {
12668        final int moveId;
12669        final String fromUuid;
12670        final String toUuid;
12671        final String packageName;
12672        final String dataAppName;
12673        final int appId;
12674        final String seinfo;
12675        final int targetSdkVersion;
12676
12677        public MoveInfo(int moveId, String fromUuid, String toUuid, String packageName,
12678                String dataAppName, int appId, String seinfo, int targetSdkVersion) {
12679            this.moveId = moveId;
12680            this.fromUuid = fromUuid;
12681            this.toUuid = toUuid;
12682            this.packageName = packageName;
12683            this.dataAppName = dataAppName;
12684            this.appId = appId;
12685            this.seinfo = seinfo;
12686            this.targetSdkVersion = targetSdkVersion;
12687        }
12688    }
12689
12690    static class VerificationInfo {
12691        /** A constant used to indicate that a uid value is not present. */
12692        public static final int NO_UID = -1;
12693
12694        /** URI referencing where the package was downloaded from. */
12695        final Uri originatingUri;
12696
12697        /** HTTP referrer URI associated with the originatingURI. */
12698        final Uri referrer;
12699
12700        /** UID of the application that the install request originated from. */
12701        final int originatingUid;
12702
12703        /** UID of application requesting the install */
12704        final int installerUid;
12705
12706        VerificationInfo(Uri originatingUri, Uri referrer, int originatingUid, int installerUid) {
12707            this.originatingUri = originatingUri;
12708            this.referrer = referrer;
12709            this.originatingUid = originatingUid;
12710            this.installerUid = installerUid;
12711        }
12712    }
12713
12714    class InstallParams extends HandlerParams {
12715        final OriginInfo origin;
12716        final MoveInfo move;
12717        final IPackageInstallObserver2 observer;
12718        int installFlags;
12719        final String installerPackageName;
12720        final String volumeUuid;
12721        private InstallArgs mArgs;
12722        private int mRet;
12723        final String packageAbiOverride;
12724        final String[] grantedRuntimePermissions;
12725        final VerificationInfo verificationInfo;
12726        final Certificate[][] certificates;
12727
12728        InstallParams(OriginInfo origin, MoveInfo move, IPackageInstallObserver2 observer,
12729                int installFlags, String installerPackageName, String volumeUuid,
12730                VerificationInfo verificationInfo, UserHandle user, String packageAbiOverride,
12731                String[] grantedPermissions, Certificate[][] certificates) {
12732            super(user);
12733            this.origin = origin;
12734            this.move = move;
12735            this.observer = observer;
12736            this.installFlags = installFlags;
12737            this.installerPackageName = installerPackageName;
12738            this.volumeUuid = volumeUuid;
12739            this.verificationInfo = verificationInfo;
12740            this.packageAbiOverride = packageAbiOverride;
12741            this.grantedRuntimePermissions = grantedPermissions;
12742            this.certificates = certificates;
12743        }
12744
12745        @Override
12746        public String toString() {
12747            return "InstallParams{" + Integer.toHexString(System.identityHashCode(this))
12748                    + " file=" + origin.file + " cid=" + origin.cid + "}";
12749        }
12750
12751        private int installLocationPolicy(PackageInfoLite pkgLite) {
12752            String packageName = pkgLite.packageName;
12753            int installLocation = pkgLite.installLocation;
12754            boolean onSd = (installFlags & PackageManager.INSTALL_EXTERNAL) != 0;
12755            // reader
12756            synchronized (mPackages) {
12757                // Currently installed package which the new package is attempting to replace or
12758                // null if no such package is installed.
12759                PackageParser.Package installedPkg = mPackages.get(packageName);
12760                // Package which currently owns the data which the new package will own if installed.
12761                // If an app is unstalled while keeping data (e.g., adb uninstall -k), installedPkg
12762                // will be null whereas dataOwnerPkg will contain information about the package
12763                // which was uninstalled while keeping its data.
12764                PackageParser.Package dataOwnerPkg = installedPkg;
12765                if (dataOwnerPkg  == null) {
12766                    PackageSetting ps = mSettings.mPackages.get(packageName);
12767                    if (ps != null) {
12768                        dataOwnerPkg = ps.pkg;
12769                    }
12770                }
12771
12772                if (dataOwnerPkg != null) {
12773                    // If installed, the package will get access to data left on the device by its
12774                    // predecessor. As a security measure, this is permited only if this is not a
12775                    // version downgrade or if the predecessor package is marked as debuggable and
12776                    // a downgrade is explicitly requested.
12777                    //
12778                    // On debuggable platform builds, downgrades are permitted even for
12779                    // non-debuggable packages to make testing easier. Debuggable platform builds do
12780                    // not offer security guarantees and thus it's OK to disable some security
12781                    // mechanisms to make debugging/testing easier on those builds. However, even on
12782                    // debuggable builds downgrades of packages are permitted only if requested via
12783                    // installFlags. This is because we aim to keep the behavior of debuggable
12784                    // platform builds as close as possible to the behavior of non-debuggable
12785                    // platform builds.
12786                    final boolean downgradeRequested =
12787                            (installFlags & PackageManager.INSTALL_ALLOW_DOWNGRADE) != 0;
12788                    final boolean packageDebuggable =
12789                                (dataOwnerPkg.applicationInfo.flags
12790                                        & ApplicationInfo.FLAG_DEBUGGABLE) != 0;
12791                    final boolean downgradePermitted =
12792                            (downgradeRequested) && ((Build.IS_DEBUGGABLE) || (packageDebuggable));
12793                    if (!downgradePermitted) {
12794                        try {
12795                            checkDowngrade(dataOwnerPkg, pkgLite);
12796                        } catch (PackageManagerException e) {
12797                            Slog.w(TAG, "Downgrade detected: " + e.getMessage());
12798                            return PackageHelper.RECOMMEND_FAILED_VERSION_DOWNGRADE;
12799                        }
12800                    }
12801                }
12802
12803                if (installedPkg != null) {
12804                    if ((installFlags & PackageManager.INSTALL_REPLACE_EXISTING) != 0) {
12805                        // Check for updated system application.
12806                        if ((installedPkg.applicationInfo.flags & ApplicationInfo.FLAG_SYSTEM) != 0) {
12807                            if (onSd) {
12808                                Slog.w(TAG, "Cannot install update to system app on sdcard");
12809                                return PackageHelper.RECOMMEND_FAILED_INVALID_LOCATION;
12810                            }
12811                            return PackageHelper.RECOMMEND_INSTALL_INTERNAL;
12812                        } else {
12813                            if (onSd) {
12814                                // Install flag overrides everything.
12815                                return PackageHelper.RECOMMEND_INSTALL_EXTERNAL;
12816                            }
12817                            // If current upgrade specifies particular preference
12818                            if (installLocation == PackageInfo.INSTALL_LOCATION_INTERNAL_ONLY) {
12819                                // Application explicitly specified internal.
12820                                return PackageHelper.RECOMMEND_INSTALL_INTERNAL;
12821                            } else if (installLocation == PackageInfo.INSTALL_LOCATION_PREFER_EXTERNAL) {
12822                                // App explictly prefers external. Let policy decide
12823                            } else {
12824                                // Prefer previous location
12825                                if (isExternal(installedPkg)) {
12826                                    return PackageHelper.RECOMMEND_INSTALL_EXTERNAL;
12827                                }
12828                                return PackageHelper.RECOMMEND_INSTALL_INTERNAL;
12829                            }
12830                        }
12831                    } else {
12832                        // Invalid install. Return error code
12833                        return PackageHelper.RECOMMEND_FAILED_ALREADY_EXISTS;
12834                    }
12835                }
12836            }
12837            // All the special cases have been taken care of.
12838            // Return result based on recommended install location.
12839            if (onSd) {
12840                return PackageHelper.RECOMMEND_INSTALL_EXTERNAL;
12841            }
12842            return pkgLite.recommendedInstallLocation;
12843        }
12844
12845        /*
12846         * Invoke remote method to get package information and install
12847         * location values. Override install location based on default
12848         * policy if needed and then create install arguments based
12849         * on the install location.
12850         */
12851        public void handleStartCopy() throws RemoteException {
12852            int ret = PackageManager.INSTALL_SUCCEEDED;
12853
12854            // If we're already staged, we've firmly committed to an install location
12855            if (origin.staged) {
12856                if (origin.file != null) {
12857                    installFlags |= PackageManager.INSTALL_INTERNAL;
12858                    installFlags &= ~PackageManager.INSTALL_EXTERNAL;
12859                } else if (origin.cid != null) {
12860                    installFlags |= PackageManager.INSTALL_EXTERNAL;
12861                    installFlags &= ~PackageManager.INSTALL_INTERNAL;
12862                } else {
12863                    throw new IllegalStateException("Invalid stage location");
12864                }
12865            }
12866
12867            final boolean onSd = (installFlags & PackageManager.INSTALL_EXTERNAL) != 0;
12868            final boolean onInt = (installFlags & PackageManager.INSTALL_INTERNAL) != 0;
12869            final boolean ephemeral = (installFlags & PackageManager.INSTALL_EPHEMERAL) != 0;
12870            PackageInfoLite pkgLite = null;
12871
12872            if (onInt && onSd) {
12873                // Check if both bits are set.
12874                Slog.w(TAG, "Conflicting flags specified for installing on both internal and external");
12875                ret = PackageManager.INSTALL_FAILED_INVALID_INSTALL_LOCATION;
12876            } else if (onSd && ephemeral) {
12877                Slog.w(TAG,  "Conflicting flags specified for installing ephemeral on external");
12878                ret = PackageManager.INSTALL_FAILED_INVALID_INSTALL_LOCATION;
12879            } else {
12880                pkgLite = mContainerService.getMinimalPackageInfo(origin.resolvedPath, installFlags,
12881                        packageAbiOverride);
12882
12883                if (DEBUG_EPHEMERAL && ephemeral) {
12884                    Slog.v(TAG, "pkgLite for install: " + pkgLite);
12885                }
12886
12887                /*
12888                 * If we have too little free space, try to free cache
12889                 * before giving up.
12890                 */
12891                if (!origin.staged && pkgLite.recommendedInstallLocation
12892                        == PackageHelper.RECOMMEND_FAILED_INSUFFICIENT_STORAGE) {
12893                    // TODO: focus freeing disk space on the target device
12894                    final StorageManager storage = StorageManager.from(mContext);
12895                    final long lowThreshold = storage.getStorageLowBytes(
12896                            Environment.getDataDirectory());
12897
12898                    final long sizeBytes = mContainerService.calculateInstalledSize(
12899                            origin.resolvedPath, isForwardLocked(), packageAbiOverride);
12900
12901                    try {
12902                        mInstaller.freeCache(null, sizeBytes + lowThreshold);
12903                        pkgLite = mContainerService.getMinimalPackageInfo(origin.resolvedPath,
12904                                installFlags, packageAbiOverride);
12905                    } catch (InstallerException e) {
12906                        Slog.w(TAG, "Failed to free cache", e);
12907                    }
12908
12909                    /*
12910                     * The cache free must have deleted the file we
12911                     * downloaded to install.
12912                     *
12913                     * TODO: fix the "freeCache" call to not delete
12914                     *       the file we care about.
12915                     */
12916                    if (pkgLite.recommendedInstallLocation
12917                            == PackageHelper.RECOMMEND_FAILED_INVALID_URI) {
12918                        pkgLite.recommendedInstallLocation
12919                            = PackageHelper.RECOMMEND_FAILED_INSUFFICIENT_STORAGE;
12920                    }
12921                }
12922            }
12923
12924            if (ret == PackageManager.INSTALL_SUCCEEDED) {
12925                int loc = pkgLite.recommendedInstallLocation;
12926                if (loc == PackageHelper.RECOMMEND_FAILED_INVALID_LOCATION) {
12927                    ret = PackageManager.INSTALL_FAILED_INVALID_INSTALL_LOCATION;
12928                } else if (loc == PackageHelper.RECOMMEND_FAILED_ALREADY_EXISTS) {
12929                    ret = PackageManager.INSTALL_FAILED_ALREADY_EXISTS;
12930                } else if (loc == PackageHelper.RECOMMEND_FAILED_INSUFFICIENT_STORAGE) {
12931                    ret = PackageManager.INSTALL_FAILED_INSUFFICIENT_STORAGE;
12932                } else if (loc == PackageHelper.RECOMMEND_FAILED_INVALID_APK) {
12933                    ret = PackageManager.INSTALL_FAILED_INVALID_APK;
12934                } else if (loc == PackageHelper.RECOMMEND_FAILED_INVALID_URI) {
12935                    ret = PackageManager.INSTALL_FAILED_INVALID_URI;
12936                } else if (loc == PackageHelper.RECOMMEND_MEDIA_UNAVAILABLE) {
12937                    ret = PackageManager.INSTALL_FAILED_MEDIA_UNAVAILABLE;
12938                } else {
12939                    // Override with defaults if needed.
12940                    loc = installLocationPolicy(pkgLite);
12941                    if (loc == PackageHelper.RECOMMEND_FAILED_VERSION_DOWNGRADE) {
12942                        ret = PackageManager.INSTALL_FAILED_VERSION_DOWNGRADE;
12943                    } else if (!onSd && !onInt) {
12944                        // Override install location with flags
12945                        if (loc == PackageHelper.RECOMMEND_INSTALL_EXTERNAL) {
12946                            // Set the flag to install on external media.
12947                            installFlags |= PackageManager.INSTALL_EXTERNAL;
12948                            installFlags &= ~PackageManager.INSTALL_INTERNAL;
12949                        } else if (loc == PackageHelper.RECOMMEND_INSTALL_EPHEMERAL) {
12950                            if (DEBUG_EPHEMERAL) {
12951                                Slog.v(TAG, "...setting INSTALL_EPHEMERAL install flag");
12952                            }
12953                            installFlags |= PackageManager.INSTALL_EPHEMERAL;
12954                            installFlags &= ~(PackageManager.INSTALL_EXTERNAL
12955                                    |PackageManager.INSTALL_INTERNAL);
12956                        } else {
12957                            // Make sure the flag for installing on external
12958                            // media is unset
12959                            installFlags |= PackageManager.INSTALL_INTERNAL;
12960                            installFlags &= ~PackageManager.INSTALL_EXTERNAL;
12961                        }
12962                    }
12963                }
12964            }
12965
12966            final InstallArgs args = createInstallArgs(this);
12967            mArgs = args;
12968
12969            if (ret == PackageManager.INSTALL_SUCCEEDED) {
12970                // TODO: http://b/22976637
12971                // Apps installed for "all" users use the device owner to verify the app
12972                UserHandle verifierUser = getUser();
12973                if (verifierUser == UserHandle.ALL) {
12974                    verifierUser = UserHandle.SYSTEM;
12975                }
12976
12977                /*
12978                 * Determine if we have any installed package verifiers. If we
12979                 * do, then we'll defer to them to verify the packages.
12980                 */
12981                final int requiredUid = mRequiredVerifierPackage == null ? -1
12982                        : getPackageUid(mRequiredVerifierPackage, MATCH_DEBUG_TRIAGED_MISSING,
12983                                verifierUser.getIdentifier());
12984                if (!origin.existing && requiredUid != -1
12985                        && isVerificationEnabled(verifierUser.getIdentifier(), installFlags)) {
12986                    final Intent verification = new Intent(
12987                            Intent.ACTION_PACKAGE_NEEDS_VERIFICATION);
12988                    verification.addFlags(Intent.FLAG_RECEIVER_FOREGROUND);
12989                    verification.setDataAndType(Uri.fromFile(new File(origin.resolvedPath)),
12990                            PACKAGE_MIME_TYPE);
12991                    verification.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
12992
12993                    // Query all live verifiers based on current user state
12994                    final List<ResolveInfo> receivers = queryIntentReceiversInternal(verification,
12995                            PACKAGE_MIME_TYPE, 0, verifierUser.getIdentifier());
12996
12997                    if (DEBUG_VERIFY) {
12998                        Slog.d(TAG, "Found " + receivers.size() + " verifiers for intent "
12999                                + verification.toString() + " with " + pkgLite.verifiers.length
13000                                + " optional verifiers");
13001                    }
13002
13003                    final int verificationId = mPendingVerificationToken++;
13004
13005                    verification.putExtra(PackageManager.EXTRA_VERIFICATION_ID, verificationId);
13006
13007                    verification.putExtra(PackageManager.EXTRA_VERIFICATION_INSTALLER_PACKAGE,
13008                            installerPackageName);
13009
13010                    verification.putExtra(PackageManager.EXTRA_VERIFICATION_INSTALL_FLAGS,
13011                            installFlags);
13012
13013                    verification.putExtra(PackageManager.EXTRA_VERIFICATION_PACKAGE_NAME,
13014                            pkgLite.packageName);
13015
13016                    verification.putExtra(PackageManager.EXTRA_VERIFICATION_VERSION_CODE,
13017                            pkgLite.versionCode);
13018
13019                    if (verificationInfo != null) {
13020                        if (verificationInfo.originatingUri != null) {
13021                            verification.putExtra(Intent.EXTRA_ORIGINATING_URI,
13022                                    verificationInfo.originatingUri);
13023                        }
13024                        if (verificationInfo.referrer != null) {
13025                            verification.putExtra(Intent.EXTRA_REFERRER,
13026                                    verificationInfo.referrer);
13027                        }
13028                        if (verificationInfo.originatingUid >= 0) {
13029                            verification.putExtra(Intent.EXTRA_ORIGINATING_UID,
13030                                    verificationInfo.originatingUid);
13031                        }
13032                        if (verificationInfo.installerUid >= 0) {
13033                            verification.putExtra(PackageManager.EXTRA_VERIFICATION_INSTALLER_UID,
13034                                    verificationInfo.installerUid);
13035                        }
13036                    }
13037
13038                    final PackageVerificationState verificationState = new PackageVerificationState(
13039                            requiredUid, args);
13040
13041                    mPendingVerification.append(verificationId, verificationState);
13042
13043                    final List<ComponentName> sufficientVerifiers = matchVerifiers(pkgLite,
13044                            receivers, verificationState);
13045
13046                    /*
13047                     * If any sufficient verifiers were listed in the package
13048                     * manifest, attempt to ask them.
13049                     */
13050                    if (sufficientVerifiers != null) {
13051                        final int N = sufficientVerifiers.size();
13052                        if (N == 0) {
13053                            Slog.i(TAG, "Additional verifiers required, but none installed.");
13054                            ret = PackageManager.INSTALL_FAILED_VERIFICATION_FAILURE;
13055                        } else {
13056                            for (int i = 0; i < N; i++) {
13057                                final ComponentName verifierComponent = sufficientVerifiers.get(i);
13058
13059                                final Intent sufficientIntent = new Intent(verification);
13060                                sufficientIntent.setComponent(verifierComponent);
13061                                mContext.sendBroadcastAsUser(sufficientIntent, verifierUser);
13062                            }
13063                        }
13064                    }
13065
13066                    final ComponentName requiredVerifierComponent = matchComponentForVerifier(
13067                            mRequiredVerifierPackage, receivers);
13068                    if (ret == PackageManager.INSTALL_SUCCEEDED
13069                            && mRequiredVerifierPackage != null) {
13070                        Trace.asyncTraceBegin(
13071                                TRACE_TAG_PACKAGE_MANAGER, "verification", verificationId);
13072                        /*
13073                         * Send the intent to the required verification agent,
13074                         * but only start the verification timeout after the
13075                         * target BroadcastReceivers have run.
13076                         */
13077                        verification.setComponent(requiredVerifierComponent);
13078                        mContext.sendOrderedBroadcastAsUser(verification, verifierUser,
13079                                android.Manifest.permission.PACKAGE_VERIFICATION_AGENT,
13080                                new BroadcastReceiver() {
13081                                    @Override
13082                                    public void onReceive(Context context, Intent intent) {
13083                                        final Message msg = mHandler
13084                                                .obtainMessage(CHECK_PENDING_VERIFICATION);
13085                                        msg.arg1 = verificationId;
13086                                        mHandler.sendMessageDelayed(msg, getVerificationTimeout());
13087                                    }
13088                                }, null, 0, null, null);
13089
13090                        /*
13091                         * We don't want the copy to proceed until verification
13092                         * succeeds, so null out this field.
13093                         */
13094                        mArgs = null;
13095                    }
13096                } else {
13097                    /*
13098                     * No package verification is enabled, so immediately start
13099                     * the remote call to initiate copy using temporary file.
13100                     */
13101                    ret = args.copyApk(mContainerService, true);
13102                }
13103            }
13104
13105            mRet = ret;
13106        }
13107
13108        @Override
13109        void handleReturnCode() {
13110            // If mArgs is null, then MCS couldn't be reached. When it
13111            // reconnects, it will try again to install. At that point, this
13112            // will succeed.
13113            if (mArgs != null) {
13114                processPendingInstall(mArgs, mRet);
13115            }
13116        }
13117
13118        @Override
13119        void handleServiceError() {
13120            mArgs = createInstallArgs(this);
13121            mRet = PackageManager.INSTALL_FAILED_INTERNAL_ERROR;
13122        }
13123
13124        public boolean isForwardLocked() {
13125            return (installFlags & PackageManager.INSTALL_FORWARD_LOCK) != 0;
13126        }
13127    }
13128
13129    /**
13130     * Used during creation of InstallArgs
13131     *
13132     * @param installFlags package installation flags
13133     * @return true if should be installed on external storage
13134     */
13135    private static boolean installOnExternalAsec(int installFlags) {
13136        if ((installFlags & PackageManager.INSTALL_INTERNAL) != 0) {
13137            return false;
13138        }
13139        if ((installFlags & PackageManager.INSTALL_EXTERNAL) != 0) {
13140            return true;
13141        }
13142        return false;
13143    }
13144
13145    /**
13146     * Used during creation of InstallArgs
13147     *
13148     * @param installFlags package installation flags
13149     * @return true if should be installed as forward locked
13150     */
13151    private static boolean installForwardLocked(int installFlags) {
13152        return (installFlags & PackageManager.INSTALL_FORWARD_LOCK) != 0;
13153    }
13154
13155    private InstallArgs createInstallArgs(InstallParams params) {
13156        if (params.move != null) {
13157            return new MoveInstallArgs(params);
13158        } else if (installOnExternalAsec(params.installFlags) || params.isForwardLocked()) {
13159            return new AsecInstallArgs(params);
13160        } else {
13161            return new FileInstallArgs(params);
13162        }
13163    }
13164
13165    /**
13166     * Create args that describe an existing installed package. Typically used
13167     * when cleaning up old installs, or used as a move source.
13168     */
13169    private InstallArgs createInstallArgsForExisting(int installFlags, String codePath,
13170            String resourcePath, String[] instructionSets) {
13171        final boolean isInAsec;
13172        if (installOnExternalAsec(installFlags)) {
13173            /* Apps on SD card are always in ASEC containers. */
13174            isInAsec = true;
13175        } else if (installForwardLocked(installFlags)
13176                && !codePath.startsWith(mDrmAppPrivateInstallDir.getAbsolutePath())) {
13177            /*
13178             * Forward-locked apps are only in ASEC containers if they're the
13179             * new style
13180             */
13181            isInAsec = true;
13182        } else {
13183            isInAsec = false;
13184        }
13185
13186        if (isInAsec) {
13187            return new AsecInstallArgs(codePath, instructionSets,
13188                    installOnExternalAsec(installFlags), installForwardLocked(installFlags));
13189        } else {
13190            return new FileInstallArgs(codePath, resourcePath, instructionSets);
13191        }
13192    }
13193
13194    static abstract class InstallArgs {
13195        /** @see InstallParams#origin */
13196        final OriginInfo origin;
13197        /** @see InstallParams#move */
13198        final MoveInfo move;
13199
13200        final IPackageInstallObserver2 observer;
13201        // Always refers to PackageManager flags only
13202        final int installFlags;
13203        final String installerPackageName;
13204        final String volumeUuid;
13205        final UserHandle user;
13206        final String abiOverride;
13207        final String[] installGrantPermissions;
13208        /** If non-null, drop an async trace when the install completes */
13209        final String traceMethod;
13210        final int traceCookie;
13211        final Certificate[][] certificates;
13212
13213        // The list of instruction sets supported by this app. This is currently
13214        // only used during the rmdex() phase to clean up resources. We can get rid of this
13215        // if we move dex files under the common app path.
13216        /* nullable */ String[] instructionSets;
13217
13218        InstallArgs(OriginInfo origin, MoveInfo move, IPackageInstallObserver2 observer,
13219                int installFlags, String installerPackageName, String volumeUuid,
13220                UserHandle user, String[] instructionSets,
13221                String abiOverride, String[] installGrantPermissions,
13222                String traceMethod, int traceCookie, Certificate[][] certificates) {
13223            this.origin = origin;
13224            this.move = move;
13225            this.installFlags = installFlags;
13226            this.observer = observer;
13227            this.installerPackageName = installerPackageName;
13228            this.volumeUuid = volumeUuid;
13229            this.user = user;
13230            this.instructionSets = instructionSets;
13231            this.abiOverride = abiOverride;
13232            this.installGrantPermissions = installGrantPermissions;
13233            this.traceMethod = traceMethod;
13234            this.traceCookie = traceCookie;
13235            this.certificates = certificates;
13236        }
13237
13238        abstract int copyApk(IMediaContainerService imcs, boolean temp) throws RemoteException;
13239        abstract int doPreInstall(int status);
13240
13241        /**
13242         * Rename package into final resting place. All paths on the given
13243         * scanned package should be updated to reflect the rename.
13244         */
13245        abstract boolean doRename(int status, PackageParser.Package pkg, String oldCodePath);
13246        abstract int doPostInstall(int status, int uid);
13247
13248        /** @see PackageSettingBase#codePathString */
13249        abstract String getCodePath();
13250        /** @see PackageSettingBase#resourcePathString */
13251        abstract String getResourcePath();
13252
13253        // Need installer lock especially for dex file removal.
13254        abstract void cleanUpResourcesLI();
13255        abstract boolean doPostDeleteLI(boolean delete);
13256
13257        /**
13258         * Called before the source arguments are copied. This is used mostly
13259         * for MoveParams when it needs to read the source file to put it in the
13260         * destination.
13261         */
13262        int doPreCopy() {
13263            return PackageManager.INSTALL_SUCCEEDED;
13264        }
13265
13266        /**
13267         * Called after the source arguments are copied. This is used mostly for
13268         * MoveParams when it needs to read the source file to put it in the
13269         * destination.
13270         */
13271        int doPostCopy(int uid) {
13272            return PackageManager.INSTALL_SUCCEEDED;
13273        }
13274
13275        protected boolean isFwdLocked() {
13276            return (installFlags & PackageManager.INSTALL_FORWARD_LOCK) != 0;
13277        }
13278
13279        protected boolean isExternalAsec() {
13280            return (installFlags & PackageManager.INSTALL_EXTERNAL) != 0;
13281        }
13282
13283        protected boolean isEphemeral() {
13284            return (installFlags & PackageManager.INSTALL_EPHEMERAL) != 0;
13285        }
13286
13287        UserHandle getUser() {
13288            return user;
13289        }
13290    }
13291
13292    private void removeDexFiles(List<String> allCodePaths, String[] instructionSets) {
13293        if (!allCodePaths.isEmpty()) {
13294            if (instructionSets == null) {
13295                throw new IllegalStateException("instructionSet == null");
13296            }
13297            String[] dexCodeInstructionSets = getDexCodeInstructionSets(instructionSets);
13298            for (String codePath : allCodePaths) {
13299                for (String dexCodeInstructionSet : dexCodeInstructionSets) {
13300                    try {
13301                        mInstaller.rmdex(codePath, dexCodeInstructionSet);
13302                    } catch (InstallerException ignored) {
13303                    }
13304                }
13305            }
13306        }
13307    }
13308
13309    /**
13310     * Logic to handle installation of non-ASEC applications, including copying
13311     * and renaming logic.
13312     */
13313    class FileInstallArgs extends InstallArgs {
13314        private File codeFile;
13315        private File resourceFile;
13316
13317        // Example topology:
13318        // /data/app/com.example/base.apk
13319        // /data/app/com.example/split_foo.apk
13320        // /data/app/com.example/lib/arm/libfoo.so
13321        // /data/app/com.example/lib/arm64/libfoo.so
13322        // /data/app/com.example/dalvik/arm/base.apk@classes.dex
13323
13324        /** New install */
13325        FileInstallArgs(InstallParams params) {
13326            super(params.origin, params.move, params.observer, params.installFlags,
13327                    params.installerPackageName, params.volumeUuid,
13328                    params.getUser(), null /*instructionSets*/, params.packageAbiOverride,
13329                    params.grantedRuntimePermissions,
13330                    params.traceMethod, params.traceCookie, params.certificates);
13331            if (isFwdLocked()) {
13332                throw new IllegalArgumentException("Forward locking only supported in ASEC");
13333            }
13334        }
13335
13336        /** Existing install */
13337        FileInstallArgs(String codePath, String resourcePath, String[] instructionSets) {
13338            super(OriginInfo.fromNothing(), null, null, 0, null, null, null, instructionSets,
13339                    null, null, null, 0, null /*certificates*/);
13340            this.codeFile = (codePath != null) ? new File(codePath) : null;
13341            this.resourceFile = (resourcePath != null) ? new File(resourcePath) : null;
13342        }
13343
13344        int copyApk(IMediaContainerService imcs, boolean temp) throws RemoteException {
13345            Trace.traceBegin(TRACE_TAG_PACKAGE_MANAGER, "copyApk");
13346            try {
13347                return doCopyApk(imcs, temp);
13348            } finally {
13349                Trace.traceEnd(TRACE_TAG_PACKAGE_MANAGER);
13350            }
13351        }
13352
13353        private int doCopyApk(IMediaContainerService imcs, boolean temp) throws RemoteException {
13354            if (origin.staged) {
13355                if (DEBUG_INSTALL) Slog.d(TAG, origin.file + " already staged; skipping copy");
13356                codeFile = origin.file;
13357                resourceFile = origin.file;
13358                return PackageManager.INSTALL_SUCCEEDED;
13359            }
13360
13361            try {
13362                final boolean isEphemeral = (installFlags & PackageManager.INSTALL_EPHEMERAL) != 0;
13363                final File tempDir =
13364                        mInstallerService.allocateStageDirLegacy(volumeUuid, isEphemeral);
13365                codeFile = tempDir;
13366                resourceFile = tempDir;
13367            } catch (IOException e) {
13368                Slog.w(TAG, "Failed to create copy file: " + e);
13369                return PackageManager.INSTALL_FAILED_INSUFFICIENT_STORAGE;
13370            }
13371
13372            final IParcelFileDescriptorFactory target = new IParcelFileDescriptorFactory.Stub() {
13373                @Override
13374                public ParcelFileDescriptor open(String name, int mode) throws RemoteException {
13375                    if (!FileUtils.isValidExtFilename(name)) {
13376                        throw new IllegalArgumentException("Invalid filename: " + name);
13377                    }
13378                    try {
13379                        final File file = new File(codeFile, name);
13380                        final FileDescriptor fd = Os.open(file.getAbsolutePath(),
13381                                O_RDWR | O_CREAT, 0644);
13382                        Os.chmod(file.getAbsolutePath(), 0644);
13383                        return new ParcelFileDescriptor(fd);
13384                    } catch (ErrnoException e) {
13385                        throw new RemoteException("Failed to open: " + e.getMessage());
13386                    }
13387                }
13388            };
13389
13390            int ret = PackageManager.INSTALL_SUCCEEDED;
13391            ret = imcs.copyPackage(origin.file.getAbsolutePath(), target);
13392            if (ret != PackageManager.INSTALL_SUCCEEDED) {
13393                Slog.e(TAG, "Failed to copy package");
13394                return ret;
13395            }
13396
13397            final File libraryRoot = new File(codeFile, LIB_DIR_NAME);
13398            NativeLibraryHelper.Handle handle = null;
13399            try {
13400                handle = NativeLibraryHelper.Handle.create(codeFile);
13401                ret = NativeLibraryHelper.copyNativeBinariesWithOverride(handle, libraryRoot,
13402                        abiOverride);
13403            } catch (IOException e) {
13404                Slog.e(TAG, "Copying native libraries failed", e);
13405                ret = PackageManager.INSTALL_FAILED_INTERNAL_ERROR;
13406            } finally {
13407                IoUtils.closeQuietly(handle);
13408            }
13409
13410            return ret;
13411        }
13412
13413        int doPreInstall(int status) {
13414            if (status != PackageManager.INSTALL_SUCCEEDED) {
13415                cleanUp();
13416            }
13417            return status;
13418        }
13419
13420        boolean doRename(int status, PackageParser.Package pkg, String oldCodePath) {
13421            if (status != PackageManager.INSTALL_SUCCEEDED) {
13422                cleanUp();
13423                return false;
13424            }
13425
13426            final File targetDir = codeFile.getParentFile();
13427            final File beforeCodeFile = codeFile;
13428            final File afterCodeFile = getNextCodePath(targetDir, pkg.packageName);
13429
13430            if (DEBUG_INSTALL) Slog.d(TAG, "Renaming " + beforeCodeFile + " to " + afterCodeFile);
13431            try {
13432                Os.rename(beforeCodeFile.getAbsolutePath(), afterCodeFile.getAbsolutePath());
13433            } catch (ErrnoException e) {
13434                Slog.w(TAG, "Failed to rename", e);
13435                return false;
13436            }
13437
13438            if (!SELinux.restoreconRecursive(afterCodeFile)) {
13439                Slog.w(TAG, "Failed to restorecon");
13440                return false;
13441            }
13442
13443            // Reflect the rename internally
13444            codeFile = afterCodeFile;
13445            resourceFile = afterCodeFile;
13446
13447            // Reflect the rename in scanned details
13448            pkg.setCodePath(afterCodeFile.getAbsolutePath());
13449            pkg.setBaseCodePath(FileUtils.rewriteAfterRename(beforeCodeFile,
13450                    afterCodeFile, pkg.baseCodePath));
13451            pkg.setSplitCodePaths(FileUtils.rewriteAfterRename(beforeCodeFile,
13452                    afterCodeFile, pkg.splitCodePaths));
13453
13454            // Reflect the rename in app info
13455            pkg.setApplicationVolumeUuid(pkg.volumeUuid);
13456            pkg.setApplicationInfoCodePath(pkg.codePath);
13457            pkg.setApplicationInfoBaseCodePath(pkg.baseCodePath);
13458            pkg.setApplicationInfoSplitCodePaths(pkg.splitCodePaths);
13459            pkg.setApplicationInfoResourcePath(pkg.codePath);
13460            pkg.setApplicationInfoBaseResourcePath(pkg.baseCodePath);
13461            pkg.setApplicationInfoSplitResourcePaths(pkg.splitCodePaths);
13462
13463            return true;
13464        }
13465
13466        int doPostInstall(int status, int uid) {
13467            if (status != PackageManager.INSTALL_SUCCEEDED) {
13468                cleanUp();
13469            }
13470            return status;
13471        }
13472
13473        @Override
13474        String getCodePath() {
13475            return (codeFile != null) ? codeFile.getAbsolutePath() : null;
13476        }
13477
13478        @Override
13479        String getResourcePath() {
13480            return (resourceFile != null) ? resourceFile.getAbsolutePath() : null;
13481        }
13482
13483        private boolean cleanUp() {
13484            if (codeFile == null || !codeFile.exists()) {
13485                return false;
13486            }
13487
13488            removeCodePathLI(codeFile);
13489
13490            if (resourceFile != null && !FileUtils.contains(codeFile, resourceFile)) {
13491                resourceFile.delete();
13492            }
13493
13494            return true;
13495        }
13496
13497        void cleanUpResourcesLI() {
13498            // Try enumerating all code paths before deleting
13499            List<String> allCodePaths = Collections.EMPTY_LIST;
13500            if (codeFile != null && codeFile.exists()) {
13501                try {
13502                    final PackageLite pkg = PackageParser.parsePackageLite(codeFile, 0);
13503                    allCodePaths = pkg.getAllCodePaths();
13504                } catch (PackageParserException e) {
13505                    // Ignored; we tried our best
13506                }
13507            }
13508
13509            cleanUp();
13510            removeDexFiles(allCodePaths, instructionSets);
13511        }
13512
13513        boolean doPostDeleteLI(boolean delete) {
13514            // XXX err, shouldn't we respect the delete flag?
13515            cleanUpResourcesLI();
13516            return true;
13517        }
13518    }
13519
13520    private boolean isAsecExternal(String cid) {
13521        final String asecPath = PackageHelper.getSdFilesystem(cid);
13522        return !asecPath.startsWith(mAsecInternalPath);
13523    }
13524
13525    private static void maybeThrowExceptionForMultiArchCopy(String message, int copyRet) throws
13526            PackageManagerException {
13527        if (copyRet < 0) {
13528            if (copyRet != PackageManager.NO_NATIVE_LIBRARIES &&
13529                    copyRet != PackageManager.INSTALL_FAILED_NO_MATCHING_ABIS) {
13530                throw new PackageManagerException(copyRet, message);
13531            }
13532        }
13533    }
13534
13535    /**
13536     * Extract the MountService "container ID" from the full code path of an
13537     * .apk.
13538     */
13539    static String cidFromCodePath(String fullCodePath) {
13540        int eidx = fullCodePath.lastIndexOf("/");
13541        String subStr1 = fullCodePath.substring(0, eidx);
13542        int sidx = subStr1.lastIndexOf("/");
13543        return subStr1.substring(sidx+1, eidx);
13544    }
13545
13546    /**
13547     * Logic to handle installation of ASEC applications, including copying and
13548     * renaming logic.
13549     */
13550    class AsecInstallArgs extends InstallArgs {
13551        static final String RES_FILE_NAME = "pkg.apk";
13552        static final String PUBLIC_RES_FILE_NAME = "res.zip";
13553
13554        String cid;
13555        String packagePath;
13556        String resourcePath;
13557
13558        /** New install */
13559        AsecInstallArgs(InstallParams params) {
13560            super(params.origin, params.move, params.observer, params.installFlags,
13561                    params.installerPackageName, params.volumeUuid,
13562                    params.getUser(), null /* instruction sets */, params.packageAbiOverride,
13563                    params.grantedRuntimePermissions,
13564                    params.traceMethod, params.traceCookie, params.certificates);
13565        }
13566
13567        /** Existing install */
13568        AsecInstallArgs(String fullCodePath, String[] instructionSets,
13569                        boolean isExternal, boolean isForwardLocked) {
13570            super(OriginInfo.fromNothing(), null, null, (isExternal ? INSTALL_EXTERNAL : 0)
13571              | (isForwardLocked ? INSTALL_FORWARD_LOCK : 0), null, null, null,
13572                    instructionSets, null, null, null, 0, null /*certificates*/);
13573            // Hackily pretend we're still looking at a full code path
13574            if (!fullCodePath.endsWith(RES_FILE_NAME)) {
13575                fullCodePath = new File(fullCodePath, RES_FILE_NAME).getAbsolutePath();
13576            }
13577
13578            // Extract cid from fullCodePath
13579            int eidx = fullCodePath.lastIndexOf("/");
13580            String subStr1 = fullCodePath.substring(0, eidx);
13581            int sidx = subStr1.lastIndexOf("/");
13582            cid = subStr1.substring(sidx+1, eidx);
13583            setMountPath(subStr1);
13584        }
13585
13586        AsecInstallArgs(String cid, String[] instructionSets, boolean isForwardLocked) {
13587            super(OriginInfo.fromNothing(), null, null, (isAsecExternal(cid) ? INSTALL_EXTERNAL : 0)
13588              | (isForwardLocked ? INSTALL_FORWARD_LOCK : 0), null, null, null,
13589                    instructionSets, null, null, null, 0, null /*certificates*/);
13590            this.cid = cid;
13591            setMountPath(PackageHelper.getSdDir(cid));
13592        }
13593
13594        void createCopyFile() {
13595            cid = mInstallerService.allocateExternalStageCidLegacy();
13596        }
13597
13598        int copyApk(IMediaContainerService imcs, boolean temp) throws RemoteException {
13599            if (origin.staged && origin.cid != null) {
13600                if (DEBUG_INSTALL) Slog.d(TAG, origin.cid + " already staged; skipping copy");
13601                cid = origin.cid;
13602                setMountPath(PackageHelper.getSdDir(cid));
13603                return PackageManager.INSTALL_SUCCEEDED;
13604            }
13605
13606            if (temp) {
13607                createCopyFile();
13608            } else {
13609                /*
13610                 * Pre-emptively destroy the container since it's destroyed if
13611                 * copying fails due to it existing anyway.
13612                 */
13613                PackageHelper.destroySdDir(cid);
13614            }
13615
13616            final String newMountPath = imcs.copyPackageToContainer(
13617                    origin.file.getAbsolutePath(), cid, getEncryptKey(), isExternalAsec(),
13618                    isFwdLocked(), deriveAbiOverride(abiOverride, null /* settings */));
13619
13620            if (newMountPath != null) {
13621                setMountPath(newMountPath);
13622                return PackageManager.INSTALL_SUCCEEDED;
13623            } else {
13624                return PackageManager.INSTALL_FAILED_CONTAINER_ERROR;
13625            }
13626        }
13627
13628        @Override
13629        String getCodePath() {
13630            return packagePath;
13631        }
13632
13633        @Override
13634        String getResourcePath() {
13635            return resourcePath;
13636        }
13637
13638        int doPreInstall(int status) {
13639            if (status != PackageManager.INSTALL_SUCCEEDED) {
13640                // Destroy container
13641                PackageHelper.destroySdDir(cid);
13642            } else {
13643                boolean mounted = PackageHelper.isContainerMounted(cid);
13644                if (!mounted) {
13645                    String newMountPath = PackageHelper.mountSdDir(cid, getEncryptKey(),
13646                            Process.SYSTEM_UID);
13647                    if (newMountPath != null) {
13648                        setMountPath(newMountPath);
13649                    } else {
13650                        return PackageManager.INSTALL_FAILED_CONTAINER_ERROR;
13651                    }
13652                }
13653            }
13654            return status;
13655        }
13656
13657        boolean doRename(int status, PackageParser.Package pkg, String oldCodePath) {
13658            String newCacheId = getNextCodePath(oldCodePath, pkg.packageName, "/" + RES_FILE_NAME);
13659            String newMountPath = null;
13660            if (PackageHelper.isContainerMounted(cid)) {
13661                // Unmount the container
13662                if (!PackageHelper.unMountSdDir(cid)) {
13663                    Slog.i(TAG, "Failed to unmount " + cid + " before renaming");
13664                    return false;
13665                }
13666            }
13667            if (!PackageHelper.renameSdDir(cid, newCacheId)) {
13668                Slog.e(TAG, "Failed to rename " + cid + " to " + newCacheId +
13669                        " which might be stale. Will try to clean up.");
13670                // Clean up the stale container and proceed to recreate.
13671                if (!PackageHelper.destroySdDir(newCacheId)) {
13672                    Slog.e(TAG, "Very strange. Cannot clean up stale container " + newCacheId);
13673                    return false;
13674                }
13675                // Successfully cleaned up stale container. Try to rename again.
13676                if (!PackageHelper.renameSdDir(cid, newCacheId)) {
13677                    Slog.e(TAG, "Failed to rename " + cid + " to " + newCacheId
13678                            + " inspite of cleaning it up.");
13679                    return false;
13680                }
13681            }
13682            if (!PackageHelper.isContainerMounted(newCacheId)) {
13683                Slog.w(TAG, "Mounting container " + newCacheId);
13684                newMountPath = PackageHelper.mountSdDir(newCacheId,
13685                        getEncryptKey(), Process.SYSTEM_UID);
13686            } else {
13687                newMountPath = PackageHelper.getSdDir(newCacheId);
13688            }
13689            if (newMountPath == null) {
13690                Slog.w(TAG, "Failed to get cache path for  " + newCacheId);
13691                return false;
13692            }
13693            Log.i(TAG, "Succesfully renamed " + cid +
13694                    " to " + newCacheId +
13695                    " at new path: " + newMountPath);
13696            cid = newCacheId;
13697
13698            final File beforeCodeFile = new File(packagePath);
13699            setMountPath(newMountPath);
13700            final File afterCodeFile = new File(packagePath);
13701
13702            // Reflect the rename in scanned details
13703            pkg.setCodePath(afterCodeFile.getAbsolutePath());
13704            pkg.setBaseCodePath(FileUtils.rewriteAfterRename(beforeCodeFile,
13705                    afterCodeFile, pkg.baseCodePath));
13706            pkg.setSplitCodePaths(FileUtils.rewriteAfterRename(beforeCodeFile,
13707                    afterCodeFile, pkg.splitCodePaths));
13708
13709            // Reflect the rename in app info
13710            pkg.setApplicationVolumeUuid(pkg.volumeUuid);
13711            pkg.setApplicationInfoCodePath(pkg.codePath);
13712            pkg.setApplicationInfoBaseCodePath(pkg.baseCodePath);
13713            pkg.setApplicationInfoSplitCodePaths(pkg.splitCodePaths);
13714            pkg.setApplicationInfoResourcePath(pkg.codePath);
13715            pkg.setApplicationInfoBaseResourcePath(pkg.baseCodePath);
13716            pkg.setApplicationInfoSplitResourcePaths(pkg.splitCodePaths);
13717
13718            return true;
13719        }
13720
13721        private void setMountPath(String mountPath) {
13722            final File mountFile = new File(mountPath);
13723
13724            final File monolithicFile = new File(mountFile, RES_FILE_NAME);
13725            if (monolithicFile.exists()) {
13726                packagePath = monolithicFile.getAbsolutePath();
13727                if (isFwdLocked()) {
13728                    resourcePath = new File(mountFile, PUBLIC_RES_FILE_NAME).getAbsolutePath();
13729                } else {
13730                    resourcePath = packagePath;
13731                }
13732            } else {
13733                packagePath = mountFile.getAbsolutePath();
13734                resourcePath = packagePath;
13735            }
13736        }
13737
13738        int doPostInstall(int status, int uid) {
13739            if (status != PackageManager.INSTALL_SUCCEEDED) {
13740                cleanUp();
13741            } else {
13742                final int groupOwner;
13743                final String protectedFile;
13744                if (isFwdLocked()) {
13745                    groupOwner = UserHandle.getSharedAppGid(uid);
13746                    protectedFile = RES_FILE_NAME;
13747                } else {
13748                    groupOwner = -1;
13749                    protectedFile = null;
13750                }
13751
13752                if (uid < Process.FIRST_APPLICATION_UID
13753                        || !PackageHelper.fixSdPermissions(cid, groupOwner, protectedFile)) {
13754                    Slog.e(TAG, "Failed to finalize " + cid);
13755                    PackageHelper.destroySdDir(cid);
13756                    return PackageManager.INSTALL_FAILED_CONTAINER_ERROR;
13757                }
13758
13759                boolean mounted = PackageHelper.isContainerMounted(cid);
13760                if (!mounted) {
13761                    PackageHelper.mountSdDir(cid, getEncryptKey(), Process.myUid());
13762                }
13763            }
13764            return status;
13765        }
13766
13767        private void cleanUp() {
13768            if (DEBUG_SD_INSTALL) Slog.i(TAG, "cleanUp");
13769
13770            // Destroy secure container
13771            PackageHelper.destroySdDir(cid);
13772        }
13773
13774        private List<String> getAllCodePaths() {
13775            final File codeFile = new File(getCodePath());
13776            if (codeFile != null && codeFile.exists()) {
13777                try {
13778                    final PackageLite pkg = PackageParser.parsePackageLite(codeFile, 0);
13779                    return pkg.getAllCodePaths();
13780                } catch (PackageParserException e) {
13781                    // Ignored; we tried our best
13782                }
13783            }
13784            return Collections.EMPTY_LIST;
13785        }
13786
13787        void cleanUpResourcesLI() {
13788            // Enumerate all code paths before deleting
13789            cleanUpResourcesLI(getAllCodePaths());
13790        }
13791
13792        private void cleanUpResourcesLI(List<String> allCodePaths) {
13793            cleanUp();
13794            removeDexFiles(allCodePaths, instructionSets);
13795        }
13796
13797        String getPackageName() {
13798            return getAsecPackageName(cid);
13799        }
13800
13801        boolean doPostDeleteLI(boolean delete) {
13802            if (DEBUG_SD_INSTALL) Slog.i(TAG, "doPostDeleteLI() del=" + delete);
13803            final List<String> allCodePaths = getAllCodePaths();
13804            boolean mounted = PackageHelper.isContainerMounted(cid);
13805            if (mounted) {
13806                // Unmount first
13807                if (PackageHelper.unMountSdDir(cid)) {
13808                    mounted = false;
13809                }
13810            }
13811            if (!mounted && delete) {
13812                cleanUpResourcesLI(allCodePaths);
13813            }
13814            return !mounted;
13815        }
13816
13817        @Override
13818        int doPreCopy() {
13819            if (isFwdLocked()) {
13820                if (!PackageHelper.fixSdPermissions(cid, getPackageUid(DEFAULT_CONTAINER_PACKAGE,
13821                        MATCH_SYSTEM_ONLY, UserHandle.USER_SYSTEM), RES_FILE_NAME)) {
13822                    return PackageManager.INSTALL_FAILED_CONTAINER_ERROR;
13823                }
13824            }
13825
13826            return PackageManager.INSTALL_SUCCEEDED;
13827        }
13828
13829        @Override
13830        int doPostCopy(int uid) {
13831            if (isFwdLocked()) {
13832                if (uid < Process.FIRST_APPLICATION_UID
13833                        || !PackageHelper.fixSdPermissions(cid, UserHandle.getSharedAppGid(uid),
13834                                RES_FILE_NAME)) {
13835                    Slog.e(TAG, "Failed to finalize " + cid);
13836                    PackageHelper.destroySdDir(cid);
13837                    return PackageManager.INSTALL_FAILED_CONTAINER_ERROR;
13838                }
13839            }
13840
13841            return PackageManager.INSTALL_SUCCEEDED;
13842        }
13843    }
13844
13845    /**
13846     * Logic to handle movement of existing installed applications.
13847     */
13848    class MoveInstallArgs extends InstallArgs {
13849        private File codeFile;
13850        private File resourceFile;
13851
13852        /** New install */
13853        MoveInstallArgs(InstallParams params) {
13854            super(params.origin, params.move, params.observer, params.installFlags,
13855                    params.installerPackageName, params.volumeUuid,
13856                    params.getUser(), null /* instruction sets */, params.packageAbiOverride,
13857                    params.grantedRuntimePermissions,
13858                    params.traceMethod, params.traceCookie, params.certificates);
13859        }
13860
13861        int copyApk(IMediaContainerService imcs, boolean temp) {
13862            if (DEBUG_INSTALL) Slog.d(TAG, "Moving " + move.packageName + " from "
13863                    + move.fromUuid + " to " + move.toUuid);
13864            synchronized (mInstaller) {
13865                try {
13866                    mInstaller.moveCompleteApp(move.fromUuid, move.toUuid, move.packageName,
13867                            move.dataAppName, move.appId, move.seinfo, move.targetSdkVersion);
13868                } catch (InstallerException e) {
13869                    Slog.w(TAG, "Failed to move app", e);
13870                    return PackageManager.INSTALL_FAILED_INTERNAL_ERROR;
13871                }
13872            }
13873
13874            codeFile = new File(Environment.getDataAppDirectory(move.toUuid), move.dataAppName);
13875            resourceFile = codeFile;
13876            if (DEBUG_INSTALL) Slog.d(TAG, "codeFile after move is " + codeFile);
13877
13878            return PackageManager.INSTALL_SUCCEEDED;
13879        }
13880
13881        int doPreInstall(int status) {
13882            if (status != PackageManager.INSTALL_SUCCEEDED) {
13883                cleanUp(move.toUuid);
13884            }
13885            return status;
13886        }
13887
13888        boolean doRename(int status, PackageParser.Package pkg, String oldCodePath) {
13889            if (status != PackageManager.INSTALL_SUCCEEDED) {
13890                cleanUp(move.toUuid);
13891                return false;
13892            }
13893
13894            // Reflect the move in app info
13895            pkg.setApplicationVolumeUuid(pkg.volumeUuid);
13896            pkg.setApplicationInfoCodePath(pkg.codePath);
13897            pkg.setApplicationInfoBaseCodePath(pkg.baseCodePath);
13898            pkg.setApplicationInfoSplitCodePaths(pkg.splitCodePaths);
13899            pkg.setApplicationInfoResourcePath(pkg.codePath);
13900            pkg.setApplicationInfoBaseResourcePath(pkg.baseCodePath);
13901            pkg.setApplicationInfoSplitResourcePaths(pkg.splitCodePaths);
13902
13903            return true;
13904        }
13905
13906        int doPostInstall(int status, int uid) {
13907            if (status == PackageManager.INSTALL_SUCCEEDED) {
13908                cleanUp(move.fromUuid);
13909            } else {
13910                cleanUp(move.toUuid);
13911            }
13912            return status;
13913        }
13914
13915        @Override
13916        String getCodePath() {
13917            return (codeFile != null) ? codeFile.getAbsolutePath() : null;
13918        }
13919
13920        @Override
13921        String getResourcePath() {
13922            return (resourceFile != null) ? resourceFile.getAbsolutePath() : null;
13923        }
13924
13925        private boolean cleanUp(String volumeUuid) {
13926            final File codeFile = new File(Environment.getDataAppDirectory(volumeUuid),
13927                    move.dataAppName);
13928            Slog.d(TAG, "Cleaning up " + move.packageName + " on " + volumeUuid);
13929            final int[] userIds = sUserManager.getUserIds();
13930            synchronized (mInstallLock) {
13931                // Clean up both app data and code
13932                // All package moves are frozen until finished
13933                for (int userId : userIds) {
13934                    try {
13935                        mInstaller.destroyAppData(volumeUuid, move.packageName, userId,
13936                                StorageManager.FLAG_STORAGE_DE | StorageManager.FLAG_STORAGE_CE, 0);
13937                    } catch (InstallerException e) {
13938                        Slog.w(TAG, String.valueOf(e));
13939                    }
13940                }
13941                removeCodePathLI(codeFile);
13942            }
13943            return true;
13944        }
13945
13946        void cleanUpResourcesLI() {
13947            throw new UnsupportedOperationException();
13948        }
13949
13950        boolean doPostDeleteLI(boolean delete) {
13951            throw new UnsupportedOperationException();
13952        }
13953    }
13954
13955    static String getAsecPackageName(String packageCid) {
13956        int idx = packageCid.lastIndexOf("-");
13957        if (idx == -1) {
13958            return packageCid;
13959        }
13960        return packageCid.substring(0, idx);
13961    }
13962
13963    // Utility method used to create code paths based on package name and available index.
13964    private static String getNextCodePath(String oldCodePath, String prefix, String suffix) {
13965        String idxStr = "";
13966        int idx = 1;
13967        // Fall back to default value of idx=1 if prefix is not
13968        // part of oldCodePath
13969        if (oldCodePath != null) {
13970            String subStr = oldCodePath;
13971            // Drop the suffix right away
13972            if (suffix != null && subStr.endsWith(suffix)) {
13973                subStr = subStr.substring(0, subStr.length() - suffix.length());
13974            }
13975            // If oldCodePath already contains prefix find out the
13976            // ending index to either increment or decrement.
13977            int sidx = subStr.lastIndexOf(prefix);
13978            if (sidx != -1) {
13979                subStr = subStr.substring(sidx + prefix.length());
13980                if (subStr != null) {
13981                    if (subStr.startsWith(INSTALL_PACKAGE_SUFFIX)) {
13982                        subStr = subStr.substring(INSTALL_PACKAGE_SUFFIX.length());
13983                    }
13984                    try {
13985                        idx = Integer.parseInt(subStr);
13986                        if (idx <= 1) {
13987                            idx++;
13988                        } else {
13989                            idx--;
13990                        }
13991                    } catch(NumberFormatException e) {
13992                    }
13993                }
13994            }
13995        }
13996        idxStr = INSTALL_PACKAGE_SUFFIX + Integer.toString(idx);
13997        return prefix + idxStr;
13998    }
13999
14000    private File getNextCodePath(File targetDir, String packageName) {
14001        int suffix = 1;
14002        File result;
14003        do {
14004            result = new File(targetDir, packageName + "-" + suffix);
14005            suffix++;
14006        } while (result.exists());
14007        return result;
14008    }
14009
14010    // Utility method that returns the relative package path with respect
14011    // to the installation directory. Like say for /data/data/com.test-1.apk
14012    // string com.test-1 is returned.
14013    static String deriveCodePathName(String codePath) {
14014        if (codePath == null) {
14015            return null;
14016        }
14017        final File codeFile = new File(codePath);
14018        final String name = codeFile.getName();
14019        if (codeFile.isDirectory()) {
14020            return name;
14021        } else if (name.endsWith(".apk") || name.endsWith(".tmp")) {
14022            final int lastDot = name.lastIndexOf('.');
14023            return name.substring(0, lastDot);
14024        } else {
14025            Slog.w(TAG, "Odd, " + codePath + " doesn't look like an APK");
14026            return null;
14027        }
14028    }
14029
14030    static class PackageInstalledInfo {
14031        String name;
14032        int uid;
14033        // The set of users that originally had this package installed.
14034        int[] origUsers;
14035        // The set of users that now have this package installed.
14036        int[] newUsers;
14037        PackageParser.Package pkg;
14038        int returnCode;
14039        String returnMsg;
14040        PackageRemovedInfo removedInfo;
14041        ArrayMap<String, PackageInstalledInfo> addedChildPackages;
14042
14043        public void setError(int code, String msg) {
14044            setReturnCode(code);
14045            setReturnMessage(msg);
14046            Slog.w(TAG, msg);
14047        }
14048
14049        public void setError(String msg, PackageParserException e) {
14050            setReturnCode(e.error);
14051            setReturnMessage(ExceptionUtils.getCompleteMessage(msg, e));
14052            Slog.w(TAG, msg, e);
14053        }
14054
14055        public void setError(String msg, PackageManagerException e) {
14056            returnCode = e.error;
14057            setReturnMessage(ExceptionUtils.getCompleteMessage(msg, e));
14058            Slog.w(TAG, msg, e);
14059        }
14060
14061        public void setReturnCode(int returnCode) {
14062            this.returnCode = returnCode;
14063            final int childCount = (addedChildPackages != null) ? addedChildPackages.size() : 0;
14064            for (int i = 0; i < childCount; i++) {
14065                addedChildPackages.valueAt(i).returnCode = returnCode;
14066            }
14067        }
14068
14069        private void setReturnMessage(String returnMsg) {
14070            this.returnMsg = returnMsg;
14071            final int childCount = (addedChildPackages != null) ? addedChildPackages.size() : 0;
14072            for (int i = 0; i < childCount; i++) {
14073                addedChildPackages.valueAt(i).returnMsg = returnMsg;
14074            }
14075        }
14076
14077        // In some error cases we want to convey more info back to the observer
14078        String origPackage;
14079        String origPermission;
14080    }
14081
14082    /*
14083     * Install a non-existing package.
14084     */
14085    private void installNewPackageLIF(PackageParser.Package pkg, final int policyFlags,
14086            int scanFlags, UserHandle user, String installerPackageName, String volumeUuid,
14087            PackageInstalledInfo res) {
14088        Trace.traceBegin(TRACE_TAG_PACKAGE_MANAGER, "installNewPackage");
14089
14090        // Remember this for later, in case we need to rollback this install
14091        String pkgName = pkg.packageName;
14092
14093        if (DEBUG_INSTALL) Slog.d(TAG, "installNewPackageLI: " + pkg);
14094
14095        synchronized(mPackages) {
14096            if (mSettings.mRenamedPackages.containsKey(pkgName)) {
14097                // A package with the same name is already installed, though
14098                // it has been renamed to an older name.  The package we
14099                // are trying to install should be installed as an update to
14100                // the existing one, but that has not been requested, so bail.
14101                res.setError(INSTALL_FAILED_ALREADY_EXISTS, "Attempt to re-install " + pkgName
14102                        + " without first uninstalling package running as "
14103                        + mSettings.mRenamedPackages.get(pkgName));
14104                return;
14105            }
14106            if (mPackages.containsKey(pkgName)) {
14107                // Don't allow installation over an existing package with the same name.
14108                res.setError(INSTALL_FAILED_ALREADY_EXISTS, "Attempt to re-install " + pkgName
14109                        + " without first uninstalling.");
14110                return;
14111            }
14112        }
14113
14114        try {
14115            PackageParser.Package newPackage = scanPackageTracedLI(pkg, policyFlags, scanFlags,
14116                    System.currentTimeMillis(), user);
14117
14118            updateSettingsLI(newPackage, installerPackageName, null, res, user);
14119
14120            if (res.returnCode == PackageManager.INSTALL_SUCCEEDED) {
14121                prepareAppDataAfterInstallLIF(newPackage);
14122
14123            } else {
14124                // Remove package from internal structures, but keep around any
14125                // data that might have already existed
14126                deletePackageLIF(pkgName, UserHandle.ALL, false, null,
14127                        PackageManager.DELETE_KEEP_DATA, res.removedInfo, true, null);
14128            }
14129        } catch (PackageManagerException e) {
14130            res.setError("Package couldn't be installed in " + pkg.codePath, e);
14131        }
14132
14133        Trace.traceEnd(TRACE_TAG_PACKAGE_MANAGER);
14134    }
14135
14136    private boolean shouldCheckUpgradeKeySetLP(PackageSetting oldPs, int scanFlags) {
14137        // Can't rotate keys during boot or if sharedUser.
14138        if (oldPs == null || (scanFlags&SCAN_INITIAL) != 0 || oldPs.sharedUser != null
14139                || !oldPs.keySetData.isUsingUpgradeKeySets()) {
14140            return false;
14141        }
14142        // app is using upgradeKeySets; make sure all are valid
14143        KeySetManagerService ksms = mSettings.mKeySetManagerService;
14144        long[] upgradeKeySets = oldPs.keySetData.getUpgradeKeySets();
14145        for (int i = 0; i < upgradeKeySets.length; i++) {
14146            if (!ksms.isIdValidKeySetId(upgradeKeySets[i])) {
14147                Slog.wtf(TAG, "Package "
14148                         + (oldPs.name != null ? oldPs.name : "<null>")
14149                         + " contains upgrade-key-set reference to unknown key-set: "
14150                         + upgradeKeySets[i]
14151                         + " reverting to signatures check.");
14152                return false;
14153            }
14154        }
14155        return true;
14156    }
14157
14158    private boolean checkUpgradeKeySetLP(PackageSetting oldPS, PackageParser.Package newPkg) {
14159        // Upgrade keysets are being used.  Determine if new package has a superset of the
14160        // required keys.
14161        long[] upgradeKeySets = oldPS.keySetData.getUpgradeKeySets();
14162        KeySetManagerService ksms = mSettings.mKeySetManagerService;
14163        for (int i = 0; i < upgradeKeySets.length; i++) {
14164            Set<PublicKey> upgradeSet = ksms.getPublicKeysFromKeySetLPr(upgradeKeySets[i]);
14165            if (upgradeSet != null && newPkg.mSigningKeys.containsAll(upgradeSet)) {
14166                return true;
14167            }
14168        }
14169        return false;
14170    }
14171
14172    private static void updateDigest(MessageDigest digest, File file) throws IOException {
14173        try (DigestInputStream digestStream =
14174                new DigestInputStream(new FileInputStream(file), digest)) {
14175            while (digestStream.read() != -1) {} // nothing to do; just plow through the file
14176        }
14177    }
14178
14179    private void replacePackageLIF(PackageParser.Package pkg, final int policyFlags, int scanFlags,
14180            UserHandle user, String installerPackageName, PackageInstalledInfo res) {
14181        final boolean isEphemeral = (policyFlags & PackageParser.PARSE_IS_EPHEMERAL) != 0;
14182
14183        final PackageParser.Package oldPackage;
14184        final String pkgName = pkg.packageName;
14185        final int[] allUsers;
14186        final int[] installedUsers;
14187
14188        synchronized(mPackages) {
14189            oldPackage = mPackages.get(pkgName);
14190            if (DEBUG_INSTALL) Slog.d(TAG, "replacePackageLI: new=" + pkg + ", old=" + oldPackage);
14191
14192            // don't allow upgrade to target a release SDK from a pre-release SDK
14193            final boolean oldTargetsPreRelease = oldPackage.applicationInfo.targetSdkVersion
14194                    == android.os.Build.VERSION_CODES.CUR_DEVELOPMENT;
14195            final boolean newTargetsPreRelease = pkg.applicationInfo.targetSdkVersion
14196                    == android.os.Build.VERSION_CODES.CUR_DEVELOPMENT;
14197            if (oldTargetsPreRelease
14198                    && !newTargetsPreRelease
14199                    && ((policyFlags & PackageParser.PARSE_FORCE_SDK) == 0)) {
14200                Slog.w(TAG, "Can't install package targeting released sdk");
14201                res.setReturnCode(PackageManager.INSTALL_FAILED_UPDATE_INCOMPATIBLE);
14202                return;
14203            }
14204
14205            // don't allow an upgrade from full to ephemeral
14206            final boolean oldIsEphemeral = oldPackage.applicationInfo.isEphemeralApp();
14207            if (isEphemeral && !oldIsEphemeral) {
14208                // can't downgrade from full to ephemeral
14209                Slog.w(TAG, "Can't replace app with ephemeral: " + pkgName);
14210                res.setReturnCode(PackageManager.INSTALL_FAILED_EPHEMERAL_INVALID);
14211                return;
14212            }
14213
14214            // verify signatures are valid
14215            final PackageSetting ps = mSettings.mPackages.get(pkgName);
14216            if (shouldCheckUpgradeKeySetLP(ps, scanFlags)) {
14217                if (!checkUpgradeKeySetLP(ps, pkg)) {
14218                    res.setError(INSTALL_FAILED_UPDATE_INCOMPATIBLE,
14219                            "New package not signed by keys specified by upgrade-keysets: "
14220                                    + pkgName);
14221                    return;
14222                }
14223            } else {
14224                // default to original signature matching
14225                if (compareSignatures(oldPackage.mSignatures, pkg.mSignatures)
14226                        != PackageManager.SIGNATURE_MATCH) {
14227                    res.setError(INSTALL_FAILED_UPDATE_INCOMPATIBLE,
14228                            "New package has a different signature: " + pkgName);
14229                    return;
14230                }
14231            }
14232
14233            // don't allow a system upgrade unless the upgrade hash matches
14234            if (oldPackage.restrictUpdateHash != null && oldPackage.isSystemApp()) {
14235                byte[] digestBytes = null;
14236                try {
14237                    final MessageDigest digest = MessageDigest.getInstance("SHA-512");
14238                    updateDigest(digest, new File(pkg.baseCodePath));
14239                    if (!ArrayUtils.isEmpty(pkg.splitCodePaths)) {
14240                        for (String path : pkg.splitCodePaths) {
14241                            updateDigest(digest, new File(path));
14242                        }
14243                    }
14244                    digestBytes = digest.digest();
14245                } catch (NoSuchAlgorithmException | IOException e) {
14246                    res.setError(INSTALL_FAILED_INVALID_APK,
14247                            "Could not compute hash: " + pkgName);
14248                    return;
14249                }
14250                if (!Arrays.equals(oldPackage.restrictUpdateHash, digestBytes)) {
14251                    res.setError(INSTALL_FAILED_INVALID_APK,
14252                            "New package fails restrict-update check: " + pkgName);
14253                    return;
14254                }
14255                // retain upgrade restriction
14256                pkg.restrictUpdateHash = oldPackage.restrictUpdateHash;
14257            }
14258
14259            // Check for shared user id changes
14260            String invalidPackageName =
14261                    getParentOrChildPackageChangedSharedUser(oldPackage, pkg);
14262            if (invalidPackageName != null) {
14263                res.setError(INSTALL_FAILED_SHARED_USER_INCOMPATIBLE,
14264                        "Package " + invalidPackageName + " tried to change user "
14265                                + oldPackage.mSharedUserId);
14266                return;
14267            }
14268
14269            // In case of rollback, remember per-user/profile install state
14270            allUsers = sUserManager.getUserIds();
14271            installedUsers = ps.queryInstalledUsers(allUsers, true);
14272        }
14273
14274        // Update what is removed
14275        res.removedInfo = new PackageRemovedInfo();
14276        res.removedInfo.uid = oldPackage.applicationInfo.uid;
14277        res.removedInfo.removedPackage = oldPackage.packageName;
14278        res.removedInfo.isUpdate = true;
14279        res.removedInfo.origUsers = installedUsers;
14280        final int childCount = (oldPackage.childPackages != null)
14281                ? oldPackage.childPackages.size() : 0;
14282        for (int i = 0; i < childCount; i++) {
14283            boolean childPackageUpdated = false;
14284            PackageParser.Package childPkg = oldPackage.childPackages.get(i);
14285            if (res.addedChildPackages != null) {
14286                PackageInstalledInfo childRes = res.addedChildPackages.get(childPkg.packageName);
14287                if (childRes != null) {
14288                    childRes.removedInfo.uid = childPkg.applicationInfo.uid;
14289                    childRes.removedInfo.removedPackage = childPkg.packageName;
14290                    childRes.removedInfo.isUpdate = true;
14291                    childPackageUpdated = true;
14292                }
14293            }
14294            if (!childPackageUpdated) {
14295                PackageRemovedInfo childRemovedRes = new PackageRemovedInfo();
14296                childRemovedRes.removedPackage = childPkg.packageName;
14297                childRemovedRes.isUpdate = false;
14298                childRemovedRes.dataRemoved = true;
14299                synchronized (mPackages) {
14300                    PackageSetting childPs = mSettings.peekPackageLPr(childPkg.packageName);
14301                    if (childPs != null) {
14302                        childRemovedRes.origUsers = childPs.queryInstalledUsers(allUsers, true);
14303                    }
14304                }
14305                if (res.removedInfo.removedChildPackages == null) {
14306                    res.removedInfo.removedChildPackages = new ArrayMap<>();
14307                }
14308                res.removedInfo.removedChildPackages.put(childPkg.packageName, childRemovedRes);
14309            }
14310        }
14311
14312        boolean sysPkg = (isSystemApp(oldPackage));
14313        if (sysPkg) {
14314            // Set the system/privileged flags as needed
14315            final boolean privileged =
14316                    (oldPackage.applicationInfo.privateFlags
14317                            & ApplicationInfo.PRIVATE_FLAG_PRIVILEGED) != 0;
14318            final int systemPolicyFlags = policyFlags
14319                    | PackageParser.PARSE_IS_SYSTEM
14320                    | (privileged ? PackageParser.PARSE_IS_PRIVILEGED : 0);
14321
14322            replaceSystemPackageLIF(oldPackage, pkg, systemPolicyFlags, scanFlags,
14323                    user, allUsers, installerPackageName, res);
14324        } else {
14325            replaceNonSystemPackageLIF(oldPackage, pkg, policyFlags, scanFlags,
14326                    user, allUsers, installerPackageName, res);
14327        }
14328    }
14329
14330    public List<String> getPreviousCodePaths(String packageName) {
14331        final PackageSetting ps = mSettings.mPackages.get(packageName);
14332        final List<String> result = new ArrayList<String>();
14333        if (ps != null && ps.oldCodePaths != null) {
14334            result.addAll(ps.oldCodePaths);
14335        }
14336        return result;
14337    }
14338
14339    private void replaceNonSystemPackageLIF(PackageParser.Package deletedPackage,
14340            PackageParser.Package pkg, final int policyFlags, int scanFlags, UserHandle user,
14341            int[] allUsers, String installerPackageName, PackageInstalledInfo res) {
14342        if (DEBUG_INSTALL) Slog.d(TAG, "replaceNonSystemPackageLI: new=" + pkg + ", old="
14343                + deletedPackage);
14344
14345        String pkgName = deletedPackage.packageName;
14346        boolean deletedPkg = true;
14347        boolean addedPkg = false;
14348        boolean updatedSettings = false;
14349        final boolean killApp = (scanFlags & SCAN_DONT_KILL_APP) == 0;
14350        final int deleteFlags = PackageManager.DELETE_KEEP_DATA
14351                | (killApp ? 0 : PackageManager.DELETE_DONT_KILL_APP);
14352
14353        final long origUpdateTime = (pkg.mExtras != null)
14354                ? ((PackageSetting)pkg.mExtras).lastUpdateTime : 0;
14355
14356        // First delete the existing package while retaining the data directory
14357        if (!deletePackageLIF(pkgName, null, true, allUsers, deleteFlags,
14358                res.removedInfo, true, pkg)) {
14359            // If the existing package wasn't successfully deleted
14360            res.setError(INSTALL_FAILED_REPLACE_COULDNT_DELETE, "replaceNonSystemPackageLI");
14361            deletedPkg = false;
14362        } else {
14363            // Successfully deleted the old package; proceed with replace.
14364
14365            // If deleted package lived in a container, give users a chance to
14366            // relinquish resources before killing.
14367            if (deletedPackage.isForwardLocked() || isExternal(deletedPackage)) {
14368                if (DEBUG_INSTALL) {
14369                    Slog.i(TAG, "upgrading pkg " + deletedPackage + " is ASEC-hosted -> UNAVAILABLE");
14370                }
14371                final int[] uidArray = new int[] { deletedPackage.applicationInfo.uid };
14372                final ArrayList<String> pkgList = new ArrayList<String>(1);
14373                pkgList.add(deletedPackage.applicationInfo.packageName);
14374                sendResourcesChangedBroadcast(false, true, pkgList, uidArray, null);
14375            }
14376
14377            clearAppDataLIF(pkg, UserHandle.USER_ALL, StorageManager.FLAG_STORAGE_DE
14378                    | StorageManager.FLAG_STORAGE_CE | Installer.FLAG_CLEAR_CODE_CACHE_ONLY);
14379            clearAppProfilesLIF(deletedPackage, UserHandle.USER_ALL);
14380
14381            try {
14382                final PackageParser.Package newPackage = scanPackageTracedLI(pkg, policyFlags,
14383                        scanFlags | SCAN_UPDATE_TIME, System.currentTimeMillis(), user);
14384                updateSettingsLI(newPackage, installerPackageName, allUsers, res, user);
14385
14386                // Update the in-memory copy of the previous code paths.
14387                PackageSetting ps = mSettings.mPackages.get(pkgName);
14388                if (!killApp) {
14389                    if (ps.oldCodePaths == null) {
14390                        ps.oldCodePaths = new ArraySet<>();
14391                    }
14392                    Collections.addAll(ps.oldCodePaths, deletedPackage.baseCodePath);
14393                    if (deletedPackage.splitCodePaths != null) {
14394                        Collections.addAll(ps.oldCodePaths, deletedPackage.splitCodePaths);
14395                    }
14396                } else {
14397                    ps.oldCodePaths = null;
14398                }
14399                if (ps.childPackageNames != null) {
14400                    for (int i = ps.childPackageNames.size() - 1; i >= 0; --i) {
14401                        final String childPkgName = ps.childPackageNames.get(i);
14402                        final PackageSetting childPs = mSettings.mPackages.get(childPkgName);
14403                        childPs.oldCodePaths = ps.oldCodePaths;
14404                    }
14405                }
14406                prepareAppDataAfterInstallLIF(newPackage);
14407                addedPkg = true;
14408            } catch (PackageManagerException e) {
14409                res.setError("Package couldn't be installed in " + pkg.codePath, e);
14410            }
14411        }
14412
14413        if (res.returnCode != PackageManager.INSTALL_SUCCEEDED) {
14414            if (DEBUG_INSTALL) Slog.d(TAG, "Install failed, rolling pack: " + pkgName);
14415
14416            // Revert all internal state mutations and added folders for the failed install
14417            if (addedPkg) {
14418                deletePackageLIF(pkgName, null, true, allUsers, deleteFlags,
14419                        res.removedInfo, true, null);
14420            }
14421
14422            // Restore the old package
14423            if (deletedPkg) {
14424                if (DEBUG_INSTALL) Slog.d(TAG, "Install failed, reinstalling: " + deletedPackage);
14425                File restoreFile = new File(deletedPackage.codePath);
14426                // Parse old package
14427                boolean oldExternal = isExternal(deletedPackage);
14428                int oldParseFlags  = mDefParseFlags | PackageParser.PARSE_CHATTY |
14429                        (deletedPackage.isForwardLocked() ? PackageParser.PARSE_FORWARD_LOCK : 0) |
14430                        (oldExternal ? PackageParser.PARSE_EXTERNAL_STORAGE : 0);
14431                int oldScanFlags = SCAN_UPDATE_SIGNATURE | SCAN_UPDATE_TIME;
14432                try {
14433                    scanPackageTracedLI(restoreFile, oldParseFlags, oldScanFlags, origUpdateTime,
14434                            null);
14435                } catch (PackageManagerException e) {
14436                    Slog.e(TAG, "Failed to restore package : " + pkgName + " after failed upgrade: "
14437                            + e.getMessage());
14438                    return;
14439                }
14440
14441                synchronized (mPackages) {
14442                    // Ensure the installer package name up to date
14443                    setInstallerPackageNameLPw(deletedPackage, installerPackageName);
14444
14445                    // Update permissions for restored package
14446                    updatePermissionsLPw(deletedPackage, UPDATE_PERMISSIONS_ALL);
14447
14448                    mSettings.writeLPr();
14449                }
14450
14451                Slog.i(TAG, "Successfully restored package : " + pkgName + " after failed upgrade");
14452            }
14453        } else {
14454            synchronized (mPackages) {
14455                PackageSetting ps = mSettings.peekPackageLPr(pkg.packageName);
14456                if (ps != null) {
14457                    res.removedInfo.removedForAllUsers = mPackages.get(ps.name) == null;
14458                    if (res.removedInfo.removedChildPackages != null) {
14459                        final int childCount = res.removedInfo.removedChildPackages.size();
14460                        // Iterate in reverse as we may modify the collection
14461                        for (int i = childCount - 1; i >= 0; i--) {
14462                            String childPackageName = res.removedInfo.removedChildPackages.keyAt(i);
14463                            if (res.addedChildPackages.containsKey(childPackageName)) {
14464                                res.removedInfo.removedChildPackages.removeAt(i);
14465                            } else {
14466                                PackageRemovedInfo childInfo = res.removedInfo
14467                                        .removedChildPackages.valueAt(i);
14468                                childInfo.removedForAllUsers = mPackages.get(
14469                                        childInfo.removedPackage) == null;
14470                            }
14471                        }
14472                    }
14473                }
14474            }
14475        }
14476    }
14477
14478    private void replaceSystemPackageLIF(PackageParser.Package deletedPackage,
14479            PackageParser.Package pkg, final int policyFlags, int scanFlags, UserHandle user,
14480            int[] allUsers, String installerPackageName, PackageInstalledInfo res) {
14481        if (DEBUG_INSTALL) Slog.d(TAG, "replaceSystemPackageLI: new=" + pkg
14482                + ", old=" + deletedPackage);
14483
14484        final boolean disabledSystem;
14485
14486        // Remove existing system package
14487        removePackageLI(deletedPackage, true);
14488
14489        synchronized (mPackages) {
14490            disabledSystem = disableSystemPackageLPw(deletedPackage, pkg);
14491        }
14492        if (!disabledSystem) {
14493            // We didn't need to disable the .apk as a current system package,
14494            // which means we are replacing another update that is already
14495            // installed.  We need to make sure to delete the older one's .apk.
14496            res.removedInfo.args = createInstallArgsForExisting(0,
14497                    deletedPackage.applicationInfo.getCodePath(),
14498                    deletedPackage.applicationInfo.getResourcePath(),
14499                    getAppDexInstructionSets(deletedPackage.applicationInfo));
14500        } else {
14501            res.removedInfo.args = null;
14502        }
14503
14504        // Successfully disabled the old package. Now proceed with re-installation
14505        clearAppDataLIF(pkg, UserHandle.USER_ALL, StorageManager.FLAG_STORAGE_DE
14506                | StorageManager.FLAG_STORAGE_CE | Installer.FLAG_CLEAR_CODE_CACHE_ONLY);
14507        clearAppProfilesLIF(deletedPackage, UserHandle.USER_ALL);
14508
14509        res.setReturnCode(PackageManager.INSTALL_SUCCEEDED);
14510        pkg.setApplicationInfoFlags(ApplicationInfo.FLAG_UPDATED_SYSTEM_APP,
14511                ApplicationInfo.FLAG_UPDATED_SYSTEM_APP);
14512
14513        PackageParser.Package newPackage = null;
14514        try {
14515            // Add the package to the internal data structures
14516            newPackage = scanPackageTracedLI(pkg, policyFlags, scanFlags, 0, user);
14517
14518            // Set the update and install times
14519            PackageSetting deletedPkgSetting = (PackageSetting) deletedPackage.mExtras;
14520            setInstallAndUpdateTime(newPackage, deletedPkgSetting.firstInstallTime,
14521                    System.currentTimeMillis());
14522
14523            // Update the package dynamic state if succeeded
14524            if (res.returnCode == PackageManager.INSTALL_SUCCEEDED) {
14525                // Now that the install succeeded make sure we remove data
14526                // directories for any child package the update removed.
14527                final int deletedChildCount = (deletedPackage.childPackages != null)
14528                        ? deletedPackage.childPackages.size() : 0;
14529                final int newChildCount = (newPackage.childPackages != null)
14530                        ? newPackage.childPackages.size() : 0;
14531                for (int i = 0; i < deletedChildCount; i++) {
14532                    PackageParser.Package deletedChildPkg = deletedPackage.childPackages.get(i);
14533                    boolean childPackageDeleted = true;
14534                    for (int j = 0; j < newChildCount; j++) {
14535                        PackageParser.Package newChildPkg = newPackage.childPackages.get(j);
14536                        if (deletedChildPkg.packageName.equals(newChildPkg.packageName)) {
14537                            childPackageDeleted = false;
14538                            break;
14539                        }
14540                    }
14541                    if (childPackageDeleted) {
14542                        PackageSetting ps = mSettings.getDisabledSystemPkgLPr(
14543                                deletedChildPkg.packageName);
14544                        if (ps != null && res.removedInfo.removedChildPackages != null) {
14545                            PackageRemovedInfo removedChildRes = res.removedInfo
14546                                    .removedChildPackages.get(deletedChildPkg.packageName);
14547                            removePackageDataLIF(ps, allUsers, removedChildRes, 0, false);
14548                            removedChildRes.removedForAllUsers = mPackages.get(ps.name) == null;
14549                        }
14550                    }
14551                }
14552
14553                updateSettingsLI(newPackage, installerPackageName, allUsers, res, user);
14554                prepareAppDataAfterInstallLIF(newPackage);
14555            }
14556        } catch (PackageManagerException e) {
14557            res.setReturnCode(INSTALL_FAILED_INTERNAL_ERROR);
14558            res.setError("Package couldn't be installed in " + pkg.codePath, e);
14559        }
14560
14561        if (res.returnCode != PackageManager.INSTALL_SUCCEEDED) {
14562            // Re installation failed. Restore old information
14563            // Remove new pkg information
14564            if (newPackage != null) {
14565                removeInstalledPackageLI(newPackage, true);
14566            }
14567            // Add back the old system package
14568            try {
14569                scanPackageTracedLI(deletedPackage, policyFlags, SCAN_UPDATE_SIGNATURE, 0, user);
14570            } catch (PackageManagerException e) {
14571                Slog.e(TAG, "Failed to restore original package: " + e.getMessage());
14572            }
14573
14574            synchronized (mPackages) {
14575                if (disabledSystem) {
14576                    enableSystemPackageLPw(deletedPackage);
14577                }
14578
14579                // Ensure the installer package name up to date
14580                setInstallerPackageNameLPw(deletedPackage, installerPackageName);
14581
14582                // Update permissions for restored package
14583                updatePermissionsLPw(deletedPackage, UPDATE_PERMISSIONS_ALL);
14584
14585                mSettings.writeLPr();
14586            }
14587
14588            Slog.i(TAG, "Successfully restored package : " + deletedPackage.packageName
14589                    + " after failed upgrade");
14590        }
14591    }
14592
14593    /**
14594     * Checks whether the parent or any of the child packages have a change shared
14595     * user. For a package to be a valid update the shred users of the parent and
14596     * the children should match. We may later support changing child shared users.
14597     * @param oldPkg The updated package.
14598     * @param newPkg The update package.
14599     * @return The shared user that change between the versions.
14600     */
14601    private String getParentOrChildPackageChangedSharedUser(PackageParser.Package oldPkg,
14602            PackageParser.Package newPkg) {
14603        // Check parent shared user
14604        if (!Objects.equals(oldPkg.mSharedUserId, newPkg.mSharedUserId)) {
14605            return newPkg.packageName;
14606        }
14607        // Check child shared users
14608        final int oldChildCount = (oldPkg.childPackages != null) ? oldPkg.childPackages.size() : 0;
14609        final int newChildCount = (newPkg.childPackages != null) ? newPkg.childPackages.size() : 0;
14610        for (int i = 0; i < newChildCount; i++) {
14611            PackageParser.Package newChildPkg = newPkg.childPackages.get(i);
14612            // If this child was present, did it have the same shared user?
14613            for (int j = 0; j < oldChildCount; j++) {
14614                PackageParser.Package oldChildPkg = oldPkg.childPackages.get(j);
14615                if (newChildPkg.packageName.equals(oldChildPkg.packageName)
14616                        && !Objects.equals(newChildPkg.mSharedUserId, oldChildPkg.mSharedUserId)) {
14617                    return newChildPkg.packageName;
14618                }
14619            }
14620        }
14621        return null;
14622    }
14623
14624    private void removeNativeBinariesLI(PackageSetting ps) {
14625        // Remove the lib path for the parent package
14626        if (ps != null) {
14627            NativeLibraryHelper.removeNativeBinariesLI(ps.legacyNativeLibraryPathString);
14628            // Remove the lib path for the child packages
14629            final int childCount = (ps.childPackageNames != null) ? ps.childPackageNames.size() : 0;
14630            for (int i = 0; i < childCount; i++) {
14631                PackageSetting childPs = null;
14632                synchronized (mPackages) {
14633                    childPs = mSettings.peekPackageLPr(ps.childPackageNames.get(i));
14634                }
14635                if (childPs != null) {
14636                    NativeLibraryHelper.removeNativeBinariesLI(childPs
14637                            .legacyNativeLibraryPathString);
14638                }
14639            }
14640        }
14641    }
14642
14643    private void enableSystemPackageLPw(PackageParser.Package pkg) {
14644        // Enable the parent package
14645        mSettings.enableSystemPackageLPw(pkg.packageName);
14646        // Enable the child packages
14647        final int childCount = (pkg.childPackages != null) ? pkg.childPackages.size() : 0;
14648        for (int i = 0; i < childCount; i++) {
14649            PackageParser.Package childPkg = pkg.childPackages.get(i);
14650            mSettings.enableSystemPackageLPw(childPkg.packageName);
14651        }
14652    }
14653
14654    private boolean disableSystemPackageLPw(PackageParser.Package oldPkg,
14655            PackageParser.Package newPkg) {
14656        // Disable the parent package (parent always replaced)
14657        boolean disabled = mSettings.disableSystemPackageLPw(oldPkg.packageName, true);
14658        // Disable the child packages
14659        final int childCount = (oldPkg.childPackages != null) ? oldPkg.childPackages.size() : 0;
14660        for (int i = 0; i < childCount; i++) {
14661            PackageParser.Package childPkg = oldPkg.childPackages.get(i);
14662            final boolean replace = newPkg.hasChildPackage(childPkg.packageName);
14663            disabled |= mSettings.disableSystemPackageLPw(childPkg.packageName, replace);
14664        }
14665        return disabled;
14666    }
14667
14668    private void setInstallerPackageNameLPw(PackageParser.Package pkg,
14669            String installerPackageName) {
14670        // Enable the parent package
14671        mSettings.setInstallerPackageName(pkg.packageName, installerPackageName);
14672        // Enable the child packages
14673        final int childCount = (pkg.childPackages != null) ? pkg.childPackages.size() : 0;
14674        for (int i = 0; i < childCount; i++) {
14675            PackageParser.Package childPkg = pkg.childPackages.get(i);
14676            mSettings.setInstallerPackageName(childPkg.packageName, installerPackageName);
14677        }
14678    }
14679
14680    private int[] revokeUnusedSharedUserPermissionsLPw(SharedUserSetting su, int[] allUserIds) {
14681        // Collect all used permissions in the UID
14682        ArraySet<String> usedPermissions = new ArraySet<>();
14683        final int packageCount = su.packages.size();
14684        for (int i = 0; i < packageCount; i++) {
14685            PackageSetting ps = su.packages.valueAt(i);
14686            if (ps.pkg == null) {
14687                continue;
14688            }
14689            final int requestedPermCount = ps.pkg.requestedPermissions.size();
14690            for (int j = 0; j < requestedPermCount; j++) {
14691                String permission = ps.pkg.requestedPermissions.get(j);
14692                BasePermission bp = mSettings.mPermissions.get(permission);
14693                if (bp != null) {
14694                    usedPermissions.add(permission);
14695                }
14696            }
14697        }
14698
14699        PermissionsState permissionsState = su.getPermissionsState();
14700        // Prune install permissions
14701        List<PermissionState> installPermStates = permissionsState.getInstallPermissionStates();
14702        final int installPermCount = installPermStates.size();
14703        for (int i = installPermCount - 1; i >= 0;  i--) {
14704            PermissionState permissionState = installPermStates.get(i);
14705            if (!usedPermissions.contains(permissionState.getName())) {
14706                BasePermission bp = mSettings.mPermissions.get(permissionState.getName());
14707                if (bp != null) {
14708                    permissionsState.revokeInstallPermission(bp);
14709                    permissionsState.updatePermissionFlags(bp, UserHandle.USER_ALL,
14710                            PackageManager.MASK_PERMISSION_FLAGS, 0);
14711                }
14712            }
14713        }
14714
14715        int[] runtimePermissionChangedUserIds = EmptyArray.INT;
14716
14717        // Prune runtime permissions
14718        for (int userId : allUserIds) {
14719            List<PermissionState> runtimePermStates = permissionsState
14720                    .getRuntimePermissionStates(userId);
14721            final int runtimePermCount = runtimePermStates.size();
14722            for (int i = runtimePermCount - 1; i >= 0; i--) {
14723                PermissionState permissionState = runtimePermStates.get(i);
14724                if (!usedPermissions.contains(permissionState.getName())) {
14725                    BasePermission bp = mSettings.mPermissions.get(permissionState.getName());
14726                    if (bp != null) {
14727                        permissionsState.revokeRuntimePermission(bp, userId);
14728                        permissionsState.updatePermissionFlags(bp, userId,
14729                                PackageManager.MASK_PERMISSION_FLAGS, 0);
14730                        runtimePermissionChangedUserIds = ArrayUtils.appendInt(
14731                                runtimePermissionChangedUserIds, userId);
14732                    }
14733                }
14734            }
14735        }
14736
14737        return runtimePermissionChangedUserIds;
14738    }
14739
14740    private void updateSettingsLI(PackageParser.Package newPackage, String installerPackageName,
14741            int[] allUsers, PackageInstalledInfo res, UserHandle user) {
14742        // Update the parent package setting
14743        updateSettingsInternalLI(newPackage, installerPackageName, allUsers, res.origUsers,
14744                res, user);
14745        // Update the child packages setting
14746        final int childCount = (newPackage.childPackages != null)
14747                ? newPackage.childPackages.size() : 0;
14748        for (int i = 0; i < childCount; i++) {
14749            PackageParser.Package childPackage = newPackage.childPackages.get(i);
14750            PackageInstalledInfo childRes = res.addedChildPackages.get(childPackage.packageName);
14751            updateSettingsInternalLI(childPackage, installerPackageName, allUsers,
14752                    childRes.origUsers, childRes, user);
14753        }
14754    }
14755
14756    private void updateSettingsInternalLI(PackageParser.Package newPackage,
14757            String installerPackageName, int[] allUsers, int[] installedForUsers,
14758            PackageInstalledInfo res, UserHandle user) {
14759        Trace.traceBegin(TRACE_TAG_PACKAGE_MANAGER, "updateSettings");
14760
14761        String pkgName = newPackage.packageName;
14762        synchronized (mPackages) {
14763            //write settings. the installStatus will be incomplete at this stage.
14764            //note that the new package setting would have already been
14765            //added to mPackages. It hasn't been persisted yet.
14766            mSettings.setInstallStatus(pkgName, PackageSettingBase.PKG_INSTALL_INCOMPLETE);
14767            Trace.traceBegin(TRACE_TAG_PACKAGE_MANAGER, "writeSettings");
14768            mSettings.writeLPr();
14769            Trace.traceEnd(TRACE_TAG_PACKAGE_MANAGER);
14770        }
14771
14772        if (DEBUG_INSTALL) Slog.d(TAG, "New package installed in " + newPackage.codePath);
14773        synchronized (mPackages) {
14774            updatePermissionsLPw(newPackage.packageName, newPackage,
14775                    UPDATE_PERMISSIONS_REPLACE_PKG | (newPackage.permissions.size() > 0
14776                            ? UPDATE_PERMISSIONS_ALL : 0));
14777            // For system-bundled packages, we assume that installing an upgraded version
14778            // of the package implies that the user actually wants to run that new code,
14779            // so we enable the package.
14780            PackageSetting ps = mSettings.mPackages.get(pkgName);
14781            final int userId = user.getIdentifier();
14782            if (ps != null) {
14783                if (isSystemApp(newPackage)) {
14784                    if (DEBUG_INSTALL) {
14785                        Slog.d(TAG, "Implicitly enabling system package on upgrade: " + pkgName);
14786                    }
14787                    // Enable system package for requested users
14788                    if (res.origUsers != null) {
14789                        for (int origUserId : res.origUsers) {
14790                            if (userId == UserHandle.USER_ALL || userId == origUserId) {
14791                                ps.setEnabled(COMPONENT_ENABLED_STATE_DEFAULT,
14792                                        origUserId, installerPackageName);
14793                            }
14794                        }
14795                    }
14796                    // Also convey the prior install/uninstall state
14797                    if (allUsers != null && installedForUsers != null) {
14798                        for (int currentUserId : allUsers) {
14799                            final boolean installed = ArrayUtils.contains(
14800                                    installedForUsers, currentUserId);
14801                            if (DEBUG_INSTALL) {
14802                                Slog.d(TAG, "    user " + currentUserId + " => " + installed);
14803                            }
14804                            ps.setInstalled(installed, currentUserId);
14805                        }
14806                        // these install state changes will be persisted in the
14807                        // upcoming call to mSettings.writeLPr().
14808                    }
14809                }
14810                // It's implied that when a user requests installation, they want the app to be
14811                // installed and enabled.
14812                if (userId != UserHandle.USER_ALL) {
14813                    ps.setInstalled(true, userId);
14814                    ps.setEnabled(COMPONENT_ENABLED_STATE_DEFAULT, userId, installerPackageName);
14815                }
14816            }
14817            res.name = pkgName;
14818            res.uid = newPackage.applicationInfo.uid;
14819            res.pkg = newPackage;
14820            mSettings.setInstallStatus(pkgName, PackageSettingBase.PKG_INSTALL_COMPLETE);
14821            mSettings.setInstallerPackageName(pkgName, installerPackageName);
14822            res.setReturnCode(PackageManager.INSTALL_SUCCEEDED);
14823            //to update install status
14824            Trace.traceBegin(TRACE_TAG_PACKAGE_MANAGER, "writeSettings");
14825            mSettings.writeLPr();
14826            Trace.traceEnd(TRACE_TAG_PACKAGE_MANAGER);
14827        }
14828
14829        Trace.traceEnd(TRACE_TAG_PACKAGE_MANAGER);
14830    }
14831
14832    private void installPackageTracedLI(InstallArgs args, PackageInstalledInfo res) {
14833        try {
14834            Trace.traceBegin(TRACE_TAG_PACKAGE_MANAGER, "installPackage");
14835            installPackageLI(args, res);
14836        } finally {
14837            Trace.traceEnd(TRACE_TAG_PACKAGE_MANAGER);
14838        }
14839    }
14840
14841    private void installPackageLI(InstallArgs args, PackageInstalledInfo res) {
14842        final int installFlags = args.installFlags;
14843        final String installerPackageName = args.installerPackageName;
14844        final String volumeUuid = args.volumeUuid;
14845        final File tmpPackageFile = new File(args.getCodePath());
14846        final boolean forwardLocked = ((installFlags & PackageManager.INSTALL_FORWARD_LOCK) != 0);
14847        final boolean onExternal = (((installFlags & PackageManager.INSTALL_EXTERNAL) != 0)
14848                || (args.volumeUuid != null));
14849        final boolean ephemeral = ((installFlags & PackageManager.INSTALL_EPHEMERAL) != 0);
14850        final boolean forceSdk = ((installFlags & PackageManager.INSTALL_FORCE_SDK) != 0);
14851        boolean replace = false;
14852        int scanFlags = SCAN_NEW_INSTALL | SCAN_UPDATE_SIGNATURE;
14853        if (args.move != null) {
14854            // moving a complete application; perform an initial scan on the new install location
14855            scanFlags |= SCAN_INITIAL;
14856        }
14857        if ((installFlags & PackageManager.INSTALL_DONT_KILL_APP) != 0) {
14858            scanFlags |= SCAN_DONT_KILL_APP;
14859        }
14860
14861        // Result object to be returned
14862        res.setReturnCode(PackageManager.INSTALL_SUCCEEDED);
14863
14864        if (DEBUG_INSTALL) Slog.d(TAG, "installPackageLI: path=" + tmpPackageFile);
14865
14866        // Sanity check
14867        if (ephemeral && (forwardLocked || onExternal)) {
14868            Slog.i(TAG, "Incompatible ephemeral install; fwdLocked=" + forwardLocked
14869                    + " external=" + onExternal);
14870            res.setReturnCode(PackageManager.INSTALL_FAILED_EPHEMERAL_INVALID);
14871            return;
14872        }
14873
14874        // Retrieve PackageSettings and parse package
14875        final int parseFlags = mDefParseFlags | PackageParser.PARSE_CHATTY
14876                | PackageParser.PARSE_ENFORCE_CODE
14877                | (forwardLocked ? PackageParser.PARSE_FORWARD_LOCK : 0)
14878                | (onExternal ? PackageParser.PARSE_EXTERNAL_STORAGE : 0)
14879                | (ephemeral ? PackageParser.PARSE_IS_EPHEMERAL : 0)
14880                | (forceSdk ? PackageParser.PARSE_FORCE_SDK : 0);
14881        PackageParser pp = new PackageParser();
14882        pp.setSeparateProcesses(mSeparateProcesses);
14883        pp.setDisplayMetrics(mMetrics);
14884
14885        Trace.traceBegin(TRACE_TAG_PACKAGE_MANAGER, "parsePackage");
14886        final PackageParser.Package pkg;
14887        try {
14888            pkg = pp.parsePackage(tmpPackageFile, parseFlags);
14889        } catch (PackageParserException e) {
14890            res.setError("Failed parse during installPackageLI", e);
14891            return;
14892        } finally {
14893            Trace.traceEnd(TRACE_TAG_PACKAGE_MANAGER);
14894        }
14895
14896        // If we are installing a clustered package add results for the children
14897        if (pkg.childPackages != null) {
14898            synchronized (mPackages) {
14899                final int childCount = pkg.childPackages.size();
14900                for (int i = 0; i < childCount; i++) {
14901                    PackageParser.Package childPkg = pkg.childPackages.get(i);
14902                    PackageInstalledInfo childRes = new PackageInstalledInfo();
14903                    childRes.setReturnCode(PackageManager.INSTALL_SUCCEEDED);
14904                    childRes.pkg = childPkg;
14905                    childRes.name = childPkg.packageName;
14906                    PackageSetting childPs = mSettings.peekPackageLPr(childPkg.packageName);
14907                    if (childPs != null) {
14908                        childRes.origUsers = childPs.queryInstalledUsers(
14909                                sUserManager.getUserIds(), true);
14910                    }
14911                    if ((mPackages.containsKey(childPkg.packageName))) {
14912                        childRes.removedInfo = new PackageRemovedInfo();
14913                        childRes.removedInfo.removedPackage = childPkg.packageName;
14914                    }
14915                    if (res.addedChildPackages == null) {
14916                        res.addedChildPackages = new ArrayMap<>();
14917                    }
14918                    res.addedChildPackages.put(childPkg.packageName, childRes);
14919                }
14920            }
14921        }
14922
14923        // If package doesn't declare API override, mark that we have an install
14924        // time CPU ABI override.
14925        if (TextUtils.isEmpty(pkg.cpuAbiOverride)) {
14926            pkg.cpuAbiOverride = args.abiOverride;
14927        }
14928
14929        String pkgName = res.name = pkg.packageName;
14930        if ((pkg.applicationInfo.flags&ApplicationInfo.FLAG_TEST_ONLY) != 0) {
14931            if ((installFlags & PackageManager.INSTALL_ALLOW_TEST) == 0) {
14932                res.setError(INSTALL_FAILED_TEST_ONLY, "installPackageLI");
14933                return;
14934            }
14935        }
14936
14937        try {
14938            // either use what we've been given or parse directly from the APK
14939            if (args.certificates != null) {
14940                try {
14941                    PackageParser.populateCertificates(pkg, args.certificates);
14942                } catch (PackageParserException e) {
14943                    // there was something wrong with the certificates we were given;
14944                    // try to pull them from the APK
14945                    PackageParser.collectCertificates(pkg, parseFlags);
14946                }
14947            } else {
14948                PackageParser.collectCertificates(pkg, parseFlags);
14949            }
14950        } catch (PackageParserException e) {
14951            res.setError("Failed collect during installPackageLI", e);
14952            return;
14953        }
14954
14955        // Get rid of all references to package scan path via parser.
14956        pp = null;
14957        String oldCodePath = null;
14958        boolean systemApp = false;
14959        synchronized (mPackages) {
14960            // Check if installing already existing package
14961            if ((installFlags & PackageManager.INSTALL_REPLACE_EXISTING) != 0) {
14962                String oldName = mSettings.mRenamedPackages.get(pkgName);
14963                if (pkg.mOriginalPackages != null
14964                        && pkg.mOriginalPackages.contains(oldName)
14965                        && mPackages.containsKey(oldName)) {
14966                    // This package is derived from an original package,
14967                    // and this device has been updating from that original
14968                    // name.  We must continue using the original name, so
14969                    // rename the new package here.
14970                    pkg.setPackageName(oldName);
14971                    pkgName = pkg.packageName;
14972                    replace = true;
14973                    if (DEBUG_INSTALL) Slog.d(TAG, "Replacing existing renamed package: oldName="
14974                            + oldName + " pkgName=" + pkgName);
14975                } else if (mPackages.containsKey(pkgName)) {
14976                    // This package, under its official name, already exists
14977                    // on the device; we should replace it.
14978                    replace = true;
14979                    if (DEBUG_INSTALL) Slog.d(TAG, "Replace existing pacakge: " + pkgName);
14980                }
14981
14982                // Child packages are installed through the parent package
14983                if (pkg.parentPackage != null) {
14984                    res.setError(PackageManager.INSTALL_PARSE_FAILED_BAD_PACKAGE_NAME,
14985                            "Package " + pkg.packageName + " is child of package "
14986                                    + pkg.parentPackage.parentPackage + ". Child packages "
14987                                    + "can be updated only through the parent package.");
14988                    return;
14989                }
14990
14991                if (replace) {
14992                    // Prevent apps opting out from runtime permissions
14993                    PackageParser.Package oldPackage = mPackages.get(pkgName);
14994                    final int oldTargetSdk = oldPackage.applicationInfo.targetSdkVersion;
14995                    final int newTargetSdk = pkg.applicationInfo.targetSdkVersion;
14996                    if (oldTargetSdk > Build.VERSION_CODES.LOLLIPOP_MR1
14997                            && newTargetSdk <= Build.VERSION_CODES.LOLLIPOP_MR1) {
14998                        res.setError(PackageManager.INSTALL_FAILED_PERMISSION_MODEL_DOWNGRADE,
14999                                "Package " + pkg.packageName + " new target SDK " + newTargetSdk
15000                                        + " doesn't support runtime permissions but the old"
15001                                        + " target SDK " + oldTargetSdk + " does.");
15002                        return;
15003                    }
15004
15005                    // Prevent installing of child packages
15006                    if (oldPackage.parentPackage != null) {
15007                        res.setError(PackageManager.INSTALL_PARSE_FAILED_BAD_PACKAGE_NAME,
15008                                "Package " + pkg.packageName + " is child of package "
15009                                        + oldPackage.parentPackage + ". Child packages "
15010                                        + "can be updated only through the parent package.");
15011                        return;
15012                    }
15013                }
15014            }
15015
15016            PackageSetting ps = mSettings.mPackages.get(pkgName);
15017            if (ps != null) {
15018                if (DEBUG_INSTALL) Slog.d(TAG, "Existing package: " + ps);
15019
15020                // Quick sanity check that we're signed correctly if updating;
15021                // we'll check this again later when scanning, but we want to
15022                // bail early here before tripping over redefined permissions.
15023                if (shouldCheckUpgradeKeySetLP(ps, scanFlags)) {
15024                    if (!checkUpgradeKeySetLP(ps, pkg)) {
15025                        res.setError(INSTALL_FAILED_UPDATE_INCOMPATIBLE, "Package "
15026                                + pkg.packageName + " upgrade keys do not match the "
15027                                + "previously installed version");
15028                        return;
15029                    }
15030                } else {
15031                    try {
15032                        verifySignaturesLP(ps, pkg);
15033                    } catch (PackageManagerException e) {
15034                        res.setError(e.error, e.getMessage());
15035                        return;
15036                    }
15037                }
15038
15039                oldCodePath = mSettings.mPackages.get(pkgName).codePathString;
15040                if (ps.pkg != null && ps.pkg.applicationInfo != null) {
15041                    systemApp = (ps.pkg.applicationInfo.flags &
15042                            ApplicationInfo.FLAG_SYSTEM) != 0;
15043                }
15044                res.origUsers = ps.queryInstalledUsers(sUserManager.getUserIds(), true);
15045            }
15046
15047            // Check whether the newly-scanned package wants to define an already-defined perm
15048            int N = pkg.permissions.size();
15049            for (int i = N-1; i >= 0; i--) {
15050                PackageParser.Permission perm = pkg.permissions.get(i);
15051                BasePermission bp = mSettings.mPermissions.get(perm.info.name);
15052                if (bp != null) {
15053                    // If the defining package is signed with our cert, it's okay.  This
15054                    // also includes the "updating the same package" case, of course.
15055                    // "updating same package" could also involve key-rotation.
15056                    final boolean sigsOk;
15057                    if (bp.sourcePackage.equals(pkg.packageName)
15058                            && (bp.packageSetting instanceof PackageSetting)
15059                            && (shouldCheckUpgradeKeySetLP((PackageSetting) bp.packageSetting,
15060                                    scanFlags))) {
15061                        sigsOk = checkUpgradeKeySetLP((PackageSetting) bp.packageSetting, pkg);
15062                    } else {
15063                        sigsOk = compareSignatures(bp.packageSetting.signatures.mSignatures,
15064                                pkg.mSignatures) == PackageManager.SIGNATURE_MATCH;
15065                    }
15066                    if (!sigsOk) {
15067                        // If the owning package is the system itself, we log but allow
15068                        // install to proceed; we fail the install on all other permission
15069                        // redefinitions.
15070                        if (!bp.sourcePackage.equals("android")) {
15071                            res.setError(INSTALL_FAILED_DUPLICATE_PERMISSION, "Package "
15072                                    + pkg.packageName + " attempting to redeclare permission "
15073                                    + perm.info.name + " already owned by " + bp.sourcePackage);
15074                            res.origPermission = perm.info.name;
15075                            res.origPackage = bp.sourcePackage;
15076                            return;
15077                        } else {
15078                            Slog.w(TAG, "Package " + pkg.packageName
15079                                    + " attempting to redeclare system permission "
15080                                    + perm.info.name + "; ignoring new declaration");
15081                            pkg.permissions.remove(i);
15082                        }
15083                    }
15084                }
15085            }
15086        }
15087
15088        if (systemApp) {
15089            if (onExternal) {
15090                // Abort update; system app can't be replaced with app on sdcard
15091                res.setError(INSTALL_FAILED_INVALID_INSTALL_LOCATION,
15092                        "Cannot install updates to system apps on sdcard");
15093                return;
15094            } else if (ephemeral) {
15095                // Abort update; system app can't be replaced with an ephemeral app
15096                res.setError(INSTALL_FAILED_EPHEMERAL_INVALID,
15097                        "Cannot update a system app with an ephemeral app");
15098                return;
15099            }
15100        }
15101
15102        if (args.move != null) {
15103            // We did an in-place move, so dex is ready to roll
15104            scanFlags |= SCAN_NO_DEX;
15105            scanFlags |= SCAN_MOVE;
15106
15107            synchronized (mPackages) {
15108                final PackageSetting ps = mSettings.mPackages.get(pkgName);
15109                if (ps == null) {
15110                    res.setError(INSTALL_FAILED_INTERNAL_ERROR,
15111                            "Missing settings for moved package " + pkgName);
15112                }
15113
15114                // We moved the entire application as-is, so bring over the
15115                // previously derived ABI information.
15116                pkg.applicationInfo.primaryCpuAbi = ps.primaryCpuAbiString;
15117                pkg.applicationInfo.secondaryCpuAbi = ps.secondaryCpuAbiString;
15118            }
15119
15120        } else if (!forwardLocked && !pkg.applicationInfo.isExternalAsec()) {
15121            // Enable SCAN_NO_DEX flag to skip dexopt at a later stage
15122            scanFlags |= SCAN_NO_DEX;
15123
15124            try {
15125                String abiOverride = (TextUtils.isEmpty(pkg.cpuAbiOverride) ?
15126                    args.abiOverride : pkg.cpuAbiOverride);
15127                derivePackageAbi(pkg, new File(pkg.codePath), abiOverride,
15128                        true /* extract libs */);
15129            } catch (PackageManagerException pme) {
15130                Slog.e(TAG, "Error deriving application ABI", pme);
15131                res.setError(INSTALL_FAILED_INTERNAL_ERROR, "Error deriving application ABI");
15132                return;
15133            }
15134
15135            // Shared libraries for the package need to be updated.
15136            synchronized (mPackages) {
15137                try {
15138                    updateSharedLibrariesLPw(pkg, null);
15139                } catch (PackageManagerException e) {
15140                    Slog.e(TAG, "updateSharedLibrariesLPw failed: " + e.getMessage());
15141                }
15142            }
15143            Trace.traceBegin(TRACE_TAG_PACKAGE_MANAGER, "dexopt");
15144            // Do not run PackageDexOptimizer through the local performDexOpt
15145            // method because `pkg` may not be in `mPackages` yet.
15146            //
15147            // Also, don't fail application installs if the dexopt step fails.
15148            mPackageDexOptimizer.performDexOpt(pkg, pkg.usesLibraryFiles,
15149                    null /* instructionSets */, false /* checkProfiles */,
15150                    getCompilerFilterForReason(REASON_INSTALL));
15151            Trace.traceEnd(TRACE_TAG_PACKAGE_MANAGER);
15152
15153            // Notify BackgroundDexOptService that the package has been changed.
15154            // If this is an update of a package which used to fail to compile,
15155            // BDOS will remove it from its blacklist.
15156            BackgroundDexOptService.notifyPackageChanged(pkg.packageName);
15157        }
15158
15159        if (!args.doRename(res.returnCode, pkg, oldCodePath)) {
15160            res.setError(INSTALL_FAILED_INSUFFICIENT_STORAGE, "Failed rename");
15161            return;
15162        }
15163
15164        startIntentFilterVerifications(args.user.getIdentifier(), replace, pkg);
15165
15166        try (PackageFreezer freezer = freezePackageForInstall(pkgName, installFlags,
15167                "installPackageLI")) {
15168            if (replace) {
15169                replacePackageLIF(pkg, parseFlags, scanFlags | SCAN_REPLACING, args.user,
15170                        installerPackageName, res);
15171            } else {
15172                installNewPackageLIF(pkg, parseFlags, scanFlags | SCAN_DELETE_DATA_ON_FAILURES,
15173                        args.user, installerPackageName, volumeUuid, res);
15174            }
15175        }
15176        synchronized (mPackages) {
15177            final PackageSetting ps = mSettings.mPackages.get(pkgName);
15178            if (ps != null) {
15179                res.newUsers = ps.queryInstalledUsers(sUserManager.getUserIds(), true);
15180            }
15181
15182            final int childCount = (pkg.childPackages != null) ? pkg.childPackages.size() : 0;
15183            for (int i = 0; i < childCount; i++) {
15184                PackageParser.Package childPkg = pkg.childPackages.get(i);
15185                PackageInstalledInfo childRes = res.addedChildPackages.get(childPkg.packageName);
15186                PackageSetting childPs = mSettings.peekPackageLPr(childPkg.packageName);
15187                if (childPs != null) {
15188                    childRes.newUsers = childPs.queryInstalledUsers(
15189                            sUserManager.getUserIds(), true);
15190                }
15191            }
15192        }
15193    }
15194
15195    private void startIntentFilterVerifications(int userId, boolean replacing,
15196            PackageParser.Package pkg) {
15197        if (mIntentFilterVerifierComponent == null) {
15198            Slog.w(TAG, "No IntentFilter verification will not be done as "
15199                    + "there is no IntentFilterVerifier available!");
15200            return;
15201        }
15202
15203        final int verifierUid = getPackageUid(
15204                mIntentFilterVerifierComponent.getPackageName(),
15205                MATCH_DEBUG_TRIAGED_MISSING,
15206                (userId == UserHandle.USER_ALL) ? UserHandle.USER_SYSTEM : userId);
15207
15208        Message msg = mHandler.obtainMessage(START_INTENT_FILTER_VERIFICATIONS);
15209        msg.obj = new IFVerificationParams(pkg, replacing, userId, verifierUid);
15210        mHandler.sendMessage(msg);
15211
15212        final int childCount = (pkg.childPackages != null) ? pkg.childPackages.size() : 0;
15213        for (int i = 0; i < childCount; i++) {
15214            PackageParser.Package childPkg = pkg.childPackages.get(i);
15215            msg = mHandler.obtainMessage(START_INTENT_FILTER_VERIFICATIONS);
15216            msg.obj = new IFVerificationParams(childPkg, replacing, userId, verifierUid);
15217            mHandler.sendMessage(msg);
15218        }
15219    }
15220
15221    private void verifyIntentFiltersIfNeeded(int userId, int verifierUid, boolean replacing,
15222            PackageParser.Package pkg) {
15223        int size = pkg.activities.size();
15224        if (size == 0) {
15225            if (DEBUG_DOMAIN_VERIFICATION) Slog.d(TAG,
15226                    "No activity, so no need to verify any IntentFilter!");
15227            return;
15228        }
15229
15230        final boolean hasDomainURLs = hasDomainURLs(pkg);
15231        if (!hasDomainURLs) {
15232            if (DEBUG_DOMAIN_VERIFICATION) Slog.d(TAG,
15233                    "No domain URLs, so no need to verify any IntentFilter!");
15234            return;
15235        }
15236
15237        if (DEBUG_DOMAIN_VERIFICATION) Slog.d(TAG, "Checking for userId:" + userId
15238                + " if any IntentFilter from the " + size
15239                + " Activities needs verification ...");
15240
15241        int count = 0;
15242        final String packageName = pkg.packageName;
15243
15244        synchronized (mPackages) {
15245            // If this is a new install and we see that we've already run verification for this
15246            // package, we have nothing to do: it means the state was restored from backup.
15247            if (!replacing) {
15248                IntentFilterVerificationInfo ivi =
15249                        mSettings.getIntentFilterVerificationLPr(packageName);
15250                if (ivi != null) {
15251                    if (DEBUG_DOMAIN_VERIFICATION) {
15252                        Slog.i(TAG, "Package " + packageName+ " already verified: status="
15253                                + ivi.getStatusString());
15254                    }
15255                    return;
15256                }
15257            }
15258
15259            // If any filters need to be verified, then all need to be.
15260            boolean needToVerify = false;
15261            for (PackageParser.Activity a : pkg.activities) {
15262                for (ActivityIntentInfo filter : a.intents) {
15263                    if (filter.needsVerification() && needsNetworkVerificationLPr(filter)) {
15264                        if (DEBUG_DOMAIN_VERIFICATION) {
15265                            Slog.d(TAG, "Intent filter needs verification, so processing all filters");
15266                        }
15267                        needToVerify = true;
15268                        break;
15269                    }
15270                }
15271            }
15272
15273            if (needToVerify) {
15274                final int verificationId = mIntentFilterVerificationToken++;
15275                for (PackageParser.Activity a : pkg.activities) {
15276                    for (ActivityIntentInfo filter : a.intents) {
15277                        if (filter.handlesWebUris(true) && needsNetworkVerificationLPr(filter)) {
15278                            if (DEBUG_DOMAIN_VERIFICATION) Slog.d(TAG,
15279                                    "Verification needed for IntentFilter:" + filter.toString());
15280                            mIntentFilterVerifier.addOneIntentFilterVerification(
15281                                    verifierUid, userId, verificationId, filter, packageName);
15282                            count++;
15283                        }
15284                    }
15285                }
15286            }
15287        }
15288
15289        if (count > 0) {
15290            if (DEBUG_DOMAIN_VERIFICATION) Slog.d(TAG, "Starting " + count
15291                    + " IntentFilter verification" + (count > 1 ? "s" : "")
15292                    +  " for userId:" + userId);
15293            mIntentFilterVerifier.startVerifications(userId);
15294        } else {
15295            if (DEBUG_DOMAIN_VERIFICATION) {
15296                Slog.d(TAG, "No filters or not all autoVerify for " + packageName);
15297            }
15298        }
15299    }
15300
15301    private boolean needsNetworkVerificationLPr(ActivityIntentInfo filter) {
15302        final ComponentName cn  = filter.activity.getComponentName();
15303        final String packageName = cn.getPackageName();
15304
15305        IntentFilterVerificationInfo ivi = mSettings.getIntentFilterVerificationLPr(
15306                packageName);
15307        if (ivi == null) {
15308            return true;
15309        }
15310        int status = ivi.getStatus();
15311        switch (status) {
15312            case INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_UNDEFINED:
15313            case INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_ASK:
15314                return true;
15315
15316            default:
15317                // Nothing to do
15318                return false;
15319        }
15320    }
15321
15322    private static boolean isMultiArch(ApplicationInfo info) {
15323        return (info.flags & ApplicationInfo.FLAG_MULTIARCH) != 0;
15324    }
15325
15326    private static boolean isExternal(PackageParser.Package pkg) {
15327        return (pkg.applicationInfo.flags & ApplicationInfo.FLAG_EXTERNAL_STORAGE) != 0;
15328    }
15329
15330    private static boolean isExternal(PackageSetting ps) {
15331        return (ps.pkgFlags & ApplicationInfo.FLAG_EXTERNAL_STORAGE) != 0;
15332    }
15333
15334    private static boolean isEphemeral(PackageParser.Package pkg) {
15335        return pkg.applicationInfo.isEphemeralApp();
15336    }
15337
15338    private static boolean isEphemeral(PackageSetting ps) {
15339        return ps.pkg != null && isEphemeral(ps.pkg);
15340    }
15341
15342    private static boolean isSystemApp(PackageParser.Package pkg) {
15343        return (pkg.applicationInfo.flags & ApplicationInfo.FLAG_SYSTEM) != 0;
15344    }
15345
15346    private static boolean isPrivilegedApp(PackageParser.Package pkg) {
15347        return (pkg.applicationInfo.privateFlags & ApplicationInfo.PRIVATE_FLAG_PRIVILEGED) != 0;
15348    }
15349
15350    private static boolean hasDomainURLs(PackageParser.Package pkg) {
15351        return (pkg.applicationInfo.privateFlags & ApplicationInfo.PRIVATE_FLAG_HAS_DOMAIN_URLS) != 0;
15352    }
15353
15354    private static boolean isSystemApp(PackageSetting ps) {
15355        return (ps.pkgFlags & ApplicationInfo.FLAG_SYSTEM) != 0;
15356    }
15357
15358    private static boolean isUpdatedSystemApp(PackageSetting ps) {
15359        return (ps.pkgFlags & ApplicationInfo.FLAG_UPDATED_SYSTEM_APP) != 0;
15360    }
15361
15362    private int packageFlagsToInstallFlags(PackageSetting ps) {
15363        int installFlags = 0;
15364        if (isEphemeral(ps)) {
15365            installFlags |= PackageManager.INSTALL_EPHEMERAL;
15366        }
15367        if (isExternal(ps) && TextUtils.isEmpty(ps.volumeUuid)) {
15368            // This existing package was an external ASEC install when we have
15369            // the external flag without a UUID
15370            installFlags |= PackageManager.INSTALL_EXTERNAL;
15371        }
15372        if (ps.isForwardLocked()) {
15373            installFlags |= PackageManager.INSTALL_FORWARD_LOCK;
15374        }
15375        return installFlags;
15376    }
15377
15378    private String getVolumeUuidForPackage(PackageParser.Package pkg) {
15379        if (isExternal(pkg)) {
15380            if (TextUtils.isEmpty(pkg.volumeUuid)) {
15381                return StorageManager.UUID_PRIMARY_PHYSICAL;
15382            } else {
15383                return pkg.volumeUuid;
15384            }
15385        } else {
15386            return StorageManager.UUID_PRIVATE_INTERNAL;
15387        }
15388    }
15389
15390    private VersionInfo getSettingsVersionForPackage(PackageParser.Package pkg) {
15391        if (isExternal(pkg)) {
15392            if (TextUtils.isEmpty(pkg.volumeUuid)) {
15393                return mSettings.getExternalVersion();
15394            } else {
15395                return mSettings.findOrCreateVersion(pkg.volumeUuid);
15396            }
15397        } else {
15398            return mSettings.getInternalVersion();
15399        }
15400    }
15401
15402    private void deleteTempPackageFiles() {
15403        final FilenameFilter filter = new FilenameFilter() {
15404            public boolean accept(File dir, String name) {
15405                return name.startsWith("vmdl") && name.endsWith(".tmp");
15406            }
15407        };
15408        for (File file : mDrmAppPrivateInstallDir.listFiles(filter)) {
15409            file.delete();
15410        }
15411    }
15412
15413    @Override
15414    public void deletePackageAsUser(String packageName, IPackageDeleteObserver observer, int userId,
15415            int flags) {
15416        deletePackage(packageName, new LegacyPackageDeleteObserver(observer).getBinder(), userId,
15417                flags);
15418    }
15419
15420    @Override
15421    public void deletePackage(final String packageName,
15422            final IPackageDeleteObserver2 observer, final int userId, final int deleteFlags) {
15423        mContext.enforceCallingOrSelfPermission(
15424                android.Manifest.permission.DELETE_PACKAGES, null);
15425        Preconditions.checkNotNull(packageName);
15426        Preconditions.checkNotNull(observer);
15427        final int uid = Binder.getCallingUid();
15428        final boolean deleteAllUsers = (deleteFlags & PackageManager.DELETE_ALL_USERS) != 0;
15429        final int[] users = deleteAllUsers ? sUserManager.getUserIds() : new int[]{ userId };
15430        if (UserHandle.getUserId(uid) != userId || (deleteAllUsers && users.length > 1)) {
15431            mContext.enforceCallingOrSelfPermission(
15432                    android.Manifest.permission.INTERACT_ACROSS_USERS_FULL,
15433                    "deletePackage for user " + userId);
15434        }
15435
15436        if (isUserRestricted(userId, UserManager.DISALLOW_UNINSTALL_APPS)) {
15437            try {
15438                observer.onPackageDeleted(packageName,
15439                        PackageManager.DELETE_FAILED_USER_RESTRICTED, null);
15440            } catch (RemoteException re) {
15441            }
15442            return;
15443        }
15444
15445        if (!deleteAllUsers && getBlockUninstallForUser(packageName, userId)) {
15446            try {
15447                observer.onPackageDeleted(packageName,
15448                        PackageManager.DELETE_FAILED_OWNER_BLOCKED, null);
15449            } catch (RemoteException re) {
15450            }
15451            return;
15452        }
15453
15454        if (DEBUG_REMOVE) {
15455            Slog.d(TAG, "deletePackageAsUser: pkg=" + packageName + " user=" + userId
15456                    + " deleteAllUsers: " + deleteAllUsers );
15457        }
15458        // Queue up an async operation since the package deletion may take a little while.
15459        mHandler.post(new Runnable() {
15460            public void run() {
15461                mHandler.removeCallbacks(this);
15462                int returnCode;
15463                if (!deleteAllUsers) {
15464                    returnCode = deletePackageX(packageName, userId, deleteFlags);
15465                } else {
15466                    int[] blockUninstallUserIds = getBlockUninstallForUsers(packageName, users);
15467                    // If nobody is blocking uninstall, proceed with delete for all users
15468                    if (ArrayUtils.isEmpty(blockUninstallUserIds)) {
15469                        returnCode = deletePackageX(packageName, userId, deleteFlags);
15470                    } else {
15471                        // Otherwise uninstall individually for users with blockUninstalls=false
15472                        final int userFlags = deleteFlags & ~PackageManager.DELETE_ALL_USERS;
15473                        for (int userId : users) {
15474                            if (!ArrayUtils.contains(blockUninstallUserIds, userId)) {
15475                                returnCode = deletePackageX(packageName, userId, userFlags);
15476                                if (returnCode != PackageManager.DELETE_SUCCEEDED) {
15477                                    Slog.w(TAG, "Package delete failed for user " + userId
15478                                            + ", returnCode " + returnCode);
15479                                }
15480                            }
15481                        }
15482                        // The app has only been marked uninstalled for certain users.
15483                        // We still need to report that delete was blocked
15484                        returnCode = PackageManager.DELETE_FAILED_OWNER_BLOCKED;
15485                    }
15486                }
15487                try {
15488                    observer.onPackageDeleted(packageName, returnCode, null);
15489                } catch (RemoteException e) {
15490                    Log.i(TAG, "Observer no longer exists.");
15491                } //end catch
15492            } //end run
15493        });
15494    }
15495
15496    private int[] getBlockUninstallForUsers(String packageName, int[] userIds) {
15497        int[] result = EMPTY_INT_ARRAY;
15498        for (int userId : userIds) {
15499            if (getBlockUninstallForUser(packageName, userId)) {
15500                result = ArrayUtils.appendInt(result, userId);
15501            }
15502        }
15503        return result;
15504    }
15505
15506    @Override
15507    public boolean isPackageDeviceAdminOnAnyUser(String packageName) {
15508        return isPackageDeviceAdmin(packageName, UserHandle.USER_ALL);
15509    }
15510
15511    private boolean isPackageDeviceAdmin(String packageName, int userId) {
15512        IDevicePolicyManager dpm = IDevicePolicyManager.Stub.asInterface(
15513                ServiceManager.getService(Context.DEVICE_POLICY_SERVICE));
15514        try {
15515            if (dpm != null) {
15516                final ComponentName deviceOwnerComponentName = dpm.getDeviceOwnerComponent(
15517                        /* callingUserOnly =*/ false);
15518                final String deviceOwnerPackageName = deviceOwnerComponentName == null ? null
15519                        : deviceOwnerComponentName.getPackageName();
15520                // Does the package contains the device owner?
15521                // TODO Do we have to do it even if userId != UserHandle.USER_ALL?  Otherwise,
15522                // this check is probably not needed, since DO should be registered as a device
15523                // admin on some user too. (Original bug for this: b/17657954)
15524                if (packageName.equals(deviceOwnerPackageName)) {
15525                    return true;
15526                }
15527                // Does it contain a device admin for any user?
15528                int[] users;
15529                if (userId == UserHandle.USER_ALL) {
15530                    users = sUserManager.getUserIds();
15531                } else {
15532                    users = new int[]{userId};
15533                }
15534                for (int i = 0; i < users.length; ++i) {
15535                    if (dpm.packageHasActiveAdmins(packageName, users[i])) {
15536                        return true;
15537                    }
15538                }
15539            }
15540        } catch (RemoteException e) {
15541        }
15542        return false;
15543    }
15544
15545    private boolean shouldKeepUninstalledPackageLPr(String packageName) {
15546        return mKeepUninstalledPackages != null && mKeepUninstalledPackages.contains(packageName);
15547    }
15548
15549    /**
15550     *  This method is an internal method that could be get invoked either
15551     *  to delete an installed package or to clean up a failed installation.
15552     *  After deleting an installed package, a broadcast is sent to notify any
15553     *  listeners that the package has been removed. For cleaning up a failed
15554     *  installation, the broadcast is not necessary since the package's
15555     *  installation wouldn't have sent the initial broadcast either
15556     *  The key steps in deleting a package are
15557     *  deleting the package information in internal structures like mPackages,
15558     *  deleting the packages base directories through installd
15559     *  updating mSettings to reflect current status
15560     *  persisting settings for later use
15561     *  sending a broadcast if necessary
15562     */
15563    private int deletePackageX(String packageName, int userId, int deleteFlags) {
15564        final PackageRemovedInfo info = new PackageRemovedInfo();
15565        final boolean res;
15566
15567        final UserHandle removeForUser = (deleteFlags & PackageManager.DELETE_ALL_USERS) != 0
15568                ? UserHandle.ALL : new UserHandle(userId);
15569
15570        if (isPackageDeviceAdmin(packageName, removeForUser.getIdentifier())) {
15571            Slog.w(TAG, "Not removing package " + packageName + ": has active device admin");
15572            return PackageManager.DELETE_FAILED_DEVICE_POLICY_MANAGER;
15573        }
15574
15575        PackageSetting uninstalledPs = null;
15576
15577        // for the uninstall-updates case and restricted profiles, remember the per-
15578        // user handle installed state
15579        int[] allUsers;
15580        synchronized (mPackages) {
15581            uninstalledPs = mSettings.mPackages.get(packageName);
15582            if (uninstalledPs == null) {
15583                Slog.w(TAG, "Not removing non-existent package " + packageName);
15584                return PackageManager.DELETE_FAILED_INTERNAL_ERROR;
15585            }
15586            allUsers = sUserManager.getUserIds();
15587            info.origUsers = uninstalledPs.queryInstalledUsers(allUsers, true);
15588        }
15589
15590        synchronized (mInstallLock) {
15591            if (DEBUG_REMOVE) Slog.d(TAG, "deletePackageX: pkg=" + packageName + " user=" + userId);
15592            try (PackageFreezer freezer = freezePackageForDelete(packageName, deleteFlags,
15593                    "deletePackageX")) {
15594                res = deletePackageLIF(packageName, removeForUser, true, allUsers,
15595                        deleteFlags | REMOVE_CHATTY, info, true, null);
15596            }
15597            synchronized (mPackages) {
15598                if (res) {
15599                    mEphemeralApplicationRegistry.onPackageUninstalledLPw(uninstalledPs.pkg);
15600                }
15601            }
15602        }
15603
15604        if (res) {
15605            final boolean killApp = (deleteFlags & PackageManager.DELETE_DONT_KILL_APP) == 0;
15606            info.sendPackageRemovedBroadcasts(killApp);
15607            info.sendSystemPackageUpdatedBroadcasts();
15608            info.sendSystemPackageAppearedBroadcasts();
15609        }
15610        // Force a gc here.
15611        Runtime.getRuntime().gc();
15612        // Delete the resources here after sending the broadcast to let
15613        // other processes clean up before deleting resources.
15614        if (info.args != null) {
15615            synchronized (mInstallLock) {
15616                info.args.doPostDeleteLI(true);
15617            }
15618        }
15619
15620        return res ? PackageManager.DELETE_SUCCEEDED : PackageManager.DELETE_FAILED_INTERNAL_ERROR;
15621    }
15622
15623    class PackageRemovedInfo {
15624        String removedPackage;
15625        int uid = -1;
15626        int removedAppId = -1;
15627        int[] origUsers;
15628        int[] removedUsers = null;
15629        boolean isRemovedPackageSystemUpdate = false;
15630        boolean isUpdate;
15631        boolean dataRemoved;
15632        boolean removedForAllUsers;
15633        // Clean up resources deleted packages.
15634        InstallArgs args = null;
15635        ArrayMap<String, PackageRemovedInfo> removedChildPackages;
15636        ArrayMap<String, PackageInstalledInfo> appearedChildPackages;
15637
15638        void sendPackageRemovedBroadcasts(boolean killApp) {
15639            sendPackageRemovedBroadcastInternal(killApp);
15640            final int childCount = removedChildPackages != null ? removedChildPackages.size() : 0;
15641            for (int i = 0; i < childCount; i++) {
15642                PackageRemovedInfo childInfo = removedChildPackages.valueAt(i);
15643                childInfo.sendPackageRemovedBroadcastInternal(killApp);
15644            }
15645        }
15646
15647        void sendSystemPackageUpdatedBroadcasts() {
15648            if (isRemovedPackageSystemUpdate) {
15649                sendSystemPackageUpdatedBroadcastsInternal();
15650                final int childCount = (removedChildPackages != null)
15651                        ? removedChildPackages.size() : 0;
15652                for (int i = 0; i < childCount; i++) {
15653                    PackageRemovedInfo childInfo = removedChildPackages.valueAt(i);
15654                    if (childInfo.isRemovedPackageSystemUpdate) {
15655                        childInfo.sendSystemPackageUpdatedBroadcastsInternal();
15656                    }
15657                }
15658            }
15659        }
15660
15661        void sendSystemPackageAppearedBroadcasts() {
15662            final int packageCount = (appearedChildPackages != null)
15663                    ? appearedChildPackages.size() : 0;
15664            for (int i = 0; i < packageCount; i++) {
15665                PackageInstalledInfo installedInfo = appearedChildPackages.valueAt(i);
15666                for (int userId : installedInfo.newUsers) {
15667                    sendPackageAddedForUser(installedInfo.name, true,
15668                            UserHandle.getAppId(installedInfo.uid), userId);
15669                }
15670            }
15671        }
15672
15673        private void sendSystemPackageUpdatedBroadcastsInternal() {
15674            Bundle extras = new Bundle(2);
15675            extras.putInt(Intent.EXTRA_UID, removedAppId >= 0 ? removedAppId : uid);
15676            extras.putBoolean(Intent.EXTRA_REPLACING, true);
15677            sendPackageBroadcast(Intent.ACTION_PACKAGE_ADDED, removedPackage,
15678                    extras, 0, null, null, null);
15679            sendPackageBroadcast(Intent.ACTION_PACKAGE_REPLACED, removedPackage,
15680                    extras, 0, null, null, null);
15681            sendPackageBroadcast(Intent.ACTION_MY_PACKAGE_REPLACED, null,
15682                    null, 0, removedPackage, null, null);
15683        }
15684
15685        private void sendPackageRemovedBroadcastInternal(boolean killApp) {
15686            Bundle extras = new Bundle(2);
15687            extras.putInt(Intent.EXTRA_UID, removedAppId >= 0  ? removedAppId : uid);
15688            extras.putBoolean(Intent.EXTRA_DATA_REMOVED, dataRemoved);
15689            extras.putBoolean(Intent.EXTRA_DONT_KILL_APP, !killApp);
15690            if (isUpdate || isRemovedPackageSystemUpdate) {
15691                extras.putBoolean(Intent.EXTRA_REPLACING, true);
15692            }
15693            extras.putBoolean(Intent.EXTRA_REMOVED_FOR_ALL_USERS, removedForAllUsers);
15694            if (removedPackage != null) {
15695                sendPackageBroadcast(Intent.ACTION_PACKAGE_REMOVED, removedPackage,
15696                        extras, 0, null, null, removedUsers);
15697                if (dataRemoved && !isRemovedPackageSystemUpdate) {
15698                    sendPackageBroadcast(Intent.ACTION_PACKAGE_FULLY_REMOVED,
15699                            removedPackage, extras, 0, null, null, removedUsers);
15700                }
15701            }
15702            if (removedAppId >= 0) {
15703                sendPackageBroadcast(Intent.ACTION_UID_REMOVED, null, extras, 0, null, null,
15704                        removedUsers);
15705            }
15706        }
15707    }
15708
15709    /*
15710     * This method deletes the package from internal data structures. If the DONT_DELETE_DATA
15711     * flag is not set, the data directory is removed as well.
15712     * make sure this flag is set for partially installed apps. If not its meaningless to
15713     * delete a partially installed application.
15714     */
15715    private void removePackageDataLIF(PackageSetting ps, int[] allUserHandles,
15716            PackageRemovedInfo outInfo, int flags, boolean writeSettings) {
15717        String packageName = ps.name;
15718        if (DEBUG_REMOVE) Slog.d(TAG, "removePackageDataLI: " + ps);
15719        // Retrieve object to delete permissions for shared user later on
15720        final PackageParser.Package deletedPkg;
15721        final PackageSetting deletedPs;
15722        // reader
15723        synchronized (mPackages) {
15724            deletedPkg = mPackages.get(packageName);
15725            deletedPs = mSettings.mPackages.get(packageName);
15726            if (outInfo != null) {
15727                outInfo.removedPackage = packageName;
15728                outInfo.removedUsers = deletedPs != null
15729                        ? deletedPs.queryInstalledUsers(sUserManager.getUserIds(), true)
15730                        : null;
15731            }
15732        }
15733
15734        removePackageLI(ps, (flags & REMOVE_CHATTY) != 0);
15735
15736        if ((flags & PackageManager.DELETE_KEEP_DATA) == 0) {
15737            final PackageParser.Package resolvedPkg;
15738            if (deletedPkg != null) {
15739                resolvedPkg = deletedPkg;
15740            } else {
15741                // We don't have a parsed package when it lives on an ejected
15742                // adopted storage device, so fake something together
15743                resolvedPkg = new PackageParser.Package(ps.name);
15744                resolvedPkg.setVolumeUuid(ps.volumeUuid);
15745            }
15746            destroyAppDataLIF(resolvedPkg, UserHandle.USER_ALL,
15747                    StorageManager.FLAG_STORAGE_DE | StorageManager.FLAG_STORAGE_CE);
15748            destroyAppProfilesLIF(resolvedPkg, UserHandle.USER_ALL);
15749            if (outInfo != null) {
15750                outInfo.dataRemoved = true;
15751            }
15752            schedulePackageCleaning(packageName, UserHandle.USER_ALL, true);
15753        }
15754
15755        // writer
15756        synchronized (mPackages) {
15757            if (deletedPs != null) {
15758                if ((flags&PackageManager.DELETE_KEEP_DATA) == 0) {
15759                    clearIntentFilterVerificationsLPw(deletedPs.name, UserHandle.USER_ALL);
15760                    clearDefaultBrowserIfNeeded(packageName);
15761                    if (outInfo != null) {
15762                        mSettings.mKeySetManagerService.removeAppKeySetDataLPw(packageName);
15763                        outInfo.removedAppId = mSettings.removePackageLPw(packageName);
15764                    }
15765                    updatePermissionsLPw(deletedPs.name, null, 0);
15766                    if (deletedPs.sharedUser != null) {
15767                        // Remove permissions associated with package. Since runtime
15768                        // permissions are per user we have to kill the removed package
15769                        // or packages running under the shared user of the removed
15770                        // package if revoking the permissions requested only by the removed
15771                        // package is successful and this causes a change in gids.
15772                        for (int userId : UserManagerService.getInstance().getUserIds()) {
15773                            final int userIdToKill = mSettings.updateSharedUserPermsLPw(deletedPs,
15774                                    userId);
15775                            if (userIdToKill == UserHandle.USER_ALL
15776                                    || userIdToKill >= UserHandle.USER_SYSTEM) {
15777                                // If gids changed for this user, kill all affected packages.
15778                                mHandler.post(new Runnable() {
15779                                    @Override
15780                                    public void run() {
15781                                        // This has to happen with no lock held.
15782                                        killApplication(deletedPs.name, deletedPs.appId,
15783                                                KILL_APP_REASON_GIDS_CHANGED);
15784                                    }
15785                                });
15786                                break;
15787                            }
15788                        }
15789                    }
15790                    clearPackagePreferredActivitiesLPw(deletedPs.name, UserHandle.USER_ALL);
15791                }
15792                // make sure to preserve per-user disabled state if this removal was just
15793                // a downgrade of a system app to the factory package
15794                if (allUserHandles != null && outInfo != null && outInfo.origUsers != null) {
15795                    if (DEBUG_REMOVE) {
15796                        Slog.d(TAG, "Propagating install state across downgrade");
15797                    }
15798                    for (int userId : allUserHandles) {
15799                        final boolean installed = ArrayUtils.contains(outInfo.origUsers, userId);
15800                        if (DEBUG_REMOVE) {
15801                            Slog.d(TAG, "    user " + userId + " => " + installed);
15802                        }
15803                        ps.setInstalled(installed, userId);
15804                    }
15805                }
15806            }
15807            // can downgrade to reader
15808            if (writeSettings) {
15809                // Save settings now
15810                mSettings.writeLPr();
15811            }
15812        }
15813        if (outInfo != null) {
15814            // A user ID was deleted here. Go through all users and remove it
15815            // from KeyStore.
15816            removeKeystoreDataIfNeeded(UserHandle.USER_ALL, outInfo.removedAppId);
15817        }
15818    }
15819
15820    static boolean locationIsPrivileged(File path) {
15821        try {
15822            final String privilegedAppDir = new File(Environment.getRootDirectory(), "priv-app")
15823                    .getCanonicalPath();
15824            return path.getCanonicalPath().startsWith(privilegedAppDir);
15825        } catch (IOException e) {
15826            Slog.e(TAG, "Unable to access code path " + path);
15827        }
15828        return false;
15829    }
15830
15831    /*
15832     * Tries to delete system package.
15833     */
15834    private boolean deleteSystemPackageLIF(PackageParser.Package deletedPkg,
15835            PackageSetting deletedPs, int[] allUserHandles, int flags, PackageRemovedInfo outInfo,
15836            boolean writeSettings) {
15837        if (deletedPs.parentPackageName != null) {
15838            Slog.w(TAG, "Attempt to delete child system package " + deletedPkg.packageName);
15839            return false;
15840        }
15841
15842        final boolean applyUserRestrictions
15843                = (allUserHandles != null) && (outInfo.origUsers != null);
15844        final PackageSetting disabledPs;
15845        // Confirm if the system package has been updated
15846        // An updated system app can be deleted. This will also have to restore
15847        // the system pkg from system partition
15848        // reader
15849        synchronized (mPackages) {
15850            disabledPs = mSettings.getDisabledSystemPkgLPr(deletedPs.name);
15851        }
15852
15853        if (DEBUG_REMOVE) Slog.d(TAG, "deleteSystemPackageLI: newPs=" + deletedPkg.packageName
15854                + " disabledPs=" + disabledPs);
15855
15856        if (disabledPs == null) {
15857            Slog.w(TAG, "Attempt to delete unknown system package "+ deletedPkg.packageName);
15858            return false;
15859        } else if (DEBUG_REMOVE) {
15860            Slog.d(TAG, "Deleting system pkg from data partition");
15861        }
15862
15863        if (DEBUG_REMOVE) {
15864            if (applyUserRestrictions) {
15865                Slog.d(TAG, "Remembering install states:");
15866                for (int userId : allUserHandles) {
15867                    final boolean finstalled = ArrayUtils.contains(outInfo.origUsers, userId);
15868                    Slog.d(TAG, "   u=" + userId + " inst=" + finstalled);
15869                }
15870            }
15871        }
15872
15873        // Delete the updated package
15874        outInfo.isRemovedPackageSystemUpdate = true;
15875        if (outInfo.removedChildPackages != null) {
15876            final int childCount = (deletedPs.childPackageNames != null)
15877                    ? deletedPs.childPackageNames.size() : 0;
15878            for (int i = 0; i < childCount; i++) {
15879                String childPackageName = deletedPs.childPackageNames.get(i);
15880                if (disabledPs.childPackageNames != null && disabledPs.childPackageNames
15881                        .contains(childPackageName)) {
15882                    PackageRemovedInfo childInfo = outInfo.removedChildPackages.get(
15883                            childPackageName);
15884                    if (childInfo != null) {
15885                        childInfo.isRemovedPackageSystemUpdate = true;
15886                    }
15887                }
15888            }
15889        }
15890
15891        if (disabledPs.versionCode < deletedPs.versionCode) {
15892            // Delete data for downgrades
15893            flags &= ~PackageManager.DELETE_KEEP_DATA;
15894        } else {
15895            // Preserve data by setting flag
15896            flags |= PackageManager.DELETE_KEEP_DATA;
15897        }
15898
15899        boolean ret = deleteInstalledPackageLIF(deletedPs, true, flags, allUserHandles,
15900                outInfo, writeSettings, disabledPs.pkg);
15901        if (!ret) {
15902            return false;
15903        }
15904
15905        // writer
15906        synchronized (mPackages) {
15907            // Reinstate the old system package
15908            enableSystemPackageLPw(disabledPs.pkg);
15909            // Remove any native libraries from the upgraded package.
15910            removeNativeBinariesLI(deletedPs);
15911        }
15912
15913        // Install the system package
15914        if (DEBUG_REMOVE) Slog.d(TAG, "Re-installing system package: " + disabledPs);
15915        int parseFlags = mDefParseFlags
15916                | PackageParser.PARSE_MUST_BE_APK
15917                | PackageParser.PARSE_IS_SYSTEM
15918                | PackageParser.PARSE_IS_SYSTEM_DIR;
15919        if (locationIsPrivileged(disabledPs.codePath)) {
15920            parseFlags |= PackageParser.PARSE_IS_PRIVILEGED;
15921        }
15922
15923        final PackageParser.Package newPkg;
15924        try {
15925            newPkg = scanPackageTracedLI(disabledPs.codePath, parseFlags, SCAN_NO_PATHS, 0, null);
15926        } catch (PackageManagerException e) {
15927            Slog.w(TAG, "Failed to restore system package:" + deletedPkg.packageName + ": "
15928                    + e.getMessage());
15929            return false;
15930        }
15931
15932        prepareAppDataAfterInstallLIF(newPkg);
15933
15934        // writer
15935        synchronized (mPackages) {
15936            PackageSetting ps = mSettings.mPackages.get(newPkg.packageName);
15937
15938            // Propagate the permissions state as we do not want to drop on the floor
15939            // runtime permissions. The update permissions method below will take
15940            // care of removing obsolete permissions and grant install permissions.
15941            ps.getPermissionsState().copyFrom(deletedPs.getPermissionsState());
15942            updatePermissionsLPw(newPkg.packageName, newPkg,
15943                    UPDATE_PERMISSIONS_ALL | UPDATE_PERMISSIONS_REPLACE_PKG);
15944
15945            if (applyUserRestrictions) {
15946                if (DEBUG_REMOVE) {
15947                    Slog.d(TAG, "Propagating install state across reinstall");
15948                }
15949                for (int userId : allUserHandles) {
15950                    final boolean installed = ArrayUtils.contains(outInfo.origUsers, userId);
15951                    if (DEBUG_REMOVE) {
15952                        Slog.d(TAG, "    user " + userId + " => " + installed);
15953                    }
15954                    ps.setInstalled(installed, userId);
15955
15956                    mSettings.writeRuntimePermissionsForUserLPr(userId, false);
15957                }
15958                // Regardless of writeSettings we need to ensure that this restriction
15959                // state propagation is persisted
15960                mSettings.writeAllUsersPackageRestrictionsLPr();
15961            }
15962            // can downgrade to reader here
15963            if (writeSettings) {
15964                mSettings.writeLPr();
15965            }
15966        }
15967        return true;
15968    }
15969
15970    private boolean deleteInstalledPackageLIF(PackageSetting ps,
15971            boolean deleteCodeAndResources, int flags, int[] allUserHandles,
15972            PackageRemovedInfo outInfo, boolean writeSettings,
15973            PackageParser.Package replacingPackage) {
15974        synchronized (mPackages) {
15975            if (outInfo != null) {
15976                outInfo.uid = ps.appId;
15977            }
15978
15979            if (outInfo != null && outInfo.removedChildPackages != null) {
15980                final int childCount = (ps.childPackageNames != null)
15981                        ? ps.childPackageNames.size() : 0;
15982                for (int i = 0; i < childCount; i++) {
15983                    String childPackageName = ps.childPackageNames.get(i);
15984                    PackageSetting childPs = mSettings.mPackages.get(childPackageName);
15985                    if (childPs == null) {
15986                        return false;
15987                    }
15988                    PackageRemovedInfo childInfo = outInfo.removedChildPackages.get(
15989                            childPackageName);
15990                    if (childInfo != null) {
15991                        childInfo.uid = childPs.appId;
15992                    }
15993                }
15994            }
15995        }
15996
15997        // Delete package data from internal structures and also remove data if flag is set
15998        removePackageDataLIF(ps, allUserHandles, outInfo, flags, writeSettings);
15999
16000        // Delete the child packages data
16001        final int childCount = (ps.childPackageNames != null) ? ps.childPackageNames.size() : 0;
16002        for (int i = 0; i < childCount; i++) {
16003            PackageSetting childPs;
16004            synchronized (mPackages) {
16005                childPs = mSettings.peekPackageLPr(ps.childPackageNames.get(i));
16006            }
16007            if (childPs != null) {
16008                PackageRemovedInfo childOutInfo = (outInfo != null
16009                        && outInfo.removedChildPackages != null)
16010                        ? outInfo.removedChildPackages.get(childPs.name) : null;
16011                final int deleteFlags = (flags & DELETE_KEEP_DATA) != 0
16012                        && (replacingPackage != null
16013                        && !replacingPackage.hasChildPackage(childPs.name))
16014                        ? flags & ~DELETE_KEEP_DATA : flags;
16015                removePackageDataLIF(childPs, allUserHandles, childOutInfo,
16016                        deleteFlags, writeSettings);
16017            }
16018        }
16019
16020        // Delete application code and resources only for parent packages
16021        if (ps.parentPackageName == null) {
16022            if (deleteCodeAndResources && (outInfo != null)) {
16023                outInfo.args = createInstallArgsForExisting(packageFlagsToInstallFlags(ps),
16024                        ps.codePathString, ps.resourcePathString, getAppDexInstructionSets(ps));
16025                if (DEBUG_SD_INSTALL) Slog.i(TAG, "args=" + outInfo.args);
16026            }
16027        }
16028
16029        return true;
16030    }
16031
16032    @Override
16033    public boolean setBlockUninstallForUser(String packageName, boolean blockUninstall,
16034            int userId) {
16035        mContext.enforceCallingOrSelfPermission(
16036                android.Manifest.permission.DELETE_PACKAGES, null);
16037        synchronized (mPackages) {
16038            PackageSetting ps = mSettings.mPackages.get(packageName);
16039            if (ps == null) {
16040                Log.i(TAG, "Package doesn't exist in set block uninstall " + packageName);
16041                return false;
16042            }
16043            if (!ps.getInstalled(userId)) {
16044                // Can't block uninstall for an app that is not installed or enabled.
16045                Log.i(TAG, "Package not installed in set block uninstall " + packageName);
16046                return false;
16047            }
16048            ps.setBlockUninstall(blockUninstall, userId);
16049            mSettings.writePackageRestrictionsLPr(userId);
16050        }
16051        return true;
16052    }
16053
16054    @Override
16055    public boolean getBlockUninstallForUser(String packageName, int userId) {
16056        synchronized (mPackages) {
16057            PackageSetting ps = mSettings.mPackages.get(packageName);
16058            if (ps == null) {
16059                Log.i(TAG, "Package doesn't exist in get block uninstall " + packageName);
16060                return false;
16061            }
16062            return ps.getBlockUninstall(userId);
16063        }
16064    }
16065
16066    @Override
16067    public boolean setRequiredForSystemUser(String packageName, boolean systemUserApp) {
16068        int callingUid = Binder.getCallingUid();
16069        if (callingUid != Process.SYSTEM_UID && callingUid != Process.ROOT_UID) {
16070            throw new SecurityException(
16071                    "setRequiredForSystemUser can only be run by the system or root");
16072        }
16073        synchronized (mPackages) {
16074            PackageSetting ps = mSettings.mPackages.get(packageName);
16075            if (ps == null) {
16076                Log.w(TAG, "Package doesn't exist: " + packageName);
16077                return false;
16078            }
16079            if (systemUserApp) {
16080                ps.pkgPrivateFlags |= ApplicationInfo.PRIVATE_FLAG_REQUIRED_FOR_SYSTEM_USER;
16081            } else {
16082                ps.pkgPrivateFlags &= ~ApplicationInfo.PRIVATE_FLAG_REQUIRED_FOR_SYSTEM_USER;
16083            }
16084            mSettings.writeLPr();
16085        }
16086        return true;
16087    }
16088
16089    /*
16090     * This method handles package deletion in general
16091     */
16092    private boolean deletePackageLIF(String packageName, UserHandle user,
16093            boolean deleteCodeAndResources, int[] allUserHandles, int flags,
16094            PackageRemovedInfo outInfo, boolean writeSettings,
16095            PackageParser.Package replacingPackage) {
16096        if (packageName == null) {
16097            Slog.w(TAG, "Attempt to delete null packageName.");
16098            return false;
16099        }
16100
16101        if (DEBUG_REMOVE) Slog.d(TAG, "deletePackageLI: " + packageName + " user " + user);
16102
16103        PackageSetting ps;
16104
16105        synchronized (mPackages) {
16106            ps = mSettings.mPackages.get(packageName);
16107            if (ps == null) {
16108                Slog.w(TAG, "Package named '" + packageName + "' doesn't exist.");
16109                return false;
16110            }
16111
16112            if (ps.parentPackageName != null && (!isSystemApp(ps)
16113                    || (flags & PackageManager.DELETE_SYSTEM_APP) != 0)) {
16114                if (DEBUG_REMOVE) {
16115                    Slog.d(TAG, "Uninstalled child package:" + packageName + " for user:"
16116                            + ((user == null) ? UserHandle.USER_ALL : user));
16117                }
16118                final int removedUserId = (user != null) ? user.getIdentifier()
16119                        : UserHandle.USER_ALL;
16120                if (!clearPackageStateForUserLIF(ps, removedUserId, outInfo)) {
16121                    return false;
16122                }
16123                markPackageUninstalledForUserLPw(ps, user);
16124                scheduleWritePackageRestrictionsLocked(user);
16125                return true;
16126            }
16127        }
16128
16129        if (((!isSystemApp(ps) || (flags&PackageManager.DELETE_SYSTEM_APP) != 0) && user != null
16130                && user.getIdentifier() != UserHandle.USER_ALL)) {
16131            // The caller is asking that the package only be deleted for a single
16132            // user.  To do this, we just mark its uninstalled state and delete
16133            // its data. If this is a system app, we only allow this to happen if
16134            // they have set the special DELETE_SYSTEM_APP which requests different
16135            // semantics than normal for uninstalling system apps.
16136            markPackageUninstalledForUserLPw(ps, user);
16137
16138            if (!isSystemApp(ps)) {
16139                // Do not uninstall the APK if an app should be cached
16140                boolean keepUninstalledPackage = shouldKeepUninstalledPackageLPr(packageName);
16141                if (ps.isAnyInstalled(sUserManager.getUserIds()) || keepUninstalledPackage) {
16142                    // Other user still have this package installed, so all
16143                    // we need to do is clear this user's data and save that
16144                    // it is uninstalled.
16145                    if (DEBUG_REMOVE) Slog.d(TAG, "Still installed by other users");
16146                    if (!clearPackageStateForUserLIF(ps, user.getIdentifier(), outInfo)) {
16147                        return false;
16148                    }
16149                    scheduleWritePackageRestrictionsLocked(user);
16150                    return true;
16151                } else {
16152                    // We need to set it back to 'installed' so the uninstall
16153                    // broadcasts will be sent correctly.
16154                    if (DEBUG_REMOVE) Slog.d(TAG, "Not installed by other users, full delete");
16155                    ps.setInstalled(true, user.getIdentifier());
16156                }
16157            } else {
16158                // This is a system app, so we assume that the
16159                // other users still have this package installed, so all
16160                // we need to do is clear this user's data and save that
16161                // it is uninstalled.
16162                if (DEBUG_REMOVE) Slog.d(TAG, "Deleting system app");
16163                if (!clearPackageStateForUserLIF(ps, user.getIdentifier(), outInfo)) {
16164                    return false;
16165                }
16166                scheduleWritePackageRestrictionsLocked(user);
16167                return true;
16168            }
16169        }
16170
16171        // If we are deleting a composite package for all users, keep track
16172        // of result for each child.
16173        if (ps.childPackageNames != null && outInfo != null) {
16174            synchronized (mPackages) {
16175                final int childCount = ps.childPackageNames.size();
16176                outInfo.removedChildPackages = new ArrayMap<>(childCount);
16177                for (int i = 0; i < childCount; i++) {
16178                    String childPackageName = ps.childPackageNames.get(i);
16179                    PackageRemovedInfo childInfo = new PackageRemovedInfo();
16180                    childInfo.removedPackage = childPackageName;
16181                    outInfo.removedChildPackages.put(childPackageName, childInfo);
16182                    PackageSetting childPs = mSettings.peekPackageLPr(childPackageName);
16183                    if (childPs != null) {
16184                        childInfo.origUsers = childPs.queryInstalledUsers(allUserHandles, true);
16185                    }
16186                }
16187            }
16188        }
16189
16190        boolean ret = false;
16191        if (isSystemApp(ps)) {
16192            if (DEBUG_REMOVE) Slog.d(TAG, "Removing system package: " + ps.name);
16193            // When an updated system application is deleted we delete the existing resources
16194            // as well and fall back to existing code in system partition
16195            ret = deleteSystemPackageLIF(ps.pkg, ps, allUserHandles, flags, outInfo, writeSettings);
16196        } else {
16197            if (DEBUG_REMOVE) Slog.d(TAG, "Removing non-system package: " + ps.name);
16198            ret = deleteInstalledPackageLIF(ps, deleteCodeAndResources, flags, allUserHandles,
16199                    outInfo, writeSettings, replacingPackage);
16200        }
16201
16202        // Take a note whether we deleted the package for all users
16203        if (outInfo != null) {
16204            outInfo.removedForAllUsers = mPackages.get(ps.name) == null;
16205            if (outInfo.removedChildPackages != null) {
16206                synchronized (mPackages) {
16207                    final int childCount = outInfo.removedChildPackages.size();
16208                    for (int i = 0; i < childCount; i++) {
16209                        PackageRemovedInfo childInfo = outInfo.removedChildPackages.valueAt(i);
16210                        if (childInfo != null) {
16211                            childInfo.removedForAllUsers = mPackages.get(
16212                                    childInfo.removedPackage) == null;
16213                        }
16214                    }
16215                }
16216            }
16217            // If we uninstalled an update to a system app there may be some
16218            // child packages that appeared as they are declared in the system
16219            // app but were not declared in the update.
16220            if (isSystemApp(ps)) {
16221                synchronized (mPackages) {
16222                    PackageSetting updatedPs = mSettings.peekPackageLPr(ps.name);
16223                    final int childCount = (updatedPs.childPackageNames != null)
16224                            ? updatedPs.childPackageNames.size() : 0;
16225                    for (int i = 0; i < childCount; i++) {
16226                        String childPackageName = updatedPs.childPackageNames.get(i);
16227                        if (outInfo.removedChildPackages == null
16228                                || outInfo.removedChildPackages.indexOfKey(childPackageName) < 0) {
16229                            PackageSetting childPs = mSettings.peekPackageLPr(childPackageName);
16230                            if (childPs == null) {
16231                                continue;
16232                            }
16233                            PackageInstalledInfo installRes = new PackageInstalledInfo();
16234                            installRes.name = childPackageName;
16235                            installRes.newUsers = childPs.queryInstalledUsers(allUserHandles, true);
16236                            installRes.pkg = mPackages.get(childPackageName);
16237                            installRes.uid = childPs.pkg.applicationInfo.uid;
16238                            if (outInfo.appearedChildPackages == null) {
16239                                outInfo.appearedChildPackages = new ArrayMap<>();
16240                            }
16241                            outInfo.appearedChildPackages.put(childPackageName, installRes);
16242                        }
16243                    }
16244                }
16245            }
16246        }
16247
16248        return ret;
16249    }
16250
16251    private void markPackageUninstalledForUserLPw(PackageSetting ps, UserHandle user) {
16252        final int[] userIds = (user == null || user.getIdentifier() == UserHandle.USER_ALL)
16253                ? sUserManager.getUserIds() : new int[] {user.getIdentifier()};
16254        for (int nextUserId : userIds) {
16255            if (DEBUG_REMOVE) {
16256                Slog.d(TAG, "Marking package:" + ps.name + " uninstalled for user:" + nextUserId);
16257            }
16258            ps.setUserState(nextUserId, 0, COMPONENT_ENABLED_STATE_DEFAULT,
16259                    false /*installed*/, true /*stopped*/, true /*notLaunched*/,
16260                    false /*hidden*/, false /*suspended*/, null, null, null,
16261                    false /*blockUninstall*/,
16262                    ps.readUserState(nextUserId).domainVerificationStatus, 0);
16263        }
16264    }
16265
16266    private boolean clearPackageStateForUserLIF(PackageSetting ps, int userId,
16267            PackageRemovedInfo outInfo) {
16268        final PackageParser.Package pkg;
16269        synchronized (mPackages) {
16270            pkg = mPackages.get(ps.name);
16271        }
16272
16273        final int[] userIds = (userId == UserHandle.USER_ALL) ? sUserManager.getUserIds()
16274                : new int[] {userId};
16275        for (int nextUserId : userIds) {
16276            if (DEBUG_REMOVE) {
16277                Slog.d(TAG, "Updating package:" + ps.name + " install state for user:"
16278                        + nextUserId);
16279            }
16280
16281            destroyAppDataLIF(pkg, userId,
16282                    StorageManager.FLAG_STORAGE_DE | StorageManager.FLAG_STORAGE_CE);
16283            destroyAppProfilesLIF(pkg, userId);
16284            removeKeystoreDataIfNeeded(nextUserId, ps.appId);
16285            schedulePackageCleaning(ps.name, nextUserId, false);
16286            synchronized (mPackages) {
16287                if (clearPackagePreferredActivitiesLPw(ps.name, nextUserId)) {
16288                    scheduleWritePackageRestrictionsLocked(nextUserId);
16289                }
16290                resetUserChangesToRuntimePermissionsAndFlagsLPw(ps, nextUserId);
16291            }
16292        }
16293
16294        if (outInfo != null) {
16295            outInfo.removedPackage = ps.name;
16296            outInfo.removedAppId = ps.appId;
16297            outInfo.removedUsers = userIds;
16298        }
16299
16300        return true;
16301    }
16302
16303    private final class ClearStorageConnection implements ServiceConnection {
16304        IMediaContainerService mContainerService;
16305
16306        @Override
16307        public void onServiceConnected(ComponentName name, IBinder service) {
16308            synchronized (this) {
16309                mContainerService = IMediaContainerService.Stub.asInterface(service);
16310                notifyAll();
16311            }
16312        }
16313
16314        @Override
16315        public void onServiceDisconnected(ComponentName name) {
16316        }
16317    }
16318
16319    private void clearExternalStorageDataSync(String packageName, int userId, boolean allData) {
16320        if (DEFAULT_CONTAINER_PACKAGE.equals(packageName)) return;
16321
16322        final boolean mounted;
16323        if (Environment.isExternalStorageEmulated()) {
16324            mounted = true;
16325        } else {
16326            final String status = Environment.getExternalStorageState();
16327
16328            mounted = status.equals(Environment.MEDIA_MOUNTED)
16329                    || status.equals(Environment.MEDIA_MOUNTED_READ_ONLY);
16330        }
16331
16332        if (!mounted) {
16333            return;
16334        }
16335
16336        final Intent containerIntent = new Intent().setComponent(DEFAULT_CONTAINER_COMPONENT);
16337        int[] users;
16338        if (userId == UserHandle.USER_ALL) {
16339            users = sUserManager.getUserIds();
16340        } else {
16341            users = new int[] { userId };
16342        }
16343        final ClearStorageConnection conn = new ClearStorageConnection();
16344        if (mContext.bindServiceAsUser(
16345                containerIntent, conn, Context.BIND_AUTO_CREATE, UserHandle.SYSTEM)) {
16346            try {
16347                for (int curUser : users) {
16348                    long timeout = SystemClock.uptimeMillis() + 5000;
16349                    synchronized (conn) {
16350                        long now;
16351                        while (conn.mContainerService == null &&
16352                                (now = SystemClock.uptimeMillis()) < timeout) {
16353                            try {
16354                                conn.wait(timeout - now);
16355                            } catch (InterruptedException e) {
16356                            }
16357                        }
16358                    }
16359                    if (conn.mContainerService == null) {
16360                        return;
16361                    }
16362
16363                    final UserEnvironment userEnv = new UserEnvironment(curUser);
16364                    clearDirectory(conn.mContainerService,
16365                            userEnv.buildExternalStorageAppCacheDirs(packageName));
16366                    if (allData) {
16367                        clearDirectory(conn.mContainerService,
16368                                userEnv.buildExternalStorageAppDataDirs(packageName));
16369                        clearDirectory(conn.mContainerService,
16370                                userEnv.buildExternalStorageAppMediaDirs(packageName));
16371                    }
16372                }
16373            } finally {
16374                mContext.unbindService(conn);
16375            }
16376        }
16377    }
16378
16379    @Override
16380    public void clearApplicationProfileData(String packageName) {
16381        enforceSystemOrRoot("Only the system can clear all profile data");
16382
16383        final PackageParser.Package pkg;
16384        synchronized (mPackages) {
16385            pkg = mPackages.get(packageName);
16386        }
16387
16388        try (PackageFreezer freezer = freezePackage(packageName, "clearApplicationProfileData")) {
16389            synchronized (mInstallLock) {
16390                clearAppProfilesLIF(pkg, UserHandle.USER_ALL);
16391                destroyAppReferenceProfileLeafLIF(pkg, UserHandle.USER_ALL,
16392                        true /* removeBaseMarker */);
16393            }
16394        }
16395    }
16396
16397    @Override
16398    public void clearApplicationUserData(final String packageName,
16399            final IPackageDataObserver observer, final int userId) {
16400        mContext.enforceCallingOrSelfPermission(
16401                android.Manifest.permission.CLEAR_APP_USER_DATA, null);
16402
16403        enforceCrossUserPermission(Binder.getCallingUid(), userId,
16404                true /* requireFullPermission */, false /* checkShell */, "clear application data");
16405
16406        if (mProtectedPackages.canPackageBeWiped(userId, packageName)) {
16407            throw new SecurityException("Cannot clear data for a device owner or a profile owner");
16408        }
16409        // Queue up an async operation since the package deletion may take a little while.
16410        mHandler.post(new Runnable() {
16411            public void run() {
16412                mHandler.removeCallbacks(this);
16413                final boolean succeeded;
16414                try (PackageFreezer freezer = freezePackage(packageName,
16415                        "clearApplicationUserData")) {
16416                    synchronized (mInstallLock) {
16417                        succeeded = clearApplicationUserDataLIF(packageName, userId);
16418                    }
16419                    clearExternalStorageDataSync(packageName, userId, true);
16420                }
16421                if (succeeded) {
16422                    // invoke DeviceStorageMonitor's update method to clear any notifications
16423                    DeviceStorageMonitorInternal dsm = LocalServices
16424                            .getService(DeviceStorageMonitorInternal.class);
16425                    if (dsm != null) {
16426                        dsm.checkMemory();
16427                    }
16428                }
16429                if(observer != null) {
16430                    try {
16431                        observer.onRemoveCompleted(packageName, succeeded);
16432                    } catch (RemoteException e) {
16433                        Log.i(TAG, "Observer no longer exists.");
16434                    }
16435                } //end if observer
16436            } //end run
16437        });
16438    }
16439
16440    private boolean clearApplicationUserDataLIF(String packageName, int userId) {
16441        if (packageName == null) {
16442            Slog.w(TAG, "Attempt to delete null packageName.");
16443            return false;
16444        }
16445
16446        // Try finding details about the requested package
16447        PackageParser.Package pkg;
16448        synchronized (mPackages) {
16449            pkg = mPackages.get(packageName);
16450            if (pkg == null) {
16451                final PackageSetting ps = mSettings.mPackages.get(packageName);
16452                if (ps != null) {
16453                    pkg = ps.pkg;
16454                }
16455            }
16456
16457            if (pkg == null) {
16458                Slog.w(TAG, "Package named '" + packageName + "' doesn't exist.");
16459                return false;
16460            }
16461
16462            PackageSetting ps = (PackageSetting) pkg.mExtras;
16463            resetUserChangesToRuntimePermissionsAndFlagsLPw(ps, userId);
16464        }
16465
16466        clearAppDataLIF(pkg, userId,
16467                StorageManager.FLAG_STORAGE_DE | StorageManager.FLAG_STORAGE_CE);
16468
16469        final int appId = UserHandle.getAppId(pkg.applicationInfo.uid);
16470        removeKeystoreDataIfNeeded(userId, appId);
16471
16472        UserManagerInternal umInternal = getUserManagerInternal();
16473        final int flags;
16474        if (umInternal.isUserUnlockingOrUnlocked(userId)) {
16475            flags = StorageManager.FLAG_STORAGE_DE | StorageManager.FLAG_STORAGE_CE;
16476        } else if (umInternal.isUserRunning(userId)) {
16477            flags = StorageManager.FLAG_STORAGE_DE;
16478        } else {
16479            flags = 0;
16480        }
16481        prepareAppDataContentsLIF(pkg, userId, flags);
16482
16483        return true;
16484    }
16485
16486    /**
16487     * Reverts user permission state changes (permissions and flags) in
16488     * all packages for a given user.
16489     *
16490     * @param userId The device user for which to do a reset.
16491     */
16492    private void resetUserChangesToRuntimePermissionsAndFlagsLPw(int userId) {
16493        final int packageCount = mPackages.size();
16494        for (int i = 0; i < packageCount; i++) {
16495            PackageParser.Package pkg = mPackages.valueAt(i);
16496            PackageSetting ps = (PackageSetting) pkg.mExtras;
16497            resetUserChangesToRuntimePermissionsAndFlagsLPw(ps, userId);
16498        }
16499    }
16500
16501    private void resetNetworkPolicies(int userId) {
16502        LocalServices.getService(NetworkPolicyManagerInternal.class).resetUserState(userId);
16503    }
16504
16505    /**
16506     * Reverts user permission state changes (permissions and flags).
16507     *
16508     * @param ps The package for which to reset.
16509     * @param userId The device user for which to do a reset.
16510     */
16511    private void resetUserChangesToRuntimePermissionsAndFlagsLPw(
16512            final PackageSetting ps, final int userId) {
16513        if (ps.pkg == null) {
16514            return;
16515        }
16516
16517        // These are flags that can change base on user actions.
16518        final int userSettableMask = FLAG_PERMISSION_USER_SET
16519                | FLAG_PERMISSION_USER_FIXED
16520                | FLAG_PERMISSION_REVOKE_ON_UPGRADE
16521                | FLAG_PERMISSION_REVIEW_REQUIRED;
16522
16523        final int policyOrSystemFlags = FLAG_PERMISSION_SYSTEM_FIXED
16524                | FLAG_PERMISSION_POLICY_FIXED;
16525
16526        boolean writeInstallPermissions = false;
16527        boolean writeRuntimePermissions = false;
16528
16529        final int permissionCount = ps.pkg.requestedPermissions.size();
16530        for (int i = 0; i < permissionCount; i++) {
16531            String permission = ps.pkg.requestedPermissions.get(i);
16532
16533            BasePermission bp = mSettings.mPermissions.get(permission);
16534            if (bp == null) {
16535                continue;
16536            }
16537
16538            // If shared user we just reset the state to which only this app contributed.
16539            if (ps.sharedUser != null) {
16540                boolean used = false;
16541                final int packageCount = ps.sharedUser.packages.size();
16542                for (int j = 0; j < packageCount; j++) {
16543                    PackageSetting pkg = ps.sharedUser.packages.valueAt(j);
16544                    if (pkg.pkg != null && !pkg.pkg.packageName.equals(ps.pkg.packageName)
16545                            && pkg.pkg.requestedPermissions.contains(permission)) {
16546                        used = true;
16547                        break;
16548                    }
16549                }
16550                if (used) {
16551                    continue;
16552                }
16553            }
16554
16555            PermissionsState permissionsState = ps.getPermissionsState();
16556
16557            final int oldFlags = permissionsState.getPermissionFlags(bp.name, userId);
16558
16559            // Always clear the user settable flags.
16560            final boolean hasInstallState = permissionsState.getInstallPermissionState(
16561                    bp.name) != null;
16562            // If permission review is enabled and this is a legacy app, mark the
16563            // permission as requiring a review as this is the initial state.
16564            int flags = 0;
16565            if (Build.PERMISSIONS_REVIEW_REQUIRED
16566                    && ps.pkg.applicationInfo.targetSdkVersion < Build.VERSION_CODES.M) {
16567                flags |= FLAG_PERMISSION_REVIEW_REQUIRED;
16568            }
16569            if (permissionsState.updatePermissionFlags(bp, userId, userSettableMask, flags)) {
16570                if (hasInstallState) {
16571                    writeInstallPermissions = true;
16572                } else {
16573                    writeRuntimePermissions = true;
16574                }
16575            }
16576
16577            // Below is only runtime permission handling.
16578            if (!bp.isRuntime()) {
16579                continue;
16580            }
16581
16582            // Never clobber system or policy.
16583            if ((oldFlags & policyOrSystemFlags) != 0) {
16584                continue;
16585            }
16586
16587            // If this permission was granted by default, make sure it is.
16588            if ((oldFlags & FLAG_PERMISSION_GRANTED_BY_DEFAULT) != 0) {
16589                if (permissionsState.grantRuntimePermission(bp, userId)
16590                        != PERMISSION_OPERATION_FAILURE) {
16591                    writeRuntimePermissions = true;
16592                }
16593            // If permission review is enabled the permissions for a legacy apps
16594            // are represented as constantly granted runtime ones, so don't revoke.
16595            } else if ((flags & FLAG_PERMISSION_REVIEW_REQUIRED) == 0) {
16596                // Otherwise, reset the permission.
16597                final int revokeResult = permissionsState.revokeRuntimePermission(bp, userId);
16598                switch (revokeResult) {
16599                    case PERMISSION_OPERATION_SUCCESS:
16600                    case PERMISSION_OPERATION_SUCCESS_GIDS_CHANGED: {
16601                        writeRuntimePermissions = true;
16602                        final int appId = ps.appId;
16603                        mHandler.post(new Runnable() {
16604                            @Override
16605                            public void run() {
16606                                killUid(appId, userId, KILL_APP_REASON_PERMISSIONS_REVOKED);
16607                            }
16608                        });
16609                    } break;
16610                }
16611            }
16612        }
16613
16614        // Synchronously write as we are taking permissions away.
16615        if (writeRuntimePermissions) {
16616            mSettings.writeRuntimePermissionsForUserLPr(userId, true);
16617        }
16618
16619        // Synchronously write as we are taking permissions away.
16620        if (writeInstallPermissions) {
16621            mSettings.writeLPr();
16622        }
16623    }
16624
16625    /**
16626     * Remove entries from the keystore daemon. Will only remove it if the
16627     * {@code appId} is valid.
16628     */
16629    private static void removeKeystoreDataIfNeeded(int userId, int appId) {
16630        if (appId < 0) {
16631            return;
16632        }
16633
16634        final KeyStore keyStore = KeyStore.getInstance();
16635        if (keyStore != null) {
16636            if (userId == UserHandle.USER_ALL) {
16637                for (final int individual : sUserManager.getUserIds()) {
16638                    keyStore.clearUid(UserHandle.getUid(individual, appId));
16639                }
16640            } else {
16641                keyStore.clearUid(UserHandle.getUid(userId, appId));
16642            }
16643        } else {
16644            Slog.w(TAG, "Could not contact keystore to clear entries for app id " + appId);
16645        }
16646    }
16647
16648    @Override
16649    public void deleteApplicationCacheFiles(final String packageName,
16650            final IPackageDataObserver observer) {
16651        final int userId = UserHandle.getCallingUserId();
16652        deleteApplicationCacheFilesAsUser(packageName, userId, observer);
16653    }
16654
16655    @Override
16656    public void deleteApplicationCacheFilesAsUser(final String packageName, final int userId,
16657            final IPackageDataObserver observer) {
16658        mContext.enforceCallingOrSelfPermission(
16659                android.Manifest.permission.DELETE_CACHE_FILES, null);
16660        enforceCrossUserPermission(Binder.getCallingUid(), userId,
16661                /* requireFullPermission= */ true, /* checkShell= */ false,
16662                "delete application cache files");
16663
16664        final PackageParser.Package pkg;
16665        synchronized (mPackages) {
16666            pkg = mPackages.get(packageName);
16667        }
16668
16669        // Queue up an async operation since the package deletion may take a little while.
16670        mHandler.post(new Runnable() {
16671            public void run() {
16672                synchronized (mInstallLock) {
16673                    final int flags = StorageManager.FLAG_STORAGE_DE
16674                            | StorageManager.FLAG_STORAGE_CE;
16675                    // We're only clearing cache files, so we don't care if the
16676                    // app is unfrozen and still able to run
16677                    clearAppDataLIF(pkg, userId, flags | Installer.FLAG_CLEAR_CACHE_ONLY);
16678                    clearAppDataLIF(pkg, userId, flags | Installer.FLAG_CLEAR_CODE_CACHE_ONLY);
16679                }
16680                clearExternalStorageDataSync(packageName, userId, false);
16681                if (observer != null) {
16682                    try {
16683                        observer.onRemoveCompleted(packageName, true);
16684                    } catch (RemoteException e) {
16685                        Log.i(TAG, "Observer no longer exists.");
16686                    }
16687                }
16688            }
16689        });
16690    }
16691
16692    @Override
16693    public void getPackageSizeInfo(final String packageName, int userHandle,
16694            final IPackageStatsObserver observer) {
16695        mContext.enforceCallingOrSelfPermission(
16696                android.Manifest.permission.GET_PACKAGE_SIZE, null);
16697        if (packageName == null) {
16698            throw new IllegalArgumentException("Attempt to get size of null packageName");
16699        }
16700
16701        PackageStats stats = new PackageStats(packageName, userHandle);
16702
16703        /*
16704         * Queue up an async operation since the package measurement may take a
16705         * little while.
16706         */
16707        Message msg = mHandler.obtainMessage(INIT_COPY);
16708        msg.obj = new MeasureParams(stats, observer);
16709        mHandler.sendMessage(msg);
16710    }
16711
16712    private boolean getPackageSizeInfoLI(String packageName, int userId, PackageStats stats) {
16713        final PackageSetting ps;
16714        synchronized (mPackages) {
16715            ps = mSettings.mPackages.get(packageName);
16716            if (ps == null) {
16717                Slog.w(TAG, "Failed to find settings for " + packageName);
16718                return false;
16719            }
16720        }
16721        try {
16722            mInstaller.getAppSize(ps.volumeUuid, packageName, userId,
16723                    StorageManager.FLAG_STORAGE_DE | StorageManager.FLAG_STORAGE_CE,
16724                    ps.getCeDataInode(userId), ps.codePathString, stats);
16725        } catch (InstallerException e) {
16726            Slog.w(TAG, String.valueOf(e));
16727            return false;
16728        }
16729
16730        // For now, ignore code size of packages on system partition
16731        if (isSystemApp(ps) && !isUpdatedSystemApp(ps)) {
16732            stats.codeSize = 0;
16733        }
16734
16735        return true;
16736    }
16737
16738    private int getUidTargetSdkVersionLockedLPr(int uid) {
16739        Object obj = mSettings.getUserIdLPr(uid);
16740        if (obj instanceof SharedUserSetting) {
16741            final SharedUserSetting sus = (SharedUserSetting) obj;
16742            int vers = Build.VERSION_CODES.CUR_DEVELOPMENT;
16743            final Iterator<PackageSetting> it = sus.packages.iterator();
16744            while (it.hasNext()) {
16745                final PackageSetting ps = it.next();
16746                if (ps.pkg != null) {
16747                    int v = ps.pkg.applicationInfo.targetSdkVersion;
16748                    if (v < vers) vers = v;
16749                }
16750            }
16751            return vers;
16752        } else if (obj instanceof PackageSetting) {
16753            final PackageSetting ps = (PackageSetting) obj;
16754            if (ps.pkg != null) {
16755                return ps.pkg.applicationInfo.targetSdkVersion;
16756            }
16757        }
16758        return Build.VERSION_CODES.CUR_DEVELOPMENT;
16759    }
16760
16761    @Override
16762    public void addPreferredActivity(IntentFilter filter, int match,
16763            ComponentName[] set, ComponentName activity, int userId) {
16764        addPreferredActivityInternal(filter, match, set, activity, true, userId,
16765                "Adding preferred");
16766    }
16767
16768    private void addPreferredActivityInternal(IntentFilter filter, int match,
16769            ComponentName[] set, ComponentName activity, boolean always, int userId,
16770            String opname) {
16771        // writer
16772        int callingUid = Binder.getCallingUid();
16773        enforceCrossUserPermission(callingUid, userId,
16774                true /* requireFullPermission */, false /* checkShell */, "add preferred activity");
16775        if (filter.countActions() == 0) {
16776            Slog.w(TAG, "Cannot set a preferred activity with no filter actions");
16777            return;
16778        }
16779        synchronized (mPackages) {
16780            if (mContext.checkCallingOrSelfPermission(
16781                    android.Manifest.permission.SET_PREFERRED_APPLICATIONS)
16782                    != PackageManager.PERMISSION_GRANTED) {
16783                if (getUidTargetSdkVersionLockedLPr(callingUid)
16784                        < Build.VERSION_CODES.FROYO) {
16785                    Slog.w(TAG, "Ignoring addPreferredActivity() from uid "
16786                            + callingUid);
16787                    return;
16788                }
16789                mContext.enforceCallingOrSelfPermission(
16790                        android.Manifest.permission.SET_PREFERRED_APPLICATIONS, null);
16791            }
16792
16793            PreferredIntentResolver pir = mSettings.editPreferredActivitiesLPw(userId);
16794            Slog.i(TAG, opname + " activity " + activity.flattenToShortString() + " for user "
16795                    + userId + ":");
16796            filter.dump(new LogPrinter(Log.INFO, TAG), "  ");
16797            pir.addFilter(new PreferredActivity(filter, match, set, activity, always));
16798            scheduleWritePackageRestrictionsLocked(userId);
16799        }
16800    }
16801
16802    @Override
16803    public void replacePreferredActivity(IntentFilter filter, int match,
16804            ComponentName[] set, ComponentName activity, int userId) {
16805        if (filter.countActions() != 1) {
16806            throw new IllegalArgumentException(
16807                    "replacePreferredActivity expects filter to have only 1 action.");
16808        }
16809        if (filter.countDataAuthorities() != 0
16810                || filter.countDataPaths() != 0
16811                || filter.countDataSchemes() > 1
16812                || filter.countDataTypes() != 0) {
16813            throw new IllegalArgumentException(
16814                    "replacePreferredActivity expects filter to have no data authorities, " +
16815                    "paths, or types; and at most one scheme.");
16816        }
16817
16818        final int callingUid = Binder.getCallingUid();
16819        enforceCrossUserPermission(callingUid, userId,
16820                true /* requireFullPermission */, false /* checkShell */,
16821                "replace preferred activity");
16822        synchronized (mPackages) {
16823            if (mContext.checkCallingOrSelfPermission(
16824                    android.Manifest.permission.SET_PREFERRED_APPLICATIONS)
16825                    != PackageManager.PERMISSION_GRANTED) {
16826                if (getUidTargetSdkVersionLockedLPr(callingUid)
16827                        < Build.VERSION_CODES.FROYO) {
16828                    Slog.w(TAG, "Ignoring replacePreferredActivity() from uid "
16829                            + Binder.getCallingUid());
16830                    return;
16831                }
16832                mContext.enforceCallingOrSelfPermission(
16833                        android.Manifest.permission.SET_PREFERRED_APPLICATIONS, null);
16834            }
16835
16836            PreferredIntentResolver pir = mSettings.mPreferredActivities.get(userId);
16837            if (pir != null) {
16838                // Get all of the existing entries that exactly match this filter.
16839                ArrayList<PreferredActivity> existing = pir.findFilters(filter);
16840                if (existing != null && existing.size() == 1) {
16841                    PreferredActivity cur = existing.get(0);
16842                    if (DEBUG_PREFERRED) {
16843                        Slog.i(TAG, "Checking replace of preferred:");
16844                        filter.dump(new LogPrinter(Log.INFO, TAG), "  ");
16845                        if (!cur.mPref.mAlways) {
16846                            Slog.i(TAG, "  -- CUR; not mAlways!");
16847                        } else {
16848                            Slog.i(TAG, "  -- CUR: mMatch=" + cur.mPref.mMatch);
16849                            Slog.i(TAG, "  -- CUR: mSet="
16850                                    + Arrays.toString(cur.mPref.mSetComponents));
16851                            Slog.i(TAG, "  -- CUR: mComponent=" + cur.mPref.mShortComponent);
16852                            Slog.i(TAG, "  -- NEW: mMatch="
16853                                    + (match&IntentFilter.MATCH_CATEGORY_MASK));
16854                            Slog.i(TAG, "  -- CUR: mSet=" + Arrays.toString(set));
16855                            Slog.i(TAG, "  -- CUR: mComponent=" + activity.flattenToShortString());
16856                        }
16857                    }
16858                    if (cur.mPref.mAlways && cur.mPref.mComponent.equals(activity)
16859                            && cur.mPref.mMatch == (match&IntentFilter.MATCH_CATEGORY_MASK)
16860                            && cur.mPref.sameSet(set)) {
16861                        // Setting the preferred activity to what it happens to be already
16862                        if (DEBUG_PREFERRED) {
16863                            Slog.i(TAG, "Replacing with same preferred activity "
16864                                    + cur.mPref.mShortComponent + " for user "
16865                                    + userId + ":");
16866                            filter.dump(new LogPrinter(Log.INFO, TAG), "  ");
16867                        }
16868                        return;
16869                    }
16870                }
16871
16872                if (existing != null) {
16873                    if (DEBUG_PREFERRED) {
16874                        Slog.i(TAG, existing.size() + " existing preferred matches for:");
16875                        filter.dump(new LogPrinter(Log.INFO, TAG), "  ");
16876                    }
16877                    for (int i = 0; i < existing.size(); i++) {
16878                        PreferredActivity pa = existing.get(i);
16879                        if (DEBUG_PREFERRED) {
16880                            Slog.i(TAG, "Removing existing preferred activity "
16881                                    + pa.mPref.mComponent + ":");
16882                            pa.dump(new LogPrinter(Log.INFO, TAG), "  ");
16883                        }
16884                        pir.removeFilter(pa);
16885                    }
16886                }
16887            }
16888            addPreferredActivityInternal(filter, match, set, activity, true, userId,
16889                    "Replacing preferred");
16890        }
16891    }
16892
16893    @Override
16894    public void clearPackagePreferredActivities(String packageName) {
16895        final int uid = Binder.getCallingUid();
16896        // writer
16897        synchronized (mPackages) {
16898            PackageParser.Package pkg = mPackages.get(packageName);
16899            if (pkg == null || pkg.applicationInfo.uid != uid) {
16900                if (mContext.checkCallingOrSelfPermission(
16901                        android.Manifest.permission.SET_PREFERRED_APPLICATIONS)
16902                        != PackageManager.PERMISSION_GRANTED) {
16903                    if (getUidTargetSdkVersionLockedLPr(Binder.getCallingUid())
16904                            < Build.VERSION_CODES.FROYO) {
16905                        Slog.w(TAG, "Ignoring clearPackagePreferredActivities() from uid "
16906                                + Binder.getCallingUid());
16907                        return;
16908                    }
16909                    mContext.enforceCallingOrSelfPermission(
16910                            android.Manifest.permission.SET_PREFERRED_APPLICATIONS, null);
16911                }
16912            }
16913
16914            int user = UserHandle.getCallingUserId();
16915            if (clearPackagePreferredActivitiesLPw(packageName, user)) {
16916                scheduleWritePackageRestrictionsLocked(user);
16917            }
16918        }
16919    }
16920
16921    /** This method takes a specific user id as well as UserHandle.USER_ALL. */
16922    boolean clearPackagePreferredActivitiesLPw(String packageName, int userId) {
16923        ArrayList<PreferredActivity> removed = null;
16924        boolean changed = false;
16925        for (int i=0; i<mSettings.mPreferredActivities.size(); i++) {
16926            final int thisUserId = mSettings.mPreferredActivities.keyAt(i);
16927            PreferredIntentResolver pir = mSettings.mPreferredActivities.valueAt(i);
16928            if (userId != UserHandle.USER_ALL && userId != thisUserId) {
16929                continue;
16930            }
16931            Iterator<PreferredActivity> it = pir.filterIterator();
16932            while (it.hasNext()) {
16933                PreferredActivity pa = it.next();
16934                // Mark entry for removal only if it matches the package name
16935                // and the entry is of type "always".
16936                if (packageName == null ||
16937                        (pa.mPref.mComponent.getPackageName().equals(packageName)
16938                                && pa.mPref.mAlways)) {
16939                    if (removed == null) {
16940                        removed = new ArrayList<PreferredActivity>();
16941                    }
16942                    removed.add(pa);
16943                }
16944            }
16945            if (removed != null) {
16946                for (int j=0; j<removed.size(); j++) {
16947                    PreferredActivity pa = removed.get(j);
16948                    pir.removeFilter(pa);
16949                }
16950                changed = true;
16951            }
16952        }
16953        return changed;
16954    }
16955
16956    /** This method takes a specific user id as well as UserHandle.USER_ALL. */
16957    private void clearIntentFilterVerificationsLPw(int userId) {
16958        final int packageCount = mPackages.size();
16959        for (int i = 0; i < packageCount; i++) {
16960            PackageParser.Package pkg = mPackages.valueAt(i);
16961            clearIntentFilterVerificationsLPw(pkg.packageName, userId);
16962        }
16963    }
16964
16965    /** This method takes a specific user id as well as UserHandle.USER_ALL. */
16966    void clearIntentFilterVerificationsLPw(String packageName, int userId) {
16967        if (userId == UserHandle.USER_ALL) {
16968            if (mSettings.removeIntentFilterVerificationLPw(packageName,
16969                    sUserManager.getUserIds())) {
16970                for (int oneUserId : sUserManager.getUserIds()) {
16971                    scheduleWritePackageRestrictionsLocked(oneUserId);
16972                }
16973            }
16974        } else {
16975            if (mSettings.removeIntentFilterVerificationLPw(packageName, userId)) {
16976                scheduleWritePackageRestrictionsLocked(userId);
16977            }
16978        }
16979    }
16980
16981    void clearDefaultBrowserIfNeeded(String packageName) {
16982        for (int oneUserId : sUserManager.getUserIds()) {
16983            String defaultBrowserPackageName = getDefaultBrowserPackageName(oneUserId);
16984            if (TextUtils.isEmpty(defaultBrowserPackageName)) continue;
16985            if (packageName.equals(defaultBrowserPackageName)) {
16986                setDefaultBrowserPackageName(null, oneUserId);
16987            }
16988        }
16989    }
16990
16991    @Override
16992    public void resetApplicationPreferences(int userId) {
16993        mContext.enforceCallingOrSelfPermission(
16994                android.Manifest.permission.SET_PREFERRED_APPLICATIONS, null);
16995        final long identity = Binder.clearCallingIdentity();
16996        // writer
16997        try {
16998            synchronized (mPackages) {
16999                clearPackagePreferredActivitiesLPw(null, userId);
17000                mSettings.applyDefaultPreferredAppsLPw(this, userId);
17001                // TODO: We have to reset the default SMS and Phone. This requires
17002                // significant refactoring to keep all default apps in the package
17003                // manager (cleaner but more work) or have the services provide
17004                // callbacks to the package manager to request a default app reset.
17005                applyFactoryDefaultBrowserLPw(userId);
17006                clearIntentFilterVerificationsLPw(userId);
17007                primeDomainVerificationsLPw(userId);
17008                resetUserChangesToRuntimePermissionsAndFlagsLPw(userId);
17009                scheduleWritePackageRestrictionsLocked(userId);
17010            }
17011            resetNetworkPolicies(userId);
17012        } finally {
17013            Binder.restoreCallingIdentity(identity);
17014        }
17015    }
17016
17017    @Override
17018    public int getPreferredActivities(List<IntentFilter> outFilters,
17019            List<ComponentName> outActivities, String packageName) {
17020
17021        int num = 0;
17022        final int userId = UserHandle.getCallingUserId();
17023        // reader
17024        synchronized (mPackages) {
17025            PreferredIntentResolver pir = mSettings.mPreferredActivities.get(userId);
17026            if (pir != null) {
17027                final Iterator<PreferredActivity> it = pir.filterIterator();
17028                while (it.hasNext()) {
17029                    final PreferredActivity pa = it.next();
17030                    if (packageName == null
17031                            || (pa.mPref.mComponent.getPackageName().equals(packageName)
17032                                    && pa.mPref.mAlways)) {
17033                        if (outFilters != null) {
17034                            outFilters.add(new IntentFilter(pa));
17035                        }
17036                        if (outActivities != null) {
17037                            outActivities.add(pa.mPref.mComponent);
17038                        }
17039                    }
17040                }
17041            }
17042        }
17043
17044        return num;
17045    }
17046
17047    @Override
17048    public void addPersistentPreferredActivity(IntentFilter filter, ComponentName activity,
17049            int userId) {
17050        int callingUid = Binder.getCallingUid();
17051        if (callingUid != Process.SYSTEM_UID) {
17052            throw new SecurityException(
17053                    "addPersistentPreferredActivity can only be run by the system");
17054        }
17055        if (filter.countActions() == 0) {
17056            Slog.w(TAG, "Cannot set a preferred activity with no filter actions");
17057            return;
17058        }
17059        synchronized (mPackages) {
17060            Slog.i(TAG, "Adding persistent preferred activity " + activity + " for user " + userId +
17061                    ":");
17062            filter.dump(new LogPrinter(Log.INFO, TAG), "  ");
17063            mSettings.editPersistentPreferredActivitiesLPw(userId).addFilter(
17064                    new PersistentPreferredActivity(filter, activity));
17065            scheduleWritePackageRestrictionsLocked(userId);
17066        }
17067    }
17068
17069    @Override
17070    public void clearPackagePersistentPreferredActivities(String packageName, int userId) {
17071        int callingUid = Binder.getCallingUid();
17072        if (callingUid != Process.SYSTEM_UID) {
17073            throw new SecurityException(
17074                    "clearPackagePersistentPreferredActivities can only be run by the system");
17075        }
17076        ArrayList<PersistentPreferredActivity> removed = null;
17077        boolean changed = false;
17078        synchronized (mPackages) {
17079            for (int i=0; i<mSettings.mPersistentPreferredActivities.size(); i++) {
17080                final int thisUserId = mSettings.mPersistentPreferredActivities.keyAt(i);
17081                PersistentPreferredIntentResolver ppir = mSettings.mPersistentPreferredActivities
17082                        .valueAt(i);
17083                if (userId != thisUserId) {
17084                    continue;
17085                }
17086                Iterator<PersistentPreferredActivity> it = ppir.filterIterator();
17087                while (it.hasNext()) {
17088                    PersistentPreferredActivity ppa = it.next();
17089                    // Mark entry for removal only if it matches the package name.
17090                    if (ppa.mComponent.getPackageName().equals(packageName)) {
17091                        if (removed == null) {
17092                            removed = new ArrayList<PersistentPreferredActivity>();
17093                        }
17094                        removed.add(ppa);
17095                    }
17096                }
17097                if (removed != null) {
17098                    for (int j=0; j<removed.size(); j++) {
17099                        PersistentPreferredActivity ppa = removed.get(j);
17100                        ppir.removeFilter(ppa);
17101                    }
17102                    changed = true;
17103                }
17104            }
17105
17106            if (changed) {
17107                scheduleWritePackageRestrictionsLocked(userId);
17108            }
17109        }
17110    }
17111
17112    /**
17113     * Common machinery for picking apart a restored XML blob and passing
17114     * it to a caller-supplied functor to be applied to the running system.
17115     */
17116    private void restoreFromXml(XmlPullParser parser, int userId,
17117            String expectedStartTag, BlobXmlRestorer functor)
17118            throws IOException, XmlPullParserException {
17119        int type;
17120        while ((type = parser.next()) != XmlPullParser.START_TAG
17121                && type != XmlPullParser.END_DOCUMENT) {
17122        }
17123        if (type != XmlPullParser.START_TAG) {
17124            // oops didn't find a start tag?!
17125            if (DEBUG_BACKUP) {
17126                Slog.e(TAG, "Didn't find start tag during restore");
17127            }
17128            return;
17129        }
17130Slog.v(TAG, ":: restoreFromXml() : got to tag " + parser.getName());
17131        // this is supposed to be TAG_PREFERRED_BACKUP
17132        if (!expectedStartTag.equals(parser.getName())) {
17133            if (DEBUG_BACKUP) {
17134                Slog.e(TAG, "Found unexpected tag " + parser.getName());
17135            }
17136            return;
17137        }
17138
17139        // skip interfering stuff, then we're aligned with the backing implementation
17140        while ((type = parser.next()) == XmlPullParser.TEXT) { }
17141Slog.v(TAG, ":: stepped forward, applying functor at tag " + parser.getName());
17142        functor.apply(parser, userId);
17143    }
17144
17145    private interface BlobXmlRestorer {
17146        public void apply(XmlPullParser parser, int userId) throws IOException, XmlPullParserException;
17147    }
17148
17149    /**
17150     * Non-Binder method, support for the backup/restore mechanism: write the
17151     * full set of preferred activities in its canonical XML format.  Returns the
17152     * XML output as a byte array, or null if there is none.
17153     */
17154    @Override
17155    public byte[] getPreferredActivityBackup(int userId) {
17156        if (Binder.getCallingUid() != Process.SYSTEM_UID) {
17157            throw new SecurityException("Only the system may call getPreferredActivityBackup()");
17158        }
17159
17160        ByteArrayOutputStream dataStream = new ByteArrayOutputStream();
17161        try {
17162            final XmlSerializer serializer = new FastXmlSerializer();
17163            serializer.setOutput(dataStream, StandardCharsets.UTF_8.name());
17164            serializer.startDocument(null, true);
17165            serializer.startTag(null, TAG_PREFERRED_BACKUP);
17166
17167            synchronized (mPackages) {
17168                mSettings.writePreferredActivitiesLPr(serializer, userId, true);
17169            }
17170
17171            serializer.endTag(null, TAG_PREFERRED_BACKUP);
17172            serializer.endDocument();
17173            serializer.flush();
17174        } catch (Exception e) {
17175            if (DEBUG_BACKUP) {
17176                Slog.e(TAG, "Unable to write preferred activities for backup", e);
17177            }
17178            return null;
17179        }
17180
17181        return dataStream.toByteArray();
17182    }
17183
17184    @Override
17185    public void restorePreferredActivities(byte[] backup, int userId) {
17186        if (Binder.getCallingUid() != Process.SYSTEM_UID) {
17187            throw new SecurityException("Only the system may call restorePreferredActivities()");
17188        }
17189
17190        try {
17191            final XmlPullParser parser = Xml.newPullParser();
17192            parser.setInput(new ByteArrayInputStream(backup), StandardCharsets.UTF_8.name());
17193            restoreFromXml(parser, userId, TAG_PREFERRED_BACKUP,
17194                    new BlobXmlRestorer() {
17195                        @Override
17196                        public void apply(XmlPullParser parser, int userId)
17197                                throws XmlPullParserException, IOException {
17198                            synchronized (mPackages) {
17199                                mSettings.readPreferredActivitiesLPw(parser, userId);
17200                            }
17201                        }
17202                    } );
17203        } catch (Exception e) {
17204            if (DEBUG_BACKUP) {
17205                Slog.e(TAG, "Exception restoring preferred activities: " + e.getMessage());
17206            }
17207        }
17208    }
17209
17210    /**
17211     * Non-Binder method, support for the backup/restore mechanism: write the
17212     * default browser (etc) settings in its canonical XML format.  Returns the default
17213     * browser XML representation as a byte array, or null if there is none.
17214     */
17215    @Override
17216    public byte[] getDefaultAppsBackup(int userId) {
17217        if (Binder.getCallingUid() != Process.SYSTEM_UID) {
17218            throw new SecurityException("Only the system may call getDefaultAppsBackup()");
17219        }
17220
17221        ByteArrayOutputStream dataStream = new ByteArrayOutputStream();
17222        try {
17223            final XmlSerializer serializer = new FastXmlSerializer();
17224            serializer.setOutput(dataStream, StandardCharsets.UTF_8.name());
17225            serializer.startDocument(null, true);
17226            serializer.startTag(null, TAG_DEFAULT_APPS);
17227
17228            synchronized (mPackages) {
17229                mSettings.writeDefaultAppsLPr(serializer, userId);
17230            }
17231
17232            serializer.endTag(null, TAG_DEFAULT_APPS);
17233            serializer.endDocument();
17234            serializer.flush();
17235        } catch (Exception e) {
17236            if (DEBUG_BACKUP) {
17237                Slog.e(TAG, "Unable to write default apps for backup", e);
17238            }
17239            return null;
17240        }
17241
17242        return dataStream.toByteArray();
17243    }
17244
17245    @Override
17246    public void restoreDefaultApps(byte[] backup, int userId) {
17247        if (Binder.getCallingUid() != Process.SYSTEM_UID) {
17248            throw new SecurityException("Only the system may call restoreDefaultApps()");
17249        }
17250
17251        try {
17252            final XmlPullParser parser = Xml.newPullParser();
17253            parser.setInput(new ByteArrayInputStream(backup), StandardCharsets.UTF_8.name());
17254            restoreFromXml(parser, userId, TAG_DEFAULT_APPS,
17255                    new BlobXmlRestorer() {
17256                        @Override
17257                        public void apply(XmlPullParser parser, int userId)
17258                                throws XmlPullParserException, IOException {
17259                            synchronized (mPackages) {
17260                                mSettings.readDefaultAppsLPw(parser, userId);
17261                            }
17262                        }
17263                    } );
17264        } catch (Exception e) {
17265            if (DEBUG_BACKUP) {
17266                Slog.e(TAG, "Exception restoring default apps: " + e.getMessage());
17267            }
17268        }
17269    }
17270
17271    @Override
17272    public byte[] getIntentFilterVerificationBackup(int userId) {
17273        if (Binder.getCallingUid() != Process.SYSTEM_UID) {
17274            throw new SecurityException("Only the system may call getIntentFilterVerificationBackup()");
17275        }
17276
17277        ByteArrayOutputStream dataStream = new ByteArrayOutputStream();
17278        try {
17279            final XmlSerializer serializer = new FastXmlSerializer();
17280            serializer.setOutput(dataStream, StandardCharsets.UTF_8.name());
17281            serializer.startDocument(null, true);
17282            serializer.startTag(null, TAG_INTENT_FILTER_VERIFICATION);
17283
17284            synchronized (mPackages) {
17285                mSettings.writeAllDomainVerificationsLPr(serializer, userId);
17286            }
17287
17288            serializer.endTag(null, TAG_INTENT_FILTER_VERIFICATION);
17289            serializer.endDocument();
17290            serializer.flush();
17291        } catch (Exception e) {
17292            if (DEBUG_BACKUP) {
17293                Slog.e(TAG, "Unable to write default apps for backup", e);
17294            }
17295            return null;
17296        }
17297
17298        return dataStream.toByteArray();
17299    }
17300
17301    @Override
17302    public void restoreIntentFilterVerification(byte[] backup, int userId) {
17303        if (Binder.getCallingUid() != Process.SYSTEM_UID) {
17304            throw new SecurityException("Only the system may call restorePreferredActivities()");
17305        }
17306
17307        try {
17308            final XmlPullParser parser = Xml.newPullParser();
17309            parser.setInput(new ByteArrayInputStream(backup), StandardCharsets.UTF_8.name());
17310            restoreFromXml(parser, userId, TAG_INTENT_FILTER_VERIFICATION,
17311                    new BlobXmlRestorer() {
17312                        @Override
17313                        public void apply(XmlPullParser parser, int userId)
17314                                throws XmlPullParserException, IOException {
17315                            synchronized (mPackages) {
17316                                mSettings.readAllDomainVerificationsLPr(parser, userId);
17317                                mSettings.writeLPr();
17318                            }
17319                        }
17320                    } );
17321        } catch (Exception e) {
17322            if (DEBUG_BACKUP) {
17323                Slog.e(TAG, "Exception restoring preferred activities: " + e.getMessage());
17324            }
17325        }
17326    }
17327
17328    @Override
17329    public byte[] getPermissionGrantBackup(int userId) {
17330        if (Binder.getCallingUid() != Process.SYSTEM_UID) {
17331            throw new SecurityException("Only the system may call getPermissionGrantBackup()");
17332        }
17333
17334        ByteArrayOutputStream dataStream = new ByteArrayOutputStream();
17335        try {
17336            final XmlSerializer serializer = new FastXmlSerializer();
17337            serializer.setOutput(dataStream, StandardCharsets.UTF_8.name());
17338            serializer.startDocument(null, true);
17339            serializer.startTag(null, TAG_PERMISSION_BACKUP);
17340
17341            synchronized (mPackages) {
17342                serializeRuntimePermissionGrantsLPr(serializer, userId);
17343            }
17344
17345            serializer.endTag(null, TAG_PERMISSION_BACKUP);
17346            serializer.endDocument();
17347            serializer.flush();
17348        } catch (Exception e) {
17349            if (DEBUG_BACKUP) {
17350                Slog.e(TAG, "Unable to write default apps for backup", e);
17351            }
17352            return null;
17353        }
17354
17355        return dataStream.toByteArray();
17356    }
17357
17358    @Override
17359    public void restorePermissionGrants(byte[] backup, int userId) {
17360        if (Binder.getCallingUid() != Process.SYSTEM_UID) {
17361            throw new SecurityException("Only the system may call restorePermissionGrants()");
17362        }
17363
17364        try {
17365            final XmlPullParser parser = Xml.newPullParser();
17366            parser.setInput(new ByteArrayInputStream(backup), StandardCharsets.UTF_8.name());
17367            restoreFromXml(parser, userId, TAG_PERMISSION_BACKUP,
17368                    new BlobXmlRestorer() {
17369                        @Override
17370                        public void apply(XmlPullParser parser, int userId)
17371                                throws XmlPullParserException, IOException {
17372                            synchronized (mPackages) {
17373                                processRestoredPermissionGrantsLPr(parser, userId);
17374                            }
17375                        }
17376                    } );
17377        } catch (Exception e) {
17378            if (DEBUG_BACKUP) {
17379                Slog.e(TAG, "Exception restoring preferred activities: " + e.getMessage());
17380            }
17381        }
17382    }
17383
17384    private void serializeRuntimePermissionGrantsLPr(XmlSerializer serializer, final int userId)
17385            throws IOException {
17386        serializer.startTag(null, TAG_ALL_GRANTS);
17387
17388        final int N = mSettings.mPackages.size();
17389        for (int i = 0; i < N; i++) {
17390            final PackageSetting ps = mSettings.mPackages.valueAt(i);
17391            boolean pkgGrantsKnown = false;
17392
17393            PermissionsState packagePerms = ps.getPermissionsState();
17394
17395            for (PermissionState state : packagePerms.getRuntimePermissionStates(userId)) {
17396                final int grantFlags = state.getFlags();
17397                // only look at grants that are not system/policy fixed
17398                if ((grantFlags & SYSTEM_RUNTIME_GRANT_MASK) == 0) {
17399                    final boolean isGranted = state.isGranted();
17400                    // And only back up the user-twiddled state bits
17401                    if (isGranted || (grantFlags & USER_RUNTIME_GRANT_MASK) != 0) {
17402                        final String packageName = mSettings.mPackages.keyAt(i);
17403                        if (!pkgGrantsKnown) {
17404                            serializer.startTag(null, TAG_GRANT);
17405                            serializer.attribute(null, ATTR_PACKAGE_NAME, packageName);
17406                            pkgGrantsKnown = true;
17407                        }
17408
17409                        final boolean userSet =
17410                                (grantFlags & FLAG_PERMISSION_USER_SET) != 0;
17411                        final boolean userFixed =
17412                                (grantFlags & FLAG_PERMISSION_USER_FIXED) != 0;
17413                        final boolean revoke =
17414                                (grantFlags & FLAG_PERMISSION_REVOKE_ON_UPGRADE) != 0;
17415
17416                        serializer.startTag(null, TAG_PERMISSION);
17417                        serializer.attribute(null, ATTR_PERMISSION_NAME, state.getName());
17418                        if (isGranted) {
17419                            serializer.attribute(null, ATTR_IS_GRANTED, "true");
17420                        }
17421                        if (userSet) {
17422                            serializer.attribute(null, ATTR_USER_SET, "true");
17423                        }
17424                        if (userFixed) {
17425                            serializer.attribute(null, ATTR_USER_FIXED, "true");
17426                        }
17427                        if (revoke) {
17428                            serializer.attribute(null, ATTR_REVOKE_ON_UPGRADE, "true");
17429                        }
17430                        serializer.endTag(null, TAG_PERMISSION);
17431                    }
17432                }
17433            }
17434
17435            if (pkgGrantsKnown) {
17436                serializer.endTag(null, TAG_GRANT);
17437            }
17438        }
17439
17440        serializer.endTag(null, TAG_ALL_GRANTS);
17441    }
17442
17443    private void processRestoredPermissionGrantsLPr(XmlPullParser parser, int userId)
17444            throws XmlPullParserException, IOException {
17445        String pkgName = null;
17446        int outerDepth = parser.getDepth();
17447        int type;
17448        while ((type = parser.next()) != XmlPullParser.END_DOCUMENT
17449                && (type != XmlPullParser.END_TAG || parser.getDepth() > outerDepth)) {
17450            if (type == XmlPullParser.END_TAG || type == XmlPullParser.TEXT) {
17451                continue;
17452            }
17453
17454            final String tagName = parser.getName();
17455            if (tagName.equals(TAG_GRANT)) {
17456                pkgName = parser.getAttributeValue(null, ATTR_PACKAGE_NAME);
17457                if (DEBUG_BACKUP) {
17458                    Slog.v(TAG, "+++ Restoring grants for package " + pkgName);
17459                }
17460            } else if (tagName.equals(TAG_PERMISSION)) {
17461
17462                final boolean isGranted = "true".equals(parser.getAttributeValue(null, ATTR_IS_GRANTED));
17463                final String permName = parser.getAttributeValue(null, ATTR_PERMISSION_NAME);
17464
17465                int newFlagSet = 0;
17466                if ("true".equals(parser.getAttributeValue(null, ATTR_USER_SET))) {
17467                    newFlagSet |= FLAG_PERMISSION_USER_SET;
17468                }
17469                if ("true".equals(parser.getAttributeValue(null, ATTR_USER_FIXED))) {
17470                    newFlagSet |= FLAG_PERMISSION_USER_FIXED;
17471                }
17472                if ("true".equals(parser.getAttributeValue(null, ATTR_REVOKE_ON_UPGRADE))) {
17473                    newFlagSet |= FLAG_PERMISSION_REVOKE_ON_UPGRADE;
17474                }
17475                if (DEBUG_BACKUP) {
17476                    Slog.v(TAG, "  + Restoring grant: pkg=" + pkgName + " perm=" + permName
17477                            + " granted=" + isGranted + " bits=0x" + Integer.toHexString(newFlagSet));
17478                }
17479                final PackageSetting ps = mSettings.mPackages.get(pkgName);
17480                if (ps != null) {
17481                    // Already installed so we apply the grant immediately
17482                    if (DEBUG_BACKUP) {
17483                        Slog.v(TAG, "        + already installed; applying");
17484                    }
17485                    PermissionsState perms = ps.getPermissionsState();
17486                    BasePermission bp = mSettings.mPermissions.get(permName);
17487                    if (bp != null) {
17488                        if (isGranted) {
17489                            perms.grantRuntimePermission(bp, userId);
17490                        }
17491                        if (newFlagSet != 0) {
17492                            perms.updatePermissionFlags(bp, userId, USER_RUNTIME_GRANT_MASK, newFlagSet);
17493                        }
17494                    }
17495                } else {
17496                    // Need to wait for post-restore install to apply the grant
17497                    if (DEBUG_BACKUP) {
17498                        Slog.v(TAG, "        - not yet installed; saving for later");
17499                    }
17500                    mSettings.processRestoredPermissionGrantLPr(pkgName, permName,
17501                            isGranted, newFlagSet, userId);
17502                }
17503            } else {
17504                PackageManagerService.reportSettingsProblem(Log.WARN,
17505                        "Unknown element under <" + TAG_PERMISSION_BACKUP + ">: " + tagName);
17506                XmlUtils.skipCurrentTag(parser);
17507            }
17508        }
17509
17510        scheduleWriteSettingsLocked();
17511        mSettings.writeRuntimePermissionsForUserLPr(userId, false);
17512    }
17513
17514    @Override
17515    public void addCrossProfileIntentFilter(IntentFilter intentFilter, String ownerPackage,
17516            int sourceUserId, int targetUserId, int flags) {
17517        mContext.enforceCallingOrSelfPermission(
17518                        android.Manifest.permission.INTERACT_ACROSS_USERS_FULL, null);
17519        int callingUid = Binder.getCallingUid();
17520        enforceOwnerRights(ownerPackage, callingUid);
17521        enforceShellRestriction(UserManager.DISALLOW_DEBUGGING_FEATURES, callingUid, sourceUserId);
17522        if (intentFilter.countActions() == 0) {
17523            Slog.w(TAG, "Cannot set a crossProfile intent filter with no filter actions");
17524            return;
17525        }
17526        synchronized (mPackages) {
17527            CrossProfileIntentFilter newFilter = new CrossProfileIntentFilter(intentFilter,
17528                    ownerPackage, targetUserId, flags);
17529            CrossProfileIntentResolver resolver =
17530                    mSettings.editCrossProfileIntentResolverLPw(sourceUserId);
17531            ArrayList<CrossProfileIntentFilter> existing = resolver.findFilters(intentFilter);
17532            // We have all those whose filter is equal. Now checking if the rest is equal as well.
17533            if (existing != null) {
17534                int size = existing.size();
17535                for (int i = 0; i < size; i++) {
17536                    if (newFilter.equalsIgnoreFilter(existing.get(i))) {
17537                        return;
17538                    }
17539                }
17540            }
17541            resolver.addFilter(newFilter);
17542            scheduleWritePackageRestrictionsLocked(sourceUserId);
17543        }
17544    }
17545
17546    @Override
17547    public void clearCrossProfileIntentFilters(int sourceUserId, String ownerPackage) {
17548        mContext.enforceCallingOrSelfPermission(
17549                        android.Manifest.permission.INTERACT_ACROSS_USERS_FULL, null);
17550        int callingUid = Binder.getCallingUid();
17551        enforceOwnerRights(ownerPackage, callingUid);
17552        enforceShellRestriction(UserManager.DISALLOW_DEBUGGING_FEATURES, callingUid, sourceUserId);
17553        synchronized (mPackages) {
17554            CrossProfileIntentResolver resolver =
17555                    mSettings.editCrossProfileIntentResolverLPw(sourceUserId);
17556            ArraySet<CrossProfileIntentFilter> set =
17557                    new ArraySet<CrossProfileIntentFilter>(resolver.filterSet());
17558            for (CrossProfileIntentFilter filter : set) {
17559                if (filter.getOwnerPackage().equals(ownerPackage)) {
17560                    resolver.removeFilter(filter);
17561                }
17562            }
17563            scheduleWritePackageRestrictionsLocked(sourceUserId);
17564        }
17565    }
17566
17567    // Enforcing that callingUid is owning pkg on userId
17568    private void enforceOwnerRights(String pkg, int callingUid) {
17569        // The system owns everything.
17570        if (UserHandle.getAppId(callingUid) == Process.SYSTEM_UID) {
17571            return;
17572        }
17573        int callingUserId = UserHandle.getUserId(callingUid);
17574        PackageInfo pi = getPackageInfo(pkg, 0, callingUserId);
17575        if (pi == null) {
17576            throw new IllegalArgumentException("Unknown package " + pkg + " on user "
17577                    + callingUserId);
17578        }
17579        if (!UserHandle.isSameApp(pi.applicationInfo.uid, callingUid)) {
17580            throw new SecurityException("Calling uid " + callingUid
17581                    + " does not own package " + pkg);
17582        }
17583    }
17584
17585    @Override
17586    public ComponentName getHomeActivities(List<ResolveInfo> allHomeCandidates) {
17587        return getHomeActivitiesAsUser(allHomeCandidates, UserHandle.getCallingUserId());
17588    }
17589
17590    private Intent getHomeIntent() {
17591        Intent intent = new Intent(Intent.ACTION_MAIN);
17592        intent.addCategory(Intent.CATEGORY_HOME);
17593        return intent;
17594    }
17595
17596    private IntentFilter getHomeFilter() {
17597        IntentFilter filter = new IntentFilter(Intent.ACTION_MAIN);
17598        filter.addCategory(Intent.CATEGORY_HOME);
17599        filter.addCategory(Intent.CATEGORY_DEFAULT);
17600        return filter;
17601    }
17602
17603    ComponentName getHomeActivitiesAsUser(List<ResolveInfo> allHomeCandidates,
17604            int userId) {
17605        Intent intent  = getHomeIntent();
17606        List<ResolveInfo> list = queryIntentActivitiesInternal(intent, null,
17607                PackageManager.GET_META_DATA, userId);
17608        ResolveInfo preferred = findPreferredActivity(intent, null, 0, list, 0,
17609                true, false, false, userId);
17610
17611        allHomeCandidates.clear();
17612        if (list != null) {
17613            for (ResolveInfo ri : list) {
17614                allHomeCandidates.add(ri);
17615            }
17616        }
17617        return (preferred == null || preferred.activityInfo == null)
17618                ? null
17619                : new ComponentName(preferred.activityInfo.packageName,
17620                        preferred.activityInfo.name);
17621    }
17622
17623    @Override
17624    public void setHomeActivity(ComponentName comp, int userId) {
17625        ArrayList<ResolveInfo> homeActivities = new ArrayList<>();
17626        getHomeActivitiesAsUser(homeActivities, userId);
17627
17628        boolean found = false;
17629
17630        final int size = homeActivities.size();
17631        final ComponentName[] set = new ComponentName[size];
17632        for (int i = 0; i < size; i++) {
17633            final ResolveInfo candidate = homeActivities.get(i);
17634            final ActivityInfo info = candidate.activityInfo;
17635            final ComponentName activityName = new ComponentName(info.packageName, info.name);
17636            set[i] = activityName;
17637            if (!found && activityName.equals(comp)) {
17638                found = true;
17639            }
17640        }
17641        if (!found) {
17642            throw new IllegalArgumentException("Component " + comp + " cannot be home on user "
17643                    + userId);
17644        }
17645        replacePreferredActivity(getHomeFilter(), IntentFilter.MATCH_CATEGORY_EMPTY,
17646                set, comp, userId);
17647    }
17648
17649    private @Nullable String getSetupWizardPackageName() {
17650        final Intent intent = new Intent(Intent.ACTION_MAIN);
17651        intent.addCategory(Intent.CATEGORY_SETUP_WIZARD);
17652
17653        final List<ResolveInfo> matches = queryIntentActivitiesInternal(intent, null,
17654                MATCH_SYSTEM_ONLY | MATCH_DIRECT_BOOT_AWARE | MATCH_DIRECT_BOOT_UNAWARE
17655                        | MATCH_DISABLED_COMPONENTS,
17656                UserHandle.myUserId());
17657        if (matches.size() == 1) {
17658            return matches.get(0).getComponentInfo().packageName;
17659        } else {
17660            Slog.e(TAG, "There should probably be exactly one setup wizard; found " + matches.size()
17661                    + ": matches=" + matches);
17662            return null;
17663        }
17664    }
17665
17666    @Override
17667    public void setApplicationEnabledSetting(String appPackageName,
17668            int newState, int flags, int userId, String callingPackage) {
17669        if (!sUserManager.exists(userId)) return;
17670        if (callingPackage == null) {
17671            callingPackage = Integer.toString(Binder.getCallingUid());
17672        }
17673        setEnabledSetting(appPackageName, null, newState, flags, userId, callingPackage);
17674    }
17675
17676    @Override
17677    public void setComponentEnabledSetting(ComponentName componentName,
17678            int newState, int flags, int userId) {
17679        if (!sUserManager.exists(userId)) return;
17680        setEnabledSetting(componentName.getPackageName(),
17681                componentName.getClassName(), newState, flags, userId, null);
17682    }
17683
17684    private void setEnabledSetting(final String packageName, String className, int newState,
17685            final int flags, int userId, String callingPackage) {
17686        if (!(newState == COMPONENT_ENABLED_STATE_DEFAULT
17687              || newState == COMPONENT_ENABLED_STATE_ENABLED
17688              || newState == COMPONENT_ENABLED_STATE_DISABLED
17689              || newState == COMPONENT_ENABLED_STATE_DISABLED_USER
17690              || newState == COMPONENT_ENABLED_STATE_DISABLED_UNTIL_USED)) {
17691            throw new IllegalArgumentException("Invalid new component state: "
17692                    + newState);
17693        }
17694        PackageSetting pkgSetting;
17695        final int uid = Binder.getCallingUid();
17696        final int permission;
17697        if (uid == Process.SYSTEM_UID) {
17698            permission = PackageManager.PERMISSION_GRANTED;
17699        } else {
17700            permission = mContext.checkCallingOrSelfPermission(
17701                    android.Manifest.permission.CHANGE_COMPONENT_ENABLED_STATE);
17702        }
17703        enforceCrossUserPermission(uid, userId,
17704                false /* requireFullPermission */, true /* checkShell */, "set enabled");
17705        final boolean allowedByPermission = (permission == PackageManager.PERMISSION_GRANTED);
17706        boolean sendNow = false;
17707        boolean isApp = (className == null);
17708        String componentName = isApp ? packageName : className;
17709        int packageUid = -1;
17710        ArrayList<String> components;
17711
17712        // writer
17713        synchronized (mPackages) {
17714            pkgSetting = mSettings.mPackages.get(packageName);
17715            if (pkgSetting == null) {
17716                if (className == null) {
17717                    throw new IllegalArgumentException("Unknown package: " + packageName);
17718                }
17719                throw new IllegalArgumentException(
17720                        "Unknown component: " + packageName + "/" + className);
17721            }
17722        }
17723
17724        // Limit who can change which apps
17725        if (!UserHandle.isSameApp(uid, pkgSetting.appId)) {
17726            // Don't allow apps that don't have permission to modify other apps
17727            if (!allowedByPermission) {
17728                throw new SecurityException(
17729                        "Permission Denial: attempt to change component state from pid="
17730                        + Binder.getCallingPid()
17731                        + ", uid=" + uid + ", package uid=" + pkgSetting.appId);
17732            }
17733            // Don't allow changing profile and device owners.
17734            if (mProtectedPackages.canPackageStateBeChanged(userId, packageName)) {
17735                throw new SecurityException("Cannot disable a device owner or a profile owner");
17736            }
17737        }
17738
17739        synchronized (mPackages) {
17740            if (uid == Process.SHELL_UID) {
17741                // Shell can only change whole packages between ENABLED and DISABLED_USER states
17742                int oldState = pkgSetting.getEnabled(userId);
17743                if (className == null
17744                    &&
17745                    (oldState == COMPONENT_ENABLED_STATE_DISABLED_USER
17746                     || oldState == COMPONENT_ENABLED_STATE_DEFAULT
17747                     || oldState == COMPONENT_ENABLED_STATE_ENABLED)
17748                    &&
17749                    (newState == COMPONENT_ENABLED_STATE_DISABLED_USER
17750                     || newState == COMPONENT_ENABLED_STATE_DEFAULT
17751                     || newState == COMPONENT_ENABLED_STATE_ENABLED)) {
17752                    // ok
17753                } else {
17754                    throw new SecurityException(
17755                            "Shell cannot change component state for " + packageName + "/"
17756                            + className + " to " + newState);
17757                }
17758            }
17759            if (className == null) {
17760                // We're dealing with an application/package level state change
17761                if (pkgSetting.getEnabled(userId) == newState) {
17762                    // Nothing to do
17763                    return;
17764                }
17765                if (newState == PackageManager.COMPONENT_ENABLED_STATE_DEFAULT
17766                    || newState == PackageManager.COMPONENT_ENABLED_STATE_ENABLED) {
17767                    // Don't care about who enables an app.
17768                    callingPackage = null;
17769                }
17770                pkgSetting.setEnabled(newState, userId, callingPackage);
17771                // pkgSetting.pkg.mSetEnabled = newState;
17772            } else {
17773                // We're dealing with a component level state change
17774                // First, verify that this is a valid class name.
17775                PackageParser.Package pkg = pkgSetting.pkg;
17776                if (pkg == null || !pkg.hasComponentClassName(className)) {
17777                    if (pkg != null &&
17778                            pkg.applicationInfo.targetSdkVersion >=
17779                                    Build.VERSION_CODES.JELLY_BEAN) {
17780                        throw new IllegalArgumentException("Component class " + className
17781                                + " does not exist in " + packageName);
17782                    } else {
17783                        Slog.w(TAG, "Failed setComponentEnabledSetting: component class "
17784                                + className + " does not exist in " + packageName);
17785                    }
17786                }
17787                switch (newState) {
17788                case COMPONENT_ENABLED_STATE_ENABLED:
17789                    if (!pkgSetting.enableComponentLPw(className, userId)) {
17790                        return;
17791                    }
17792                    break;
17793                case COMPONENT_ENABLED_STATE_DISABLED:
17794                    if (!pkgSetting.disableComponentLPw(className, userId)) {
17795                        return;
17796                    }
17797                    break;
17798                case COMPONENT_ENABLED_STATE_DEFAULT:
17799                    if (!pkgSetting.restoreComponentLPw(className, userId)) {
17800                        return;
17801                    }
17802                    break;
17803                default:
17804                    Slog.e(TAG, "Invalid new component state: " + newState);
17805                    return;
17806                }
17807            }
17808            scheduleWritePackageRestrictionsLocked(userId);
17809            components = mPendingBroadcasts.get(userId, packageName);
17810            final boolean newPackage = components == null;
17811            if (newPackage) {
17812                components = new ArrayList<String>();
17813            }
17814            if (!components.contains(componentName)) {
17815                components.add(componentName);
17816            }
17817            if ((flags&PackageManager.DONT_KILL_APP) == 0) {
17818                sendNow = true;
17819                // Purge entry from pending broadcast list if another one exists already
17820                // since we are sending one right away.
17821                mPendingBroadcasts.remove(userId, packageName);
17822            } else {
17823                if (newPackage) {
17824                    mPendingBroadcasts.put(userId, packageName, components);
17825                }
17826                if (!mHandler.hasMessages(SEND_PENDING_BROADCAST)) {
17827                    // Schedule a message
17828                    mHandler.sendEmptyMessageDelayed(SEND_PENDING_BROADCAST, BROADCAST_DELAY);
17829                }
17830            }
17831        }
17832
17833        long callingId = Binder.clearCallingIdentity();
17834        try {
17835            if (sendNow) {
17836                packageUid = UserHandle.getUid(userId, pkgSetting.appId);
17837                sendPackageChangedBroadcast(packageName,
17838                        (flags&PackageManager.DONT_KILL_APP) != 0, components, packageUid);
17839            }
17840        } finally {
17841            Binder.restoreCallingIdentity(callingId);
17842        }
17843    }
17844
17845    @Override
17846    public void flushPackageRestrictionsAsUser(int userId) {
17847        if (!sUserManager.exists(userId)) {
17848            return;
17849        }
17850        enforceCrossUserPermission(Binder.getCallingUid(), userId, false /* requireFullPermission*/,
17851                false /* checkShell */, "flushPackageRestrictions");
17852        synchronized (mPackages) {
17853            mSettings.writePackageRestrictionsLPr(userId);
17854            mDirtyUsers.remove(userId);
17855            if (mDirtyUsers.isEmpty()) {
17856                mHandler.removeMessages(WRITE_PACKAGE_RESTRICTIONS);
17857            }
17858        }
17859    }
17860
17861    private void sendPackageChangedBroadcast(String packageName,
17862            boolean killFlag, ArrayList<String> componentNames, int packageUid) {
17863        if (DEBUG_INSTALL)
17864            Log.v(TAG, "Sending package changed: package=" + packageName + " components="
17865                    + componentNames);
17866        Bundle extras = new Bundle(4);
17867        extras.putString(Intent.EXTRA_CHANGED_COMPONENT_NAME, componentNames.get(0));
17868        String nameList[] = new String[componentNames.size()];
17869        componentNames.toArray(nameList);
17870        extras.putStringArray(Intent.EXTRA_CHANGED_COMPONENT_NAME_LIST, nameList);
17871        extras.putBoolean(Intent.EXTRA_DONT_KILL_APP, killFlag);
17872        extras.putInt(Intent.EXTRA_UID, packageUid);
17873        // If this is not reporting a change of the overall package, then only send it
17874        // to registered receivers.  We don't want to launch a swath of apps for every
17875        // little component state change.
17876        final int flags = !componentNames.contains(packageName)
17877                ? Intent.FLAG_RECEIVER_REGISTERED_ONLY : 0;
17878        sendPackageBroadcast(Intent.ACTION_PACKAGE_CHANGED,  packageName, extras, flags, null, null,
17879                new int[] {UserHandle.getUserId(packageUid)});
17880    }
17881
17882    @Override
17883    public void setPackageStoppedState(String packageName, boolean stopped, int userId) {
17884        if (!sUserManager.exists(userId)) return;
17885        final int uid = Binder.getCallingUid();
17886        final int permission = mContext.checkCallingOrSelfPermission(
17887                android.Manifest.permission.CHANGE_COMPONENT_ENABLED_STATE);
17888        final boolean allowedByPermission = (permission == PackageManager.PERMISSION_GRANTED);
17889        enforceCrossUserPermission(uid, userId,
17890                true /* requireFullPermission */, true /* checkShell */, "stop package");
17891        // writer
17892        synchronized (mPackages) {
17893            if (mSettings.setPackageStoppedStateLPw(this, packageName, stopped,
17894                    allowedByPermission, uid, userId)) {
17895                scheduleWritePackageRestrictionsLocked(userId);
17896            }
17897        }
17898    }
17899
17900    @Override
17901    public String getInstallerPackageName(String packageName) {
17902        // reader
17903        synchronized (mPackages) {
17904            return mSettings.getInstallerPackageNameLPr(packageName);
17905        }
17906    }
17907
17908    public boolean isOrphaned(String packageName) {
17909        // reader
17910        synchronized (mPackages) {
17911            return mSettings.isOrphaned(packageName);
17912        }
17913    }
17914
17915    @Override
17916    public int getApplicationEnabledSetting(String packageName, int userId) {
17917        if (!sUserManager.exists(userId)) return COMPONENT_ENABLED_STATE_DISABLED;
17918        int uid = Binder.getCallingUid();
17919        enforceCrossUserPermission(uid, userId,
17920                false /* requireFullPermission */, false /* checkShell */, "get enabled");
17921        // reader
17922        synchronized (mPackages) {
17923            return mSettings.getApplicationEnabledSettingLPr(packageName, userId);
17924        }
17925    }
17926
17927    @Override
17928    public int getComponentEnabledSetting(ComponentName componentName, int userId) {
17929        if (!sUserManager.exists(userId)) return COMPONENT_ENABLED_STATE_DISABLED;
17930        int uid = Binder.getCallingUid();
17931        enforceCrossUserPermission(uid, userId,
17932                false /* requireFullPermission */, false /* checkShell */, "get component enabled");
17933        // reader
17934        synchronized (mPackages) {
17935            return mSettings.getComponentEnabledSettingLPr(componentName, userId);
17936        }
17937    }
17938
17939    @Override
17940    public void enterSafeMode() {
17941        enforceSystemOrRoot("Only the system can request entering safe mode");
17942
17943        if (!mSystemReady) {
17944            mSafeMode = true;
17945        }
17946    }
17947
17948    @Override
17949    public void systemReady() {
17950        mSystemReady = true;
17951
17952        // Read the compatibilty setting when the system is ready.
17953        boolean compatibilityModeEnabled = android.provider.Settings.Global.getInt(
17954                mContext.getContentResolver(),
17955                android.provider.Settings.Global.COMPATIBILITY_MODE, 1) == 1;
17956        PackageParser.setCompatibilityModeEnabled(compatibilityModeEnabled);
17957        if (DEBUG_SETTINGS) {
17958            Log.d(TAG, "compatibility mode:" + compatibilityModeEnabled);
17959        }
17960
17961        int[] grantPermissionsUserIds = EMPTY_INT_ARRAY;
17962
17963        synchronized (mPackages) {
17964            // Verify that all of the preferred activity components actually
17965            // exist.  It is possible for applications to be updated and at
17966            // that point remove a previously declared activity component that
17967            // had been set as a preferred activity.  We try to clean this up
17968            // the next time we encounter that preferred activity, but it is
17969            // possible for the user flow to never be able to return to that
17970            // situation so here we do a sanity check to make sure we haven't
17971            // left any junk around.
17972            ArrayList<PreferredActivity> removed = new ArrayList<PreferredActivity>();
17973            for (int i=0; i<mSettings.mPreferredActivities.size(); i++) {
17974                PreferredIntentResolver pir = mSettings.mPreferredActivities.valueAt(i);
17975                removed.clear();
17976                for (PreferredActivity pa : pir.filterSet()) {
17977                    if (mActivities.mActivities.get(pa.mPref.mComponent) == null) {
17978                        removed.add(pa);
17979                    }
17980                }
17981                if (removed.size() > 0) {
17982                    for (int r=0; r<removed.size(); r++) {
17983                        PreferredActivity pa = removed.get(r);
17984                        Slog.w(TAG, "Removing dangling preferred activity: "
17985                                + pa.mPref.mComponent);
17986                        pir.removeFilter(pa);
17987                    }
17988                    mSettings.writePackageRestrictionsLPr(
17989                            mSettings.mPreferredActivities.keyAt(i));
17990                }
17991            }
17992
17993            for (int userId : UserManagerService.getInstance().getUserIds()) {
17994                if (!mSettings.areDefaultRuntimePermissionsGrantedLPr(userId)) {
17995                    grantPermissionsUserIds = ArrayUtils.appendInt(
17996                            grantPermissionsUserIds, userId);
17997                }
17998            }
17999        }
18000        sUserManager.systemReady();
18001
18002        // If we upgraded grant all default permissions before kicking off.
18003        for (int userId : grantPermissionsUserIds) {
18004            mDefaultPermissionPolicy.grantDefaultPermissions(userId);
18005        }
18006
18007        // Kick off any messages waiting for system ready
18008        if (mPostSystemReadyMessages != null) {
18009            for (Message msg : mPostSystemReadyMessages) {
18010                msg.sendToTarget();
18011            }
18012            mPostSystemReadyMessages = null;
18013        }
18014
18015        // Watch for external volumes that come and go over time
18016        final StorageManager storage = mContext.getSystemService(StorageManager.class);
18017        storage.registerListener(mStorageListener);
18018
18019        mInstallerService.systemReady();
18020        mPackageDexOptimizer.systemReady();
18021
18022        MountServiceInternal mountServiceInternal = LocalServices.getService(
18023                MountServiceInternal.class);
18024        mountServiceInternal.addExternalStoragePolicy(
18025                new MountServiceInternal.ExternalStorageMountPolicy() {
18026            @Override
18027            public int getMountMode(int uid, String packageName) {
18028                if (Process.isIsolated(uid)) {
18029                    return Zygote.MOUNT_EXTERNAL_NONE;
18030                }
18031                if (checkUidPermission(WRITE_MEDIA_STORAGE, uid) == PERMISSION_GRANTED) {
18032                    return Zygote.MOUNT_EXTERNAL_DEFAULT;
18033                }
18034                if (checkUidPermission(READ_EXTERNAL_STORAGE, uid) == PERMISSION_DENIED) {
18035                    return Zygote.MOUNT_EXTERNAL_DEFAULT;
18036                }
18037                if (checkUidPermission(WRITE_EXTERNAL_STORAGE, uid) == PERMISSION_DENIED) {
18038                    return Zygote.MOUNT_EXTERNAL_READ;
18039                }
18040                return Zygote.MOUNT_EXTERNAL_WRITE;
18041            }
18042
18043            @Override
18044            public boolean hasExternalStorage(int uid, String packageName) {
18045                return true;
18046            }
18047        });
18048
18049        // Now that we're mostly running, clean up stale users and apps
18050        reconcileUsers(StorageManager.UUID_PRIVATE_INTERNAL);
18051        reconcileApps(StorageManager.UUID_PRIVATE_INTERNAL);
18052    }
18053
18054    @Override
18055    public boolean isSafeMode() {
18056        return mSafeMode;
18057    }
18058
18059    @Override
18060    public boolean hasSystemUidErrors() {
18061        return mHasSystemUidErrors;
18062    }
18063
18064    static String arrayToString(int[] array) {
18065        StringBuffer buf = new StringBuffer(128);
18066        buf.append('[');
18067        if (array != null) {
18068            for (int i=0; i<array.length; i++) {
18069                if (i > 0) buf.append(", ");
18070                buf.append(array[i]);
18071            }
18072        }
18073        buf.append(']');
18074        return buf.toString();
18075    }
18076
18077    static class DumpState {
18078        public static final int DUMP_LIBS = 1 << 0;
18079        public static final int DUMP_FEATURES = 1 << 1;
18080        public static final int DUMP_ACTIVITY_RESOLVERS = 1 << 2;
18081        public static final int DUMP_SERVICE_RESOLVERS = 1 << 3;
18082        public static final int DUMP_RECEIVER_RESOLVERS = 1 << 4;
18083        public static final int DUMP_CONTENT_RESOLVERS = 1 << 5;
18084        public static final int DUMP_PERMISSIONS = 1 << 6;
18085        public static final int DUMP_PACKAGES = 1 << 7;
18086        public static final int DUMP_SHARED_USERS = 1 << 8;
18087        public static final int DUMP_MESSAGES = 1 << 9;
18088        public static final int DUMP_PROVIDERS = 1 << 10;
18089        public static final int DUMP_VERIFIERS = 1 << 11;
18090        public static final int DUMP_PREFERRED = 1 << 12;
18091        public static final int DUMP_PREFERRED_XML = 1 << 13;
18092        public static final int DUMP_KEYSETS = 1 << 14;
18093        public static final int DUMP_VERSION = 1 << 15;
18094        public static final int DUMP_INSTALLS = 1 << 16;
18095        public static final int DUMP_INTENT_FILTER_VERIFIERS = 1 << 17;
18096        public static final int DUMP_DOMAIN_PREFERRED = 1 << 18;
18097        public static final int DUMP_FROZEN = 1 << 19;
18098        public static final int DUMP_DEXOPT = 1 << 20;
18099
18100        public static final int OPTION_SHOW_FILTERS = 1 << 0;
18101
18102        private int mTypes;
18103
18104        private int mOptions;
18105
18106        private boolean mTitlePrinted;
18107
18108        private SharedUserSetting mSharedUser;
18109
18110        public boolean isDumping(int type) {
18111            if (mTypes == 0 && type != DUMP_PREFERRED_XML) {
18112                return true;
18113            }
18114
18115            return (mTypes & type) != 0;
18116        }
18117
18118        public void setDump(int type) {
18119            mTypes |= type;
18120        }
18121
18122        public boolean isOptionEnabled(int option) {
18123            return (mOptions & option) != 0;
18124        }
18125
18126        public void setOptionEnabled(int option) {
18127            mOptions |= option;
18128        }
18129
18130        public boolean onTitlePrinted() {
18131            final boolean printed = mTitlePrinted;
18132            mTitlePrinted = true;
18133            return printed;
18134        }
18135
18136        public boolean getTitlePrinted() {
18137            return mTitlePrinted;
18138        }
18139
18140        public void setTitlePrinted(boolean enabled) {
18141            mTitlePrinted = enabled;
18142        }
18143
18144        public SharedUserSetting getSharedUser() {
18145            return mSharedUser;
18146        }
18147
18148        public void setSharedUser(SharedUserSetting user) {
18149            mSharedUser = user;
18150        }
18151    }
18152
18153    @Override
18154    public void onShellCommand(FileDescriptor in, FileDescriptor out,
18155            FileDescriptor err, String[] args, ResultReceiver resultReceiver) {
18156        (new PackageManagerShellCommand(this)).exec(
18157                this, in, out, err, args, resultReceiver);
18158    }
18159
18160    @Override
18161    protected void dump(FileDescriptor fd, PrintWriter pw, String[] args) {
18162        if (mContext.checkCallingOrSelfPermission(android.Manifest.permission.DUMP)
18163                != PackageManager.PERMISSION_GRANTED) {
18164            pw.println("Permission Denial: can't dump ActivityManager from from pid="
18165                    + Binder.getCallingPid()
18166                    + ", uid=" + Binder.getCallingUid()
18167                    + " without permission "
18168                    + android.Manifest.permission.DUMP);
18169            return;
18170        }
18171
18172        DumpState dumpState = new DumpState();
18173        boolean fullPreferred = false;
18174        boolean checkin = false;
18175
18176        String packageName = null;
18177        ArraySet<String> permissionNames = null;
18178
18179        int opti = 0;
18180        while (opti < args.length) {
18181            String opt = args[opti];
18182            if (opt == null || opt.length() <= 0 || opt.charAt(0) != '-') {
18183                break;
18184            }
18185            opti++;
18186
18187            if ("-a".equals(opt)) {
18188                // Right now we only know how to print all.
18189            } else if ("-h".equals(opt)) {
18190                pw.println("Package manager dump options:");
18191                pw.println("  [-h] [-f] [--checkin] [cmd] ...");
18192                pw.println("    --checkin: dump for a checkin");
18193                pw.println("    -f: print details of intent filters");
18194                pw.println("    -h: print this help");
18195                pw.println("  cmd may be one of:");
18196                pw.println("    l[ibraries]: list known shared libraries");
18197                pw.println("    f[eatures]: list device features");
18198                pw.println("    k[eysets]: print known keysets");
18199                pw.println("    r[esolvers] [activity|service|receiver|content]: dump intent resolvers");
18200                pw.println("    perm[issions]: dump permissions");
18201                pw.println("    permission [name ...]: dump declaration and use of given permission");
18202                pw.println("    pref[erred]: print preferred package settings");
18203                pw.println("    preferred-xml [--full]: print preferred package settings as xml");
18204                pw.println("    prov[iders]: dump content providers");
18205                pw.println("    p[ackages]: dump installed packages");
18206                pw.println("    s[hared-users]: dump shared user IDs");
18207                pw.println("    m[essages]: print collected runtime messages");
18208                pw.println("    v[erifiers]: print package verifier info");
18209                pw.println("    d[omain-preferred-apps]: print domains preferred apps");
18210                pw.println("    i[ntent-filter-verifiers]|ifv: print intent filter verifier info");
18211                pw.println("    version: print database version info");
18212                pw.println("    write: write current settings now");
18213                pw.println("    installs: details about install sessions");
18214                pw.println("    check-permission <permission> <package> [<user>]: does pkg hold perm?");
18215                pw.println("    dexopt: dump dexopt state");
18216                pw.println("    <package.name>: info about given package");
18217                return;
18218            } else if ("--checkin".equals(opt)) {
18219                checkin = true;
18220            } else if ("-f".equals(opt)) {
18221                dumpState.setOptionEnabled(DumpState.OPTION_SHOW_FILTERS);
18222            } else {
18223                pw.println("Unknown argument: " + opt + "; use -h for help");
18224            }
18225        }
18226
18227        // Is the caller requesting to dump a particular piece of data?
18228        if (opti < args.length) {
18229            String cmd = args[opti];
18230            opti++;
18231            // Is this a package name?
18232            if ("android".equals(cmd) || cmd.contains(".")) {
18233                packageName = cmd;
18234                // When dumping a single package, we always dump all of its
18235                // filter information since the amount of data will be reasonable.
18236                dumpState.setOptionEnabled(DumpState.OPTION_SHOW_FILTERS);
18237            } else if ("check-permission".equals(cmd)) {
18238                if (opti >= args.length) {
18239                    pw.println("Error: check-permission missing permission argument");
18240                    return;
18241                }
18242                String perm = args[opti];
18243                opti++;
18244                if (opti >= args.length) {
18245                    pw.println("Error: check-permission missing package argument");
18246                    return;
18247                }
18248                String pkg = args[opti];
18249                opti++;
18250                int user = UserHandle.getUserId(Binder.getCallingUid());
18251                if (opti < args.length) {
18252                    try {
18253                        user = Integer.parseInt(args[opti]);
18254                    } catch (NumberFormatException e) {
18255                        pw.println("Error: check-permission user argument is not a number: "
18256                                + args[opti]);
18257                        return;
18258                    }
18259                }
18260                pw.println(checkPermission(perm, pkg, user));
18261                return;
18262            } else if ("l".equals(cmd) || "libraries".equals(cmd)) {
18263                dumpState.setDump(DumpState.DUMP_LIBS);
18264            } else if ("f".equals(cmd) || "features".equals(cmd)) {
18265                dumpState.setDump(DumpState.DUMP_FEATURES);
18266            } else if ("r".equals(cmd) || "resolvers".equals(cmd)) {
18267                if (opti >= args.length) {
18268                    dumpState.setDump(DumpState.DUMP_ACTIVITY_RESOLVERS
18269                            | DumpState.DUMP_SERVICE_RESOLVERS
18270                            | DumpState.DUMP_RECEIVER_RESOLVERS
18271                            | DumpState.DUMP_CONTENT_RESOLVERS);
18272                } else {
18273                    while (opti < args.length) {
18274                        String name = args[opti];
18275                        if ("a".equals(name) || "activity".equals(name)) {
18276                            dumpState.setDump(DumpState.DUMP_ACTIVITY_RESOLVERS);
18277                        } else if ("s".equals(name) || "service".equals(name)) {
18278                            dumpState.setDump(DumpState.DUMP_SERVICE_RESOLVERS);
18279                        } else if ("r".equals(name) || "receiver".equals(name)) {
18280                            dumpState.setDump(DumpState.DUMP_RECEIVER_RESOLVERS);
18281                        } else if ("c".equals(name) || "content".equals(name)) {
18282                            dumpState.setDump(DumpState.DUMP_CONTENT_RESOLVERS);
18283                        } else {
18284                            pw.println("Error: unknown resolver table type: " + name);
18285                            return;
18286                        }
18287                        opti++;
18288                    }
18289                }
18290            } else if ("perm".equals(cmd) || "permissions".equals(cmd)) {
18291                dumpState.setDump(DumpState.DUMP_PERMISSIONS);
18292            } else if ("permission".equals(cmd)) {
18293                if (opti >= args.length) {
18294                    pw.println("Error: permission requires permission name");
18295                    return;
18296                }
18297                permissionNames = new ArraySet<>();
18298                while (opti < args.length) {
18299                    permissionNames.add(args[opti]);
18300                    opti++;
18301                }
18302                dumpState.setDump(DumpState.DUMP_PERMISSIONS
18303                        | DumpState.DUMP_PACKAGES | DumpState.DUMP_SHARED_USERS);
18304            } else if ("pref".equals(cmd) || "preferred".equals(cmd)) {
18305                dumpState.setDump(DumpState.DUMP_PREFERRED);
18306            } else if ("preferred-xml".equals(cmd)) {
18307                dumpState.setDump(DumpState.DUMP_PREFERRED_XML);
18308                if (opti < args.length && "--full".equals(args[opti])) {
18309                    fullPreferred = true;
18310                    opti++;
18311                }
18312            } else if ("d".equals(cmd) || "domain-preferred-apps".equals(cmd)) {
18313                dumpState.setDump(DumpState.DUMP_DOMAIN_PREFERRED);
18314            } else if ("p".equals(cmd) || "packages".equals(cmd)) {
18315                dumpState.setDump(DumpState.DUMP_PACKAGES);
18316            } else if ("s".equals(cmd) || "shared-users".equals(cmd)) {
18317                dumpState.setDump(DumpState.DUMP_SHARED_USERS);
18318            } else if ("prov".equals(cmd) || "providers".equals(cmd)) {
18319                dumpState.setDump(DumpState.DUMP_PROVIDERS);
18320            } else if ("m".equals(cmd) || "messages".equals(cmd)) {
18321                dumpState.setDump(DumpState.DUMP_MESSAGES);
18322            } else if ("v".equals(cmd) || "verifiers".equals(cmd)) {
18323                dumpState.setDump(DumpState.DUMP_VERIFIERS);
18324            } else if ("i".equals(cmd) || "ifv".equals(cmd)
18325                    || "intent-filter-verifiers".equals(cmd)) {
18326                dumpState.setDump(DumpState.DUMP_INTENT_FILTER_VERIFIERS);
18327            } else if ("version".equals(cmd)) {
18328                dumpState.setDump(DumpState.DUMP_VERSION);
18329            } else if ("k".equals(cmd) || "keysets".equals(cmd)) {
18330                dumpState.setDump(DumpState.DUMP_KEYSETS);
18331            } else if ("installs".equals(cmd)) {
18332                dumpState.setDump(DumpState.DUMP_INSTALLS);
18333            } else if ("frozen".equals(cmd)) {
18334                dumpState.setDump(DumpState.DUMP_FROZEN);
18335            } else if ("dexopt".equals(cmd)) {
18336                dumpState.setDump(DumpState.DUMP_DEXOPT);
18337            } else if ("write".equals(cmd)) {
18338                synchronized (mPackages) {
18339                    mSettings.writeLPr();
18340                    pw.println("Settings written.");
18341                    return;
18342                }
18343            }
18344        }
18345
18346        if (checkin) {
18347            pw.println("vers,1");
18348        }
18349
18350        // reader
18351        synchronized (mPackages) {
18352            if (dumpState.isDumping(DumpState.DUMP_VERSION) && packageName == null) {
18353                if (!checkin) {
18354                    if (dumpState.onTitlePrinted())
18355                        pw.println();
18356                    pw.println("Database versions:");
18357                    mSettings.dumpVersionLPr(new IndentingPrintWriter(pw, "  "));
18358                }
18359            }
18360
18361            if (dumpState.isDumping(DumpState.DUMP_VERIFIERS) && packageName == null) {
18362                if (!checkin) {
18363                    if (dumpState.onTitlePrinted())
18364                        pw.println();
18365                    pw.println("Verifiers:");
18366                    pw.print("  Required: ");
18367                    pw.print(mRequiredVerifierPackage);
18368                    pw.print(" (uid=");
18369                    pw.print(getPackageUid(mRequiredVerifierPackage, MATCH_DEBUG_TRIAGED_MISSING,
18370                            UserHandle.USER_SYSTEM));
18371                    pw.println(")");
18372                } else if (mRequiredVerifierPackage != null) {
18373                    pw.print("vrfy,"); pw.print(mRequiredVerifierPackage);
18374                    pw.print(",");
18375                    pw.println(getPackageUid(mRequiredVerifierPackage, MATCH_DEBUG_TRIAGED_MISSING,
18376                            UserHandle.USER_SYSTEM));
18377                }
18378            }
18379
18380            if (dumpState.isDumping(DumpState.DUMP_INTENT_FILTER_VERIFIERS) &&
18381                    packageName == null) {
18382                if (mIntentFilterVerifierComponent != null) {
18383                    String verifierPackageName = mIntentFilterVerifierComponent.getPackageName();
18384                    if (!checkin) {
18385                        if (dumpState.onTitlePrinted())
18386                            pw.println();
18387                        pw.println("Intent Filter Verifier:");
18388                        pw.print("  Using: ");
18389                        pw.print(verifierPackageName);
18390                        pw.print(" (uid=");
18391                        pw.print(getPackageUid(verifierPackageName, MATCH_DEBUG_TRIAGED_MISSING,
18392                                UserHandle.USER_SYSTEM));
18393                        pw.println(")");
18394                    } else if (verifierPackageName != null) {
18395                        pw.print("ifv,"); pw.print(verifierPackageName);
18396                        pw.print(",");
18397                        pw.println(getPackageUid(verifierPackageName, MATCH_DEBUG_TRIAGED_MISSING,
18398                                UserHandle.USER_SYSTEM));
18399                    }
18400                } else {
18401                    pw.println();
18402                    pw.println("No Intent Filter Verifier available!");
18403                }
18404            }
18405
18406            if (dumpState.isDumping(DumpState.DUMP_LIBS) && packageName == null) {
18407                boolean printedHeader = false;
18408                final Iterator<String> it = mSharedLibraries.keySet().iterator();
18409                while (it.hasNext()) {
18410                    String name = it.next();
18411                    SharedLibraryEntry ent = mSharedLibraries.get(name);
18412                    if (!checkin) {
18413                        if (!printedHeader) {
18414                            if (dumpState.onTitlePrinted())
18415                                pw.println();
18416                            pw.println("Libraries:");
18417                            printedHeader = true;
18418                        }
18419                        pw.print("  ");
18420                    } else {
18421                        pw.print("lib,");
18422                    }
18423                    pw.print(name);
18424                    if (!checkin) {
18425                        pw.print(" -> ");
18426                    }
18427                    if (ent.path != null) {
18428                        if (!checkin) {
18429                            pw.print("(jar) ");
18430                            pw.print(ent.path);
18431                        } else {
18432                            pw.print(",jar,");
18433                            pw.print(ent.path);
18434                        }
18435                    } else {
18436                        if (!checkin) {
18437                            pw.print("(apk) ");
18438                            pw.print(ent.apk);
18439                        } else {
18440                            pw.print(",apk,");
18441                            pw.print(ent.apk);
18442                        }
18443                    }
18444                    pw.println();
18445                }
18446            }
18447
18448            if (dumpState.isDumping(DumpState.DUMP_FEATURES) && packageName == null) {
18449                if (dumpState.onTitlePrinted())
18450                    pw.println();
18451                if (!checkin) {
18452                    pw.println("Features:");
18453                }
18454
18455                for (FeatureInfo feat : mAvailableFeatures.values()) {
18456                    if (checkin) {
18457                        pw.print("feat,");
18458                        pw.print(feat.name);
18459                        pw.print(",");
18460                        pw.println(feat.version);
18461                    } else {
18462                        pw.print("  ");
18463                        pw.print(feat.name);
18464                        if (feat.version > 0) {
18465                            pw.print(" version=");
18466                            pw.print(feat.version);
18467                        }
18468                        pw.println();
18469                    }
18470                }
18471            }
18472
18473            if (!checkin && dumpState.isDumping(DumpState.DUMP_ACTIVITY_RESOLVERS)) {
18474                if (mActivities.dump(pw, dumpState.getTitlePrinted() ? "\nActivity Resolver Table:"
18475                        : "Activity Resolver Table:", "  ", packageName,
18476                        dumpState.isOptionEnabled(DumpState.OPTION_SHOW_FILTERS), true)) {
18477                    dumpState.setTitlePrinted(true);
18478                }
18479            }
18480            if (!checkin && dumpState.isDumping(DumpState.DUMP_RECEIVER_RESOLVERS)) {
18481                if (mReceivers.dump(pw, dumpState.getTitlePrinted() ? "\nReceiver Resolver Table:"
18482                        : "Receiver Resolver Table:", "  ", packageName,
18483                        dumpState.isOptionEnabled(DumpState.OPTION_SHOW_FILTERS), true)) {
18484                    dumpState.setTitlePrinted(true);
18485                }
18486            }
18487            if (!checkin && dumpState.isDumping(DumpState.DUMP_SERVICE_RESOLVERS)) {
18488                if (mServices.dump(pw, dumpState.getTitlePrinted() ? "\nService Resolver Table:"
18489                        : "Service Resolver Table:", "  ", packageName,
18490                        dumpState.isOptionEnabled(DumpState.OPTION_SHOW_FILTERS), true)) {
18491                    dumpState.setTitlePrinted(true);
18492                }
18493            }
18494            if (!checkin && dumpState.isDumping(DumpState.DUMP_CONTENT_RESOLVERS)) {
18495                if (mProviders.dump(pw, dumpState.getTitlePrinted() ? "\nProvider Resolver Table:"
18496                        : "Provider Resolver Table:", "  ", packageName,
18497                        dumpState.isOptionEnabled(DumpState.OPTION_SHOW_FILTERS), true)) {
18498                    dumpState.setTitlePrinted(true);
18499                }
18500            }
18501
18502            if (!checkin && dumpState.isDumping(DumpState.DUMP_PREFERRED)) {
18503                for (int i=0; i<mSettings.mPreferredActivities.size(); i++) {
18504                    PreferredIntentResolver pir = mSettings.mPreferredActivities.valueAt(i);
18505                    int user = mSettings.mPreferredActivities.keyAt(i);
18506                    if (pir.dump(pw,
18507                            dumpState.getTitlePrinted()
18508                                ? "\nPreferred Activities User " + user + ":"
18509                                : "Preferred Activities User " + user + ":", "  ",
18510                            packageName, true, false)) {
18511                        dumpState.setTitlePrinted(true);
18512                    }
18513                }
18514            }
18515
18516            if (!checkin && dumpState.isDumping(DumpState.DUMP_PREFERRED_XML)) {
18517                pw.flush();
18518                FileOutputStream fout = new FileOutputStream(fd);
18519                BufferedOutputStream str = new BufferedOutputStream(fout);
18520                XmlSerializer serializer = new FastXmlSerializer();
18521                try {
18522                    serializer.setOutput(str, StandardCharsets.UTF_8.name());
18523                    serializer.startDocument(null, true);
18524                    serializer.setFeature(
18525                            "http://xmlpull.org/v1/doc/features.html#indent-output", true);
18526                    mSettings.writePreferredActivitiesLPr(serializer, 0, fullPreferred);
18527                    serializer.endDocument();
18528                    serializer.flush();
18529                } catch (IllegalArgumentException e) {
18530                    pw.println("Failed writing: " + e);
18531                } catch (IllegalStateException e) {
18532                    pw.println("Failed writing: " + e);
18533                } catch (IOException e) {
18534                    pw.println("Failed writing: " + e);
18535                }
18536            }
18537
18538            if (!checkin
18539                    && dumpState.isDumping(DumpState.DUMP_DOMAIN_PREFERRED)
18540                    && packageName == null) {
18541                pw.println();
18542                int count = mSettings.mPackages.size();
18543                if (count == 0) {
18544                    pw.println("No applications!");
18545                    pw.println();
18546                } else {
18547                    final String prefix = "  ";
18548                    Collection<PackageSetting> allPackageSettings = mSettings.mPackages.values();
18549                    if (allPackageSettings.size() == 0) {
18550                        pw.println("No domain preferred apps!");
18551                        pw.println();
18552                    } else {
18553                        pw.println("App verification status:");
18554                        pw.println();
18555                        count = 0;
18556                        for (PackageSetting ps : allPackageSettings) {
18557                            IntentFilterVerificationInfo ivi = ps.getIntentFilterVerificationInfo();
18558                            if (ivi == null || ivi.getPackageName() == null) continue;
18559                            pw.println(prefix + "Package: " + ivi.getPackageName());
18560                            pw.println(prefix + "Domains: " + ivi.getDomainsString());
18561                            pw.println(prefix + "Status:  " + ivi.getStatusString());
18562                            pw.println();
18563                            count++;
18564                        }
18565                        if (count == 0) {
18566                            pw.println(prefix + "No app verification established.");
18567                            pw.println();
18568                        }
18569                        for (int userId : sUserManager.getUserIds()) {
18570                            pw.println("App linkages for user " + userId + ":");
18571                            pw.println();
18572                            count = 0;
18573                            for (PackageSetting ps : allPackageSettings) {
18574                                final long status = ps.getDomainVerificationStatusForUser(userId);
18575                                if (status >> 32 == INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_UNDEFINED) {
18576                                    continue;
18577                                }
18578                                pw.println(prefix + "Package: " + ps.name);
18579                                pw.println(prefix + "Domains: " + dumpDomainString(ps.name));
18580                                String statusStr = IntentFilterVerificationInfo.
18581                                        getStatusStringFromValue(status);
18582                                pw.println(prefix + "Status:  " + statusStr);
18583                                pw.println();
18584                                count++;
18585                            }
18586                            if (count == 0) {
18587                                pw.println(prefix + "No configured app linkages.");
18588                                pw.println();
18589                            }
18590                        }
18591                    }
18592                }
18593            }
18594
18595            if (!checkin && dumpState.isDumping(DumpState.DUMP_PERMISSIONS)) {
18596                mSettings.dumpPermissionsLPr(pw, packageName, permissionNames, dumpState);
18597                if (packageName == null && permissionNames == null) {
18598                    for (int iperm=0; iperm<mAppOpPermissionPackages.size(); iperm++) {
18599                        if (iperm == 0) {
18600                            if (dumpState.onTitlePrinted())
18601                                pw.println();
18602                            pw.println("AppOp Permissions:");
18603                        }
18604                        pw.print("  AppOp Permission ");
18605                        pw.print(mAppOpPermissionPackages.keyAt(iperm));
18606                        pw.println(":");
18607                        ArraySet<String> pkgs = mAppOpPermissionPackages.valueAt(iperm);
18608                        for (int ipkg=0; ipkg<pkgs.size(); ipkg++) {
18609                            pw.print("    "); pw.println(pkgs.valueAt(ipkg));
18610                        }
18611                    }
18612                }
18613            }
18614
18615            if (!checkin && dumpState.isDumping(DumpState.DUMP_PROVIDERS)) {
18616                boolean printedSomething = false;
18617                for (PackageParser.Provider p : mProviders.mProviders.values()) {
18618                    if (packageName != null && !packageName.equals(p.info.packageName)) {
18619                        continue;
18620                    }
18621                    if (!printedSomething) {
18622                        if (dumpState.onTitlePrinted())
18623                            pw.println();
18624                        pw.println("Registered ContentProviders:");
18625                        printedSomething = true;
18626                    }
18627                    pw.print("  "); p.printComponentShortName(pw); pw.println(":");
18628                    pw.print("    "); pw.println(p.toString());
18629                }
18630                printedSomething = false;
18631                for (Map.Entry<String, PackageParser.Provider> entry :
18632                        mProvidersByAuthority.entrySet()) {
18633                    PackageParser.Provider p = entry.getValue();
18634                    if (packageName != null && !packageName.equals(p.info.packageName)) {
18635                        continue;
18636                    }
18637                    if (!printedSomething) {
18638                        if (dumpState.onTitlePrinted())
18639                            pw.println();
18640                        pw.println("ContentProvider Authorities:");
18641                        printedSomething = true;
18642                    }
18643                    pw.print("  ["); pw.print(entry.getKey()); pw.println("]:");
18644                    pw.print("    "); pw.println(p.toString());
18645                    if (p.info != null && p.info.applicationInfo != null) {
18646                        final String appInfo = p.info.applicationInfo.toString();
18647                        pw.print("      applicationInfo="); pw.println(appInfo);
18648                    }
18649                }
18650            }
18651
18652            if (!checkin && dumpState.isDumping(DumpState.DUMP_KEYSETS)) {
18653                mSettings.mKeySetManagerService.dumpLPr(pw, packageName, dumpState);
18654            }
18655
18656            if (dumpState.isDumping(DumpState.DUMP_PACKAGES)) {
18657                mSettings.dumpPackagesLPr(pw, packageName, permissionNames, dumpState, checkin);
18658            }
18659
18660            if (dumpState.isDumping(DumpState.DUMP_SHARED_USERS)) {
18661                mSettings.dumpSharedUsersLPr(pw, packageName, permissionNames, dumpState, checkin);
18662            }
18663
18664            if (!checkin && dumpState.isDumping(DumpState.DUMP_PERMISSIONS) && packageName == null) {
18665                mSettings.dumpRestoredPermissionGrantsLPr(pw, dumpState);
18666            }
18667
18668            if (!checkin && dumpState.isDumping(DumpState.DUMP_INSTALLS) && packageName == null) {
18669                // XXX should handle packageName != null by dumping only install data that
18670                // the given package is involved with.
18671                if (dumpState.onTitlePrinted()) pw.println();
18672                mInstallerService.dump(new IndentingPrintWriter(pw, "  ", 120));
18673            }
18674
18675            if (!checkin && dumpState.isDumping(DumpState.DUMP_FROZEN) && packageName == null) {
18676                // XXX should handle packageName != null by dumping only install data that
18677                // the given package is involved with.
18678                if (dumpState.onTitlePrinted()) pw.println();
18679
18680                final IndentingPrintWriter ipw = new IndentingPrintWriter(pw, "  ", 120);
18681                ipw.println();
18682                ipw.println("Frozen packages:");
18683                ipw.increaseIndent();
18684                if (mFrozenPackages.size() == 0) {
18685                    ipw.println("(none)");
18686                } else {
18687                    for (int i = 0; i < mFrozenPackages.size(); i++) {
18688                        ipw.println(mFrozenPackages.valueAt(i));
18689                    }
18690                }
18691                ipw.decreaseIndent();
18692            }
18693
18694            if (!checkin && dumpState.isDumping(DumpState.DUMP_DEXOPT)) {
18695                if (dumpState.onTitlePrinted()) pw.println();
18696                dumpDexoptStateLPr(pw, packageName);
18697            }
18698
18699            if (!checkin && dumpState.isDumping(DumpState.DUMP_MESSAGES) && packageName == null) {
18700                if (dumpState.onTitlePrinted()) pw.println();
18701                mSettings.dumpReadMessagesLPr(pw, dumpState);
18702
18703                pw.println();
18704                pw.println("Package warning messages:");
18705                BufferedReader in = null;
18706                String line = null;
18707                try {
18708                    in = new BufferedReader(new FileReader(getSettingsProblemFile()));
18709                    while ((line = in.readLine()) != null) {
18710                        if (line.contains("ignored: updated version")) continue;
18711                        pw.println(line);
18712                    }
18713                } catch (IOException ignored) {
18714                } finally {
18715                    IoUtils.closeQuietly(in);
18716                }
18717            }
18718
18719            if (checkin && dumpState.isDumping(DumpState.DUMP_MESSAGES)) {
18720                BufferedReader in = null;
18721                String line = null;
18722                try {
18723                    in = new BufferedReader(new FileReader(getSettingsProblemFile()));
18724                    while ((line = in.readLine()) != null) {
18725                        if (line.contains("ignored: updated version")) continue;
18726                        pw.print("msg,");
18727                        pw.println(line);
18728                    }
18729                } catch (IOException ignored) {
18730                } finally {
18731                    IoUtils.closeQuietly(in);
18732                }
18733            }
18734        }
18735    }
18736
18737    private void dumpDexoptStateLPr(PrintWriter pw, String packageName) {
18738        final IndentingPrintWriter ipw = new IndentingPrintWriter(pw, "  ", 120);
18739        ipw.println();
18740        ipw.println("Dexopt state:");
18741        ipw.increaseIndent();
18742        Collection<PackageParser.Package> packages = null;
18743        if (packageName != null) {
18744            PackageParser.Package targetPackage = mPackages.get(packageName);
18745            if (targetPackage != null) {
18746                packages = Collections.singletonList(targetPackage);
18747            } else {
18748                ipw.println("Unable to find package: " + packageName);
18749                return;
18750            }
18751        } else {
18752            packages = mPackages.values();
18753        }
18754
18755        for (PackageParser.Package pkg : packages) {
18756            ipw.println("[" + pkg.packageName + "]");
18757            ipw.increaseIndent();
18758            mPackageDexOptimizer.dumpDexoptState(ipw, pkg);
18759            ipw.decreaseIndent();
18760        }
18761    }
18762
18763    private String dumpDomainString(String packageName) {
18764        List<IntentFilterVerificationInfo> iviList = getIntentFilterVerifications(packageName)
18765                .getList();
18766        List<IntentFilter> filters = getAllIntentFilters(packageName).getList();
18767
18768        ArraySet<String> result = new ArraySet<>();
18769        if (iviList.size() > 0) {
18770            for (IntentFilterVerificationInfo ivi : iviList) {
18771                for (String host : ivi.getDomains()) {
18772                    result.add(host);
18773                }
18774            }
18775        }
18776        if (filters != null && filters.size() > 0) {
18777            for (IntentFilter filter : filters) {
18778                if (filter.hasCategory(Intent.CATEGORY_BROWSABLE)
18779                        && (filter.hasDataScheme(IntentFilter.SCHEME_HTTP) ||
18780                                filter.hasDataScheme(IntentFilter.SCHEME_HTTPS))) {
18781                    result.addAll(filter.getHostsList());
18782                }
18783            }
18784        }
18785
18786        StringBuilder sb = new StringBuilder(result.size() * 16);
18787        for (String domain : result) {
18788            if (sb.length() > 0) sb.append(" ");
18789            sb.append(domain);
18790        }
18791        return sb.toString();
18792    }
18793
18794    // ------- apps on sdcard specific code -------
18795    static final boolean DEBUG_SD_INSTALL = false;
18796
18797    private static final String SD_ENCRYPTION_KEYSTORE_NAME = "AppsOnSD";
18798
18799    private static final String SD_ENCRYPTION_ALGORITHM = "AES";
18800
18801    private boolean mMediaMounted = false;
18802
18803    static String getEncryptKey() {
18804        try {
18805            String sdEncKey = SystemKeyStore.getInstance().retrieveKeyHexString(
18806                    SD_ENCRYPTION_KEYSTORE_NAME);
18807            if (sdEncKey == null) {
18808                sdEncKey = SystemKeyStore.getInstance().generateNewKeyHexString(128,
18809                        SD_ENCRYPTION_ALGORITHM, SD_ENCRYPTION_KEYSTORE_NAME);
18810                if (sdEncKey == null) {
18811                    Slog.e(TAG, "Failed to create encryption keys");
18812                    return null;
18813                }
18814            }
18815            return sdEncKey;
18816        } catch (NoSuchAlgorithmException nsae) {
18817            Slog.e(TAG, "Failed to create encryption keys with exception: " + nsae);
18818            return null;
18819        } catch (IOException ioe) {
18820            Slog.e(TAG, "Failed to retrieve encryption keys with exception: " + ioe);
18821            return null;
18822        }
18823    }
18824
18825    /*
18826     * Update media status on PackageManager.
18827     */
18828    @Override
18829    public void updateExternalMediaStatus(final boolean mediaStatus, final boolean reportStatus) {
18830        int callingUid = Binder.getCallingUid();
18831        if (callingUid != 0 && callingUid != Process.SYSTEM_UID) {
18832            throw new SecurityException("Media status can only be updated by the system");
18833        }
18834        // reader; this apparently protects mMediaMounted, but should probably
18835        // be a different lock in that case.
18836        synchronized (mPackages) {
18837            Log.i(TAG, "Updating external media status from "
18838                    + (mMediaMounted ? "mounted" : "unmounted") + " to "
18839                    + (mediaStatus ? "mounted" : "unmounted"));
18840            if (DEBUG_SD_INSTALL)
18841                Log.i(TAG, "updateExternalMediaStatus:: mediaStatus=" + mediaStatus
18842                        + ", mMediaMounted=" + mMediaMounted);
18843            if (mediaStatus == mMediaMounted) {
18844                final Message msg = mHandler.obtainMessage(UPDATED_MEDIA_STATUS, reportStatus ? 1
18845                        : 0, -1);
18846                mHandler.sendMessage(msg);
18847                return;
18848            }
18849            mMediaMounted = mediaStatus;
18850        }
18851        // Queue up an async operation since the package installation may take a
18852        // little while.
18853        mHandler.post(new Runnable() {
18854            public void run() {
18855                updateExternalMediaStatusInner(mediaStatus, reportStatus, true);
18856            }
18857        });
18858    }
18859
18860    /**
18861     * Called by MountService when the initial ASECs to scan are available.
18862     * Should block until all the ASEC containers are finished being scanned.
18863     */
18864    public void scanAvailableAsecs() {
18865        updateExternalMediaStatusInner(true, false, false);
18866    }
18867
18868    /*
18869     * Collect information of applications on external media, map them against
18870     * existing containers and update information based on current mount status.
18871     * Please note that we always have to report status if reportStatus has been
18872     * set to true especially when unloading packages.
18873     */
18874    private void updateExternalMediaStatusInner(boolean isMounted, boolean reportStatus,
18875            boolean externalStorage) {
18876        ArrayMap<AsecInstallArgs, String> processCids = new ArrayMap<>();
18877        int[] uidArr = EmptyArray.INT;
18878
18879        final String[] list = PackageHelper.getSecureContainerList();
18880        if (ArrayUtils.isEmpty(list)) {
18881            Log.i(TAG, "No secure containers found");
18882        } else {
18883            // Process list of secure containers and categorize them
18884            // as active or stale based on their package internal state.
18885
18886            // reader
18887            synchronized (mPackages) {
18888                for (String cid : list) {
18889                    // Leave stages untouched for now; installer service owns them
18890                    if (PackageInstallerService.isStageName(cid)) continue;
18891
18892                    if (DEBUG_SD_INSTALL)
18893                        Log.i(TAG, "Processing container " + cid);
18894                    String pkgName = getAsecPackageName(cid);
18895                    if (pkgName == null) {
18896                        Slog.i(TAG, "Found stale container " + cid + " with no package name");
18897                        continue;
18898                    }
18899                    if (DEBUG_SD_INSTALL)
18900                        Log.i(TAG, "Looking for pkg : " + pkgName);
18901
18902                    final PackageSetting ps = mSettings.mPackages.get(pkgName);
18903                    if (ps == null) {
18904                        Slog.i(TAG, "Found stale container " + cid + " with no matching settings");
18905                        continue;
18906                    }
18907
18908                    /*
18909                     * Skip packages that are not external if we're unmounting
18910                     * external storage.
18911                     */
18912                    if (externalStorage && !isMounted && !isExternal(ps)) {
18913                        continue;
18914                    }
18915
18916                    final AsecInstallArgs args = new AsecInstallArgs(cid,
18917                            getAppDexInstructionSets(ps), ps.isForwardLocked());
18918                    // The package status is changed only if the code path
18919                    // matches between settings and the container id.
18920                    if (ps.codePathString != null
18921                            && ps.codePathString.startsWith(args.getCodePath())) {
18922                        if (DEBUG_SD_INSTALL) {
18923                            Log.i(TAG, "Container : " + cid + " corresponds to pkg : " + pkgName
18924                                    + " at code path: " + ps.codePathString);
18925                        }
18926
18927                        // We do have a valid package installed on sdcard
18928                        processCids.put(args, ps.codePathString);
18929                        final int uid = ps.appId;
18930                        if (uid != -1) {
18931                            uidArr = ArrayUtils.appendInt(uidArr, uid);
18932                        }
18933                    } else {
18934                        Slog.i(TAG, "Found stale container " + cid + ": expected codePath="
18935                                + ps.codePathString);
18936                    }
18937                }
18938            }
18939
18940            Arrays.sort(uidArr);
18941        }
18942
18943        // Process packages with valid entries.
18944        if (isMounted) {
18945            if (DEBUG_SD_INSTALL)
18946                Log.i(TAG, "Loading packages");
18947            loadMediaPackages(processCids, uidArr, externalStorage);
18948            startCleaningPackages();
18949            mInstallerService.onSecureContainersAvailable();
18950        } else {
18951            if (DEBUG_SD_INSTALL)
18952                Log.i(TAG, "Unloading packages");
18953            unloadMediaPackages(processCids, uidArr, reportStatus);
18954        }
18955    }
18956
18957    private void sendResourcesChangedBroadcast(boolean mediaStatus, boolean replacing,
18958            ArrayList<ApplicationInfo> infos, IIntentReceiver finishedReceiver) {
18959        final int size = infos.size();
18960        final String[] packageNames = new String[size];
18961        final int[] packageUids = new int[size];
18962        for (int i = 0; i < size; i++) {
18963            final ApplicationInfo info = infos.get(i);
18964            packageNames[i] = info.packageName;
18965            packageUids[i] = info.uid;
18966        }
18967        sendResourcesChangedBroadcast(mediaStatus, replacing, packageNames, packageUids,
18968                finishedReceiver);
18969    }
18970
18971    private void sendResourcesChangedBroadcast(boolean mediaStatus, boolean replacing,
18972            ArrayList<String> pkgList, int uidArr[], IIntentReceiver finishedReceiver) {
18973        sendResourcesChangedBroadcast(mediaStatus, replacing,
18974                pkgList.toArray(new String[pkgList.size()]), uidArr, finishedReceiver);
18975    }
18976
18977    private void sendResourcesChangedBroadcast(boolean mediaStatus, boolean replacing,
18978            String[] pkgList, int uidArr[], IIntentReceiver finishedReceiver) {
18979        int size = pkgList.length;
18980        if (size > 0) {
18981            // Send broadcasts here
18982            Bundle extras = new Bundle();
18983            extras.putStringArray(Intent.EXTRA_CHANGED_PACKAGE_LIST, pkgList);
18984            if (uidArr != null) {
18985                extras.putIntArray(Intent.EXTRA_CHANGED_UID_LIST, uidArr);
18986            }
18987            if (replacing) {
18988                extras.putBoolean(Intent.EXTRA_REPLACING, replacing);
18989            }
18990            String action = mediaStatus ? Intent.ACTION_EXTERNAL_APPLICATIONS_AVAILABLE
18991                    : Intent.ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE;
18992            sendPackageBroadcast(action, null, extras, 0, null, finishedReceiver, null);
18993        }
18994    }
18995
18996   /*
18997     * Look at potentially valid container ids from processCids If package
18998     * information doesn't match the one on record or package scanning fails,
18999     * the cid is added to list of removeCids. We currently don't delete stale
19000     * containers.
19001     */
19002    private void loadMediaPackages(ArrayMap<AsecInstallArgs, String> processCids, int[] uidArr,
19003            boolean externalStorage) {
19004        ArrayList<String> pkgList = new ArrayList<String>();
19005        Set<AsecInstallArgs> keys = processCids.keySet();
19006
19007        for (AsecInstallArgs args : keys) {
19008            String codePath = processCids.get(args);
19009            if (DEBUG_SD_INSTALL)
19010                Log.i(TAG, "Loading container : " + args.cid);
19011            int retCode = PackageManager.INSTALL_FAILED_CONTAINER_ERROR;
19012            try {
19013                // Make sure there are no container errors first.
19014                if (args.doPreInstall(PackageManager.INSTALL_SUCCEEDED) != PackageManager.INSTALL_SUCCEEDED) {
19015                    Slog.e(TAG, "Failed to mount cid : " + args.cid
19016                            + " when installing from sdcard");
19017                    continue;
19018                }
19019                // Check code path here.
19020                if (codePath == null || !codePath.startsWith(args.getCodePath())) {
19021                    Slog.e(TAG, "Container " + args.cid + " cachepath " + args.getCodePath()
19022                            + " does not match one in settings " + codePath);
19023                    continue;
19024                }
19025                // Parse package
19026                int parseFlags = mDefParseFlags;
19027                if (args.isExternalAsec()) {
19028                    parseFlags |= PackageParser.PARSE_EXTERNAL_STORAGE;
19029                }
19030                if (args.isFwdLocked()) {
19031                    parseFlags |= PackageParser.PARSE_FORWARD_LOCK;
19032                }
19033
19034                synchronized (mInstallLock) {
19035                    PackageParser.Package pkg = null;
19036                    try {
19037                        // Sadly we don't know the package name yet to freeze it
19038                        pkg = scanPackageTracedLI(new File(codePath), parseFlags,
19039                                SCAN_IGNORE_FROZEN, 0, null);
19040                    } catch (PackageManagerException e) {
19041                        Slog.w(TAG, "Failed to scan " + codePath + ": " + e.getMessage());
19042                    }
19043                    // Scan the package
19044                    if (pkg != null) {
19045                        /*
19046                         * TODO why is the lock being held? doPostInstall is
19047                         * called in other places without the lock. This needs
19048                         * to be straightened out.
19049                         */
19050                        // writer
19051                        synchronized (mPackages) {
19052                            retCode = PackageManager.INSTALL_SUCCEEDED;
19053                            pkgList.add(pkg.packageName);
19054                            // Post process args
19055                            args.doPostInstall(PackageManager.INSTALL_SUCCEEDED,
19056                                    pkg.applicationInfo.uid);
19057                        }
19058                    } else {
19059                        Slog.i(TAG, "Failed to install pkg from  " + codePath + " from sdcard");
19060                    }
19061                }
19062
19063            } finally {
19064                if (retCode != PackageManager.INSTALL_SUCCEEDED) {
19065                    Log.w(TAG, "Container " + args.cid + " is stale, retCode=" + retCode);
19066                }
19067            }
19068        }
19069        // writer
19070        synchronized (mPackages) {
19071            // If the platform SDK has changed since the last time we booted,
19072            // we need to re-grant app permission to catch any new ones that
19073            // appear. This is really a hack, and means that apps can in some
19074            // cases get permissions that the user didn't initially explicitly
19075            // allow... it would be nice to have some better way to handle
19076            // this situation.
19077            final VersionInfo ver = externalStorage ? mSettings.getExternalVersion()
19078                    : mSettings.getInternalVersion();
19079            final String volumeUuid = externalStorage ? StorageManager.UUID_PRIMARY_PHYSICAL
19080                    : StorageManager.UUID_PRIVATE_INTERNAL;
19081
19082            int updateFlags = UPDATE_PERMISSIONS_ALL;
19083            if (ver.sdkVersion != mSdkVersion) {
19084                logCriticalInfo(Log.INFO, "Platform changed from " + ver.sdkVersion + " to "
19085                        + mSdkVersion + "; regranting permissions for external");
19086                updateFlags |= UPDATE_PERMISSIONS_REPLACE_PKG | UPDATE_PERMISSIONS_REPLACE_ALL;
19087            }
19088            updatePermissionsLPw(null, null, volumeUuid, updateFlags);
19089
19090            // Yay, everything is now upgraded
19091            ver.forceCurrent();
19092
19093            // can downgrade to reader
19094            // Persist settings
19095            mSettings.writeLPr();
19096        }
19097        // Send a broadcast to let everyone know we are done processing
19098        if (pkgList.size() > 0) {
19099            sendResourcesChangedBroadcast(true, false, pkgList, uidArr, null);
19100        }
19101    }
19102
19103   /*
19104     * Utility method to unload a list of specified containers
19105     */
19106    private void unloadAllContainers(Set<AsecInstallArgs> cidArgs) {
19107        // Just unmount all valid containers.
19108        for (AsecInstallArgs arg : cidArgs) {
19109            synchronized (mInstallLock) {
19110                arg.doPostDeleteLI(false);
19111           }
19112       }
19113   }
19114
19115    /*
19116     * Unload packages mounted on external media. This involves deleting package
19117     * data from internal structures, sending broadcasts about disabled packages,
19118     * gc'ing to free up references, unmounting all secure containers
19119     * corresponding to packages on external media, and posting a
19120     * UPDATED_MEDIA_STATUS message if status has been requested. Please note
19121     * that we always have to post this message if status has been requested no
19122     * matter what.
19123     */
19124    private void unloadMediaPackages(ArrayMap<AsecInstallArgs, String> processCids, int uidArr[],
19125            final boolean reportStatus) {
19126        if (DEBUG_SD_INSTALL)
19127            Log.i(TAG, "unloading media packages");
19128        ArrayList<String> pkgList = new ArrayList<String>();
19129        ArrayList<AsecInstallArgs> failedList = new ArrayList<AsecInstallArgs>();
19130        final Set<AsecInstallArgs> keys = processCids.keySet();
19131        for (AsecInstallArgs args : keys) {
19132            String pkgName = args.getPackageName();
19133            if (DEBUG_SD_INSTALL)
19134                Log.i(TAG, "Trying to unload pkg : " + pkgName);
19135            // Delete package internally
19136            PackageRemovedInfo outInfo = new PackageRemovedInfo();
19137            synchronized (mInstallLock) {
19138                final int deleteFlags = PackageManager.DELETE_KEEP_DATA;
19139                final boolean res;
19140                try (PackageFreezer freezer = freezePackageForDelete(pkgName, deleteFlags,
19141                        "unloadMediaPackages")) {
19142                    res = deletePackageLIF(pkgName, null, false, null, deleteFlags, outInfo, false,
19143                            null);
19144                }
19145                if (res) {
19146                    pkgList.add(pkgName);
19147                } else {
19148                    Slog.e(TAG, "Failed to delete pkg from sdcard : " + pkgName);
19149                    failedList.add(args);
19150                }
19151            }
19152        }
19153
19154        // reader
19155        synchronized (mPackages) {
19156            // We didn't update the settings after removing each package;
19157            // write them now for all packages.
19158            mSettings.writeLPr();
19159        }
19160
19161        // We have to absolutely send UPDATED_MEDIA_STATUS only
19162        // after confirming that all the receivers processed the ordered
19163        // broadcast when packages get disabled, force a gc to clean things up.
19164        // and unload all the containers.
19165        if (pkgList.size() > 0) {
19166            sendResourcesChangedBroadcast(false, false, pkgList, uidArr,
19167                    new IIntentReceiver.Stub() {
19168                public void performReceive(Intent intent, int resultCode, String data,
19169                        Bundle extras, boolean ordered, boolean sticky,
19170                        int sendingUser) throws RemoteException {
19171                    Message msg = mHandler.obtainMessage(UPDATED_MEDIA_STATUS,
19172                            reportStatus ? 1 : 0, 1, keys);
19173                    mHandler.sendMessage(msg);
19174                }
19175            });
19176        } else {
19177            Message msg = mHandler.obtainMessage(UPDATED_MEDIA_STATUS, reportStatus ? 1 : 0, -1,
19178                    keys);
19179            mHandler.sendMessage(msg);
19180        }
19181    }
19182
19183    private void loadPrivatePackages(final VolumeInfo vol) {
19184        mHandler.post(new Runnable() {
19185            @Override
19186            public void run() {
19187                loadPrivatePackagesInner(vol);
19188            }
19189        });
19190    }
19191
19192    private void loadPrivatePackagesInner(VolumeInfo vol) {
19193        final String volumeUuid = vol.fsUuid;
19194        if (TextUtils.isEmpty(volumeUuid)) {
19195            Slog.e(TAG, "Loading internal storage is probably a mistake; ignoring");
19196            return;
19197        }
19198
19199        final ArrayList<PackageFreezer> freezers = new ArrayList<>();
19200        final ArrayList<ApplicationInfo> loaded = new ArrayList<>();
19201        final int parseFlags = mDefParseFlags | PackageParser.PARSE_EXTERNAL_STORAGE;
19202
19203        final VersionInfo ver;
19204        final List<PackageSetting> packages;
19205        synchronized (mPackages) {
19206            ver = mSettings.findOrCreateVersion(volumeUuid);
19207            packages = mSettings.getVolumePackagesLPr(volumeUuid);
19208        }
19209
19210        for (PackageSetting ps : packages) {
19211            freezers.add(freezePackage(ps.name, "loadPrivatePackagesInner"));
19212            synchronized (mInstallLock) {
19213                final PackageParser.Package pkg;
19214                try {
19215                    pkg = scanPackageTracedLI(ps.codePath, parseFlags, SCAN_INITIAL, 0, null);
19216                    loaded.add(pkg.applicationInfo);
19217
19218                } catch (PackageManagerException e) {
19219                    Slog.w(TAG, "Failed to scan " + ps.codePath + ": " + e.getMessage());
19220                }
19221
19222                if (!Build.FINGERPRINT.equals(ver.fingerprint)) {
19223                    clearAppDataLIF(ps.pkg, UserHandle.USER_ALL,
19224                            StorageManager.FLAG_STORAGE_DE | StorageManager.FLAG_STORAGE_CE
19225                                    | Installer.FLAG_CLEAR_CODE_CACHE_ONLY);
19226                }
19227            }
19228        }
19229
19230        // Reconcile app data for all started/unlocked users
19231        final StorageManager sm = mContext.getSystemService(StorageManager.class);
19232        final UserManager um = mContext.getSystemService(UserManager.class);
19233        UserManagerInternal umInternal = getUserManagerInternal();
19234        for (UserInfo user : um.getUsers()) {
19235            final int flags;
19236            if (umInternal.isUserUnlockingOrUnlocked(user.id)) {
19237                flags = StorageManager.FLAG_STORAGE_DE | StorageManager.FLAG_STORAGE_CE;
19238            } else if (umInternal.isUserRunning(user.id)) {
19239                flags = StorageManager.FLAG_STORAGE_DE;
19240            } else {
19241                continue;
19242            }
19243
19244            try {
19245                sm.prepareUserStorage(volumeUuid, user.id, user.serialNumber, flags);
19246                synchronized (mInstallLock) {
19247                    reconcileAppsDataLI(volumeUuid, user.id, flags);
19248                }
19249            } catch (IllegalStateException e) {
19250                // Device was probably ejected, and we'll process that event momentarily
19251                Slog.w(TAG, "Failed to prepare storage: " + e);
19252            }
19253        }
19254
19255        synchronized (mPackages) {
19256            int updateFlags = UPDATE_PERMISSIONS_ALL;
19257            if (ver.sdkVersion != mSdkVersion) {
19258                logCriticalInfo(Log.INFO, "Platform changed from " + ver.sdkVersion + " to "
19259                        + mSdkVersion + "; regranting permissions for " + volumeUuid);
19260                updateFlags |= UPDATE_PERMISSIONS_REPLACE_PKG | UPDATE_PERMISSIONS_REPLACE_ALL;
19261            }
19262            updatePermissionsLPw(null, null, volumeUuid, updateFlags);
19263
19264            // Yay, everything is now upgraded
19265            ver.forceCurrent();
19266
19267            mSettings.writeLPr();
19268        }
19269
19270        for (PackageFreezer freezer : freezers) {
19271            freezer.close();
19272        }
19273
19274        if (DEBUG_INSTALL) Slog.d(TAG, "Loaded packages " + loaded);
19275        sendResourcesChangedBroadcast(true, false, loaded, null);
19276    }
19277
19278    private void unloadPrivatePackages(final VolumeInfo vol) {
19279        mHandler.post(new Runnable() {
19280            @Override
19281            public void run() {
19282                unloadPrivatePackagesInner(vol);
19283            }
19284        });
19285    }
19286
19287    private void unloadPrivatePackagesInner(VolumeInfo vol) {
19288        final String volumeUuid = vol.fsUuid;
19289        if (TextUtils.isEmpty(volumeUuid)) {
19290            Slog.e(TAG, "Unloading internal storage is probably a mistake; ignoring");
19291            return;
19292        }
19293
19294        final ArrayList<ApplicationInfo> unloaded = new ArrayList<>();
19295        synchronized (mInstallLock) {
19296        synchronized (mPackages) {
19297            final List<PackageSetting> packages = mSettings.getVolumePackagesLPr(volumeUuid);
19298            for (PackageSetting ps : packages) {
19299                if (ps.pkg == null) continue;
19300
19301                final ApplicationInfo info = ps.pkg.applicationInfo;
19302                final int deleteFlags = PackageManager.DELETE_KEEP_DATA;
19303                final PackageRemovedInfo outInfo = new PackageRemovedInfo();
19304
19305                try (PackageFreezer freezer = freezePackageForDelete(ps.name, deleteFlags,
19306                        "unloadPrivatePackagesInner")) {
19307                    if (deletePackageLIF(ps.name, null, false, null, deleteFlags, outInfo,
19308                            false, null)) {
19309                        unloaded.add(info);
19310                    } else {
19311                        Slog.w(TAG, "Failed to unload " + ps.codePath);
19312                    }
19313                }
19314
19315                // Try very hard to release any references to this package
19316                // so we don't risk the system server being killed due to
19317                // open FDs
19318                AttributeCache.instance().removePackage(ps.name);
19319            }
19320
19321            mSettings.writeLPr();
19322        }
19323        }
19324
19325        if (DEBUG_INSTALL) Slog.d(TAG, "Unloaded packages " + unloaded);
19326        sendResourcesChangedBroadcast(false, false, unloaded, null);
19327
19328        // Try very hard to release any references to this path so we don't risk
19329        // the system server being killed due to open FDs
19330        ResourcesManager.getInstance().invalidatePath(vol.getPath().getAbsolutePath());
19331
19332        for (int i = 0; i < 3; i++) {
19333            System.gc();
19334            System.runFinalization();
19335        }
19336    }
19337
19338    /**
19339     * Prepare storage areas for given user on all mounted devices.
19340     */
19341    void prepareUserData(int userId, int userSerial, int flags) {
19342        synchronized (mInstallLock) {
19343            final StorageManager storage = mContext.getSystemService(StorageManager.class);
19344            for (VolumeInfo vol : storage.getWritablePrivateVolumes()) {
19345                final String volumeUuid = vol.getFsUuid();
19346                prepareUserDataLI(volumeUuid, userId, userSerial, flags, true);
19347            }
19348        }
19349    }
19350
19351    private void prepareUserDataLI(String volumeUuid, int userId, int userSerial, int flags,
19352            boolean allowRecover) {
19353        // Prepare storage and verify that serial numbers are consistent; if
19354        // there's a mismatch we need to destroy to avoid leaking data
19355        final StorageManager storage = mContext.getSystemService(StorageManager.class);
19356        try {
19357            storage.prepareUserStorage(volumeUuid, userId, userSerial, flags);
19358
19359            if ((flags & StorageManager.FLAG_STORAGE_DE) != 0 && !mOnlyCore) {
19360                UserManagerService.enforceSerialNumber(
19361                        Environment.getDataUserDeDirectory(volumeUuid, userId), userSerial);
19362                if (Objects.equals(volumeUuid, StorageManager.UUID_PRIVATE_INTERNAL)) {
19363                    UserManagerService.enforceSerialNumber(
19364                            Environment.getDataSystemDeDirectory(userId), userSerial);
19365                }
19366            }
19367            if ((flags & StorageManager.FLAG_STORAGE_CE) != 0 && !mOnlyCore) {
19368                UserManagerService.enforceSerialNumber(
19369                        Environment.getDataUserCeDirectory(volumeUuid, userId), userSerial);
19370                if (Objects.equals(volumeUuid, StorageManager.UUID_PRIVATE_INTERNAL)) {
19371                    UserManagerService.enforceSerialNumber(
19372                            Environment.getDataSystemCeDirectory(userId), userSerial);
19373                }
19374            }
19375
19376            synchronized (mInstallLock) {
19377                mInstaller.createUserData(volumeUuid, userId, userSerial, flags);
19378            }
19379        } catch (Exception e) {
19380            logCriticalInfo(Log.WARN, "Destroying user " + userId + " on volume " + volumeUuid
19381                    + " because we failed to prepare: " + e);
19382            destroyUserDataLI(volumeUuid, userId,
19383                    StorageManager.FLAG_STORAGE_DE | StorageManager.FLAG_STORAGE_CE);
19384
19385            if (allowRecover) {
19386                // Try one last time; if we fail again we're really in trouble
19387                prepareUserDataLI(volumeUuid, userId, userSerial, flags, false);
19388            }
19389        }
19390    }
19391
19392    /**
19393     * Destroy storage areas for given user on all mounted devices.
19394     */
19395    void destroyUserData(int userId, int flags) {
19396        synchronized (mInstallLock) {
19397            final StorageManager storage = mContext.getSystemService(StorageManager.class);
19398            for (VolumeInfo vol : storage.getWritablePrivateVolumes()) {
19399                final String volumeUuid = vol.getFsUuid();
19400                destroyUserDataLI(volumeUuid, userId, flags);
19401            }
19402        }
19403    }
19404
19405    private void destroyUserDataLI(String volumeUuid, int userId, int flags) {
19406        final StorageManager storage = mContext.getSystemService(StorageManager.class);
19407        try {
19408            // Clean up app data, profile data, and media data
19409            mInstaller.destroyUserData(volumeUuid, userId, flags);
19410
19411            // Clean up system data
19412            if (Objects.equals(volumeUuid, StorageManager.UUID_PRIVATE_INTERNAL)) {
19413                if ((flags & StorageManager.FLAG_STORAGE_DE) != 0) {
19414                    FileUtils.deleteContentsAndDir(Environment.getUserSystemDirectory(userId));
19415                    FileUtils.deleteContentsAndDir(Environment.getDataSystemDeDirectory(userId));
19416                }
19417                if ((flags & StorageManager.FLAG_STORAGE_CE) != 0) {
19418                    FileUtils.deleteContentsAndDir(Environment.getDataSystemCeDirectory(userId));
19419                }
19420            }
19421
19422            // Data with special labels is now gone, so finish the job
19423            storage.destroyUserStorage(volumeUuid, userId, flags);
19424
19425        } catch (Exception e) {
19426            logCriticalInfo(Log.WARN,
19427                    "Failed to destroy user " + userId + " on volume " + volumeUuid + ": " + e);
19428        }
19429    }
19430
19431    /**
19432     * Examine all users present on given mounted volume, and destroy data
19433     * belonging to users that are no longer valid, or whose user ID has been
19434     * recycled.
19435     */
19436    private void reconcileUsers(String volumeUuid) {
19437        final List<File> files = new ArrayList<>();
19438        Collections.addAll(files, FileUtils
19439                .listFilesOrEmpty(Environment.getDataUserDeDirectory(volumeUuid)));
19440        Collections.addAll(files, FileUtils
19441                .listFilesOrEmpty(Environment.getDataUserCeDirectory(volumeUuid)));
19442        Collections.addAll(files, FileUtils
19443                .listFilesOrEmpty(Environment.getDataSystemDeDirectory()));
19444        Collections.addAll(files, FileUtils
19445                .listFilesOrEmpty(Environment.getDataSystemCeDirectory()));
19446        for (File file : files) {
19447            if (!file.isDirectory()) continue;
19448
19449            final int userId;
19450            final UserInfo info;
19451            try {
19452                userId = Integer.parseInt(file.getName());
19453                info = sUserManager.getUserInfo(userId);
19454            } catch (NumberFormatException e) {
19455                Slog.w(TAG, "Invalid user directory " + file);
19456                continue;
19457            }
19458
19459            boolean destroyUser = false;
19460            if (info == null) {
19461                logCriticalInfo(Log.WARN, "Destroying user directory " + file
19462                        + " because no matching user was found");
19463                destroyUser = true;
19464            } else if (!mOnlyCore) {
19465                try {
19466                    UserManagerService.enforceSerialNumber(file, info.serialNumber);
19467                } catch (IOException e) {
19468                    logCriticalInfo(Log.WARN, "Destroying user directory " + file
19469                            + " because we failed to enforce serial number: " + e);
19470                    destroyUser = true;
19471                }
19472            }
19473
19474            if (destroyUser) {
19475                synchronized (mInstallLock) {
19476                    destroyUserDataLI(volumeUuid, userId,
19477                            StorageManager.FLAG_STORAGE_DE | StorageManager.FLAG_STORAGE_CE);
19478                }
19479            }
19480        }
19481    }
19482
19483    private void assertPackageKnown(String volumeUuid, String packageName)
19484            throws PackageManagerException {
19485        synchronized (mPackages) {
19486            final PackageSetting ps = mSettings.mPackages.get(packageName);
19487            if (ps == null) {
19488                throw new PackageManagerException("Package " + packageName + " is unknown");
19489            } else if (!TextUtils.equals(volumeUuid, ps.volumeUuid)) {
19490                throw new PackageManagerException(
19491                        "Package " + packageName + " found on unknown volume " + volumeUuid
19492                                + "; expected volume " + ps.volumeUuid);
19493            }
19494        }
19495    }
19496
19497    private void assertPackageKnownAndInstalled(String volumeUuid, String packageName, int userId)
19498            throws PackageManagerException {
19499        synchronized (mPackages) {
19500            final PackageSetting ps = mSettings.mPackages.get(packageName);
19501            if (ps == null) {
19502                throw new PackageManagerException("Package " + packageName + " is unknown");
19503            } else if (!TextUtils.equals(volumeUuid, ps.volumeUuid)) {
19504                throw new PackageManagerException(
19505                        "Package " + packageName + " found on unknown volume " + volumeUuid
19506                                + "; expected volume " + ps.volumeUuid);
19507            } else if (!ps.getInstalled(userId)) {
19508                throw new PackageManagerException(
19509                        "Package " + packageName + " not installed for user " + userId);
19510            }
19511        }
19512    }
19513
19514    /**
19515     * Examine all apps present on given mounted volume, and destroy apps that
19516     * aren't expected, either due to uninstallation or reinstallation on
19517     * another volume.
19518     */
19519    private void reconcileApps(String volumeUuid) {
19520        final File[] files = FileUtils
19521                .listFilesOrEmpty(Environment.getDataAppDirectory(volumeUuid));
19522        for (File file : files) {
19523            final boolean isPackage = (isApkFile(file) || file.isDirectory())
19524                    && !PackageInstallerService.isStageName(file.getName());
19525            if (!isPackage) {
19526                // Ignore entries which are not packages
19527                continue;
19528            }
19529
19530            try {
19531                final PackageLite pkg = PackageParser.parsePackageLite(file,
19532                        PackageParser.PARSE_MUST_BE_APK);
19533                assertPackageKnown(volumeUuid, pkg.packageName);
19534
19535            } catch (PackageParserException | PackageManagerException e) {
19536                logCriticalInfo(Log.WARN, "Destroying " + file + " due to: " + e);
19537                synchronized (mInstallLock) {
19538                    removeCodePathLI(file);
19539                }
19540            }
19541        }
19542    }
19543
19544    /**
19545     * Reconcile all app data for the given user.
19546     * <p>
19547     * Verifies that directories exist and that ownership and labeling is
19548     * correct for all installed apps on all mounted volumes.
19549     */
19550    void reconcileAppsData(int userId, int flags) {
19551        final StorageManager storage = mContext.getSystemService(StorageManager.class);
19552        for (VolumeInfo vol : storage.getWritablePrivateVolumes()) {
19553            final String volumeUuid = vol.getFsUuid();
19554            synchronized (mInstallLock) {
19555                reconcileAppsDataLI(volumeUuid, userId, flags);
19556            }
19557        }
19558    }
19559
19560    /**
19561     * Reconcile all app data on given mounted volume.
19562     * <p>
19563     * Destroys app data that isn't expected, either due to uninstallation or
19564     * reinstallation on another volume.
19565     * <p>
19566     * Verifies that directories exist and that ownership and labeling is
19567     * correct for all installed apps.
19568     */
19569    private void reconcileAppsDataLI(String volumeUuid, int userId, int flags) {
19570        Slog.v(TAG, "reconcileAppsData for " + volumeUuid + " u" + userId + " 0x"
19571                + Integer.toHexString(flags));
19572
19573        final File ceDir = Environment.getDataUserCeDirectory(volumeUuid, userId);
19574        final File deDir = Environment.getDataUserDeDirectory(volumeUuid, userId);
19575
19576        boolean restoreconNeeded = false;
19577
19578        // First look for stale data that doesn't belong, and check if things
19579        // have changed since we did our last restorecon
19580        if ((flags & StorageManager.FLAG_STORAGE_CE) != 0) {
19581            if (StorageManager.isFileEncryptedNativeOrEmulated()
19582                    && !StorageManager.isUserKeyUnlocked(userId)) {
19583                throw new RuntimeException(
19584                        "Yikes, someone asked us to reconcile CE storage while " + userId
19585                                + " was still locked; this would have caused massive data loss!");
19586            }
19587
19588            restoreconNeeded |= SELinuxMMAC.isRestoreconNeeded(ceDir);
19589
19590            final File[] files = FileUtils.listFilesOrEmpty(ceDir);
19591            for (File file : files) {
19592                final String packageName = file.getName();
19593                try {
19594                    assertPackageKnownAndInstalled(volumeUuid, packageName, userId);
19595                } catch (PackageManagerException e) {
19596                    logCriticalInfo(Log.WARN, "Destroying " + file + " due to: " + e);
19597                    try {
19598                        mInstaller.destroyAppData(volumeUuid, packageName, userId,
19599                                StorageManager.FLAG_STORAGE_CE, 0);
19600                    } catch (InstallerException e2) {
19601                        logCriticalInfo(Log.WARN, "Failed to destroy: " + e2);
19602                    }
19603                }
19604            }
19605        }
19606        if ((flags & StorageManager.FLAG_STORAGE_DE) != 0) {
19607            restoreconNeeded |= SELinuxMMAC.isRestoreconNeeded(deDir);
19608
19609            final File[] files = FileUtils.listFilesOrEmpty(deDir);
19610            for (File file : files) {
19611                final String packageName = file.getName();
19612                try {
19613                    assertPackageKnownAndInstalled(volumeUuid, packageName, userId);
19614                } catch (PackageManagerException e) {
19615                    logCriticalInfo(Log.WARN, "Destroying " + file + " due to: " + e);
19616                    try {
19617                        mInstaller.destroyAppData(volumeUuid, packageName, userId,
19618                                StorageManager.FLAG_STORAGE_DE, 0);
19619                    } catch (InstallerException e2) {
19620                        logCriticalInfo(Log.WARN, "Failed to destroy: " + e2);
19621                    }
19622                }
19623            }
19624        }
19625
19626        // Ensure that data directories are ready to roll for all packages
19627        // installed for this volume and user
19628        final List<PackageSetting> packages;
19629        synchronized (mPackages) {
19630            packages = mSettings.getVolumePackagesLPr(volumeUuid);
19631        }
19632        int preparedCount = 0;
19633        for (PackageSetting ps : packages) {
19634            final String packageName = ps.name;
19635            if (ps.pkg == null) {
19636                Slog.w(TAG, "Odd, missing scanned package " + packageName);
19637                // TODO: might be due to legacy ASEC apps; we should circle back
19638                // and reconcile again once they're scanned
19639                continue;
19640            }
19641
19642            if (ps.getInstalled(userId)) {
19643                prepareAppDataLIF(ps.pkg, userId, flags, restoreconNeeded);
19644
19645                if (maybeMigrateAppDataLIF(ps.pkg, userId)) {
19646                    // We may have just shuffled around app data directories, so
19647                    // prepare them one more time
19648                    prepareAppDataLIF(ps.pkg, userId, flags, restoreconNeeded);
19649                }
19650
19651                preparedCount++;
19652            }
19653        }
19654
19655        if (restoreconNeeded) {
19656            if ((flags & StorageManager.FLAG_STORAGE_CE) != 0) {
19657                SELinuxMMAC.setRestoreconDone(ceDir);
19658            }
19659            if ((flags & StorageManager.FLAG_STORAGE_DE) != 0) {
19660                SELinuxMMAC.setRestoreconDone(deDir);
19661            }
19662        }
19663
19664        Slog.v(TAG, "reconcileAppsData finished " + preparedCount
19665                + " packages; restoreconNeeded was " + restoreconNeeded);
19666    }
19667
19668    /**
19669     * Prepare app data for the given app just after it was installed or
19670     * upgraded. This method carefully only touches users that it's installed
19671     * for, and it forces a restorecon to handle any seinfo changes.
19672     * <p>
19673     * Verifies that directories exist and that ownership and labeling is
19674     * correct for all installed apps. If there is an ownership mismatch, it
19675     * will try recovering system apps by wiping data; third-party app data is
19676     * left intact.
19677     * <p>
19678     * <em>Note: To avoid a deadlock, do not call this method with {@code mPackages} lock held</em>
19679     */
19680    private void prepareAppDataAfterInstallLIF(PackageParser.Package pkg) {
19681        final PackageSetting ps;
19682        synchronized (mPackages) {
19683            ps = mSettings.mPackages.get(pkg.packageName);
19684            mSettings.writeKernelMappingLPr(ps);
19685        }
19686
19687        final UserManager um = mContext.getSystemService(UserManager.class);
19688        UserManagerInternal umInternal = getUserManagerInternal();
19689        for (UserInfo user : um.getUsers()) {
19690            final int flags;
19691            if (umInternal.isUserUnlockingOrUnlocked(user.id)) {
19692                flags = StorageManager.FLAG_STORAGE_DE | StorageManager.FLAG_STORAGE_CE;
19693            } else if (umInternal.isUserRunning(user.id)) {
19694                flags = StorageManager.FLAG_STORAGE_DE;
19695            } else {
19696                continue;
19697            }
19698
19699            if (ps.getInstalled(user.id)) {
19700                // Whenever an app changes, force a restorecon of its data
19701                // TODO: when user data is locked, mark that we're still dirty
19702                prepareAppDataLIF(pkg, user.id, flags, true);
19703            }
19704        }
19705    }
19706
19707    /**
19708     * Prepare app data for the given app.
19709     * <p>
19710     * Verifies that directories exist and that ownership and labeling is
19711     * correct for all installed apps. If there is an ownership mismatch, this
19712     * will try recovering system apps by wiping data; third-party app data is
19713     * left intact.
19714     */
19715    private void prepareAppDataLIF(PackageParser.Package pkg, int userId, int flags,
19716            boolean restoreconNeeded) {
19717        if (pkg == null) {
19718            Slog.wtf(TAG, "Package was null!", new Throwable());
19719            return;
19720        }
19721        prepareAppDataLeafLIF(pkg, userId, flags, restoreconNeeded);
19722        final int childCount = (pkg.childPackages != null) ? pkg.childPackages.size() : 0;
19723        for (int i = 0; i < childCount; i++) {
19724            prepareAppDataLeafLIF(pkg.childPackages.get(i), userId, flags, restoreconNeeded);
19725        }
19726    }
19727
19728    private void prepareAppDataLeafLIF(PackageParser.Package pkg, int userId, int flags,
19729            boolean restoreconNeeded) {
19730        if (DEBUG_APP_DATA) {
19731            Slog.v(TAG, "prepareAppData for " + pkg.packageName + " u" + userId + " 0x"
19732                    + Integer.toHexString(flags) + (restoreconNeeded ? " restoreconNeeded" : ""));
19733        }
19734
19735        final String volumeUuid = pkg.volumeUuid;
19736        final String packageName = pkg.packageName;
19737        final ApplicationInfo app = pkg.applicationInfo;
19738        final int appId = UserHandle.getAppId(app.uid);
19739
19740        Preconditions.checkNotNull(app.seinfo);
19741
19742        try {
19743            mInstaller.createAppData(volumeUuid, packageName, userId, flags,
19744                    appId, app.seinfo, app.targetSdkVersion);
19745        } catch (InstallerException e) {
19746            if (app.isSystemApp()) {
19747                logCriticalInfo(Log.ERROR, "Failed to create app data for " + packageName
19748                        + ", but trying to recover: " + e);
19749                destroyAppDataLeafLIF(pkg, userId, flags);
19750                try {
19751                    mInstaller.createAppData(volumeUuid, packageName, userId, flags,
19752                            appId, app.seinfo, app.targetSdkVersion);
19753                    logCriticalInfo(Log.DEBUG, "Recovery succeeded!");
19754                } catch (InstallerException e2) {
19755                    logCriticalInfo(Log.DEBUG, "Recovery failed!");
19756                }
19757            } else {
19758                Slog.e(TAG, "Failed to create app data for " + packageName + ": " + e);
19759            }
19760        }
19761
19762        if (restoreconNeeded) {
19763            try {
19764                mInstaller.restoreconAppData(volumeUuid, packageName, userId, flags, appId,
19765                        app.seinfo);
19766            } catch (InstallerException e) {
19767                Slog.e(TAG, "Failed to restorecon for " + packageName + ": " + e);
19768            }
19769        }
19770
19771        if ((flags & StorageManager.FLAG_STORAGE_CE) != 0) {
19772            try {
19773                // CE storage is unlocked right now, so read out the inode and
19774                // remember for use later when it's locked
19775                // TODO: mark this structure as dirty so we persist it!
19776                final long ceDataInode = mInstaller.getAppDataInode(volumeUuid, packageName, userId,
19777                        StorageManager.FLAG_STORAGE_CE);
19778                synchronized (mPackages) {
19779                    final PackageSetting ps = mSettings.mPackages.get(packageName);
19780                    if (ps != null) {
19781                        ps.setCeDataInode(ceDataInode, userId);
19782                    }
19783                }
19784            } catch (InstallerException e) {
19785                Slog.e(TAG, "Failed to find inode for " + packageName + ": " + e);
19786            }
19787        }
19788
19789        prepareAppDataContentsLeafLIF(pkg, userId, flags);
19790    }
19791
19792    private void prepareAppDataContentsLIF(PackageParser.Package pkg, int userId, int flags) {
19793        if (pkg == null) {
19794            Slog.wtf(TAG, "Package was null!", new Throwable());
19795            return;
19796        }
19797        prepareAppDataContentsLeafLIF(pkg, userId, flags);
19798        final int childCount = (pkg.childPackages != null) ? pkg.childPackages.size() : 0;
19799        for (int i = 0; i < childCount; i++) {
19800            prepareAppDataContentsLeafLIF(pkg.childPackages.get(i), userId, flags);
19801        }
19802    }
19803
19804    private void prepareAppDataContentsLeafLIF(PackageParser.Package pkg, int userId, int flags) {
19805        final String volumeUuid = pkg.volumeUuid;
19806        final String packageName = pkg.packageName;
19807        final ApplicationInfo app = pkg.applicationInfo;
19808
19809        if ((flags & StorageManager.FLAG_STORAGE_CE) != 0) {
19810            // Create a native library symlink only if we have native libraries
19811            // and if the native libraries are 32 bit libraries. We do not provide
19812            // this symlink for 64 bit libraries.
19813            if (app.primaryCpuAbi != null && !VMRuntime.is64BitAbi(app.primaryCpuAbi)) {
19814                final String nativeLibPath = app.nativeLibraryDir;
19815                try {
19816                    mInstaller.linkNativeLibraryDirectory(volumeUuid, packageName,
19817                            nativeLibPath, userId);
19818                } catch (InstallerException e) {
19819                    Slog.e(TAG, "Failed to link native for " + packageName + ": " + e);
19820                }
19821            }
19822        }
19823    }
19824
19825    /**
19826     * For system apps on non-FBE devices, this method migrates any existing
19827     * CE/DE data to match the {@code defaultToDeviceProtectedStorage} flag
19828     * requested by the app.
19829     */
19830    private boolean maybeMigrateAppDataLIF(PackageParser.Package pkg, int userId) {
19831        if (pkg.isSystemApp() && !StorageManager.isFileEncryptedNativeOrEmulated()
19832                && PackageManager.APPLY_DEFAULT_TO_DEVICE_PROTECTED_STORAGE) {
19833            final int storageTarget = pkg.applicationInfo.isDefaultToDeviceProtectedStorage()
19834                    ? StorageManager.FLAG_STORAGE_DE : StorageManager.FLAG_STORAGE_CE;
19835            try {
19836                mInstaller.migrateAppData(pkg.volumeUuid, pkg.packageName, userId,
19837                        storageTarget);
19838            } catch (InstallerException e) {
19839                logCriticalInfo(Log.WARN,
19840                        "Failed to migrate " + pkg.packageName + ": " + e.getMessage());
19841            }
19842            return true;
19843        } else {
19844            return false;
19845        }
19846    }
19847
19848    public PackageFreezer freezePackage(String packageName, String killReason) {
19849        return new PackageFreezer(packageName, killReason);
19850    }
19851
19852    public PackageFreezer freezePackageForInstall(String packageName, int installFlags,
19853            String killReason) {
19854        if ((installFlags & PackageManager.INSTALL_DONT_KILL_APP) != 0) {
19855            return new PackageFreezer();
19856        } else {
19857            return freezePackage(packageName, killReason);
19858        }
19859    }
19860
19861    public PackageFreezer freezePackageForDelete(String packageName, int deleteFlags,
19862            String killReason) {
19863        if ((deleteFlags & PackageManager.DELETE_DONT_KILL_APP) != 0) {
19864            return new PackageFreezer();
19865        } else {
19866            return freezePackage(packageName, killReason);
19867        }
19868    }
19869
19870    /**
19871     * Class that freezes and kills the given package upon creation, and
19872     * unfreezes it upon closing. This is typically used when doing surgery on
19873     * app code/data to prevent the app from running while you're working.
19874     */
19875    private class PackageFreezer implements AutoCloseable {
19876        private final String mPackageName;
19877        private final PackageFreezer[] mChildren;
19878
19879        private final boolean mWeFroze;
19880
19881        private final AtomicBoolean mClosed = new AtomicBoolean();
19882        private final CloseGuard mCloseGuard = CloseGuard.get();
19883
19884        /**
19885         * Create and return a stub freezer that doesn't actually do anything,
19886         * typically used when someone requested
19887         * {@link PackageManager#INSTALL_DONT_KILL_APP} or
19888         * {@link PackageManager#DELETE_DONT_KILL_APP}.
19889         */
19890        public PackageFreezer() {
19891            mPackageName = null;
19892            mChildren = null;
19893            mWeFroze = false;
19894            mCloseGuard.open("close");
19895        }
19896
19897        public PackageFreezer(String packageName, String killReason) {
19898            synchronized (mPackages) {
19899                mPackageName = packageName;
19900                mWeFroze = mFrozenPackages.add(mPackageName);
19901
19902                final PackageSetting ps = mSettings.mPackages.get(mPackageName);
19903                if (ps != null) {
19904                    killApplication(ps.name, ps.appId, killReason);
19905                }
19906
19907                final PackageParser.Package p = mPackages.get(packageName);
19908                if (p != null && p.childPackages != null) {
19909                    final int N = p.childPackages.size();
19910                    mChildren = new PackageFreezer[N];
19911                    for (int i = 0; i < N; i++) {
19912                        mChildren[i] = new PackageFreezer(p.childPackages.get(i).packageName,
19913                                killReason);
19914                    }
19915                } else {
19916                    mChildren = null;
19917                }
19918            }
19919            mCloseGuard.open("close");
19920        }
19921
19922        @Override
19923        protected void finalize() throws Throwable {
19924            try {
19925                mCloseGuard.warnIfOpen();
19926                close();
19927            } finally {
19928                super.finalize();
19929            }
19930        }
19931
19932        @Override
19933        public void close() {
19934            mCloseGuard.close();
19935            if (mClosed.compareAndSet(false, true)) {
19936                synchronized (mPackages) {
19937                    if (mWeFroze) {
19938                        mFrozenPackages.remove(mPackageName);
19939                    }
19940
19941                    if (mChildren != null) {
19942                        for (PackageFreezer freezer : mChildren) {
19943                            freezer.close();
19944                        }
19945                    }
19946                }
19947            }
19948        }
19949    }
19950
19951    /**
19952     * Verify that given package is currently frozen.
19953     */
19954    private void checkPackageFrozen(String packageName) {
19955        synchronized (mPackages) {
19956            if (!mFrozenPackages.contains(packageName)) {
19957                Slog.wtf(TAG, "Expected " + packageName + " to be frozen!", new Throwable());
19958            }
19959        }
19960    }
19961
19962    @Override
19963    public int movePackage(final String packageName, final String volumeUuid) {
19964        mContext.enforceCallingOrSelfPermission(android.Manifest.permission.MOVE_PACKAGE, null);
19965
19966        final UserHandle user = new UserHandle(UserHandle.getCallingUserId());
19967        final int moveId = mNextMoveId.getAndIncrement();
19968        mHandler.post(new Runnable() {
19969            @Override
19970            public void run() {
19971                try {
19972                    movePackageInternal(packageName, volumeUuid, moveId, user);
19973                } catch (PackageManagerException e) {
19974                    Slog.w(TAG, "Failed to move " + packageName, e);
19975                    mMoveCallbacks.notifyStatusChanged(moveId,
19976                            PackageManager.MOVE_FAILED_INTERNAL_ERROR);
19977                }
19978            }
19979        });
19980        return moveId;
19981    }
19982
19983    private void movePackageInternal(final String packageName, final String volumeUuid,
19984            final int moveId, UserHandle user) throws PackageManagerException {
19985        final StorageManager storage = mContext.getSystemService(StorageManager.class);
19986        final PackageManager pm = mContext.getPackageManager();
19987
19988        final boolean currentAsec;
19989        final String currentVolumeUuid;
19990        final File codeFile;
19991        final String installerPackageName;
19992        final String packageAbiOverride;
19993        final int appId;
19994        final String seinfo;
19995        final String label;
19996        final int targetSdkVersion;
19997        final PackageFreezer freezer;
19998        final int[] installedUserIds;
19999
20000        // reader
20001        synchronized (mPackages) {
20002            final PackageParser.Package pkg = mPackages.get(packageName);
20003            final PackageSetting ps = mSettings.mPackages.get(packageName);
20004            if (pkg == null || ps == null) {
20005                throw new PackageManagerException(MOVE_FAILED_DOESNT_EXIST, "Missing package");
20006            }
20007
20008            if (pkg.applicationInfo.isSystemApp()) {
20009                throw new PackageManagerException(MOVE_FAILED_SYSTEM_PACKAGE,
20010                        "Cannot move system application");
20011            }
20012
20013            if (pkg.applicationInfo.isExternalAsec()) {
20014                currentAsec = true;
20015                currentVolumeUuid = StorageManager.UUID_PRIMARY_PHYSICAL;
20016            } else if (pkg.applicationInfo.isForwardLocked()) {
20017                currentAsec = true;
20018                currentVolumeUuid = "forward_locked";
20019            } else {
20020                currentAsec = false;
20021                currentVolumeUuid = ps.volumeUuid;
20022
20023                final File probe = new File(pkg.codePath);
20024                final File probeOat = new File(probe, "oat");
20025                if (!probe.isDirectory() || !probeOat.isDirectory()) {
20026                    throw new PackageManagerException(MOVE_FAILED_INTERNAL_ERROR,
20027                            "Move only supported for modern cluster style installs");
20028                }
20029            }
20030
20031            if (Objects.equals(currentVolumeUuid, volumeUuid)) {
20032                throw new PackageManagerException(MOVE_FAILED_INTERNAL_ERROR,
20033                        "Package already moved to " + volumeUuid);
20034            }
20035            if (pkg.applicationInfo.isInternal() && isPackageDeviceAdminOnAnyUser(packageName)) {
20036                throw new PackageManagerException(MOVE_FAILED_DEVICE_ADMIN,
20037                        "Device admin cannot be moved");
20038            }
20039
20040            if (mFrozenPackages.contains(packageName)) {
20041                throw new PackageManagerException(MOVE_FAILED_OPERATION_PENDING,
20042                        "Failed to move already frozen package");
20043            }
20044
20045            codeFile = new File(pkg.codePath);
20046            installerPackageName = ps.installerPackageName;
20047            packageAbiOverride = ps.cpuAbiOverrideString;
20048            appId = UserHandle.getAppId(pkg.applicationInfo.uid);
20049            seinfo = pkg.applicationInfo.seinfo;
20050            label = String.valueOf(pm.getApplicationLabel(pkg.applicationInfo));
20051            targetSdkVersion = pkg.applicationInfo.targetSdkVersion;
20052            freezer = new PackageFreezer(packageName, "movePackageInternal");
20053            installedUserIds = ps.queryInstalledUsers(sUserManager.getUserIds(), true);
20054        }
20055
20056        final Bundle extras = new Bundle();
20057        extras.putString(Intent.EXTRA_PACKAGE_NAME, packageName);
20058        extras.putString(Intent.EXTRA_TITLE, label);
20059        mMoveCallbacks.notifyCreated(moveId, extras);
20060
20061        int installFlags;
20062        final boolean moveCompleteApp;
20063        final File measurePath;
20064
20065        if (Objects.equals(StorageManager.UUID_PRIVATE_INTERNAL, volumeUuid)) {
20066            installFlags = INSTALL_INTERNAL;
20067            moveCompleteApp = !currentAsec;
20068            measurePath = Environment.getDataAppDirectory(volumeUuid);
20069        } else if (Objects.equals(StorageManager.UUID_PRIMARY_PHYSICAL, volumeUuid)) {
20070            installFlags = INSTALL_EXTERNAL;
20071            moveCompleteApp = false;
20072            measurePath = storage.getPrimaryPhysicalVolume().getPath();
20073        } else {
20074            final VolumeInfo volume = storage.findVolumeByUuid(volumeUuid);
20075            if (volume == null || volume.getType() != VolumeInfo.TYPE_PRIVATE
20076                    || !volume.isMountedWritable()) {
20077                freezer.close();
20078                throw new PackageManagerException(MOVE_FAILED_INTERNAL_ERROR,
20079                        "Move location not mounted private volume");
20080            }
20081
20082            Preconditions.checkState(!currentAsec);
20083
20084            installFlags = INSTALL_INTERNAL;
20085            moveCompleteApp = true;
20086            measurePath = Environment.getDataAppDirectory(volumeUuid);
20087        }
20088
20089        final PackageStats stats = new PackageStats(null, -1);
20090        synchronized (mInstaller) {
20091            for (int userId : installedUserIds) {
20092                if (!getPackageSizeInfoLI(packageName, userId, stats)) {
20093                    freezer.close();
20094                    throw new PackageManagerException(MOVE_FAILED_INTERNAL_ERROR,
20095                            "Failed to measure package size");
20096                }
20097            }
20098        }
20099
20100        if (DEBUG_INSTALL) Slog.d(TAG, "Measured code size " + stats.codeSize + ", data size "
20101                + stats.dataSize);
20102
20103        final long startFreeBytes = measurePath.getFreeSpace();
20104        final long sizeBytes;
20105        if (moveCompleteApp) {
20106            sizeBytes = stats.codeSize + stats.dataSize;
20107        } else {
20108            sizeBytes = stats.codeSize;
20109        }
20110
20111        if (sizeBytes > storage.getStorageBytesUntilLow(measurePath)) {
20112            freezer.close();
20113            throw new PackageManagerException(MOVE_FAILED_INTERNAL_ERROR,
20114                    "Not enough free space to move");
20115        }
20116
20117        mMoveCallbacks.notifyStatusChanged(moveId, 10);
20118
20119        final CountDownLatch installedLatch = new CountDownLatch(1);
20120        final IPackageInstallObserver2 installObserver = new IPackageInstallObserver2.Stub() {
20121            @Override
20122            public void onUserActionRequired(Intent intent) throws RemoteException {
20123                throw new IllegalStateException();
20124            }
20125
20126            @Override
20127            public void onPackageInstalled(String basePackageName, int returnCode, String msg,
20128                    Bundle extras) throws RemoteException {
20129                if (DEBUG_INSTALL) Slog.d(TAG, "Install result for move: "
20130                        + PackageManager.installStatusToString(returnCode, msg));
20131
20132                installedLatch.countDown();
20133                freezer.close();
20134
20135                final int status = PackageManager.installStatusToPublicStatus(returnCode);
20136                switch (status) {
20137                    case PackageInstaller.STATUS_SUCCESS:
20138                        mMoveCallbacks.notifyStatusChanged(moveId,
20139                                PackageManager.MOVE_SUCCEEDED);
20140                        break;
20141                    case PackageInstaller.STATUS_FAILURE_STORAGE:
20142                        mMoveCallbacks.notifyStatusChanged(moveId,
20143                                PackageManager.MOVE_FAILED_INSUFFICIENT_STORAGE);
20144                        break;
20145                    default:
20146                        mMoveCallbacks.notifyStatusChanged(moveId,
20147                                PackageManager.MOVE_FAILED_INTERNAL_ERROR);
20148                        break;
20149                }
20150            }
20151        };
20152
20153        final MoveInfo move;
20154        if (moveCompleteApp) {
20155            // Kick off a thread to report progress estimates
20156            new Thread() {
20157                @Override
20158                public void run() {
20159                    while (true) {
20160                        try {
20161                            if (installedLatch.await(1, TimeUnit.SECONDS)) {
20162                                break;
20163                            }
20164                        } catch (InterruptedException ignored) {
20165                        }
20166
20167                        final long deltaFreeBytes = startFreeBytes - measurePath.getFreeSpace();
20168                        final int progress = 10 + (int) MathUtils.constrain(
20169                                ((deltaFreeBytes * 80) / sizeBytes), 0, 80);
20170                        mMoveCallbacks.notifyStatusChanged(moveId, progress);
20171                    }
20172                }
20173            }.start();
20174
20175            final String dataAppName = codeFile.getName();
20176            move = new MoveInfo(moveId, currentVolumeUuid, volumeUuid, packageName,
20177                    dataAppName, appId, seinfo, targetSdkVersion);
20178        } else {
20179            move = null;
20180        }
20181
20182        installFlags |= PackageManager.INSTALL_REPLACE_EXISTING;
20183
20184        final Message msg = mHandler.obtainMessage(INIT_COPY);
20185        final OriginInfo origin = OriginInfo.fromExistingFile(codeFile);
20186        final InstallParams params = new InstallParams(origin, move, installObserver, installFlags,
20187                installerPackageName, volumeUuid, null /*verificationInfo*/, user,
20188                packageAbiOverride, null /*grantedPermissions*/, null /*certificates*/);
20189        params.setTraceMethod("movePackage").setTraceCookie(System.identityHashCode(params));
20190        msg.obj = params;
20191
20192        Trace.asyncTraceBegin(TRACE_TAG_PACKAGE_MANAGER, "movePackage",
20193                System.identityHashCode(msg.obj));
20194        Trace.asyncTraceBegin(TRACE_TAG_PACKAGE_MANAGER, "queueInstall",
20195                System.identityHashCode(msg.obj));
20196
20197        mHandler.sendMessage(msg);
20198    }
20199
20200    @Override
20201    public int movePrimaryStorage(String volumeUuid) throws RemoteException {
20202        mContext.enforceCallingOrSelfPermission(android.Manifest.permission.MOVE_PACKAGE, null);
20203
20204        final int realMoveId = mNextMoveId.getAndIncrement();
20205        final Bundle extras = new Bundle();
20206        extras.putString(VolumeRecord.EXTRA_FS_UUID, volumeUuid);
20207        mMoveCallbacks.notifyCreated(realMoveId, extras);
20208
20209        final IPackageMoveObserver callback = new IPackageMoveObserver.Stub() {
20210            @Override
20211            public void onCreated(int moveId, Bundle extras) {
20212                // Ignored
20213            }
20214
20215            @Override
20216            public void onStatusChanged(int moveId, int status, long estMillis) {
20217                mMoveCallbacks.notifyStatusChanged(realMoveId, status, estMillis);
20218            }
20219        };
20220
20221        final StorageManager storage = mContext.getSystemService(StorageManager.class);
20222        storage.setPrimaryStorageUuid(volumeUuid, callback);
20223        return realMoveId;
20224    }
20225
20226    @Override
20227    public int getMoveStatus(int moveId) {
20228        mContext.enforceCallingOrSelfPermission(
20229                android.Manifest.permission.MOUNT_UNMOUNT_FILESYSTEMS, null);
20230        return mMoveCallbacks.mLastStatus.get(moveId);
20231    }
20232
20233    @Override
20234    public void registerMoveCallback(IPackageMoveObserver callback) {
20235        mContext.enforceCallingOrSelfPermission(
20236                android.Manifest.permission.MOUNT_UNMOUNT_FILESYSTEMS, null);
20237        mMoveCallbacks.register(callback);
20238    }
20239
20240    @Override
20241    public void unregisterMoveCallback(IPackageMoveObserver callback) {
20242        mContext.enforceCallingOrSelfPermission(
20243                android.Manifest.permission.MOUNT_UNMOUNT_FILESYSTEMS, null);
20244        mMoveCallbacks.unregister(callback);
20245    }
20246
20247    @Override
20248    public boolean setInstallLocation(int loc) {
20249        mContext.enforceCallingOrSelfPermission(android.Manifest.permission.WRITE_SECURE_SETTINGS,
20250                null);
20251        if (getInstallLocation() == loc) {
20252            return true;
20253        }
20254        if (loc == PackageHelper.APP_INSTALL_AUTO || loc == PackageHelper.APP_INSTALL_INTERNAL
20255                || loc == PackageHelper.APP_INSTALL_EXTERNAL) {
20256            android.provider.Settings.Global.putInt(mContext.getContentResolver(),
20257                    android.provider.Settings.Global.DEFAULT_INSTALL_LOCATION, loc);
20258            return true;
20259        }
20260        return false;
20261   }
20262
20263    @Override
20264    public int getInstallLocation() {
20265        return android.provider.Settings.Global.getInt(mContext.getContentResolver(),
20266                android.provider.Settings.Global.DEFAULT_INSTALL_LOCATION,
20267                PackageHelper.APP_INSTALL_AUTO);
20268    }
20269
20270    /** Called by UserManagerService */
20271    void cleanUpUser(UserManagerService userManager, int userHandle) {
20272        synchronized (mPackages) {
20273            mDirtyUsers.remove(userHandle);
20274            mUserNeedsBadging.delete(userHandle);
20275            mSettings.removeUserLPw(userHandle);
20276            mPendingBroadcasts.remove(userHandle);
20277            mEphemeralApplicationRegistry.onUserRemovedLPw(userHandle);
20278            removeUnusedPackagesLPw(userManager, userHandle);
20279        }
20280    }
20281
20282    /**
20283     * We're removing userHandle and would like to remove any downloaded packages
20284     * that are no longer in use by any other user.
20285     * @param userHandle the user being removed
20286     */
20287    private void removeUnusedPackagesLPw(UserManagerService userManager, final int userHandle) {
20288        final boolean DEBUG_CLEAN_APKS = false;
20289        int [] users = userManager.getUserIds();
20290        Iterator<PackageSetting> psit = mSettings.mPackages.values().iterator();
20291        while (psit.hasNext()) {
20292            PackageSetting ps = psit.next();
20293            if (ps.pkg == null) {
20294                continue;
20295            }
20296            final String packageName = ps.pkg.packageName;
20297            // Skip over if system app
20298            if ((ps.pkgFlags & ApplicationInfo.FLAG_SYSTEM) != 0) {
20299                continue;
20300            }
20301            if (DEBUG_CLEAN_APKS) {
20302                Slog.i(TAG, "Checking package " + packageName);
20303            }
20304            boolean keep = shouldKeepUninstalledPackageLPr(packageName);
20305            if (keep) {
20306                if (DEBUG_CLEAN_APKS) {
20307                    Slog.i(TAG, "  Keeping package " + packageName + " - requested by DO");
20308                }
20309            } else {
20310                for (int i = 0; i < users.length; i++) {
20311                    if (users[i] != userHandle && ps.getInstalled(users[i])) {
20312                        keep = true;
20313                        if (DEBUG_CLEAN_APKS) {
20314                            Slog.i(TAG, "  Keeping package " + packageName + " for user "
20315                                    + users[i]);
20316                        }
20317                        break;
20318                    }
20319                }
20320            }
20321            if (!keep) {
20322                if (DEBUG_CLEAN_APKS) {
20323                    Slog.i(TAG, "  Removing package " + packageName);
20324                }
20325                mHandler.post(new Runnable() {
20326                    public void run() {
20327                        deletePackageX(packageName, userHandle, 0);
20328                    } //end run
20329                });
20330            }
20331        }
20332    }
20333
20334    /** Called by UserManagerService */
20335    void createNewUser(int userId) {
20336        synchronized (mInstallLock) {
20337            mSettings.createNewUserLI(this, mInstaller, userId);
20338        }
20339        synchronized (mPackages) {
20340            scheduleWritePackageRestrictionsLocked(userId);
20341            scheduleWritePackageListLocked(userId);
20342            applyFactoryDefaultBrowserLPw(userId);
20343            primeDomainVerificationsLPw(userId);
20344        }
20345    }
20346
20347    void onBeforeUserStartUninitialized(final int userId) {
20348        synchronized (mPackages) {
20349            if (mSettings.areDefaultRuntimePermissionsGrantedLPr(userId)) {
20350                return;
20351            }
20352        }
20353        mDefaultPermissionPolicy.grantDefaultPermissions(userId);
20354        // If permission review for legacy apps is required, we represent
20355        // dagerous permissions for such apps as always granted runtime
20356        // permissions to keep per user flag state whether review is needed.
20357        // Hence, if a new user is added we have to propagate dangerous
20358        // permission grants for these legacy apps.
20359        if (Build.PERMISSIONS_REVIEW_REQUIRED) {
20360            updatePermissionsLPw(null, null, UPDATE_PERMISSIONS_ALL
20361                    | UPDATE_PERMISSIONS_REPLACE_ALL);
20362        }
20363    }
20364
20365    @Override
20366    public VerifierDeviceIdentity getVerifierDeviceIdentity() throws RemoteException {
20367        mContext.enforceCallingOrSelfPermission(
20368                android.Manifest.permission.PACKAGE_VERIFICATION_AGENT,
20369                "Only package verification agents can read the verifier device identity");
20370
20371        synchronized (mPackages) {
20372            return mSettings.getVerifierDeviceIdentityLPw();
20373        }
20374    }
20375
20376    @Override
20377    public void setPermissionEnforced(String permission, boolean enforced) {
20378        // TODO: Now that we no longer change GID for storage, this should to away.
20379        mContext.enforceCallingOrSelfPermission(Manifest.permission.GRANT_RUNTIME_PERMISSIONS,
20380                "setPermissionEnforced");
20381        if (READ_EXTERNAL_STORAGE.equals(permission)) {
20382            synchronized (mPackages) {
20383                if (mSettings.mReadExternalStorageEnforced == null
20384                        || mSettings.mReadExternalStorageEnforced != enforced) {
20385                    mSettings.mReadExternalStorageEnforced = enforced;
20386                    mSettings.writeLPr();
20387                }
20388            }
20389            // kill any non-foreground processes so we restart them and
20390            // grant/revoke the GID.
20391            final IActivityManager am = ActivityManagerNative.getDefault();
20392            if (am != null) {
20393                final long token = Binder.clearCallingIdentity();
20394                try {
20395                    am.killProcessesBelowForeground("setPermissionEnforcement");
20396                } catch (RemoteException e) {
20397                } finally {
20398                    Binder.restoreCallingIdentity(token);
20399                }
20400            }
20401        } else {
20402            throw new IllegalArgumentException("No selective enforcement for " + permission);
20403        }
20404    }
20405
20406    @Override
20407    @Deprecated
20408    public boolean isPermissionEnforced(String permission) {
20409        return true;
20410    }
20411
20412    @Override
20413    public boolean isStorageLow() {
20414        final long token = Binder.clearCallingIdentity();
20415        try {
20416            final DeviceStorageMonitorInternal
20417                    dsm = LocalServices.getService(DeviceStorageMonitorInternal.class);
20418            if (dsm != null) {
20419                return dsm.isMemoryLow();
20420            } else {
20421                return false;
20422            }
20423        } finally {
20424            Binder.restoreCallingIdentity(token);
20425        }
20426    }
20427
20428    @Override
20429    public IPackageInstaller getPackageInstaller() {
20430        return mInstallerService;
20431    }
20432
20433    private boolean userNeedsBadging(int userId) {
20434        int index = mUserNeedsBadging.indexOfKey(userId);
20435        if (index < 0) {
20436            final UserInfo userInfo;
20437            final long token = Binder.clearCallingIdentity();
20438            try {
20439                userInfo = sUserManager.getUserInfo(userId);
20440            } finally {
20441                Binder.restoreCallingIdentity(token);
20442            }
20443            final boolean b;
20444            if (userInfo != null && userInfo.isManagedProfile()) {
20445                b = true;
20446            } else {
20447                b = false;
20448            }
20449            mUserNeedsBadging.put(userId, b);
20450            return b;
20451        }
20452        return mUserNeedsBadging.valueAt(index);
20453    }
20454
20455    @Override
20456    public KeySet getKeySetByAlias(String packageName, String alias) {
20457        if (packageName == null || alias == null) {
20458            return null;
20459        }
20460        synchronized(mPackages) {
20461            final PackageParser.Package pkg = mPackages.get(packageName);
20462            if (pkg == null) {
20463                Slog.w(TAG, "KeySet requested for unknown package: " + packageName);
20464                throw new IllegalArgumentException("Unknown package: " + packageName);
20465            }
20466            KeySetManagerService ksms = mSettings.mKeySetManagerService;
20467            return new KeySet(ksms.getKeySetByAliasAndPackageNameLPr(packageName, alias));
20468        }
20469    }
20470
20471    @Override
20472    public KeySet getSigningKeySet(String packageName) {
20473        if (packageName == null) {
20474            return null;
20475        }
20476        synchronized(mPackages) {
20477            final PackageParser.Package pkg = mPackages.get(packageName);
20478            if (pkg == null) {
20479                Slog.w(TAG, "KeySet requested for unknown package: " + packageName);
20480                throw new IllegalArgumentException("Unknown package: " + packageName);
20481            }
20482            if (pkg.applicationInfo.uid != Binder.getCallingUid()
20483                    && Process.SYSTEM_UID != Binder.getCallingUid()) {
20484                throw new SecurityException("May not access signing KeySet of other apps.");
20485            }
20486            KeySetManagerService ksms = mSettings.mKeySetManagerService;
20487            return new KeySet(ksms.getSigningKeySetByPackageNameLPr(packageName));
20488        }
20489    }
20490
20491    @Override
20492    public boolean isPackageSignedByKeySet(String packageName, KeySet ks) {
20493        if (packageName == null || ks == null) {
20494            return false;
20495        }
20496        synchronized(mPackages) {
20497            final PackageParser.Package pkg = mPackages.get(packageName);
20498            if (pkg == null) {
20499                Slog.w(TAG, "KeySet requested for unknown package: " + packageName);
20500                throw new IllegalArgumentException("Unknown package: " + packageName);
20501            }
20502            IBinder ksh = ks.getToken();
20503            if (ksh instanceof KeySetHandle) {
20504                KeySetManagerService ksms = mSettings.mKeySetManagerService;
20505                return ksms.packageIsSignedByLPr(packageName, (KeySetHandle) ksh);
20506            }
20507            return false;
20508        }
20509    }
20510
20511    @Override
20512    public boolean isPackageSignedByKeySetExactly(String packageName, KeySet ks) {
20513        if (packageName == null || ks == null) {
20514            return false;
20515        }
20516        synchronized(mPackages) {
20517            final PackageParser.Package pkg = mPackages.get(packageName);
20518            if (pkg == null) {
20519                Slog.w(TAG, "KeySet requested for unknown package: " + packageName);
20520                throw new IllegalArgumentException("Unknown package: " + packageName);
20521            }
20522            IBinder ksh = ks.getToken();
20523            if (ksh instanceof KeySetHandle) {
20524                KeySetManagerService ksms = mSettings.mKeySetManagerService;
20525                return ksms.packageIsSignedByExactlyLPr(packageName, (KeySetHandle) ksh);
20526            }
20527            return false;
20528        }
20529    }
20530
20531    private void deletePackageIfUnusedLPr(final String packageName) {
20532        PackageSetting ps = mSettings.mPackages.get(packageName);
20533        if (ps == null) {
20534            return;
20535        }
20536        if (!ps.isAnyInstalled(sUserManager.getUserIds())) {
20537            // TODO Implement atomic delete if package is unused
20538            // It is currently possible that the package will be deleted even if it is installed
20539            // after this method returns.
20540            mHandler.post(new Runnable() {
20541                public void run() {
20542                    deletePackageX(packageName, 0, PackageManager.DELETE_ALL_USERS);
20543                }
20544            });
20545        }
20546    }
20547
20548    /**
20549     * Check and throw if the given before/after packages would be considered a
20550     * downgrade.
20551     */
20552    private static void checkDowngrade(PackageParser.Package before, PackageInfoLite after)
20553            throws PackageManagerException {
20554        if (after.versionCode < before.mVersionCode) {
20555            throw new PackageManagerException(INSTALL_FAILED_VERSION_DOWNGRADE,
20556                    "Update version code " + after.versionCode + " is older than current "
20557                    + before.mVersionCode);
20558        } else if (after.versionCode == before.mVersionCode) {
20559            if (after.baseRevisionCode < before.baseRevisionCode) {
20560                throw new PackageManagerException(INSTALL_FAILED_VERSION_DOWNGRADE,
20561                        "Update base revision code " + after.baseRevisionCode
20562                        + " is older than current " + before.baseRevisionCode);
20563            }
20564
20565            if (!ArrayUtils.isEmpty(after.splitNames)) {
20566                for (int i = 0; i < after.splitNames.length; i++) {
20567                    final String splitName = after.splitNames[i];
20568                    final int j = ArrayUtils.indexOf(before.splitNames, splitName);
20569                    if (j != -1) {
20570                        if (after.splitRevisionCodes[i] < before.splitRevisionCodes[j]) {
20571                            throw new PackageManagerException(INSTALL_FAILED_VERSION_DOWNGRADE,
20572                                    "Update split " + splitName + " revision code "
20573                                    + after.splitRevisionCodes[i] + " is older than current "
20574                                    + before.splitRevisionCodes[j]);
20575                        }
20576                    }
20577                }
20578            }
20579        }
20580    }
20581
20582    private static class MoveCallbacks extends Handler {
20583        private static final int MSG_CREATED = 1;
20584        private static final int MSG_STATUS_CHANGED = 2;
20585
20586        private final RemoteCallbackList<IPackageMoveObserver>
20587                mCallbacks = new RemoteCallbackList<>();
20588
20589        private final SparseIntArray mLastStatus = new SparseIntArray();
20590
20591        public MoveCallbacks(Looper looper) {
20592            super(looper);
20593        }
20594
20595        public void register(IPackageMoveObserver callback) {
20596            mCallbacks.register(callback);
20597        }
20598
20599        public void unregister(IPackageMoveObserver callback) {
20600            mCallbacks.unregister(callback);
20601        }
20602
20603        @Override
20604        public void handleMessage(Message msg) {
20605            final SomeArgs args = (SomeArgs) msg.obj;
20606            final int n = mCallbacks.beginBroadcast();
20607            for (int i = 0; i < n; i++) {
20608                final IPackageMoveObserver callback = mCallbacks.getBroadcastItem(i);
20609                try {
20610                    invokeCallback(callback, msg.what, args);
20611                } catch (RemoteException ignored) {
20612                }
20613            }
20614            mCallbacks.finishBroadcast();
20615            args.recycle();
20616        }
20617
20618        private void invokeCallback(IPackageMoveObserver callback, int what, SomeArgs args)
20619                throws RemoteException {
20620            switch (what) {
20621                case MSG_CREATED: {
20622                    callback.onCreated(args.argi1, (Bundle) args.arg2);
20623                    break;
20624                }
20625                case MSG_STATUS_CHANGED: {
20626                    callback.onStatusChanged(args.argi1, args.argi2, (long) args.arg3);
20627                    break;
20628                }
20629            }
20630        }
20631
20632        private void notifyCreated(int moveId, Bundle extras) {
20633            Slog.v(TAG, "Move " + moveId + " created " + extras.toString());
20634
20635            final SomeArgs args = SomeArgs.obtain();
20636            args.argi1 = moveId;
20637            args.arg2 = extras;
20638            obtainMessage(MSG_CREATED, args).sendToTarget();
20639        }
20640
20641        private void notifyStatusChanged(int moveId, int status) {
20642            notifyStatusChanged(moveId, status, -1);
20643        }
20644
20645        private void notifyStatusChanged(int moveId, int status, long estMillis) {
20646            Slog.v(TAG, "Move " + moveId + " status " + status);
20647
20648            final SomeArgs args = SomeArgs.obtain();
20649            args.argi1 = moveId;
20650            args.argi2 = status;
20651            args.arg3 = estMillis;
20652            obtainMessage(MSG_STATUS_CHANGED, args).sendToTarget();
20653
20654            synchronized (mLastStatus) {
20655                mLastStatus.put(moveId, status);
20656            }
20657        }
20658    }
20659
20660    private final static class OnPermissionChangeListeners extends Handler {
20661        private static final int MSG_ON_PERMISSIONS_CHANGED = 1;
20662
20663        private final RemoteCallbackList<IOnPermissionsChangeListener> mPermissionListeners =
20664                new RemoteCallbackList<>();
20665
20666        public OnPermissionChangeListeners(Looper looper) {
20667            super(looper);
20668        }
20669
20670        @Override
20671        public void handleMessage(Message msg) {
20672            switch (msg.what) {
20673                case MSG_ON_PERMISSIONS_CHANGED: {
20674                    final int uid = msg.arg1;
20675                    handleOnPermissionsChanged(uid);
20676                } break;
20677            }
20678        }
20679
20680        public void addListenerLocked(IOnPermissionsChangeListener listener) {
20681            mPermissionListeners.register(listener);
20682
20683        }
20684
20685        public void removeListenerLocked(IOnPermissionsChangeListener listener) {
20686            mPermissionListeners.unregister(listener);
20687        }
20688
20689        public void onPermissionsChanged(int uid) {
20690            if (mPermissionListeners.getRegisteredCallbackCount() > 0) {
20691                obtainMessage(MSG_ON_PERMISSIONS_CHANGED, uid, 0).sendToTarget();
20692            }
20693        }
20694
20695        private void handleOnPermissionsChanged(int uid) {
20696            final int count = mPermissionListeners.beginBroadcast();
20697            try {
20698                for (int i = 0; i < count; i++) {
20699                    IOnPermissionsChangeListener callback = mPermissionListeners
20700                            .getBroadcastItem(i);
20701                    try {
20702                        callback.onPermissionsChanged(uid);
20703                    } catch (RemoteException e) {
20704                        Log.e(TAG, "Permission listener is dead", e);
20705                    }
20706                }
20707            } finally {
20708                mPermissionListeners.finishBroadcast();
20709            }
20710        }
20711    }
20712
20713    private class PackageManagerInternalImpl extends PackageManagerInternal {
20714        @Override
20715        public void setLocationPackagesProvider(PackagesProvider provider) {
20716            synchronized (mPackages) {
20717                mDefaultPermissionPolicy.setLocationPackagesProviderLPw(provider);
20718            }
20719        }
20720
20721        @Override
20722        public void setVoiceInteractionPackagesProvider(PackagesProvider provider) {
20723            synchronized (mPackages) {
20724                mDefaultPermissionPolicy.setVoiceInteractionPackagesProviderLPw(provider);
20725            }
20726        }
20727
20728        @Override
20729        public void setSmsAppPackagesProvider(PackagesProvider provider) {
20730            synchronized (mPackages) {
20731                mDefaultPermissionPolicy.setSmsAppPackagesProviderLPw(provider);
20732            }
20733        }
20734
20735        @Override
20736        public void setDialerAppPackagesProvider(PackagesProvider provider) {
20737            synchronized (mPackages) {
20738                mDefaultPermissionPolicy.setDialerAppPackagesProviderLPw(provider);
20739            }
20740        }
20741
20742        @Override
20743        public void setSimCallManagerPackagesProvider(PackagesProvider provider) {
20744            synchronized (mPackages) {
20745                mDefaultPermissionPolicy.setSimCallManagerPackagesProviderLPw(provider);
20746            }
20747        }
20748
20749        @Override
20750        public void setSyncAdapterPackagesprovider(SyncAdapterPackagesProvider provider) {
20751            synchronized (mPackages) {
20752                mDefaultPermissionPolicy.setSyncAdapterPackagesProviderLPw(provider);
20753            }
20754        }
20755
20756        @Override
20757        public void grantDefaultPermissionsToDefaultSmsApp(String packageName, int userId) {
20758            synchronized (mPackages) {
20759                mDefaultPermissionPolicy.grantDefaultPermissionsToDefaultSmsAppLPr(
20760                        packageName, userId);
20761            }
20762        }
20763
20764        @Override
20765        public void grantDefaultPermissionsToDefaultDialerApp(String packageName, int userId) {
20766            synchronized (mPackages) {
20767                mSettings.setDefaultDialerPackageNameLPw(packageName, userId);
20768                mDefaultPermissionPolicy.grantDefaultPermissionsToDefaultDialerAppLPr(
20769                        packageName, userId);
20770            }
20771        }
20772
20773        @Override
20774        public void grantDefaultPermissionsToDefaultSimCallManager(String packageName, int userId) {
20775            synchronized (mPackages) {
20776                mDefaultPermissionPolicy.grantDefaultPermissionsToDefaultSimCallManagerLPr(
20777                        packageName, userId);
20778            }
20779        }
20780
20781        @Override
20782        public void setKeepUninstalledPackages(final List<String> packageList) {
20783            Preconditions.checkNotNull(packageList);
20784            List<String> removedFromList = null;
20785            synchronized (mPackages) {
20786                if (mKeepUninstalledPackages != null) {
20787                    final int packagesCount = mKeepUninstalledPackages.size();
20788                    for (int i = 0; i < packagesCount; i++) {
20789                        String oldPackage = mKeepUninstalledPackages.get(i);
20790                        if (packageList != null && packageList.contains(oldPackage)) {
20791                            continue;
20792                        }
20793                        if (removedFromList == null) {
20794                            removedFromList = new ArrayList<>();
20795                        }
20796                        removedFromList.add(oldPackage);
20797                    }
20798                }
20799                mKeepUninstalledPackages = new ArrayList<>(packageList);
20800                if (removedFromList != null) {
20801                    final int removedCount = removedFromList.size();
20802                    for (int i = 0; i < removedCount; i++) {
20803                        deletePackageIfUnusedLPr(removedFromList.get(i));
20804                    }
20805                }
20806            }
20807        }
20808
20809        @Override
20810        public boolean isPermissionsReviewRequired(String packageName, int userId) {
20811            synchronized (mPackages) {
20812                // If we do not support permission review, done.
20813                if (!Build.PERMISSIONS_REVIEW_REQUIRED) {
20814                    return false;
20815                }
20816
20817                PackageSetting packageSetting = mSettings.mPackages.get(packageName);
20818                if (packageSetting == null) {
20819                    return false;
20820                }
20821
20822                // Permission review applies only to apps not supporting the new permission model.
20823                if (packageSetting.pkg.applicationInfo.targetSdkVersion >= Build.VERSION_CODES.M) {
20824                    return false;
20825                }
20826
20827                // Legacy apps have the permission and get user consent on launch.
20828                PermissionsState permissionsState = packageSetting.getPermissionsState();
20829                return permissionsState.isPermissionReviewRequired(userId);
20830            }
20831        }
20832
20833        @Override
20834        public ApplicationInfo getApplicationInfo(String packageName, int userId) {
20835            return PackageManagerService.this.getApplicationInfo(packageName, 0 /*flags*/, userId);
20836        }
20837
20838        @Override
20839        public ComponentName getHomeActivitiesAsUser(List<ResolveInfo> allHomeCandidates,
20840                int userId) {
20841            return PackageManagerService.this.getHomeActivitiesAsUser(allHomeCandidates, userId);
20842        }
20843
20844        @Override
20845        public void setDeviceAndProfileOwnerPackages(
20846                int deviceOwnerUserId, String deviceOwnerPackage,
20847                SparseArray<String> profileOwnerPackages) {
20848            mProtectedPackages.setDeviceAndProfileOwnerPackages(
20849                    deviceOwnerUserId, deviceOwnerPackage, profileOwnerPackages);
20850        }
20851
20852        @Override
20853        public boolean canPackageBeWiped(int userId, String packageName) {
20854            return mProtectedPackages.canPackageBeWiped(userId,
20855                    packageName);
20856        }
20857    }
20858
20859    @Override
20860    public void grantDefaultPermissionsToEnabledCarrierApps(String[] packageNames, int userId) {
20861        enforceSystemOrPhoneCaller("grantPermissionsToEnabledCarrierApps");
20862        synchronized (mPackages) {
20863            final long identity = Binder.clearCallingIdentity();
20864            try {
20865                mDefaultPermissionPolicy.grantDefaultPermissionsToEnabledCarrierAppsLPr(
20866                        packageNames, userId);
20867            } finally {
20868                Binder.restoreCallingIdentity(identity);
20869            }
20870        }
20871    }
20872
20873    private static void enforceSystemOrPhoneCaller(String tag) {
20874        int callingUid = Binder.getCallingUid();
20875        if (callingUid != Process.PHONE_UID && callingUid != Process.SYSTEM_UID) {
20876            throw new SecurityException(
20877                    "Cannot call " + tag + " from UID " + callingUid);
20878        }
20879    }
20880
20881    boolean isHistoricalPackageUsageAvailable() {
20882        return mPackageUsage.isHistoricalPackageUsageAvailable();
20883    }
20884
20885    /**
20886     * Return a <b>copy</b> of the collection of packages known to the package manager.
20887     * @return A copy of the values of mPackages.
20888     */
20889    Collection<PackageParser.Package> getPackages() {
20890        synchronized (mPackages) {
20891            return new ArrayList<>(mPackages.values());
20892        }
20893    }
20894
20895    /**
20896     * Logs process start information (including base APK hash) to the security log.
20897     * @hide
20898     */
20899    public void logAppProcessStartIfNeeded(String processName, int uid, String seinfo,
20900            String apkFile, int pid) {
20901        if (!SecurityLog.isLoggingEnabled()) {
20902            return;
20903        }
20904        Bundle data = new Bundle();
20905        data.putLong("startTimestamp", System.currentTimeMillis());
20906        data.putString("processName", processName);
20907        data.putInt("uid", uid);
20908        data.putString("seinfo", seinfo);
20909        data.putString("apkFile", apkFile);
20910        data.putInt("pid", pid);
20911        Message msg = mProcessLoggingHandler.obtainMessage(
20912                ProcessLoggingHandler.LOG_APP_PROCESS_START_MSG);
20913        msg.setData(data);
20914        mProcessLoggingHandler.sendMessage(msg);
20915    }
20916}
20917