blob: 7ce0f43522033dfde820cf4ab3a33b6f59b9cf3d [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;
Narayan Kamatha0a28082017-07-31 15:58:59 +010021import android.os.Build;
Dianne Hackborn5b88a2f2013-05-03 16:25:11 -070022import android.os.RemoteException;
Narayan Kamatha0a28082017-07-31 15:58:59 +010023import android.system.ErrnoException;
24import android.system.OsConstants;
25import android.system.StructRlimit;
Andreas Gampe032a9292017-07-21 11:41:00 -070026import com.android.internal.os.ZygoteConnectionConstants;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080027import com.android.server.am.ActivityManagerService;
28
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080029import android.content.BroadcastReceiver;
30import android.content.ContentResolver;
31import android.content.Context;
32import android.content.Intent;
33import android.content.IntentFilter;
Steven Moreland6b47c542017-03-21 12:52:16 -070034import android.hidl.manager.V1_0.IServiceManager;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080035import android.os.Debug;
36import android.os.Handler;
Jeff Brown6f357d32014-01-15 20:40:55 -080037import android.os.IPowerManager;
John Michelau11641522013-03-18 18:28:23 -050038import android.os.Looper;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080039import android.os.Process;
Suchi Amalapurapu6ffce2e2010-03-08 14:48:40 -080040import android.os.ServiceManager;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080041import android.os.SystemClock;
42import android.os.SystemProperties;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080043import android.util.EventLog;
Dan Egnor9bdc94b2010-03-04 14:20:31 -080044import android.util.Log;
Joe Onorato8a9b2202010-02-26 18:56:32 -080045import android.util.Slog;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080046
Dan Egnor9bdc94b2010-03-04 14:20:31 -080047import java.io.File;
Colin Cross5df1d872012-11-29 11:42:11 -080048import java.io.FileWriter;
49import java.io.IOException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080050import java.util.ArrayList;
Steven Moreland6b47c542017-03-21 12:52:16 -070051import java.util.Arrays;
Narayan Kamatha0a28082017-07-31 15:58:59 +010052import java.util.Collections;
Steven Moreland6b47c542017-03-21 12:52:16 -070053import java.util.HashSet;
54import java.util.List;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080055
56/** This class calls its monitor every minute. Killing this process if they don't return **/
57public class Watchdog extends Thread {
58 static final String TAG = "Watchdog";
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080059
60 // Set this to true to use debug default values.
61 static final boolean DB = false;
62
Christopher Tateecaa7b42010-06-04 14:55:02 -070063 // Set this to true to have the watchdog record kernel thread stacks when it fires
64 static final boolean RECORD_KERNEL_THREADS = true;
65
Andreas Gampe032a9292017-07-21 11:41:00 -070066 // Note 1: Do not lower this value below thirty seconds without tightening the invoke-with
67 // timeout in com.android.internal.os.ZygoteConnection, or wrapped applications
68 // can trigger the watchdog.
69 // Note 2: The debug value is already below the wait time in ZygoteConnection. Wrapped
70 // applications may not work with a debug build. CTS will fail.
Christopher Tatee6f81cf2013-10-23 17:28:27 -070071 static final long DEFAULT_TIMEOUT = DB ? 10*1000 : 60*1000;
72 static final long CHECK_INTERVAL = DEFAULT_TIMEOUT / 2;
73
74 // These are temporally ordered: larger values as lateness increases
75 static final int COMPLETED = 0;
76 static final int WAITING = 1;
77 static final int WAITED_HALF = 2;
78 static final int OVERDUE = 3;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080079
Igor Murashkin44d04aa2013-10-23 10:56:02 -070080 // Which native processes to dump into dropbox's stack traces
81 public static final String[] NATIVE_STACKS_OF_INTEREST = new String[] {
Andy Hung3a64ecb2016-03-09 13:55:58 -080082 "/system/bin/audioserver",
Andy Hung689574a2016-04-13 19:27:43 -070083 "/system/bin/cameraserver",
84 "/system/bin/drmserver",
85 "/system/bin/mediadrmserver",
Dianne Hackbornf72467a2012-06-08 17:23:59 -070086 "/system/bin/mediaserver",
87 "/system/bin/sdcard",
Eric Laurent05d4e352016-03-14 18:49:08 -070088 "/system/bin/surfaceflinger",
Andy Hung689574a2016-04-13 19:27:43 -070089 "media.extractor", // system/bin/mediaextractor
Andy Hungb1c4c932018-01-04 12:05:43 -080090 "media.metrics", // system/bin/mediametrics
Chong Zhange55e6e02017-06-02 10:52:04 -070091 "media.codec", // vendor/bin/hw/android.hardware.media.omx@1.0-service
Andreas Gampecf9e79b2016-05-11 18:41:25 -070092 "com.android.bluetooth", // Bluetooth service
Dianne Hackbornf72467a2012-06-08 17:23:59 -070093 };
94
Steven Moreland6b47c542017-03-21 12:52:16 -070095 public static final List<String> HAL_INTERFACES_OF_INTEREST = Arrays.asList(
96 "android.hardware.audio@2.0::IDevicesFactory",
97 "android.hardware.bluetooth@1.0::IBluetoothHci",
98 "android.hardware.camera.provider@2.4::ICameraProvider",
Chia-I Wu74debcd2017-04-21 11:14:22 -070099 "android.hardware.graphics.composer@2.1::IComposer",
Peng Xu102122fb2017-07-11 21:12:11 -0700100 "android.hardware.media.omx@1.0::IOmx",
101 "android.hardware.sensors@1.0::ISensors",
102 "android.hardware.vr@1.0::IVr"
Steven Moreland6b47c542017-03-21 12:52:16 -0700103 );
104
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800105 static Watchdog sWatchdog;
106
107 /* This handler will be used to post message back onto the main thread */
Wale Ogunwaled7fdd022015-04-13 16:22:38 -0700108 final ArrayList<HandlerChecker> mHandlerCheckers = new ArrayList<>();
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700109 final HandlerChecker mMonitorChecker;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800110 ContentResolver mResolver;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800111 ActivityManagerService mActivity;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800112
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800113 int mPhonePid;
Dianne Hackborn5b88a2f2013-05-03 16:25:11 -0700114 IActivityController mController;
Dianne Hackborn8bd64df2013-05-06 16:07:26 -0700115 boolean mAllowRestart = true;
Narayan Kamatha0a28082017-07-31 15:58:59 +0100116 final OpenFdMonitor mOpenFdMonitor;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800117
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800118 /**
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700119 * Used for checking status of handle threads and scheduling monitor callbacks.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800120 */
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700121 public final class HandlerChecker implements Runnable {
122 private final Handler mHandler;
123 private final String mName;
Christopher Tatee6f81cf2013-10-23 17:28:27 -0700124 private final long mWaitMax;
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700125 private final ArrayList<Monitor> mMonitors = new ArrayList<Monitor>();
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700126 private boolean mCompleted;
127 private Monitor mCurrentMonitor;
Christopher Tatee6f81cf2013-10-23 17:28:27 -0700128 private long mStartTime;
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700129
Christopher Tatee6f81cf2013-10-23 17:28:27 -0700130 HandlerChecker(Handler handler, String name, long waitMaxMillis) {
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700131 mHandler = handler;
132 mName = name;
Christopher Tatee6f81cf2013-10-23 17:28:27 -0700133 mWaitMax = waitMaxMillis;
134 mCompleted = true;
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700135 }
136
137 public void addMonitor(Monitor monitor) {
138 mMonitors.add(monitor);
139 }
140
141 public void scheduleCheckLocked() {
Jeff Brown6c7b41a2015-02-26 14:43:53 -0800142 if (mMonitors.size() == 0 && mHandler.getLooper().getQueue().isPolling()) {
143 // If the target looper has recently been polling, then
Dianne Hackbornefa92b22013-05-03 14:11:43 -0700144 // there is no reason to enqueue our checker on it since that
145 // is as good as it not being deadlocked. This avoid having
146 // to do a context switch to check the thread. Note that we
147 // only do this if mCheckReboot is false and we have no
148 // monitors, since those would need to be executed at this point.
149 mCompleted = true;
150 return;
151 }
Christopher Tatee6f81cf2013-10-23 17:28:27 -0700152
153 if (!mCompleted) {
154 // we already have a check in flight, so no need
155 return;
156 }
157
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700158 mCompleted = false;
159 mCurrentMonitor = null;
Christopher Tatee6f81cf2013-10-23 17:28:27 -0700160 mStartTime = SystemClock.uptimeMillis();
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700161 mHandler.postAtFrontOfQueue(this);
162 }
163
Christopher Tatee6f81cf2013-10-23 17:28:27 -0700164 public boolean isOverdueLocked() {
165 return (!mCompleted) && (SystemClock.uptimeMillis() > mStartTime + mWaitMax);
166 }
167
168 public int getCompletionStateLocked() {
169 if (mCompleted) {
170 return COMPLETED;
171 } else {
172 long latency = SystemClock.uptimeMillis() - mStartTime;
173 if (latency < mWaitMax/2) {
174 return WAITING;
175 } else if (latency < mWaitMax) {
176 return WAITED_HALF;
177 }
178 }
179 return OVERDUE;
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700180 }
181
Dianne Hackbornfa012b32013-05-10 15:23:28 -0700182 public Thread getThread() {
183 return mHandler.getLooper().getThread();
184 }
185
186 public String getName() {
187 return mName;
188 }
189
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700190 public String describeBlockedStateLocked() {
Jeff Brown7dd2d192013-09-06 15:05:23 -0700191 if (mCurrentMonitor == null) {
192 return "Blocked in handler on " + mName + " (" + getThread().getName() + ")";
193 } else {
194 return "Blocked in monitor " + mCurrentMonitor.getClass().getName()
195 + " on " + mName + " (" + getThread().getName() + ")";
196 }
John Michelau11641522013-03-18 18:28:23 -0500197 }
198
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800199 @Override
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700200 public void run() {
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700201 final int size = mMonitors.size();
202 for (int i = 0 ; i < size ; i++) {
203 synchronized (Watchdog.this) {
204 mCurrentMonitor = mMonitors.get(i);
205 }
206 mCurrentMonitor.monitor();
207 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800208
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700209 synchronized (Watchdog.this) {
210 mCompleted = true;
211 mCurrentMonitor = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800212 }
213 }
214 }
215
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800216 final class RebootRequestReceiver extends BroadcastReceiver {
217 @Override
218 public void onReceive(Context c, Intent intent) {
Dianne Hackbornf6438b12013-05-09 18:53:48 -0700219 if (intent.getIntExtra("nowait", 0) != 0) {
220 rebootSystem("Received ACTION_REBOOT broadcast");
221 return;
222 }
223 Slog.w(TAG, "Unsupported ACTION_REBOOT broadcast: " + intent);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800224 }
225 }
226
Wale Ogunwale517daec2015-04-15 10:27:24 -0700227 /** Monitor for checking the availability of binder threads. The monitor will block until
228 * there is a binder thread available to process in coming IPCs to make sure other processes
229 * can still communicate with the service.
230 */
231 private static final class BinderThreadMonitor implements Watchdog.Monitor {
232 @Override
233 public void monitor() {
234 Binder.blockUntilThreadAvailable();
235 }
236 }
237
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800238 public interface Monitor {
239 void monitor();
240 }
241
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800242 public static Watchdog getInstance() {
243 if (sWatchdog == null) {
244 sWatchdog = new Watchdog();
245 }
246
247 return sWatchdog;
248 }
249
250 private Watchdog() {
251 super("watchdog");
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700252 // Initialize handler checkers for each common thread we want to check. Note
253 // that we are not currently checking the background thread, since it can
254 // potentially hold longer running operations with no guarantees about the timeliness
255 // of operations there.
256
257 // The shared foreground thread is the main checker. It is where we
258 // will also dispatch monitor checks and do other work.
Christopher Tatee6f81cf2013-10-23 17:28:27 -0700259 mMonitorChecker = new HandlerChecker(FgThread.getHandler(),
260 "foreground thread", DEFAULT_TIMEOUT);
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700261 mHandlerCheckers.add(mMonitorChecker);
262 // Add checker for main thread. We only do a quick check since there
263 // can be UI running on the thread.
264 mHandlerCheckers.add(new HandlerChecker(new Handler(Looper.getMainLooper()),
Christopher Tatee6f81cf2013-10-23 17:28:27 -0700265 "main thread", DEFAULT_TIMEOUT));
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700266 // Add checker for shared UI thread.
Christopher Tatee6f81cf2013-10-23 17:28:27 -0700267 mHandlerCheckers.add(new HandlerChecker(UiThread.getHandler(),
268 "ui thread", DEFAULT_TIMEOUT));
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700269 // And also check IO thread.
Christopher Tatee6f81cf2013-10-23 17:28:27 -0700270 mHandlerCheckers.add(new HandlerChecker(IoThread.getHandler(),
271 "i/o thread", DEFAULT_TIMEOUT));
Jeff Brown4ccb8232014-01-16 22:16:42 -0800272 // And the display thread.
273 mHandlerCheckers.add(new HandlerChecker(DisplayThread.getHandler(),
274 "display thread", DEFAULT_TIMEOUT));
Wale Ogunwale517daec2015-04-15 10:27:24 -0700275
276 // Initialize monitor for Binder threads.
277 addMonitor(new BinderThreadMonitor());
Andreas Gampe032a9292017-07-21 11:41:00 -0700278
Narayan Kamatha0a28082017-07-31 15:58:59 +0100279 mOpenFdMonitor = OpenFdMonitor.create();
280
Andreas Gampe032a9292017-07-21 11:41:00 -0700281 // See the notes on DEFAULT_TIMEOUT.
282 assert DB ||
283 DEFAULT_TIMEOUT > ZygoteConnectionConstants.WRAPPED_PID_TIMEOUT_MILLIS;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800284 }
285
Adam Lesinski182f73f2013-12-05 16:48:06 -0800286 public void init(Context context, ActivityManagerService activity) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800287 mResolver = context.getContentResolver();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800288 mActivity = activity;
289
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800290 context.registerReceiver(new RebootRequestReceiver(),
291 new IntentFilter(Intent.ACTION_REBOOT),
292 android.Manifest.permission.REBOOT, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800293 }
294
Christopher Tatec27181c2010-06-30 14:41:09 -0700295 public void processStarted(String name, int pid) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800296 synchronized (this) {
297 if ("com.android.phone".equals(name)) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800298 mPhonePid = pid;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800299 }
300 }
301 }
302
Dianne Hackborn5b88a2f2013-05-03 16:25:11 -0700303 public void setActivityController(IActivityController controller) {
304 synchronized (this) {
305 mController = controller;
306 }
307 }
308
Dianne Hackborn8bd64df2013-05-06 16:07:26 -0700309 public void setAllowRestart(boolean allowRestart) {
310 synchronized (this) {
311 mAllowRestart = allowRestart;
312 }
313 }
314
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800315 public void addMonitor(Monitor monitor) {
316 synchronized (this) {
317 if (isAlive()) {
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700318 throw new RuntimeException("Monitors can't be added once the Watchdog is running");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800319 }
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700320 mMonitorChecker.addMonitor(monitor);
321 }
322 }
323
Jeff Brown6f357d32014-01-15 20:40:55 -0800324 public void addThread(Handler thread) {
325 addThread(thread, DEFAULT_TIMEOUT);
Christopher Tatee6f81cf2013-10-23 17:28:27 -0700326 }
327
Jeff Brown6f357d32014-01-15 20:40:55 -0800328 public void addThread(Handler thread, long timeoutMillis) {
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700329 synchronized (this) {
330 if (isAlive()) {
331 throw new RuntimeException("Threads can't be added once the Watchdog is running");
332 }
Jeff Brown6f357d32014-01-15 20:40:55 -0800333 final String name = thread.getLooper().getThread().getName();
Christopher Tatee6f81cf2013-10-23 17:28:27 -0700334 mHandlerCheckers.add(new HandlerChecker(thread, name, timeoutMillis));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800335 }
336 }
337
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800338 /**
339 * Perform a full reboot of the system.
340 */
341 void rebootSystem(String reason) {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800342 Slog.i(TAG, "Rebooting system because: " + reason);
Jeff Brown6f357d32014-01-15 20:40:55 -0800343 IPowerManager pms = (IPowerManager)ServiceManager.getService(Context.POWER_SERVICE);
344 try {
345 pms.reboot(false, reason, false);
346 } catch (RemoteException ex) {
347 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800348 }
349
Christopher Tatee6f81cf2013-10-23 17:28:27 -0700350 private int evaluateCheckerCompletionLocked() {
351 int state = COMPLETED;
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700352 for (int i=0; i<mHandlerCheckers.size(); i++) {
353 HandlerChecker hc = mHandlerCheckers.get(i);
Christopher Tatee6f81cf2013-10-23 17:28:27 -0700354 state = Math.max(state, hc.getCompletionStateLocked());
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700355 }
Christopher Tatee6f81cf2013-10-23 17:28:27 -0700356 return state;
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700357 }
358
Dianne Hackbornfa012b32013-05-10 15:23:28 -0700359 private ArrayList<HandlerChecker> getBlockedCheckersLocked() {
360 ArrayList<HandlerChecker> checkers = new ArrayList<HandlerChecker>();
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700361 for (int i=0; i<mHandlerCheckers.size(); i++) {
362 HandlerChecker hc = mHandlerCheckers.get(i);
Christopher Tatee6f81cf2013-10-23 17:28:27 -0700363 if (hc.isOverdueLocked()) {
Dianne Hackbornfa012b32013-05-10 15:23:28 -0700364 checkers.add(hc);
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700365 }
366 }
Dianne Hackbornfa012b32013-05-10 15:23:28 -0700367 return checkers;
368 }
369
Narayan Kamatha0a28082017-07-31 15:58:59 +0100370 private String describeCheckersLocked(List<HandlerChecker> checkers) {
Dianne Hackbornfa012b32013-05-10 15:23:28 -0700371 StringBuilder builder = new StringBuilder(128);
372 for (int i=0; i<checkers.size(); i++) {
373 if (builder.length() > 0) {
374 builder.append(", ");
375 }
376 builder.append(checkers.get(i).describeBlockedStateLocked());
377 }
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700378 return builder.toString();
379 }
380
Steven Moreland6b47c542017-03-21 12:52:16 -0700381 private ArrayList<Integer> getInterestingHalPids() {
382 try {
383 IServiceManager serviceManager = IServiceManager.getService();
384 ArrayList<IServiceManager.InstanceDebugInfo> dump =
385 serviceManager.debugDump();
386 HashSet<Integer> pids = new HashSet<>();
387 for (IServiceManager.InstanceDebugInfo info : dump) {
388 if (info.pid == IServiceManager.PidConstant.NO_PID) {
389 continue;
390 }
391
392 if (!HAL_INTERFACES_OF_INTEREST.contains(info.interfaceName)) {
393 continue;
394 }
395
396 pids.add(info.pid);
397 }
398 return new ArrayList<Integer>(pids);
399 } catch (RemoteException e) {
400 return new ArrayList<Integer>();
401 }
402 }
403
404 private ArrayList<Integer> getInterestingNativePids() {
405 ArrayList<Integer> pids = getInterestingHalPids();
406
407 int[] nativePids = Process.getPidsForCommands(NATIVE_STACKS_OF_INTEREST);
408 if (nativePids != null) {
409 pids.ensureCapacity(pids.size() + nativePids.length);
410 for (int i : nativePids) {
411 pids.add(i);
412 }
413 }
414
415 return pids;
416 }
417
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800418 @Override
419 public void run() {
Christopher Tate6ee412d2010-05-28 12:01:56 -0700420 boolean waitedHalf = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800421 while (true) {
Narayan Kamatha0a28082017-07-31 15:58:59 +0100422 final List<HandlerChecker> blockedCheckers;
Jeff Brown7dd2d192013-09-06 15:05:23 -0700423 final String subject;
Dianne Hackborn8bd64df2013-05-06 16:07:26 -0700424 final boolean allowRestart;
Dianne Hackborn89ad4562014-08-24 16:45:38 -0700425 int debuggerWasConnected = 0;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800426 synchronized (this) {
Christopher Tatee6f81cf2013-10-23 17:28:27 -0700427 long timeout = CHECK_INTERVAL;
428 // Make sure we (re)spin the checkers that have become idle within
429 // this wait-and-check interval
430 for (int i=0; i<mHandlerCheckers.size(); i++) {
431 HandlerChecker hc = mHandlerCheckers.get(i);
432 hc.scheduleCheckLocked();
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700433 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800434
Dianne Hackborn89ad4562014-08-24 16:45:38 -0700435 if (debuggerWasConnected > 0) {
436 debuggerWasConnected--;
437 }
438
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800439 // NOTE: We use uptimeMillis() here because we do not want to increment the time we
440 // wait while asleep. If the device is asleep then the thing that we are waiting
Christopher Tate6ee412d2010-05-28 12:01:56 -0700441 // 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 -0800442 // positive on when to kill things.
443 long start = SystemClock.uptimeMillis();
Michael Wright8fa56f62013-04-01 16:36:05 -0700444 while (timeout > 0) {
Dianne Hackborn89ad4562014-08-24 16:45:38 -0700445 if (Debug.isDebuggerConnected()) {
446 debuggerWasConnected = 2;
447 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800448 try {
Michael Wright8fa56f62013-04-01 16:36:05 -0700449 wait(timeout);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800450 } catch (InterruptedException e) {
Dan Egnor9bdc94b2010-03-04 14:20:31 -0800451 Log.wtf(TAG, e);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800452 }
Dianne Hackborn89ad4562014-08-24 16:45:38 -0700453 if (Debug.isDebuggerConnected()) {
454 debuggerWasConnected = 2;
455 }
Christopher Tatee6f81cf2013-10-23 17:28:27 -0700456 timeout = CHECK_INTERVAL - (SystemClock.uptimeMillis() - start);
Dan Egnor9bdc94b2010-03-04 14:20:31 -0800457 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800458
Narayan Kamatha0a28082017-07-31 15:58:59 +0100459 boolean fdLimitTriggered = false;
460 if (mOpenFdMonitor != null) {
461 fdLimitTriggered = mOpenFdMonitor.monitor();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800462 }
Michael Wright8fa56f62013-04-01 16:36:05 -0700463
Narayan Kamatha0a28082017-07-31 15:58:59 +0100464 if (!fdLimitTriggered) {
465 final int waitState = evaluateCheckerCompletionLocked();
466 if (waitState == COMPLETED) {
467 // The monitors have returned; reset
468 waitedHalf = false;
469 continue;
470 } else if (waitState == WAITING) {
471 // still waiting but within their configured intervals; back off and recheck
472 continue;
473 } else if (waitState == WAITED_HALF) {
474 if (!waitedHalf) {
475 // We've waited half the deadlock-detection interval. Pull a stack
476 // trace and wait another half.
477 ArrayList<Integer> pids = new ArrayList<Integer>();
478 pids.add(Process.myPid());
479 ActivityManagerService.dumpStackTraces(true, pids, null, null,
480 getInterestingNativePids());
481 waitedHalf = true;
482 }
483 continue;
484 }
485
486 // something is overdue!
487 blockedCheckers = getBlockedCheckersLocked();
488 subject = describeCheckersLocked(blockedCheckers);
489 } else {
490 blockedCheckers = Collections.emptyList();
491 subject = "Open FD high water mark reached";
492 }
Dianne Hackborn8bd64df2013-05-06 16:07:26 -0700493 allowRestart = mAllowRestart;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800494 }
495
496 // If we got here, that means that the system is most likely hung.
Jean-Baptiste Queru784827b2012-09-04 13:35:12 -0700497 // First collect stack traces from all threads of the system process.
498 // Then kill this process so that the system will restart.
Jeff Brown7dd2d192013-09-06 15:05:23 -0700499 EventLog.writeEvent(EventLogTags.WATCHDOG, subject);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800500
Steven Moreland6b47c542017-03-21 12:52:16 -0700501 ArrayList<Integer> pids = new ArrayList<>();
Dan Egnor9bdc94b2010-03-04 14:20:31 -0800502 pids.add(Process.myPid());
Dan Egnor4bded072010-03-11 22:00:47 -0800503 if (mPhonePid > 0) pids.add(mPhonePid);
Christopher Tate6ee412d2010-05-28 12:01:56 -0700504 // Pass !waitedHalf so that just in case we somehow wind up here without having
505 // dumped the halfway stacks, we properly re-initialize the trace file.
Brad Fitzpatrick9765c722011-01-14 11:28:22 -0800506 final File stack = ActivityManagerService.dumpStackTraces(
Steven Moreland6b47c542017-03-21 12:52:16 -0700507 !waitedHalf, pids, null, null, getInterestingNativePids());
Dan Egnor4bded072010-03-11 22:00:47 -0800508
509 // Give some extra time to make sure the stack traces get written.
510 // The system's been hanging for a minute, another second or two won't hurt much.
511 SystemClock.sleep(2000);
512
Christopher Tateecaa7b42010-06-04 14:55:02 -0700513 // Pull our own kernel thread stacks as well if we're configured for that
514 if (RECORD_KERNEL_THREADS) {
515 dumpKernelStackTraces();
516 }
517
Guang Zhu0620c452014-10-29 14:31:48 -0700518 // Trigger the kernel to dump all blocked threads, and backtraces on all CPUs to the kernel log
519 doSysRq('w');
520 doSysRq('l');
Colin Cross5df1d872012-11-29 11:42:11 -0800521
Brad Fitzpatrick9765c722011-01-14 11:28:22 -0800522 // Try to add the error to the dropbox, but assuming that the ActivityManager
523 // itself may be deadlocked. (which has happened, causing this statement to
524 // deadlock and the watchdog as a whole to be ineffective)
525 Thread dropboxThread = new Thread("watchdogWriteToDropbox") {
526 public void run() {
527 mActivity.addErrorToDropBox(
Jeff Sharkeya353d262011-10-28 11:12:06 -0700528 "watchdog", null, "system_server", null, null,
Jeff Brown7dd2d192013-09-06 15:05:23 -0700529 subject, null, stack, null);
Brad Fitzpatrick9765c722011-01-14 11:28:22 -0800530 }
531 };
532 dropboxThread.start();
533 try {
534 dropboxThread.join(2000); // wait up to 2 seconds for it to return.
535 } catch (InterruptedException ignored) {}
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800536
Dianne Hackborn5b88a2f2013-05-03 16:25:11 -0700537 IActivityController controller;
538 synchronized (this) {
539 controller = mController;
540 }
541 if (controller != null) {
542 Slog.i(TAG, "Reporting stuck state to activity controller");
543 try {
544 Binder.setDumpDisabled("Service dumps disabled due to hung system process.");
545 // 1 = keep waiting, -1 = kill system
Jeff Brown7dd2d192013-09-06 15:05:23 -0700546 int res = controller.systemNotResponding(subject);
Dianne Hackborn5b88a2f2013-05-03 16:25:11 -0700547 if (res >= 0) {
548 Slog.i(TAG, "Activity controller requested to coninue to wait");
549 waitedHalf = false;
550 continue;
551 }
552 } catch (RemoteException e) {
553 }
554 }
555
Jean-Baptiste Queru784827b2012-09-04 13:35:12 -0700556 // Only kill the process if the debugger is not attached.
Dianne Hackborn8bd64df2013-05-06 16:07:26 -0700557 if (Debug.isDebuggerConnected()) {
Dianne Hackborn89ad4562014-08-24 16:45:38 -0700558 debuggerWasConnected = 2;
559 }
560 if (debuggerWasConnected >= 2) {
Dianne Hackborn8bd64df2013-05-06 16:07:26 -0700561 Slog.w(TAG, "Debugger connected: Watchdog is *not* killing the system process");
Dianne Hackborn89ad4562014-08-24 16:45:38 -0700562 } else if (debuggerWasConnected > 0) {
563 Slog.w(TAG, "Debugger was connected: Watchdog is *not* killing the system process");
Dianne Hackborn8bd64df2013-05-06 16:07:26 -0700564 } else if (!allowRestart) {
565 Slog.w(TAG, "Restart not allowed: Watchdog is *not* killing the system process");
566 } else {
Jeff Brown7dd2d192013-09-06 15:05:23 -0700567 Slog.w(TAG, "*** WATCHDOG KILLING SYSTEM PROCESS: " + subject);
Dianne Hackbornfa012b32013-05-10 15:23:28 -0700568 for (int i=0; i<blockedCheckers.size(); i++) {
569 Slog.w(TAG, blockedCheckers.get(i).getName() + " stack trace:");
570 StackTraceElement[] stackTrace
571 = blockedCheckers.get(i).getThread().getStackTrace();
572 for (StackTraceElement element: stackTrace) {
573 Slog.w(TAG, " at " + element);
574 }
Michael Wright56a6c662013-04-30 20:13:07 -0700575 }
Dianne Hackbornfa012b32013-05-10 15:23:28 -0700576 Slog.w(TAG, "*** GOODBYE!");
Jean-Baptiste Queru784827b2012-09-04 13:35:12 -0700577 Process.killProcess(Process.myPid());
578 System.exit(10);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800579 }
Christopher Tate6ee412d2010-05-28 12:01:56 -0700580
581 waitedHalf = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800582 }
583 }
Christopher Tateecaa7b42010-06-04 14:55:02 -0700584
Guang Zhu0620c452014-10-29 14:31:48 -0700585 private void doSysRq(char c) {
586 try {
587 FileWriter sysrq_trigger = new FileWriter("/proc/sysrq-trigger");
588 sysrq_trigger.write(c);
589 sysrq_trigger.close();
590 } catch (IOException e) {
591 Slog.w(TAG, "Failed to write to /proc/sysrq-trigger", e);
592 }
593 }
594
Christopher Tateecaa7b42010-06-04 14:55:02 -0700595 private File dumpKernelStackTraces() {
596 String tracesPath = SystemProperties.get("dalvik.vm.stack-trace-file", null);
597 if (tracesPath == null || tracesPath.length() == 0) {
598 return null;
599 }
600
601 native_dumpKernelStacks(tracesPath);
602 return new File(tracesPath);
603 }
604
605 private native void native_dumpKernelStacks(String tracesPath);
Narayan Kamatha0a28082017-07-31 15:58:59 +0100606
607 public static final class OpenFdMonitor {
608 /**
609 * Number of FDs below the soft limit that we trigger a runtime restart at. This was
610 * chosen arbitrarily, but will need to be at least 6 in order to have a sufficient number
611 * of FDs in reserve to complete a dump.
612 */
613 private static final int FD_HIGH_WATER_MARK = 12;
614
615 private final File mDumpDir;
616 private final File mFdHighWaterMark;
617
618 public static OpenFdMonitor create() {
619 // Only run the FD monitor on debuggable builds (such as userdebug and eng builds).
620 if (!Build.IS_DEBUGGABLE) {
621 return null;
622 }
623
624 // Don't run the FD monitor on builds that have a global ANR trace file. We're using
625 // the ANR trace directory as a quick hack in order to get these traces in bugreports
626 // and we wouldn't want to overwrite something important.
627 final String dumpDirStr = SystemProperties.get("dalvik.vm.stack-trace-dir", "");
628 if (dumpDirStr.isEmpty()) {
629 return null;
630 }
631
632 final StructRlimit rlimit;
633 try {
634 rlimit = android.system.Os.getrlimit(OsConstants.RLIMIT_NOFILE);
635 } catch (ErrnoException errno) {
636 Slog.w(TAG, "Error thrown from getrlimit(RLIMIT_NOFILE)", errno);
637 return null;
638 }
639
640 // The assumption we're making here is that FD numbers are allocated (more or less)
641 // sequentially, which is currently (and historically) true since open is currently
642 // specified to always return the lowest-numbered non-open file descriptor for the
643 // current process.
644 //
645 // We do this to avoid having to enumerate the contents of /proc/self/fd in order to
646 // count the number of descriptors open in the process.
647 final File fdThreshold = new File("/proc/self/fd/" + (rlimit.rlim_cur - FD_HIGH_WATER_MARK));
648 return new OpenFdMonitor(new File(dumpDirStr), fdThreshold);
649 }
650
651 OpenFdMonitor(File dumpDir, File fdThreshold) {
652 mDumpDir = dumpDir;
653 mFdHighWaterMark = fdThreshold;
654 }
655
656 private void dumpOpenDescriptors() {
657 try {
658 File dumpFile = File.createTempFile("anr_fd_", "", mDumpDir);
659 java.lang.Process proc = new ProcessBuilder()
660 .command("/system/bin/lsof", "-p", String.valueOf(Process.myPid()))
661 .redirectErrorStream(true)
662 .redirectOutput(dumpFile)
663 .start();
664
665 int returnCode = proc.waitFor();
666 if (returnCode != 0) {
667 Slog.w(TAG, "Unable to dump open descriptors, lsof return code: "
668 + returnCode);
669 dumpFile.delete();
670 }
671 } catch (IOException | InterruptedException ex) {
672 Slog.w(TAG, "Unable to dump open descriptors: " + ex);
673 }
674 }
675
676 /**
677 * @return {@code true} if the high water mark was breached and a dump was written,
678 * {@code false} otherwise.
679 */
680 public boolean monitor() {
681 if (mFdHighWaterMark.exists()) {
682 dumpOpenDescriptors();
683 return true;
684 }
685
686 return false;
687 }
688 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800689}