Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
lcr
提交
3f790442
L
lcr
项目概览
openeuler
/
lcr
通知
3
Star
1
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
L
lcr
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
3f790442
编写于
8月 13, 2020
作者:
L
lifeng68
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
lcr: remove NOTIFY_SOCKET env when do fork
Signed-off-by:
N
lifeng68
<
lifeng68@huawei.com
>
上级
62664adf
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
5 addition
and
3 deletion
+5
-3
src/lcrcontainer.c
src/lcrcontainer.c
+2
-1
src/lcrcontainer_execute.c
src/lcrcontainer_execute.c
+2
-1
tests/fuzz/log_fuzz.cc
tests/fuzz/log_fuzz.cc
+1
-1
未找到文件。
src/lcrcontainer.c
浏览文件 @
3f790442
...
...
@@ -430,7 +430,7 @@ bool lcr_start(const struct lcr_start_request *request)
}
pid
=
fork
();
if
(
pid
==
(
pid_t
)
-
1
)
{
if
(
pid
==
(
pid_t
)
-
1
)
{
ERROR
(
"Failed to fork()
\n
"
);
close
(
pipefd
[
0
]);
close
(
pipefd
[
1
]);
...
...
@@ -438,6 +438,7 @@ bool lcr_start(const struct lcr_start_request *request)
}
if
(
pid
==
(
pid_t
)
0
)
{
(
void
)
unsetenv
(
"NOTIFY_SOCKET"
);
// child process, dup2 pipefd[1] to stderr
close
(
pipefd
[
0
]);
dup2
(
pipefd
[
1
],
2
);
...
...
src/lcrcontainer_execute.c
浏览文件 @
3f790442
...
...
@@ -665,7 +665,7 @@ bool do_attach(const char *name, const char *path, const struct lcr_exec_request
}
pid
=
fork
();
if
(
pid
==
(
pid_t
)
-
1
)
{
if
(
pid
==
(
pid_t
)
-
1
)
{
ERROR
(
"Failed to fork()
\n
"
);
close
(
pipefd
[
0
]);
close
(
pipefd
[
1
]);
...
...
@@ -673,6 +673,7 @@ bool do_attach(const char *name, const char *path, const struct lcr_exec_request
}
if
(
pid
==
(
pid_t
)
0
)
{
(
void
)
unsetenv
(
"NOTIFY_SOCKET"
);
if
(
lcr_util_null_stdfds
()
<
0
)
{
COMMAND_ERROR
(
"Failed to close fds"
);
exit
(
EXIT_FAILURE
);
...
...
tests/fuzz/log_fuzz.cc
浏览文件 @
3f790442
...
...
@@ -46,7 +46,7 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size)
std
::
vector
<
std
::
string
>
ret_vec
;
std
::
string
tmpstr
;
std
::
istringstream
istr
(
testData
);
while
(
std
::
getline
(
istr
,
tmpstr
,
','
))
{
while
(
std
::
getline
(
istr
,
tmpstr
,
','
))
{
ret_vec
.
push_back
(
tmpstr
);
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录