Merge branch 'mh/verify-lock-error-report'
Bring consistency to error reporting mechanism used in "refs" API. * mh/verify-lock-error-report: ref_transaction_commit(): do not capitalize error messages verify_lock(): do not capitalize error messages verify_lock(): report errors via a strbuf verify_lock(): on errors, let the caller unlock the lock verify_lock(): return 0/-1 rather than struct ref_lock *
This commit is contained in:
40
refs.c
40
refs.c
@ -2219,27 +2219,35 @@ static void unlock_ref(struct ref_lock *lock)
|
|||||||
free(lock);
|
free(lock);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* This function should make sure errno is meaningful on error */
|
/*
|
||||||
static struct ref_lock *verify_lock(struct ref_lock *lock,
|
* Verify that the reference locked by lock has the value old_sha1.
|
||||||
const unsigned char *old_sha1, int mustexist)
|
* Fail if the reference doesn't exist and mustexist is set. Return 0
|
||||||
|
* on success. On error, write an error message to err, set errno, and
|
||||||
|
* return a negative value.
|
||||||
|
*/
|
||||||
|
static int verify_lock(struct ref_lock *lock,
|
||||||
|
const unsigned char *old_sha1, int mustexist,
|
||||||
|
struct strbuf *err)
|
||||||
{
|
{
|
||||||
|
assert(err);
|
||||||
|
|
||||||
if (read_ref_full(lock->ref_name,
|
if (read_ref_full(lock->ref_name,
|
||||||
mustexist ? RESOLVE_REF_READING : 0,
|
mustexist ? RESOLVE_REF_READING : 0,
|
||||||
lock->old_oid.hash, NULL)) {
|
lock->old_oid.hash, NULL)) {
|
||||||
int save_errno = errno;
|
int save_errno = errno;
|
||||||
error("Can't verify ref %s", lock->ref_name);
|
strbuf_addf(err, "can't verify ref %s", lock->ref_name);
|
||||||
unlock_ref(lock);
|
|
||||||
errno = save_errno;
|
errno = save_errno;
|
||||||
return NULL;
|
return -1;
|
||||||
}
|
}
|
||||||
if (hashcmp(lock->old_oid.hash, old_sha1)) {
|
if (hashcmp(lock->old_oid.hash, old_sha1)) {
|
||||||
error("Ref %s is at %s but expected %s", lock->ref_name,
|
strbuf_addf(err, "ref %s is at %s but expected %s",
|
||||||
oid_to_hex(&lock->old_oid), sha1_to_hex(old_sha1));
|
lock->ref_name,
|
||||||
unlock_ref(lock);
|
sha1_to_hex(lock->old_oid.hash),
|
||||||
|
sha1_to_hex(old_sha1));
|
||||||
errno = EBUSY;
|
errno = EBUSY;
|
||||||
return NULL;
|
return -1;
|
||||||
}
|
}
|
||||||
return lock;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int remove_empty_directories(const char *file)
|
static int remove_empty_directories(const char *file)
|
||||||
@ -2467,7 +2475,11 @@ static struct ref_lock *lock_ref_sha1_basic(const char *refname,
|
|||||||
goto error_return;
|
goto error_return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return old_sha1 ? verify_lock(lock, old_sha1, mustexist) : lock;
|
if (old_sha1 && verify_lock(lock, old_sha1, mustexist, err)) {
|
||||||
|
last_errno = errno;
|
||||||
|
goto error_return;
|
||||||
|
}
|
||||||
|
return lock;
|
||||||
|
|
||||||
error_return:
|
error_return:
|
||||||
unlock_ref(lock);
|
unlock_ref(lock);
|
||||||
@ -3912,7 +3924,7 @@ int ref_transaction_commit(struct ref_transaction *transaction,
|
|||||||
? TRANSACTION_NAME_CONFLICT
|
? TRANSACTION_NAME_CONFLICT
|
||||||
: TRANSACTION_GENERIC_ERROR;
|
: TRANSACTION_GENERIC_ERROR;
|
||||||
reason = strbuf_detach(err, NULL);
|
reason = strbuf_detach(err, NULL);
|
||||||
strbuf_addf(err, "Cannot lock ref '%s': %s",
|
strbuf_addf(err, "cannot lock ref '%s': %s",
|
||||||
update->refname, reason);
|
update->refname, reason);
|
||||||
free(reason);
|
free(reason);
|
||||||
goto cleanup;
|
goto cleanup;
|
||||||
@ -3935,7 +3947,7 @@ int ref_transaction_commit(struct ref_transaction *transaction,
|
|||||||
* write_ref_to_lockfile():
|
* write_ref_to_lockfile():
|
||||||
*/
|
*/
|
||||||
update->lock = NULL;
|
update->lock = NULL;
|
||||||
strbuf_addf(err, "Cannot update the ref '%s'.",
|
strbuf_addf(err, "cannot update the ref '%s'.",
|
||||||
update->refname);
|
update->refname);
|
||||||
ret = TRANSACTION_GENERIC_ERROR;
|
ret = TRANSACTION_GENERIC_ERROR;
|
||||||
goto cleanup;
|
goto cleanup;
|
||||||
|
@ -519,7 +519,7 @@ test_expect_success 'stdin create ref works with path with space to blob' '
|
|||||||
test_expect_success 'stdin update ref fails with wrong old value' '
|
test_expect_success 'stdin update ref fails with wrong old value' '
|
||||||
echo "update $c $m $m~1" >stdin &&
|
echo "update $c $m $m~1" >stdin &&
|
||||||
test_must_fail git update-ref --stdin <stdin 2>err &&
|
test_must_fail git update-ref --stdin <stdin 2>err &&
|
||||||
grep "fatal: Cannot lock ref '"'"'$c'"'"'" err &&
|
grep "fatal: cannot lock ref '"'"'$c'"'"'" err &&
|
||||||
test_must_fail git rev-parse --verify -q $c
|
test_must_fail git rev-parse --verify -q $c
|
||||||
'
|
'
|
||||||
|
|
||||||
@ -555,7 +555,7 @@ test_expect_success 'stdin update ref works with right old value' '
|
|||||||
test_expect_success 'stdin delete ref fails with wrong old value' '
|
test_expect_success 'stdin delete ref fails with wrong old value' '
|
||||||
echo "delete $a $m~1" >stdin &&
|
echo "delete $a $m~1" >stdin &&
|
||||||
test_must_fail git update-ref --stdin <stdin 2>err &&
|
test_must_fail git update-ref --stdin <stdin 2>err &&
|
||||||
grep "fatal: Cannot lock ref '"'"'$a'"'"'" err &&
|
grep "fatal: cannot lock ref '"'"'$a'"'"'" err &&
|
||||||
git rev-parse $m >expect &&
|
git rev-parse $m >expect &&
|
||||||
git rev-parse $a >actual &&
|
git rev-parse $a >actual &&
|
||||||
test_cmp expect actual
|
test_cmp expect actual
|
||||||
@ -688,7 +688,7 @@ test_expect_success 'stdin update refs fails with wrong old value' '
|
|||||||
update $c ''
|
update $c ''
|
||||||
EOF
|
EOF
|
||||||
test_must_fail git update-ref --stdin <stdin 2>err &&
|
test_must_fail git update-ref --stdin <stdin 2>err &&
|
||||||
grep "fatal: Cannot lock ref '"'"'$c'"'"'" err &&
|
grep "fatal: cannot lock ref '"'"'$c'"'"'" err &&
|
||||||
git rev-parse $m >expect &&
|
git rev-parse $m >expect &&
|
||||||
git rev-parse $a >actual &&
|
git rev-parse $a >actual &&
|
||||||
test_cmp expect actual &&
|
test_cmp expect actual &&
|
||||||
@ -883,7 +883,7 @@ test_expect_success 'stdin -z create ref works with path with space to blob' '
|
|||||||
test_expect_success 'stdin -z update ref fails with wrong old value' '
|
test_expect_success 'stdin -z update ref fails with wrong old value' '
|
||||||
printf $F "update $c" "$m" "$m~1" >stdin &&
|
printf $F "update $c" "$m" "$m~1" >stdin &&
|
||||||
test_must_fail git update-ref -z --stdin <stdin 2>err &&
|
test_must_fail git update-ref -z --stdin <stdin 2>err &&
|
||||||
grep "fatal: Cannot lock ref '"'"'$c'"'"'" err &&
|
grep "fatal: cannot lock ref '"'"'$c'"'"'" err &&
|
||||||
test_must_fail git rev-parse --verify -q $c
|
test_must_fail git rev-parse --verify -q $c
|
||||||
'
|
'
|
||||||
|
|
||||||
@ -899,7 +899,7 @@ test_expect_success 'stdin -z create ref fails when ref exists' '
|
|||||||
git rev-parse "$c" >expect &&
|
git rev-parse "$c" >expect &&
|
||||||
printf $F "create $c" "$m~1" >stdin &&
|
printf $F "create $c" "$m~1" >stdin &&
|
||||||
test_must_fail git update-ref -z --stdin <stdin 2>err &&
|
test_must_fail git update-ref -z --stdin <stdin 2>err &&
|
||||||
grep "fatal: Cannot lock ref '"'"'$c'"'"'" err &&
|
grep "fatal: cannot lock ref '"'"'$c'"'"'" err &&
|
||||||
git rev-parse "$c" >actual &&
|
git rev-parse "$c" >actual &&
|
||||||
test_cmp expect actual
|
test_cmp expect actual
|
||||||
'
|
'
|
||||||
@ -930,7 +930,7 @@ test_expect_success 'stdin -z update ref works with right old value' '
|
|||||||
test_expect_success 'stdin -z delete ref fails with wrong old value' '
|
test_expect_success 'stdin -z delete ref fails with wrong old value' '
|
||||||
printf $F "delete $a" "$m~1" >stdin &&
|
printf $F "delete $a" "$m~1" >stdin &&
|
||||||
test_must_fail git update-ref -z --stdin <stdin 2>err &&
|
test_must_fail git update-ref -z --stdin <stdin 2>err &&
|
||||||
grep "fatal: Cannot lock ref '"'"'$a'"'"'" err &&
|
grep "fatal: cannot lock ref '"'"'$a'"'"'" err &&
|
||||||
git rev-parse $m >expect &&
|
git rev-parse $m >expect &&
|
||||||
git rev-parse $a >actual &&
|
git rev-parse $a >actual &&
|
||||||
test_cmp expect actual
|
test_cmp expect actual
|
||||||
@ -1045,7 +1045,7 @@ test_expect_success 'stdin -z update refs fails with wrong old value' '
|
|||||||
git update-ref $c $m &&
|
git update-ref $c $m &&
|
||||||
printf $F "update $a" "$m" "$m" "update $b" "$m" "$m" "update $c" "$m" "$Z" >stdin &&
|
printf $F "update $a" "$m" "$m" "update $b" "$m" "$m" "update $c" "$m" "$Z" >stdin &&
|
||||||
test_must_fail git update-ref -z --stdin <stdin 2>err &&
|
test_must_fail git update-ref -z --stdin <stdin 2>err &&
|
||||||
grep "fatal: Cannot lock ref '"'"'$c'"'"'" err &&
|
grep "fatal: cannot lock ref '"'"'$c'"'"'" err &&
|
||||||
git rev-parse $m >expect &&
|
git rev-parse $m >expect &&
|
||||||
git rev-parse $a >actual &&
|
git rev-parse $a >actual &&
|
||||||
test_cmp expect actual &&
|
test_cmp expect actual &&
|
||||||
|
Reference in New Issue
Block a user