summaryrefslogtreecommitdiffstats
path: root/libnativebridge/native_bridge.cc
diff options
context:
space:
mode:
authorAndreas Gampe <agampe@google.com>2014-09-02 21:17:03 -0700
committerAndreas Gampe <agampe@google.com>2014-09-04 12:57:54 -0700
commit035bd7541ed909344348b6a4e17a7ef01a434653 (patch)
tree81254329fce6375215ddb1844673aeb072b022ff /libnativebridge/native_bridge.cc
parent35a76df583a07524bec5ccaae8082a00e0c06867 (diff)
downloadsystem_core-035bd7541ed909344348b6a4e17a7ef01a434653.zip
system_core-035bd7541ed909344348b6a4e17a7ef01a434653.tar.gz
system_core-035bd7541ed909344348b6a4e17a7ef01a434653.tar.bz2
NativeBridge: Refactor for new initialization flow
Setup becomes Load, have explicit Initialize and Unload. Change-Id: I5a20de1cb68dd1802937b369b14c50c9c1031c67
Diffstat (limited to 'libnativebridge/native_bridge.cc')
-rw-r--r--libnativebridge/native_bridge.cc182
1 files changed, 116 insertions, 66 deletions
diff --git a/libnativebridge/native_bridge.cc b/libnativebridge/native_bridge.cc
index 2205f45..6602d3f 100644
--- a/libnativebridge/native_bridge.cc
+++ b/libnativebridge/native_bridge.cc
@@ -19,27 +19,53 @@
#include <cutils/log.h>
#include <dlfcn.h>
#include <stdio.h>
-#include "utils/Mutex.h"
namespace android {
-static Mutex native_bridge_lock("native bridge lock");
-
// The symbol name exposed by native-bridge with the type of NativeBridgeCallbacks.
static constexpr const char* kNativeBridgeInterfaceSymbol = "NativeBridgeItf";
-// The filename of the library we are supposed to load.
-static const char* native_bridge_library_filename = nullptr;
+enum class NativeBridgeState {
+ kNotSetup, // Initial state.
+ kOpened, // After successful dlopen.
+ kInitialized, // After successful initialization.
+ kClosed // Closed or errors.
+};
+
+static const char* kNotSetupString = "kNotSetup";
+static const char* kOpenedString = "kOpened";
+static const char* kInitializedString = "kInitialized";
+static const char* kClosedString = "kClosed";
+
+static const char* GetNativeBridgeStateString(NativeBridgeState state) {
+ switch (state) {
+ case NativeBridgeState::kNotSetup:
+ return kNotSetupString;
+
+ case NativeBridgeState::kOpened:
+ return kOpenedString;
+
+ case NativeBridgeState::kInitialized:
+ return kInitializedString;
+
+ case NativeBridgeState::kClosed:
+ return kClosedString;
+ }
+}
+
+// Current state of the native bridge.
+static NativeBridgeState state = NativeBridgeState::kNotSetup;
-// Whether a native bridge is available (loaded and ready).
-static bool available = false;
-// Whether we have already initialized (or tried to).
-static bool initialized = false;
// Whether we had an error at some point.
static bool had_error = false;
+// Handle of the loaded library.
+static void* native_bridge_handle = nullptr;
+// Pointer to the callbacks. Available as soon as LoadNativeBridge succeeds, but only initialized
+// later.
static NativeBridgeCallbacks* callbacks = nullptr;
+// Callbacks provided by the environment to the bridge. Passed to LoadNativeBridge.
static const NativeBridgeRuntimeCallbacks* runtime_callbacks = nullptr;
// Characters allowed in a native bridge filename. The first character must
@@ -83,81 +109,99 @@ bool NativeBridgeNameAcceptable(const char* nb_library_filename) {
}
}
-void SetupNativeBridge(const char* nb_library_filename,
- const NativeBridgeRuntimeCallbacks* runtime_cbs) {
- Mutex::Autolock auto_lock(native_bridge_lock);
+bool LoadNativeBridge(const char* nb_library_filename,
+ const NativeBridgeRuntimeCallbacks* runtime_cbs) {
+ // We expect only one place that calls LoadNativeBridge: Runtime::Init. At that point we are not
+ // multi-threaded, so we do not need locking here.
- if (initialized || native_bridge_library_filename != nullptr) {
+ if (state != NativeBridgeState::kNotSetup) {
// Setup has been called before. Ignore this call.
- ALOGW("Called SetupNativeBridge for an already set up native bridge.");
+ ALOGW("Called LoadNativeBridge for an already set up native bridge. State is %s.",
+ GetNativeBridgeStateString(state));
// Note: counts as an error, even though the bridge may be functional.
had_error = true;
- return;
+ return false;
}
- runtime_callbacks = runtime_cbs;
-
- if (nb_library_filename == nullptr) {
- available = false;
- initialized = true;
+ if (nb_library_filename == nullptr || *nb_library_filename == 0) {
+ state = NativeBridgeState::kClosed;
+ return true;
} else {
- // Check whether it's an empty string.
- if (*nb_library_filename == 0) {
- available = false;
- initialized = true;
- } else if (!NativeBridgeNameAcceptable(nb_library_filename)) {
- available = false;
- initialized = true;
+ if (!NativeBridgeNameAcceptable(nb_library_filename)) {
+ state = NativeBridgeState::kClosed;
had_error = true;
- }
+ } else {
+ // Try to open the library.
+ void* handle = dlopen(nb_library_filename, RTLD_LAZY);
+ if (handle != nullptr) {
+ callbacks = reinterpret_cast<NativeBridgeCallbacks*>(dlsym(handle,
+ kNativeBridgeInterfaceSymbol));
+ if (callbacks != nullptr) {
+ // Store the handle for later.
+ native_bridge_handle = handle;
+ } else {
+ dlclose(handle);
+ }
+ }
- if (!initialized) {
- // Didn't find a name error or empty string, assign it.
- native_bridge_library_filename = nb_library_filename;
+ // Two failure conditions: could not find library (dlopen failed), or could not find native
+ // bridge interface (dlsym failed). Both are an error and close the native bridge.
+ if (callbacks == nullptr) {
+ had_error = true;
+ state = NativeBridgeState::kClosed;
+ } else {
+ runtime_callbacks = runtime_cbs;
+ state = NativeBridgeState::kOpened;
+ }
}
+ return state == NativeBridgeState::kOpened;
}
}
-static bool NativeBridgeInitialize() {
- Mutex::Autolock auto_lock(native_bridge_lock);
+bool InitializeNativeBridge() {
+ // We expect only one place that calls InitializeNativeBridge: Runtime::DidForkFromZygote. At that
+ // point we are not multi-threaded, so we do not need locking here.
- if (initialized) {
- // Somebody did it before.
- return available;
- }
-
- available = false;
-
- if (native_bridge_library_filename == nullptr) {
- // Called initialize without setup. dlopen has special semantics for nullptr input.
- // So just call it a day here. This counts as an error.
- initialized = true;
+ if (state == NativeBridgeState::kOpened) {
+ // Try to initialize.
+ if (callbacks->initialize(runtime_callbacks)) {
+ state = NativeBridgeState::kInitialized;
+ } else {
+ // Unload the library.
+ dlclose(native_bridge_handle);
+ had_error = true;
+ state = NativeBridgeState::kClosed;
+ }
+ } else {
had_error = true;
- return false;
+ state = NativeBridgeState::kClosed;
}
- void* handle = dlopen(native_bridge_library_filename, RTLD_LAZY);
- if (handle != nullptr) {
- callbacks = reinterpret_cast<NativeBridgeCallbacks*>(dlsym(handle,
- kNativeBridgeInterfaceSymbol));
+ return state == NativeBridgeState::kInitialized;
+}
- if (callbacks != nullptr) {
- available = callbacks->initialize(runtime_callbacks);
- }
+void UnloadNativeBridge() {
+ // We expect only one place that calls UnloadNativeBridge: Runtime::DidForkFromZygote. At that
+ // point we are not multi-threaded, so we do not need locking here.
- if (!available) {
- // If we fail initialization, this counts as an error.
+ switch(state) {
+ case NativeBridgeState::kOpened:
+ case NativeBridgeState::kInitialized:
+ // Unload.
+ dlclose(native_bridge_handle);
+ break;
+
+ case NativeBridgeState::kNotSetup:
+ // Not even set up. Error.
had_error = true;
- dlclose(handle);
- }
- } else {
- // Being unable to open the library counts as an error.
- had_error = true;
- }
+ break;
- initialized = true;
+ case NativeBridgeState::kClosed:
+ // Ignore.
+ break;
+ }
- return available;
+ state = NativeBridgeState::kClosed;
}
bool NativeBridgeError() {
@@ -165,11 +209,17 @@ bool NativeBridgeError() {
}
bool NativeBridgeAvailable() {
- return NativeBridgeInitialize();
+ return state == NativeBridgeState::kOpened || state == NativeBridgeState::kInitialized;
+}
+
+bool NativeBridgeInitialized() {
+ // Calls of this are supposed to happen in a state where the native bridge is stable, i.e., after
+ // Runtime::DidForkFromZygote. In that case we do not need a lock.
+ return state == NativeBridgeState::kInitialized;
}
void* NativeBridgeLoadLibrary(const char* libpath, int flag) {
- if (NativeBridgeInitialize()) {
+ if (NativeBridgeInitialized()) {
return callbacks->loadLibrary(libpath, flag);
}
return nullptr;
@@ -177,14 +227,14 @@ void* NativeBridgeLoadLibrary(const char* libpath, int flag) {
void* NativeBridgeGetTrampoline(void* handle, const char* name, const char* shorty,
uint32_t len) {
- if (NativeBridgeInitialize()) {
+ if (NativeBridgeInitialized()) {
return callbacks->getTrampoline(handle, name, shorty, len);
}
return nullptr;
}
bool NativeBridgeIsSupported(const char* libpath) {
- if (NativeBridgeInitialize()) {
+ if (NativeBridgeInitialized()) {
return callbacks->isSupported(libpath);
}
return false;