dlopen failed: "has text relocations"

问题现象

  • 复现步骤
    • Android 7.0平台 + 32bit CPU
    • 安装中国移动的和彩云apk
    • 启动该App时报错

分析定位

初步分析

  • 相关错误log如下
    07-13 10:33:13.317 11237 11237 E linker  : /data/app-lib/hecaiyun_CMCC/libFastKDCore.so: has text relocations
    07-13 10:33:13.318 11237 11237 D AndroidRuntime: Shutting down VM
    07-13 10:33:13.360 11237 11237 E Exception:: Thread.getName()=main id=1 state=RUNNABLE
    07-13 10:33:13.361 11237 11237 E Exception:: Error[java.lang.UnsatisfiedLinkError: dlopen failed: /data/app-lib/hecaiyun_CMCC/libFastKDCore.so: has text relocations
    07-13 10:33:13.361 11237 11237 E Exception::    at java.lang.Runtime.loadLibrary0(Runtime.java:977)
    07-13 10:33:13.361 11237 11237 E Exception::    at java.lang.System.loadLibrary(System.java:1530)
    07-13 10:33:13.361 11237 11237 E Exception::    at com.chinamobile.mcloud.client.component.xmpp.bridge.impl.EngineBridge.<init>(Unknown Source)
    07-13 10:33:13.361 11237 11237 E Exception::    at com.chinamobile.mcloud.client.component.xmpp.bridge.impl.EngineBridge.getInstance(Unknown Source)
    07-13 10:33:13.361 11237 11237 E Exception::    at com.chinamobile.mcloud.client.component.service.impl.XmppImpl.init(Unknown Source)
    07-13 10:33:13.361 11237 11237 E Exception::    at com.chinamobile.mcloud.client.component.service.core.BaseService.onCreate(Unknown Source)
    07-13 10:33:13.361 11237 11237 E Exception::    at android.app.ActivityThread.handleCreateService(ActivityThread.java:3197)
    07-13 10:33:13.361 11237 11237 E Exception::    at android.app.ActivityThread.-wrap5(ActivityThread.java)
    07-13 10:33:13.361 11237 11237 E Exception::    at  android.app.ActivityThread$H.handleMessage(ActivityThread.java:1570)
    07-13 10:33:13.361 11237 11237 E Exception::    at android.os.Handler.dispatchMessage(Handler.java:102)
    07-13 10:33:13.361 11237 11237 E Exception::    at android.os.Looper.loop(Looper.java:154)
    07-13 10:33:13.361 11237 11237 E Exception::    at android.app.ActivityThread.main(ActivityThread.java:6162)
    07-13 10:33:13.361 11237 11237 E Exception::    at java.lang.reflect.Method.invoke(Native Method)
    07-13 10:33:13.361 11237 11237 E Exception::    at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:865)
    07-13 10:33:13.361 11237 11237 E Exception::    at  com.android.internal.os.ZygoteInit.main(ZygoteInit.java:755)
    07-13 10:33:13.361 11237 11237 E Exception:: ]
    07-13 10:33:13.456 11237 11248 I art     : Starting a blocking GC HomogeneousSpaceCompact
    07-13 10:33:13.472 11237 11244 I art     : Debugger is no longer active
    07-13 10:33:13.472 11237 11244 I art     : Starting a blocking GC Instrumentation
    07-13 10:33:14.871 11237 11283 E Exception:: Thread.getName()=Thread-3 id=202 state=RUNNABLE
    07-13 10:33:14.872 11237 11283 E Exception:: Error[java.lang.InternalError: Thread starting during runtime shutdown
    07-13 10:33:14.872 11237 11283 E Exception::    at java.lang.Thread.nativeCreate(Native Method)
    07-13 10:33:14.872 11237 11283 E Exception::    at java.lang.Thread.start(Thread.java:730)
    07-13 10:33:14.872 11237 11283 E Exception::    at com.huawei.mcs.ability.net.NetDetector.startPing(Unknown Source)
    07-13 10:33:14.872 11237 11283 E Exception::    at com.huawei.mcs.ability.net.NetDetector.netSnifferCallback(Unknown Source)
    07-13 10:33:14.872 11237 11283 E Exception::    at com.huawei.mcs.ability.net.NetSniffer.startSniffer(Unknown Source)
    07-13 10:33:14.872 11237 11283 E Exception::    at com.huawei.mcs.ability.net.NetSniffer.run(Unknown Source)
    07-13 10:33:14.872 11237 11283 E Exception:: ]
    

从错误log来看,linker检测到libFastKDCore.so有问题: 该库允许代码重定位.

排查对比

  • Nexus 6p(Android 7.0)上仍然复现

so库分析

  • 查看相应的so库

    $ readelf -a libFastKDCore.so|grep TEXTREL
      0x00000016 (TEXTREL)                    0x0
    
  • Google对此描述

    • Android 6.0 change

    • 相关描述如下:

      On previous versions of Android, if your app requested the system to load a shared library with text relocations, the system displayed a warning but still allowed the library to be loaded. Beginning in this release, the system rejects this library if your app's target SDK version is 23 or higher. To help you detect if a library failed to load, your app should log the dlopen(3) failure, and include the problem description text that the dlerror(3) call returns. To learn more about handling text relocations, see this guide.

    • Android 6.0/7.0代码

      bool soinfo::link_image(const soinfo_list_t& global_group, const soinfo_list_t& local_group,
                          const android_dlextinfo* extinfo) {
      
      local_group_root_ = local_group.front();
      if (local_group_root_ == nullptr) {
        local_group_root_ = this;
      }
      
      if ((flags_ & FLAG_LINKER) == 0 && local_group_root_ == this) {
        target_sdk_version_ = get_application_target_sdk_version();
      }
      
      VersionTracker version_tracker;
      
      if (!version_tracker.init(this)) {
        return false;
      }
      
      #if !defined(__LP64__)
      if (has_text_relocations) {
        // Fail if app is targeting sdk version > 22
        if (get_application_target_sdk_version() > 22) {
          PRINT("%s: has text relocations", get_realpath());
          DL_ERR("%s: has text relocations", get_realpath());
          return false;
        }    
        // Make segments writable to allow text relocations to work properly. We will later call
        // phdr_table_protect_segments() after all of them are applied.
        DL_WARN("%s has text relocations. This is wasting memory and prevents "
              "security hardening. Please fix.", get_realpath());
        add_dlwarning(get_realpath(), "text relocations");
        if (phdr_table_unprotect_segments(phdr, phnum, load_bias) < 0) { 
          DL_ERR("can't unprotect loadable segments for \"%s\": %s",
               get_realpath(), strerror(errno));
          return false;
        }    
      }
      #endif
      ... ...
      
    • Android 5.1

      bool soinfo::LinkImage(const android_dlextinfo* extinfo) {
      
      #if !defined(__LP64__)
        if (has_text_relocations) {
        // Make segments writable to allow text relocations to work properly. We will later call
        // phdr_table_protect_segments() after all of them are applied and all constructors are run.
        DL_WARN("%s has text relocations. This is wasting memory and prevents "
              "security hardening. Please fix.", name);
        if (phdr_table_unprotect_segments(phdr, phnum, load_bias) < 0) {
          DL_ERR("can't unprotect loadable segments for \"%s\": %s",
               name, strerror(errno));
          return false;
        }
      }
      #endif
      
    • 总结来说,针对32bit App, 若使用的so库包含text relocation,

      • 在Android 5.1会报出警告,但仍允许执行。
      • 在Android 6.0及更高版本,会停止运行(增加runtime开销影响性能, 并引入安全问题)。

对比实验

  • 基于NDK r4/r8b编译出的so库,都有此问题
    $ readelf -a libs/armeabi/libMyNdkBuild.so |grep TEXTREL
    0x00000016 (TEXTREL)                    0x0
    
  • 基于NDK r5/r11c/r14b编译出的so库,没有此问题
    $ readelf -a libs/armeabi/libMyNdkBuild.so |grep TEXTREL
    
  • 基于NDK r14b版本,编译不带-fpic的so
    • Android.mk
      LOCAL_CFLAGS += -v -fno-pic
      LOCAL_LDLIBS += -Wl,--no-warn-shared-textrel
      
    • 编译出的so库包含TEXTREL
      $ readelf -a ./app/src/main/libs/armeabi/libMyNdkBuild.so|grep TEXTREL
      0x00000016 (TEXTREL)                    0x0
      0x0000001e (FLAGS)                      SYMBOLIC TEXTREL BIND_NOW
      
    • 启动测试App, log如下
      --------- beginning of main
      07-19 14:43:30.056 10197 10197 E linker  : /data/app/com.timzhang.testjnindkbuild-1/lib/arm/libMyNdkBuild.so: has text relocations
      07-19 14:43:30.057 10197 10197 D AndroidRuntime: Shutting down VM
      --------- beginning of crash
      07-19 14:43:30.059 10197 10197 E AndroidRuntime: FATAL EXCEPTION: main
      07-19 14:43:30.059 10197 10197 E AndroidRuntime: Process: com.timzhang.testjnindkbuild, PID: 10197
      07-19 14:43:30.059 10197 10197 E AndroidRuntime: java.lang.UnsatisfiedLinkError: dlopen failed: /data/app/com.timzhang.testjnindkbuild-1/lib/arm/libMyNdkBuild.so: has text relocations
      07-19 14:43:30.059 10197 10197 E AndroidRuntime:    at java.lang.Runtime.loadLibrary0(Runtime.java:977)
      07-19 14:43:30.059 10197 10197 E AndroidRuntime:    at java.lang.System.loadLibrary(System.java:1530)
      07-19 14:43:30.059 10197 10197 E AndroidRuntime:    at com.timzhang.testjnindkbuild.MyNdk.<clinit>(MyNdk.java:5)
      07-19 14:43:30.059 10197 10197 E AndroidRuntime:    at com.timzhang.testjnindkbuild.MainActivity.onCreate(MainActivity.java:12)
      07-19 14:43:30.059 10197 10197 E AndroidRuntime:    at android.app.Activity.performCreate(Activity.java:6666)
      07-19 14:43:30.059 10197 10197 E AndroidRuntime:    at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1118)
      07-19 14:43:30.059 10197 10197 E AndroidRuntime:    at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2619)
      07-19 14:43:30.059 10197 10197 E AndroidRuntime:    at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2733)
      07-19 14:43:30.059 10197 10197 E AndroidRuntime:    at android.app.ActivityThread.-wrap12(ActivityThread.java)
      07-19 14:43:30.059 10197 10197 E AndroidRuntime:    at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1480)
      07-19 14:43:30.059 10197 10197 E AndroidRuntime:    at android.os.Handler.dispatchMessage(Handler.java:102)
      07-19 14:43:30.059 10197 10197 E AndroidRuntime:    at android.os.Looper.loop(Looper.java:154)
      07-19 14:43:30.059 10197 10197 E AndroidRuntime:    at android.app.ActivityThread.main(ActivityThread.java:6153)
      07-19 14:43:30.059 10197 10197 E AndroidRuntime:    at java.lang.reflect.Method.invoke(Native Method)
      07-19 14:43:30.059 10197 10197 E AndroidRuntime:    at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:865)
      07-19 14:43:30.059 10197 10197 E AndroidRuntime:    at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:755)
      07-19 14:43:30.061 10197 10197 D HprofFactory: Create HprofDebugEx
      

Root cause

  • dlopen出现"has text relocations"的原因在于加载的so库需要重定位, Android 6.0及更高版本已明文禁止此种情形发生。

  • 从多个NDK版本测试来看,so库包含text relocation跟编译so库的NDK版本相关,较新版本的NDK(如r14b)不存在此问题。

解决方案

  • 由于是第三方App, 需要知会App厂商,基于最新的NDK版本重新编译so库(readelf查看不再含有TEXTREL)。
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 211,194评论 6 490
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,058评论 2 385
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 156,780评论 0 346
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,388评论 1 283
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,430评论 5 384
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,764评论 1 290
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,907评论 3 406
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,679评论 0 266
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,122评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,459评论 2 325
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,605评论 1 340
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,270评论 4 329
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,867评论 3 312
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,734评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,961评论 1 265
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,297评论 2 360
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,472评论 2 348

推荐阅读更多精彩内容