AppErrors.java revision 6b47c54a65d8c0aca9a6523a926a386ecfaec069
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;
584d8959489d6b4123340dd2113044548b37d1b370Dianne Hackbornimport java.util.Set;
5920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
6020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roosimport static com.android.server.Watchdog.NATIVE_STACKS_OF_INTEREST;
619369efdf6a43d8fa0f82dcae651c76b85a5ea0adDianne Hackbornimport static com.android.server.am.ActivityManagerDebugConfig.DEBUG_ANR;
6220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roosimport static com.android.server.am.ActivityManagerDebugConfig.TAG_AM;
6320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roosimport static com.android.server.am.ActivityManagerDebugConfig.TAG_WITH_CLASS_NAME;
6420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roosimport static com.android.server.am.ActivityManagerService.MY_PID;
6520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roosimport static com.android.server.am.ActivityManagerService.SYSTEM_DEBUGGABLE;
6620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
6720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos/**
6820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos * Controls error conditions in applications.
6920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos */
7020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roosclass AppErrors {
7120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
7220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos    private static final String TAG = TAG_WITH_CLASS_NAME ? "AppErrors" : TAG_AM;
7320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
7420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos    private final ActivityManagerService mService;
7520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos    private final Context mContext;
7620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
7720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos    private ArraySet<String> mAppsNotReportingCrashes;
7820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
7920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos    /**
8020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos     * The last time that various processes have crashed since they were last explicitly started.
8120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos     */
8220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos    private final ProcessMap<Long> mProcessCrashTimes = new ProcessMap<>();
8320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
8420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos    /**
8520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos     * The last time that various processes have crashed (not reset even when explicitly started).
8620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos     */
8720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos    private final ProcessMap<Long> mProcessCrashTimesPersistent = new ProcessMap<>();
8820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
8920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos    /**
9020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos     * Set of applications that we consider to be bad, and will reject
9120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos     * incoming broadcasts from (which the user has no control over).
9220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos     * Processes are added to this set when they have crashed twice within
9320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos     * a minimum amount of time; they are removed from it when they are
9420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos     * later restarted (hopefully due to some user action).  The value is the
9520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos     * time it was added to the list.
9620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos     */
9720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos    private final ProcessMap<BadProcessInfo> mBadProcesses = new ProcessMap<>();
9820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
9920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
10020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos    AppErrors(Context context, ActivityManagerService service) {
10120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        mService = service;
10220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        mContext = context;
10320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos    }
10420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
10520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos    boolean dumpLocked(FileDescriptor fd, PrintWriter pw, boolean needSep,
10620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            String dumpPackage) {
10720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        if (!mProcessCrashTimes.getMap().isEmpty()) {
10820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            boolean printed = false;
10920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            final long now = SystemClock.uptimeMillis();
11020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            final ArrayMap<String, SparseArray<Long>> pmap = mProcessCrashTimes.getMap();
11120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            final int processCount = pmap.size();
11220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            for (int ip = 0; ip < processCount; ip++) {
11320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                final String pname = pmap.keyAt(ip);
11420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                final SparseArray<Long> uids = pmap.valueAt(ip);
11520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                final int uidCount = uids.size();
11620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                for (int i = 0; i < uidCount; i++) {
11720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    final int puid = uids.keyAt(i);
11820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    final ProcessRecord r = mService.mProcessNames.get(pname, puid);
11920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    if (dumpPackage != null && (r == null
12020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                            || !r.pkgList.containsKey(dumpPackage))) {
12120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                        continue;
12220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    }
12320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    if (!printed) {
12420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                        if (needSep) pw.println();
12520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                        needSep = true;
12620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                        pw.println("  Time since processes crashed:");
12720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                        printed = true;
12820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    }
12920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    pw.print("    Process "); pw.print(pname);
13020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    pw.print(" uid "); pw.print(puid);
13120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    pw.print(": last crashed ");
13220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    TimeUtils.formatDuration(now-uids.valueAt(i), pw);
13320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    pw.println(" ago");
13420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                }
13520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            }
13620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        }
13720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
13820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        if (!mBadProcesses.getMap().isEmpty()) {
13920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            boolean printed = false;
14020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            final ArrayMap<String, SparseArray<BadProcessInfo>> pmap = mBadProcesses.getMap();
14120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            final int processCount = pmap.size();
14220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            for (int ip = 0; ip < processCount; ip++) {
14320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                final String pname = pmap.keyAt(ip);
14420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                final SparseArray<BadProcessInfo> uids = pmap.valueAt(ip);
14520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                final int uidCount = uids.size();
14620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                for (int i = 0; i < uidCount; i++) {
14720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    final int puid = uids.keyAt(i);
14820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    final ProcessRecord r = mService.mProcessNames.get(pname, puid);
14920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    if (dumpPackage != null && (r == null
15020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                            || !r.pkgList.containsKey(dumpPackage))) {
15120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                        continue;
15220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    }
15320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    if (!printed) {
15420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                        if (needSep) pw.println();
15520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                        needSep = true;
15620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                        pw.println("  Bad processes:");
15720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                        printed = true;
15820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    }
15920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    final BadProcessInfo info = uids.valueAt(i);
16020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    pw.print("    Bad process "); pw.print(pname);
16120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    pw.print(" uid "); pw.print(puid);
16220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    pw.print(": crashed at time "); pw.println(info.time);
16320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    if (info.shortMsg != null) {
16420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                        pw.print("      Short msg: "); pw.println(info.shortMsg);
16520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    }
16620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    if (info.longMsg != null) {
16720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                        pw.print("      Long msg: "); pw.println(info.longMsg);
16820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    }
16920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    if (info.stack != null) {
17020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                        pw.println("      Stack:");
17120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                        int lastPos = 0;
17220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                        for (int pos = 0; pos < info.stack.length(); pos++) {
17320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                            if (info.stack.charAt(pos) == '\n') {
17420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                                pw.print("        ");
17520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                                pw.write(info.stack, lastPos, pos-lastPos);
17620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                                pw.println();
17720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                                lastPos = pos+1;
17820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                            }
17920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                        }
18020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                        if (lastPos < info.stack.length()) {
18120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                            pw.print("        ");
18220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                            pw.write(info.stack, lastPos, info.stack.length()-lastPos);
18320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                            pw.println();
18420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                        }
18520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    }
18620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                }
18720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            }
18820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        }
18920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        return needSep;
19020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos    }
19120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
19220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos    boolean isBadProcessLocked(ApplicationInfo info) {
19320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        return mBadProcesses.get(info.processName, info.uid) != null;
19420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos    }
19520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
19620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos    void clearBadProcessLocked(ApplicationInfo info) {
19720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        mBadProcesses.remove(info.processName, info.uid);
19820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos    }
19920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
20020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos    void resetProcessCrashTimeLocked(ApplicationInfo info) {
20120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        mProcessCrashTimes.remove(info.processName, info.uid);
20220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos    }
20320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
20420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos    void resetProcessCrashTimeLocked(boolean resetEntireUser, int appId, int userId) {
20520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        final ArrayMap<String, SparseArray<Long>> pmap = mProcessCrashTimes.getMap();
20620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        for (int ip = pmap.size() - 1; ip >= 0; ip--) {
20720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            SparseArray<Long> ba = pmap.valueAt(ip);
20820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            for (int i = ba.size() - 1; i >= 0; i--) {
20920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                boolean remove = false;
21020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                final int entUid = ba.keyAt(i);
21120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                if (!resetEntireUser) {
21220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    if (userId == UserHandle.USER_ALL) {
21320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                        if (UserHandle.getAppId(entUid) == appId) {
21420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                            remove = true;
21520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                        }
21620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    } else {
21720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                        if (entUid == UserHandle.getUid(userId, appId)) {
21820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                            remove = true;
21920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                        }
22020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    }
22120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                } else if (UserHandle.getUserId(entUid) == userId) {
22220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    remove = true;
22320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                }
22420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                if (remove) {
22520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    ba.removeAt(i);
22620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                }
22720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            }
22820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            if (ba.size() == 0) {
22920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                pmap.removeAt(ip);
23020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            }
23120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        }
23220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos    }
23320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
23420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos    void loadAppsNotReportingCrashesFromConfigLocked(String appsNotReportingCrashesConfig) {
23520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        if (appsNotReportingCrashesConfig != null) {
23620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            final String[] split = appsNotReportingCrashesConfig.split(",");
23720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            if (split.length > 0) {
23820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                mAppsNotReportingCrashes = new ArraySet<>();
23920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                Collections.addAll(mAppsNotReportingCrashes, split);
24020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            }
24120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        }
24220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos    }
24320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
24420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos    void killAppAtUserRequestLocked(ProcessRecord app, Dialog fromDialog) {
24520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        app.crashing = false;
24620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        app.crashingReport = null;
24720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        app.notResponding = false;
24820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        app.notRespondingReport = null;
24920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        if (app.anrDialog == fromDialog) {
25020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            app.anrDialog = null;
25120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        }
25220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        if (app.waitDialog == fromDialog) {
25320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            app.waitDialog = null;
25420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        }
25520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        if (app.pid > 0 && app.pid != MY_PID) {
25620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            handleAppCrashLocked(app, "user-terminated" /*reason*/,
25720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    null /*shortMsg*/, null /*longMsg*/, null /*stackTrace*/, null /*data*/);
25820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            app.kill("user request after error", true);
25920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        }
26020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos    }
26120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
2628aa8fe128992f7e47ecbc8588027eaec82012f3aChristopher Tate    /**
2638aa8fe128992f7e47ecbc8588027eaec82012f3aChristopher Tate     * Induce a crash in the given app.
2648aa8fe128992f7e47ecbc8588027eaec82012f3aChristopher Tate     *
2658aa8fe128992f7e47ecbc8588027eaec82012f3aChristopher Tate     * @param uid if nonnegative, the required matching uid of the target to crash
2668aa8fe128992f7e47ecbc8588027eaec82012f3aChristopher Tate     * @param initialPid fast-path match for the target to crash
2678aa8fe128992f7e47ecbc8588027eaec82012f3aChristopher Tate     * @param packageName fallback match if the stated pid is not found or doesn't match uid
2688aa8fe128992f7e47ecbc8588027eaec82012f3aChristopher Tate     * @param userId If nonnegative, required to identify a match by package name
2698aa8fe128992f7e47ecbc8588027eaec82012f3aChristopher Tate     * @param message
2708aa8fe128992f7e47ecbc8588027eaec82012f3aChristopher Tate     */
2718aa8fe128992f7e47ecbc8588027eaec82012f3aChristopher Tate    void scheduleAppCrashLocked(int uid, int initialPid, String packageName, int userId,
27220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            String message) {
27320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        ProcessRecord proc = null;
27420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
27520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        // Figure out which process to kill.  We don't trust that initialPid
27620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        // still has any relation to current pids, so must scan through the
27720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        // list.
27820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
27920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        synchronized (mService.mPidsSelfLocked) {
28020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            for (int i=0; i<mService.mPidsSelfLocked.size(); i++) {
28120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                ProcessRecord p = mService.mPidsSelfLocked.valueAt(i);
2828aa8fe128992f7e47ecbc8588027eaec82012f3aChristopher Tate                if (uid >= 0 && p.uid != uid) {
28320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    continue;
28420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                }
28520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                if (p.pid == initialPid) {
28620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    proc = p;
28720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    break;
28820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                }
2898aa8fe128992f7e47ecbc8588027eaec82012f3aChristopher Tate                if (p.pkgList.containsKey(packageName)
2908aa8fe128992f7e47ecbc8588027eaec82012f3aChristopher Tate                        && (userId < 0 || p.userId == userId)) {
29120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    proc = p;
29220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                }
29320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            }
29420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        }
29520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
29620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        if (proc == null) {
29720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            Slog.w(TAG, "crashApplication: nothing for uid=" + uid
29820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    + " initialPid=" + initialPid
2998aa8fe128992f7e47ecbc8588027eaec82012f3aChristopher Tate                    + " packageName=" + packageName
3008aa8fe128992f7e47ecbc8588027eaec82012f3aChristopher Tate                    + " userId=" + userId);
30120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            return;
30220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        }
30320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
3045719028766f51512beffa623db7ee682851570a0Joe Onorato        proc.scheduleCrash(message);
30520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos    }
30620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
30720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos    /**
30820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos     * Bring up the "unexpected error" dialog box for a crashing app.
30920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos     * Deal with edge cases (intercepts from instrumented applications,
31020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos     * ActivityController, error intent receivers, that sort of thing).
31120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos     * @param r the application crashing
31220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos     * @param crashInfo describing the failure
31320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos     */
31420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos    void crashApplication(ProcessRecord r, ApplicationErrorReport.CrashInfo crashInfo) {
315b5e249963141b2ab00d1a9b5e4b76d5689d64f2eMark Lu        final int callingPid = Binder.getCallingPid();
316b5e249963141b2ab00d1a9b5e4b76d5689d64f2eMark Lu        final int callingUid = Binder.getCallingUid();
317b5e249963141b2ab00d1a9b5e4b76d5689d64f2eMark Lu
318fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian        final long origId = Binder.clearCallingIdentity();
319fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian        try {
320b5e249963141b2ab00d1a9b5e4b76d5689d64f2eMark Lu            crashApplicationInner(r, crashInfo, callingPid, callingUid);
321fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian        } finally {
322fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian            Binder.restoreCallingIdentity(origId);
323fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian        }
324fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian    }
325fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian
326b5e249963141b2ab00d1a9b5e4b76d5689d64f2eMark Lu    void crashApplicationInner(ProcessRecord r, ApplicationErrorReport.CrashInfo crashInfo,
327b5e249963141b2ab00d1a9b5e4b76d5689d64f2eMark Lu            int callingPid, int callingUid) {
32820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        long timeMillis = System.currentTimeMillis();
32920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        String shortMsg = crashInfo.exceptionClassName;
33020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        String longMsg = crashInfo.exceptionMessage;
33120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        String stackTrace = crashInfo.stackTrace;
33220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        if (shortMsg != null && longMsg != null) {
33320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            longMsg = shortMsg + ": " + longMsg;
33420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        } else if (shortMsg != null) {
33520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            longMsg = shortMsg;
33620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        }
33720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
338fe6f85cac9e823fd33a134f7129fdf7310703293Jeff Sharkey        // If a persistent app is stuck in a crash loop, the device isn't very
339fe6f85cac9e823fd33a134f7129fdf7310703293Jeff Sharkey        // usable, so we want to consider sending out a rescue party.
340fe6f85cac9e823fd33a134f7129fdf7310703293Jeff Sharkey        if (r != null && r.persistent) {
341fe6f85cac9e823fd33a134f7129fdf7310703293Jeff Sharkey            RescueParty.notePersistentAppCrash(mContext, r.uid);
342fe6f85cac9e823fd33a134f7129fdf7310703293Jeff Sharkey        }
343fe6f85cac9e823fd33a134f7129fdf7310703293Jeff Sharkey
34420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        AppErrorResult result = new AppErrorResult();
34520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        TaskRecord task;
34620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        synchronized (mService) {
347fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian            /**
348fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian             * If crash is handled by instance of {@link android.app.IActivityController},
349fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian             * finish now and don't show the app error dialog.
350fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian             */
351fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian            if (handleAppCrashInActivityController(r, crashInfo, shortMsg, longMsg, stackTrace,
352b5e249963141b2ab00d1a9b5e4b76d5689d64f2eMark Lu                    timeMillis, callingPid, callingUid)) {
353fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian                return;
35420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            }
35520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
356fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian            /**
357fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian             * If this process was running instrumentation, finish now - it will be handled in
358fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian             * {@link ActivityManagerService#handleAppDiedLocked}.
359fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian             */
360340417356d92d0db71d0692344e66886ca795dfdDianne Hackborn            if (r != null && r.instr != null) {
36120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                return;
36220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            }
36320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
36420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            // Log crash in battery stats.
36520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            if (r != null) {
36620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                mService.mBatteryStatsService.noteProcessCrash(r.processName, r.uid);
36720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            }
36820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
36920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            AppErrorDialog.Data data = new AppErrorDialog.Data();
37020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            data.result = result;
37120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            data.proc = r;
37220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
37320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            // If we can't identify the process or it's already exceeded its crash quota,
37420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            // quit right away without showing a crash dialog.
37520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            if (r == null || !makeAppCrashingLocked(r, shortMsg, longMsg, stackTrace, data)) {
37620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                return;
37720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            }
37820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
3799645b0ffda8d328fd563ae9ad611c18a44102930Wale Ogunwale            final Message msg = Message.obtain();
38020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            msg.what = ActivityManagerService.SHOW_ERROR_UI_MSG;
38120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
38220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            task = data.task;
38320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            msg.obj = data;
38420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            mService.mUiHandler.sendMessage(msg);
38520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        }
38620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
38720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        int res = result.get();
38820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
38920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        Intent appErrorIntent = null;
390fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian        MetricsLogger.action(mContext, MetricsProto.MetricsEvent.ACTION_APP_CRASH, res);
391ad028c1616be016e6bef0d9a664d3a0054804e01Adrian Roos        if (res == AppErrorDialog.TIMEOUT || res == AppErrorDialog.CANCEL) {
392fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian            res = AppErrorDialog.FORCE_QUIT;
393fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian        }
394fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian        synchronized (mService) {
395fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian            if (res == AppErrorDialog.MUTE) {
396fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian                stopReportingCrashesLocked(r);
397fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian            }
398fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian            if (res == AppErrorDialog.RESTART) {
399fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian                mService.removeProcessLocked(r, false, true, "crash");
400fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian                if (task != null) {
40120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    try {
402fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian                        mService.startActivityFromRecents(task.taskId,
403fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian                                ActivityOptions.makeBasic().toBundle());
404fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian                    } catch (IllegalArgumentException e) {
405fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian                        // Hmm, that didn't work, app might have crashed before creating a
406fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian                        // recents entry. Let's see if we have a safe-to-restart intent.
4074d8959489d6b4123340dd2113044548b37d1b370Dianne Hackborn                        final Set<String> cats = task.intent.getCategories();
4084d8959489d6b4123340dd2113044548b37d1b370Dianne Hackborn                        if (cats != null && cats.contains(Intent.CATEGORY_LAUNCHER)) {
409fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian                            mService.startActivityInPackage(task.mCallingUid,
410fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian                                    task.mCallingPackage, task.intent,
411fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian                                    null, null, null, 0, 0,
412fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian                                    ActivityOptions.makeBasic().toBundle(),
413fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian                                    task.userId, null, null);
41420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                        }
41520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    }
41620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                }
417fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian            }
418fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian            if (res == AppErrorDialog.FORCE_QUIT) {
419fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian                long orig = Binder.clearCallingIdentity();
420fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian                try {
421fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian                    // Kill it with fire!
422fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian                    mService.mStackSupervisor.handleAppCrashLocked(r);
423fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian                    if (!r.persistent) {
424fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian                        mService.removeProcessLocked(r, false, false, "crash");
425fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian                        mService.mStackSupervisor.resumeFocusedStackTopActivityLocked();
426fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian                    }
427fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian                } finally {
428fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian                    Binder.restoreCallingIdentity(orig);
42920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                }
43020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            }
431fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian            if (res == AppErrorDialog.FORCE_QUIT_AND_REPORT) {
432fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian                appErrorIntent = createAppErrorIntentLocked(r, timeMillis, crashInfo);
433fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian            }
434fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian            if (r != null && !r.isolated && res != AppErrorDialog.RESTART) {
435fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian                // XXX Can't keep track of crash time for isolated processes,
436fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian                // since they don't have a persistent identity.
437fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian                mProcessCrashTimes.put(r.info.processName, r.uid,
438fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian                        SystemClock.uptimeMillis());
439fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian            }
44020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        }
44120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
44220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        if (appErrorIntent != null) {
44320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            try {
44420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                mContext.startActivityAsUser(appErrorIntent, new UserHandle(r.userId));
44520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            } catch (ActivityNotFoundException e) {
44620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                Slog.w(TAG, "bug report receiver dissappeared", e);
44720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            }
44820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        }
44920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos    }
45020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
451fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian    private boolean handleAppCrashInActivityController(ProcessRecord r,
452fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian                                                       ApplicationErrorReport.CrashInfo crashInfo,
453fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian                                                       String shortMsg, String longMsg,
454b5e249963141b2ab00d1a9b5e4b76d5689d64f2eMark Lu                                                       String stackTrace, long timeMillis,
455b5e249963141b2ab00d1a9b5e4b76d5689d64f2eMark Lu                                                       int callingPid, int callingUid) {
456fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian        if (mService.mController == null) {
457fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian            return false;
458fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian        }
459fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian
460fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian        try {
461fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian            String name = r != null ? r.processName : null;
462b5e249963141b2ab00d1a9b5e4b76d5689d64f2eMark Lu            int pid = r != null ? r.pid : callingPid;
463b5e249963141b2ab00d1a9b5e4b76d5689d64f2eMark Lu            int uid = r != null ? r.info.uid : callingUid;
464fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian            if (!mService.mController.appCrashed(name, pid,
465fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian                    shortMsg, longMsg, timeMillis, crashInfo.stackTrace)) {
466fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian                if ("1".equals(SystemProperties.get(SYSTEM_DEBUGGABLE, "0"))
467fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian                        && "Native crash".equals(crashInfo.exceptionClassName)) {
468fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian                    Slog.w(TAG, "Skip killing native crashed app " + name
469fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian                            + "(" + pid + ") during testing");
470fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian                } else {
471fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian                    Slog.w(TAG, "Force-killing crashed app " + name
472fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian                            + " at watcher's request");
473fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian                    if (r != null) {
474fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian                        if (!makeAppCrashingLocked(r, shortMsg, longMsg, stackTrace, null))
475fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian                        {
476fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian                            r.kill("crash", true);
477fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian                        }
478fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian                    } else {
479fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian                        // Huh.
480fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian                        Process.killProcess(pid);
481fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian                        ActivityManagerService.killProcessGroup(uid, pid);
482fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian                    }
483fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian                }
484fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian                return true;
485fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian            }
486fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian        } catch (RemoteException e) {
487fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian            mService.mController = null;
488fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian            Watchdog.getInstance().setActivityController(null);
489fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian        }
490fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian        return false;
491fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian    }
492fa3991aae02676d5c619c86adf514def09802d78Andrii Kulian
49320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos    private boolean makeAppCrashingLocked(ProcessRecord app,
49420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            String shortMsg, String longMsg, String stackTrace, AppErrorDialog.Data data) {
49520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        app.crashing = true;
49620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        app.crashingReport = generateProcessError(app,
49720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                ActivityManager.ProcessErrorStateInfo.CRASHED, null, shortMsg, longMsg, stackTrace);
49820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        startAppProblemLocked(app);
49920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        app.stopFreezingAllLocked();
50020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        return handleAppCrashLocked(app, "force-crash" /*reason*/, shortMsg, longMsg, stackTrace,
50120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                data);
50220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos    }
50320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
50420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos    void startAppProblemLocked(ProcessRecord app) {
50520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        // If this app is not running under the current user, then we
50620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        // can't give it a report button because that would require
50720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        // launching the report UI under a different user.
50820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        app.errorReportReceiver = null;
50920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
51020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        for (int userId : mService.mUserController.getCurrentProfileIdsLocked()) {
51120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            if (app.userId == userId) {
51220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                app.errorReportReceiver = ApplicationErrorReport.getErrorReportReceiver(
51320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                        mContext, app.info.packageName, app.info.flags);
51420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            }
51520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        }
51620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        mService.skipCurrentReceiverLocked(app);
51720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos    }
51820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
51920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos    /**
52020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos     * Generate a process error record, suitable for attachment to a ProcessRecord.
52120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos     *
52220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos     * @param app The ProcessRecord in which the error occurred.
52320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos     * @param condition Crashing, Application Not Responding, etc.  Values are defined in
52420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos     *                      ActivityManager.AppErrorStateInfo
52520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos     * @param activity The activity associated with the crash, if known.
52620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos     * @param shortMsg Short message describing the crash.
52720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos     * @param longMsg Long message describing the crash.
52820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos     * @param stackTrace Full crash stack trace, may be null.
52920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos     *
53020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos     * @return Returns a fully-formed AppErrorStateInfo record.
53120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos     */
53220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos    private ActivityManager.ProcessErrorStateInfo generateProcessError(ProcessRecord app,
53320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            int condition, String activity, String shortMsg, String longMsg, String stackTrace) {
53420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        ActivityManager.ProcessErrorStateInfo report = new ActivityManager.ProcessErrorStateInfo();
53520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
53620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        report.condition = condition;
53720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        report.processName = app.processName;
53820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        report.pid = app.pid;
53920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        report.uid = app.info.uid;
54020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        report.tag = activity;
54120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        report.shortMsg = shortMsg;
54220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        report.longMsg = longMsg;
54320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        report.stackTrace = stackTrace;
54420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
54520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        return report;
54620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos    }
54720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
54820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos    Intent createAppErrorIntentLocked(ProcessRecord r,
54920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            long timeMillis, ApplicationErrorReport.CrashInfo crashInfo) {
55020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        ApplicationErrorReport report = createAppErrorReportLocked(r, timeMillis, crashInfo);
55120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        if (report == null) {
55220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            return null;
55320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        }
55420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        Intent result = new Intent(Intent.ACTION_APP_ERROR);
55520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        result.setComponent(r.errorReportReceiver);
55620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        result.putExtra(Intent.EXTRA_BUG_REPORT, report);
55720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        result.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
55820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        return result;
55920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos    }
56020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
56120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos    private ApplicationErrorReport createAppErrorReportLocked(ProcessRecord r,
56220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            long timeMillis, ApplicationErrorReport.CrashInfo crashInfo) {
56320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        if (r.errorReportReceiver == null) {
56420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            return null;
56520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        }
56620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
56720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        if (!r.crashing && !r.notResponding && !r.forceCrashReport) {
56820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            return null;
56920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        }
57020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
57120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        ApplicationErrorReport report = new ApplicationErrorReport();
57220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        report.packageName = r.info.packageName;
57320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        report.installerPackageName = r.errorReportReceiver.getPackageName();
57420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        report.processName = r.processName;
57520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        report.time = timeMillis;
57620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        report.systemApp = (r.info.flags & ApplicationInfo.FLAG_SYSTEM) != 0;
57720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
57820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        if (r.crashing || r.forceCrashReport) {
57920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            report.type = ApplicationErrorReport.TYPE_CRASH;
58020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            report.crashInfo = crashInfo;
58120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        } else if (r.notResponding) {
58220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            report.type = ApplicationErrorReport.TYPE_ANR;
58320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            report.anrInfo = new ApplicationErrorReport.AnrInfo();
58420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
58520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            report.anrInfo.activity = r.notRespondingReport.tag;
58620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            report.anrInfo.cause = r.notRespondingReport.shortMsg;
58720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            report.anrInfo.info = r.notRespondingReport.longMsg;
58820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        }
58920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
59020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        return report;
59120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos    }
59220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
59320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos    boolean handleAppCrashLocked(ProcessRecord app, String reason,
59420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            String shortMsg, String longMsg, String stackTrace, AppErrorDialog.Data data) {
59520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        long now = SystemClock.uptimeMillis();
5966a7e08920c6c7d88352f66df6ba923b9156feb36Adrian Roos        boolean showBackground = Settings.Secure.getInt(mContext.getContentResolver(),
5976a7e08920c6c7d88352f66df6ba923b9156feb36Adrian Roos                Settings.Secure.ANR_SHOW_BACKGROUND, 0) != 0;
59820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
59920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        Long crashTime;
60020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        Long crashTimePersistent;
60120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        if (!app.isolated) {
60220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            crashTime = mProcessCrashTimes.get(app.info.processName, app.uid);
60320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            crashTimePersistent = mProcessCrashTimesPersistent.get(app.info.processName, app.uid);
60420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        } else {
60520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            crashTime = crashTimePersistent = null;
60620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        }
60720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        if (crashTime != null && now < crashTime+ProcessList.MIN_CRASH_INTERVAL) {
60820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            // This process loses!
60920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            Slog.w(TAG, "Process " + app.info.processName
61020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    + " has crashed too many times: killing!");
61120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            EventLog.writeEvent(EventLogTags.AM_PROCESS_CRASHED_TOO_MUCH,
61220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    app.userId, app.info.processName, app.uid);
61320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            mService.mStackSupervisor.handleAppCrashLocked(app);
61420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            if (!app.persistent) {
61520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                // We don't want to start this process again until the user
61620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                // explicitly does so...  but for persistent process, we really
61720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                // need to keep it running.  If a persistent process is actually
61820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                // repeatedly crashing, then badness for everyone.
61920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                EventLog.writeEvent(EventLogTags.AM_PROC_BAD, app.userId, app.uid,
62020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                        app.info.processName);
62120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                if (!app.isolated) {
62220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    // XXX We don't have a way to mark isolated processes
62320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    // as bad, since they don't have a peristent identity.
62420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    mBadProcesses.put(app.info.processName, app.uid,
62520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                            new BadProcessInfo(now, shortMsg, longMsg, stackTrace));
62620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    mProcessCrashTimes.remove(app.info.processName, app.uid);
62720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                }
62820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                app.bad = true;
62920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                app.removed = true;
63020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                // Don't let services in this process be restarted and potentially
63120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                // annoy the user repeatedly.  Unless it is persistent, since those
63220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                // processes run critical code.
63320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                mService.removeProcessLocked(app, false, false, "crash");
63420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                mService.mStackSupervisor.resumeFocusedStackTopActivityLocked();
6356a7e08920c6c7d88352f66df6ba923b9156feb36Adrian Roos                if (!showBackground) {
6366a7e08920c6c7d88352f66df6ba923b9156feb36Adrian Roos                    return false;
6376a7e08920c6c7d88352f66df6ba923b9156feb36Adrian Roos                }
63820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            }
63920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            mService.mStackSupervisor.resumeFocusedStackTopActivityLocked();
64020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        } else {
64120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            TaskRecord affectedTask =
64220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    mService.mStackSupervisor.finishTopRunningActivityLocked(app, reason);
64320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            if (data != null) {
64420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                data.task = affectedTask;
64520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            }
64620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            if (data != null && crashTimePersistent != null
64720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    && now < crashTimePersistent + ProcessList.MIN_CRASH_INTERVAL) {
64820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                data.repeating = true;
64920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            }
65020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        }
65120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
652805ea307e726e31a179a3ac9856b0588450bcc63Adrian Roos        boolean procIsBoundForeground =
653805ea307e726e31a179a3ac9856b0588450bcc63Adrian Roos                (app.curProcState == ActivityManager.PROCESS_STATE_BOUND_FOREGROUND_SERVICE);
65420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        // Bump up the crash count of any services currently running in the proc.
65520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        for (int i=app.services.size()-1; i>=0; i--) {
65620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            // Any services running in the application need to be placed
65720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            // back in the pending list.
65820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            ServiceRecord sr = app.services.valueAt(i);
65920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            sr.crashCount++;
660805ea307e726e31a179a3ac9856b0588450bcc63Adrian Roos
661805ea307e726e31a179a3ac9856b0588450bcc63Adrian Roos            // Allow restarting for started or bound foreground services that are crashing the
662805ea307e726e31a179a3ac9856b0588450bcc63Adrian Roos            // first time. This includes wallpapers.
663b2b3b644172d2ea95380108fd0b5c26c4a94b2c0Erik Wolsheimer            if ((data != null) && (sr.crashCount <= 1)
664b2b3b644172d2ea95380108fd0b5c26c4a94b2c0Erik Wolsheimer                    && (sr.isForeground || procIsBoundForeground)) {
665805ea307e726e31a179a3ac9856b0588450bcc63Adrian Roos                data.isRestartableForService = true;
666805ea307e726e31a179a3ac9856b0588450bcc63Adrian Roos            }
66720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        }
66820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
66920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        // If the crashing process is what we consider to be the "home process" and it has been
67020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        // replaced by a third-party app, clear the package preferred activities from packages
67120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        // with a home activity running in the process to prevent a repeatedly crashing app
67220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        // from blocking the user to manually clear the list.
67320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        final ArrayList<ActivityRecord> activities = app.activities;
67420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        if (app == mService.mHomeProcess && activities.size() > 0
67520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                && (mService.mHomeProcess.info.flags & ApplicationInfo.FLAG_SYSTEM) == 0) {
67620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
67720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                final ActivityRecord r = activities.get(activityNdx);
67820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                if (r.isHomeActivity()) {
67920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    Log.i(TAG, "Clearing package preferred activities from " + r.packageName);
68020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    try {
68120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                        ActivityThread.getPackageManager()
68220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                                .clearPackagePreferredActivities(r.packageName);
68320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    } catch (RemoteException c) {
68420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                        // pm is in same process, this will never happen.
68520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    }
68620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                }
68720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            }
68820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        }
68920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
69020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        if (!app.isolated) {
69120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            // XXX Can't keep track of crash times for isolated processes,
69220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            // because they don't have a perisistent identity.
69320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            mProcessCrashTimes.put(app.info.processName, app.uid, now);
69420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            mProcessCrashTimesPersistent.put(app.info.processName, app.uid, now);
69520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        }
69620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
69720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        if (app.crashHandler != null) mService.mHandler.post(app.crashHandler);
69820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        return true;
69920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos    }
70020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
70120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos    void handleShowAppErrorUi(Message msg) {
70220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        AppErrorDialog.Data data = (AppErrorDialog.Data) msg.obj;
70320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        boolean showBackground = Settings.Secure.getInt(mContext.getContentResolver(),
70420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                Settings.Secure.ANR_SHOW_BACKGROUND, 0) != 0;
70520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        synchronized (mService) {
70620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            ProcessRecord proc = data.proc;
70720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            AppErrorResult res = data.result;
70820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            if (proc != null && proc.crashDialog != null) {
70920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                Slog.e(TAG, "App already has crash dialog: " + proc);
71020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                if (res != null) {
7119046222cb2b1bd57278ddbf71d9f628f8dd254aeAdrian Roos                    res.set(AppErrorDialog.ALREADY_SHOWING);
71220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                }
71320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                return;
71420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            }
71520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            boolean isBackground = (UserHandle.getAppId(proc.uid)
71620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    >= Process.FIRST_APPLICATION_UID
71720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    && proc.pid != MY_PID);
71820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            for (int userId : mService.mUserController.getCurrentProfileIdsLocked()) {
71920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                isBackground &= (proc.userId != userId);
72020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            }
72120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            if (isBackground && !showBackground) {
72220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                Slog.w(TAG, "Skipping crash dialog of " + proc + ": background");
72320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                if (res != null) {
7249046222cb2b1bd57278ddbf71d9f628f8dd254aeAdrian Roos                    res.set(AppErrorDialog.BACKGROUND_USER);
72520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                }
72620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                return;
72720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            }
72820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            final boolean crashSilenced = mAppsNotReportingCrashes != null &&
72920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    mAppsNotReportingCrashes.contains(proc.info.packageName);
7306a7e08920c6c7d88352f66df6ba923b9156feb36Adrian Roos            if ((mService.canShowErrorDialogs() || showBackground) && !crashSilenced) {
731445fd2afe9336cecf76e41d78aa0b6f3b7053700Phil Weaver                proc.crashDialog = new AppErrorDialog(mContext, mService, data);
73220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            } else {
73320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                // The device is asleep, so just pretend that the user
73420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                // saw a crash dialog and hit "force quit".
73520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                if (res != null) {
7369046222cb2b1bd57278ddbf71d9f628f8dd254aeAdrian Roos                    res.set(AppErrorDialog.CANT_SHOW);
73720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                }
73820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            }
73920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        }
740445fd2afe9336cecf76e41d78aa0b6f3b7053700Phil Weaver        // If we've created a crash dialog, show it without the lock held
741445fd2afe9336cecf76e41d78aa0b6f3b7053700Phil Weaver        if(data.proc.crashDialog != null) {
742445fd2afe9336cecf76e41d78aa0b6f3b7053700Phil Weaver            data.proc.crashDialog.show();
743445fd2afe9336cecf76e41d78aa0b6f3b7053700Phil Weaver        }
74420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos    }
74520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
74620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos    void stopReportingCrashesLocked(ProcessRecord proc) {
74720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        if (mAppsNotReportingCrashes == null) {
74820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            mAppsNotReportingCrashes = new ArraySet<>();
74920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        }
75020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        mAppsNotReportingCrashes.add(proc.info.packageName);
75120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos    }
75220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
75320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos    final void appNotResponding(ProcessRecord app, ActivityRecord activity,
75420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            ActivityRecord parent, boolean aboveSystem, final String annotation) {
75520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        ArrayList<Integer> firstPids = new ArrayList<Integer>(5);
75620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        SparseArray<Boolean> lastPids = new SparseArray<Boolean>(20);
75720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
75820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        if (mService.mController != null) {
75920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            try {
76020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                // 0 == continue, -1 = kill process immediately
761a85a2c63f191ae8c567ba6845c063cbe3dd750fcAdrian Roos                int res = mService.mController.appEarlyNotResponding(
762a85a2c63f191ae8c567ba6845c063cbe3dd750fcAdrian Roos                        app.processName, app.pid, annotation);
76320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                if (res < 0 && app.pid != MY_PID) {
76420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    app.kill("anr", true);
76520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                }
76620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            } catch (RemoteException e) {
76720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                mService.mController = null;
76820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                Watchdog.getInstance().setActivityController(null);
76920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            }
77020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        }
77120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
77220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        long anrTime = SystemClock.uptimeMillis();
77320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        if (ActivityManagerService.MONITOR_CPU_USAGE) {
77420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            mService.updateCpuStatsNow();
77520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        }
77620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
777f0f9a829818a98236c81b96f9fe0f9ac3125eb1dTim Murray        // Unless configured otherwise, swallow ANRs in background processes & kill the process.
778f0f9a829818a98236c81b96f9fe0f9ac3125eb1dTim Murray        boolean showBackground = Settings.Secure.getInt(mContext.getContentResolver(),
779f0f9a829818a98236c81b96f9fe0f9ac3125eb1dTim Murray                Settings.Secure.ANR_SHOW_BACKGROUND, 0) != 0;
780f0f9a829818a98236c81b96f9fe0f9ac3125eb1dTim Murray
781f0f9a829818a98236c81b96f9fe0f9ac3125eb1dTim Murray        boolean isSilentANR;
782f0f9a829818a98236c81b96f9fe0f9ac3125eb1dTim Murray
78320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        synchronized (mService) {
78420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            // PowerManager.reboot() can block for a long time, so ignore ANRs while shutting down.
78520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            if (mService.mShuttingDown) {
78620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                Slog.i(TAG, "During shutdown skipping ANR: " + app + " " + annotation);
78720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                return;
78820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            } else if (app.notResponding) {
78920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                Slog.i(TAG, "Skipping duplicate ANR: " + app + " " + annotation);
79020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                return;
79120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            } else if (app.crashing) {
79220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                Slog.i(TAG, "Crashing app skipping ANR: " + app + " " + annotation);
79320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                return;
794313177dccacaf5fefd2954d90c065e35e5b03253Tobias Lindskog            } else if (app.killedByAm) {
795313177dccacaf5fefd2954d90c065e35e5b03253Tobias Lindskog                Slog.i(TAG, "App already killed by AM skipping ANR: " + app + " " + annotation);
796313177dccacaf5fefd2954d90c065e35e5b03253Tobias Lindskog                return;
79741d65f28c202bd405f60f7739fd2cd775bb35213Mark Lu            } else if (app.killed) {
79841d65f28c202bd405f60f7739fd2cd775bb35213Mark Lu                Slog.i(TAG, "Skipping died app ANR: " + app + " " + annotation);
79941d65f28c202bd405f60f7739fd2cd775bb35213Mark Lu                return;
80020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            }
80120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
80220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            // In case we come through here for the same app before completing
80320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            // this one, mark as anring now so we will bail out.
80420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            app.notResponding = true;
80520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
80620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            // Log the ANR to the event log.
80720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            EventLog.writeEvent(EventLogTags.AM_ANR, app.userId, app.pid,
80820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    app.processName, app.info.flags, annotation);
80920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
81020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            // Dump thread traces as quickly as we can, starting with "interesting" processes.
81120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            firstPids.add(app.pid);
81220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
813f0f9a829818a98236c81b96f9fe0f9ac3125eb1dTim Murray            // Don't dump other PIDs if it's a background ANR
814f0f9a829818a98236c81b96f9fe0f9ac3125eb1dTim Murray            isSilentANR = !showBackground && !app.isInterestingToUserLocked() && app.pid != MY_PID;
815f0f9a829818a98236c81b96f9fe0f9ac3125eb1dTim Murray            if (!isSilentANR) {
816f0f9a829818a98236c81b96f9fe0f9ac3125eb1dTim Murray                int parentPid = app.pid;
817f0f9a829818a98236c81b96f9fe0f9ac3125eb1dTim Murray                if (parent != null && parent.app != null && parent.app.pid > 0) {
818f0f9a829818a98236c81b96f9fe0f9ac3125eb1dTim Murray                    parentPid = parent.app.pid;
819f0f9a829818a98236c81b96f9fe0f9ac3125eb1dTim Murray                }
820f0f9a829818a98236c81b96f9fe0f9ac3125eb1dTim Murray                if (parentPid != app.pid) firstPids.add(parentPid);
821f0f9a829818a98236c81b96f9fe0f9ac3125eb1dTim Murray
822f0f9a829818a98236c81b96f9fe0f9ac3125eb1dTim Murray                if (MY_PID != app.pid && MY_PID != parentPid) firstPids.add(MY_PID);
823f0f9a829818a98236c81b96f9fe0f9ac3125eb1dTim Murray
824f0f9a829818a98236c81b96f9fe0f9ac3125eb1dTim Murray                for (int i = mService.mLruProcesses.size() - 1; i >= 0; i--) {
825f0f9a829818a98236c81b96f9fe0f9ac3125eb1dTim Murray                    ProcessRecord r = mService.mLruProcesses.get(i);
826f0f9a829818a98236c81b96f9fe0f9ac3125eb1dTim Murray                    if (r != null && r.thread != null) {
827f0f9a829818a98236c81b96f9fe0f9ac3125eb1dTim Murray                        int pid = r.pid;
828f0f9a829818a98236c81b96f9fe0f9ac3125eb1dTim Murray                        if (pid > 0 && pid != app.pid && pid != parentPid && pid != MY_PID) {
829f0f9a829818a98236c81b96f9fe0f9ac3125eb1dTim Murray                            if (r.persistent) {
830f0f9a829818a98236c81b96f9fe0f9ac3125eb1dTim Murray                                firstPids.add(pid);
831f0f9a829818a98236c81b96f9fe0f9ac3125eb1dTim Murray                                if (DEBUG_ANR) Slog.i(TAG, "Adding persistent proc: " + r);
832f0f9a829818a98236c81b96f9fe0f9ac3125eb1dTim Murray                            } else {
833f0f9a829818a98236c81b96f9fe0f9ac3125eb1dTim Murray                                lastPids.put(pid, Boolean.TRUE);
834f0f9a829818a98236c81b96f9fe0f9ac3125eb1dTim Murray                                if (DEBUG_ANR) Slog.i(TAG, "Adding ANR proc: " + r);
835f0f9a829818a98236c81b96f9fe0f9ac3125eb1dTim Murray                            }
83620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                        }
83720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    }
83820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                }
83920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            }
84020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        }
84120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
84220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        // Log the ANR to the main log.
84320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        StringBuilder info = new StringBuilder();
84420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        info.setLength(0);
84520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        info.append("ANR in ").append(app.processName);
84620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        if (activity != null && activity.shortComponentName != null) {
84720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            info.append(" (").append(activity.shortComponentName).append(")");
84820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        }
84920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        info.append("\n");
85020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        info.append("PID: ").append(app.pid).append("\n");
85120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        if (annotation != null) {
85220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            info.append("Reason: ").append(annotation).append("\n");
85320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        }
85420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        if (parent != null && parent != activity) {
85520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            info.append("Parent: ").append(parent.shortComponentName).append("\n");
85620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        }
85720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
858f0f9a829818a98236c81b96f9fe0f9ac3125eb1dTim Murray        ProcessCpuTracker processCpuTracker = new ProcessCpuTracker(true);
85920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
86066524247d4d5f21a86624a6ccdd5f014bf5aa8b6Brian Carlstrom        // don't dump native PIDs for background ANRs unless it is the process of interest
86166524247d4d5f21a86624a6ccdd5f014bf5aa8b6Brian Carlstrom        String[] nativeProcs = null;
862f0f9a829818a98236c81b96f9fe0f9ac3125eb1dTim Murray        if (isSilentANR) {
86366524247d4d5f21a86624a6ccdd5f014bf5aa8b6Brian Carlstrom            for (int i = 0; i < NATIVE_STACKS_OF_INTEREST.length; i++) {
86466524247d4d5f21a86624a6ccdd5f014bf5aa8b6Brian Carlstrom                if (NATIVE_STACKS_OF_INTEREST[i].equals(app.processName)) {
86566524247d4d5f21a86624a6ccdd5f014bf5aa8b6Brian Carlstrom                    nativeProcs = new String[] { app.processName };
86666524247d4d5f21a86624a6ccdd5f014bf5aa8b6Brian Carlstrom                    break;
86766524247d4d5f21a86624a6ccdd5f014bf5aa8b6Brian Carlstrom                }
86866524247d4d5f21a86624a6ccdd5f014bf5aa8b6Brian Carlstrom            }
869f0f9a829818a98236c81b96f9fe0f9ac3125eb1dTim Murray        } else {
87066524247d4d5f21a86624a6ccdd5f014bf5aa8b6Brian Carlstrom            nativeProcs = NATIVE_STACKS_OF_INTEREST;
871f0f9a829818a98236c81b96f9fe0f9ac3125eb1dTim Murray        }
87220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
8736b47c54a65d8c0aca9a6523a926a386ecfaec069Steven Moreland        int[] pids = Process.getPidsForCommands(nativeProcs);
8746b47c54a65d8c0aca9a6523a926a386ecfaec069Steven Moreland        ArrayList<Integer> nativePids = null;
8756b47c54a65d8c0aca9a6523a926a386ecfaec069Steven Moreland
8766b47c54a65d8c0aca9a6523a926a386ecfaec069Steven Moreland        if (pids != null) {
8776b47c54a65d8c0aca9a6523a926a386ecfaec069Steven Moreland            nativePids = new ArrayList<Integer>(pids.length);
8786b47c54a65d8c0aca9a6523a926a386ecfaec069Steven Moreland            for (int i : pids) {
8796b47c54a65d8c0aca9a6523a926a386ecfaec069Steven Moreland                nativePids.add(i);
8806b47c54a65d8c0aca9a6523a926a386ecfaec069Steven Moreland            }
8816b47c54a65d8c0aca9a6523a926a386ecfaec069Steven Moreland        }
8826b47c54a65d8c0aca9a6523a926a386ecfaec069Steven Moreland
88366524247d4d5f21a86624a6ccdd5f014bf5aa8b6Brian Carlstrom        // For background ANRs, don't pass the ProcessCpuTracker to
88466524247d4d5f21a86624a6ccdd5f014bf5aa8b6Brian Carlstrom        // avoid spending 1/2 second collecting stats to rank lastPids.
88566524247d4d5f21a86624a6ccdd5f014bf5aa8b6Brian Carlstrom        File tracesFile = mService.dumpStackTraces(true, firstPids,
88666524247d4d5f21a86624a6ccdd5f014bf5aa8b6Brian Carlstrom                                                   (isSilentANR) ? null : processCpuTracker,
88766524247d4d5f21a86624a6ccdd5f014bf5aa8b6Brian Carlstrom                                                   (isSilentANR) ? null : lastPids,
8886b47c54a65d8c0aca9a6523a926a386ecfaec069Steven Moreland                                                   nativePids);
88966524247d4d5f21a86624a6ccdd5f014bf5aa8b6Brian Carlstrom
89020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        String cpuInfo = null;
89120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        if (ActivityManagerService.MONITOR_CPU_USAGE) {
89220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            mService.updateCpuStatsNow();
89320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            synchronized (mService.mProcessCpuTracker) {
89420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                cpuInfo = mService.mProcessCpuTracker.printCurrentState(anrTime);
89520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            }
89620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            info.append(processCpuTracker.printCurrentLoad());
89720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            info.append(cpuInfo);
89820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        }
89920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
90020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        info.append(processCpuTracker.printCurrentState(anrTime));
90120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
90220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        Slog.e(TAG, info.toString());
90320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        if (tracesFile == null) {
90420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            // There is no trace file, so dump (only) the alleged culprit's threads to the log
90520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            Process.sendSignal(app.pid, Process.SIGNAL_QUIT);
90620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        }
90720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
90820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        mService.addErrorToDropBox("anr", app, app.processName, activity, parent, annotation,
90920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                cpuInfo, tracesFile, null);
91020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
91120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        if (mService.mController != null) {
91220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            try {
91320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                // 0 == show dialog, 1 = keep waiting, -1 = kill process immediately
91420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                int res = mService.mController.appNotResponding(
91520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                        app.processName, app.pid, info.toString());
91620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                if (res != 0) {
91720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    if (res < 0 && app.pid != MY_PID) {
91820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                        app.kill("anr", true);
91920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    } else {
92020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                        synchronized (mService) {
92120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                            mService.mServices.scheduleServiceTimeoutLocked(app);
92220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                        }
92320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    }
92420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    return;
92520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                }
92620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            } catch (RemoteException e) {
92720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                mService.mController = null;
92820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                Watchdog.getInstance().setActivityController(null);
92920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            }
93020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        }
93120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
93220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        synchronized (mService) {
93320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            mService.mBatteryStatsService.noteProcessAnr(app.processName, app.uid);
93420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
935f0f9a829818a98236c81b96f9fe0f9ac3125eb1dTim Murray            if (isSilentANR) {
93620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                app.kill("bg anr", true);
93720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                return;
93820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            }
93920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
94020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            // Set the app's notResponding state, and look up the errorReportReceiver
94120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            makeAppNotRespondingLocked(app,
94220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    activity != null ? activity.shortComponentName : null,
94320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    annotation != null ? "ANR " + annotation : "ANR",
94420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    info.toString());
94520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
94620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            // Bring up the infamous App Not Responding dialog
94720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            Message msg = Message.obtain();
94820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            HashMap<String, Object> map = new HashMap<String, Object>();
94920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            msg.what = ActivityManagerService.SHOW_NOT_RESPONDING_UI_MSG;
95020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            msg.obj = map;
95120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            msg.arg1 = aboveSystem ? 1 : 0;
95220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            map.put("app", app);
95320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            if (activity != null) {
95420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                map.put("activity", activity);
95520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            }
95620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
95720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            mService.mUiHandler.sendMessage(msg);
95820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        }
95920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos    }
96020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
96120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos    private void makeAppNotRespondingLocked(ProcessRecord app,
96220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            String activity, String shortMsg, String longMsg) {
96320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        app.notResponding = true;
96420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        app.notRespondingReport = generateProcessError(app,
96520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                ActivityManager.ProcessErrorStateInfo.NOT_RESPONDING,
96620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                activity, shortMsg, longMsg, null);
96720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        startAppProblemLocked(app);
96820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        app.stopFreezingAllLocked();
96920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos    }
97020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
97120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos    void handleShowAnrUi(Message msg) {
972445fd2afe9336cecf76e41d78aa0b6f3b7053700Phil Weaver        Dialog d = null;
97320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        synchronized (mService) {
97420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            HashMap<String, Object> data = (HashMap<String, Object>) msg.obj;
97520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            ProcessRecord proc = (ProcessRecord)data.get("app");
97620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            if (proc != null && proc.anrDialog != null) {
97720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                Slog.e(TAG, "App already has anr dialog: " + proc);
9789046222cb2b1bd57278ddbf71d9f628f8dd254aeAdrian Roos                MetricsLogger.action(mContext, MetricsProto.MetricsEvent.ACTION_APP_ANR,
9799046222cb2b1bd57278ddbf71d9f628f8dd254aeAdrian Roos                        AppNotRespondingDialog.ALREADY_SHOWING);
98020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                return;
98120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            }
98220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
98320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            Intent intent = new Intent("android.intent.action.ANR");
98420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            if (!mService.mProcessesReady) {
98520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                intent.addFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY
98620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                        | Intent.FLAG_RECEIVER_FOREGROUND);
98720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            }
98820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            mService.broadcastIntentLocked(null, null, intent,
98920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    null, null, 0, null, null, null, AppOpsManager.OP_NONE,
99020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                    null, false, false, MY_PID, Process.SYSTEM_UID, 0 /* TODO: Verify */);
99120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
9926a7e08920c6c7d88352f66df6ba923b9156feb36Adrian Roos            boolean showBackground = Settings.Secure.getInt(mContext.getContentResolver(),
9936a7e08920c6c7d88352f66df6ba923b9156feb36Adrian Roos                    Settings.Secure.ANR_SHOW_BACKGROUND, 0) != 0;
9946a7e08920c6c7d88352f66df6ba923b9156feb36Adrian Roos            if (mService.canShowErrorDialogs() || showBackground) {
995445fd2afe9336cecf76e41d78aa0b6f3b7053700Phil Weaver                d = new AppNotRespondingDialog(mService,
99620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                        mContext, proc, (ActivityRecord)data.get("activity"),
99720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                        msg.arg1 != 0);
99820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                proc.anrDialog = d;
99920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            } else {
10009046222cb2b1bd57278ddbf71d9f628f8dd254aeAdrian Roos                MetricsLogger.action(mContext, MetricsProto.MetricsEvent.ACTION_APP_ANR,
10019046222cb2b1bd57278ddbf71d9f628f8dd254aeAdrian Roos                        AppNotRespondingDialog.CANT_SHOW);
100220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                // Just kill the app if there is no dialog to be shown.
100320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos                mService.killAppAtUsersRequest(proc, null);
100420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            }
100520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        }
1006445fd2afe9336cecf76e41d78aa0b6f3b7053700Phil Weaver        // If we've created a crash dialog, show it without the lock held
1007445fd2afe9336cecf76e41d78aa0b6f3b7053700Phil Weaver        if (d != null) {
1008445fd2afe9336cecf76e41d78aa0b6f3b7053700Phil Weaver            d.show();
1009445fd2afe9336cecf76e41d78aa0b6f3b7053700Phil Weaver        }
101020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos    }
101120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
101220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos    /**
101320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos     * Information about a process that is currently marked as bad.
101420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos     */
101520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos    static final class BadProcessInfo {
101620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        BadProcessInfo(long time, String shortMsg, String longMsg, String stack) {
101720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            this.time = time;
101820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            this.shortMsg = shortMsg;
101920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            this.longMsg = longMsg;
102020d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos            this.stack = stack;
102120d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        }
102220d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
102320d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        final long time;
102420d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        final String shortMsg;
102520d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        final String longMsg;
102620d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos        final String stack;
102720d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos    }
102820d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos
102920d7df3c3ff0000678a208b25fcf7ddf90c5abe4Adrian Roos}
1030