forked from diffblue/cbmc
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathrestrict_function_pointers.cpp
659 lines (563 loc) · 20.1 KB
/
restrict_function_pointers.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
/*******************************************************************\
Module: Restrict function pointers
Author: Diffblue Ltd.
\*******************************************************************/
#include "restrict_function_pointers.h"
#include <ansi-c/expr2c.h>
#include <json/json_parser.h>
#include <util/cmdline.h>
#include <util/options.h>
#include <util/pointer_expr.h>
#include <util/string_utils.h>
#include "goto_model.h"
#include "remove_function_pointers.h"
#include <algorithm>
#include <fstream>
namespace
{
template <typename Handler, typename GotoFunctionT>
void for_each_function_call(GotoFunctionT &&goto_function, Handler handler)
{
using targett = decltype(goto_function.body.instructions.begin());
for_each_instruction_if(
goto_function,
[](targett target) { return target->is_function_call(); },
handler);
}
[[nodiscard]] static bool restrict_function_pointer(
message_handlert &message_handler,
symbol_tablet &symbol_table,
goto_programt &goto_program,
const irep_idt &function_id,
const function_pointer_restrictionst &restrictions,
const goto_programt::targett &location)
{
PRECONDITION(location->is_function_call());
// for each function call, we check if it is using a symbol we have
// restrictions for, and if so branch on its value and insert concrete calls
// to the restriction functions
// Check if this is calling a function pointer, and if so if it is one
// we have a restriction for
const auto &original_function = location->call_function();
if(!can_cast_expr<dereference_exprt>(original_function))
return false;
// because we run the label function pointer calls transformation pass before
// this stage a dereference can only dereference a symbol expression
auto const &called_function_pointer =
to_dereference_expr(original_function).pointer();
PRECONDITION(can_cast_expr<symbol_exprt>(called_function_pointer));
auto const &pointer_symbol = to_symbol_expr(called_function_pointer);
auto const restriction_iterator =
restrictions.restrictions.find(pointer_symbol.get_identifier());
if(restriction_iterator == restrictions.restrictions.end())
return false;
const namespacet ns(symbol_table);
std::unordered_set<symbol_exprt, irep_hash> candidates;
for(const auto &candidate : restriction_iterator->second)
candidates.insert(ns.lookup(candidate).symbol_expr());
remove_function_pointer(
message_handler,
symbol_table,
goto_program,
function_id,
location,
candidates);
return true;
}
} // namespace
invalid_restriction_exceptiont::invalid_restriction_exceptiont(
std::string reason,
std::string correct_format)
: cprover_exception_baset(std::move(reason)),
correct_format(std::move(correct_format))
{
}
std::string invalid_restriction_exceptiont::what() const
{
std::string res;
res += "Invalid restriction";
res += "\nReason: " + reason;
if(!correct_format.empty())
{
res += "\nFormat: " + correct_format;
}
return res;
}
void function_pointer_restrictionst::typecheck_function_pointer_restrictions(
const goto_modelt &goto_model,
const function_pointer_restrictionst::restrictionst &restrictions)
{
for(auto const &restriction : restrictions)
{
auto const function_pointer_sym =
goto_model.symbol_table.lookup(restriction.first);
if(function_pointer_sym == nullptr)
{
throw invalid_restriction_exceptiont{id2string(restriction.first) +
" not found in the symbol table"};
}
auto const &function_pointer_type = function_pointer_sym->type;
if(function_pointer_type.id() != ID_pointer)
{
throw invalid_restriction_exceptiont{"not a function pointer: " +
id2string(restriction.first)};
}
auto const &function_type =
to_pointer_type(function_pointer_type).base_type();
if(function_type.id() != ID_code)
{
throw invalid_restriction_exceptiont{"not a function pointer: " +
id2string(restriction.first)};
}
auto const &ns = namespacet{goto_model.symbol_table};
for(auto const &function_pointer_target : restriction.second)
{
auto const function_pointer_target_sym =
goto_model.symbol_table.lookup(function_pointer_target);
if(function_pointer_target_sym == nullptr)
{
throw invalid_restriction_exceptiont{
"symbol not found: " + id2string(function_pointer_target)};
}
auto const &function_pointer_target_type =
function_pointer_target_sym->type;
if(function_pointer_target_type.id() != ID_code)
{
throw invalid_restriction_exceptiont{
"not a function: " + id2string(function_pointer_target)};
}
if(!function_is_type_compatible(
true,
to_code_type(function_type),
to_code_type(function_pointer_target_type),
ns))
{
throw invalid_restriction_exceptiont{
"type mismatch: `" + id2string(restriction.first) + "' points to `" +
type2c(function_type, ns) + "', but restriction `" +
id2string(function_pointer_target) + "' has type `" +
type2c(function_pointer_target_type, ns) + "'"};
}
}
}
}
void restrict_function_pointers(
message_handlert &message_handler,
goto_modelt &goto_model,
const optionst &options)
{
const auto restrictions = function_pointer_restrictionst::from_options(
options, goto_model, message_handler);
if(restrictions.restrictions.empty())
return;
for(auto &function_item : goto_model.goto_functions.function_map)
{
goto_functiont &goto_function = function_item.second;
bool did_something = false;
for_each_function_call(goto_function, [&](const goto_programt::targett it) {
did_something |= restrict_function_pointer(
message_handler,
goto_model.symbol_table,
goto_function.body,
function_item.first,
restrictions,
it);
});
if(did_something)
goto_function.body.update();
}
}
void parse_function_pointer_restriction_options_from_cmdline(
const cmdlinet &cmdline,
optionst &options)
{
if(cmdline.isset(RESTRICT_FUNCTION_POINTER_OPT))
{
options.set_option(
RESTRICT_FUNCTION_POINTER_OPT,
cmdline.get_values(RESTRICT_FUNCTION_POINTER_OPT));
}
if(cmdline.isset(RESTRICT_FUNCTION_POINTER_FROM_FILE_OPT))
{
options.set_option(
RESTRICT_FUNCTION_POINTER_FROM_FILE_OPT,
cmdline.get_values(RESTRICT_FUNCTION_POINTER_FROM_FILE_OPT));
}
if(cmdline.isset(RESTRICT_FUNCTION_POINTER_BY_NAME_OPT))
{
options.set_option(
RESTRICT_FUNCTION_POINTER_BY_NAME_OPT,
cmdline.get_values(RESTRICT_FUNCTION_POINTER_BY_NAME_OPT));
}
}
function_pointer_restrictionst::restrictionst
function_pointer_restrictionst::merge_function_pointer_restrictions(
function_pointer_restrictionst::restrictionst lhs,
const function_pointer_restrictionst::restrictionst &rhs)
{
auto &result = lhs;
for(auto const &restriction : rhs)
{
auto emplace_result = result.emplace(restriction.first, restriction.second);
if(!emplace_result.second)
{
for(auto const &target : restriction.second)
{
emplace_result.first->second.insert(target);
}
}
}
return result;
}
function_pointer_restrictionst::restrictionst
function_pointer_restrictionst::parse_function_pointer_restrictions(
const std::list<std::string> &restriction_opts,
const std::string &option,
const goto_modelt &goto_model)
{
auto function_pointer_restrictions =
function_pointer_restrictionst::restrictionst{};
for(const std::string &restriction_opt : restriction_opts)
{
const auto restriction =
parse_function_pointer_restriction(restriction_opt, option, goto_model);
const bool inserted = function_pointer_restrictions
.emplace(restriction.first, restriction.second)
.second;
if(!inserted)
{
throw invalid_restriction_exceptiont{
"function pointer restriction for `" + id2string(restriction.first) +
"' was specified twice"};
}
}
return function_pointer_restrictions;
}
function_pointer_restrictionst::restrictionst function_pointer_restrictionst::
parse_function_pointer_restrictions_from_command_line(
const std::list<std::string> &restriction_opts,
const goto_modelt &goto_model)
{
return parse_function_pointer_restrictions(
restriction_opts, "--" RESTRICT_FUNCTION_POINTER_OPT, goto_model);
}
function_pointer_restrictionst::restrictionst
function_pointer_restrictionst::parse_function_pointer_restrictions_from_file(
const std::list<std::string> &filenames,
const goto_modelt &goto_model,
message_handlert &message_handler)
{
auto merged_restrictions = function_pointer_restrictionst::restrictionst{};
for(auto const &filename : filenames)
{
auto const restrictions =
read_from_file(filename, goto_model, message_handler);
merged_restrictions = merge_function_pointer_restrictions(
std::move(merged_restrictions), restrictions.restrictions);
}
return merged_restrictions;
}
/// Parse \p candidate to distinguish whether it refers to a function pointer
/// symbol directly (as produced by \ref label_function_pointer_call_sites), or
/// a source location via its statement label. In the latter case, resolve the
/// name to the underlying function pointer symbol.
static std::string resolve_pointer_name(
const std::string &candidate,
const goto_modelt &goto_model)
{
const auto last_dot = candidate.rfind('.');
if(
last_dot == std::string::npos || last_dot + 1 == candidate.size() ||
isdigit(candidate[last_dot + 1]))
{
return candidate;
}
std::string pointer_name = candidate;
const auto function_id = pointer_name.substr(0, last_dot);
const auto label = pointer_name.substr(last_dot + 1);
bool found = false;
const auto it = goto_model.goto_functions.function_map.find(function_id);
if(it != goto_model.goto_functions.function_map.end())
{
std::optional<source_locationt> location;
for(const auto &instruction : it->second.body.instructions)
{
if(
std::find(
instruction.labels.begin(), instruction.labels.end(), label) !=
instruction.labels.end())
{
location = instruction.source_location();
}
if(
instruction.is_function_call() &&
instruction.call_function().id() == ID_dereference &&
location.has_value() && instruction.source_location() == *location)
{
auto const &called_function_pointer =
to_dereference_expr(instruction.call_function()).pointer();
pointer_name =
id2string(to_symbol_expr(called_function_pointer).get_identifier());
found = true;
break;
}
}
}
if(!found)
{
throw invalid_restriction_exceptiont{
"non-existent pointer name " + pointer_name,
"pointers should be identifiers or <function_name>.<label>"};
}
return pointer_name;
}
function_pointer_restrictionst::restrictiont
function_pointer_restrictionst::parse_function_pointer_restriction(
const std::string &restriction_opt,
const std::string &option,
const goto_modelt &goto_model)
{
// the format for restrictions is <pointer_name>/<target[,more_targets]*>
// exactly one pointer and at least one target
auto const pointer_name_end = restriction_opt.find('/');
auto const restriction_format_message =
"the format for restrictions is "
"<pointer_name>/<target[,more_targets]*>";
if(pointer_name_end == std::string::npos)
{
throw invalid_restriction_exceptiont{"couldn't find '/' in `" +
restriction_opt + "'",
restriction_format_message};
}
if(pointer_name_end == restriction_opt.size())
{
throw invalid_restriction_exceptiont{
"couldn't find names of targets after '/' in `" + restriction_opt + "'",
restriction_format_message};
}
if(pointer_name_end == 0)
{
throw invalid_restriction_exceptiont{
"couldn't find target name before '/' in `" + restriction_opt + "'"};
}
std::string pointer_name = resolve_pointer_name(
restriction_opt.substr(0, pointer_name_end), goto_model);
auto const target_names_substring =
restriction_opt.substr(pointer_name_end + 1);
auto const target_name_strings = split_string(target_names_substring, ',');
if(target_name_strings.size() == 1 && target_name_strings[0].empty())
{
throw invalid_restriction_exceptiont{
"missing target list for function pointer restriction " + pointer_name,
restriction_format_message};
}
std::unordered_set<irep_idt> target_names;
target_names.insert(target_name_strings.begin(), target_name_strings.end());
for(auto const &target_name : target_names)
{
if(target_name == ID_empty_string)
{
throw invalid_restriction_exceptiont(
"leading or trailing comma in restrictions for `" + pointer_name + "'",
restriction_format_message);
}
}
return std::make_pair(pointer_name, target_names);
}
std::optional<function_pointer_restrictionst::restrictiont>
function_pointer_restrictionst::get_by_name_restriction(
const goto_functiont &goto_function,
const function_pointer_restrictionst::restrictionst &by_name_restrictions,
const goto_programt::const_targett &location)
{
PRECONDITION(location->is_function_call());
const exprt &function = location->call_function();
if(!can_cast_expr<dereference_exprt>(function))
return {};
// the function pointer is guaranteed to be a symbol expression, as the
// label_function_pointer_call_sites() pass (which must be run before the
// function pointer restriction) replaces calls via complex pointer
// expressions by calls to a function pointer variable
auto const &function_pointer_call_site =
to_symbol_expr(to_dereference_expr(function).pointer());
const goto_programt::const_targett it = std::prev(location);
INVARIANT(
to_symbol_expr(it->assign_lhs()).get_identifier() ==
function_pointer_call_site.get_identifier(),
"called function pointer must have been assigned at the previous location");
if(!can_cast_expr<symbol_exprt>(it->assign_rhs()))
return {};
const auto &rhs = to_symbol_expr(it->assign_rhs());
const auto restriction = by_name_restrictions.find(rhs.get_identifier());
if(restriction != by_name_restrictions.end())
{
return std::optional<function_pointer_restrictionst::restrictiont>(
std::make_pair(
function_pointer_call_site.get_identifier(), restriction->second));
}
return {};
}
function_pointer_restrictionst function_pointer_restrictionst::from_options(
const optionst &options,
const goto_modelt &goto_model,
message_handlert &message_handler)
{
auto const restriction_opts =
options.get_list_option(RESTRICT_FUNCTION_POINTER_OPT);
restrictionst commandline_restrictions;
try
{
commandline_restrictions =
parse_function_pointer_restrictions_from_command_line(
restriction_opts, goto_model);
typecheck_function_pointer_restrictions(
goto_model, commandline_restrictions);
}
catch(const invalid_restriction_exceptiont &e)
{
throw invalid_command_line_argument_exceptiont{
static_cast<cprover_exception_baset>(e).what(),
"--" RESTRICT_FUNCTION_POINTER_OPT,
e.correct_format};
}
restrictionst file_restrictions;
try
{
auto const restriction_file_opts =
options.get_list_option(RESTRICT_FUNCTION_POINTER_FROM_FILE_OPT);
file_restrictions = parse_function_pointer_restrictions_from_file(
restriction_file_opts, goto_model, message_handler);
typecheck_function_pointer_restrictions(goto_model, file_restrictions);
}
catch(const invalid_restriction_exceptiont &e)
{
throw deserialization_exceptiont{e.what()};
}
restrictionst name_restrictions;
try
{
auto const restriction_name_opts =
options.get_list_option(RESTRICT_FUNCTION_POINTER_BY_NAME_OPT);
name_restrictions = get_function_pointer_by_name_restrictions(
restriction_name_opts, goto_model);
typecheck_function_pointer_restrictions(goto_model, name_restrictions);
}
catch(const invalid_restriction_exceptiont &e)
{
throw invalid_command_line_argument_exceptiont{
static_cast<cprover_exception_baset>(e).what(),
"--" RESTRICT_FUNCTION_POINTER_BY_NAME_OPT,
e.correct_format};
}
return {merge_function_pointer_restrictions(
commandline_restrictions,
merge_function_pointer_restrictions(file_restrictions, name_restrictions))};
}
function_pointer_restrictionst function_pointer_restrictionst::from_json(
const jsont &json,
const goto_modelt &goto_model)
{
function_pointer_restrictionst::restrictionst restrictions;
if(!json.is_object())
{
throw deserialization_exceptiont{"top level item is not an object"};
}
for(auto const &restriction : to_json_object(json))
{
std::string pointer_name =
resolve_pointer_name(restriction.first, goto_model);
restrictions.emplace(irep_idt{pointer_name}, [&] {
if(!restriction.second.is_array())
{
throw deserialization_exceptiont{"Value of " + restriction.first +
" is not an array"};
}
auto possible_targets = std::unordered_set<irep_idt>{};
auto const &array = to_json_array(restriction.second);
std::transform(
array.begin(),
array.end(),
std::inserter(possible_targets, possible_targets.end()),
[&](const jsont &array_element) {
if(!array_element.is_string())
{
throw deserialization_exceptiont{
"Value of " + restriction.first +
"contains a non-string array element"};
}
return irep_idt{to_json_string(array_element).value};
});
return possible_targets;
}());
}
return function_pointer_restrictionst{restrictions};
}
function_pointer_restrictionst function_pointer_restrictionst::read_from_file(
const std::string &filename,
const goto_modelt &goto_model,
message_handlert &message_handler)
{
auto inFile = std::ifstream{filename};
jsont json;
if(parse_json(inFile, filename, message_handler, json))
{
throw deserialization_exceptiont{
"failed to read function pointer restrictions from " + filename};
}
return from_json(json, goto_model);
}
jsont function_pointer_restrictionst::to_json() const
{
auto function_pointer_restrictions_json = jsont{};
auto &restrictions_json_object =
function_pointer_restrictions_json.make_object();
for(auto const &restriction : restrictions)
{
auto &targets_array =
restrictions_json_object[id2string(restriction.first)].make_array();
for(auto const &target : restriction.second)
{
targets_array.push_back(json_stringt{target});
}
}
return function_pointer_restrictions_json;
}
void function_pointer_restrictionst::write_to_file(
const std::string &filename) const
{
auto function_pointer_restrictions_json = to_json();
auto outFile = std::ofstream{filename};
if(!outFile)
{
throw system_exceptiont{"cannot open " + filename +
" for writing function pointer restrictions"};
}
function_pointer_restrictions_json.output(outFile);
// Ensure output file ends with a newline character.
outFile << '\n';
}
function_pointer_restrictionst::restrictionst
function_pointer_restrictionst::get_function_pointer_by_name_restrictions(
const std::list<std::string> &restriction_name_opts,
const goto_modelt &goto_model)
{
function_pointer_restrictionst::restrictionst by_name_restrictions =
parse_function_pointer_restrictions(
restriction_name_opts,
"--" RESTRICT_FUNCTION_POINTER_BY_NAME_OPT,
goto_model);
function_pointer_restrictionst::restrictionst restrictions;
for(auto const &goto_function : goto_model.goto_functions.function_map)
{
for_each_function_call(
goto_function.second, [&](const goto_programt::const_targett it) {
const auto restriction = get_by_name_restriction(
goto_function.second, by_name_restrictions, it);
if(restriction)
{
restrictions.insert(*restriction);
}
});
}
return restrictions;
}