菜鸟教程小白 发表于 2022-12-12 15:00:23

ios - 检测代码是否在 Framework vs. App vs. Bundle


                                            <p><p>有没有办法检测正在编译的代码是在框架、 bundle 还是动态库中?</p>

<p>原因是因为崩溃报告库需要在获取结构变量的地址之前知道它是否存在..</p>

<p>IE:</p>

<pre><code>#ifdef MH_EXECUTE_SYM
return (uint8_t*)&amp;_mh_execute_header;
#else
return (uint8_t*)&amp;_mh_dylib_header;
#endif
</code></pre>

<p>问题是 <code>MH_EXECUTE_SYM</code>, <code>MH_BUNDLE_SYM</code>, <code>MH_DYLIB_SYM</code> 总是为每一种可执行文件、 bundle 、框架定义..</p >

<p>所以我需要一种方法来确定要获取哪个结构变量的地址。有什么想法吗?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>看起来您真的只是想获得一个指向适当的 <code>mach_header_64</code>(或 32 位系统上的 <code>mach_header</code>)的指针。</p>

<p>如果你有一个指针,你可以使用 <code>dladdr</code> 函数找出它是从哪个(如果有的话)mach-o 加载的。该函数填充了一个 <code>Dl_info</code> 结构,其中包括一个指向 mach-o 的 <code>mach_header_64</code> 的指针。</p>

<pre><code>// For TARGET_RT_64_BIT:
#import &lt;TargetConditionals.h&gt;

// For dladdr:
#import &lt;dlfcn.h&gt;

// For mach_header and mach_header_64:
#import &lt;mach-o/loader.h&gt;

#ifdef TARGET_RT_64_BIT

struct mach_header_64 *mach_header_for_address(const void *address) {
    Dl_info info;
    if (dladdr(address, &amp;info) == 0) {
      // address doesn&#39;t point into a mach-o.
      return 0;
    }
    struct mach_header_64 *header = (struct mach_header_64 *)info.dli_fbase;
    if (header-&gt;magic != MH_MAGIC_64) {
      // Something went wrong...
      return 0;
    }

    return header;
}

#else

struct mach_header mach_header_for_address(const void *address) {
    Dl_info info;
    if (dladdr(address, &amp;info) == 0) {
      // address doesn&#39;t point into a mach-o.
      return 0;
    }
    struct mach_header *header = (struct mach_header *)info.dli_fbase;
    if (header-&gt;magic != MH_MAGIC) {
      // Something went wrong...
      return 0;
    }

    return header;
}

#endif
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 检测代码是否在 Framework vs. App vs. Bundle,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/54222359/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/54222359/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 检测代码是否在 Framework vs. App vs. Bundle