1*fa82cce7SThomas Gleixner // SPDX-License-Identifier: GPL-2.0-only
2c61f13eaSKees Cook /*
3c61f13eaSKees Cook * Copyright 2013-2017 by PaX Team <pageexec@freemail.hu>
4c61f13eaSKees Cook *
5c61f13eaSKees Cook * Note: the choice of the license means that the compilation process is
6c61f13eaSKees Cook * NOT 'eligible' as defined by gcc's library exception to the GPL v3,
7c61f13eaSKees Cook * but for the kernel it doesn't matter since it doesn't link against
8c61f13eaSKees Cook * any of the gcc libraries
9c61f13eaSKees Cook *
10c61f13eaSKees Cook * gcc plugin to forcibly initialize certain local variables that could
11c61f13eaSKees Cook * otherwise leak kernel stack to userland if they aren't properly initialized
12c61f13eaSKees Cook * by later code
13c61f13eaSKees Cook *
14496b24ecSAlexander A. Klimov * Homepage: https://pax.grsecurity.net/
15c61f13eaSKees Cook *
16c61f13eaSKees Cook * Options:
17c61f13eaSKees Cook * -fplugin-arg-structleak_plugin-disable
18c61f13eaSKees Cook * -fplugin-arg-structleak_plugin-verbose
1981a56f6dSKees Cook * -fplugin-arg-structleak_plugin-byref
20f7dd2507SArd Biesheuvel * -fplugin-arg-structleak_plugin-byref-all
21c61f13eaSKees Cook *
22c61f13eaSKees Cook * Usage:
23c61f13eaSKees Cook * $ # for 4.5/4.6/C based 4.7
24c61f13eaSKees Cook * $ gcc -I`gcc -print-file-name=plugin`/include -I`gcc -print-file-name=plugin`/include/c-family -fPIC -shared -O2 -o structleak_plugin.so structleak_plugin.c
25c61f13eaSKees Cook * $ # for C++ based 4.7/4.8+
26c61f13eaSKees Cook * $ g++ -I`g++ -print-file-name=plugin`/include -I`g++ -print-file-name=plugin`/include/c-family -fPIC -shared -O2 -o structleak_plugin.so structleak_plugin.c
27c61f13eaSKees Cook * $ gcc -fplugin=./structleak_plugin.so test.c -O2
28c61f13eaSKees Cook *
29c61f13eaSKees Cook * TODO: eliminate redundant initializers
30c61f13eaSKees Cook */
31c61f13eaSKees Cook
32c61f13eaSKees Cook #include "gcc-common.h"
33c61f13eaSKees Cook
34c61f13eaSKees Cook /* unused C type flag in all versions 4.5-6 */
35c61f13eaSKees Cook #define TYPE_USERSPACE(TYPE) TYPE_LANG_FLAG_5(TYPE)
36c61f13eaSKees Cook
37c61f13eaSKees Cook __visible int plugin_is_GPL_compatible;
38c61f13eaSKees Cook
39c61f13eaSKees Cook static struct plugin_info structleak_plugin_info = {
40d37aa2efSMasahiro Yamada .version = PLUGIN_VERSION,
41c61f13eaSKees Cook .help = "disable\tdo not activate plugin\n"
4281a56f6dSKees Cook "byref\tinit structs passed by reference\n"
4381a56f6dSKees Cook "byref-all\tinit anything passed by reference\n"
44c61f13eaSKees Cook "verbose\tprint all initialized variables\n",
45c61f13eaSKees Cook };
46c61f13eaSKees Cook
4781a56f6dSKees Cook #define BYREF_STRUCT 1
4881a56f6dSKees Cook #define BYREF_ALL 2
4981a56f6dSKees Cook
50c61f13eaSKees Cook static bool verbose;
5181a56f6dSKees Cook static int byref;
52c61f13eaSKees Cook
handle_user_attribute(tree * node,tree name,tree args,int flags,bool * no_add_attrs)53c61f13eaSKees Cook static tree handle_user_attribute(tree *node, tree name, tree args, int flags, bool *no_add_attrs)
54c61f13eaSKees Cook {
55c61f13eaSKees Cook *no_add_attrs = true;
56c61f13eaSKees Cook
57c61f13eaSKees Cook /* check for types? for now accept everything linux has to offer */
58c61f13eaSKees Cook if (TREE_CODE(*node) != FIELD_DECL)
59c61f13eaSKees Cook return NULL_TREE;
60c61f13eaSKees Cook
61c61f13eaSKees Cook *no_add_attrs = false;
62c61f13eaSKees Cook return NULL_TREE;
63c61f13eaSKees Cook }
64c61f13eaSKees Cook
65b8672910SKees Cook static struct attribute_spec user_attr = { };
66c61f13eaSKees Cook
register_attributes(void * event_data,void * data)67c61f13eaSKees Cook static void register_attributes(void *event_data, void *data)
68c61f13eaSKees Cook {
69b8672910SKees Cook user_attr.name = "user";
70b8672910SKees Cook user_attr.handler = handle_user_attribute;
71b8672910SKees Cook user_attr.affects_type_identity = true;
72b8672910SKees Cook
73c61f13eaSKees Cook register_attribute(&user_attr);
74c61f13eaSKees Cook }
75c61f13eaSKees Cook
get_field_type(tree field)76c61f13eaSKees Cook static tree get_field_type(tree field)
77c61f13eaSKees Cook {
78c61f13eaSKees Cook return strip_array_types(TREE_TYPE(field));
79c61f13eaSKees Cook }
80c61f13eaSKees Cook
is_userspace_type(tree type)81c61f13eaSKees Cook static bool is_userspace_type(tree type)
82c61f13eaSKees Cook {
83c61f13eaSKees Cook tree field;
84c61f13eaSKees Cook
85c61f13eaSKees Cook for (field = TYPE_FIELDS(type); field; field = TREE_CHAIN(field)) {
86c61f13eaSKees Cook tree fieldtype = get_field_type(field);
87c61f13eaSKees Cook enum tree_code code = TREE_CODE(fieldtype);
88c61f13eaSKees Cook
89c61f13eaSKees Cook if (code == RECORD_TYPE || code == UNION_TYPE)
90c61f13eaSKees Cook if (is_userspace_type(fieldtype))
91c61f13eaSKees Cook return true;
92c61f13eaSKees Cook
93c61f13eaSKees Cook if (lookup_attribute("user", DECL_ATTRIBUTES(field)))
94c61f13eaSKees Cook return true;
95c61f13eaSKees Cook }
96c61f13eaSKees Cook return false;
97c61f13eaSKees Cook }
98c61f13eaSKees Cook
finish_type(void * event_data,void * data)99c61f13eaSKees Cook static void finish_type(void *event_data, void *data)
100c61f13eaSKees Cook {
101c61f13eaSKees Cook tree type = (tree)event_data;
102c61f13eaSKees Cook
103c61f13eaSKees Cook if (type == NULL_TREE || type == error_mark_node)
104c61f13eaSKees Cook return;
105c61f13eaSKees Cook
106c61f13eaSKees Cook if (TREE_CODE(type) == ENUMERAL_TYPE)
107c61f13eaSKees Cook return;
108c61f13eaSKees Cook
109c61f13eaSKees Cook if (TYPE_USERSPACE(type))
110c61f13eaSKees Cook return;
111c61f13eaSKees Cook
112c61f13eaSKees Cook if (is_userspace_type(type))
113c61f13eaSKees Cook TYPE_USERSPACE(type) = 1;
114c61f13eaSKees Cook }
115c61f13eaSKees Cook
initialize(tree var)116c61f13eaSKees Cook static void initialize(tree var)
117c61f13eaSKees Cook {
118c61f13eaSKees Cook basic_block bb;
119c61f13eaSKees Cook gimple_stmt_iterator gsi;
120c61f13eaSKees Cook tree initializer;
121c61f13eaSKees Cook gimple init_stmt;
12281a56f6dSKees Cook tree type;
123c61f13eaSKees Cook
124c61f13eaSKees Cook /* this is the original entry bb before the forced split */
125c61f13eaSKees Cook bb = single_succ(ENTRY_BLOCK_PTR_FOR_FN(cfun));
126c61f13eaSKees Cook
127c61f13eaSKees Cook /* first check if variable is already initialized, warn otherwise */
128c61f13eaSKees Cook for (gsi = gsi_start_bb(bb); !gsi_end_p(gsi); gsi_next(&gsi)) {
129c61f13eaSKees Cook gimple stmt = gsi_stmt(gsi);
130c61f13eaSKees Cook tree rhs1;
131c61f13eaSKees Cook
132c61f13eaSKees Cook /* we're looking for an assignment of a single rhs... */
133c61f13eaSKees Cook if (!gimple_assign_single_p(stmt))
134c61f13eaSKees Cook continue;
135c61f13eaSKees Cook rhs1 = gimple_assign_rhs1(stmt);
136c61f13eaSKees Cook /* ... of a non-clobbering expression... */
137c61f13eaSKees Cook if (TREE_CLOBBER_P(rhs1))
138c61f13eaSKees Cook continue;
139c61f13eaSKees Cook /* ... to our variable... */
140c61f13eaSKees Cook if (gimple_get_lhs(stmt) != var)
141c61f13eaSKees Cook continue;
142c61f13eaSKees Cook /* if it's an initializer then we're good */
143c61f13eaSKees Cook if (TREE_CODE(rhs1) == CONSTRUCTOR)
144c61f13eaSKees Cook return;
145c61f13eaSKees Cook }
146c61f13eaSKees Cook
147c61f13eaSKees Cook /* these aren't the 0days you're looking for */
148c61f13eaSKees Cook if (verbose)
149c61f13eaSKees Cook inform(DECL_SOURCE_LOCATION(var),
150f7dd2507SArd Biesheuvel "%s variable will be forcibly initialized",
15181a56f6dSKees Cook (byref && TREE_ADDRESSABLE(var)) ? "byref"
152f7dd2507SArd Biesheuvel : "userspace");
153c61f13eaSKees Cook
154c61f13eaSKees Cook /* build the initializer expression */
15581a56f6dSKees Cook type = TREE_TYPE(var);
15681a56f6dSKees Cook if (AGGREGATE_TYPE_P(type))
15781a56f6dSKees Cook initializer = build_constructor(type, NULL);
15881a56f6dSKees Cook else
15981a56f6dSKees Cook initializer = fold_convert(type, integer_zero_node);
160c61f13eaSKees Cook
161c61f13eaSKees Cook /* build the initializer stmt */
162c61f13eaSKees Cook init_stmt = gimple_build_assign(var, initializer);
163c61f13eaSKees Cook gsi = gsi_after_labels(single_succ(ENTRY_BLOCK_PTR_FOR_FN(cfun)));
164c61f13eaSKees Cook gsi_insert_before(&gsi, init_stmt, GSI_NEW_STMT);
165c61f13eaSKees Cook update_stmt(init_stmt);
166c61f13eaSKees Cook }
167c61f13eaSKees Cook
structleak_execute(void)168c61f13eaSKees Cook static unsigned int structleak_execute(void)
169c61f13eaSKees Cook {
170c61f13eaSKees Cook basic_block bb;
171c61f13eaSKees Cook tree var;
172c61f13eaSKees Cook unsigned int i;
173c61f13eaSKees Cook
174c61f13eaSKees Cook /* split the first bb where we can put the forced initializers */
175c61f13eaSKees Cook gcc_assert(single_succ_p(ENTRY_BLOCK_PTR_FOR_FN(cfun)));
176c61f13eaSKees Cook bb = single_succ(ENTRY_BLOCK_PTR_FOR_FN(cfun));
177c61f13eaSKees Cook if (!single_pred_p(bb)) {
178c61f13eaSKees Cook split_edge(single_succ_edge(ENTRY_BLOCK_PTR_FOR_FN(cfun)));
179c61f13eaSKees Cook gcc_assert(single_succ_p(ENTRY_BLOCK_PTR_FOR_FN(cfun)));
180c61f13eaSKees Cook }
181c61f13eaSKees Cook
182c61f13eaSKees Cook /* enumerate all local variables and forcibly initialize our targets */
183c61f13eaSKees Cook FOR_EACH_LOCAL_DECL(cfun, i, var) {
184c61f13eaSKees Cook tree type = TREE_TYPE(var);
185c61f13eaSKees Cook
186c61f13eaSKees Cook gcc_assert(DECL_P(var));
187c61f13eaSKees Cook if (!auto_var_in_fn_p(var, current_function_decl))
188c61f13eaSKees Cook continue;
189c61f13eaSKees Cook
19081a56f6dSKees Cook /* only care about structure types unless byref-all */
19181a56f6dSKees Cook if (byref != BYREF_ALL && TREE_CODE(type) != RECORD_TYPE && TREE_CODE(type) != UNION_TYPE)
192c61f13eaSKees Cook continue;
193c61f13eaSKees Cook
194c61f13eaSKees Cook /* if the type is of interest, examine the variable */
195f7dd2507SArd Biesheuvel if (TYPE_USERSPACE(type) ||
19681a56f6dSKees Cook (byref && TREE_ADDRESSABLE(var)))
197c61f13eaSKees Cook initialize(var);
198c61f13eaSKees Cook }
199c61f13eaSKees Cook
200b924a819SJason Yan return 0;
201c61f13eaSKees Cook }
202c61f13eaSKees Cook
203c61f13eaSKees Cook #define PASS_NAME structleak
204c61f13eaSKees Cook #define NO_GATE
205c61f13eaSKees Cook #define PROPERTIES_REQUIRED PROP_cfg
206c61f13eaSKees Cook #define TODO_FLAGS_FINISH TODO_verify_il | TODO_verify_ssa | TODO_verify_stmts | TODO_dump_func | TODO_remove_unused_locals | TODO_update_ssa | TODO_ggc_collect | TODO_verify_flow
207c61f13eaSKees Cook #include "gcc-generate-gimple-pass.h"
208c61f13eaSKees Cook
plugin_init(struct plugin_name_args * plugin_info,struct plugin_gcc_version * version)209c61f13eaSKees Cook __visible int plugin_init(struct plugin_name_args *plugin_info, struct plugin_gcc_version *version)
210c61f13eaSKees Cook {
211c61f13eaSKees Cook int i;
212c61f13eaSKees Cook const char * const plugin_name = plugin_info->base_name;
213c61f13eaSKees Cook const int argc = plugin_info->argc;
214c61f13eaSKees Cook const struct plugin_argument * const argv = plugin_info->argv;
215c61f13eaSKees Cook bool enable = true;
216c61f13eaSKees Cook
217c61f13eaSKees Cook PASS_INFO(structleak, "early_optimizations", 1, PASS_POS_INSERT_BEFORE);
218c61f13eaSKees Cook
219c61f13eaSKees Cook if (!plugin_default_version_check(version, &gcc_version)) {
220c61f13eaSKees Cook error(G_("incompatible gcc/plugin versions"));
221c61f13eaSKees Cook return 1;
222c61f13eaSKees Cook }
223c61f13eaSKees Cook
224c61f13eaSKees Cook if (strncmp(lang_hooks.name, "GNU C", 5) && !strncmp(lang_hooks.name, "GNU C+", 6)) {
225c61f13eaSKees Cook inform(UNKNOWN_LOCATION, G_("%s supports C only, not %s"), plugin_name, lang_hooks.name);
226c61f13eaSKees Cook enable = false;
227c61f13eaSKees Cook }
228c61f13eaSKees Cook
229c61f13eaSKees Cook for (i = 0; i < argc; ++i) {
230c61f13eaSKees Cook if (!strcmp(argv[i].key, "disable")) {
231c61f13eaSKees Cook enable = false;
232c61f13eaSKees Cook continue;
233c61f13eaSKees Cook }
234c61f13eaSKees Cook if (!strcmp(argv[i].key, "verbose")) {
235c61f13eaSKees Cook verbose = true;
236c61f13eaSKees Cook continue;
237c61f13eaSKees Cook }
23881a56f6dSKees Cook if (!strcmp(argv[i].key, "byref")) {
23981a56f6dSKees Cook byref = BYREF_STRUCT;
24081a56f6dSKees Cook continue;
24181a56f6dSKees Cook }
242f7dd2507SArd Biesheuvel if (!strcmp(argv[i].key, "byref-all")) {
24381a56f6dSKees Cook byref = BYREF_ALL;
244f7dd2507SArd Biesheuvel continue;
245f7dd2507SArd Biesheuvel }
246c61f13eaSKees Cook error(G_("unknown option '-fplugin-arg-%s-%s'"), plugin_name, argv[i].key);
247c61f13eaSKees Cook }
248c61f13eaSKees Cook
249c61f13eaSKees Cook register_callback(plugin_name, PLUGIN_INFO, NULL, &structleak_plugin_info);
250c61f13eaSKees Cook if (enable) {
251c61f13eaSKees Cook register_callback(plugin_name, PLUGIN_PASS_MANAGER_SETUP, NULL, &structleak_pass_info);
252c61f13eaSKees Cook register_callback(plugin_name, PLUGIN_FINISH_TYPE, finish_type, NULL);
253c61f13eaSKees Cook }
254c61f13eaSKees Cook register_callback(plugin_name, PLUGIN_ATTRIBUTES, register_attributes, NULL);
255c61f13eaSKees Cook
256c61f13eaSKees Cook return 0;
257c61f13eaSKees Cook }
258