blob: be53cfc5b0a1f1f1a79dff432ab828195fba5ee3 [file] [log] [blame]
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001/*
2 * Copyright (C) 2008 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;
18
Dianne Hackborn5b88a2f2013-05-03 16:25:11 -070019import android.app.IActivityController;
20import android.os.Binder;
21import android.os.RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080022import com.android.server.am.ActivityManagerService;
23
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080024import android.content.BroadcastReceiver;
25import android.content.ContentResolver;
26import android.content.Context;
27import android.content.Intent;
28import android.content.IntentFilter;
29import android.os.Debug;
30import android.os.Handler;
Jeff Brown6f357d32014-01-15 20:40:55 -080031import android.os.IPowerManager;
John Michelau11641522013-03-18 18:28:23 -050032import android.os.Looper;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080033import android.os.Process;
Suchi Amalapurapu6ffce2e2010-03-08 14:48:40 -080034import android.os.ServiceManager;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080035import android.os.SystemClock;
36import android.os.SystemProperties;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080037import android.util.EventLog;
Dan Egnor9bdc94b2010-03-04 14:20:31 -080038import android.util.Log;
Joe Onorato8a9b2202010-02-26 18:56:32 -080039import android.util.Slog;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080040
Dan Egnor9bdc94b2010-03-04 14:20:31 -080041import java.io.File;
Colin Cross5df1d872012-11-29 11:42:11 -080042import java.io.FileWriter;
43import java.io.IOException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080044import java.util.ArrayList;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080045
46/** This class calls its monitor every minute. Killing this process if they don't return **/
47public class Watchdog extends Thread {
48 static final String TAG = "Watchdog";
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080049
50 // Set this to true to use debug default values.
51 static final boolean DB = false;
52
Christopher Tateecaa7b42010-06-04 14:55:02 -070053 // Set this to true to have the watchdog record kernel thread stacks when it fires
54 static final boolean RECORD_KERNEL_THREADS = true;
55
Christopher Tatee6f81cf2013-10-23 17:28:27 -070056 static final long DEFAULT_TIMEOUT = DB ? 10*1000 : 60*1000;
57 static final long CHECK_INTERVAL = DEFAULT_TIMEOUT / 2;
58
59 // These are temporally ordered: larger values as lateness increases
60 static final int COMPLETED = 0;
61 static final int WAITING = 1;
62 static final int WAITED_HALF = 2;
63 static final int OVERDUE = 3;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080064
Igor Murashkin44d04aa2013-10-23 10:56:02 -070065 // Which native processes to dump into dropbox's stack traces
66 public static final String[] NATIVE_STACKS_OF_INTEREST = new String[] {
Andy Hung3a64ecb2016-03-09 13:55:58 -080067 "/system/bin/audioserver",
Andy Hung689574a2016-04-13 19:27:43 -070068 "/system/bin/cameraserver",
69 "/system/bin/drmserver",
70 "/system/bin/mediadrmserver",
Dianne Hackbornf72467a2012-06-08 17:23:59 -070071 "/system/bin/mediaserver",
72 "/system/bin/sdcard",
Eric Laurent05d4e352016-03-14 18:49:08 -070073 "/system/bin/surfaceflinger",
Andy Hung689574a2016-04-13 19:27:43 -070074 "media.codec", // system/bin/mediacodec
75 "media.extractor", // system/bin/mediaextractor
Dianne Hackbornf72467a2012-06-08 17:23:59 -070076 };
77
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080078 static Watchdog sWatchdog;
79
80 /* This handler will be used to post message back onto the main thread */
Wale Ogunwaled7fdd022015-04-13 16:22:38 -070081 final ArrayList<HandlerChecker> mHandlerCheckers = new ArrayList<>();
Dianne Hackborn8d044e82013-04-30 17:24:15 -070082 final HandlerChecker mMonitorChecker;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080083 ContentResolver mResolver;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080084 ActivityManagerService mActivity;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080085
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080086 int mPhonePid;
Dianne Hackborn5b88a2f2013-05-03 16:25:11 -070087 IActivityController mController;
Dianne Hackborn8bd64df2013-05-06 16:07:26 -070088 boolean mAllowRestart = true;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080089
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080090 /**
Dianne Hackborn8d044e82013-04-30 17:24:15 -070091 * Used for checking status of handle threads and scheduling monitor callbacks.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080092 */
Dianne Hackborn8d044e82013-04-30 17:24:15 -070093 public final class HandlerChecker implements Runnable {
94 private final Handler mHandler;
95 private final String mName;
Christopher Tatee6f81cf2013-10-23 17:28:27 -070096 private final long mWaitMax;
Dianne Hackborn8d044e82013-04-30 17:24:15 -070097 private final ArrayList<Monitor> mMonitors = new ArrayList<Monitor>();
Dianne Hackborn8d044e82013-04-30 17:24:15 -070098 private boolean mCompleted;
99 private Monitor mCurrentMonitor;
Christopher Tatee6f81cf2013-10-23 17:28:27 -0700100 private long mStartTime;
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700101
Christopher Tatee6f81cf2013-10-23 17:28:27 -0700102 HandlerChecker(Handler handler, String name, long waitMaxMillis) {
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700103 mHandler = handler;
104 mName = name;
Christopher Tatee6f81cf2013-10-23 17:28:27 -0700105 mWaitMax = waitMaxMillis;
106 mCompleted = true;
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700107 }
108
109 public void addMonitor(Monitor monitor) {
110 mMonitors.add(monitor);
111 }
112
113 public void scheduleCheckLocked() {
Jeff Brown6c7b41a2015-02-26 14:43:53 -0800114 if (mMonitors.size() == 0 && mHandler.getLooper().getQueue().isPolling()) {
115 // If the target looper has recently been polling, then
Dianne Hackbornefa92b22013-05-03 14:11:43 -0700116 // there is no reason to enqueue our checker on it since that
117 // is as good as it not being deadlocked. This avoid having
118 // to do a context switch to check the thread. Note that we
119 // only do this if mCheckReboot is false and we have no
120 // monitors, since those would need to be executed at this point.
121 mCompleted = true;
122 return;
123 }
Christopher Tatee6f81cf2013-10-23 17:28:27 -0700124
125 if (!mCompleted) {
126 // we already have a check in flight, so no need
127 return;
128 }
129
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700130 mCompleted = false;
131 mCurrentMonitor = null;
Christopher Tatee6f81cf2013-10-23 17:28:27 -0700132 mStartTime = SystemClock.uptimeMillis();
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700133 mHandler.postAtFrontOfQueue(this);
134 }
135
Christopher Tatee6f81cf2013-10-23 17:28:27 -0700136 public boolean isOverdueLocked() {
137 return (!mCompleted) && (SystemClock.uptimeMillis() > mStartTime + mWaitMax);
138 }
139
140 public int getCompletionStateLocked() {
141 if (mCompleted) {
142 return COMPLETED;
143 } else {
144 long latency = SystemClock.uptimeMillis() - mStartTime;
145 if (latency < mWaitMax/2) {
146 return WAITING;
147 } else if (latency < mWaitMax) {
148 return WAITED_HALF;
149 }
150 }
151 return OVERDUE;
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700152 }
153
Dianne Hackbornfa012b32013-05-10 15:23:28 -0700154 public Thread getThread() {
155 return mHandler.getLooper().getThread();
156 }
157
158 public String getName() {
159 return mName;
160 }
161
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700162 public String describeBlockedStateLocked() {
Jeff Brown7dd2d192013-09-06 15:05:23 -0700163 if (mCurrentMonitor == null) {
164 return "Blocked in handler on " + mName + " (" + getThread().getName() + ")";
165 } else {
166 return "Blocked in monitor " + mCurrentMonitor.getClass().getName()
167 + " on " + mName + " (" + getThread().getName() + ")";
168 }
John Michelau11641522013-03-18 18:28:23 -0500169 }
170
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800171 @Override
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700172 public void run() {
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700173 final int size = mMonitors.size();
174 for (int i = 0 ; i < size ; i++) {
175 synchronized (Watchdog.this) {
176 mCurrentMonitor = mMonitors.get(i);
177 }
178 mCurrentMonitor.monitor();
179 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800180
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700181 synchronized (Watchdog.this) {
182 mCompleted = true;
183 mCurrentMonitor = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800184 }
185 }
186 }
187
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800188 final class RebootRequestReceiver extends BroadcastReceiver {
189 @Override
190 public void onReceive(Context c, Intent intent) {
Dianne Hackbornf6438b12013-05-09 18:53:48 -0700191 if (intent.getIntExtra("nowait", 0) != 0) {
192 rebootSystem("Received ACTION_REBOOT broadcast");
193 return;
194 }
195 Slog.w(TAG, "Unsupported ACTION_REBOOT broadcast: " + intent);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800196 }
197 }
198
Wale Ogunwale517daec2015-04-15 10:27:24 -0700199 /** Monitor for checking the availability of binder threads. The monitor will block until
200 * there is a binder thread available to process in coming IPCs to make sure other processes
201 * can still communicate with the service.
202 */
203 private static final class BinderThreadMonitor implements Watchdog.Monitor {
204 @Override
205 public void monitor() {
206 Binder.blockUntilThreadAvailable();
207 }
208 }
209
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800210 public interface Monitor {
211 void monitor();
212 }
213
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800214 public static Watchdog getInstance() {
215 if (sWatchdog == null) {
216 sWatchdog = new Watchdog();
217 }
218
219 return sWatchdog;
220 }
221
222 private Watchdog() {
223 super("watchdog");
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700224 // Initialize handler checkers for each common thread we want to check. Note
225 // that we are not currently checking the background thread, since it can
226 // potentially hold longer running operations with no guarantees about the timeliness
227 // of operations there.
228
229 // The shared foreground thread is the main checker. It is where we
230 // will also dispatch monitor checks and do other work.
Christopher Tatee6f81cf2013-10-23 17:28:27 -0700231 mMonitorChecker = new HandlerChecker(FgThread.getHandler(),
232 "foreground thread", DEFAULT_TIMEOUT);
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700233 mHandlerCheckers.add(mMonitorChecker);
234 // Add checker for main thread. We only do a quick check since there
235 // can be UI running on the thread.
236 mHandlerCheckers.add(new HandlerChecker(new Handler(Looper.getMainLooper()),
Christopher Tatee6f81cf2013-10-23 17:28:27 -0700237 "main thread", DEFAULT_TIMEOUT));
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700238 // Add checker for shared UI thread.
Christopher Tatee6f81cf2013-10-23 17:28:27 -0700239 mHandlerCheckers.add(new HandlerChecker(UiThread.getHandler(),
240 "ui thread", DEFAULT_TIMEOUT));
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700241 // And also check IO thread.
Christopher Tatee6f81cf2013-10-23 17:28:27 -0700242 mHandlerCheckers.add(new HandlerChecker(IoThread.getHandler(),
243 "i/o thread", DEFAULT_TIMEOUT));
Jeff Brown4ccb8232014-01-16 22:16:42 -0800244 // And the display thread.
245 mHandlerCheckers.add(new HandlerChecker(DisplayThread.getHandler(),
246 "display thread", DEFAULT_TIMEOUT));
Wale Ogunwale517daec2015-04-15 10:27:24 -0700247
248 // Initialize monitor for Binder threads.
249 addMonitor(new BinderThreadMonitor());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800250 }
251
Adam Lesinski182f73f2013-12-05 16:48:06 -0800252 public void init(Context context, ActivityManagerService activity) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800253 mResolver = context.getContentResolver();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800254 mActivity = activity;
255
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800256 context.registerReceiver(new RebootRequestReceiver(),
257 new IntentFilter(Intent.ACTION_REBOOT),
258 android.Manifest.permission.REBOOT, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800259 }
260
Christopher Tatec27181c2010-06-30 14:41:09 -0700261 public void processStarted(String name, int pid) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800262 synchronized (this) {
263 if ("com.android.phone".equals(name)) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800264 mPhonePid = pid;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800265 }
266 }
267 }
268
Dianne Hackborn5b88a2f2013-05-03 16:25:11 -0700269 public void setActivityController(IActivityController controller) {
270 synchronized (this) {
271 mController = controller;
272 }
273 }
274
Dianne Hackborn8bd64df2013-05-06 16:07:26 -0700275 public void setAllowRestart(boolean allowRestart) {
276 synchronized (this) {
277 mAllowRestart = allowRestart;
278 }
279 }
280
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800281 public void addMonitor(Monitor monitor) {
282 synchronized (this) {
283 if (isAlive()) {
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700284 throw new RuntimeException("Monitors can't be added once the Watchdog is running");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800285 }
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700286 mMonitorChecker.addMonitor(monitor);
287 }
288 }
289
Jeff Brown6f357d32014-01-15 20:40:55 -0800290 public void addThread(Handler thread) {
291 addThread(thread, DEFAULT_TIMEOUT);
Christopher Tatee6f81cf2013-10-23 17:28:27 -0700292 }
293
Jeff Brown6f357d32014-01-15 20:40:55 -0800294 public void addThread(Handler thread, long timeoutMillis) {
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700295 synchronized (this) {
296 if (isAlive()) {
297 throw new RuntimeException("Threads can't be added once the Watchdog is running");
298 }
Jeff Brown6f357d32014-01-15 20:40:55 -0800299 final String name = thread.getLooper().getThread().getName();
Christopher Tatee6f81cf2013-10-23 17:28:27 -0700300 mHandlerCheckers.add(new HandlerChecker(thread, name, timeoutMillis));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800301 }
302 }
303
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800304 /**
305 * Perform a full reboot of the system.
306 */
307 void rebootSystem(String reason) {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800308 Slog.i(TAG, "Rebooting system because: " + reason);
Jeff Brown6f357d32014-01-15 20:40:55 -0800309 IPowerManager pms = (IPowerManager)ServiceManager.getService(Context.POWER_SERVICE);
310 try {
311 pms.reboot(false, reason, false);
312 } catch (RemoteException ex) {
313 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800314 }
315
Christopher Tatee6f81cf2013-10-23 17:28:27 -0700316 private int evaluateCheckerCompletionLocked() {
317 int state = COMPLETED;
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700318 for (int i=0; i<mHandlerCheckers.size(); i++) {
319 HandlerChecker hc = mHandlerCheckers.get(i);
Christopher Tatee6f81cf2013-10-23 17:28:27 -0700320 state = Math.max(state, hc.getCompletionStateLocked());
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700321 }
Christopher Tatee6f81cf2013-10-23 17:28:27 -0700322 return state;
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700323 }
324
Dianne Hackbornfa012b32013-05-10 15:23:28 -0700325 private ArrayList<HandlerChecker> getBlockedCheckersLocked() {
326 ArrayList<HandlerChecker> checkers = new ArrayList<HandlerChecker>();
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700327 for (int i=0; i<mHandlerCheckers.size(); i++) {
328 HandlerChecker hc = mHandlerCheckers.get(i);
Christopher Tatee6f81cf2013-10-23 17:28:27 -0700329 if (hc.isOverdueLocked()) {
Dianne Hackbornfa012b32013-05-10 15:23:28 -0700330 checkers.add(hc);
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700331 }
332 }
Dianne Hackbornfa012b32013-05-10 15:23:28 -0700333 return checkers;
334 }
335
336 private String describeCheckersLocked(ArrayList<HandlerChecker> checkers) {
337 StringBuilder builder = new StringBuilder(128);
338 for (int i=0; i<checkers.size(); i++) {
339 if (builder.length() > 0) {
340 builder.append(", ");
341 }
342 builder.append(checkers.get(i).describeBlockedStateLocked());
343 }
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700344 return builder.toString();
345 }
346
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800347 @Override
348 public void run() {
Christopher Tate6ee412d2010-05-28 12:01:56 -0700349 boolean waitedHalf = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800350 while (true) {
Dianne Hackbornfa012b32013-05-10 15:23:28 -0700351 final ArrayList<HandlerChecker> blockedCheckers;
Jeff Brown7dd2d192013-09-06 15:05:23 -0700352 final String subject;
Dianne Hackborn8bd64df2013-05-06 16:07:26 -0700353 final boolean allowRestart;
Dianne Hackborn89ad4562014-08-24 16:45:38 -0700354 int debuggerWasConnected = 0;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800355 synchronized (this) {
Christopher Tatee6f81cf2013-10-23 17:28:27 -0700356 long timeout = CHECK_INTERVAL;
357 // Make sure we (re)spin the checkers that have become idle within
358 // this wait-and-check interval
359 for (int i=0; i<mHandlerCheckers.size(); i++) {
360 HandlerChecker hc = mHandlerCheckers.get(i);
361 hc.scheduleCheckLocked();
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700362 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800363
Dianne Hackborn89ad4562014-08-24 16:45:38 -0700364 if (debuggerWasConnected > 0) {
365 debuggerWasConnected--;
366 }
367
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800368 // NOTE: We use uptimeMillis() here because we do not want to increment the time we
369 // wait while asleep. If the device is asleep then the thing that we are waiting
Christopher Tate6ee412d2010-05-28 12:01:56 -0700370 // to timeout on is asleep as well and won't have a chance to run, causing a false
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800371 // positive on when to kill things.
372 long start = SystemClock.uptimeMillis();
Michael Wright8fa56f62013-04-01 16:36:05 -0700373 while (timeout > 0) {
Dianne Hackborn89ad4562014-08-24 16:45:38 -0700374 if (Debug.isDebuggerConnected()) {
375 debuggerWasConnected = 2;
376 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800377 try {
Michael Wright8fa56f62013-04-01 16:36:05 -0700378 wait(timeout);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800379 } catch (InterruptedException e) {
Dan Egnor9bdc94b2010-03-04 14:20:31 -0800380 Log.wtf(TAG, e);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800381 }
Dianne Hackborn89ad4562014-08-24 16:45:38 -0700382 if (Debug.isDebuggerConnected()) {
383 debuggerWasConnected = 2;
384 }
Christopher Tatee6f81cf2013-10-23 17:28:27 -0700385 timeout = CHECK_INTERVAL - (SystemClock.uptimeMillis() - start);
Dan Egnor9bdc94b2010-03-04 14:20:31 -0800386 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800387
Christopher Tatee6f81cf2013-10-23 17:28:27 -0700388 final int waitState = evaluateCheckerCompletionLocked();
389 if (waitState == COMPLETED) {
390 // The monitors have returned; reset
Christopher Tate6ee412d2010-05-28 12:01:56 -0700391 waitedHalf = false;
392 continue;
Christopher Tatee6f81cf2013-10-23 17:28:27 -0700393 } else if (waitState == WAITING) {
394 // still waiting but within their configured intervals; back off and recheck
395 continue;
396 } else if (waitState == WAITED_HALF) {
397 if (!waitedHalf) {
398 // We've waited half the deadlock-detection interval. Pull a stack
399 // trace and wait another half.
400 ArrayList<Integer> pids = new ArrayList<Integer>();
401 pids.add(Process.myPid());
402 ActivityManagerService.dumpStackTraces(true, pids, null, null,
403 NATIVE_STACKS_OF_INTEREST);
404 waitedHalf = true;
405 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800406 continue;
407 }
Michael Wright8fa56f62013-04-01 16:36:05 -0700408
Christopher Tatee6f81cf2013-10-23 17:28:27 -0700409 // something is overdue!
Dianne Hackbornfa012b32013-05-10 15:23:28 -0700410 blockedCheckers = getBlockedCheckersLocked();
Jeff Brown7dd2d192013-09-06 15:05:23 -0700411 subject = describeCheckersLocked(blockedCheckers);
Dianne Hackborn8bd64df2013-05-06 16:07:26 -0700412 allowRestart = mAllowRestart;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800413 }
414
415 // If we got here, that means that the system is most likely hung.
Jean-Baptiste Queru784827b2012-09-04 13:35:12 -0700416 // First collect stack traces from all threads of the system process.
417 // Then kill this process so that the system will restart.
Jeff Brown7dd2d192013-09-06 15:05:23 -0700418 EventLog.writeEvent(EventLogTags.WATCHDOG, subject);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800419
Dianne Hackborn6b1afeb2010-08-31 15:40:21 -0700420 ArrayList<Integer> pids = new ArrayList<Integer>();
Dan Egnor9bdc94b2010-03-04 14:20:31 -0800421 pids.add(Process.myPid());
Dan Egnor4bded072010-03-11 22:00:47 -0800422 if (mPhonePid > 0) pids.add(mPhonePid);
Christopher Tate6ee412d2010-05-28 12:01:56 -0700423 // Pass !waitedHalf so that just in case we somehow wind up here without having
424 // dumped the halfway stacks, we properly re-initialize the trace file.
Brad Fitzpatrick9765c722011-01-14 11:28:22 -0800425 final File stack = ActivityManagerService.dumpStackTraces(
Dianne Hackbornf72467a2012-06-08 17:23:59 -0700426 !waitedHalf, pids, null, null, NATIVE_STACKS_OF_INTEREST);
Dan Egnor4bded072010-03-11 22:00:47 -0800427
428 // Give some extra time to make sure the stack traces get written.
429 // The system's been hanging for a minute, another second or two won't hurt much.
430 SystemClock.sleep(2000);
431
Christopher Tateecaa7b42010-06-04 14:55:02 -0700432 // Pull our own kernel thread stacks as well if we're configured for that
433 if (RECORD_KERNEL_THREADS) {
434 dumpKernelStackTraces();
435 }
436
Guang Zhu0620c452014-10-29 14:31:48 -0700437 // Trigger the kernel to dump all blocked threads, and backtraces on all CPUs to the kernel log
438 doSysRq('w');
439 doSysRq('l');
Colin Cross5df1d872012-11-29 11:42:11 -0800440
Brad Fitzpatrick9765c722011-01-14 11:28:22 -0800441 // Try to add the error to the dropbox, but assuming that the ActivityManager
442 // itself may be deadlocked. (which has happened, causing this statement to
443 // deadlock and the watchdog as a whole to be ineffective)
444 Thread dropboxThread = new Thread("watchdogWriteToDropbox") {
445 public void run() {
446 mActivity.addErrorToDropBox(
Jeff Sharkeya353d262011-10-28 11:12:06 -0700447 "watchdog", null, "system_server", null, null,
Jeff Brown7dd2d192013-09-06 15:05:23 -0700448 subject, null, stack, null);
Brad Fitzpatrick9765c722011-01-14 11:28:22 -0800449 }
450 };
451 dropboxThread.start();
452 try {
453 dropboxThread.join(2000); // wait up to 2 seconds for it to return.
454 } catch (InterruptedException ignored) {}
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800455
Dianne Hackborn5b88a2f2013-05-03 16:25:11 -0700456 IActivityController controller;
457 synchronized (this) {
458 controller = mController;
459 }
460 if (controller != null) {
461 Slog.i(TAG, "Reporting stuck state to activity controller");
462 try {
463 Binder.setDumpDisabled("Service dumps disabled due to hung system process.");
464 // 1 = keep waiting, -1 = kill system
Jeff Brown7dd2d192013-09-06 15:05:23 -0700465 int res = controller.systemNotResponding(subject);
Dianne Hackborn5b88a2f2013-05-03 16:25:11 -0700466 if (res >= 0) {
467 Slog.i(TAG, "Activity controller requested to coninue to wait");
468 waitedHalf = false;
469 continue;
470 }
471 } catch (RemoteException e) {
472 }
473 }
474
Jean-Baptiste Queru784827b2012-09-04 13:35:12 -0700475 // Only kill the process if the debugger is not attached.
Dianne Hackborn8bd64df2013-05-06 16:07:26 -0700476 if (Debug.isDebuggerConnected()) {
Dianne Hackborn89ad4562014-08-24 16:45:38 -0700477 debuggerWasConnected = 2;
478 }
479 if (debuggerWasConnected >= 2) {
Dianne Hackborn8bd64df2013-05-06 16:07:26 -0700480 Slog.w(TAG, "Debugger connected: Watchdog is *not* killing the system process");
Dianne Hackborn89ad4562014-08-24 16:45:38 -0700481 } else if (debuggerWasConnected > 0) {
482 Slog.w(TAG, "Debugger was connected: Watchdog is *not* killing the system process");
Dianne Hackborn8bd64df2013-05-06 16:07:26 -0700483 } else if (!allowRestart) {
484 Slog.w(TAG, "Restart not allowed: Watchdog is *not* killing the system process");
485 } else {
Jeff Brown7dd2d192013-09-06 15:05:23 -0700486 Slog.w(TAG, "*** WATCHDOG KILLING SYSTEM PROCESS: " + subject);
Dianne Hackbornfa012b32013-05-10 15:23:28 -0700487 for (int i=0; i<blockedCheckers.size(); i++) {
488 Slog.w(TAG, blockedCheckers.get(i).getName() + " stack trace:");
489 StackTraceElement[] stackTrace
490 = blockedCheckers.get(i).getThread().getStackTrace();
491 for (StackTraceElement element: stackTrace) {
492 Slog.w(TAG, " at " + element);
493 }
Michael Wright56a6c662013-04-30 20:13:07 -0700494 }
Dianne Hackbornfa012b32013-05-10 15:23:28 -0700495 Slog.w(TAG, "*** GOODBYE!");
Jean-Baptiste Queru784827b2012-09-04 13:35:12 -0700496 Process.killProcess(Process.myPid());
497 System.exit(10);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800498 }
Christopher Tate6ee412d2010-05-28 12:01:56 -0700499
500 waitedHalf = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800501 }
502 }
Christopher Tateecaa7b42010-06-04 14:55:02 -0700503
Guang Zhu0620c452014-10-29 14:31:48 -0700504 private void doSysRq(char c) {
505 try {
506 FileWriter sysrq_trigger = new FileWriter("/proc/sysrq-trigger");
507 sysrq_trigger.write(c);
508 sysrq_trigger.close();
509 } catch (IOException e) {
510 Slog.w(TAG, "Failed to write to /proc/sysrq-trigger", e);
511 }
512 }
513
Christopher Tateecaa7b42010-06-04 14:55:02 -0700514 private File dumpKernelStackTraces() {
515 String tracesPath = SystemProperties.get("dalvik.vm.stack-trace-file", null);
516 if (tracesPath == null || tracesPath.length() == 0) {
517 return null;
518 }
519
520 native_dumpKernelStacks(tracesPath);
521 return new File(tracesPath);
522 }
523
524 private native void native_dumpKernelStacks(String tracesPath);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800525}