Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
kernel_linux
提交
ad05e6ca
K
kernel_linux
项目概览
OpenHarmony
/
kernel_linux
上一次同步 4 年多
通知
15
Star
8
Fork
2
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
K
kernel_linux
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
ad05e6ca
编写于
8月 07, 2017
作者:
K
Kees Cook
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'for-next/gcc-plugin/structleak' into for-next/gcc-plugins
上级
9225331b
f7dd2507
变更
3
显示空白变更内容
内联
并排
Showing
3 changed file
with
19 addition
and
2 deletion
+19
-2
arch/Kconfig
arch/Kconfig
+7
-0
scripts/Makefile.gcc-plugins
scripts/Makefile.gcc-plugins
+1
-0
scripts/gcc-plugins/structleak_plugin.c
scripts/gcc-plugins/structleak_plugin.c
+11
-2
未找到文件。
arch/Kconfig
浏览文件 @
ad05e6ca
...
...
@@ -458,6 +458,13 @@ config GCC_PLUGIN_STRUCTLEAK
* https://grsecurity.net/
* https://pax.grsecurity.net/
config GCC_PLUGIN_STRUCTLEAK_BYREF_ALL
bool "Force initialize all struct type variables passed by reference"
depends on GCC_PLUGIN_STRUCTLEAK
help
Zero initialize any struct type local variable that may be passed by
reference without having been initialized.
config GCC_PLUGIN_STRUCTLEAK_VERBOSE
bool "Report forcefully initialized variables"
depends on GCC_PLUGIN_STRUCTLEAK
...
...
scripts/Makefile.gcc-plugins
浏览文件 @
ad05e6ca
...
...
@@ -27,6 +27,7 @@ ifdef CONFIG_GCC_PLUGINS
gcc-plugin-$(CONFIG_GCC_PLUGIN_STRUCTLEAK)
+=
structleak_plugin.so
gcc-plugin-cflags-$(CONFIG_GCC_PLUGIN_STRUCTLEAK_VERBOSE)
+=
-fplugin-arg-structleak_plugin-verbose
gcc-plugin-cflags-$(CONFIG_GCC_PLUGIN_STRUCTLEAK_BYREF_ALL)
+=
-fplugin-arg-structleak_plugin-byref-all
gcc-plugin-cflags-$(CONFIG_GCC_PLUGIN_STRUCTLEAK)
+=
-DSTRUCTLEAK_PLUGIN
gcc-plugin-$(CONFIG_GCC_PLUGIN_RANDSTRUCT)
+=
randomize_layout_plugin.so
...
...
scripts/gcc-plugins/structleak_plugin.c
浏览文件 @
ad05e6ca
...
...
@@ -16,6 +16,7 @@
* Options:
* -fplugin-arg-structleak_plugin-disable
* -fplugin-arg-structleak_plugin-verbose
* -fplugin-arg-structleak_plugin-byref-all
*
* Usage:
* $ # for 4.5/4.6/C based 4.7
...
...
@@ -42,6 +43,7 @@ static struct plugin_info structleak_plugin_info = {
};
static
bool
verbose
;
static
bool
byref_all
;
static
tree
handle_user_attribute
(
tree
*
node
,
tree
name
,
tree
args
,
int
flags
,
bool
*
no_add_attrs
)
{
...
...
@@ -150,7 +152,9 @@ static void initialize(tree var)
/* these aren't the 0days you're looking for */
if
(
verbose
)
inform
(
DECL_SOURCE_LOCATION
(
var
),
"userspace variable will be forcibly initialized"
);
"%s variable will be forcibly initialized"
,
(
byref_all
&&
TREE_ADDRESSABLE
(
var
))
?
"byref"
:
"userspace"
);
/* build the initializer expression */
initializer
=
build_constructor
(
TREE_TYPE
(
var
),
NULL
);
...
...
@@ -190,7 +194,8 @@ static unsigned int structleak_execute(void)
continue
;
/* if the type is of interest, examine the variable */
if
(
TYPE_USERSPACE
(
type
))
if
(
TYPE_USERSPACE
(
type
)
||
(
byref_all
&&
TREE_ADDRESSABLE
(
var
)))
initialize
(
var
);
}
...
...
@@ -232,6 +237,10 @@ __visible int plugin_init(struct plugin_name_args *plugin_info, struct plugin_gc
verbose
=
true
;
continue
;
}
if
(
!
strcmp
(
argv
[
i
].
key
,
"byref-all"
))
{
byref_all
=
true
;
continue
;
}
error
(
G_
(
"unknown option '-fplugin-arg-%s-%s'"
),
plugin_name
,
argv
[
i
].
key
);
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录