blob: 49106f42044ec9bca1586f6b56da77a32656b241 [file] [log] [blame]
Adrian Roos20d7df32016-01-12 18:59:43 +01001/*
2 * Copyright (C) 2016 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License
15 */
16
17package com.android.server.am;
18
19import com.android.internal.app.ProcessMap;
Adrian Roos90462222016-02-17 15:45:09 -080020import com.android.internal.logging.MetricsLogger;
21import com.android.internal.logging.MetricsProto;
Adrian Roos20d7df32016-01-12 18:59:43 +010022import com.android.internal.os.ProcessCpuTracker;
23import com.android.server.Watchdog;
24
25import android.app.Activity;
26import android.app.ActivityManager;
27import android.app.ActivityOptions;
28import android.app.ActivityThread;
29import android.app.AppOpsManager;
30import android.app.ApplicationErrorReport;
31import android.app.Dialog;
32import android.content.ActivityNotFoundException;
33import android.content.Context;
34import android.content.Intent;
35import android.content.pm.ApplicationInfo;
36import android.content.pm.IPackageDataObserver;
37import android.content.pm.PackageManager;
38import android.os.Binder;
39import android.os.Bundle;
40import android.os.Message;
41import android.os.Process;
42import android.os.RemoteException;
43import android.os.SystemClock;
44import android.os.SystemProperties;
45import android.os.UserHandle;
46import android.provider.Settings;
47import android.util.ArrayMap;
48import android.util.ArraySet;
49import android.util.EventLog;
50import android.util.Log;
51import android.util.Slog;
52import android.util.SparseArray;
53import android.util.TimeUtils;
54
55import java.io.File;
56import java.io.FileDescriptor;
57import java.io.PrintWriter;
58import java.util.ArrayList;
59import java.util.Collections;
60import java.util.HashMap;
61import java.util.concurrent.Semaphore;
62
63import static com.android.server.Watchdog.NATIVE_STACKS_OF_INTEREST;
Dianne Hackborn9369efd2016-03-02 15:49:58 -080064import static com.android.server.am.ActivityManagerDebugConfig.DEBUG_ANR;
Adrian Roos20d7df32016-01-12 18:59:43 +010065import static com.android.server.am.ActivityManagerDebugConfig.TAG_AM;
66import static com.android.server.am.ActivityManagerDebugConfig.TAG_WITH_CLASS_NAME;
67import static com.android.server.am.ActivityManagerService.MY_PID;
68import static com.android.server.am.ActivityManagerService.SYSTEM_DEBUGGABLE;
69
70/**
71 * Controls error conditions in applications.
72 */
73class AppErrors {
74
75 private static final String TAG = TAG_WITH_CLASS_NAME ? "AppErrors" : TAG_AM;
76
77 private final ActivityManagerService mService;
78 private final Context mContext;
79
80 private ArraySet<String> mAppsNotReportingCrashes;
81
82 /**
83 * The last time that various processes have crashed since they were last explicitly started.
84 */
85 private final ProcessMap<Long> mProcessCrashTimes = new ProcessMap<>();
86
87 /**
88 * The last time that various processes have crashed (not reset even when explicitly started).
89 */
90 private final ProcessMap<Long> mProcessCrashTimesPersistent = new ProcessMap<>();
91
92 /**
93 * Set of applications that we consider to be bad, and will reject
94 * incoming broadcasts from (which the user has no control over).
95 * Processes are added to this set when they have crashed twice within
96 * a minimum amount of time; they are removed from it when they are
97 * later restarted (hopefully due to some user action). The value is the
98 * time it was added to the list.
99 */
100 private final ProcessMap<BadProcessInfo> mBadProcesses = new ProcessMap<>();
101
102
103 AppErrors(Context context, ActivityManagerService service) {
104 mService = service;
105 mContext = context;
106 }
107
108 boolean dumpLocked(FileDescriptor fd, PrintWriter pw, boolean needSep,
109 String dumpPackage) {
110 if (!mProcessCrashTimes.getMap().isEmpty()) {
111 boolean printed = false;
112 final long now = SystemClock.uptimeMillis();
113 final ArrayMap<String, SparseArray<Long>> pmap = mProcessCrashTimes.getMap();
114 final int processCount = pmap.size();
115 for (int ip = 0; ip < processCount; ip++) {
116 final String pname = pmap.keyAt(ip);
117 final SparseArray<Long> uids = pmap.valueAt(ip);
118 final int uidCount = uids.size();
119 for (int i = 0; i < uidCount; i++) {
120 final int puid = uids.keyAt(i);
121 final ProcessRecord r = mService.mProcessNames.get(pname, puid);
122 if (dumpPackage != null && (r == null
123 || !r.pkgList.containsKey(dumpPackage))) {
124 continue;
125 }
126 if (!printed) {
127 if (needSep) pw.println();
128 needSep = true;
129 pw.println(" Time since processes crashed:");
130 printed = true;
131 }
132 pw.print(" Process "); pw.print(pname);
133 pw.print(" uid "); pw.print(puid);
134 pw.print(": last crashed ");
135 TimeUtils.formatDuration(now-uids.valueAt(i), pw);
136 pw.println(" ago");
137 }
138 }
139 }
140
141 if (!mBadProcesses.getMap().isEmpty()) {
142 boolean printed = false;
143 final ArrayMap<String, SparseArray<BadProcessInfo>> pmap = mBadProcesses.getMap();
144 final int processCount = pmap.size();
145 for (int ip = 0; ip < processCount; ip++) {
146 final String pname = pmap.keyAt(ip);
147 final SparseArray<BadProcessInfo> uids = pmap.valueAt(ip);
148 final int uidCount = uids.size();
149 for (int i = 0; i < uidCount; i++) {
150 final int puid = uids.keyAt(i);
151 final ProcessRecord r = mService.mProcessNames.get(pname, puid);
152 if (dumpPackage != null && (r == null
153 || !r.pkgList.containsKey(dumpPackage))) {
154 continue;
155 }
156 if (!printed) {
157 if (needSep) pw.println();
158 needSep = true;
159 pw.println(" Bad processes:");
160 printed = true;
161 }
162 final BadProcessInfo info = uids.valueAt(i);
163 pw.print(" Bad process "); pw.print(pname);
164 pw.print(" uid "); pw.print(puid);
165 pw.print(": crashed at time "); pw.println(info.time);
166 if (info.shortMsg != null) {
167 pw.print(" Short msg: "); pw.println(info.shortMsg);
168 }
169 if (info.longMsg != null) {
170 pw.print(" Long msg: "); pw.println(info.longMsg);
171 }
172 if (info.stack != null) {
173 pw.println(" Stack:");
174 int lastPos = 0;
175 for (int pos = 0; pos < info.stack.length(); pos++) {
176 if (info.stack.charAt(pos) == '\n') {
177 pw.print(" ");
178 pw.write(info.stack, lastPos, pos-lastPos);
179 pw.println();
180 lastPos = pos+1;
181 }
182 }
183 if (lastPos < info.stack.length()) {
184 pw.print(" ");
185 pw.write(info.stack, lastPos, info.stack.length()-lastPos);
186 pw.println();
187 }
188 }
189 }
190 }
191 }
192 return needSep;
193 }
194
195 boolean isBadProcessLocked(ApplicationInfo info) {
196 return mBadProcesses.get(info.processName, info.uid) != null;
197 }
198
199 void clearBadProcessLocked(ApplicationInfo info) {
200 mBadProcesses.remove(info.processName, info.uid);
201 }
202
203 void resetProcessCrashTimeLocked(ApplicationInfo info) {
204 mProcessCrashTimes.remove(info.processName, info.uid);
205 }
206
207 void resetProcessCrashTimeLocked(boolean resetEntireUser, int appId, int userId) {
208 final ArrayMap<String, SparseArray<Long>> pmap = mProcessCrashTimes.getMap();
209 for (int ip = pmap.size() - 1; ip >= 0; ip--) {
210 SparseArray<Long> ba = pmap.valueAt(ip);
211 for (int i = ba.size() - 1; i >= 0; i--) {
212 boolean remove = false;
213 final int entUid = ba.keyAt(i);
214 if (!resetEntireUser) {
215 if (userId == UserHandle.USER_ALL) {
216 if (UserHandle.getAppId(entUid) == appId) {
217 remove = true;
218 }
219 } else {
220 if (entUid == UserHandle.getUid(userId, appId)) {
221 remove = true;
222 }
223 }
224 } else if (UserHandle.getUserId(entUid) == userId) {
225 remove = true;
226 }
227 if (remove) {
228 ba.removeAt(i);
229 }
230 }
231 if (ba.size() == 0) {
232 pmap.removeAt(ip);
233 }
234 }
235 }
236
237 void loadAppsNotReportingCrashesFromConfigLocked(String appsNotReportingCrashesConfig) {
238 if (appsNotReportingCrashesConfig != null) {
239 final String[] split = appsNotReportingCrashesConfig.split(",");
240 if (split.length > 0) {
241 mAppsNotReportingCrashes = new ArraySet<>();
242 Collections.addAll(mAppsNotReportingCrashes, split);
243 }
244 }
245 }
246
247 void killAppAtUserRequestLocked(ProcessRecord app, Dialog fromDialog) {
248 app.crashing = false;
249 app.crashingReport = null;
250 app.notResponding = false;
251 app.notRespondingReport = null;
252 if (app.anrDialog == fromDialog) {
253 app.anrDialog = null;
254 }
255 if (app.waitDialog == fromDialog) {
256 app.waitDialog = null;
257 }
258 if (app.pid > 0 && app.pid != MY_PID) {
259 handleAppCrashLocked(app, "user-terminated" /*reason*/,
260 null /*shortMsg*/, null /*longMsg*/, null /*stackTrace*/, null /*data*/);
261 app.kill("user request after error", true);
262 }
263 }
264
265 void scheduleAppCrashLocked(int uid, int initialPid, String packageName,
266 String message) {
267 ProcessRecord proc = null;
268
269 // Figure out which process to kill. We don't trust that initialPid
270 // still has any relation to current pids, so must scan through the
271 // list.
272
273 synchronized (mService.mPidsSelfLocked) {
274 for (int i=0; i<mService.mPidsSelfLocked.size(); i++) {
275 ProcessRecord p = mService.mPidsSelfLocked.valueAt(i);
276 if (p.uid != uid) {
277 continue;
278 }
279 if (p.pid == initialPid) {
280 proc = p;
281 break;
282 }
283 if (p.pkgList.containsKey(packageName)) {
284 proc = p;
285 }
286 }
287 }
288
289 if (proc == null) {
290 Slog.w(TAG, "crashApplication: nothing for uid=" + uid
291 + " initialPid=" + initialPid
292 + " packageName=" + packageName);
293 return;
294 }
295
Joe Onorato57190282016-04-20 15:37:49 -0700296 proc.scheduleCrash(message);
Adrian Roos20d7df32016-01-12 18:59:43 +0100297 }
298
299 /**
300 * Bring up the "unexpected error" dialog box for a crashing app.
301 * Deal with edge cases (intercepts from instrumented applications,
302 * ActivityController, error intent receivers, that sort of thing).
303 * @param r the application crashing
304 * @param crashInfo describing the failure
305 */
306 void crashApplication(ProcessRecord r, ApplicationErrorReport.CrashInfo crashInfo) {
Andrii Kulianfa3991a2016-04-28 14:18:37 -0700307 final long origId = Binder.clearCallingIdentity();
308 try {
309 crashApplicationInner(r, crashInfo);
310 } finally {
311 Binder.restoreCallingIdentity(origId);
312 }
313 }
314
315 void crashApplicationInner(ProcessRecord r, ApplicationErrorReport.CrashInfo crashInfo) {
Adrian Roos20d7df32016-01-12 18:59:43 +0100316 long timeMillis = System.currentTimeMillis();
317 String shortMsg = crashInfo.exceptionClassName;
318 String longMsg = crashInfo.exceptionMessage;
319 String stackTrace = crashInfo.stackTrace;
320 if (shortMsg != null && longMsg != null) {
321 longMsg = shortMsg + ": " + longMsg;
322 } else if (shortMsg != null) {
323 longMsg = shortMsg;
324 }
325
326 AppErrorResult result = new AppErrorResult();
327 TaskRecord task;
328 synchronized (mService) {
Andrii Kulianfa3991a2016-04-28 14:18:37 -0700329 /**
330 * If crash is handled by instance of {@link android.app.IActivityController},
331 * finish now and don't show the app error dialog.
332 */
333 if (handleAppCrashInActivityController(r, crashInfo, shortMsg, longMsg, stackTrace,
334 timeMillis)) {
335 return;
Adrian Roos20d7df32016-01-12 18:59:43 +0100336 }
337
Andrii Kulianfa3991a2016-04-28 14:18:37 -0700338 /**
339 * If this process was running instrumentation, finish now - it will be handled in
340 * {@link ActivityManagerService#handleAppDiedLocked}.
341 */
Adrian Roos20d7df32016-01-12 18:59:43 +0100342 if (r != null && r.instrumentationClass != null) {
Adrian Roos20d7df32016-01-12 18:59:43 +0100343 return;
344 }
345
346 // Log crash in battery stats.
347 if (r != null) {
348 mService.mBatteryStatsService.noteProcessCrash(r.processName, r.uid);
349 }
350
351 AppErrorDialog.Data data = new AppErrorDialog.Data();
352 data.result = result;
353 data.proc = r;
354
355 // If we can't identify the process or it's already exceeded its crash quota,
356 // quit right away without showing a crash dialog.
357 if (r == null || !makeAppCrashingLocked(r, shortMsg, longMsg, stackTrace, data)) {
Adrian Roos20d7df32016-01-12 18:59:43 +0100358 return;
359 }
360
361 Message msg = Message.obtain();
362 msg.what = ActivityManagerService.SHOW_ERROR_UI_MSG;
363
364 task = data.task;
365 msg.obj = data;
366 mService.mUiHandler.sendMessage(msg);
Adrian Roos20d7df32016-01-12 18:59:43 +0100367 }
368
369 int res = result.get();
370
371 Intent appErrorIntent = null;
Andrii Kulianfa3991a2016-04-28 14:18:37 -0700372 MetricsLogger.action(mContext, MetricsProto.MetricsEvent.ACTION_APP_CRASH, res);
Adrian Roosad028c12016-05-17 14:30:42 -0700373 if (res == AppErrorDialog.TIMEOUT || res == AppErrorDialog.CANCEL) {
Andrii Kulianfa3991a2016-04-28 14:18:37 -0700374 res = AppErrorDialog.FORCE_QUIT;
375 }
Andrii Kulianfa3991a2016-04-28 14:18:37 -0700376 synchronized (mService) {
377 if (res == AppErrorDialog.MUTE) {
378 stopReportingCrashesLocked(r);
379 }
380 if (res == AppErrorDialog.RESTART) {
381 mService.removeProcessLocked(r, false, true, "crash");
382 if (task != null) {
383 try {
384 mService.startActivityFromRecents(task.taskId,
385 ActivityOptions.makeBasic().toBundle());
386 } catch (IllegalArgumentException e) {
387 // Hmm, that didn't work, app might have crashed before creating a
388 // recents entry. Let's see if we have a safe-to-restart intent.
389 if (task.intent.getCategories().contains(
390 Intent.CATEGORY_LAUNCHER)) {
391 mService.startActivityInPackage(task.mCallingUid,
392 task.mCallingPackage, task.intent,
393 null, null, null, 0, 0,
394 ActivityOptions.makeBasic().toBundle(),
395 task.userId, null, null);
396 }
397 }
398 }
399 }
400 if (res == AppErrorDialog.FORCE_QUIT) {
401 long orig = Binder.clearCallingIdentity();
402 try {
403 // Kill it with fire!
404 mService.mStackSupervisor.handleAppCrashLocked(r);
405 if (!r.persistent) {
406 mService.removeProcessLocked(r, false, false, "crash");
407 mService.mStackSupervisor.resumeFocusedStackTopActivityLocked();
408 }
409 } finally {
410 Binder.restoreCallingIdentity(orig);
411 }
412 }
413 if (res == AppErrorDialog.FORCE_QUIT_AND_REPORT) {
414 appErrorIntent = createAppErrorIntentLocked(r, timeMillis, crashInfo);
415 }
416 if (r != null && !r.isolated && res != AppErrorDialog.RESTART) {
417 // XXX Can't keep track of crash time for isolated processes,
418 // since they don't have a persistent identity.
419 mProcessCrashTimes.put(r.info.processName, r.uid,
420 SystemClock.uptimeMillis());
421 }
Adrian Roos20d7df32016-01-12 18:59:43 +0100422 }
423
424 if (appErrorIntent != null) {
425 try {
426 mContext.startActivityAsUser(appErrorIntent, new UserHandle(r.userId));
427 } catch (ActivityNotFoundException e) {
428 Slog.w(TAG, "bug report receiver dissappeared", e);
429 }
430 }
431 }
432
Andrii Kulianfa3991a2016-04-28 14:18:37 -0700433 private boolean handleAppCrashInActivityController(ProcessRecord r,
434 ApplicationErrorReport.CrashInfo crashInfo,
435 String shortMsg, String longMsg,
436 String stackTrace, long timeMillis) {
437 if (mService.mController == null) {
438 return false;
439 }
440
441 try {
442 String name = r != null ? r.processName : null;
443 int pid = r != null ? r.pid : Binder.getCallingPid();
444 int uid = r != null ? r.info.uid : Binder.getCallingUid();
445 if (!mService.mController.appCrashed(name, pid,
446 shortMsg, longMsg, timeMillis, crashInfo.stackTrace)) {
447 if ("1".equals(SystemProperties.get(SYSTEM_DEBUGGABLE, "0"))
448 && "Native crash".equals(crashInfo.exceptionClassName)) {
449 Slog.w(TAG, "Skip killing native crashed app " + name
450 + "(" + pid + ") during testing");
451 } else {
452 Slog.w(TAG, "Force-killing crashed app " + name
453 + " at watcher's request");
454 if (r != null) {
455 if (!makeAppCrashingLocked(r, shortMsg, longMsg, stackTrace, null))
456 {
457 r.kill("crash", true);
458 }
459 } else {
460 // Huh.
461 Process.killProcess(pid);
462 ActivityManagerService.killProcessGroup(uid, pid);
463 }
464 }
465 return true;
466 }
467 } catch (RemoteException e) {
468 mService.mController = null;
469 Watchdog.getInstance().setActivityController(null);
470 }
471 return false;
472 }
473
Adrian Roos20d7df32016-01-12 18:59:43 +0100474 private boolean makeAppCrashingLocked(ProcessRecord app,
475 String shortMsg, String longMsg, String stackTrace, AppErrorDialog.Data data) {
476 app.crashing = true;
477 app.crashingReport = generateProcessError(app,
478 ActivityManager.ProcessErrorStateInfo.CRASHED, null, shortMsg, longMsg, stackTrace);
479 startAppProblemLocked(app);
480 app.stopFreezingAllLocked();
481 return handleAppCrashLocked(app, "force-crash" /*reason*/, shortMsg, longMsg, stackTrace,
482 data);
483 }
484
485 void startAppProblemLocked(ProcessRecord app) {
486 // If this app is not running under the current user, then we
487 // can't give it a report button because that would require
488 // launching the report UI under a different user.
489 app.errorReportReceiver = null;
490
491 for (int userId : mService.mUserController.getCurrentProfileIdsLocked()) {
492 if (app.userId == userId) {
493 app.errorReportReceiver = ApplicationErrorReport.getErrorReportReceiver(
494 mContext, app.info.packageName, app.info.flags);
495 }
496 }
497 mService.skipCurrentReceiverLocked(app);
498 }
499
500 /**
501 * Generate a process error record, suitable for attachment to a ProcessRecord.
502 *
503 * @param app The ProcessRecord in which the error occurred.
504 * @param condition Crashing, Application Not Responding, etc. Values are defined in
505 * ActivityManager.AppErrorStateInfo
506 * @param activity The activity associated with the crash, if known.
507 * @param shortMsg Short message describing the crash.
508 * @param longMsg Long message describing the crash.
509 * @param stackTrace Full crash stack trace, may be null.
510 *
511 * @return Returns a fully-formed AppErrorStateInfo record.
512 */
513 private ActivityManager.ProcessErrorStateInfo generateProcessError(ProcessRecord app,
514 int condition, String activity, String shortMsg, String longMsg, String stackTrace) {
515 ActivityManager.ProcessErrorStateInfo report = new ActivityManager.ProcessErrorStateInfo();
516
517 report.condition = condition;
518 report.processName = app.processName;
519 report.pid = app.pid;
520 report.uid = app.info.uid;
521 report.tag = activity;
522 report.shortMsg = shortMsg;
523 report.longMsg = longMsg;
524 report.stackTrace = stackTrace;
525
526 return report;
527 }
528
529 Intent createAppErrorIntentLocked(ProcessRecord r,
530 long timeMillis, ApplicationErrorReport.CrashInfo crashInfo) {
531 ApplicationErrorReport report = createAppErrorReportLocked(r, timeMillis, crashInfo);
532 if (report == null) {
533 return null;
534 }
535 Intent result = new Intent(Intent.ACTION_APP_ERROR);
536 result.setComponent(r.errorReportReceiver);
537 result.putExtra(Intent.EXTRA_BUG_REPORT, report);
538 result.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
539 return result;
540 }
541
542 private ApplicationErrorReport createAppErrorReportLocked(ProcessRecord r,
543 long timeMillis, ApplicationErrorReport.CrashInfo crashInfo) {
544 if (r.errorReportReceiver == null) {
545 return null;
546 }
547
548 if (!r.crashing && !r.notResponding && !r.forceCrashReport) {
549 return null;
550 }
551
552 ApplicationErrorReport report = new ApplicationErrorReport();
553 report.packageName = r.info.packageName;
554 report.installerPackageName = r.errorReportReceiver.getPackageName();
555 report.processName = r.processName;
556 report.time = timeMillis;
557 report.systemApp = (r.info.flags & ApplicationInfo.FLAG_SYSTEM) != 0;
558
559 if (r.crashing || r.forceCrashReport) {
560 report.type = ApplicationErrorReport.TYPE_CRASH;
561 report.crashInfo = crashInfo;
562 } else if (r.notResponding) {
563 report.type = ApplicationErrorReport.TYPE_ANR;
564 report.anrInfo = new ApplicationErrorReport.AnrInfo();
565
566 report.anrInfo.activity = r.notRespondingReport.tag;
567 report.anrInfo.cause = r.notRespondingReport.shortMsg;
568 report.anrInfo.info = r.notRespondingReport.longMsg;
569 }
570
571 return report;
572 }
573
574 boolean handleAppCrashLocked(ProcessRecord app, String reason,
575 String shortMsg, String longMsg, String stackTrace, AppErrorDialog.Data data) {
576 long now = SystemClock.uptimeMillis();
577
578 Long crashTime;
579 Long crashTimePersistent;
580 if (!app.isolated) {
581 crashTime = mProcessCrashTimes.get(app.info.processName, app.uid);
582 crashTimePersistent = mProcessCrashTimesPersistent.get(app.info.processName, app.uid);
583 } else {
584 crashTime = crashTimePersistent = null;
585 }
586 if (crashTime != null && now < crashTime+ProcessList.MIN_CRASH_INTERVAL) {
587 // This process loses!
588 Slog.w(TAG, "Process " + app.info.processName
589 + " has crashed too many times: killing!");
590 EventLog.writeEvent(EventLogTags.AM_PROCESS_CRASHED_TOO_MUCH,
591 app.userId, app.info.processName, app.uid);
592 mService.mStackSupervisor.handleAppCrashLocked(app);
593 if (!app.persistent) {
594 // We don't want to start this process again until the user
595 // explicitly does so... but for persistent process, we really
596 // need to keep it running. If a persistent process is actually
597 // repeatedly crashing, then badness for everyone.
598 EventLog.writeEvent(EventLogTags.AM_PROC_BAD, app.userId, app.uid,
599 app.info.processName);
600 if (!app.isolated) {
601 // XXX We don't have a way to mark isolated processes
602 // as bad, since they don't have a peristent identity.
603 mBadProcesses.put(app.info.processName, app.uid,
604 new BadProcessInfo(now, shortMsg, longMsg, stackTrace));
605 mProcessCrashTimes.remove(app.info.processName, app.uid);
606 }
607 app.bad = true;
608 app.removed = true;
609 // Don't let services in this process be restarted and potentially
610 // annoy the user repeatedly. Unless it is persistent, since those
611 // processes run critical code.
612 mService.removeProcessLocked(app, false, false, "crash");
613 mService.mStackSupervisor.resumeFocusedStackTopActivityLocked();
614 return false;
615 }
616 mService.mStackSupervisor.resumeFocusedStackTopActivityLocked();
617 } else {
618 TaskRecord affectedTask =
619 mService.mStackSupervisor.finishTopRunningActivityLocked(app, reason);
620 if (data != null) {
621 data.task = affectedTask;
622 }
623 if (data != null && crashTimePersistent != null
624 && now < crashTimePersistent + ProcessList.MIN_CRASH_INTERVAL) {
625 data.repeating = true;
626 }
627 }
628
629 // Bump up the crash count of any services currently running in the proc.
630 for (int i=app.services.size()-1; i>=0; i--) {
631 // Any services running in the application need to be placed
632 // back in the pending list.
633 ServiceRecord sr = app.services.valueAt(i);
634 sr.crashCount++;
635 }
636
637 // If the crashing process is what we consider to be the "home process" and it has been
638 // replaced by a third-party app, clear the package preferred activities from packages
639 // with a home activity running in the process to prevent a repeatedly crashing app
640 // from blocking the user to manually clear the list.
641 final ArrayList<ActivityRecord> activities = app.activities;
642 if (app == mService.mHomeProcess && activities.size() > 0
643 && (mService.mHomeProcess.info.flags & ApplicationInfo.FLAG_SYSTEM) == 0) {
644 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
645 final ActivityRecord r = activities.get(activityNdx);
646 if (r.isHomeActivity()) {
647 Log.i(TAG, "Clearing package preferred activities from " + r.packageName);
648 try {
649 ActivityThread.getPackageManager()
650 .clearPackagePreferredActivities(r.packageName);
651 } catch (RemoteException c) {
652 // pm is in same process, this will never happen.
653 }
654 }
655 }
656 }
657
658 if (!app.isolated) {
659 // XXX Can't keep track of crash times for isolated processes,
660 // because they don't have a perisistent identity.
661 mProcessCrashTimes.put(app.info.processName, app.uid, now);
662 mProcessCrashTimesPersistent.put(app.info.processName, app.uid, now);
663 }
664
665 if (app.crashHandler != null) mService.mHandler.post(app.crashHandler);
666 return true;
667 }
668
669 void handleShowAppErrorUi(Message msg) {
670 AppErrorDialog.Data data = (AppErrorDialog.Data) msg.obj;
671 boolean showBackground = Settings.Secure.getInt(mContext.getContentResolver(),
672 Settings.Secure.ANR_SHOW_BACKGROUND, 0) != 0;
673 synchronized (mService) {
674 ProcessRecord proc = data.proc;
675 AppErrorResult res = data.result;
676 if (proc != null && proc.crashDialog != null) {
677 Slog.e(TAG, "App already has crash dialog: " + proc);
678 if (res != null) {
Adrian Roos90462222016-02-17 15:45:09 -0800679 res.set(AppErrorDialog.ALREADY_SHOWING);
Adrian Roos20d7df32016-01-12 18:59:43 +0100680 }
681 return;
682 }
683 boolean isBackground = (UserHandle.getAppId(proc.uid)
684 >= Process.FIRST_APPLICATION_UID
685 && proc.pid != MY_PID);
686 for (int userId : mService.mUserController.getCurrentProfileIdsLocked()) {
687 isBackground &= (proc.userId != userId);
688 }
689 if (isBackground && !showBackground) {
690 Slog.w(TAG, "Skipping crash dialog of " + proc + ": background");
691 if (res != null) {
Adrian Roos90462222016-02-17 15:45:09 -0800692 res.set(AppErrorDialog.BACKGROUND_USER);
Adrian Roos20d7df32016-01-12 18:59:43 +0100693 }
694 return;
695 }
696 final boolean crashSilenced = mAppsNotReportingCrashes != null &&
697 mAppsNotReportingCrashes.contains(proc.info.packageName);
698 if (mService.canShowErrorDialogs() && !crashSilenced) {
Phil Weaver445fd2a2016-03-17 17:26:24 -0700699 proc.crashDialog = new AppErrorDialog(mContext, mService, data);
Adrian Roos20d7df32016-01-12 18:59:43 +0100700 } else {
701 // The device is asleep, so just pretend that the user
702 // saw a crash dialog and hit "force quit".
703 if (res != null) {
Adrian Roos90462222016-02-17 15:45:09 -0800704 res.set(AppErrorDialog.CANT_SHOW);
Adrian Roos20d7df32016-01-12 18:59:43 +0100705 }
706 }
707 }
Phil Weaver445fd2a2016-03-17 17:26:24 -0700708 // If we've created a crash dialog, show it without the lock held
709 if(data.proc.crashDialog != null) {
710 data.proc.crashDialog.show();
711 }
Adrian Roos20d7df32016-01-12 18:59:43 +0100712 }
713
714 void stopReportingCrashesLocked(ProcessRecord proc) {
715 if (mAppsNotReportingCrashes == null) {
716 mAppsNotReportingCrashes = new ArraySet<>();
717 }
718 mAppsNotReportingCrashes.add(proc.info.packageName);
719 }
720
721 final void appNotResponding(ProcessRecord app, ActivityRecord activity,
722 ActivityRecord parent, boolean aboveSystem, final String annotation) {
723 ArrayList<Integer> firstPids = new ArrayList<Integer>(5);
724 SparseArray<Boolean> lastPids = new SparseArray<Boolean>(20);
725
726 if (mService.mController != null) {
727 try {
728 // 0 == continue, -1 = kill process immediately
Adrian Roosa85a2c62016-01-26 09:14:22 -0800729 int res = mService.mController.appEarlyNotResponding(
730 app.processName, app.pid, annotation);
Adrian Roos20d7df32016-01-12 18:59:43 +0100731 if (res < 0 && app.pid != MY_PID) {
732 app.kill("anr", true);
733 }
734 } catch (RemoteException e) {
735 mService.mController = null;
736 Watchdog.getInstance().setActivityController(null);
737 }
738 }
739
740 long anrTime = SystemClock.uptimeMillis();
741 if (ActivityManagerService.MONITOR_CPU_USAGE) {
742 mService.updateCpuStatsNow();
743 }
744
745 synchronized (mService) {
746 // PowerManager.reboot() can block for a long time, so ignore ANRs while shutting down.
747 if (mService.mShuttingDown) {
748 Slog.i(TAG, "During shutdown skipping ANR: " + app + " " + annotation);
749 return;
750 } else if (app.notResponding) {
751 Slog.i(TAG, "Skipping duplicate ANR: " + app + " " + annotation);
752 return;
753 } else if (app.crashing) {
754 Slog.i(TAG, "Crashing app skipping ANR: " + app + " " + annotation);
755 return;
756 }
757
758 // In case we come through here for the same app before completing
759 // this one, mark as anring now so we will bail out.
760 app.notResponding = true;
761
762 // Log the ANR to the event log.
763 EventLog.writeEvent(EventLogTags.AM_ANR, app.userId, app.pid,
764 app.processName, app.info.flags, annotation);
765
766 // Dump thread traces as quickly as we can, starting with "interesting" processes.
767 firstPids.add(app.pid);
768
769 int parentPid = app.pid;
770 if (parent != null && parent.app != null && parent.app.pid > 0) {
771 parentPid = parent.app.pid;
772 }
773 if (parentPid != app.pid) firstPids.add(parentPid);
774
775 if (MY_PID != app.pid && MY_PID != parentPid) firstPids.add(MY_PID);
776
777 for (int i = mService.mLruProcesses.size() - 1; i >= 0; i--) {
778 ProcessRecord r = mService.mLruProcesses.get(i);
779 if (r != null && r.thread != null) {
780 int pid = r.pid;
781 if (pid > 0 && pid != app.pid && pid != parentPid && pid != MY_PID) {
782 if (r.persistent) {
783 firstPids.add(pid);
Dianne Hackborn9369efd2016-03-02 15:49:58 -0800784 if (DEBUG_ANR) Slog.i(TAG, "Adding persistent proc: " + r);
Adrian Roos20d7df32016-01-12 18:59:43 +0100785 } else {
786 lastPids.put(pid, Boolean.TRUE);
Dianne Hackborn9369efd2016-03-02 15:49:58 -0800787 if (DEBUG_ANR) Slog.i(TAG, "Adding ANR proc: " + r);
Adrian Roos20d7df32016-01-12 18:59:43 +0100788 }
789 }
790 }
791 }
792 }
793
794 // Log the ANR to the main log.
795 StringBuilder info = new StringBuilder();
796 info.setLength(0);
797 info.append("ANR in ").append(app.processName);
798 if (activity != null && activity.shortComponentName != null) {
799 info.append(" (").append(activity.shortComponentName).append(")");
800 }
801 info.append("\n");
802 info.append("PID: ").append(app.pid).append("\n");
803 if (annotation != null) {
804 info.append("Reason: ").append(annotation).append("\n");
805 }
806 if (parent != null && parent != activity) {
807 info.append("Parent: ").append(parent.shortComponentName).append("\n");
808 }
809
810 final ProcessCpuTracker processCpuTracker = new ProcessCpuTracker(true);
811
812 File tracesFile = mService.dumpStackTraces(true, firstPids, processCpuTracker, lastPids,
813 NATIVE_STACKS_OF_INTEREST);
814
815 String cpuInfo = null;
816 if (ActivityManagerService.MONITOR_CPU_USAGE) {
817 mService.updateCpuStatsNow();
818 synchronized (mService.mProcessCpuTracker) {
819 cpuInfo = mService.mProcessCpuTracker.printCurrentState(anrTime);
820 }
821 info.append(processCpuTracker.printCurrentLoad());
822 info.append(cpuInfo);
823 }
824
825 info.append(processCpuTracker.printCurrentState(anrTime));
826
827 Slog.e(TAG, info.toString());
828 if (tracesFile == null) {
829 // There is no trace file, so dump (only) the alleged culprit's threads to the log
830 Process.sendSignal(app.pid, Process.SIGNAL_QUIT);
831 }
832
833 mService.addErrorToDropBox("anr", app, app.processName, activity, parent, annotation,
834 cpuInfo, tracesFile, null);
835
836 if (mService.mController != null) {
837 try {
838 // 0 == show dialog, 1 = keep waiting, -1 = kill process immediately
839 int res = mService.mController.appNotResponding(
840 app.processName, app.pid, info.toString());
841 if (res != 0) {
842 if (res < 0 && app.pid != MY_PID) {
843 app.kill("anr", true);
844 } else {
845 synchronized (mService) {
846 mService.mServices.scheduleServiceTimeoutLocked(app);
847 }
848 }
849 return;
850 }
851 } catch (RemoteException e) {
852 mService.mController = null;
853 Watchdog.getInstance().setActivityController(null);
854 }
855 }
856
857 // Unless configured otherwise, swallow ANRs in background processes & kill the process.
858 boolean showBackground = Settings.Secure.getInt(mContext.getContentResolver(),
859 Settings.Secure.ANR_SHOW_BACKGROUND, 0) != 0;
860
861 synchronized (mService) {
862 mService.mBatteryStatsService.noteProcessAnr(app.processName, app.uid);
863
864 if (!showBackground && !app.isInterestingToUserLocked() && app.pid != MY_PID) {
865 app.kill("bg anr", true);
866 return;
867 }
868
869 // Set the app's notResponding state, and look up the errorReportReceiver
870 makeAppNotRespondingLocked(app,
871 activity != null ? activity.shortComponentName : null,
872 annotation != null ? "ANR " + annotation : "ANR",
873 info.toString());
874
875 // Bring up the infamous App Not Responding dialog
876 Message msg = Message.obtain();
877 HashMap<String, Object> map = new HashMap<String, Object>();
878 msg.what = ActivityManagerService.SHOW_NOT_RESPONDING_UI_MSG;
879 msg.obj = map;
880 msg.arg1 = aboveSystem ? 1 : 0;
881 map.put("app", app);
882 if (activity != null) {
883 map.put("activity", activity);
884 }
885
886 mService.mUiHandler.sendMessage(msg);
887 }
888 }
889
890 private void makeAppNotRespondingLocked(ProcessRecord app,
891 String activity, String shortMsg, String longMsg) {
892 app.notResponding = true;
893 app.notRespondingReport = generateProcessError(app,
894 ActivityManager.ProcessErrorStateInfo.NOT_RESPONDING,
895 activity, shortMsg, longMsg, null);
896 startAppProblemLocked(app);
897 app.stopFreezingAllLocked();
898 }
899
900 void handleShowAnrUi(Message msg) {
Phil Weaver445fd2a2016-03-17 17:26:24 -0700901 Dialog d = null;
Adrian Roos20d7df32016-01-12 18:59:43 +0100902 synchronized (mService) {
903 HashMap<String, Object> data = (HashMap<String, Object>) msg.obj;
904 ProcessRecord proc = (ProcessRecord)data.get("app");
905 if (proc != null && proc.anrDialog != null) {
906 Slog.e(TAG, "App already has anr dialog: " + proc);
Adrian Roos90462222016-02-17 15:45:09 -0800907 MetricsLogger.action(mContext, MetricsProto.MetricsEvent.ACTION_APP_ANR,
908 AppNotRespondingDialog.ALREADY_SHOWING);
Adrian Roos20d7df32016-01-12 18:59:43 +0100909 return;
910 }
911
912 Intent intent = new Intent("android.intent.action.ANR");
913 if (!mService.mProcessesReady) {
914 intent.addFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY
915 | Intent.FLAG_RECEIVER_FOREGROUND);
916 }
917 mService.broadcastIntentLocked(null, null, intent,
918 null, null, 0, null, null, null, AppOpsManager.OP_NONE,
919 null, false, false, MY_PID, Process.SYSTEM_UID, 0 /* TODO: Verify */);
920
921 if (mService.canShowErrorDialogs()) {
Phil Weaver445fd2a2016-03-17 17:26:24 -0700922 d = new AppNotRespondingDialog(mService,
Adrian Roos20d7df32016-01-12 18:59:43 +0100923 mContext, proc, (ActivityRecord)data.get("activity"),
924 msg.arg1 != 0);
Adrian Roos20d7df32016-01-12 18:59:43 +0100925 proc.anrDialog = d;
926 } else {
Adrian Roos90462222016-02-17 15:45:09 -0800927 MetricsLogger.action(mContext, MetricsProto.MetricsEvent.ACTION_APP_ANR,
928 AppNotRespondingDialog.CANT_SHOW);
Adrian Roos20d7df32016-01-12 18:59:43 +0100929 // Just kill the app if there is no dialog to be shown.
930 mService.killAppAtUsersRequest(proc, null);
931 }
932 }
Phil Weaver445fd2a2016-03-17 17:26:24 -0700933 // If we've created a crash dialog, show it without the lock held
934 if (d != null) {
935 d.show();
936 }
Adrian Roos20d7df32016-01-12 18:59:43 +0100937 }
938
939 /**
940 * Information about a process that is currently marked as bad.
941 */
942 static final class BadProcessInfo {
943 BadProcessInfo(long time, String shortMsg, String longMsg, String stack) {
944 this.time = time;
945 this.shortMsg = shortMsg;
946 this.longMsg = longMsg;
947 this.stack = stack;
948 }
949
950 final long time;
951 final String shortMsg;
952 final String longMsg;
953 final String stack;
954 }
955
956}