git@vger.kernel.org mailing list mirror (one of many)
 help / color / mirror / code / Atom feed
From: "brian m. carlson" <sandals@crustytoothpaste.net>
To: git@vger.kernel.org
Subject: Segfaults in git rebase --continue and git rerere
Date: Thu, 9 Sep 2021 01:18:00 +0000	[thread overview]
Message-ID: <YTlgyHnD3fFWwLu3@camp.crustytoothpaste.net> (raw)

[-- Attachment #1: Type: text/plain, Size: 4907 bytes --]

I'm having a bit of a problem with segfaults using
2.33.0.252.g9b09ab0cd71.  I was in the process of running "git rebase
--continue" with that version to resolve some conflicts in a project I'm
working on.  At that point, it segfaulted, and I got this (apologies for
the French):

  error: impossible d'analyser la section en conflit dans 'scutiger-lfs/src/bin/git-lfs-transfer.rs'
  error: impossible d'analyser la section en conflit dans 'scutiger-lfs/src/bin/git-lfs-transfer.rs'
  Pré-image enregistrée pour 'scutiger-lfs/src/bin/git-lfs-transfer.rs'
  [HEAD détachée 5134185] scutiger-lfs: move BatchItem, Mode, and Oid to library
   2 files changed, 74 insertions(+), 9 deletions(-)
  Fusion automatique de scutiger-lfs/src/processor.rs
  Fusion automatique de scutiger-lfs/src/bin/git-lfs-transfer.rs
  CONFLIT (contenu) : Conflit de fusion dans scutiger-lfs/src/bin/git-lfs-transfer.rs
  error: impossible d'appliquer 2cd1615... scutiger-lfs: move download and verify actions into backend
  Resolve all conflicts manually, mark them as resolved with
  "git add/rm <conflicted_files>", then run "git rebase --continue".
  You can instead skip this commit: run "git rebase --skip".
  To abort and get back to the state before "git rebase", run "git rebase --abort".
  error: impossible d'analyser la section en conflit dans 'scutiger-lfs/src/bin/git-lfs-transfer.rs'
  zsh: segmentation fault  git rebase --continue

I can provide a tarball of the broken repo upon request.  It's 108 MB,
so you'll need to provide some place for me to drop it.

At that point, I needed to remove .git/MERGE_RR.lock (which is empty),
and I ran "git rebase --abort" (because I realized my resolution was
bad).  Upon which, I received a second segfault (traceback from tip of
next):

  #0  0x00000000005b6e6b in has_rerere_resolution (id=0x229b3a0) at rerere.c:162
  162             return ((id->collection->status[variant] & both) == both);
  
  #0  0x00000000005b6e6b in has_rerere_resolution (id=0x229b3a0) at rerere.c:162
          both = 3
          variant = 0
  #1  rerere_clear (r=0x722880 <the_repo>, merge_rr=merge_rr@entry=0x7ffe8c703810) at rerere.c:1239
          id = 0x229b3a0
          i = 0

It appears to be because id->collection->status here is NULL.  It's
unclear to me why that's the case, but it does appear to be linked to my
.git/MERGE_RR file, which looks like this (xxd -g1):

  00000000: 30 34 39 62 31 34 32 39 34 65 64 30 63 30 65 66  049b14294ed0c0ef
  00000010: 62 65 39 32 66 34 66 64 33 31 31 63 37 63 34 30  be92f4fd311c7c40
  00000020: 39 30 39 34 65 63 64 65 09 73 63 75 74 69 67 65  9094ecde.scutige
  00000030: 72 2d 6c 66 73 2f 73 72 63 2f 62 69 6e 2f 67 69  r-lfs/src/bin/gi
  00000040: 74 2d 6c 66 73 2d 74 72 61 6e 73 66 65 72 2e 72  t-lfs-transfer.r
  00000050: 73 00                                            s.

The corresponding directory under .git/rr-cache is empty.  This
specifically seems to be the problem, and I've included a snippet of a
test below that causes the same segfault.  My guess is that the original
segfault left the MERGE_RR file present but the files in the rr-cache
directory absent.

Since rerere isn't a strong suit of mine, I'm not sending a patch, but I
am including a failing test[0] which indicates the problem (and to which
anyone is welcome to add my sign-off) in hopes that someone more
familiar with this subsystem can figure out what's going on.

----- %< -----
diff --git a/t/t4200-rerere.sh b/t/t4200-rerere.sh
index 9f8c76dffb..c44dfe248a 100755
--- a/t/t4200-rerere.sh
+++ b/t/t4200-rerere.sh
@@ -623,6 +623,7 @@ test_expect_success 'rerere with inner conflict markers' '
 	git commit -q -m "will solve conflicts later" &&
 	test_must_fail git merge A &&
 
+	cp .git/MERGE_RR merge_rr &&
 	echo "resolved" >test &&
 	git add test &&
 	git commit -q -m "solved conflict" &&
@@ -645,6 +646,13 @@ test_expect_success 'rerere with inner conflict markers' '
 	test_cmp expect actual
 '
 
+test_expect_success 'rerere clear does not segfault with bad data' '
+	res_id=$($PERL_PATH -nF"\t" -e "print \$F[0]" merge_rr) &&
+	cp merge_rr .git/MERGE_RR &&
+	rm -f .git/rr-cache/$res_id/* &&
+	git rerere clear
+'
+
 test_expect_success 'setup simple stage 1 handling' '
 	test_create_repo stage_1_handling &&
 	(
----- %< -----

As an aside, I generally find Git's codebase to be of exceptionally good
quality for a C program, and so seeing two segfaults back to back led me
to downgrade my recently upgraded version of glibc to see if somehow
that was the problem.  Unfortunately, that was not the case, and we just
have two separate bugs here.

[0] The test uses perl because the MERGE_RR file contains a NUL byte and
therefore cannot be used with standard POSIX utilities.
-- 
brian m. carlson (he/him or they/them)
Toronto, Ontario, CA

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 262 bytes --]

             reply	other threads:[~2021-09-09  1:18 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-09-09  1:18 brian m. carlson [this message]
2021-09-09  1:48 ` Segfaults in git rebase --continue and git rerere Æ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

  List information: http://vger.kernel.org/majordomo-info.html

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=YTlgyHnD3fFWwLu3@camp.crustytoothpaste.net \
    --to=sandals@crustytoothpaste.net \
    --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.
Code repositories for project(s) associated with this public inbox

	https://80x24.org/mirrors/git.git

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 read-only IMAP folder(s) and NNTP newsgroup(s).