blob: 4198af96d5cd7bb4b2eda1eabca6de52f5e85bfa [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",
Dianne Hackbornf72467a2012-06-08 17:23:59 -070068 "/system/bin/mediaserver",
69 "/system/bin/sdcard",
Eric Laurent05d4e352016-03-14 18:49:08 -070070 "/system/bin/surfaceflinger",
71 "media.log"
Dianne Hackbornf72467a2012-06-08 17:23:59 -070072 };
73
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080074 static Watchdog sWatchdog;
75
76 /* This handler will be used to post message back onto the main thread */
Wale Ogunwaled7fdd022015-04-13 16:22:38 -070077 final ArrayList<HandlerChecker> mHandlerCheckers = new ArrayList<>();
Dianne Hackborn8d044e82013-04-30 17:24:15 -070078 final HandlerChecker mMonitorChecker;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080079 ContentResolver mResolver;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080080 ActivityManagerService mActivity;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080081
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080082 int mPhonePid;
Dianne Hackborn5b88a2f2013-05-03 16:25:11 -070083 IActivityController mController;
Dianne Hackborn8bd64df2013-05-06 16:07:26 -070084 boolean mAllowRestart = true;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080085
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080086 /**
Dianne Hackborn8d044e82013-04-30 17:24:15 -070087 * Used for checking status of handle threads and scheduling monitor callbacks.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080088 */
Dianne Hackborn8d044e82013-04-30 17:24:15 -070089 public final class HandlerChecker implements Runnable {
90 private final Handler mHandler;
91 private final String mName;
Christopher Tatee6f81cf2013-10-23 17:28:27 -070092 private final long mWaitMax;
Dianne Hackborn8d044e82013-04-30 17:24:15 -070093 private final ArrayList<Monitor> mMonitors = new ArrayList<Monitor>();
Dianne Hackborn8d044e82013-04-30 17:24:15 -070094 private boolean mCompleted;
95 private Monitor mCurrentMonitor;
Christopher Tatee6f81cf2013-10-23 17:28:27 -070096 private long mStartTime;
Dianne Hackborn8d044e82013-04-30 17:24:15 -070097
Christopher Tatee6f81cf2013-10-23 17:28:27 -070098 HandlerChecker(Handler handler, String name, long waitMaxMillis) {
Dianne Hackborn8d044e82013-04-30 17:24:15 -070099 mHandler = handler;
100 mName = name;
Christopher Tatee6f81cf2013-10-23 17:28:27 -0700101 mWaitMax = waitMaxMillis;
102 mCompleted = true;
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700103 }
104
105 public void addMonitor(Monitor monitor) {
106 mMonitors.add(monitor);
107 }
108
109 public void scheduleCheckLocked() {
Jeff Brown6c7b41a2015-02-26 14:43:53 -0800110 if (mMonitors.size() == 0 && mHandler.getLooper().getQueue().isPolling()) {
111 // If the target looper has recently been polling, then
Dianne Hackbornefa92b22013-05-03 14:11:43 -0700112 // there is no reason to enqueue our checker on it since that
113 // is as good as it not being deadlocked. This avoid having
114 // to do a context switch to check the thread. Note that we
115 // only do this if mCheckReboot is false and we have no
116 // monitors, since those would need to be executed at this point.
117 mCompleted = true;
118 return;
119 }
Christopher Tatee6f81cf2013-10-23 17:28:27 -0700120
121 if (!mCompleted) {
122 // we already have a check in flight, so no need
123 return;
124 }
125
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700126 mCompleted = false;
127 mCurrentMonitor = null;
Christopher Tatee6f81cf2013-10-23 17:28:27 -0700128 mStartTime = SystemClock.uptimeMillis();
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700129 mHandler.postAtFrontOfQueue(this);
130 }
131
Christopher Tatee6f81cf2013-10-23 17:28:27 -0700132 public boolean isOverdueLocked() {
133 return (!mCompleted) && (SystemClock.uptimeMillis() > mStartTime + mWaitMax);
134 }
135
136 public int getCompletionStateLocked() {
137 if (mCompleted) {
138 return COMPLETED;
139 } else {
140 long latency = SystemClock.uptimeMillis() - mStartTime;
141 if (latency < mWaitMax/2) {
142 return WAITING;
143 } else if (latency < mWaitMax) {
144 return WAITED_HALF;
145 }
146 }
147 return OVERDUE;
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700148 }
149
Dianne Hackbornfa012b32013-05-10 15:23:28 -0700150 public Thread getThread() {
151 return mHandler.getLooper().getThread();
152 }
153
154 public String getName() {
155 return mName;
156 }
157
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700158 public String describeBlockedStateLocked() {
Jeff Brown7dd2d192013-09-06 15:05:23 -0700159 if (mCurrentMonitor == null) {
160 return "Blocked in handler on " + mName + " (" + getThread().getName() + ")";
161 } else {
162 return "Blocked in monitor " + mCurrentMonitor.getClass().getName()
163 + " on " + mName + " (" + getThread().getName() + ")";
164 }
John Michelau11641522013-03-18 18:28:23 -0500165 }
166
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800167 @Override
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700168 public void run() {
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700169 final int size = mMonitors.size();
170 for (int i = 0 ; i < size ; i++) {
171 synchronized (Watchdog.this) {
172 mCurrentMonitor = mMonitors.get(i);
173 }
174 mCurrentMonitor.monitor();
175 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800176
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700177 synchronized (Watchdog.this) {
178 mCompleted = true;
179 mCurrentMonitor = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800180 }
181 }
182 }
183
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800184 final class RebootRequestReceiver extends BroadcastReceiver {
185 @Override
186 public void onReceive(Context c, Intent intent) {
Dianne Hackbornf6438b12013-05-09 18:53:48 -0700187 if (intent.getIntExtra("nowait", 0) != 0) {
188 rebootSystem("Received ACTION_REBOOT broadcast");
189 return;
190 }
191 Slog.w(TAG, "Unsupported ACTION_REBOOT broadcast: " + intent);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800192 }
193 }
194
Wale Ogunwale517daec2015-04-15 10:27:24 -0700195 /** Monitor for checking the availability of binder threads. The monitor will block until
196 * there is a binder thread available to process in coming IPCs to make sure other processes
197 * can still communicate with the service.
198 */
199 private static final class BinderThreadMonitor implements Watchdog.Monitor {
200 @Override
201 public void monitor() {
202 Binder.blockUntilThreadAvailable();
203 }
204 }
205
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800206 public interface Monitor {
207 void monitor();
208 }
209
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800210 public static Watchdog getInstance() {
211 if (sWatchdog == null) {
212 sWatchdog = new Watchdog();
213 }
214
215 return sWatchdog;
216 }
217
218 private Watchdog() {
219 super("watchdog");
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700220 // Initialize handler checkers for each common thread we want to check. Note
221 // that we are not currently checking the background thread, since it can
222 // potentially hold longer running operations with no guarantees about the timeliness
223 // of operations there.
224
225 // The shared foreground thread is the main checker. It is where we
226 // will also dispatch monitor checks and do other work.
Christopher Tatee6f81cf2013-10-23 17:28:27 -0700227 mMonitorChecker = new HandlerChecker(FgThread.getHandler(),
228 "foreground thread", DEFAULT_TIMEOUT);
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700229 mHandlerCheckers.add(mMonitorChecker);
230 // Add checker for main thread. We only do a quick check since there
231 // can be UI running on the thread.
232 mHandlerCheckers.add(new HandlerChecker(new Handler(Looper.getMainLooper()),
Christopher Tatee6f81cf2013-10-23 17:28:27 -0700233 "main thread", DEFAULT_TIMEOUT));
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700234 // Add checker for shared UI thread.
Christopher Tatee6f81cf2013-10-23 17:28:27 -0700235 mHandlerCheckers.add(new HandlerChecker(UiThread.getHandler(),
236 "ui thread", DEFAULT_TIMEOUT));
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700237 // And also check IO thread.
Christopher Tatee6f81cf2013-10-23 17:28:27 -0700238 mHandlerCheckers.add(new HandlerChecker(IoThread.getHandler(),
239 "i/o thread", DEFAULT_TIMEOUT));
Jeff Brown4ccb8232014-01-16 22:16:42 -0800240 // And the display thread.
241 mHandlerCheckers.add(new HandlerChecker(DisplayThread.getHandler(),
242 "display thread", DEFAULT_TIMEOUT));
Wale Ogunwale517daec2015-04-15 10:27:24 -0700243
244 // Initialize monitor for Binder threads.
245 addMonitor(new BinderThreadMonitor());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800246 }
247
Adam Lesinski182f73f2013-12-05 16:48:06 -0800248 public void init(Context context, ActivityManagerService activity) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800249 mResolver = context.getContentResolver();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800250 mActivity = activity;
251
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800252 context.registerReceiver(new RebootRequestReceiver(),
253 new IntentFilter(Intent.ACTION_REBOOT),
254 android.Manifest.permission.REBOOT, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800255 }
256
Christopher Tatec27181c2010-06-30 14:41:09 -0700257 public void processStarted(String name, int pid) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800258 synchronized (this) {
259 if ("com.android.phone".equals(name)) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800260 mPhonePid = pid;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800261 }
262 }
263 }
264
Dianne Hackborn5b88a2f2013-05-03 16:25:11 -0700265 public void setActivityController(IActivityController controller) {
266 synchronized (this) {
267 mController = controller;
268 }
269 }
270
Dianne Hackborn8bd64df2013-05-06 16:07:26 -0700271 public void setAllowRestart(boolean allowRestart) {
272 synchronized (this) {
273 mAllowRestart = allowRestart;
274 }
275 }
276
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800277 public void addMonitor(Monitor monitor) {
278 synchronized (this) {
279 if (isAlive()) {
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700280 throw new RuntimeException("Monitors can't be added once the Watchdog is running");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800281 }
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700282 mMonitorChecker.addMonitor(monitor);
283 }
284 }
285
Jeff Brown6f357d32014-01-15 20:40:55 -0800286 public void addThread(Handler thread) {
287 addThread(thread, DEFAULT_TIMEOUT);
Christopher Tatee6f81cf2013-10-23 17:28:27 -0700288 }
289
Jeff Brown6f357d32014-01-15 20:40:55 -0800290 public void addThread(Handler thread, long timeoutMillis) {
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700291 synchronized (this) {
292 if (isAlive()) {
293 throw new RuntimeException("Threads can't be added once the Watchdog is running");
294 }
Jeff Brown6f357d32014-01-15 20:40:55 -0800295 final String name = thread.getLooper().getThread().getName();
Christopher Tatee6f81cf2013-10-23 17:28:27 -0700296 mHandlerCheckers.add(new HandlerChecker(thread, name, timeoutMillis));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800297 }
298 }
299
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800300 /**
301 * Perform a full reboot of the system.
302 */
303 void rebootSystem(String reason) {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800304 Slog.i(TAG, "Rebooting system because: " + reason);
Jeff Brown6f357d32014-01-15 20:40:55 -0800305 IPowerManager pms = (IPowerManager)ServiceManager.getService(Context.POWER_SERVICE);
306 try {
307 pms.reboot(false, reason, false);
308 } catch (RemoteException ex) {
309 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800310 }
311
Christopher Tatee6f81cf2013-10-23 17:28:27 -0700312 private int evaluateCheckerCompletionLocked() {
313 int state = COMPLETED;
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700314 for (int i=0; i<mHandlerCheckers.size(); i++) {
315 HandlerChecker hc = mHandlerCheckers.get(i);
Christopher Tatee6f81cf2013-10-23 17:28:27 -0700316 state = Math.max(state, hc.getCompletionStateLocked());
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700317 }
Christopher Tatee6f81cf2013-10-23 17:28:27 -0700318 return state;
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700319 }
320
Dianne Hackbornfa012b32013-05-10 15:23:28 -0700321 private ArrayList<HandlerChecker> getBlockedCheckersLocked() {
322 ArrayList<HandlerChecker> checkers = new ArrayList<HandlerChecker>();
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700323 for (int i=0; i<mHandlerCheckers.size(); i++) {
324 HandlerChecker hc = mHandlerCheckers.get(i);
Christopher Tatee6f81cf2013-10-23 17:28:27 -0700325 if (hc.isOverdueLocked()) {
Dianne Hackbornfa012b32013-05-10 15:23:28 -0700326 checkers.add(hc);
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700327 }
328 }
Dianne Hackbornfa012b32013-05-10 15:23:28 -0700329 return checkers;
330 }
331
332 private String describeCheckersLocked(ArrayList<HandlerChecker> checkers) {
333 StringBuilder builder = new StringBuilder(128);
334 for (int i=0; i<checkers.size(); i++) {
335 if (builder.length() > 0) {
336 builder.append(", ");
337 }
338 builder.append(checkers.get(i).describeBlockedStateLocked());
339 }
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700340 return builder.toString();
341 }
342
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800343 @Override
344 public void run() {
Christopher Tate6ee412d2010-05-28 12:01:56 -0700345 boolean waitedHalf = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800346 while (true) {
Dianne Hackbornfa012b32013-05-10 15:23:28 -0700347 final ArrayList<HandlerChecker> blockedCheckers;
Jeff Brown7dd2d192013-09-06 15:05:23 -0700348 final String subject;
Dianne Hackborn8bd64df2013-05-06 16:07:26 -0700349 final boolean allowRestart;
Dianne Hackborn89ad4562014-08-24 16:45:38 -0700350 int debuggerWasConnected = 0;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800351 synchronized (this) {
Christopher Tatee6f81cf2013-10-23 17:28:27 -0700352 long timeout = CHECK_INTERVAL;
353 // Make sure we (re)spin the checkers that have become idle within
354 // this wait-and-check interval
355 for (int i=0; i<mHandlerCheckers.size(); i++) {
356 HandlerChecker hc = mHandlerCheckers.get(i);
357 hc.scheduleCheckLocked();
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700358 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800359
Dianne Hackborn89ad4562014-08-24 16:45:38 -0700360 if (debuggerWasConnected > 0) {
361 debuggerWasConnected--;
362 }
363
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800364 // NOTE: We use uptimeMillis() here because we do not want to increment the time we
365 // wait while asleep. If the device is asleep then the thing that we are waiting
Christopher Tate6ee412d2010-05-28 12:01:56 -0700366 // 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 -0800367 // positive on when to kill things.
368 long start = SystemClock.uptimeMillis();
Michael Wright8fa56f62013-04-01 16:36:05 -0700369 while (timeout > 0) {
Dianne Hackborn89ad4562014-08-24 16:45:38 -0700370 if (Debug.isDebuggerConnected()) {
371 debuggerWasConnected = 2;
372 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800373 try {
Michael Wright8fa56f62013-04-01 16:36:05 -0700374 wait(timeout);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800375 } catch (InterruptedException e) {
Dan Egnor9bdc94b2010-03-04 14:20:31 -0800376 Log.wtf(TAG, e);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800377 }
Dianne Hackborn89ad4562014-08-24 16:45:38 -0700378 if (Debug.isDebuggerConnected()) {
379 debuggerWasConnected = 2;
380 }
Christopher Tatee6f81cf2013-10-23 17:28:27 -0700381 timeout = CHECK_INTERVAL - (SystemClock.uptimeMillis() - start);
Dan Egnor9bdc94b2010-03-04 14:20:31 -0800382 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800383
Christopher Tatee6f81cf2013-10-23 17:28:27 -0700384 final int waitState = evaluateCheckerCompletionLocked();
385 if (waitState == COMPLETED) {
386 // The monitors have returned; reset
Christopher Tate6ee412d2010-05-28 12:01:56 -0700387 waitedHalf = false;
388 continue;
Christopher Tatee6f81cf2013-10-23 17:28:27 -0700389 } else if (waitState == WAITING) {
390 // still waiting but within their configured intervals; back off and recheck
391 continue;
392 } else if (waitState == WAITED_HALF) {
393 if (!waitedHalf) {
394 // We've waited half the deadlock-detection interval. Pull a stack
395 // trace and wait another half.
396 ArrayList<Integer> pids = new ArrayList<Integer>();
397 pids.add(Process.myPid());
398 ActivityManagerService.dumpStackTraces(true, pids, null, null,
399 NATIVE_STACKS_OF_INTEREST);
400 waitedHalf = true;
401 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800402 continue;
403 }
Michael Wright8fa56f62013-04-01 16:36:05 -0700404
Christopher Tatee6f81cf2013-10-23 17:28:27 -0700405 // something is overdue!
Dianne Hackbornfa012b32013-05-10 15:23:28 -0700406 blockedCheckers = getBlockedCheckersLocked();
Jeff Brown7dd2d192013-09-06 15:05:23 -0700407 subject = describeCheckersLocked(blockedCheckers);
Dianne Hackborn8bd64df2013-05-06 16:07:26 -0700408 allowRestart = mAllowRestart;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800409 }
410
411 // If we got here, that means that the system is most likely hung.
Jean-Baptiste Queru784827b2012-09-04 13:35:12 -0700412 // First collect stack traces from all threads of the system process.
413 // Then kill this process so that the system will restart.
Jeff Brown7dd2d192013-09-06 15:05:23 -0700414 EventLog.writeEvent(EventLogTags.WATCHDOG, subject);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800415
Dianne Hackborn6b1afeb2010-08-31 15:40:21 -0700416 ArrayList<Integer> pids = new ArrayList<Integer>();
Dan Egnor9bdc94b2010-03-04 14:20:31 -0800417 pids.add(Process.myPid());
Dan Egnor4bded072010-03-11 22:00:47 -0800418 if (mPhonePid > 0) pids.add(mPhonePid);
Christopher Tate6ee412d2010-05-28 12:01:56 -0700419 // Pass !waitedHalf so that just in case we somehow wind up here without having
420 // dumped the halfway stacks, we properly re-initialize the trace file.
Brad Fitzpatrick9765c722011-01-14 11:28:22 -0800421 final File stack = ActivityManagerService.dumpStackTraces(
Dianne Hackbornf72467a2012-06-08 17:23:59 -0700422 !waitedHalf, pids, null, null, NATIVE_STACKS_OF_INTEREST);
Dan Egnor4bded072010-03-11 22:00:47 -0800423
424 // Give some extra time to make sure the stack traces get written.
425 // The system's been hanging for a minute, another second or two won't hurt much.
426 SystemClock.sleep(2000);
427
Christopher Tateecaa7b42010-06-04 14:55:02 -0700428 // Pull our own kernel thread stacks as well if we're configured for that
429 if (RECORD_KERNEL_THREADS) {
430 dumpKernelStackTraces();
431 }
432
Guang Zhu0620c452014-10-29 14:31:48 -0700433 // Trigger the kernel to dump all blocked threads, and backtraces on all CPUs to the kernel log
434 doSysRq('w');
435 doSysRq('l');
Colin Cross5df1d872012-11-29 11:42:11 -0800436
Brad Fitzpatrick9765c722011-01-14 11:28:22 -0800437 // Try to add the error to the dropbox, but assuming that the ActivityManager
438 // itself may be deadlocked. (which has happened, causing this statement to
439 // deadlock and the watchdog as a whole to be ineffective)
440 Thread dropboxThread = new Thread("watchdogWriteToDropbox") {
441 public void run() {
442 mActivity.addErrorToDropBox(
Jeff Sharkeya353d262011-10-28 11:12:06 -0700443 "watchdog", null, "system_server", null, null,
Jeff Brown7dd2d192013-09-06 15:05:23 -0700444 subject, null, stack, null);
Brad Fitzpatrick9765c722011-01-14 11:28:22 -0800445 }
446 };
447 dropboxThread.start();
448 try {
449 dropboxThread.join(2000); // wait up to 2 seconds for it to return.
450 } catch (InterruptedException ignored) {}
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800451
Dianne Hackborn5b88a2f2013-05-03 16:25:11 -0700452 IActivityController controller;
453 synchronized (this) {
454 controller = mController;
455 }
456 if (controller != null) {
457 Slog.i(TAG, "Reporting stuck state to activity controller");
458 try {
459 Binder.setDumpDisabled("Service dumps disabled due to hung system process.");
460 // 1 = keep waiting, -1 = kill system
Jeff Brown7dd2d192013-09-06 15:05:23 -0700461 int res = controller.systemNotResponding(subject);
Dianne Hackborn5b88a2f2013-05-03 16:25:11 -0700462 if (res >= 0) {
463 Slog.i(TAG, "Activity controller requested to coninue to wait");
464 waitedHalf = false;
465 continue;
466 }
467 } catch (RemoteException e) {
468 }
469 }
470
Jean-Baptiste Queru784827b2012-09-04 13:35:12 -0700471 // Only kill the process if the debugger is not attached.
Dianne Hackborn8bd64df2013-05-06 16:07:26 -0700472 if (Debug.isDebuggerConnected()) {
Dianne Hackborn89ad4562014-08-24 16:45:38 -0700473 debuggerWasConnected = 2;
474 }
475 if (debuggerWasConnected >= 2) {
Dianne Hackborn8bd64df2013-05-06 16:07:26 -0700476 Slog.w(TAG, "Debugger connected: Watchdog is *not* killing the system process");
Dianne Hackborn89ad4562014-08-24 16:45:38 -0700477 } else if (debuggerWasConnected > 0) {
478 Slog.w(TAG, "Debugger was connected: Watchdog is *not* killing the system process");
Dianne Hackborn8bd64df2013-05-06 16:07:26 -0700479 } else if (!allowRestart) {
480 Slog.w(TAG, "Restart not allowed: Watchdog is *not* killing the system process");
481 } else {
Jeff Brown7dd2d192013-09-06 15:05:23 -0700482 Slog.w(TAG, "*** WATCHDOG KILLING SYSTEM PROCESS: " + subject);
Dianne Hackbornfa012b32013-05-10 15:23:28 -0700483 for (int i=0; i<blockedCheckers.size(); i++) {
484 Slog.w(TAG, blockedCheckers.get(i).getName() + " stack trace:");
485 StackTraceElement[] stackTrace
486 = blockedCheckers.get(i).getThread().getStackTrace();
487 for (StackTraceElement element: stackTrace) {
488 Slog.w(TAG, " at " + element);
489 }
Michael Wright56a6c662013-04-30 20:13:07 -0700490 }
Dianne Hackbornfa012b32013-05-10 15:23:28 -0700491 Slog.w(TAG, "*** GOODBYE!");
Jean-Baptiste Queru784827b2012-09-04 13:35:12 -0700492 Process.killProcess(Process.myPid());
493 System.exit(10);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800494 }
Christopher Tate6ee412d2010-05-28 12:01:56 -0700495
496 waitedHalf = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800497 }
498 }
Christopher Tateecaa7b42010-06-04 14:55:02 -0700499
Guang Zhu0620c452014-10-29 14:31:48 -0700500 private void doSysRq(char c) {
501 try {
502 FileWriter sysrq_trigger = new FileWriter("/proc/sysrq-trigger");
503 sysrq_trigger.write(c);
504 sysrq_trigger.close();
505 } catch (IOException e) {
506 Slog.w(TAG, "Failed to write to /proc/sysrq-trigger", e);
507 }
508 }
509
Christopher Tateecaa7b42010-06-04 14:55:02 -0700510 private File dumpKernelStackTraces() {
511 String tracesPath = SystemProperties.get("dalvik.vm.stack-trace-file", null);
512 if (tracesPath == null || tracesPath.length() == 0) {
513 return null;
514 }
515
516 native_dumpKernelStacks(tracesPath);
517 return new File(tracesPath);
518 }
519
520 private native void native_dumpKernelStacks(String tracesPath);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800521}