Message ID | 58cb8f6a1609b10d761e86bdad541d1c018cb582.1742107322.git.gitgitgadget@gmail.com (mailing list archive) |
---|---|
State | Superseded |
Headers | show |
Series | Add a static analysis job to prevent assertions with side effects | expand |
On Sun, Mar 16, 2025 at 06:42:01AM +0000, Elijah Newren via GitGitGadget wrote: > We have roughly 566 assert() calls in our codebase (my grep might have > picked up things that aren't actually assert() calls, but most appeared > to be). All but 9 of them can be determined by gcc to be free of side > effects with a clever redefine of assert() provided by Bruno De Fraine > (from > https://stackoverflow.com/questions/10593492/catching-assert-with-side-effects), > who upon request has graciously placed his two-liner into the public > domain without warranty of any kind. The current 9 assert() calls > flagged by this clever redefinition of assert() appear to me to be free > of side effects as well, but are too complicated for a compiler/linker > to figure that since each assertion involves some kind of function call. > Add a CI job which will find and report these possibly problematic > assertions, and have the job suggest to the user that they replace these > with BUG_IF_NOT() calls. Very nice, and thank you Bruno for placing your very clever assert() in the public domain :-). I wonder if it might be useful to explain this in Documentation/CodingGuidelines as a follow-up to this series. I was thinking of a scenario where someone either writes a side-effecting assert(), or a non-side-effecting one that is too complicated to prove otherwise. If that person runs 'make test' locally, they might not see any failures, but then be surprised when CI fails on the new step. It may be worth mentioning that we have such a check, and that we expect all assert() statements to be side effect-free, and that developers can verify this by ci/check-unsafe-assertions.sh. But that may bring us into an assert() versus BUG_IF_NOT() debate, which may be somewhat counterproductive, so I'm just as happy if you did nothing here :-). Thanks, Taylor
"Elijah Newren via GitGitGadget" <gitgitgadget@gmail.com> writes: > ... All but 9 of them can be determined by gcc to be free of side > effects with a clever redefine of assert() provided by Bruno De Fraine > (from > https://stackoverflow.com/questions/10593492/catching-assert-with-side-effects), > who upon request has graciously placed his two-liner into the public > domain without warranty of any kind. Nice. > diff --git a/ci/check-unsafe-assertions.sh b/ci/check-unsafe-assertions.sh > new file mode 100755 > index 00000000000..d66091efd22 > --- /dev/null > +++ b/ci/check-unsafe-assertions.sh > @@ -0,0 +1,18 @@ > +#!/bin/sh > + > +make CHECK_ASSERTION_SIDE_EFFECTS=1 >compiler_output 2>compiler_error > +if test $? != 0 > +then > + echo "ERROR: The compiler could not verify the following assert()" >&2 > + echo " calls are free of side-effects. Please replace with" >&2 > + echo " BUG_IF_NOT() calls." >&2 > + grep undefined.reference.to..not_supposed_to_survive compiler_error \ > + | sed -e s/:[^:]*$// | sort | uniq | tr ':' ' ' \ > + | while read f l Let's lose the unsightly backslash by ending each line with "|" instead. Also let's stick to HT indentation, not whitespaces. Thanks.
On Mon, Mar 17, 2025 at 3:30 PM Taylor Blau <me@ttaylorr.com> wrote: > > On Sun, Mar 16, 2025 at 06:42:01AM +0000, Elijah Newren via GitGitGadget wrote: > > We have roughly 566 assert() calls in our codebase (my grep might have > > picked up things that aren't actually assert() calls, but most appeared > > to be). All but 9 of them can be determined by gcc to be free of side > > effects with a clever redefine of assert() provided by Bruno De Fraine > > (from > > https://stackoverflow.com/questions/10593492/catching-assert-with-side-effects), > > who upon request has graciously placed his two-liner into the public > > domain without warranty of any kind. The current 9 assert() calls > > flagged by this clever redefinition of assert() appear to me to be free > > of side effects as well, but are too complicated for a compiler/linker > > to figure that since each assertion involves some kind of function call. > > Add a CI job which will find and report these possibly problematic > > assertions, and have the job suggest to the user that they replace these > > with BUG_IF_NOT() calls. > > Very nice, and thank you Bruno for placing your very clever assert() in > the public domain :-). > > I wonder if it might be useful to explain this in > Documentation/CodingGuidelines as a follow-up to this series. I was > thinking of a scenario where someone either writes a side-effecting > assert(), or a non-side-effecting one that is too complicated to prove > otherwise. > > If that person runs 'make test' locally, they might not see any > failures, but then be surprised when CI fails on the new step. It may be > worth mentioning that we have such a check, and that we expect all > assert() statements to be side effect-free, and that developers can > verify this by ci/check-unsafe-assertions.sh. The same could be said for coccinelle patches, hdr-check, check-pot, fuzz tests, asan/ubsan, GIT_TEST_SPLIT_INDEX, pedantic build, osx, vs. windows vs. linux, and perhaps others, which users won't catch on 'make test' locally but can result in failed CI builds and aren't mentioned in CodingGuidelines. I usually think of CodingGuidelines as being the place for documenting things that can't be tested in an automated fashion, and a brief mention that both cross platform and additional more thorough but non-default tests can go in SubmittingPatches. > But that may bring us into an assert() versus BUG_IF_NOT() debate, which > may be somewhat counterproductive, so I'm just as happy if you did > nothing here :-). :-)
On Wed, Mar 19, 2025 at 09:21:59AM -0700, Elijah Newren wrote: > > I wonder if it might be useful to explain this in > > Documentation/CodingGuidelines as a follow-up to this series. I was > > thinking of a scenario where someone either writes a side-effecting > > assert(), or a non-side-effecting one that is too complicated to prove > > otherwise. > > > > If that person runs 'make test' locally, they might not see any > > failures, but then be surprised when CI fails on the new step. It may be > > worth mentioning that we have such a check, and that we expect all > > assert() statements to be side effect-free, and that developers can > > verify this by ci/check-unsafe-assertions.sh. > > The same could be said for coccinelle patches, hdr-check, check-pot, > fuzz tests, asan/ubsan, GIT_TEST_SPLIT_INDEX, pedantic build, osx, vs. > windows vs. linux, and perhaps others, which users won't catch on > 'make test' locally but can result in failed CI builds and aren't > mentioned in CodingGuidelines. I usually think of CodingGuidelines as > being the place for documenting things that can't be tested in an > automated fashion, and a brief mention that both cross platform and > additional more thorough but non-default tests can go in > SubmittingPatches. Fair enough ;-). Thanks, Taylor
diff --git a/Makefile b/Makefile index 7315507381e..57774912f18 100644 --- a/Makefile +++ b/Makefile @@ -2261,6 +2261,10 @@ ifdef WITH_BREAKING_CHANGES BASIC_CFLAGS += -DWITH_BREAKING_CHANGES endif +ifdef CHECK_ASSERTION_SIDE_EFFECTS + BASIC_CFLAGS += -DCHECK_ASSERTION_SIDE_EFFECTS +endif + ifdef INCLUDE_LIBGIT_RS # Enable symbol hiding in contrib/libgit-sys/libgitpub.a without making # us rebuild the whole tree every time we run a Rust build. diff --git a/ci/check-unsafe-assertions.sh b/ci/check-unsafe-assertions.sh new file mode 100755 index 00000000000..d66091efd22 --- /dev/null +++ b/ci/check-unsafe-assertions.sh @@ -0,0 +1,18 @@ +#!/bin/sh + +make CHECK_ASSERTION_SIDE_EFFECTS=1 >compiler_output 2>compiler_error +if test $? != 0 +then + echo "ERROR: The compiler could not verify the following assert()" >&2 + echo " calls are free of side-effects. Please replace with" >&2 + echo " BUG_IF_NOT() calls." >&2 + grep undefined.reference.to..not_supposed_to_survive compiler_error \ + | sed -e s/:[^:]*$// | sort | uniq | tr ':' ' ' \ + | while read f l + do + printf "${f}:${l}\n " + awk -v start="$l" 'NR >= start { print; if (/\);/) exit }' $f + done + exit 1 +fi +rm compiler_output compiler_error diff --git a/ci/run-static-analysis.sh b/ci/run-static-analysis.sh index 0d51e5ce0e7..ae714e020ae 100755 --- a/ci/run-static-analysis.sh +++ b/ci/run-static-analysis.sh @@ -31,4 +31,6 @@ exit 1 make check-pot +${0%/*}/check-unsafe-assertions.sh + save_good_tree diff --git a/git-compat-util.h b/git-compat-util.h index c3415ad7e0a..0aefd763751 100644 --- a/git-compat-util.h +++ b/git-compat-util.h @@ -1584,4 +1584,10 @@ static inline void *container_of_or_null_offset(void *ptr, size_t offset) ((uintptr_t)&(ptr)->member - (uintptr_t)(ptr)) #endif /* !__GNUC__ */ +#ifdef CHECK_ASSERTION_SIDE_EFFECTS +#undef assert +extern int not_supposed_to_survive; +#define assert(expr) ((void)(not_supposed_to_survive || (expr))) +#endif /* CHECK_ASSERTION_SIDE_EFFECTS */ + #endif