Skip to content

Commit

Permalink
lock_ref_sha1_basic(): improve diagnostics for ref D/F conflicts
Browse files Browse the repository at this point in the history
If there is a failure to lock a reference that is likely caused by a
D/F conflict (e.g., trying to lock "refs/foo/bar" when reference
"refs/foo" already exists), invoke verify_refname_available() to try
to generate a more helpful error message.

That function might not detect an error. For example, some
non-reference file might be blocking the deletion of an
otherwise-empty directory tree, or there might be a race with another
process that just deleted the offending reference. In such cases,
generate the strerror-based error message like before.

Signed-off-by: Michael Haggerty <mhagger@alum.mit.edu>
  • Loading branch information
Michael Haggerty authored and Junio C Hamano committed May 11, 2015
1 parent 4a32b2e commit 5b2d8d6
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 8 deletions.
16 changes: 12 additions & 4 deletions refs.c
Original file line number Diff line number Diff line change
Expand Up @@ -2369,8 +2369,12 @@ static struct ref_lock *lock_ref_sha1_basic(const char *refname,
ref_file = git_path("%s", orig_refname);
if (remove_empty_directories(ref_file)) {
last_errno = errno;
strbuf_addf(err, "there are still refs under '%s'",
orig_refname);

if (!verify_refname_available(orig_refname, extras, skip,
get_loose_refs(&ref_cache), err))
strbuf_addf(err, "there are still refs under '%s'",
orig_refname);

goto error_return;
}
refname = resolve_ref_unsafe(orig_refname, resolve_flags,
Expand All @@ -2380,8 +2384,12 @@ static struct ref_lock *lock_ref_sha1_basic(const char *refname,
*type_p = type;
if (!refname) {
last_errno = errno;
strbuf_addf(err, "unable to resolve reference %s: %s",
orig_refname, strerror(errno));
if (last_errno != ENOTDIR ||
!verify_refname_available(orig_refname, extras, skip,
get_loose_refs(&ref_cache), err))
strbuf_addf(err, "unable to resolve reference %s: %s",
orig_refname, strerror(last_errno));

goto error_return;
}
/*
Expand Down
8 changes: 4 additions & 4 deletions t/t1404-update-ref-df-conflicts.sh
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ test_expect_success 'existing loose ref is a simple prefix of new' '
prefix=refs/1l &&
test_update_rejected $prefix "a c e" false "b c/x d" \
"unable to resolve reference $prefix/c/x: Not a directory"
"$Q$prefix/c$Q exists; cannot create $Q$prefix/c/x$Q"
'

Expand All @@ -52,7 +52,7 @@ test_expect_success 'existing loose ref is a deeper prefix of new' '
prefix=refs/2l &&
test_update_rejected $prefix "a c e" false "b c/x/y d" \
"unable to resolve reference $prefix/c/x/y: Not a directory"
"$Q$prefix/c$Q exists; cannot create $Q$prefix/c/x/y$Q"
'

Expand All @@ -68,7 +68,7 @@ test_expect_success 'new ref is a simple prefix of existing loose' '
prefix=refs/3l &&
test_update_rejected $prefix "a c/x e" false "b c d" \
"there are still refs under $Q$prefix/c$Q"
"$Q$prefix/c/x$Q exists; cannot create $Q$prefix/c$Q"
'

Expand All @@ -84,7 +84,7 @@ test_expect_success 'new ref is a deeper prefix of existing loose' '
prefix=refs/4l &&
test_update_rejected $prefix "a c/x/y e" false "b c d" \
"there are still refs under $Q$prefix/c$Q"
"$Q$prefix/c/x/y$Q exists; cannot create $Q$prefix/c$Q"
'

Expand Down

0 comments on commit 5b2d8d6

Please sign in to comment.