~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/scripts/gcc-plugins/structleak_plugin.c

Version: ~ [ linux-6.11-rc3 ] ~ [ linux-6.10.4 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.45 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.104 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.164 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.223 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.281 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.319 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

Diff markup

Differences between /scripts/gcc-plugins/structleak_plugin.c (Version linux-6.11-rc3) and /scripts/gcc-plugins/structleak_plugin.c (Version linux-5.9.16)


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

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php