blob: ec2d6315ebe941657ba9f699ad98943f0c375e5e [file] [log] [blame]
// Copyright 2017 The Bazel Authors. All rights reserved.
//
// 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.google.devtools.build.lib.unsafe;
import java.lang.reflect.Field;
import sun.misc.Unsafe;
/**
* An accessor for Unsafe.
*
* <p>Used for serialization.
*/
@SuppressWarnings("SunApi") // TODO: b/331765692 - clean this up
public class UnsafeProvider {
private static final Unsafe UNSAFE = getUnsafe();
public static Unsafe unsafe() {
return UNSAFE;
}
// TODO: b/386384684 - remove Unsafe usage
public static long getFieldOffset(Class<?> type, String fieldName) throws NoSuchFieldException {
return UNSAFE.objectFieldOffset(type.getDeclaredField(fieldName));
}
/**
* Gets a reference to {@link sun.misc.Unsafe} throwing an {@link AssertionError} on failure.
*
* <p>Failure is highly unlikely, but possible if the underlying VM stores unsafe in an unexpected
* location.
*/
private static Unsafe getUnsafe() {
// sun.misc.Unsafe is intentionally difficult to get a hold of - it gives us the power to
// do things like access raw memory and segfault the JVM.
Class<Unsafe> unsafeClass = Unsafe.class;
// Unsafe usually exists in the field 'theUnsafe', however check all fields
// in case it's somewhere else in this VM's version of Unsafe.
for (Field f : unsafeClass.getDeclaredFields()) {
f.setAccessible(true);
Object fieldValue;
try {
fieldValue = f.get(null);
} catch (IllegalAccessException e) {
throw new IllegalStateException(
"Failed to get value of %s even though it has been made accessible".formatted(f), e);
}
if (unsafeClass.isInstance(fieldValue)) {
return unsafeClass.cast(fieldValue);
}
}
throw new AssertionError("Failed to find sun.misc.Unsafe instance");
}
}