From: John Keeping <john@keeping.me.uk>
To: git@vger.kernel.org
Cc: John Keeping <john@keeping.me.uk>
Subject: [PATCH 0/5] Miscellaneous fixes from static analysis
Date: Sun, 16 Feb 2014 16:06:01 +0000 [thread overview]
Message-ID: <cover.1392565571.git.john@keeping.me.uk> (raw)
The first two of these fix real bugs, the rest just clean up some of the
less obviously "not actually a problem" issues identified by Clang's
static analyzer [1] and stack[2].
Stack is interesting in that it is designed to detect potentially
undesirable optimizations where undefined behaviour may be being invoked
unwittingly. It only detected two error's in git.git, the first of
which is fixed by the final patch. The second it describes as:
bug: anti-algebra
model: |
%11 = icmp ult i8* %extra_args, %7, !dbg !342
--> %10 = icmp slt i64 %9, 0, !dbg !342
************************************************************
%extra_args <u ((sext i32 %buflen to i64) + %extra_args)<nsw>
--> (-1 * (sext i32 %buflen to i64)) <s 0
stack:
- daemon.c:522:0
ncore: 1
core:
- daemon.c:520:0
- pointer overflow
which shows that Clang has converted (simplifying from daemon.c:520):
char *end = extra_args + buflen;
if (extra_args < end)
into:
if (buflen < 0)
This doesn't look like it can ever be subject to pointer overflow, so I
have not considered the churn worth it here.
[1] http://clang-analyzer.llvm.org/
[2] https://github.com/xiw/stack
John Keeping (5):
notes-utils: handle boolean notes.rewritemode correctly
utf8: fix iconv error detection
utf8: use correct type for values in interval table
builtin/mv: don't use memory after free
streaming: simplify attaching a filter
builtin/mv.c | 3 ++-
notes-utils.c | 2 +-
streaming.c | 5 +----
utf8.c | 6 +++---
4 files changed, 7 insertions(+), 9 deletions(-)
--
1.9.rc0.187.g6292fff
next reply other threads:[~2014-02-16 16:06 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-02-16 16:06 John Keeping [this message]
2014-02-16 16:06 ` [PATCH 1/5] notes-utils: handle boolean notes.rewritemode correctly John Keeping
2014-02-16 16:22 ` David Kastrup
2014-02-18 7:46 ` Jeff King
2014-02-18 8:41 ` David Kastrup
2014-02-18 9:01 ` Jeff King
2014-02-18 9:36 ` David Kastrup
2014-02-16 16:06 ` [PATCH 2/5] utf8: fix iconv error detection John Keeping
2014-02-16 16:06 ` [PATCH 3/5] utf8: use correct type for values in interval table John Keeping
2014-02-16 16:06 ` [PATCH 4/5] builtin/mv: don't use memory after free John Keeping
2014-02-16 16:06 ` [PATCH 5/5] streaming: simplify attaching a filter John Keeping
2014-02-18 23:56 ` Junio C Hamano
2014-02-19 0:02 ` Junio C Hamano
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=cover.1392565571.git.john@keeping.me.uk \
--to=john@keeping.me.uk \
--cc=git@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).