From: "Ævar Arnfjörð Bjarmason" <avarab@gmail.com>
To: Junio C Hamano <gitster@pobox.com>
Cc: "brian m. carlson" <sandals@crustytoothpaste.net>,
git@vger.kernel.org, Phillip Wood <phillip.wood123@gmail.com>
Subject: Re: [PATCH v3 0/4] Importing and exporting stashes to refs
Date: Mon, 04 Apr 2022 08:20:29 +0200 [thread overview]
Message-ID: <220404.86tub9jql5.gmgdl@evledraar.gmail.com> (raw)
In-Reply-To: <xmqqpmlxsnc5.fsf@gitster.g>
On Sun, Apr 03 2022, Junio C Hamano wrote:
> Junio C Hamano <gitster@pobox.com> writes:
>
>> "brian m. carlson" <sandals@crustytoothpaste.net> writes:
>>
>>> Changes from v2:
>>> * Fix uninitialized strbuf.
>>> * Avoid C99-style initializations.
>>
>> Thanks.
>>
>> [1] is a CI run of 'seen' without this topic, while [2] is the same
>> but with this topic.
>>
>> t3903.115-117 (stash export) are not very happy in the latter.
>>
>> e.g. https://github.com/git/git/runs/5808828105?check_suite_focus=true#step:7:6623
>>
>> [References]
>>
>> *1* https://github.com/git/git/actions/runs/2086776970
>> *2* https://github.com/git/git/actions/runs/2086887176
>
> I think this is coming from a mismerge, conflicting topic being
> Ævar's revisions leakage series. I'll push out an updated
> resolution later today.
It looks like it, I looked at your resolution. It seems that since the
failure you pushed out this on top:
diff --git a/builtin/stash.c b/builtin/stash.c
index 35d7c2e828b..b4da17265a1 100644
--- a/builtin/stash.c
+++ b/builtin/stash.c
@@ -150,6 +150,7 @@ static void assert_stash_like(struct stash_info *info, const char *revision)
static int parse_revision(struct strbuf *revision, const char *commit, int quiet)
{
+ strbuf_init(revision, 0);
if (!commit) {
if (!ref_exists(ref_stash)) {
fprintf_ln(stderr, _("No stash entries found."));
@@ -192,8 +193,10 @@ static int get_stash_info(struct stash_info *info, int argc, const char **argv)
if (argc == 1)
commit = argv[0];
- if (parse_revision(&info->revision, commit, 0))
+ if (parse_revision(&info->revision, commit, 0)) {
+ free_stash_info(info);
return -1;
+ }
revision = info->revision.buf;
Which per my [1] is odd. I.e. in my topic I'd gotten rid of that
strbuf_init() entirely, see [2].
But looking again the odd interaction with brian's topic is that in his
[2] and [3] he refactored the parse_revision() into existance.
In the version he based things on we always init'd the strbuf there, but
between [2] and [3] that "strbuf_init()" was tasked with the work of a
strbuf_reset().
And on "seen" this (new code) still leaks:
$ ~/g/git/git stash export --print
6b0514ae1f670e55f450518c4b4421a997c8d082
=================================================================
==25882==ERROR: LeakSanitizer: detected memory leaks
Direct leak of 910 byte(s) in 14 object(s) allocated from:
#0 0x45658d in __interceptor_realloc (/home/avar/g/git/git+0x45658d)
#1 0x763f6d in xrealloc /home/avar/g/git/wrapper.c:136:8
#2 0x71c031 in strbuf_grow /home/avar/g/git/strbuf.c:99:2
#3 0x71d224 in strbuf_vaddf /home/avar/g/git/strbuf.c:395:3
#4 0x71d1e1 in strbuf_addf /home/avar/g/git/strbuf.c:336:2
#5 0x546f3e in parse_revision /home/avar/g/git/builtin/stash.c:162:3
#6 0x547f99 in do_export_stash /home/avar/g/git/builtin/stash.c:1987:8
#7 0x543b2b in export_stash /home/avar/g/git/builtin/stash.c:2061:8
#8 0x541846 in cmd_stash /home/avar/g/git/builtin/stash.c:2109:12
#9 0x45a38a in run_builtin /home/avar/g/git/git.c:466:11
#10 0x458e21 in handle_builtin /home/avar/g/git/git.c:720:3
#11 0x459d65 in run_argv /home/avar/g/git/git.c:787:4
#12 0x458bda in cmd_main /home/avar/g/git/git.c:920:19
#13 0x567839 in main /home/avar/g/git/common-main.c:56:11
#14 0x7fb9a380f7ec in __libc_start_main csu/../csu/libc-start.c:332:16
#15 0x431119 in _start (/home/avar/g/git/git+0x431119)
We just don't test t3903 under linux-leaks yet.
Anyway. I belive that the correct resolution is (but see caveats below):
diff --git a/builtin/stash.c b/builtin/stash.c
index b4da17265a1..3b9a6c5b753 100644
--- a/builtin/stash.c
+++ b/builtin/stash.c
@@ -150,7 +150,6 @@ static void assert_stash_like(struct stash_info *info, const char *revision)
static int parse_revision(struct strbuf *revision, const char *commit, int quiet)
{
- strbuf_init(revision, 0);
if (!commit) {
if (!ref_exists(ref_stash)) {
fprintf_ln(stderr, _("No stash entries found."));
@@ -193,10 +192,8 @@ static int get_stash_info(struct stash_info *info, int argc, const char **argv)
if (argc == 1)
commit = argv[0];
- if (parse_revision(&info->revision, commit, 0)) {
- free_stash_info(info);
+ if (parse_revision(&info->revision, commit, 0))
return -1;
- }
revision = info->revision.buf;
@@ -1827,7 +1824,7 @@ static int write_commit_with_parents(struct object_id *out, const struct object_
goto out;
}
out:
- strbuf_reset(&msg);
+ strbuf_release(&msg);
unuse_commit_buffer(this, buffer);
free(author);
free(committer);
@@ -1965,6 +1962,7 @@ static int do_export_stash(const char *ref, size_t argc, const char **argv)
*/
for (i = 0; i < argc; i++) {
ALLOC_GROW_BY(items, nitems, 1, nalloc);
+ strbuf_reset(&revision);
if (parse_revision(&revision, argv[i], 0) ||
get_oid_with_context(the_repository, revision.buf,
GET_OID_QUIETLY | GET_OID_GENTLY,
@@ -1983,6 +1981,8 @@ static int do_export_stash(const char *ref, size_t argc, const char **argv)
char buf[32];
struct object_id oid;
+ strbuf_reset(&revision);
+
snprintf(buf, sizeof(buf), "%d", i);
if (parse_revision(&revision, buf, 1) ||
get_oid_with_context(the_repository, revision.buf,
@@ -2018,6 +2018,7 @@ static int do_export_stash(const char *ref, size_t argc, const char **argv)
puts(oid_to_hex(&prev->object.oid));
out:
free(items);
+ strbuf_release(&revision);
return res;
}
I.e. most of that is really feedback/a bug report on [3] and [4],and the
third hunk here is really an unrelated fix where [4] conflated
strbuf_reset() with strbuf_release().
1. https://lore.kernel.org/git/cover-v2-00.27-00000000000-20220323T203149Z-avarab@gmail.com/
2. https://lore.kernel.org/git/patch-v5-10.27-4c5404912e9-20220402T102002Z-avarab@gmail.com/
2. https://lore.kernel.org/git/20220403182250.904933-3-sandals@crustytoothpaste.net/
4. https://lore.kernel.org/git/20220403182250.904933-4-sandals@crustytoothpaste.net/
next prev parent reply other threads:[~2022-04-04 6:45 UTC|newest]
Thread overview: 76+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-03-10 17:32 [PATCH 0/6] Importing and exporting stashes to refs brian m. carlson
2022-03-10 17:32 ` [PATCH 1/6] builtin/stash: factor out generic function to look up stash info brian m. carlson
2022-03-10 17:32 ` [PATCH 2/6] builtin/stash: fill in all commit data brian m. carlson
2022-03-16 16:50 ` Junio C Hamano
2022-03-10 17:32 ` [PATCH 3/6] object-name: make get_oid quietly return an error brian m. carlson
2022-03-16 16:56 ` Junio C Hamano
2022-03-16 17:01 ` Drew Stolee
2022-03-16 21:40 ` brian m. carlson
2022-03-10 17:32 ` [PATCH 4/6] builtin/stash: provide a way to export stashes to a ref brian m. carlson
2022-03-11 2:08 ` Ævar Arnfjörð Bjarmason
2022-03-14 21:19 ` Phillip Wood
2022-03-15 10:50 ` Phillip Wood
2022-03-16 21:48 ` brian m. carlson
2022-03-18 13:34 ` C99 %zu support (on MSVC) (was: [PATCH 4/6] builtin/stash: provide a way to export stashes to a ref) Ævar Arnfjörð Bjarmason
2022-03-18 16:26 ` Phillip Wood
2022-03-24 14:02 ` [PATCH 4/6] builtin/stash: provide a way to export stashes to a ref Johannes Schindelin
2022-03-18 13:41 ` ssize_t portability (was: [PATCH 4/6] builtin/stash: provide a way to export stashes to a ref) Ævar Arnfjörð Bjarmason
2022-03-16 17:05 ` [PATCH 4/6] builtin/stash: provide a way to export stashes to a ref Junio C Hamano
2022-03-10 17:32 ` [PATCH 5/6] builtin/stash: provide a way to import stashes from " brian m. carlson
2022-03-16 17:26 ` Junio C Hamano
2022-03-16 21:50 ` brian m. carlson
2022-03-10 17:32 ` [PATCH 6/6] doc: add stash export and import to docs brian m. carlson
2022-03-16 17:34 ` Junio C Hamano
2022-03-16 21:44 ` Junio C Hamano
2022-03-10 19:14 ` [PATCH 0/6] Importing and exporting stashes to refs Junio C Hamano
2022-03-10 21:04 ` brian m. carlson
2022-03-10 21:38 ` Junio C Hamano
2022-03-10 22:42 ` brian m. carlson
2022-03-29 21:49 ` [PATCH v2 0/4] " brian m. carlson
2022-03-29 21:49 ` [PATCH v2 1/4] object-name: make get_oid quietly return an error brian m. carlson
2022-03-29 21:49 ` [PATCH v2 2/4] builtin/stash: factor out revision parsing into a function brian m. carlson
2022-03-29 21:49 ` [PATCH v2 3/4] builtin/stash: provide a way to export stashes to a ref brian m. carlson
2022-03-30 23:05 ` Junio C Hamano
2022-03-30 23:44 ` brian m. carlson
2022-03-31 1:56 ` Ævar Arnfjörð Bjarmason
2022-03-31 17:43 ` Junio C Hamano
2022-04-05 10:55 ` brian m. carlson
2022-04-06 9:05 ` Ævar Arnfjörð Bjarmason
2022-04-06 16:38 ` Junio C Hamano
2022-03-31 2:09 ` Ævar Arnfjörð Bjarmason
2022-04-05 10:22 ` brian m. carlson
2022-03-29 21:49 ` [PATCH v2 4/4] builtin/stash: provide a way to import stashes from " brian m. carlson
2022-03-31 1:48 ` [PATCH v2 0/4] Importing and exporting stashes to refs Junio C Hamano
2022-03-31 2:18 ` Ævar Arnfjörð Bjarmason
2022-04-03 18:22 ` [PATCH v3 " brian m. carlson
2022-04-03 18:22 ` [PATCH v3 1/4] object-name: make get_oid quietly return an error brian m. carlson
2022-04-03 18:22 ` [PATCH v3 2/4] builtin/stash: factor out revision parsing into a function brian m. carlson
2022-04-04 15:44 ` Phillip Wood
2022-04-03 18:22 ` [PATCH v3 3/4] builtin/stash: provide a way to export stashes to a ref brian m. carlson
2022-04-04 6:46 ` Ævar Arnfjörð Bjarmason
2022-04-03 18:22 ` [PATCH v3 4/4] builtin/stash: provide a way to import stashes from " brian m. carlson
2022-04-04 10:38 ` Ævar Arnfjörð Bjarmason
2022-04-05 10:03 ` brian m. carlson
2022-04-06 9:00 ` Ævar Arnfjörð Bjarmason
2022-04-04 0:05 ` [PATCH v3 0/4] Importing and exporting stashes to refs Junio C Hamano
2022-04-04 0:29 ` Junio C Hamano
2022-04-04 6:20 ` Ævar Arnfjörð Bjarmason [this message]
2022-04-05 9:15 ` brian m. carlson
2022-04-07 21:53 ` [PATCH v4 " brian m. carlson
2022-04-07 21:53 ` [PATCH v4 1/4] object-name: make get_oid quietly return an error brian m. carlson
2022-04-07 21:53 ` [PATCH v4 2/4] builtin/stash: factor out revision parsing into a function brian m. carlson
2022-04-07 21:53 ` [PATCH v4 3/4] builtin/stash: provide a way to export stashes to a ref brian m. carlson
2022-04-13 15:29 ` Ævar Arnfjörð Bjarmason
2022-04-13 15:36 ` Ævar Arnfjörð Bjarmason
2022-04-13 15:55 ` Ævar Arnfjörð Bjarmason
2022-04-07 21:53 ` [PATCH v4 4/4] builtin/stash: provide a way to import stashes from " brian m. carlson
2022-04-12 20:14 ` Jonathan Tan
2022-04-13 1:12 ` brian m. carlson
2022-04-13 17:34 ` Jonathan Tan
2022-04-13 18:25 ` Ævar Arnfjörð Bjarmason
2022-04-13 19:14 ` Jonathan Tan
2022-04-13 20:10 ` Junio C Hamano
2022-04-13 21:33 ` brian m. carlson
2022-04-13 21:43 ` Junio C Hamano
2022-04-13 18:33 ` Ævar Arnfjörð Bjarmason
2022-04-13 15:25 ` [PATCH v4 0/4] Importing and exporting stashes to refs Ævar Arnfjörð Bjarmason
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=220404.86tub9jql5.gmgdl@evledraar.gmail.com \
--to=avarab@gmail.com \
--cc=git@vger.kernel.org \
--cc=gitster@pobox.com \
--cc=phillip.wood123@gmail.com \
--cc=sandals@crustytoothpaste.net \
/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).