/* * Copyright (C) 2010 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. */ #include "Dalvik.h" #include "alloc/HeapBitmap.h" #include "alloc/HeapSource.h" #include "alloc/Verify.h" #include "alloc/Visit.h" static void dumpReferencesVisitor(void *pObj, void *arg) { Object *obj = *(Object **)pObj; Object *lookingFor = *(Object **)arg; if (lookingFor != NULL && lookingFor == obj) { *(Object **)arg = NULL; } } static void dumpReferencesCallback(void *ptr, void *arg) { Object *obj = arg; if (ptr == obj) { LOGD("skipping %p == %p", ptr, obj); return; } dvmVisitObject(dumpReferencesVisitor, ptr, &obj); if (obj == NULL) { LOGD("Found %p in the heap @ %p", arg, ptr); dvmDumpObject(ptr); } } static void dumpReferencesRootVisitor(void *ptr, void *arg) { Object *obj = *(Object **)ptr; Object *lookingFor = *(Object **)arg; if (obj == lookingFor) { LOGD("Found %p in a root @ %p", arg, ptr); } } /* * Searches the roots and heap for object references. */ static void dumpReferences(const Object *obj) { HeapBitmap *bitmap = dvmHeapSourceGetLiveBits(); void *arg = (void *)obj; dvmVisitRoots(dumpReferencesRootVisitor, arg); dvmHeapBitmapWalk(bitmap, dumpReferencesCallback, arg); } /* * Checks that the given reference points to a valid object. */ static void verifyReference(void *addr, void *arg) { Object *obj; bool isValid; assert(addr != NULL); obj = *(Object **)addr; if (obj == NULL) { isValid = true; } else { isValid = dvmIsValidObject(obj); } if (!isValid) { Object **parent = arg; if (*parent != NULL) { LOGE("Verify of object %p failed", *parent); dvmDumpObject(*parent); *parent = NULL; } LOGE("Verify of reference %p @ %p failed", obj, addr); dvmDumpObject(obj); } } /* * Verifies an object reference. */ void dvmVerifyObject(const Object *obj) { Object *arg = (Object *)obj; dvmVisitObject(verifyReference, (Object *)obj, &arg); if (arg == NULL) { dumpReferences(obj); dvmAbort(); } } /* * Helper function to call dvmVerifyObject from a bitmap walker. */ static void verifyBitmapCallback(void *ptr, void *arg) { dvmVerifyObject(ptr); } /* * Verifies the object references in a heap bitmap. Assumes the VM is * suspended. */ void dvmVerifyBitmap(const HeapBitmap *bitmap) { dvmHeapBitmapWalk(bitmap, verifyBitmapCallback, NULL); } /* * Verifies references in the roots. */ void dvmVerifyRoots(void) { dvmVisitRoots(verifyReference, NULL); }