Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use malloc fail null by default #8101

Merged
merged 8 commits into from
Dec 19, 2023

Conversation

thomasspriggs
Copy link
Contributor

This PR updates the defaults so that we use a model where malloc may fail with a null return value. This work is split from #8093 This change in the default avoids the possibility of memory allocations which overflow the size of the object bits.

  • Each commit message has a non-empty body, explaining why the change was made.
  • Methods or procedures I have added are documented, following the guidelines provided in CODING_STANDARD.md.
  • The feature or user visible behaviour I have added or modified has been documented in the User Guide in doc/cprover-manual/
  • Regression or unit tests are included, or existing tests cover the modified code (in this case I have detailed which ones those are in the commit message).
  • My commit message includes data points confirming performance improvements (if claimed).
  • My PR is restricted to a single feature or bugfix.
  • White-space or formatting changes outside the feature-related changed lines are in commits of their own.

@thomasspriggs thomasspriggs self-assigned this Dec 13, 2023
@thomasspriggs thomasspriggs added the Version 6 Pull requests and issues requiring a major version bump label Dec 13, 2023
@thomasspriggs thomasspriggs force-pushed the tas/default-malloc-failure branch from 1b30d51 to f38c54a Compare December 14, 2023 11:29
@thomasspriggs thomasspriggs force-pushed the tas/default-malloc-failure branch from 5ca8193 to 9ede58f Compare December 15, 2023 13:25
@thomasspriggs thomasspriggs marked this pull request as ready for review December 15, 2023 14:57
@thomasspriggs thomasspriggs changed the title Use malloc fail null by default [WIP] Use malloc fail null by default Dec 15, 2023
@thomasspriggs thomasspriggs force-pushed the tas/default-malloc-failure branch from 41c7eaf to 27c99d5 Compare December 15, 2023 15:00
Copy link

codecov bot commented Dec 15, 2023

Codecov Report

All modified and coverable lines are covered by tests ✅

Comparison is base (7601bb1) 79.08% compared to head (c3c7bc0) 79.08%.
Report is 33 commits behind head on develop.

Additional details and impacted files
@@           Coverage Diff            @@
##           develop    #8101   +/-   ##
========================================
  Coverage    79.08%   79.08%           
========================================
  Files         1696     1697    +1     
  Lines       196429   196504   +75     
========================================
+ Hits        155343   155405   +62     
- Misses       41086    41099   +13     

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

@@ -43,6 +43,10 @@ else
$goto_cc -o "${name}${dfcc_suffix}.gb" "${name}.c"
fi

if [[ "${args_inst}" != *"malloc"* ]]; then
args_inst="--no-malloc-fail $args_inst"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please don't do that. It will be outrageously difficult to understand what tests actually do.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hi Daniel, we're handling this in a different PR (#8106) where we're reverting this change across all regression/ build files.

It would be preferable if we can merge this one with this change in, so that it's on par with the other build changes currently in develop, so that we can then track and remove all of them in #8106 instead of having some of them here and some there, increasing the chance of having some stale changes by accident.

@@ -21,7 +21,7 @@ else
fi

rm -f "${target}-mod.gb"
$goto_instrument ${args} "${target}.gb" "${target}-mod.gb"
$goto_instrument --no-malloc-fail ${args} "${target}.gb" "${target}-mod.gb"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same here

So that the malloc failure configuration can be returned to non failure,
without using the full `--no-standard-checks` option.
The calls to the `set_default_analysis_flags` functions need to be
before the call to `config.set(cmdline)` so that the malloc defaults can
be set before being overridden by any command line specified malloc
behaviour.
In order to keep existing tests passing.
@esteffin esteffin force-pushed the tas/default-malloc-failure branch from ed0acac to c3635b1 Compare December 18, 2023 11:52
@esteffin esteffin force-pushed the tas/default-malloc-failure branch 2 times, most recently from 2ace435 to 4bcbc9d Compare December 19, 2023 11:37
@esteffin esteffin force-pushed the tas/default-malloc-failure branch from 4bcbc9d to c3c7bc0 Compare December 19, 2023 11:49
@esteffin esteffin merged commit 2791d26 into diffblue:develop Dec 19, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Version 6 Pull requests and issues requiring a major version bump
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants