Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Startup Init Lite
提交
dc035ab7
S
Startup Init Lite
项目概览
OpenHarmony
/
Startup Init Lite
1 年多 前同步成功
通知
3
Star
37
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
S
Startup Init Lite
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
dc035ab7
编写于
5月 25, 2023
作者:
O
openharmony_ci
提交者:
Gitee
5月 25, 2023
浏览文件
操作
浏览文件
下载
差异文件
!1981 修复seccomp的脚本工具
Merge pull request !1981 from 夏不白/fix_seccomp_tool
上级
77476028
92a4fa8e
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
6 addition
and
4 deletion
+6
-4
services/modules/seccomp/scripts/tools/audit_log_analysis.py
services/modules/seccomp/scripts/tools/audit_log_analysis.py
+1
-1
services/modules/seccomp/scripts/tools/collect_elf_syscall.py
...ices/modules/seccomp/scripts/tools/collect_elf_syscall.py
+3
-3
services/modules/seccomp/scripts/tools/libc_static_analysis.py
...ces/modules/seccomp/scripts/tools/libc_static_analysis.py
+2
-0
未找到文件。
services/modules/seccomp/scripts/tools/audit_log_analysis.py
浏览文件 @
dc035ab7
...
...
@@ -59,7 +59,7 @@ def get_item_content(name_nr_table, arch_nr_table):
syscall_name_dict
.
get
(
'arm'
).
remove
(
func_name
)
else
:
content
=
'{}{};arm64
\n
'
.
format
(
content
,
func_name
)
if
not
syscall_name_dict
.
get
(
'arm'
):
if
syscall_name_dict
.
get
(
'arm'
):
content
=
'{}{};arm
\n
'
.
format
(
content
,
';arm
\n
'
.
join
(
[
func_name
for
func_name
in
syscall_name_dict
.
get
(
'arm'
)]))
...
...
services/modules/seccomp/scripts/tools/collect_elf_syscall.py
浏览文件 @
dc035ab7
...
...
@@ -67,7 +67,7 @@ def get_lib_path(elf_path, elf_name, cmd_extra):
grep_unstrip
=
' | grep unstripped | grep -v _x64 {}'
.
format
(
cmd_extra
)
if
elf_name
==
'libc++.so'
:
grep_unstrip
=
''
grep_unstrip
=
'
| grep aarch64-linux
'
cmd
=
'find {} -name {}{}'
.
format
(
elf_path
,
elf_name
,
grep_unstrip
)
result_list
=
os
.
popen
(
cmd
).
read
().
split
(
'
\n
'
)
result
=
result_list
[
0
].
strip
()
...
...
@@ -281,9 +281,9 @@ def get_function_name_nr_table(src_syscall_path):
def
collect_concrete_syscall
(
args
):
if
args
.
target_cpu
==
'arm64'
:
arch_str
=
'aarch64'
arch_str
=
'aarch64
-linux
'
elif
args
.
target_cpu
==
'arm'
:
arch_str
=
'arm'
arch_str
=
'arm
-linux
'
libc_path
=
get_lib_path
(
args
.
src_elf_path
,
'libc.so'
,
' | grep '
+
arch_str
)
libc_asm_path
=
generate_libc_asm
(
args
.
target_cpu
,
libc_path
,
'.'
)
...
...
services/modules/seccomp/scripts/tools/libc_static_analysis.py
浏览文件 @
dc035ab7
...
...
@@ -61,6 +61,8 @@ def remove_head_zero(addr):
def
line_find_syscall_nr
(
line
,
nr_set
,
nr_last
):
nr
=
nr_last
is_find_nr
=
False
is_find_svc
=
True
if
';'
in
line
:
nr_tmp
,
is_digit
=
gen_policy
.
str_convert_to_int
(
line
[
line
.
find
(
'0x'
):])
else
:
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录