blob: 82c4a7a4bd10f01e6fe7aad81be2c7d8d6ad3cb5 [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
Andreas Gampe032a9292017-07-21 11:41:00 -070063 // Note 1: Do not lower this value below thirty seconds without tightening the invoke-with
64 // timeout in com.android.internal.os.ZygoteConnection, or wrapped applications
65 // can trigger the watchdog.
66 // Note 2: The debug value is already below the wait time in ZygoteConnection. Wrapped
67 // applications may not work with a debug build. CTS will fail.
Christopher Tatee6f81cf2013-10-23 17:28:27 -070068 static final long DEFAULT_TIMEOUT = DB ? 10*1000 : 60*1000;
69 static final long CHECK_INTERVAL = DEFAULT_TIMEOUT / 2;
70
71 // These are temporally ordered: larger values as lateness increases
72 static final int COMPLETED = 0;
73 static final int WAITING = 1;
74 static final int WAITED_HALF = 2;
75 static final int OVERDUE = 3;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080076
Igor Murashkin44d04aa2013-10-23 10:56:02 -070077 // Which native processes to dump into dropbox's stack traces
78 public static final String[] NATIVE_STACKS_OF_INTEREST = new String[] {
Andy Hung3a64ecb2016-03-09 13:55:58 -080079 "/system/bin/audioserver",
Andy Hung689574a2016-04-13 19:27:43 -070080 "/system/bin/cameraserver",
81 "/system/bin/drmserver",
82 "/system/bin/mediadrmserver",
Dianne Hackbornf72467a2012-06-08 17:23:59 -070083 "/system/bin/mediaserver",
84 "/system/bin/sdcard",
Eric Laurent05d4e352016-03-14 18:49:08 -070085 "/system/bin/surfaceflinger",
Andy Hung689574a2016-04-13 19:27:43 -070086 "media.extractor", // system/bin/mediaextractor
Andy Hungb1c4c932018-01-04 12:05:43 -080087 "media.metrics", // system/bin/mediametrics
Chong Zhange55e6e02017-06-02 10:52:04 -070088 "media.codec", // vendor/bin/hw/android.hardware.media.omx@1.0-service
Andreas Gampecf9e79b2016-05-11 18:41:25 -070089 "com.android.bluetooth", // Bluetooth service
Andreas Gampee54440c2018-01-24 17:55:17 -080090 "statsd", // Stats daemon
Dianne Hackbornf72467a2012-06-08 17:23:59 -070091 };
92
Steven Moreland6b47c542017-03-21 12:52:16 -070093 public static final List<String> HAL_INTERFACES_OF_INTEREST = Arrays.asList(
94 "android.hardware.audio@2.0::IDevicesFactory",
95 "android.hardware.bluetooth@1.0::IBluetoothHci",
96 "android.hardware.camera.provider@2.4::ICameraProvider",
Chia-I Wu74debcd2017-04-21 11:14:22 -070097 "android.hardware.graphics.composer@2.1::IComposer",
Peng Xu102122fb2017-07-11 21:12:11 -070098 "android.hardware.media.omx@1.0::IOmx",
99 "android.hardware.sensors@1.0::ISensors",
100 "android.hardware.vr@1.0::IVr"
Steven Moreland6b47c542017-03-21 12:52:16 -0700101 );
102
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800103 static Watchdog sWatchdog;
104
105 /* This handler will be used to post message back onto the main thread */
Wale Ogunwaled7fdd022015-04-13 16:22:38 -0700106 final ArrayList<HandlerChecker> mHandlerCheckers = new ArrayList<>();
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700107 final HandlerChecker mMonitorChecker;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800108 ContentResolver mResolver;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800109 ActivityManagerService mActivity;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800110
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800111 int mPhonePid;
Dianne Hackborn5b88a2f2013-05-03 16:25:11 -0700112 IActivityController mController;
Dianne Hackborn8bd64df2013-05-06 16:07:26 -0700113 boolean mAllowRestart = true;
Narayan Kamatha0a28082017-07-31 15:58:59 +0100114 final OpenFdMonitor mOpenFdMonitor;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800115
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800116 /**
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700117 * Used for checking status of handle threads and scheduling monitor callbacks.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800118 */
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700119 public final class HandlerChecker implements Runnable {
120 private final Handler mHandler;
121 private final String mName;
Christopher Tatee6f81cf2013-10-23 17:28:27 -0700122 private final long mWaitMax;
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700123 private final ArrayList<Monitor> mMonitors = new ArrayList<Monitor>();
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700124 private boolean mCompleted;
125 private Monitor mCurrentMonitor;
Christopher Tatee6f81cf2013-10-23 17:28:27 -0700126 private long mStartTime;
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700127
Christopher Tatee6f81cf2013-10-23 17:28:27 -0700128 HandlerChecker(Handler handler, String name, long waitMaxMillis) {
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700129 mHandler = handler;
130 mName = name;
Christopher Tatee6f81cf2013-10-23 17:28:27 -0700131 mWaitMax = waitMaxMillis;
132 mCompleted = true;
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700133 }
134
135 public void addMonitor(Monitor monitor) {
136 mMonitors.add(monitor);
137 }
138
139 public void scheduleCheckLocked() {
Jeff Brown6c7b41a2015-02-26 14:43:53 -0800140 if (mMonitors.size() == 0 && mHandler.getLooper().getQueue().isPolling()) {
141 // If the target looper has recently been polling, then
Dianne Hackbornefa92b22013-05-03 14:11:43 -0700142 // there is no reason to enqueue our checker on it since that
143 // is as good as it not being deadlocked. This avoid having
144 // to do a context switch to check the thread. Note that we
145 // only do this if mCheckReboot is false and we have no
146 // monitors, since those would need to be executed at this point.
147 mCompleted = true;
148 return;
149 }
Christopher Tatee6f81cf2013-10-23 17:28:27 -0700150
151 if (!mCompleted) {
152 // we already have a check in flight, so no need
153 return;
154 }
155
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700156 mCompleted = false;
157 mCurrentMonitor = null;
Christopher Tatee6f81cf2013-10-23 17:28:27 -0700158 mStartTime = SystemClock.uptimeMillis();
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700159 mHandler.postAtFrontOfQueue(this);
160 }
161
Christopher Tatee6f81cf2013-10-23 17:28:27 -0700162 public boolean isOverdueLocked() {
163 return (!mCompleted) && (SystemClock.uptimeMillis() > mStartTime + mWaitMax);
164 }
165
166 public int getCompletionStateLocked() {
167 if (mCompleted) {
168 return COMPLETED;
169 } else {
170 long latency = SystemClock.uptimeMillis() - mStartTime;
171 if (latency < mWaitMax/2) {
172 return WAITING;
173 } else if (latency < mWaitMax) {
174 return WAITED_HALF;
175 }
176 }
177 return OVERDUE;
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700178 }
179
Dianne Hackbornfa012b32013-05-10 15:23:28 -0700180 public Thread getThread() {
181 return mHandler.getLooper().getThread();
182 }
183
184 public String getName() {
185 return mName;
186 }
187
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700188 public String describeBlockedStateLocked() {
Jeff Brown7dd2d192013-09-06 15:05:23 -0700189 if (mCurrentMonitor == null) {
190 return "Blocked in handler on " + mName + " (" + getThread().getName() + ")";
191 } else {
192 return "Blocked in monitor " + mCurrentMonitor.getClass().getName()
193 + " on " + mName + " (" + getThread().getName() + ")";
194 }
John Michelau11641522013-03-18 18:28:23 -0500195 }
196
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800197 @Override
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700198 public void run() {
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700199 final int size = mMonitors.size();
200 for (int i = 0 ; i < size ; i++) {
201 synchronized (Watchdog.this) {
202 mCurrentMonitor = mMonitors.get(i);
203 }
204 mCurrentMonitor.monitor();
205 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800206
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700207 synchronized (Watchdog.this) {
208 mCompleted = true;
209 mCurrentMonitor = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800210 }
211 }
212 }
213
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800214 final class RebootRequestReceiver extends BroadcastReceiver {
215 @Override
216 public void onReceive(Context c, Intent intent) {
Dianne Hackbornf6438b12013-05-09 18:53:48 -0700217 if (intent.getIntExtra("nowait", 0) != 0) {
218 rebootSystem("Received ACTION_REBOOT broadcast");
219 return;
220 }
221 Slog.w(TAG, "Unsupported ACTION_REBOOT broadcast: " + intent);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800222 }
223 }
224
Wale Ogunwale517daec2015-04-15 10:27:24 -0700225 /** Monitor for checking the availability of binder threads. The monitor will block until
226 * there is a binder thread available to process in coming IPCs to make sure other processes
227 * can still communicate with the service.
228 */
229 private static final class BinderThreadMonitor implements Watchdog.Monitor {
230 @Override
231 public void monitor() {
232 Binder.blockUntilThreadAvailable();
233 }
234 }
235
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800236 public interface Monitor {
237 void monitor();
238 }
239
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800240 public static Watchdog getInstance() {
241 if (sWatchdog == null) {
242 sWatchdog = new Watchdog();
243 }
244
245 return sWatchdog;
246 }
247
248 private Watchdog() {
249 super("watchdog");
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700250 // Initialize handler checkers for each common thread we want to check. Note
251 // that we are not currently checking the background thread, since it can
252 // potentially hold longer running operations with no guarantees about the timeliness
253 // of operations there.
254
255 // The shared foreground thread is the main checker. It is where we
256 // will also dispatch monitor checks and do other work.
Christopher Tatee6f81cf2013-10-23 17:28:27 -0700257 mMonitorChecker = new HandlerChecker(FgThread.getHandler(),
258 "foreground thread", DEFAULT_TIMEOUT);
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700259 mHandlerCheckers.add(mMonitorChecker);
260 // Add checker for main thread. We only do a quick check since there
261 // can be UI running on the thread.
262 mHandlerCheckers.add(new HandlerChecker(new Handler(Looper.getMainLooper()),
Christopher Tatee6f81cf2013-10-23 17:28:27 -0700263 "main thread", DEFAULT_TIMEOUT));
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700264 // Add checker for shared UI thread.
Christopher Tatee6f81cf2013-10-23 17:28:27 -0700265 mHandlerCheckers.add(new HandlerChecker(UiThread.getHandler(),
266 "ui thread", DEFAULT_TIMEOUT));
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700267 // And also check IO thread.
Christopher Tatee6f81cf2013-10-23 17:28:27 -0700268 mHandlerCheckers.add(new HandlerChecker(IoThread.getHandler(),
269 "i/o thread", DEFAULT_TIMEOUT));
Jeff Brown4ccb8232014-01-16 22:16:42 -0800270 // And the display thread.
271 mHandlerCheckers.add(new HandlerChecker(DisplayThread.getHandler(),
272 "display thread", DEFAULT_TIMEOUT));
Wale Ogunwale517daec2015-04-15 10:27:24 -0700273
274 // Initialize monitor for Binder threads.
275 addMonitor(new BinderThreadMonitor());
Andreas Gampe032a9292017-07-21 11:41:00 -0700276
Narayan Kamatha0a28082017-07-31 15:58:59 +0100277 mOpenFdMonitor = OpenFdMonitor.create();
278
Andreas Gampe032a9292017-07-21 11:41:00 -0700279 // See the notes on DEFAULT_TIMEOUT.
280 assert DB ||
281 DEFAULT_TIMEOUT > ZygoteConnectionConstants.WRAPPED_PID_TIMEOUT_MILLIS;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800282 }
283
Adam Lesinski182f73f2013-12-05 16:48:06 -0800284 public void init(Context context, ActivityManagerService activity) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800285 mResolver = context.getContentResolver();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800286 mActivity = activity;
287
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800288 context.registerReceiver(new RebootRequestReceiver(),
289 new IntentFilter(Intent.ACTION_REBOOT),
290 android.Manifest.permission.REBOOT, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800291 }
292
Christopher Tatec27181c2010-06-30 14:41:09 -0700293 public void processStarted(String name, int pid) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800294 synchronized (this) {
295 if ("com.android.phone".equals(name)) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800296 mPhonePid = pid;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800297 }
298 }
299 }
300
Dianne Hackborn5b88a2f2013-05-03 16:25:11 -0700301 public void setActivityController(IActivityController controller) {
302 synchronized (this) {
303 mController = controller;
304 }
305 }
306
Dianne Hackborn8bd64df2013-05-06 16:07:26 -0700307 public void setAllowRestart(boolean allowRestart) {
308 synchronized (this) {
309 mAllowRestart = allowRestart;
310 }
311 }
312
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800313 public void addMonitor(Monitor monitor) {
314 synchronized (this) {
315 if (isAlive()) {
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700316 throw new RuntimeException("Monitors can't be added once the Watchdog is running");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800317 }
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700318 mMonitorChecker.addMonitor(monitor);
319 }
320 }
321
Jeff Brown6f357d32014-01-15 20:40:55 -0800322 public void addThread(Handler thread) {
323 addThread(thread, DEFAULT_TIMEOUT);
Christopher Tatee6f81cf2013-10-23 17:28:27 -0700324 }
325
Jeff Brown6f357d32014-01-15 20:40:55 -0800326 public void addThread(Handler thread, long timeoutMillis) {
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700327 synchronized (this) {
328 if (isAlive()) {
329 throw new RuntimeException("Threads can't be added once the Watchdog is running");
330 }
Jeff Brown6f357d32014-01-15 20:40:55 -0800331 final String name = thread.getLooper().getThread().getName();
Christopher Tatee6f81cf2013-10-23 17:28:27 -0700332 mHandlerCheckers.add(new HandlerChecker(thread, name, timeoutMillis));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800333 }
334 }
335
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800336 /**
337 * Perform a full reboot of the system.
338 */
339 void rebootSystem(String reason) {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800340 Slog.i(TAG, "Rebooting system because: " + reason);
Jeff Brown6f357d32014-01-15 20:40:55 -0800341 IPowerManager pms = (IPowerManager)ServiceManager.getService(Context.POWER_SERVICE);
342 try {
343 pms.reboot(false, reason, false);
344 } catch (RemoteException ex) {
345 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800346 }
347
Christopher Tatee6f81cf2013-10-23 17:28:27 -0700348 private int evaluateCheckerCompletionLocked() {
349 int state = COMPLETED;
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700350 for (int i=0; i<mHandlerCheckers.size(); i++) {
351 HandlerChecker hc = mHandlerCheckers.get(i);
Christopher Tatee6f81cf2013-10-23 17:28:27 -0700352 state = Math.max(state, hc.getCompletionStateLocked());
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700353 }
Christopher Tatee6f81cf2013-10-23 17:28:27 -0700354 return state;
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700355 }
356
Dianne Hackbornfa012b32013-05-10 15:23:28 -0700357 private ArrayList<HandlerChecker> getBlockedCheckersLocked() {
358 ArrayList<HandlerChecker> checkers = new ArrayList<HandlerChecker>();
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700359 for (int i=0; i<mHandlerCheckers.size(); i++) {
360 HandlerChecker hc = mHandlerCheckers.get(i);
Christopher Tatee6f81cf2013-10-23 17:28:27 -0700361 if (hc.isOverdueLocked()) {
Dianne Hackbornfa012b32013-05-10 15:23:28 -0700362 checkers.add(hc);
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700363 }
364 }
Dianne Hackbornfa012b32013-05-10 15:23:28 -0700365 return checkers;
366 }
367
Narayan Kamatha0a28082017-07-31 15:58:59 +0100368 private String describeCheckersLocked(List<HandlerChecker> checkers) {
Dianne Hackbornfa012b32013-05-10 15:23:28 -0700369 StringBuilder builder = new StringBuilder(128);
370 for (int i=0; i<checkers.size(); i++) {
371 if (builder.length() > 0) {
372 builder.append(", ");
373 }
374 builder.append(checkers.get(i).describeBlockedStateLocked());
375 }
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700376 return builder.toString();
377 }
378
Steven Moreland6b47c542017-03-21 12:52:16 -0700379 private ArrayList<Integer> getInterestingHalPids() {
380 try {
381 IServiceManager serviceManager = IServiceManager.getService();
382 ArrayList<IServiceManager.InstanceDebugInfo> dump =
383 serviceManager.debugDump();
384 HashSet<Integer> pids = new HashSet<>();
385 for (IServiceManager.InstanceDebugInfo info : dump) {
386 if (info.pid == IServiceManager.PidConstant.NO_PID) {
387 continue;
388 }
389
390 if (!HAL_INTERFACES_OF_INTEREST.contains(info.interfaceName)) {
391 continue;
392 }
393
394 pids.add(info.pid);
395 }
396 return new ArrayList<Integer>(pids);
397 } catch (RemoteException e) {
398 return new ArrayList<Integer>();
399 }
400 }
401
402 private ArrayList<Integer> getInterestingNativePids() {
403 ArrayList<Integer> pids = getInterestingHalPids();
404
405 int[] nativePids = Process.getPidsForCommands(NATIVE_STACKS_OF_INTEREST);
406 if (nativePids != null) {
407 pids.ensureCapacity(pids.size() + nativePids.length);
408 for (int i : nativePids) {
409 pids.add(i);
410 }
411 }
412
413 return pids;
414 }
415
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800416 @Override
417 public void run() {
Christopher Tate6ee412d2010-05-28 12:01:56 -0700418 boolean waitedHalf = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800419 while (true) {
Narayan Kamatha0a28082017-07-31 15:58:59 +0100420 final List<HandlerChecker> blockedCheckers;
Jeff Brown7dd2d192013-09-06 15:05:23 -0700421 final String subject;
Dianne Hackborn8bd64df2013-05-06 16:07:26 -0700422 final boolean allowRestart;
Dianne Hackborn89ad4562014-08-24 16:45:38 -0700423 int debuggerWasConnected = 0;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800424 synchronized (this) {
Christopher Tatee6f81cf2013-10-23 17:28:27 -0700425 long timeout = CHECK_INTERVAL;
426 // Make sure we (re)spin the checkers that have become idle within
427 // this wait-and-check interval
428 for (int i=0; i<mHandlerCheckers.size(); i++) {
429 HandlerChecker hc = mHandlerCheckers.get(i);
430 hc.scheduleCheckLocked();
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700431 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800432
Dianne Hackborn89ad4562014-08-24 16:45:38 -0700433 if (debuggerWasConnected > 0) {
434 debuggerWasConnected--;
435 }
436
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800437 // NOTE: We use uptimeMillis() here because we do not want to increment the time we
438 // wait while asleep. If the device is asleep then the thing that we are waiting
Christopher Tate6ee412d2010-05-28 12:01:56 -0700439 // 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 -0800440 // positive on when to kill things.
441 long start = SystemClock.uptimeMillis();
Michael Wright8fa56f62013-04-01 16:36:05 -0700442 while (timeout > 0) {
Dianne Hackborn89ad4562014-08-24 16:45:38 -0700443 if (Debug.isDebuggerConnected()) {
444 debuggerWasConnected = 2;
445 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800446 try {
Michael Wright8fa56f62013-04-01 16:36:05 -0700447 wait(timeout);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800448 } catch (InterruptedException e) {
Dan Egnor9bdc94b2010-03-04 14:20:31 -0800449 Log.wtf(TAG, e);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800450 }
Dianne Hackborn89ad4562014-08-24 16:45:38 -0700451 if (Debug.isDebuggerConnected()) {
452 debuggerWasConnected = 2;
453 }
Christopher Tatee6f81cf2013-10-23 17:28:27 -0700454 timeout = CHECK_INTERVAL - (SystemClock.uptimeMillis() - start);
Dan Egnor9bdc94b2010-03-04 14:20:31 -0800455 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800456
Narayan Kamatha0a28082017-07-31 15:58:59 +0100457 boolean fdLimitTriggered = false;
458 if (mOpenFdMonitor != null) {
459 fdLimitTriggered = mOpenFdMonitor.monitor();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800460 }
Michael Wright8fa56f62013-04-01 16:36:05 -0700461
Narayan Kamatha0a28082017-07-31 15:58:59 +0100462 if (!fdLimitTriggered) {
463 final int waitState = evaluateCheckerCompletionLocked();
464 if (waitState == COMPLETED) {
465 // The monitors have returned; reset
466 waitedHalf = false;
467 continue;
468 } else if (waitState == WAITING) {
469 // still waiting but within their configured intervals; back off and recheck
470 continue;
471 } else if (waitState == WAITED_HALF) {
472 if (!waitedHalf) {
473 // We've waited half the deadlock-detection interval. Pull a stack
474 // trace and wait another half.
475 ArrayList<Integer> pids = new ArrayList<Integer>();
476 pids.add(Process.myPid());
477 ActivityManagerService.dumpStackTraces(true, pids, null, null,
478 getInterestingNativePids());
479 waitedHalf = true;
480 }
481 continue;
482 }
483
484 // something is overdue!
485 blockedCheckers = getBlockedCheckersLocked();
486 subject = describeCheckersLocked(blockedCheckers);
487 } else {
488 blockedCheckers = Collections.emptyList();
489 subject = "Open FD high water mark reached";
490 }
Dianne Hackborn8bd64df2013-05-06 16:07:26 -0700491 allowRestart = mAllowRestart;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800492 }
493
494 // If we got here, that means that the system is most likely hung.
Jean-Baptiste Queru784827b2012-09-04 13:35:12 -0700495 // First collect stack traces from all threads of the system process.
496 // Then kill this process so that the system will restart.
Jeff Brown7dd2d192013-09-06 15:05:23 -0700497 EventLog.writeEvent(EventLogTags.WATCHDOG, subject);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800498
Steven Moreland6b47c542017-03-21 12:52:16 -0700499 ArrayList<Integer> pids = new ArrayList<>();
Dan Egnor9bdc94b2010-03-04 14:20:31 -0800500 pids.add(Process.myPid());
Dan Egnor4bded072010-03-11 22:00:47 -0800501 if (mPhonePid > 0) pids.add(mPhonePid);
Christopher Tate6ee412d2010-05-28 12:01:56 -0700502 // Pass !waitedHalf so that just in case we somehow wind up here without having
503 // dumped the halfway stacks, we properly re-initialize the trace file.
Brad Fitzpatrick9765c722011-01-14 11:28:22 -0800504 final File stack = ActivityManagerService.dumpStackTraces(
Steven Moreland6b47c542017-03-21 12:52:16 -0700505 !waitedHalf, pids, null, null, getInterestingNativePids());
Dan Egnor4bded072010-03-11 22:00:47 -0800506
507 // Give some extra time to make sure the stack traces get written.
508 // The system's been hanging for a minute, another second or two won't hurt much.
509 SystemClock.sleep(2000);
510
Guang Zhu0620c452014-10-29 14:31:48 -0700511 // Trigger the kernel to dump all blocked threads, and backtraces on all CPUs to the kernel log
512 doSysRq('w');
513 doSysRq('l');
Colin Cross5df1d872012-11-29 11:42:11 -0800514
Brad Fitzpatrick9765c722011-01-14 11:28:22 -0800515 // Try to add the error to the dropbox, but assuming that the ActivityManager
516 // itself may be deadlocked. (which has happened, causing this statement to
517 // deadlock and the watchdog as a whole to be ineffective)
518 Thread dropboxThread = new Thread("watchdogWriteToDropbox") {
519 public void run() {
520 mActivity.addErrorToDropBox(
Jeff Sharkeya353d262011-10-28 11:12:06 -0700521 "watchdog", null, "system_server", null, null,
Jeff Brown7dd2d192013-09-06 15:05:23 -0700522 subject, null, stack, null);
Brad Fitzpatrick9765c722011-01-14 11:28:22 -0800523 }
524 };
525 dropboxThread.start();
526 try {
527 dropboxThread.join(2000); // wait up to 2 seconds for it to return.
528 } catch (InterruptedException ignored) {}
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800529
Dianne Hackborn5b88a2f2013-05-03 16:25:11 -0700530 IActivityController controller;
531 synchronized (this) {
532 controller = mController;
533 }
534 if (controller != null) {
535 Slog.i(TAG, "Reporting stuck state to activity controller");
536 try {
537 Binder.setDumpDisabled("Service dumps disabled due to hung system process.");
538 // 1 = keep waiting, -1 = kill system
Jeff Brown7dd2d192013-09-06 15:05:23 -0700539 int res = controller.systemNotResponding(subject);
Dianne Hackborn5b88a2f2013-05-03 16:25:11 -0700540 if (res >= 0) {
541 Slog.i(TAG, "Activity controller requested to coninue to wait");
542 waitedHalf = false;
543 continue;
544 }
545 } catch (RemoteException e) {
546 }
547 }
548
Jean-Baptiste Queru784827b2012-09-04 13:35:12 -0700549 // Only kill the process if the debugger is not attached.
Dianne Hackborn8bd64df2013-05-06 16:07:26 -0700550 if (Debug.isDebuggerConnected()) {
Dianne Hackborn89ad4562014-08-24 16:45:38 -0700551 debuggerWasConnected = 2;
552 }
553 if (debuggerWasConnected >= 2) {
Dianne Hackborn8bd64df2013-05-06 16:07:26 -0700554 Slog.w(TAG, "Debugger connected: Watchdog is *not* killing the system process");
Dianne Hackborn89ad4562014-08-24 16:45:38 -0700555 } else if (debuggerWasConnected > 0) {
556 Slog.w(TAG, "Debugger was connected: Watchdog is *not* killing the system process");
Dianne Hackborn8bd64df2013-05-06 16:07:26 -0700557 } else if (!allowRestart) {
558 Slog.w(TAG, "Restart not allowed: Watchdog is *not* killing the system process");
559 } else {
Jeff Brown7dd2d192013-09-06 15:05:23 -0700560 Slog.w(TAG, "*** WATCHDOG KILLING SYSTEM PROCESS: " + subject);
Andreas Gampe544416e2018-01-26 11:39:46 -0800561 WatchdogDiagnostics.diagnoseCheckers(blockedCheckers);
Dianne Hackbornfa012b32013-05-10 15:23:28 -0700562 Slog.w(TAG, "*** GOODBYE!");
Jean-Baptiste Queru784827b2012-09-04 13:35:12 -0700563 Process.killProcess(Process.myPid());
564 System.exit(10);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800565 }
Christopher Tate6ee412d2010-05-28 12:01:56 -0700566
567 waitedHalf = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800568 }
569 }
Christopher Tateecaa7b42010-06-04 14:55:02 -0700570
Guang Zhu0620c452014-10-29 14:31:48 -0700571 private void doSysRq(char c) {
572 try {
573 FileWriter sysrq_trigger = new FileWriter("/proc/sysrq-trigger");
574 sysrq_trigger.write(c);
575 sysrq_trigger.close();
576 } catch (IOException e) {
577 Slog.w(TAG, "Failed to write to /proc/sysrq-trigger", e);
578 }
579 }
580
Narayan Kamatha0a28082017-07-31 15:58:59 +0100581 public static final class OpenFdMonitor {
582 /**
583 * Number of FDs below the soft limit that we trigger a runtime restart at. This was
584 * chosen arbitrarily, but will need to be at least 6 in order to have a sufficient number
585 * of FDs in reserve to complete a dump.
586 */
587 private static final int FD_HIGH_WATER_MARK = 12;
588
589 private final File mDumpDir;
590 private final File mFdHighWaterMark;
591
592 public static OpenFdMonitor create() {
593 // Only run the FD monitor on debuggable builds (such as userdebug and eng builds).
594 if (!Build.IS_DEBUGGABLE) {
595 return null;
596 }
597
Narayan Kamatha0a28082017-07-31 15:58:59 +0100598 final StructRlimit rlimit;
599 try {
600 rlimit = android.system.Os.getrlimit(OsConstants.RLIMIT_NOFILE);
601 } catch (ErrnoException errno) {
602 Slog.w(TAG, "Error thrown from getrlimit(RLIMIT_NOFILE)", errno);
603 return null;
604 }
605
606 // The assumption we're making here is that FD numbers are allocated (more or less)
607 // sequentially, which is currently (and historically) true since open is currently
608 // specified to always return the lowest-numbered non-open file descriptor for the
609 // current process.
610 //
611 // We do this to avoid having to enumerate the contents of /proc/self/fd in order to
612 // count the number of descriptors open in the process.
613 final File fdThreshold = new File("/proc/self/fd/" + (rlimit.rlim_cur - FD_HIGH_WATER_MARK));
Elliott Hughes4e4caa72018-03-23 11:06:36 -0700614 return new OpenFdMonitor(new File("/data/anr"), fdThreshold);
Narayan Kamatha0a28082017-07-31 15:58:59 +0100615 }
616
617 OpenFdMonitor(File dumpDir, File fdThreshold) {
618 mDumpDir = dumpDir;
619 mFdHighWaterMark = fdThreshold;
620 }
621
622 private void dumpOpenDescriptors() {
623 try {
624 File dumpFile = File.createTempFile("anr_fd_", "", mDumpDir);
625 java.lang.Process proc = new ProcessBuilder()
626 .command("/system/bin/lsof", "-p", String.valueOf(Process.myPid()))
627 .redirectErrorStream(true)
628 .redirectOutput(dumpFile)
629 .start();
630
631 int returnCode = proc.waitFor();
632 if (returnCode != 0) {
633 Slog.w(TAG, "Unable to dump open descriptors, lsof return code: "
634 + returnCode);
635 dumpFile.delete();
636 }
637 } catch (IOException | InterruptedException ex) {
638 Slog.w(TAG, "Unable to dump open descriptors: " + ex);
639 }
640 }
641
642 /**
643 * @return {@code true} if the high water mark was breached and a dump was written,
644 * {@code false} otherwise.
645 */
646 public boolean monitor() {
647 if (mFdHighWaterMark.exists()) {
648 dumpOpenDescriptors();
649 return true;
650 }
651
652 return false;
653 }
654 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800655}