Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Musl
提交
c5d919c8
T
Third Party Musl
项目概览
OpenHarmony
/
Third Party Musl
1 年多 前同步成功
通知
37
Star
125
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
T
Third Party Musl
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
c5d919c8
编写于
1月 30, 2023
作者:
O
openharmony_ci
提交者:
Gitee
1月 30, 2023
浏览文件
操作
浏览文件
下载
差异文件
!794 add interface dlopen_ns_ext
Merge pull request !794 from XUBO/monthly_20221018
上级
82d45776
cb613842
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
34 addition
and
0 deletion
+34
-0
porting/linux/user/include/dlfcn_ext.h
porting/linux/user/include/dlfcn_ext.h
+19
-0
porting/linux/user/ldso/dynlink.c
porting/linux/user/ldso/dynlink.c
+15
-0
未找到文件。
porting/linux/user/include/dlfcn_ext.h
浏览文件 @
c5d919c8
...
...
@@ -55,6 +55,25 @@ typedef struct {
*/
void
*
dlopen_ext
(
const
char
*
file
,
int
mode
,
const
dl_extinfo
*
extinfo
);
/**
* @brief open dso in given namespace which has own lib search paths,
* when namespace is null, it's same to dlopen_ext().
* avoid using "default" as namespace, which is the default namespace.
* @param Dl_namespace * Carry the naming information of the namespace.
* @param char * the name of the so file you want to open.
* @param int open file mode.
* -- RTLD_LAZY.
* -- RTLD_NOW.
* -- RTLD_NOLOAD.
* -- RTLD_NODELETE.
* -- RTLD_GLOBAL.
* -- RTLD_LOCAL.
* @param dl_extinfo * indicates the dl_extinfo struct,include flag and relro_fd.
* @return success: dynamic library handleoid,failed: NULL.
* @retval none.
*/
void
*
dlopen_ns_ext
(
Dl_namespace
*
,
const
char
*
,
int
,
const
dl_extinfo
*
);
#ifdef __cplusplus
}
#endif
...
...
porting/linux/user/ldso/dynlink.c
浏览文件 @
c5d919c8
...
...
@@ -3322,6 +3322,21 @@ void *dlopen_ns(Dl_namespace *dlns, const char *file, int mode)
return
dlopen_impl
(
file
,
mode
,
dlns
->
name
,
caller_addr
,
NULL
);
}
void
*
dlopen_ns_ext
(
Dl_namespace
*
dlns
,
const
char
*
file
,
int
mode
,
const
dl_extinfo
*
extinfo
)
{
const
void
*
caller_addr
=
__builtin_return_address
(
0
);
musl_log_reset
();
ld_log_reset
();
LD_LOGI
(
"dlopen_ns_ext file:%{public}s, mode:%{public}x , caller_addr:%{public}p , "
"dlns->name:%{public}s. , extinfo->flag:%{public}x"
,
file
,
mode
,
caller_addr
,
dlns
->
name
,
extinfo
?
extinfo
->
flag
:
0
);
return
dlopen_impl
(
file
,
mode
,
dlns
->
name
,
caller_addr
,
extinfo
);
}
int
dlns_create2
(
Dl_namespace
*
dlns
,
const
char
*
lib_path
,
int
flags
)
{
if
(
!
dlns
)
{
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录