Skip to content

Commit ad05e6c

Browse files
committed
Merge branch 'for-next/gcc-plugin/structleak' into for-next/gcc-plugins
2 parents 9225331 + f7dd250 commit ad05e6c

File tree

3 files changed

+19
-2
lines changed

3 files changed

+19
-2
lines changed

arch/Kconfig

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -458,6 +458,13 @@ config GCC_PLUGIN_STRUCTLEAK
458458
* https://grsecurity.net/
459459
* https://pax.grsecurity.net/
460460

461+
config GCC_PLUGIN_STRUCTLEAK_BYREF_ALL
462+
bool "Force initialize all struct type variables passed by reference"
463+
depends on GCC_PLUGIN_STRUCTLEAK
464+
help
465+
Zero initialize any struct type local variable that may be passed by
466+
reference without having been initialized.
467+
461468
config GCC_PLUGIN_STRUCTLEAK_VERBOSE
462469
bool "Report forcefully initialized variables"
463470
depends on GCC_PLUGIN_STRUCTLEAK

scripts/Makefile.gcc-plugins

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ ifdef CONFIG_GCC_PLUGINS
2727

2828
gcc-plugin-$(CONFIG_GCC_PLUGIN_STRUCTLEAK) += structleak_plugin.so
2929
gcc-plugin-cflags-$(CONFIG_GCC_PLUGIN_STRUCTLEAK_VERBOSE) += -fplugin-arg-structleak_plugin-verbose
30+
gcc-plugin-cflags-$(CONFIG_GCC_PLUGIN_STRUCTLEAK_BYREF_ALL) += -fplugin-arg-structleak_plugin-byref-all
3031
gcc-plugin-cflags-$(CONFIG_GCC_PLUGIN_STRUCTLEAK) += -DSTRUCTLEAK_PLUGIN
3132

3233
gcc-plugin-$(CONFIG_GCC_PLUGIN_RANDSTRUCT) += randomize_layout_plugin.so

scripts/gcc-plugins/structleak_plugin.c

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
* Options:
1717
* -fplugin-arg-structleak_plugin-disable
1818
* -fplugin-arg-structleak_plugin-verbose
19+
* -fplugin-arg-structleak_plugin-byref-all
1920
*
2021
* Usage:
2122
* $ # for 4.5/4.6/C based 4.7
@@ -42,6 +43,7 @@ static struct plugin_info structleak_plugin_info = {
4243
};
4344

4445
static bool verbose;
46+
static bool byref_all;
4547

4648
static tree handle_user_attribute(tree *node, tree name, tree args, int flags, bool *no_add_attrs)
4749
{
@@ -150,7 +152,9 @@ static void initialize(tree var)
150152
/* these aren't the 0days you're looking for */
151153
if (verbose)
152154
inform(DECL_SOURCE_LOCATION(var),
153-
"userspace variable will be forcibly initialized");
155+
"%s variable will be forcibly initialized",
156+
(byref_all && TREE_ADDRESSABLE(var)) ? "byref"
157+
: "userspace");
154158

155159
/* build the initializer expression */
156160
initializer = build_constructor(TREE_TYPE(var), NULL);
@@ -190,7 +194,8 @@ static unsigned int structleak_execute(void)
190194
continue;
191195

192196
/* if the type is of interest, examine the variable */
193-
if (TYPE_USERSPACE(type))
197+
if (TYPE_USERSPACE(type) ||
198+
(byref_all && TREE_ADDRESSABLE(var)))
194199
initialize(var);
195200
}
196201

@@ -232,6 +237,10 @@ __visible int plugin_init(struct plugin_name_args *plugin_info, struct plugin_gc
232237
verbose = true;
233238
continue;
234239
}
240+
if (!strcmp(argv[i].key, "byref-all")) {
241+
byref_all = true;
242+
continue;
243+
}
235244
error(G_("unknown option '-fplugin-arg-%s-%s'"), plugin_name, argv[i].key);
236245
}
237246

0 commit comments

Comments
 (0)