哪个方法最终调用JNI_OnLoad

2022-09-03 05:47:39

我试图弄清楚内部是如何称呼JNI_OnLoad的。我最终弄清楚了下面的教程,但它并没有说明代码部分实际调用JNI_OnLoad作为内部函数调用。请帮助我找到明确调用JNI_OnLoad的链接函数。我观察到System.loadLibrary调用运行时,Runtime再次调用Classloader。但仍然找不到原生链接。

我对OnLoad.cpp中的那个特别感兴趣(android/platform_frameworks_base/blob/master/services/jni/onload.cpp)

JNI_OnLoad

jint JNI_OnLoad(JavaVM *vm, void *reserved);

The VM calls JNI_OnLoad when the native library is loaded (for example, through 
System.loadLibrary). JNI_OnLoad must return the JNI version needed by the native library.
In order to use any of the new JNI functions, a native library must export a JNI_OnLoad function that returns JNI_VERSION_1_2. If the native library does not export a JNI_OnLoad function, the VM assumes that the library only requires JNI version JNI_VERSION_1_1. If the VM does not recognize the version number returned by JNI_OnLoad, the native library cannot be loaded.

编辑:基于@Code Painters的响应,我的文件跟踪如下:

       System.loadLibrary("android_servers");
            |
            |The call System.loadLibrary(name) is effectively equivalent
            |  to the call
            |
            V
        Runtime.getRuntime().loadLibrary(name)
            |
            |public static Runtime getRuntime() {
            |        return currentRuntime;}
            |
            | // Here, also,Classloader.loadlibrary is called, 
            | but this is over-ridden (?)
            | by the Native function of Runtime.java below
            V
        /dalvik/vm/native/java_lang_Runtime.cpp (The jni native
        implementation of Runtime.java):
        /*
         * static String nativeLoad(String filename, ClassLoader loader)
         *
         * Load the specified full path as a dynamic library filled with
         * JNI-compatible methods. Returns null on success, or a failure
         * message on failure.
         */
        static void Dalvik_java_lang_Runtime_nativeLoad{
        //
        success = dvmLoadNativeCode(fileName, classLoader, &reason);
        }

我现在明白了运行时.load库被Dalvik_java_lang_Runtime_nativeLoad本机函数重载,并且Classloader.loadlibrary没有被唤起。如果我错了,请纠正我。


答案 1

对于Android,你应该看看dalvik/vm/Native.c,它定义了JNI接口。

最相关的函数是这个:

bool dvmLoadNativeCode(const char* pathName, Object* classLoader);

这是图书馆被-ed的地方。其中最有趣的部分是:dlopen()

    vonLoad = dlsym(handle, "JNI_OnLoad");
    if (vonLoad == NULL) {
        LOGD("No JNI_OnLoad found in %s %p\n", pathName, classLoader);
    } else {
        /*
         * Call JNI_OnLoad.  We have to override the current class
         * loader, which will always be "null" since the stuff at the
         * top of the stack is around Runtime.loadLibrary().  (See
         * the comments in the JNI FindClass function.)
         */
        OnLoadFunc func = vonLoad;
        Object* prevOverride = self->classLoaderOverride;

        self->classLoaderOverride = classLoader;
        oldStatus = dvmChangeStatus(self, THREAD_NATIVE);
        LOGV("+++ calling JNI_OnLoad(%s)\n", pathName);
        version = (*func)(gDvm.vmList, NULL);
        dvmChangeStatus(self, oldStatus);
        self->classLoaderOverride = prevOverride;

如您所见,只需使用返回的指针进行解析和调用即可。此代码部分的其余部分是检查 返回的值,没有什么真正令人兴奋的。JNI_OnLoaddlsym()JNI_OnLoad

我相信它看起来应该与其他VM几乎相同 - 所以只是grep for and - 毕竟它只是普通的共享库加载和符号分辨率。dlopen()dlsym()

编辑:说到您提到的确切文件,在同一目录中编译并将此文件链接到共享库中。四处寻找这个库名称会显示 services/java/com/android/server/SystemServer.javaAndroid.mklibandroid_servers

相关内容:

public static void main(String[] args) {
    // ...
    System.loadLibrary("android_servers");
    // ...
}

因此,库的加载(以及因此对 in 的调用)是在 Android 的系统服务启动上下文中执行的。如果您想了解有关系统服务如何/何时加载的更多信息,我建议您进行此演示JNI_OnLoad()onload.cpp


答案 2

推荐