Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Xts Acts
提交
97f135e6
X
Xts Acts
项目概览
OpenHarmony
/
Xts Acts
大约 1 年 前同步成功
通知
9
Star
22
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
X
Xts Acts
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
未验证
提交
97f135e6
编写于
6月 22, 2022
作者:
O
openharmony_ci
提交者:
Gitee
6月 22, 2022
浏览文件
操作
浏览文件
下载
差异文件
!3661 【OpenHarmony3.1Release】【acts_full】【编译问题】Capability测试套用例含返回值导致编译失败解决上库
Merge pull request !3661 from 胡吉翔/OH31release_20220621_4
上级
598ae7d5
30ed9736
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
27 addition
and
25 deletion
+27
-25
security_lite/permission_posix/capability/src/ActsCapabilityTest.cpp
...te/permission_posix/capability/src/ActsCapabilityTest.cpp
+27
-25
未找到文件。
security_lite/permission_posix/capability/src/ActsCapabilityTest.cpp
100755 → 100644
浏览文件 @
97f135e6
...
@@ -55,8 +55,8 @@ static void CreateTxt()
...
@@ -55,8 +55,8 @@ static void CreateTxt()
static
int
CapsetOnlySETPCAP
(
int
num
)
static
int
CapsetOnlySETPCAP
(
int
num
)
{
{
struct
__user_cap_header_struct
capheader
;
struct
__user_cap_header_struct
capheader
;
errno_t
result
=
memset_s
(
&
capheader
,
sizeof
(
struct
__user_cap_header_struct
),
0
,
errno_t
result
=
memset_s
(
&
capheader
,
sizeof
(
struct
__user_cap_header_struct
),
sizeof
(
struct
__user_cap_header_struct
));
0
,
sizeof
(
struct
__user_cap_header_struct
));
if
(
result
!=
EOK
)
{
if
(
result
!=
EOK
)
{
LOG
(
"CapgetWithAllCap memset_s failed"
);
LOG
(
"CapgetWithAllCap memset_s failed"
);
return
FALSE
;
return
FALSE
;
...
@@ -85,8 +85,8 @@ static int CapsetOnlySETPCAP(int num)
...
@@ -85,8 +85,8 @@ static int CapsetOnlySETPCAP(int num)
static
int
AddCapUnauthorized
(
int
num
)
static
int
AddCapUnauthorized
(
int
num
)
{
{
struct
__user_cap_header_struct
capheader
;
struct
__user_cap_header_struct
capheader
;
errno_t
result
=
memset_s
(
&
capheader
,
sizeof
(
struct
__user_cap_header_struct
),
0
,
errno_t
result
=
memset_s
(
&
capheader
,
sizeof
(
struct
__user_cap_header_struct
),
sizeof
(
struct
__user_cap_header_struct
));
0
,
sizeof
(
struct
__user_cap_header_struct
));
if
(
result
!=
EOK
)
{
if
(
result
!=
EOK
)
{
LOG
(
"CapgetWithAllCap memset_s failed"
);
LOG
(
"CapgetWithAllCap memset_s failed"
);
return
FALSE
;
return
FALSE
;
...
@@ -115,8 +115,8 @@ static int AddCapUnauthorized(int num)
...
@@ -115,8 +115,8 @@ static int AddCapUnauthorized(int num)
static
int
CapgetWithAllCap
(
int
num
)
static
int
CapgetWithAllCap
(
int
num
)
{
{
struct
__user_cap_header_struct
capheader
=
{
0
};
struct
__user_cap_header_struct
capheader
=
{
0
};
errno_t
result
=
memset_s
(
&
capheader
,
sizeof
(
struct
__user_cap_header_struct
),
0
,
errno_t
result
=
memset_s
(
&
capheader
,
sizeof
(
struct
__user_cap_header_struct
),
sizeof
(
struct
__user_cap_header_struct
));
0
,
sizeof
(
struct
__user_cap_header_struct
));
if
(
result
!=
EOK
)
{
if
(
result
!=
EOK
)
{
LOG
(
"CapgetWithAllCap memset_s failed"
);
LOG
(
"CapgetWithAllCap memset_s failed"
);
return
FALSE
;
return
FALSE
;
...
@@ -148,8 +148,8 @@ static int CapgetWithAllCap(int num)
...
@@ -148,8 +148,8 @@ static int CapgetWithAllCap(int num)
static
int
CapgetWithNoCap
(
int
num
)
static
int
CapgetWithNoCap
(
int
num
)
{
{
struct
__user_cap_header_struct
capheader
=
{
0
};
struct
__user_cap_header_struct
capheader
=
{
0
};
errno_t
result
=
memset_s
(
&
capheader
,
sizeof
(
struct
__user_cap_header_struct
),
0
,
errno_t
result
=
memset_s
(
&
capheader
,
sizeof
(
struct
__user_cap_header_struct
),
sizeof
(
struct
__user_cap_header_struct
));
0
,
sizeof
(
struct
__user_cap_header_struct
));
if
(
result
!=
EOK
)
{
if
(
result
!=
EOK
)
{
LOG
(
"CapgetWithAllCap memset_s failed"
);
LOG
(
"CapgetWithAllCap memset_s failed"
);
return
FALSE
;
return
FALSE
;
...
@@ -181,8 +181,8 @@ static int CapgetWithNoCap(int num)
...
@@ -181,8 +181,8 @@ static int CapgetWithNoCap(int num)
static
int
CapgetOnlySETPCAP
(
int
num
)
static
int
CapgetOnlySETPCAP
(
int
num
)
{
{
struct
__user_cap_header_struct
capheader
=
{
0
};
struct
__user_cap_header_struct
capheader
=
{
0
};
errno_t
result
=
memset_s
(
&
capheader
,
sizeof
(
struct
__user_cap_header_struct
),
0
,
errno_t
result
=
memset_s
(
&
capheader
,
sizeof
(
struct
__user_cap_header_struct
),
sizeof
(
struct
__user_cap_header_struct
));
0
,
sizeof
(
struct
__user_cap_header_struct
));
if
(
result
!=
EOK
)
{
if
(
result
!=
EOK
)
{
LOG
(
"CapgetWithAllCap memset_s failed"
);
LOG
(
"CapgetWithAllCap memset_s failed"
);
return
FALSE
;
return
FALSE
;
...
@@ -258,8 +258,8 @@ static int CapsetWithoutSETPCAP()
...
@@ -258,8 +258,8 @@ static int CapsetWithoutSETPCAP()
static
int
CapsetWithVersion
(
pid_t
pid
,
unsigned
int
version
)
static
int
CapsetWithVersion
(
pid_t
pid
,
unsigned
int
version
)
{
{
struct
__user_cap_header_struct
capheader
=
{
0
};
struct
__user_cap_header_struct
capheader
=
{
0
};
errno_t
result
=
memset_s
(
&
capheader
,
sizeof
(
struct
__user_cap_header_struct
),
0
,
errno_t
result
=
memset_s
(
&
capheader
,
sizeof
(
struct
__user_cap_header_struct
),
sizeof
(
struct
__user_cap_header_struct
));
0
,
sizeof
(
struct
__user_cap_header_struct
));
if
(
result
!=
EOK
)
{
if
(
result
!=
EOK
)
{
LOG
(
"CapgetWithAllCap memset_s failed"
);
LOG
(
"CapgetWithAllCap memset_s failed"
);
return
FALSE
;
return
FALSE
;
...
@@ -285,8 +285,8 @@ static int CapsetWithVersion(pid_t pid, unsigned int version)
...
@@ -285,8 +285,8 @@ static int CapsetWithVersion(pid_t pid, unsigned int version)
static
int
CapgetWithVersion
(
pid_t
pid
,
unsigned
int
version
)
static
int
CapgetWithVersion
(
pid_t
pid
,
unsigned
int
version
)
{
{
struct
__user_cap_header_struct
capheader
=
{
0
};
struct
__user_cap_header_struct
capheader
=
{
0
};
errno_t
result
=
memset_s
(
&
capheader
,
sizeof
(
struct
__user_cap_header_struct
),
0
,
errno_t
result
=
memset_s
(
&
capheader
,
sizeof
(
struct
__user_cap_header_struct
),
sizeof
(
struct
__user_cap_header_struct
));
0
,
sizeof
(
struct
__user_cap_header_struct
));
if
(
result
!=
EOK
)
{
if
(
result
!=
EOK
)
{
LOG
(
"CapgetWithAllCap memset_s failed"
);
LOG
(
"CapgetWithAllCap memset_s failed"
);
return
FALSE
;
return
FALSE
;
...
@@ -308,12 +308,14 @@ static int CapgetWithVersion(pid_t pid, unsigned int version)
...
@@ -308,12 +308,14 @@ static int CapgetWithVersion(pid_t pid, unsigned int version)
}
}
return
0
;
return
0
;
}
}
#endif
#if defined(LITE_FS_VFAT)
static
int
CapgetWithCaps
(
pid_t
pid
,
unsigned
int
caps
)
static
int
CapgetWithCaps
(
pid_t
pid
,
unsigned
int
caps
)
{
{
struct
__user_cap_header_struct
capheader
=
{
0
};
struct
__user_cap_header_struct
capheader
=
{
0
};
errno_t
result
=
memset_s
(
&
capheader
,
sizeof
(
struct
__user_cap_header_struct
),
0
,
errno_t
result
=
memset_s
(
&
capheader
,
sizeof
(
struct
__user_cap_header_struct
),
sizeof
(
struct
__user_cap_header_struct
));
0
,
sizeof
(
struct
__user_cap_header_struct
));
if
(
result
!=
EOK
)
{
if
(
result
!=
EOK
)
{
LOG
(
"CapgetWithAllCap memset_s failed"
);
LOG
(
"CapgetWithAllCap memset_s failed"
);
return
FALSE
;
return
FALSE
;
...
@@ -797,11 +799,11 @@ HWTEST_F(CapabilityTestSuite, CapabilityTest1500, Reliability | MediumTest | Lev
...
@@ -797,11 +799,11 @@ HWTEST_F(CapabilityTestSuite, CapabilityTest1500, Reliability | MediumTest | Lev
if
(
pid
==
0
)
{
if
(
pid
==
0
)
{
int
exitCode
=
0
;
int
exitCode
=
0
;
struct
__user_cap_header_struct
capheader
=
{
0
};
struct
__user_cap_header_struct
capheader
=
{
0
};
errno_t
result
=
memset_s
(
&
capheader
,
sizeof
(
struct
__user_cap_header_struct
),
0
,
errno_t
result
=
memset_s
(
&
capheader
,
sizeof
(
struct
__user_cap_header_struct
),
sizeof
(
struct
__user_cap_header_struct
));
0
,
sizeof
(
struct
__user_cap_header_struct
));
if
(
result
!=
EOK
)
{
if
(
result
!=
EOK
)
{
LOG
(
"CapgetWithAllCap memset_s failed"
);
LOG
(
"CapgetWithAllCap memset_s failed"
);
return
FALSE
;
ASSERT_TRUE
(
false
)
;
};
};
capheader
.
version
=
_LINUX_CAPABILITY_VERSION_3
;
capheader
.
version
=
_LINUX_CAPABILITY_VERSION_3
;
capheader
.
pid
=
0
;
capheader
.
pid
=
0
;
...
@@ -810,7 +812,7 @@ HWTEST_F(CapabilityTestSuite, CapabilityTest1500, Reliability | MediumTest | Lev
...
@@ -810,7 +812,7 @@ HWTEST_F(CapabilityTestSuite, CapabilityTest1500, Reliability | MediumTest | Lev
LINUX_FULL_CAP
,
CAP_NUM
*
sizeof
(
struct
__user_cap_data_struct
));
LINUX_FULL_CAP
,
CAP_NUM
*
sizeof
(
struct
__user_cap_data_struct
));
if
(
result
!=
EOK
)
{
if
(
result
!=
EOK
)
{
LOG
(
"CapgetWithAllCap memset_s failed"
);
LOG
(
"CapgetWithAllCap memset_s failed"
);
return
FALSE
;
ASSERT_TRUE
(
false
)
;
};
};
capdata
[
CAP_TO_INDEX
(
INVALID_CAP_TO_INDEX
)].
permitted
&=
~
CAP_TO_MASK
(
INVALID_CAP_TO_INDEX
);
capdata
[
CAP_TO_INDEX
(
INVALID_CAP_TO_INDEX
)].
permitted
&=
~
CAP_TO_MASK
(
INVALID_CAP_TO_INDEX
);
capdata
[
CAP_TO_INDEX
(
INVALID_CAP_TO_INDEX
)].
effective
&=
~
CAP_TO_MASK
(
INVALID_CAP_TO_INDEX
);
capdata
[
CAP_TO_INDEX
(
INVALID_CAP_TO_INDEX
)].
effective
&=
~
CAP_TO_MASK
(
INVALID_CAP_TO_INDEX
);
...
@@ -1132,19 +1134,19 @@ HWTEST_F(CapabilityTestSuite, CapabilityTest2300, Security | MediumTest | Level1
...
@@ -1132,19 +1134,19 @@ HWTEST_F(CapabilityTestSuite, CapabilityTest2300, Security | MediumTest | Level1
{
{
int
ret
;
int
ret
;
struct
__user_cap_header_struct
capheader
=
{
0
};
struct
__user_cap_header_struct
capheader
=
{
0
};
errno_t
result
=
memset_s
(
&
capheader
,
sizeof
(
struct
__user_cap_header_struct
),
0
,
errno_t
result
=
memset_s
(
&
capheader
,
sizeof
(
struct
__user_cap_header_struct
),
sizeof
(
struct
__user_cap_header_struct
));
0
,
sizeof
(
struct
__user_cap_header_struct
));
if
(
result
!=
EOK
)
{
if
(
result
!=
EOK
)
{
LOG
(
"CapgetWithAllCap memset_s failed"
);
LOG
(
"CapgetWithAllCap memset_s failed"
);
return
FALSE
;
ASSERT_TRUE
(
false
)
;
};
};
capheader
.
version
=
_LINUX_CAPABILITY_VERSION_3
;
capheader
.
version
=
_LINUX_CAPABILITY_VERSION_3
;
struct
__user_cap_data_struct
capdataget
[
CAP_NUM
]
=
{
{
0
},
{
0
}
};
struct
__user_cap_data_struct
capdataget
[
CAP_NUM
]
=
{
{
0
},
{
0
}
};
result
=
memset_s
(
capdataget
,
CAP_NUM
*
sizeof
(
struct
__user_cap_data_struct
),
result
=
memset_s
(
capdataget
,
CAP_NUM
*
sizeof
(
struct
__user_cap_data_struct
),
0
,
CAP_NUM
*
sizeof
(
struct
__user_cap_data_struct
));
0
,
CAP_NUM
*
sizeof
(
struct
__user_cap_data_struct
));
if
(
result
!=
EOK
)
{
if
(
result
!=
EOK
)
{
LOG
(
"CapgetWithAllCap memset_s failed"
);
LOG
(
"CapgetWithAllCap memset_s failed"
);
return
FALSE
;
ASSERT_TRUE
(
false
)
;
};
};
pid_t
pid
=
getpid
();
pid_t
pid
=
getpid
();
for
(
int
num
=
OTHER_PID
;
num
<=
pid
;
num
++
)
{
for
(
int
num
=
OTHER_PID
;
num
<=
pid
;
num
++
)
{
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录