一个关于 DYLD_LIBRARY_PATH 的奇怪问题

2019-08-26 22:27:58 +08:00
 Buffer2Disk
app 里面的一个可执行文件 XXX 注册成服务,然后通过 app 来调用它使用,
该可执行文件 XXX 对应的 plist 文件里面指定了 DYLD_LIBRARY_PATH 来获取动态 lib 的绝对路径~/Library/*** ,


现在的问题是:
直接 build 编译出来的 app 文件,调用这个可执行文件 XXX 启动是没问题的,

但是给 app 签名后(该可执行文件 XXX 和对应的依赖库也被签名),
启动这个服务时候动态库是从默认的相对路径 @@HOMEBREW_PREFIX@@/opt/libev/lib/libev.4.dylib 中来获取的,
因为 Apple 对这种相对路径做了权限限制,导致该可执行文件启动失败
具体错误如下
dyld: Library not loaded: @@HOMEBREW_PREFIX@@/opt/libev/lib/libev.4.dylib
Referenced from: /Users/buffer/Library/Application Support/XXX
Reason: unsafe use of relative rpath @@HOMEBREW_PREFIX@@/opt/libev/lib/libev.4.dylib in /Users/buffer/Library/Application Support/XXX with restricted binary

看了下老外对 DYLD_LIBRARY_PATH 有这段描述如下
If you run otool -L MyApp.app/Contents/MacOS/MyApp you'll see the paths to the libraries that MyApp wants to load. If any library isn't found at the specified path then dyld will look for the library in the locations specified by DYLD_FALLBACK_LIBRARY_PATH. Setting DYLD_LIBRARY_PATH causes dyld to look for the library in the given locations ahead of the path that the otool command above returned.

那么按照道理来说,动态库的查找顺序优先级应该是
DYLD_LIBRARY_PATH > 该动态库默认的路径(通过 otool -L MyApp.app 查看) > DYLD_FALLBACK_LIBRARY_PATH

所以,想问下这种获取动态库路径失败,是 Apple 签名造成的嘛?
7045 次点击
所在节点    iDev
3 条回复
txx
2019-08-27 01:20:28 +08:00
与其在这里问 不如直接读一下 dyld 源码
几年前读过 还是挺清晰的
KomeijiSatori
2019-08-27 02:13:37 +08:00
Buffer2Disk
2019-08-28 00:40:56 +08:00
找到问题原因了,是因为开启了 hardened runtime 后,没有去指定开启权限,导致一些权限默认被禁止掉了
这里被禁掉的权限就是 DYLD Environment Variables 这个

具体文档如下
https://developer.apple.com/documentation/security/hardened_runtime_entitlements

https://developer.apple.com/documentation/bundleresources/entitlements/com_apple_security_cs_allow-dyld-environment-variables

这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。

https://www.v2ex.com/t/595356

V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。

V2EX is a community of developers, designers and creative people.

© 2021 V2EX