All Downloads are FREE. Search and download functionalities are using the official Maven repository.

src.com.android.server.LockGuard Maven / Gradle / Ivy

Go to download

A library jar that provides APIs for Applications written for the Google Android Platform.

There is a newer version: 15-robolectric-12650502
Show newest version
/*
 * Copyright (C) 2016 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package com.android.server;

import android.annotation.Nullable;
import android.text.TextUtils;
import android.util.ArrayMap;
import android.util.ArraySet;
import android.util.Slog;

import com.android.internal.os.BackgroundThread;

import java.io.FileDescriptor;
import java.io.PrintWriter;

/**
 * LockGuard is a mechanism to help detect lock inversions inside the system
 * server. It works by requiring each lock acquisition site to follow this
 * pattern:
 *
 * 
 * synchronized (LockGuard.guard(lock)) {
 * }
 * 
* *
 * $ find services/ -name "*.java" -exec sed -i -r \
 *     's/synchronized.?\((.+?)\)/synchronized \(com.android.server.LockGuard.guard\(\1\)\)/' {} \;
 * 
* * The {@link #guard(Object)} method internally verifies that all locking is * done in a consistent order, and will log if any inversion is detected. For * example, if the calling thread is trying to acquire the * {@code ActivityManager} lock while holding the {@code PackageManager} lock, * it will yell. *

* This class requires no prior knowledge of locks or their ordering; it derives * all of this data at runtime. However, this means the overhead is * substantial and it should not be enabled by default. For example, * here are some benchmarked timings: *

    *
  • An unguarded synchronized block takes 40ns. *
  • A guarded synchronized block takes 50ns when disabled. *
  • A guarded synchronized block takes 460ns per lock checked when enabled. *
*

* This class also supports a second simpler mode of operation where well-known * locks are explicitly registered and checked via indexes. */ public class LockGuard { private static final String TAG = "LockGuard"; /** * Well-known locks ordered by fixed index. Locks with a specific index * should never be acquired while holding a lock of a lower index. */ public static final int INDEX_APP_OPS = 0; public static final int INDEX_POWER = 1; public static final int INDEX_USER = 2; public static final int INDEX_PACKAGES = 3; public static final int INDEX_STORAGE = 4; public static final int INDEX_WINDOW = 5; public static final int INDEX_ACTIVITY = 6; public static final int INDEX_DPMS = 7; private static Object[] sKnownFixed = new Object[INDEX_DPMS + 1]; private static ArrayMap sKnown = new ArrayMap<>(0, true); private static class LockInfo { /** Friendly label to describe this lock */ public String label; /** Child locks that can be acquired while this lock is already held */ public ArraySet children = new ArraySet<>(0, true); /** If true, do wtf instead of a warning log. */ public boolean doWtf; } private static LockInfo findOrCreateLockInfo(Object lock) { LockInfo info = sKnown.get(lock); if (info == null) { info = new LockInfo(); info.label = "0x" + Integer.toHexString(System.identityHashCode(lock)) + " [" + new Throwable().getStackTrace()[2].toString() + "]"; sKnown.put(lock, info); } return info; } /** * Check if the calling thread is holding any locks in an inverted order. * * @param lock The lock the calling thread is attempting to acquire. */ public static Object guard(Object lock) { // If we already hold this lock, ignore if (lock == null || Thread.holdsLock(lock)) return lock; // Check to see if we're already holding any child locks boolean triggered = false; final LockInfo info = findOrCreateLockInfo(lock); for (int i = 0; i < info.children.size(); i++) { final Object child = info.children.valueAt(i); if (child == null) continue; if (Thread.holdsLock(child)) { doLog(lock, "Calling thread " + Thread.currentThread().getName() + " is holding " + lockToString(child) + " while trying to acquire " + lockToString(lock)); triggered = true; } } if (!triggered) { // If no trouble found above, record this lock as being a valid // child of all locks currently being held for (int i = 0; i < sKnown.size(); i++) { final Object test = sKnown.keyAt(i); if (test == null || test == lock) continue; if (Thread.holdsLock(test)) { sKnown.valueAt(i).children.add(lock); } } } return lock; } /** * Yell if any lower-level locks are being held by the calling thread that * is about to acquire the given lock. */ public static void guard(int index) { for (int i = 0; i < index; i++) { final Object lock = sKnownFixed[i]; if (lock != null && Thread.holdsLock(lock)) { // Note in this case sKnownFixed may not contain a lock at the given index, // which is okay and in that case we just don't do a WTF. final Object targetMayBeNull = sKnownFixed[index]; doLog(targetMayBeNull, "Calling thread " + Thread.currentThread().getName() + " is holding " + lockToString(i) + " while trying to acquire " + lockToString(index)); } } } private static void doLog(@Nullable Object lock, String message) { if (lock != null && findOrCreateLockInfo(lock).doWtf) { // Don't want to call into ActivityManager with any lock held, so let's just call it // from a new thread. We don't want to use known threads (e.g. BackgroundThread) either // because they may be stuck too. final Throwable stackTrace = new RuntimeException(message); new Thread(() -> Slog.wtf(TAG, stackTrace)).start(); return; } Slog.w(TAG, message, new Throwable()); } /** * Report the given lock with a well-known label. */ public static Object installLock(Object lock, String label) { final LockInfo info = findOrCreateLockInfo(lock); info.label = label; return lock; } /** * Report the given lock with a well-known index. */ public static Object installLock(Object lock, int index) { return installLock(lock, index, /*doWtf=*/ false); } /** * Report the given lock with a well-known index. */ public static Object installLock(Object lock, int index, boolean doWtf) { sKnownFixed[index] = lock; final LockInfo info = findOrCreateLockInfo(lock); info.doWtf = doWtf; info.label = "Lock-" + lockToString(index); return lock; } public static Object installNewLock(int index) { return installNewLock(index, /*doWtf=*/ false); } public static Object installNewLock(int index, boolean doWtf) { final Object lock = new Object(); installLock(lock, index, doWtf); return lock; } private static String lockToString(Object lock) { final LockInfo info = sKnown.get(lock); if (info != null && !TextUtils.isEmpty(info.label)) { return info.label; } else { return "0x" + Integer.toHexString(System.identityHashCode(lock)); } } private static String lockToString(int index) { switch (index) { case INDEX_APP_OPS: return "APP_OPS"; case INDEX_POWER: return "POWER"; case INDEX_USER: return "USER"; case INDEX_PACKAGES: return "PACKAGES"; case INDEX_STORAGE: return "STORAGE"; case INDEX_WINDOW: return "WINDOW"; case INDEX_ACTIVITY: return "ACTIVITY"; case INDEX_DPMS: return "DPMS"; default: return Integer.toString(index); } } public static void dump(FileDescriptor fd, PrintWriter pw, String[] args) { for (int i = 0; i < sKnown.size(); i++) { final Object lock = sKnown.keyAt(i); final LockInfo info = sKnown.valueAt(i); pw.println("Lock " + lockToString(lock) + ":"); for (int j = 0; j < info.children.size(); j++) { pw.println(" Child " + lockToString(info.children.valueAt(j))); } pw.println(); } } }