From: Jeff King <hidden> Date: 2021-10-18 17:14:56
This fixes two small leaks on top of fs/ssh-signing-fix noticed by
Coverity. I guess it's too late to squash them in, so I prepared patches
on top.
[1/2]: gpg-interface: fix leak of "line" in parse_ssh_output()
[2/2]: gpg-interface: fix leak of strbufs in get_ssh_key_fingerprint()
gpg-interface.c | 14 +++++++++++---
1 file changed, 11 insertions(+), 3 deletions(-)
-Peff
From: Jeff King <hidden> Date: 2021-10-18 17:15:03
We xmemdupz() this buffer, but never free it. Let's do so. We'll use a
cleanup label, since there are multiple exits from the function.
Note that it was also declared a "const char *". We could switch that to
"char *" to indicate that it's allocated, but that make it awkward to
use with skip_prefix(). So instead, we'll introduce an extra non-const
pointer.
Signed-off-by: Jeff King <redacted>
---
gpg-interface.c | 8 ++++++--
1 file changed, 6 insertions(+), 2 deletions(-)
@@ -365,6 +365,7 @@ static int verify_gpg_signed_buffer(struct signature_check *sigc,staticvoidparse_ssh_output(structsignature_check*sigc){constchar*line,*principal,*search;+char*to_free;char*key=NULL;/*
@@ -383,7 +384,7 @@ static void parse_ssh_output(struct signature_check *sigc)sigc->result='B';sigc->trust_level=TRUST_NEVER;-line=xmemdupz(sigc->output,strcspn(sigc->output,"\n"));+line=to_free=xmemdupz(sigc->output,strcspn(sigc->output,"\n"));if(skip_prefix(line,"Good \"git\" signature for ",&line)){/* Valid signature and known principal */
From: Jeff King <hidden> Date: 2021-10-18 17:15:40
We read stdout from gpg into a strbuf, then split it into a list of
strbufs, pull out one element, and return it. But we don't free either
the original stdout buffer, nor the list returned from strbuf_split().
This patch fixes both. Note that we have to detach the returned string
from its strbuf before calling strbuf_list_free(), as that would
otherwise throw it away.
Signed-off-by: Jeff King <redacted>
---
gpg-interface.c | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
@@ -737,7 +738,10 @@ static char *get_ssh_key_fingerprint(const char *signing_key)die_errno(_("failed to get the ssh fingerprint for key '%s'"),signing_key);-returnstrbuf_detach(fingerprint[1],NULL);+fingerprint_ret=strbuf_detach(fingerprint[1],NULL);+strbuf_list_free(fingerprint);+strbuf_release(&fingerprint_stdout);+returnfingerprint_ret;}/* Returns the first public key from an ssh-agent to use for signing */
This fixes two small leaks on top of fs/ssh-signing-fix noticed by
Coverity. I guess it's too late to squash them in, so I prepared patches
on top.
[1/2]: gpg-interface: fix leak of "line" in parse_ssh_output()
[2/2]: gpg-interface: fix leak of strbufs in get_ssh_key_fingerprint()
gpg-interface.c | 14 +++++++++++---
1 file changed, 11 insertions(+), 3 deletions(-)
-Peff
Thanks.
Both of these look good.
Is coverity included in the ci/gh actions? Where would these notices
show up?
Kind regards,
Fabian
From: Jeff King <hidden> Date: 2021-10-19 21:01:54
On Tue, Oct 19, 2021 at 10:16:41AM +0200, Fabian Stelzer wrote:
Is coverity included in the ci/gh actions? Where would these notices
show up?
Not currently. I've been playing with running it in an action, and may
submit something to make it more official. There's some discussion here:
https://lore.kernel.org/git/YV5dmkkuCqAY2qqG@coredump.intra.peff.net/
There's also some on-going work to make the test suite run without
leak-checkers (I didn't dig them up, but you can find recent topics and
commits from Ævar). But we've got a ways to go, so you'd likely find a
bunch of existing leaks if you tried it.
So no, for now there was nothing obvious you could have seen that would
have alerted you.
-Peff