AppErrors.java revision f013daa3ac7718c983cf850784f5cf29ee027487
120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos/*
220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos * Copyright (C) 2016 The Android Open Source Project
320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos *
420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos * Licensed under the Apache License, Version 2.0 (the "License");
520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos * you may not use this file except in compliance with the License.
620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos * You may obtain a copy of the License at
720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos *
820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos *      http://www.apache.org/licenses/LICENSE-2.0
920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos *
1020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos * Unless required by applicable law or agreed to in writing, software
1120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos * distributed under the License is distributed on an "AS IS" BASIS,
1220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos * See the License for the specific language governing permissions and
1420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos * limitations under the License
1520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos */
1620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
1720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roospackage com.android.server.am;
1820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
1920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roosimport com.android.internal.app.ProcessMap;
209046222cb2b1bd57278ddbf71d9f628f8dd254aeAdrian Roosimport com.android.internal.logging.MetricsLogger;
21383db5ebcc3a4a615faf249bf4f126f42e80b82eTamas Berghammerimport com.android.internal.logging.nano.MetricsProto;
2220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roosimport com.android.internal.os.ProcessCpuTracker;
23fe6f85cac9e823fd33a134f7129fdf7310703293Jeff Sharkeyimport com.android.server.RescueParty;
2420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roosimport com.android.server.Watchdog;
2520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
2620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roosimport android.app.ActivityManager;
2720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roosimport android.app.ActivityOptions;
2820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roosimport android.app.ActivityThread;
2920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roosimport android.app.AppOpsManager;
3020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roosimport android.app.ApplicationErrorReport;
3120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roosimport android.app.Dialog;
3220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roosimport android.content.ActivityNotFoundException;
3320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roosimport android.content.Context;
3420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roosimport android.content.Intent;
3520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roosimport android.content.pm.ApplicationInfo;
3620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roosimport android.os.Binder;
3720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roosimport android.os.Message;
3820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roosimport android.os.Process;
3920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roosimport android.os.RemoteException;
4020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roosimport android.os.SystemClock;
4120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roosimport android.os.SystemProperties;
4220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roosimport android.os.UserHandle;
4320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roosimport android.provider.Settings;
4420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roosimport android.util.ArrayMap;
4520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roosimport android.util.ArraySet;
4620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roosimport android.util.EventLog;
4720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roosimport android.util.Log;
4820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roosimport android.util.Slog;
4920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roosimport android.util.SparseArray;
5020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roosimport android.util.TimeUtils;
5120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
5220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roosimport java.io.File;
5320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roosimport java.io.FileDescriptor;
5420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roosimport java.io.PrintWriter;
5520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roosimport java.util.ArrayList;
5620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roosimport java.util.Collections;
5720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roosimport java.util.HashMap;
58f013daa3ac7718c983cf850784f5cf29ee027487Narayan Kamathimport java.util.List;
594d8959489d6b4123340dd2113044548b37d1b370Dianne Hackbornimport java.util.Set;
6020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
6120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roosimport static com.android.server.Watchdog.NATIVE_STACKS_OF_INTEREST;
629369efdf6a43d8fa0f82dcae651c76b85a5ea0adDianne Hackbornimport static com.android.server.am.ActivityManagerDebugConfig.DEBUG_ANR;
6320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roosimport static com.android.server.am.ActivityManagerDebugConfig.TAG_AM;
6420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roosimport static com.android.server.am.ActivityManagerDebugConfig.TAG_WITH_CLASS_NAME;
6520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roosimport static com.android.server.am.ActivityManagerService.MY_PID;
6620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roosimport static com.android.server.am.ActivityManagerService.SYSTEM_DEBUGGABLE;
6720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
6820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos/**
6920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos * Controls error conditions in applications.
7020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos */
7120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roosclass AppErrors {
7220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
7320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos    private static final String TAG = TAG_WITH_CLASS_NAME ? "AppErrors" : TAG_AM;
7420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
7520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos    private final ActivityManagerService mService;
7620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos    private final Context mContext;
7720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
7820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos    private ArraySet<String> mAppsNotReportingCrashes;
7920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
8020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos    /**
8120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos     * The last time that various processes have crashed since they were last explicitly started.
8220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos     */
8320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos    private final ProcessMap<Long> mProcessCrashTimes = new ProcessMap<>();
8420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
8520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos    /**
8620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos     * The last time that various processes have crashed (not reset even when explicitly started).
8720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos     */
8820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos    private final ProcessMap<Long> mProcessCrashTimesPersistent = new ProcessMap<>();
8920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
9020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos    /**
9120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos     * Set of applications that we consider to be bad, and will reject
9220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos     * incoming broadcasts from (which the user has no control over).
9320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos     * Processes are added to this set when they have crashed twice within
9420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos     * a minimum amount of time; they are removed from it when they are
9520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos     * later restarted (hopefully due to some user action).  The value is the
9620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos     * time it was added to the list.
9720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos     */
9820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos    private final ProcessMap<BadProcessInfo> mBadProcesses = new ProcessMap<>();
9920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
10020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
10120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos    AppErrors(Context context, ActivityManagerService service) {
102a82b62678a0e1eaba50ec5adce93862683dac065Adam Lesinski        context.assertRuntimeOverlayThemable();
10320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        mService = service;
10420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        mContext = context;
10520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos    }
10620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
10720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos    boolean dumpLocked(FileDescriptor fd, PrintWriter pw, boolean needSep,
10820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            String dumpPackage) {
10920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        if (!mProcessCrashTimes.getMap().isEmpty()) {
11020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            boolean printed = false;
11120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            final long now = SystemClock.uptimeMillis();
11220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            final ArrayMap<String, SparseArray<Long>> pmap = mProcessCrashTimes.getMap();
11320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            final int processCount = pmap.size();
11420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            for (int ip = 0; ip < processCount; ip++) {
11520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                final String pname = pmap.keyAt(ip);
11620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                final SparseArray<Long> uids = pmap.valueAt(ip);
11720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                final int uidCount = uids.size();
11820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                for (int i = 0; i < uidCount; i++) {
11920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    final int puid = uids.keyAt(i);
12020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    final ProcessRecord r = mService.mProcessNames.get(pname, puid);
12120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    if (dumpPackage != null && (r == null
12220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                            || !r.pkgList.containsKey(dumpPackage))) {
12320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                        continue;
12420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    }
12520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    if (!printed) {
12620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                        if (needSep) pw.println();
12720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                        needSep = true;
12820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                        pw.println("  Time since processes crashed:");
12920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                        printed = true;
13020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    }
13120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    pw.print("    Process "); pw.print(pname);
13220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    pw.print(" uid "); pw.print(puid);
13320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    pw.print(": last crashed ");
13420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    TimeUtils.formatDuration(now-uids.valueAt(i), pw);
13520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    pw.println(" ago");
13620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                }
13720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            }
13820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        }
13920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
14020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        if (!mBadProcesses.getMap().isEmpty()) {
14120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            boolean printed = false;
14220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            final ArrayMap<String, SparseArray<BadProcessInfo>> pmap = mBadProcesses.getMap();
14320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            final int processCount = pmap.size();
14420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            for (int ip = 0; ip < processCount; ip++) {
14520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                final String pname = pmap.keyAt(ip);
14620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                final SparseArray<BadProcessInfo> uids = pmap.valueAt(ip);
14720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                final int uidCount = uids.size();
14820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                for (int i = 0; i < uidCount; i++) {
14920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    final int puid = uids.keyAt(i);
15020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    final ProcessRecord r = mService.mProcessNames.get(pname, puid);
15120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    if (dumpPackage != null && (r == null
15220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                            || !r.pkgList.containsKey(dumpPackage))) {
15320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                        continue;
15420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    }
15520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    if (!printed) {
15620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                        if (needSep) pw.println();
15720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                        needSep = true;
15820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                        pw.println("  Bad processes:");
15920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                        printed = true;
16020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    }
16120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    final BadProcessInfo info = uids.valueAt(i);
16220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    pw.print("    Bad process "); pw.print(pname);
16320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    pw.print(" uid "); pw.print(puid);
16420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    pw.print(": crashed at time "); pw.println(info.time);
16520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    if (info.shortMsg != null) {
16620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                        pw.print("      Short msg: "); pw.println(info.shortMsg);
16720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    }
16820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    if (info.longMsg != null) {
16920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                        pw.print("      Long msg: "); pw.println(info.longMsg);
17020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    }
17120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    if (info.stack != null) {
17220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                        pw.println("      Stack:");
17320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                        int lastPos = 0;
17420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                        for (int pos = 0; pos < info.stack.length(); pos++) {
17520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                            if (info.stack.charAt(pos) == '\n') {
17620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                                pw.print("        ");
17720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                                pw.write(info.stack, lastPos, pos-lastPos);
17820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                                pw.println();
17920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                                lastPos = pos+1;
18020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                            }
18120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                        }
18220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                        if (lastPos < info.stack.length()) {
18320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                            pw.print("        ");
18420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                            pw.write(info.stack, lastPos, info.stack.length()-lastPos);
18520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                            pw.println();
18620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                        }
18720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    }
18820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                }
18920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            }
19020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        }
19120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        return needSep;
19220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos    }
19320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
19420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos    boolean isBadProcessLocked(ApplicationInfo info) {
19520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        return mBadProcesses.get(info.processName, info.uid) != null;
19620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos    }
19720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
19820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos    void clearBadProcessLocked(ApplicationInfo info) {
19920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        mBadProcesses.remove(info.processName, info.uid);
20020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos    }
20120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
20220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos    void resetProcessCrashTimeLocked(ApplicationInfo info) {
20320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        mProcessCrashTimes.remove(info.processName, info.uid);
20420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos    }
20520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
20620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos    void resetProcessCrashTimeLocked(boolean resetEntireUser, int appId, int userId) {
20720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        final ArrayMap<String, SparseArray<Long>> pmap = mProcessCrashTimes.getMap();
20820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        for (int ip = pmap.size() - 1; ip >= 0; ip--) {
20920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            SparseArray<Long> ba = pmap.valueAt(ip);
21020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            for (int i = ba.size() - 1; i >= 0; i--) {
21120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                boolean remove = false;
21220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                final int entUid = ba.keyAt(i);
21320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                if (!resetEntireUser) {
21420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    if (userId == UserHandle.USER_ALL) {
21520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                        if (UserHandle.getAppId(entUid) == appId) {
21620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                            remove = true;
21720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                        }
21820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    } else {
21920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                        if (entUid == UserHandle.getUid(userId, appId)) {
22020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                            remove = true;
22120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                        }
22220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    }
22320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                } else if (UserHandle.getUserId(entUid) == userId) {
22420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    remove = true;
22520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                }
22620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                if (remove) {
22720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    ba.removeAt(i);
22820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                }
22920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            }
23020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            if (ba.size() == 0) {
23120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                pmap.removeAt(ip);
23220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            }
23320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        }
23420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos    }
23520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
23620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos    void loadAppsNotReportingCrashesFromConfigLocked(String appsNotReportingCrashesConfig) {
23720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        if (appsNotReportingCrashesConfig != null) {
23820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            final String[] split = appsNotReportingCrashesConfig.split(",");
23920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            if (split.length > 0) {
24020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                mAppsNotReportingCrashes = new ArraySet<>();
24120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                Collections.addAll(mAppsNotReportingCrashes, split);
24220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            }
24320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        }
24420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos    }
24520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
24620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos    void killAppAtUserRequestLocked(ProcessRecord app, Dialog fromDialog) {
24720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        app.crashing = false;
24820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        app.crashingReport = null;
24920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        app.notResponding = false;
25020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        app.notRespondingReport = null;
25120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        if (app.anrDialog == fromDialog) {
25220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            app.anrDialog = null;
25320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        }
25420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        if (app.waitDialog == fromDialog) {
25520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            app.waitDialog = null;
25620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        }
25720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        if (app.pid > 0 && app.pid != MY_PID) {
25820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            handleAppCrashLocked(app, "user-terminated" /*reason*/,
25920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    null /*shortMsg*/, null /*longMsg*/, null /*stackTrace*/, null /*data*/);
26020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            app.kill("user request after error", true);
26120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        }
26220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos    }
26320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
2648aa8fe128992f7e47ecbc8588027eaec82012f3aChristopher Tate    /**
2658aa8fe128992f7e47ecbc8588027eaec82012f3aChristopher Tate     * Induce a crash in the given app.
2668aa8fe128992f7e47ecbc8588027eaec82012f3aChristopher Tate     *
2678aa8fe128992f7e47ecbc8588027eaec82012f3aChristopher Tate     * @param uid if nonnegative, the required matching uid of the target to crash
2688aa8fe128992f7e47ecbc8588027eaec82012f3aChristopher Tate     * @param initialPid fast-path match for the target to crash
2698aa8fe128992f7e47ecbc8588027eaec82012f3aChristopher Tate     * @param packageName fallback match if the stated pid is not found or doesn't match uid
2708aa8fe128992f7e47ecbc8588027eaec82012f3aChristopher Tate     * @param userId If nonnegative, required to identify a match by package name
2718aa8fe128992f7e47ecbc8588027eaec82012f3aChristopher Tate     * @param message
2728aa8fe128992f7e47ecbc8588027eaec82012f3aChristopher Tate     */
2738aa8fe128992f7e47ecbc8588027eaec82012f3aChristopher Tate    void scheduleAppCrashLocked(int uid, int initialPid, String packageName, int userId,
27420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            String message) {
27520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        ProcessRecord proc = null;
27620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
27720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        // Figure out which process to kill.  We don't trust that initialPid
27820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        // still has any relation to current pids, so must scan through the
27920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        // list.
28020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
28120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        synchronized (mService.mPidsSelfLocked) {
28220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            for (int i=0; i<mService.mPidsSelfLocked.size(); i++) {
28320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                ProcessRecord p = mService.mPidsSelfLocked.valueAt(i);
2848aa8fe128992f7e47ecbc8588027eaec82012f3aChristopher Tate                if (uid >= 0 && p.uid != uid) {
28520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    continue;
28620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                }
28720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                if (p.pid == initialPid) {
28820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    proc = p;
28920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    break;
29020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                }
2918aa8fe128992f7e47ecbc8588027eaec82012f3aChristopher Tate                if (p.pkgList.containsKey(packageName)
2928aa8fe128992f7e47ecbc8588027eaec82012f3aChristopher Tate                        && (userId < 0 || p.userId == userId)) {
29320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    proc = p;
29420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                }
29520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            }
29620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        }
29720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
29820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        if (proc == null) {
29920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            Slog.w(TAG, "crashApplication: nothing for uid=" + uid
30020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    + " initialPid=" + initialPid
3018aa8fe128992f7e47ecbc8588027eaec82012f3aChristopher Tate                    + " packageName=" + packageName
3028aa8fe128992f7e47ecbc8588027eaec82012f3aChristopher Tate                    + " userId=" + userId);
30320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            return;
30420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        }
30520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
3065719028766f51512beffa623db7ee682851570a0Joe Onorato        proc.scheduleCrash(message);
30720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos    }
30820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
30920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos    /**
31020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos     * Bring up the "unexpected error" dialog box for a crashing app.
31120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos     * Deal with edge cases (intercepts from instrumented applications,
31220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos     * ActivityController, error intent receivers, that sort of thing).
31320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos     * @param r the application crashing
31420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos     * @param crashInfo describing the failure
31520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos     */
31620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos    void crashApplication(ProcessRecord r, ApplicationErrorReport.CrashInfo crashInfo) {
317b5e249963141b2ab00d1a9b5e4b76d5689d64f2eMark Lu        final int callingPid = Binder.getCallingPid();
318b5e249963141b2ab00d1a9b5e4b76d5689d64f2eMark Lu        final int callingUid = Binder.getCallingUid();
319b5e249963141b2ab00d1a9b5e4b76d5689d64f2eMark Lu
320fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian        final long origId = Binder.clearCallingIdentity();
321fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian        try {
322b5e249963141b2ab00d1a9b5e4b76d5689d64f2eMark Lu            crashApplicationInner(r, crashInfo, callingPid, callingUid);
323fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian        } finally {
324fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian            Binder.restoreCallingIdentity(origId);
325fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian        }
326fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian    }
327fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian
328b5e249963141b2ab00d1a9b5e4b76d5689d64f2eMark Lu    void crashApplicationInner(ProcessRecord r, ApplicationErrorReport.CrashInfo crashInfo,
329b5e249963141b2ab00d1a9b5e4b76d5689d64f2eMark Lu            int callingPid, int callingUid) {
33020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        long timeMillis = System.currentTimeMillis();
33120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        String shortMsg = crashInfo.exceptionClassName;
33220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        String longMsg = crashInfo.exceptionMessage;
33320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        String stackTrace = crashInfo.stackTrace;
33420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        if (shortMsg != null && longMsg != null) {
33520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            longMsg = shortMsg + ": " + longMsg;
33620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        } else if (shortMsg != null) {
33720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            longMsg = shortMsg;
33820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        }
33920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
340fe6f85cac9e823fd33a134f7129fdf7310703293Jeff Sharkey        // If a persistent app is stuck in a crash loop, the device isn't very
341fe6f85cac9e823fd33a134f7129fdf7310703293Jeff Sharkey        // usable, so we want to consider sending out a rescue party.
342fe6f85cac9e823fd33a134f7129fdf7310703293Jeff Sharkey        if (r != null && r.persistent) {
343fe6f85cac9e823fd33a134f7129fdf7310703293Jeff Sharkey            RescueParty.notePersistentAppCrash(mContext, r.uid);
344fe6f85cac9e823fd33a134f7129fdf7310703293Jeff Sharkey        }
345fe6f85cac9e823fd33a134f7129fdf7310703293Jeff Sharkey
34620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        AppErrorResult result = new AppErrorResult();
34720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        TaskRecord task;
34820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        synchronized (mService) {
349fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian            /**
350fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian             * If crash is handled by instance of {@link android.app.IActivityController},
351fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian             * finish now and don't show the app error dialog.
352fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian             */
353fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian            if (handleAppCrashInActivityController(r, crashInfo, shortMsg, longMsg, stackTrace,
354b5e249963141b2ab00d1a9b5e4b76d5689d64f2eMark Lu                    timeMillis, callingPid, callingUid)) {
355fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian                return;
35620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            }
35720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
358fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian            /**
359fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian             * If this process was running instrumentation, finish now - it will be handled in
360fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian             * {@link ActivityManagerService#handleAppDiedLocked}.
361fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian             */
362340417356d92d0db71d0692344e66886ca795dfdDianne Hackborn            if (r != null && r.instr != null) {
36320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                return;
36420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            }
36520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
36620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            // Log crash in battery stats.
36720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            if (r != null) {
36820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                mService.mBatteryStatsService.noteProcessCrash(r.processName, r.uid);
36920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            }
37020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
37120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            AppErrorDialog.Data data = new AppErrorDialog.Data();
37220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            data.result = result;
37320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            data.proc = r;
37420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
37520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            // If we can't identify the process or it's already exceeded its crash quota,
37620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            // quit right away without showing a crash dialog.
37720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            if (r == null || !makeAppCrashingLocked(r, shortMsg, longMsg, stackTrace, data)) {
37820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                return;
37920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            }
38020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
3819645b0ffda8d328fd563ae9ad611c18a44102930Wale Ogunwale            final Message msg = Message.obtain();
38220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            msg.what = ActivityManagerService.SHOW_ERROR_UI_MSG;
38320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
38420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            task = data.task;
38520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            msg.obj = data;
38620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            mService.mUiHandler.sendMessage(msg);
38720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        }
38820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
38920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        int res = result.get();
39020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
39120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        Intent appErrorIntent = null;
392fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian        MetricsLogger.action(mContext, MetricsProto.MetricsEvent.ACTION_APP_CRASH, res);
393ad028c1616be016e6bef0d9a664d3a0054804e01Adrian Roos        if (res == AppErrorDialog.TIMEOUT || res == AppErrorDialog.CANCEL) {
394fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian            res = AppErrorDialog.FORCE_QUIT;
395fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian        }
396fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian        synchronized (mService) {
397fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian            if (res == AppErrorDialog.MUTE) {
398fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian                stopReportingCrashesLocked(r);
399fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian            }
400fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian            if (res == AppErrorDialog.RESTART) {
401fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian                mService.removeProcessLocked(r, false, true, "crash");
402fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian                if (task != null) {
40320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    try {
404fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian                        mService.startActivityFromRecents(task.taskId,
405fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian                                ActivityOptions.makeBasic().toBundle());
406fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian                    } catch (IllegalArgumentException e) {
407fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian                        // Hmm, that didn't work, app might have crashed before creating a
408fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian                        // recents entry. Let's see if we have a safe-to-restart intent.
4094d8959489d6b4123340dd2113044548b37d1b370Dianne Hackborn                        final Set<String> cats = task.intent.getCategories();
4104d8959489d6b4123340dd2113044548b37d1b370Dianne Hackborn                        if (cats != null && cats.contains(Intent.CATEGORY_LAUNCHER)) {
411fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian                            mService.startActivityInPackage(task.mCallingUid,
412fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian                                    task.mCallingPackage, task.intent,
413fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian                                    null, null, null, 0, 0,
414fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian                                    ActivityOptions.makeBasic().toBundle(),
415fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian                                    task.userId, null, null);
41620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                        }
41720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    }
41820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                }
419fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian            }
420fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian            if (res == AppErrorDialog.FORCE_QUIT) {
421fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian                long orig = Binder.clearCallingIdentity();
422fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian                try {
423fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian                    // Kill it with fire!
424fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian                    mService.mStackSupervisor.handleAppCrashLocked(r);
425fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian                    if (!r.persistent) {
426fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian                        mService.removeProcessLocked(r, false, false, "crash");
427fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian                        mService.mStackSupervisor.resumeFocusedStackTopActivityLocked();
428fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian                    }
429fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian                } finally {
430fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian                    Binder.restoreCallingIdentity(orig);
43120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                }
43220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            }
433fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian            if (res == AppErrorDialog.FORCE_QUIT_AND_REPORT) {
434fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian                appErrorIntent = createAppErrorIntentLocked(r, timeMillis, crashInfo);
435fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian            }
436fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian            if (r != null && !r.isolated && res != AppErrorDialog.RESTART) {
437fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian                // XXX Can't keep track of crash time for isolated processes,
438fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian                // since they don't have a persistent identity.
439fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian                mProcessCrashTimes.put(r.info.processName, r.uid,
440fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian                        SystemClock.uptimeMillis());
441fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian            }
44220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        }
44320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
44420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        if (appErrorIntent != null) {
44520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            try {
44620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                mContext.startActivityAsUser(appErrorIntent, new UserHandle(r.userId));
44720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            } catch (ActivityNotFoundException e) {
44820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                Slog.w(TAG, "bug report receiver dissappeared", e);
44920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            }
45020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        }
45120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos    }
45220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
453fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian    private boolean handleAppCrashInActivityController(ProcessRecord r,
454fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian                                                       ApplicationErrorReport.CrashInfo crashInfo,
455fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian                                                       String shortMsg, String longMsg,
456b5e249963141b2ab00d1a9b5e4b76d5689d64f2eMark Lu                                                       String stackTrace, long timeMillis,
457b5e249963141b2ab00d1a9b5e4b76d5689d64f2eMark Lu                                                       int callingPid, int callingUid) {
458fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian        if (mService.mController == null) {
459fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian            return false;
460fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian        }
461fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian
462fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian        try {
463fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian            String name = r != null ? r.processName : null;
464b5e249963141b2ab00d1a9b5e4b76d5689d64f2eMark Lu            int pid = r != null ? r.pid : callingPid;
465b5e249963141b2ab00d1a9b5e4b76d5689d64f2eMark Lu            int uid = r != null ? r.info.uid : callingUid;
466fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian            if (!mService.mController.appCrashed(name, pid,
467fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian                    shortMsg, longMsg, timeMillis, crashInfo.stackTrace)) {
468fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian                if ("1".equals(SystemProperties.get(SYSTEM_DEBUGGABLE, "0"))
469fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian                        && "Native crash".equals(crashInfo.exceptionClassName)) {
470fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian                    Slog.w(TAG, "Skip killing native crashed app " + name
471fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian                            + "(" + pid + ") during testing");
472fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian                } else {
473fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian                    Slog.w(TAG, "Force-killing crashed app " + name
474fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian                            + " at watcher's request");
475fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian                    if (r != null) {
476fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian                        if (!makeAppCrashingLocked(r, shortMsg, longMsg, stackTrace, null))
477fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian                        {
478fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian                            r.kill("crash", true);
479fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian                        }
480fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian                    } else {
481fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian                        // Huh.
482fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian                        Process.killProcess(pid);
483fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian                        ActivityManagerService.killProcessGroup(uid, pid);
484fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian                    }
485fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian                }
486fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian                return true;
487fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian            }
488fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian        } catch (RemoteException e) {
489fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian            mService.mController = null;
490fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian            Watchdog.getInstance().setActivityController(null);
491fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian        }
492fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian        return false;
493fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian    }
494fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian
49520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos    private boolean makeAppCrashingLocked(ProcessRecord app,
49620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            String shortMsg, String longMsg, String stackTrace, AppErrorDialog.Data data) {
49720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        app.crashing = true;
49820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        app.crashingReport = generateProcessError(app,
49920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                ActivityManager.ProcessErrorStateInfo.CRASHED, null, shortMsg, longMsg, stackTrace);
50020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        startAppProblemLocked(app);
50120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        app.stopFreezingAllLocked();
50220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        return handleAppCrashLocked(app, "force-crash" /*reason*/, shortMsg, longMsg, stackTrace,
50320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                data);
50420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos    }
50520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
50620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos    void startAppProblemLocked(ProcessRecord app) {
50720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        // If this app is not running under the current user, then we
50820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        // can't give it a report button because that would require
50920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        // launching the report UI under a different user.
51020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        app.errorReportReceiver = null;
51120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
51220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        for (int userId : mService.mUserController.getCurrentProfileIdsLocked()) {
51320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            if (app.userId == userId) {
51420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                app.errorReportReceiver = ApplicationErrorReport.getErrorReportReceiver(
51520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                        mContext, app.info.packageName, app.info.flags);
51620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            }
51720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        }
51820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        mService.skipCurrentReceiverLocked(app);
51920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos    }
52020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
52120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos    /**
52220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos     * Generate a process error record, suitable for attachment to a ProcessRecord.
52320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos     *
52420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos     * @param app The ProcessRecord in which the error occurred.
52520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos     * @param condition Crashing, Application Not Responding, etc.  Values are defined in
52620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos     *                      ActivityManager.AppErrorStateInfo
52720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos     * @param activity The activity associated with the crash, if known.
52820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos     * @param shortMsg Short message describing the crash.
52920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos     * @param longMsg Long message describing the crash.
53020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos     * @param stackTrace Full crash stack trace, may be null.
53120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos     *
53220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos     * @return Returns a fully-formed AppErrorStateInfo record.
53320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos     */
53420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos    private ActivityManager.ProcessErrorStateInfo generateProcessError(ProcessRecord app,
53520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            int condition, String activity, String shortMsg, String longMsg, String stackTrace) {
53620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        ActivityManager.ProcessErrorStateInfo report = new ActivityManager.ProcessErrorStateInfo();
53720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
53820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        report.condition = condition;
53920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        report.processName = app.processName;
54020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        report.pid = app.pid;
54120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        report.uid = app.info.uid;
54220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        report.tag = activity;
54320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        report.shortMsg = shortMsg;
54420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        report.longMsg = longMsg;
54520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        report.stackTrace = stackTrace;
54620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
54720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        return report;
54820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos    }
54920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
55020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos    Intent createAppErrorIntentLocked(ProcessRecord r,
55120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            long timeMillis, ApplicationErrorReport.CrashInfo crashInfo) {
55220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        ApplicationErrorReport report = createAppErrorReportLocked(r, timeMillis, crashInfo);
55320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        if (report == null) {
55420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            return null;
55520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        }
55620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        Intent result = new Intent(Intent.ACTION_APP_ERROR);
55720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        result.setComponent(r.errorReportReceiver);
55820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        result.putExtra(Intent.EXTRA_BUG_REPORT, report);
55920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        result.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
56020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        return result;
56120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos    }
56220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
56320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos    private ApplicationErrorReport createAppErrorReportLocked(ProcessRecord r,
56420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            long timeMillis, ApplicationErrorReport.CrashInfo crashInfo) {
56520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        if (r.errorReportReceiver == null) {
56620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            return null;
56720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        }
56820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
56920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        if (!r.crashing && !r.notResponding && !r.forceCrashReport) {
57020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            return null;
57120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        }
57220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
57320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        ApplicationErrorReport report = new ApplicationErrorReport();
57420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        report.packageName = r.info.packageName;
57520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        report.installerPackageName = r.errorReportReceiver.getPackageName();
57620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        report.processName = r.processName;
57720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        report.time = timeMillis;
57820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        report.systemApp = (r.info.flags & ApplicationInfo.FLAG_SYSTEM) != 0;
57920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
58020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        if (r.crashing || r.forceCrashReport) {
58120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            report.type = ApplicationErrorReport.TYPE_CRASH;
58220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            report.crashInfo = crashInfo;
58320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        } else if (r.notResponding) {
58420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            report.type = ApplicationErrorReport.TYPE_ANR;
58520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            report.anrInfo = new ApplicationErrorReport.AnrInfo();
58620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
58720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            report.anrInfo.activity = r.notRespondingReport.tag;
58820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            report.anrInfo.cause = r.notRespondingReport.shortMsg;
58920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            report.anrInfo.info = r.notRespondingReport.longMsg;
59020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        }
59120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
59220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        return report;
59320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos    }
59420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
59520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos    boolean handleAppCrashLocked(ProcessRecord app, String reason,
59620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            String shortMsg, String longMsg, String stackTrace, AppErrorDialog.Data data) {
59720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        long now = SystemClock.uptimeMillis();
5986a7e08920c6c7d88352f66df6ba923b9156feb36Adrian Roos        boolean showBackground = Settings.Secure.getInt(mContext.getContentResolver(),
5996a7e08920c6c7d88352f66df6ba923b9156feb36Adrian Roos                Settings.Secure.ANR_SHOW_BACKGROUND, 0) != 0;
60020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
60120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        Long crashTime;
60220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        Long crashTimePersistent;
60320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        if (!app.isolated) {
60420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            crashTime = mProcessCrashTimes.get(app.info.processName, app.uid);
60520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            crashTimePersistent = mProcessCrashTimesPersistent.get(app.info.processName, app.uid);
60620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        } else {
60720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            crashTime = crashTimePersistent = null;
60820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        }
60920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        if (crashTime != null && now < crashTime+ProcessList.MIN_CRASH_INTERVAL) {
61020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            // This process loses!
61120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            Slog.w(TAG, "Process " + app.info.processName
61220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    + " has crashed too many times: killing!");
61320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            EventLog.writeEvent(EventLogTags.AM_PROCESS_CRASHED_TOO_MUCH,
61420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    app.userId, app.info.processName, app.uid);
61520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            mService.mStackSupervisor.handleAppCrashLocked(app);
61620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            if (!app.persistent) {
61720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                // We don't want to start this process again until the user
61820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                // explicitly does so...  but for persistent process, we really
61920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                // need to keep it running.  If a persistent process is actually
62020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                // repeatedly crashing, then badness for everyone.
62120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                EventLog.writeEvent(EventLogTags.AM_PROC_BAD, app.userId, app.uid,
62220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                        app.info.processName);
62320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                if (!app.isolated) {
62420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    // XXX We don't have a way to mark isolated processes
62520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    // as bad, since they don't have a peristent identity.
62620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    mBadProcesses.put(app.info.processName, app.uid,
62720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                            new BadProcessInfo(now, shortMsg, longMsg, stackTrace));
62820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    mProcessCrashTimes.remove(app.info.processName, app.uid);
62920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                }
63020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                app.bad = true;
63120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                app.removed = true;
63220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                // Don't let services in this process be restarted and potentially
63320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                // annoy the user repeatedly.  Unless it is persistent, since those
63420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                // processes run critical code.
63520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                mService.removeProcessLocked(app, false, false, "crash");
63620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                mService.mStackSupervisor.resumeFocusedStackTopActivityLocked();
6376a7e08920c6c7d88352f66df6ba923b9156feb36Adrian Roos                if (!showBackground) {
6386a7e08920c6c7d88352f66df6ba923b9156feb36Adrian Roos                    return false;
6396a7e08920c6c7d88352f66df6ba923b9156feb36Adrian Roos                }
64020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            }
64120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            mService.mStackSupervisor.resumeFocusedStackTopActivityLocked();
64220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        } else {
64320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            TaskRecord affectedTask =
64420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    mService.mStackSupervisor.finishTopRunningActivityLocked(app, reason);
64520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            if (data != null) {
64620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                data.task = affectedTask;
64720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            }
64820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            if (data != null && crashTimePersistent != null
64920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    && now < crashTimePersistent + ProcessList.MIN_CRASH_INTERVAL) {
65020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                data.repeating = true;
65120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            }
65220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        }
65320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
654805ea307e726e31a179a3ac9856b0588450bcc63Adrian Roos        boolean procIsBoundForeground =
655805ea307e726e31a179a3ac9856b0588450bcc63Adrian Roos                (app.curProcState == ActivityManager.PROCESS_STATE_BOUND_FOREGROUND_SERVICE);
65620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        // Bump up the crash count of any services currently running in the proc.
65720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        for (int i=app.services.size()-1; i>=0; i--) {
65820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            // Any services running in the application need to be placed
65920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            // back in the pending list.
66020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            ServiceRecord sr = app.services.valueAt(i);
66120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            sr.crashCount++;
662805ea307e726e31a179a3ac9856b0588450bcc63Adrian Roos
663805ea307e726e31a179a3ac9856b0588450bcc63Adrian Roos            // Allow restarting for started or bound foreground services that are crashing the
664805ea307e726e31a179a3ac9856b0588450bcc63Adrian Roos            // first time. This includes wallpapers.
665b2b3b644172d2ea95380108fd0b5c26c4a94b2c0Erik Wolsheimer            if ((data != null) && (sr.crashCount <= 1)
666b2b3b644172d2ea95380108fd0b5c26c4a94b2c0Erik Wolsheimer                    && (sr.isForeground || procIsBoundForeground)) {
667805ea307e726e31a179a3ac9856b0588450bcc63Adrian Roos                data.isRestartableForService = true;
668805ea307e726e31a179a3ac9856b0588450bcc63Adrian Roos            }
66920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        }
67020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
67120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        // If the crashing process is what we consider to be the "home process" and it has been
67220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        // replaced by a third-party app, clear the package preferred activities from packages
67320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        // with a home activity running in the process to prevent a repeatedly crashing app
67420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        // from blocking the user to manually clear the list.
67520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        final ArrayList<ActivityRecord> activities = app.activities;
67620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        if (app == mService.mHomeProcess && activities.size() > 0
67720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                && (mService.mHomeProcess.info.flags & ApplicationInfo.FLAG_SYSTEM) == 0) {
67820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
67920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                final ActivityRecord r = activities.get(activityNdx);
68020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                if (r.isHomeActivity()) {
68120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    Log.i(TAG, "Clearing package preferred activities from " + r.packageName);
68220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    try {
68320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                        ActivityThread.getPackageManager()
68420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                                .clearPackagePreferredActivities(r.packageName);
68520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    } catch (RemoteException c) {
68620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                        // pm is in same process, this will never happen.
68720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    }
68820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                }
68920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            }
69020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        }
69120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
69220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        if (!app.isolated) {
69320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            // XXX Can't keep track of crash times for isolated processes,
69420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            // because they don't have a perisistent identity.
69520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            mProcessCrashTimes.put(app.info.processName, app.uid, now);
69620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            mProcessCrashTimesPersistent.put(app.info.processName, app.uid, now);
69720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        }
69820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
69920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        if (app.crashHandler != null) mService.mHandler.post(app.crashHandler);
70020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        return true;
70120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos    }
70220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
70320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos    void handleShowAppErrorUi(Message msg) {
70420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        AppErrorDialog.Data data = (AppErrorDialog.Data) msg.obj;
70520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        boolean showBackground = Settings.Secure.getInt(mContext.getContentResolver(),
70620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                Settings.Secure.ANR_SHOW_BACKGROUND, 0) != 0;
70720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        synchronized (mService) {
70820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            ProcessRecord proc = data.proc;
70920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            AppErrorResult res = data.result;
71020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            if (proc != null && proc.crashDialog != null) {
71120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                Slog.e(TAG, "App already has crash dialog: " + proc);
71220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                if (res != null) {
7139046222cb2b1bd57278ddbf71d9f628f8dd254aeAdrian Roos                    res.set(AppErrorDialog.ALREADY_SHOWING);
71420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                }
71520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                return;
71620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            }
71720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            boolean isBackground = (UserHandle.getAppId(proc.uid)
71820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    >= Process.FIRST_APPLICATION_UID
71920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    && proc.pid != MY_PID);
72020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            for (int userId : mService.mUserController.getCurrentProfileIdsLocked()) {
72120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                isBackground &= (proc.userId != userId);
72220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            }
72320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            if (isBackground && !showBackground) {
72420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                Slog.w(TAG, "Skipping crash dialog of " + proc + ": background");
72520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                if (res != null) {
7269046222cb2b1bd57278ddbf71d9f628f8dd254aeAdrian Roos                    res.set(AppErrorDialog.BACKGROUND_USER);
72720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                }
72820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                return;
72920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            }
73020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            final boolean crashSilenced = mAppsNotReportingCrashes != null &&
73120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    mAppsNotReportingCrashes.contains(proc.info.packageName);
7326a7e08920c6c7d88352f66df6ba923b9156feb36Adrian Roos            if ((mService.canShowErrorDialogs() || showBackground) && !crashSilenced) {
733445fd2afe9336cecf76e41d78aa0b6f3b7053700Phil Weaver                proc.crashDialog = new AppErrorDialog(mContext, mService, data);
73420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            } else {
73520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                // The device is asleep, so just pretend that the user
73620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                // saw a crash dialog and hit "force quit".
73720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                if (res != null) {
7389046222cb2b1bd57278ddbf71d9f628f8dd254aeAdrian Roos                    res.set(AppErrorDialog.CANT_SHOW);
73920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                }
74020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            }
74120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        }
742445fd2afe9336cecf76e41d78aa0b6f3b7053700Phil Weaver        // If we've created a crash dialog, show it without the lock held
743445fd2afe9336cecf76e41d78aa0b6f3b7053700Phil Weaver        if(data.proc.crashDialog != null) {
7445ddcca789172da68b7505fb301f6dc7cf173b4dcFyodor Kupolov            Slog.i(TAG, "Showing crash dialog for package " + data.proc.info.packageName
7455ddcca789172da68b7505fb301f6dc7cf173b4dcFyodor Kupolov                    + " u" + data.proc.userId);
746445fd2afe9336cecf76e41d78aa0b6f3b7053700Phil Weaver            data.proc.crashDialog.show();
747445fd2afe9336cecf76e41d78aa0b6f3b7053700Phil Weaver        }
74820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos    }
74920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
75020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos    void stopReportingCrashesLocked(ProcessRecord proc) {
75120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        if (mAppsNotReportingCrashes == null) {
75220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            mAppsNotReportingCrashes = new ArraySet<>();
75320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        }
75420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        mAppsNotReportingCrashes.add(proc.info.packageName);
75520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos    }
75620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
757a22d9fbe8c1cf3cb47db0bfecbd4fd84c59b6ec0Narayan Kamath    static boolean isInterestingForBackgroundTraces(ProcessRecord app) {
758a22d9fbe8c1cf3cb47db0bfecbd4fd84c59b6ec0Narayan Kamath        // The system_server is always considered interesting.
759a22d9fbe8c1cf3cb47db0bfecbd4fd84c59b6ec0Narayan Kamath        if (app.pid == MY_PID) {
760a22d9fbe8c1cf3cb47db0bfecbd4fd84c59b6ec0Narayan Kamath            return true;
761a22d9fbe8c1cf3cb47db0bfecbd4fd84c59b6ec0Narayan Kamath        }
762a22d9fbe8c1cf3cb47db0bfecbd4fd84c59b6ec0Narayan Kamath
763a22d9fbe8c1cf3cb47db0bfecbd4fd84c59b6ec0Narayan Kamath        // A package is considered interesting if any of the following is true :
764a22d9fbe8c1cf3cb47db0bfecbd4fd84c59b6ec0Narayan Kamath        //
765a22d9fbe8c1cf3cb47db0bfecbd4fd84c59b6ec0Narayan Kamath        // - It's displaying an activity.
766a22d9fbe8c1cf3cb47db0bfecbd4fd84c59b6ec0Narayan Kamath        // - It's the SystemUI.
767a22d9fbe8c1cf3cb47db0bfecbd4fd84c59b6ec0Narayan Kamath        // - It has an overlay or a top UI visible.
768a22d9fbe8c1cf3cb47db0bfecbd4fd84c59b6ec0Narayan Kamath        //
769a22d9fbe8c1cf3cb47db0bfecbd4fd84c59b6ec0Narayan Kamath        // NOTE: The check whether a given ProcessRecord belongs to the systemui
770a22d9fbe8c1cf3cb47db0bfecbd4fd84c59b6ec0Narayan Kamath        // process is a bit of a kludge, but the same pattern seems repeated at
771a22d9fbe8c1cf3cb47db0bfecbd4fd84c59b6ec0Narayan Kamath        // several places in the system server.
772a22d9fbe8c1cf3cb47db0bfecbd4fd84c59b6ec0Narayan Kamath        return app.isInterestingToUserLocked() ||
773a22d9fbe8c1cf3cb47db0bfecbd4fd84c59b6ec0Narayan Kamath            (app.info != null && "com.android.systemui".equals(app.info.packageName)) ||
774a22d9fbe8c1cf3cb47db0bfecbd4fd84c59b6ec0Narayan Kamath            (app.hasTopUi || app.hasOverlayUi);
775a22d9fbe8c1cf3cb47db0bfecbd4fd84c59b6ec0Narayan Kamath    }
776a22d9fbe8c1cf3cb47db0bfecbd4fd84c59b6ec0Narayan Kamath
77720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos    final void appNotResponding(ProcessRecord app, ActivityRecord activity,
77820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            ActivityRecord parent, boolean aboveSystem, final String annotation) {
77920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        ArrayList<Integer> firstPids = new ArrayList<Integer>(5);
78020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        SparseArray<Boolean> lastPids = new SparseArray<Boolean>(20);
78120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
78220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        if (mService.mController != null) {
78320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            try {
78420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                // 0 == continue, -1 = kill process immediately
785a85a2c63f191ae8c567ba6845c063cbe3dd750fcAdrian Roos                int res = mService.mController.appEarlyNotResponding(
786a85a2c63f191ae8c567ba6845c063cbe3dd750fcAdrian Roos                        app.processName, app.pid, annotation);
78720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                if (res < 0 && app.pid != MY_PID) {
78820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    app.kill("anr", true);
78920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                }
79020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            } catch (RemoteException e) {
79120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                mService.mController = null;
79220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                Watchdog.getInstance().setActivityController(null);
79320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            }
79420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        }
79520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
79620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        long anrTime = SystemClock.uptimeMillis();
79720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        if (ActivityManagerService.MONITOR_CPU_USAGE) {
79820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            mService.updateCpuStatsNow();
79920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        }
80020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
801f0f9a829818a98236c81b96f9fe0f9ac3125eb1dTim Murray        // Unless configured otherwise, swallow ANRs in background processes & kill the process.
802f0f9a829818a98236c81b96f9fe0f9ac3125eb1dTim Murray        boolean showBackground = Settings.Secure.getInt(mContext.getContentResolver(),
803f0f9a829818a98236c81b96f9fe0f9ac3125eb1dTim Murray                Settings.Secure.ANR_SHOW_BACKGROUND, 0) != 0;
804f0f9a829818a98236c81b96f9fe0f9ac3125eb1dTim Murray
805f0f9a829818a98236c81b96f9fe0f9ac3125eb1dTim Murray        boolean isSilentANR;
806f0f9a829818a98236c81b96f9fe0f9ac3125eb1dTim Murray
80720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        synchronized (mService) {
80820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            // PowerManager.reboot() can block for a long time, so ignore ANRs while shutting down.
80920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            if (mService.mShuttingDown) {
81020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                Slog.i(TAG, "During shutdown skipping ANR: " + app + " " + annotation);
81120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                return;
81220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            } else if (app.notResponding) {
81320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                Slog.i(TAG, "Skipping duplicate ANR: " + app + " " + annotation);
81420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                return;
81520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            } else if (app.crashing) {
81620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                Slog.i(TAG, "Crashing app skipping ANR: " + app + " " + annotation);
81720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                return;
818313177dccacaf5fefd2954d90c065e35e5b03253Tobias Lindskog            } else if (app.killedByAm) {
819313177dccacaf5fefd2954d90c065e35e5b03253Tobias Lindskog                Slog.i(TAG, "App already killed by AM skipping ANR: " + app + " " + annotation);
820313177dccacaf5fefd2954d90c065e35e5b03253Tobias Lindskog                return;
82141d65f28c202bd405f60f7739fd2cd775bb35213Mark Lu            } else if (app.killed) {
82241d65f28c202bd405f60f7739fd2cd775bb35213Mark Lu                Slog.i(TAG, "Skipping died app ANR: " + app + " " + annotation);
82341d65f28c202bd405f60f7739fd2cd775bb35213Mark Lu                return;
82420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            }
82520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
82620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            // In case we come through here for the same app before completing
82720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            // this one, mark as anring now so we will bail out.
82820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            app.notResponding = true;
82920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
83020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            // Log the ANR to the event log.
83120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            EventLog.writeEvent(EventLogTags.AM_ANR, app.userId, app.pid,
83220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    app.processName, app.info.flags, annotation);
83320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
83420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            // Dump thread traces as quickly as we can, starting with "interesting" processes.
83520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            firstPids.add(app.pid);
83620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
837f0f9a829818a98236c81b96f9fe0f9ac3125eb1dTim Murray            // Don't dump other PIDs if it's a background ANR
838a22d9fbe8c1cf3cb47db0bfecbd4fd84c59b6ec0Narayan Kamath            isSilentANR = !showBackground && !isInterestingForBackgroundTraces(app);
839f0f9a829818a98236c81b96f9fe0f9ac3125eb1dTim Murray            if (!isSilentANR) {
840f0f9a829818a98236c81b96f9fe0f9ac3125eb1dTim Murray                int parentPid = app.pid;
841f0f9a829818a98236c81b96f9fe0f9ac3125eb1dTim Murray                if (parent != null && parent.app != null && parent.app.pid > 0) {
842f0f9a829818a98236c81b96f9fe0f9ac3125eb1dTim Murray                    parentPid = parent.app.pid;
843f0f9a829818a98236c81b96f9fe0f9ac3125eb1dTim Murray                }
844f0f9a829818a98236c81b96f9fe0f9ac3125eb1dTim Murray                if (parentPid != app.pid) firstPids.add(parentPid);
845f0f9a829818a98236c81b96f9fe0f9ac3125eb1dTim Murray
846f0f9a829818a98236c81b96f9fe0f9ac3125eb1dTim Murray                if (MY_PID != app.pid && MY_PID != parentPid) firstPids.add(MY_PID);
847f0f9a829818a98236c81b96f9fe0f9ac3125eb1dTim Murray
848f0f9a829818a98236c81b96f9fe0f9ac3125eb1dTim Murray                for (int i = mService.mLruProcesses.size() - 1; i >= 0; i--) {
849f0f9a829818a98236c81b96f9fe0f9ac3125eb1dTim Murray                    ProcessRecord r = mService.mLruProcesses.get(i);
850f0f9a829818a98236c81b96f9fe0f9ac3125eb1dTim Murray                    if (r != null && r.thread != null) {
851f0f9a829818a98236c81b96f9fe0f9ac3125eb1dTim Murray                        int pid = r.pid;
852f0f9a829818a98236c81b96f9fe0f9ac3125eb1dTim Murray                        if (pid > 0 && pid != app.pid && pid != parentPid && pid != MY_PID) {
853f0f9a829818a98236c81b96f9fe0f9ac3125eb1dTim Murray                            if (r.persistent) {
854f0f9a829818a98236c81b96f9fe0f9ac3125eb1dTim Murray                                firstPids.add(pid);
855f0f9a829818a98236c81b96f9fe0f9ac3125eb1dTim Murray                                if (DEBUG_ANR) Slog.i(TAG, "Adding persistent proc: " + r);
85690d1e363ed4956e3454b943407a7ebee9ae6e351Brian Carlstrom                            } else if (r.treatLikeActivity) {
85790d1e363ed4956e3454b943407a7ebee9ae6e351Brian Carlstrom                                firstPids.add(pid);
85890d1e363ed4956e3454b943407a7ebee9ae6e351Brian Carlstrom                                if (DEBUG_ANR) Slog.i(TAG, "Adding likely IME: " + r);
859f0f9a829818a98236c81b96f9fe0f9ac3125eb1dTim Murray                            } else {
860f0f9a829818a98236c81b96f9fe0f9ac3125eb1dTim Murray                                lastPids.put(pid, Boolean.TRUE);
861f0f9a829818a98236c81b96f9fe0f9ac3125eb1dTim Murray                                if (DEBUG_ANR) Slog.i(TAG, "Adding ANR proc: " + r);
862f0f9a829818a98236c81b96f9fe0f9ac3125eb1dTim Murray                            }
86320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                        }
86420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    }
86520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                }
86620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            }
86720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        }
86820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
86920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        // Log the ANR to the main log.
87020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        StringBuilder info = new StringBuilder();
87120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        info.setLength(0);
87220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        info.append("ANR in ").append(app.processName);
87320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        if (activity != null && activity.shortComponentName != null) {
87420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            info.append(" (").append(activity.shortComponentName).append(")");
87520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        }
87620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        info.append("\n");
87720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        info.append("PID: ").append(app.pid).append("\n");
87820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        if (annotation != null) {
87920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            info.append("Reason: ").append(annotation).append("\n");
88020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        }
88120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        if (parent != null && parent != activity) {
88220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            info.append("Parent: ").append(parent.shortComponentName).append("\n");
88320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        }
88420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
885f0f9a829818a98236c81b96f9fe0f9ac3125eb1dTim Murray        ProcessCpuTracker processCpuTracker = new ProcessCpuTracker(true);
88620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
88766524247d4d5f21a86624a6ccdd5f014bf5aa8b6Brian Carlstrom        // don't dump native PIDs for background ANRs unless it is the process of interest
88866524247d4d5f21a86624a6ccdd5f014bf5aa8b6Brian Carlstrom        String[] nativeProcs = null;
889f0f9a829818a98236c81b96f9fe0f9ac3125eb1dTim Murray        if (isSilentANR) {
89066524247d4d5f21a86624a6ccdd5f014bf5aa8b6Brian Carlstrom            for (int i = 0; i < NATIVE_STACKS_OF_INTEREST.length; i++) {
89166524247d4d5f21a86624a6ccdd5f014bf5aa8b6Brian Carlstrom                if (NATIVE_STACKS_OF_INTEREST[i].equals(app.processName)) {
89266524247d4d5f21a86624a6ccdd5f014bf5aa8b6Brian Carlstrom                    nativeProcs = new String[] { app.processName };
89366524247d4d5f21a86624a6ccdd5f014bf5aa8b6Brian Carlstrom                    break;
89466524247d4d5f21a86624a6ccdd5f014bf5aa8b6Brian Carlstrom                }
89566524247d4d5f21a86624a6ccdd5f014bf5aa8b6Brian Carlstrom            }
896f0f9a829818a98236c81b96f9fe0f9ac3125eb1dTim Murray        } else {
89766524247d4d5f21a86624a6ccdd5f014bf5aa8b6Brian Carlstrom            nativeProcs = NATIVE_STACKS_OF_INTEREST;
898f0f9a829818a98236c81b96f9fe0f9ac3125eb1dTim Murray        }
89920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
90094a0dcdde12192ad0815ec88f8ac62152f6a58b4Martijn Coenen        int[] pids = nativeProcs == null ? null : Process.getPidsForCommands(nativeProcs);
9016b47c54a65d8c0aca9a6523a926a386ecfaec069Steven Moreland        ArrayList<Integer> nativePids = null;
9026b47c54a65d8c0aca9a6523a926a386ecfaec069Steven Moreland
9036b47c54a65d8c0aca9a6523a926a386ecfaec069Steven Moreland        if (pids != null) {
9046b47c54a65d8c0aca9a6523a926a386ecfaec069Steven Moreland            nativePids = new ArrayList<Integer>(pids.length);
9056b47c54a65d8c0aca9a6523a926a386ecfaec069Steven Moreland            for (int i : pids) {
9066b47c54a65d8c0aca9a6523a926a386ecfaec069Steven Moreland                nativePids.add(i);
9076b47c54a65d8c0aca9a6523a926a386ecfaec069Steven Moreland            }
9086b47c54a65d8c0aca9a6523a926a386ecfaec069Steven Moreland        }
9096b47c54a65d8c0aca9a6523a926a386ecfaec069Steven Moreland
91066524247d4d5f21a86624a6ccdd5f014bf5aa8b6Brian Carlstrom        // For background ANRs, don't pass the ProcessCpuTracker to
91166524247d4d5f21a86624a6ccdd5f014bf5aa8b6Brian Carlstrom        // avoid spending 1/2 second collecting stats to rank lastPids.
912f013daa3ac7718c983cf850784f5cf29ee027487Narayan Kamath        File tracesFile = ActivityManagerService.dumpStackTraces(
913f013daa3ac7718c983cf850784f5cf29ee027487Narayan Kamath                true, firstPids,
914f013daa3ac7718c983cf850784f5cf29ee027487Narayan Kamath                (isSilentANR) ? null : processCpuTracker,
915f013daa3ac7718c983cf850784f5cf29ee027487Narayan Kamath                (isSilentANR) ? null : lastPids,
916f013daa3ac7718c983cf850784f5cf29ee027487Narayan Kamath                nativePids);
91766524247d4d5f21a86624a6ccdd5f014bf5aa8b6Brian Carlstrom
91820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        String cpuInfo = null;
91920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        if (ActivityManagerService.MONITOR_CPU_USAGE) {
92020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            mService.updateCpuStatsNow();
92120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            synchronized (mService.mProcessCpuTracker) {
92220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                cpuInfo = mService.mProcessCpuTracker.printCurrentState(anrTime);
92320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            }
92420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            info.append(processCpuTracker.printCurrentLoad());
92520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            info.append(cpuInfo);
92620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        }
92720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
92820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        info.append(processCpuTracker.printCurrentState(anrTime));
92920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
93020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        Slog.e(TAG, info.toString());
93120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        if (tracesFile == null) {
93220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            // There is no trace file, so dump (only) the alleged culprit's threads to the log
93320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            Process.sendSignal(app.pid, Process.SIGNAL_QUIT);
93420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        }
93520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
93620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        mService.addErrorToDropBox("anr", app, app.processName, activity, parent, annotation,
93720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                cpuInfo, tracesFile, null);
93820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
93920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        if (mService.mController != null) {
94020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            try {
94120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                // 0 == show dialog, 1 = keep waiting, -1 = kill process immediately
94220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                int res = mService.mController.appNotResponding(
94320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                        app.processName, app.pid, info.toString());
94420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                if (res != 0) {
94520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    if (res < 0 && app.pid != MY_PID) {
94620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                        app.kill("anr", true);
94720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    } else {
94820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                        synchronized (mService) {
94920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                            mService.mServices.scheduleServiceTimeoutLocked(app);
95020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                        }
95120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    }
95220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    return;
95320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                }
95420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            } catch (RemoteException e) {
95520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                mService.mController = null;
95620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                Watchdog.getInstance().setActivityController(null);
95720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            }
95820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        }
95920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
96020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        synchronized (mService) {
96120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            mService.mBatteryStatsService.noteProcessAnr(app.processName, app.uid);
96220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
963f0f9a829818a98236c81b96f9fe0f9ac3125eb1dTim Murray            if (isSilentANR) {
96420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                app.kill("bg anr", true);
96520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                return;
96620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            }
96720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
96820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            // Set the app's notResponding state, and look up the errorReportReceiver
96920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            makeAppNotRespondingLocked(app,
97020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    activity != null ? activity.shortComponentName : null,
97120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    annotation != null ? "ANR " + annotation : "ANR",
97220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    info.toString());
97320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
97420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            // Bring up the infamous App Not Responding dialog
97520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            Message msg = Message.obtain();
97620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            HashMap<String, Object> map = new HashMap<String, Object>();
97720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            msg.what = ActivityManagerService.SHOW_NOT_RESPONDING_UI_MSG;
97820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            msg.obj = map;
97920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            msg.arg1 = aboveSystem ? 1 : 0;
98020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            map.put("app", app);
98120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            if (activity != null) {
98220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                map.put("activity", activity);
98320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            }
98420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
98520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            mService.mUiHandler.sendMessage(msg);
98620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        }
98720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos    }
98820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
98920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos    private void makeAppNotRespondingLocked(ProcessRecord app,
99020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            String activity, String shortMsg, String longMsg) {
99120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        app.notResponding = true;
99220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        app.notRespondingReport = generateProcessError(app,
99320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                ActivityManager.ProcessErrorStateInfo.NOT_RESPONDING,
99420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                activity, shortMsg, longMsg, null);
99520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        startAppProblemLocked(app);
99620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        app.stopFreezingAllLocked();
99720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos    }
99820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
99920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos    void handleShowAnrUi(Message msg) {
1000445fd2afe9336cecf76e41d78aa0b6f3b7053700Phil Weaver        Dialog d = null;
100120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        synchronized (mService) {
100220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            HashMap<String, Object> data = (HashMap<String, Object>) msg.obj;
100320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            ProcessRecord proc = (ProcessRecord)data.get("app");
100420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            if (proc != null && proc.anrDialog != null) {
100520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                Slog.e(TAG, "App already has anr dialog: " + proc);
10069046222cb2b1bd57278ddbf71d9f628f8dd254aeAdrian Roos                MetricsLogger.action(mContext, MetricsProto.MetricsEvent.ACTION_APP_ANR,
10079046222cb2b1bd57278ddbf71d9f628f8dd254aeAdrian Roos                        AppNotRespondingDialog.ALREADY_SHOWING);
100820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                return;
100920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            }
101020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
101120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            Intent intent = new Intent("android.intent.action.ANR");
101220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            if (!mService.mProcessesReady) {
101320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                intent.addFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY
101420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                        | Intent.FLAG_RECEIVER_FOREGROUND);
101520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            }
101620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            mService.broadcastIntentLocked(null, null, intent,
101720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    null, null, 0, null, null, null, AppOpsManager.OP_NONE,
101820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    null, false, false, MY_PID, Process.SYSTEM_UID, 0 /* TODO: Verify */);
101920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
10206a7e08920c6c7d88352f66df6ba923b9156feb36Adrian Roos            boolean showBackground = Settings.Secure.getInt(mContext.getContentResolver(),
10216a7e08920c6c7d88352f66df6ba923b9156feb36Adrian Roos                    Settings.Secure.ANR_SHOW_BACKGROUND, 0) != 0;
10226a7e08920c6c7d88352f66df6ba923b9156feb36Adrian Roos            if (mService.canShowErrorDialogs() || showBackground) {
1023445fd2afe9336cecf76e41d78aa0b6f3b7053700Phil Weaver                d = new AppNotRespondingDialog(mService,
102420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                        mContext, proc, (ActivityRecord)data.get("activity"),
102520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                        msg.arg1 != 0);
102620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                proc.anrDialog = d;
102720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            } else {
10289046222cb2b1bd57278ddbf71d9f628f8dd254aeAdrian Roos                MetricsLogger.action(mContext, MetricsProto.MetricsEvent.ACTION_APP_ANR,
10299046222cb2b1bd57278ddbf71d9f628f8dd254aeAdrian Roos                        AppNotRespondingDialog.CANT_SHOW);
103020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                // Just kill the app if there is no dialog to be shown.
103120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                mService.killAppAtUsersRequest(proc, null);
103220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            }
103320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        }
1034445fd2afe9336cecf76e41d78aa0b6f3b7053700Phil Weaver        // If we've created a crash dialog, show it without the lock held
1035445fd2afe9336cecf76e41d78aa0b6f3b7053700Phil Weaver        if (d != null) {
1036445fd2afe9336cecf76e41d78aa0b6f3b7053700Phil Weaver            d.show();
1037445fd2afe9336cecf76e41d78aa0b6f3b7053700Phil Weaver        }
103820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos    }
103920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
104020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos    /**
104120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos     * Information about a process that is currently marked as bad.
104220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos     */
104320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos    static final class BadProcessInfo {
104420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        BadProcessInfo(long time, String shortMsg, String longMsg, String stack) {
104520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            this.time = time;
104620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            this.shortMsg = shortMsg;
104720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            this.longMsg = longMsg;
104820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            this.stack = stack;
104920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        }
105020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
105120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        final long time;
105220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        final String shortMsg;
105320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        final String longMsg;
105420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        final String stack;
105520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos    }
105620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
105720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos}
1058