Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
inclavare-containers
提交
e37be9ed
I
inclavare-containers
项目概览
openanolis
/
inclavare-containers
通知
4
Star
7
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
5
列表
看板
标记
里程碑
合并请求
0
分析
仓库
DevOps
项目成员
Pages
I
inclavare-containers
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
5
Issue
5
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
e37be9ed
编写于
8月 17, 2020
作者:
Y
YiLin.Li
提交者:
jia zhang
8月 17, 2020
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
rune/libenclave/skeleton: add sanity check in skeleton PAL APIs.
Signed-off-by:
N
Yilin Li
<
YiLin.Li@linux.alibaba.com
>
上级
cae308f6
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
38 addition
and
3 deletion
+38
-3
rune/libenclave/internal/runtime/pal/skeleton/liberpal-skeleton.c
...enclave/internal/runtime/pal/skeleton/liberpal-skeleton.c
+38
-3
未找到文件。
rune/libenclave/internal/runtime/pal/skeleton/liberpal-skeleton.c
浏览文件 @
e37be9ed
...
...
@@ -33,6 +33,7 @@
#define TOKEN "encl.token"
static
struct
sgx_secs
secs
;
static
pal_stdio_fds
pal_stdio
;
static
bool
initialized
=
false
;
static
char
*
sgx_dev_path
;
static
bool
no_sgx_flc
=
false
;
...
...
@@ -437,6 +438,10 @@ int __pal_init(pal_attr_t *attr)
int
__pal_exec
(
char
*
path
,
char
*
argv
[],
pal_stdio_fds
*
stdio
,
int
*
exit_code
)
{
if
(
path
==
NULL
||
argv
==
NULL
||
stdio
==
NULL
||
exit_code
==
NULL
)
{
return
-
1
;
}
FILE
*
fp
=
fdopen
(
stdio
->
stderr
,
"w"
);
if
(
!
fp
)
return
-
1
;
...
...
@@ -447,6 +452,8 @@ int __pal_exec(char *path, char *argv[], pal_stdio_fds *stdio, int *exit_code)
return
-
1
;
}
memcpy
(
&
pal_stdio
,
stdio
,
sizeof
(
pal_stdio_fds
));
uint64_t
result
=
0
;
int
ret
=
SGX_ENTER_1_ARG
(
ECALL_MAGIC
,
(
void
*
)
secs
.
base
,
&
result
);
if
(
ret
)
{
...
...
@@ -476,9 +483,20 @@ int __pal_create_process(pal_create_process_args *args)
return
-
1
;
}
if
((
pid
=
fork
())
<
0
)
FILE
*
fp
=
fdopen
(
args
->
stdio
->
stderr
,
"w"
);
if
(
!
fp
)
return
-
1
;
else
if
(
pid
==
0
)
{
if
(
!
initialized
)
{
fprintf
(
fp
,
"Enclave runtime skeleton uninitialized yet!
\n
"
);
fclose
(
fp
);
return
-
1
;
}
if
((
pid
=
fork
())
<
0
)
{
fclose
(
fp
);
return
-
1
;
}
else
if
(
pid
==
0
)
{
int
exit_code
,
ret
;
ret
=
__pal_exec
(
args
->
path
,
args
->
argv
,
args
->
stdio
,
&
exit_code
);
...
...
@@ -486,6 +504,7 @@ int __pal_create_process(pal_create_process_args *args)
}
else
*
args
->
pid
=
pid
;
fclose
(
fp
);
return
0
;
}
...
...
@@ -497,6 +516,11 @@ int wait4child(pal_exec_args *attr)
return
-
1
;
}
if
(
!
initialized
)
{
fprintf
(
stderr
,
"Enclave runtime skeleton uninitialized yet!
\n
"
);
return
-
1
;
}
waitpid
(
attr
->
pid
,
&
status
,
0
);
if
(
WIFEXITED
(
status
)
||
WIFSIGNALED
(
status
))
...
...
@@ -507,17 +531,28 @@ int wait4child(pal_exec_args *attr)
int
__pal_kill
(
int
pid
,
int
sig
)
{
if
(
!
initialized
)
{
fprintf
(
stderr
,
"Enclave runtime skeleton uninitialized yet!
\n
"
);
return
-
1
;
}
/* No implementation */
return
0
;
}
int
__pal_destory
(
void
)
{
FILE
*
fp
=
fdopen
(
pal_stdio
.
stderr
,
"w"
);
if
(
!
fp
)
return
-
1
;
if
(
!
initialized
)
{
fprintf
(
stderr
,
"Enclave runtime skeleton uninitialized yet!
\n
"
);
fprintf
(
fp
,
"Enclave runtime skeleton uninitialized yet!
\n
"
);
fclose
(
fp
);
return
-
1
;
}
fclose
(
fp
);
close
(
enclave_fd
);
return
0
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录