]> git.ipfire.org Git - thirdparty/git.git/commitdiff
refs: add 'preparing' phase to the reference-transaction hook
authorEric Ju <eric.peijian@gmail.com>
Tue, 17 Mar 2026 02:36:24 +0000 (22:36 -0400)
committerJunio C Hamano <gitster@pobox.com>
Tue, 17 Mar 2026 04:00:44 +0000 (21:00 -0700)
The "reference-transaction" hook is invoked multiple times during a ref
transaction. Each invocation corresponds to a different phase:

- The "prepared" phase indicates that references have been locked.
- The "committed" phase indicates that all updates have been written to disk.
- The "aborted" phase indicates that the transaction has been aborted and that
  all changes have been rolled back.

This hook can be used to learn about the updates that Git wants to perform.
For example, forges use it to coordinate reference updates across multiple
nodes.

However, the phases are insufficient for some specific use cases. The earliest
observable phase in the "reference-transaction" hook is "prepared", at which
point Git has already taken exclusive locks on every affected reference. This
makes it suitable for last-chance validation, but not for serialization. So by
the time a hook sees the "prepared" phase, it has no way to defer locking, and
thus it cannot rearrange multiple concurrent ref transactions relative to one
another.

Introduce a new "preparing" phase that runs before the "prepared" phase, that
is before Git acquires any reference lock on disk. This gives callers a
well-defined window to perform validation, enable higher-level ordering of
concurrent transactions, or reject the transaction entirely, all without
interfering with the locking state.

This change is strictly speaking not backwards compatible. Existing hook
scripts that do not know how to handle unknown phases may treat 'preparing'
as an error and return non-zero. But the hook is considered to expose
internal implementation details of how Git works, and as such we have
been a bit more lenient with changing its exact semantics, like for example
in a8ae923f85 (refs: support symrefs in 'reference-transaction' hook, 2024-05-07).

An alternative would be to introduce a "reference-transaction-v2" hook that
knows about the new phase. This feels like a rather heavy-weight option though,
and was thus discarded.

Helped-by: Patrick Steinhardt <ps@pks.im>
Helped-by: Justin Tobler <jltobler@gmail.com>
Helped-by: Karthik Nayak <karthik.188@gmail.com>
Signed-off-by: Eric Ju <eric.peijian@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Documentation/githooks.adoc
refs.c
t/t1416-ref-transaction-hooks.sh
t/t5510-fetch.sh

index 056553788d4f43d2f988baed2edb78c336e65a74..ed045940d18ba56a3a68004311d71800f987cf09 100644 (file)
@@ -484,13 +484,16 @@ reference-transaction
 ~~~~~~~~~~~~~~~~~~~~~
 
 This hook is invoked by any Git command that performs reference
-updates. It executes whenever a reference transaction is prepared,
-committed or aborted and may thus get called multiple times. The hook
-also supports symbolic reference updates.
+updates. It executes whenever a reference transaction is preparing,
+prepared, committed or aborted and may thus get called multiple times.
+The hook also supports symbolic reference updates.
 
 The hook takes exactly one argument, which is the current state the
 given reference transaction is in:
 
+    - "preparing": All reference updates have been queued to the
+      transaction but references are not yet locked on disk.
+
     - "prepared": All reference updates have been queued to the
       transaction and references were locked on disk.
 
@@ -511,16 +514,18 @@ ref and `<ref-name>` is the full name of the ref. When force updating
 the reference regardless of its current value or when the reference is
 to be created anew, `<old-value>` is the all-zeroes object name. To
 distinguish these cases, you can inspect the current value of
-`<ref-name>` via `git rev-parse`.
+`<ref-name>` via `git rev-parse`. During the "preparing" state, symbolic
+references are not resolved: `<ref-name>` will reflect the symbolic reference
+itself rather than the object it points to.
 
 For symbolic reference updates the `<old_value>` and `<new-value>`
 fields could denote references instead of objects. A reference will be
 denoted with a 'ref:' prefix, like `ref:<ref-target>`.
 
 The exit status of the hook is ignored for any state except for the
-"prepared" state. In the "prepared" state, a non-zero exit status will
-cause the transaction to be aborted. The hook will not be called with
-"aborted" state in that case.
+"preparing" and "prepared" states. In these states, a non-zero exit
+status will cause the transaction to be aborted. The hook will not be
+called with "aborted" state in that case.
 
 push-to-checkout
 ~~~~~~~~~~~~~~~~
diff --git a/refs.c b/refs.c
index 6fb8f9d10c9800127ab252ebeaaef51ff2148b4e..e66cf4861d7ec5d23e8fb7b6ec8531d481a85813 100644 (file)
--- a/refs.c
+++ b/refs.c
@@ -64,6 +64,9 @@ const char *ref_storage_format_to_name(enum ref_storage_format ref_storage_forma
        return be->name;
 }
 
+static const char *abort_by_ref_transaction_hook =
+       N_("in '%s' phase, update aborted by the reference-transaction hook");
+
 /*
  * How to handle various characters in refnames:
  * 0: An acceptable character for refs
@@ -2655,6 +2658,13 @@ int ref_transaction_prepare(struct ref_transaction *transaction,
        if (ref_update_reject_duplicates(&transaction->refnames, err))
                return REF_TRANSACTION_ERROR_GENERIC;
 
+       /* Preparing checks before locking references */
+       ret = run_transaction_hook(transaction, "preparing");
+       if (ret) {
+               ref_transaction_abort(transaction, err);
+               die(_(abort_by_ref_transaction_hook), "preparing");
+       }
+
        ret = refs->be->transaction_prepare(refs, transaction, err);
        if (ret)
                return ret;
@@ -2662,7 +2672,7 @@ int ref_transaction_prepare(struct ref_transaction *transaction,
        ret = run_transaction_hook(transaction, "prepared");
        if (ret) {
                ref_transaction_abort(transaction, err);
-               die(_("ref updates aborted by hook"));
+               die(_(abort_by_ref_transaction_hook), "prepared");
        }
 
        return 0;
index d91dd3a3b55e46bd0fa12e01bcd2ccfe1f620736..4fe9d9b23465ab4bc9218af7cb16d88cfec75ece 100755 (executable)
@@ -20,6 +20,7 @@ test_expect_success 'hook allows updating ref if successful' '
                echo "$*" >>actual
        EOF
        cat >expect <<-EOF &&
+               preparing
                prepared
                committed
        EOF
@@ -27,6 +28,18 @@ test_expect_success 'hook allows updating ref if successful' '
        test_cmp expect actual
 '
 
+test_expect_success 'hook aborts updating ref in preparing state' '
+       git reset --hard PRE &&
+       test_hook reference-transaction <<-\EOF &&
+               if test "$1" = preparing
+               then
+                       exit 1
+               fi
+       EOF
+       test_must_fail git update-ref HEAD POST 2>err &&
+       test_grep "in '\''preparing'\'' phase, update aborted by the reference-transaction hook" err
+'
+
 test_expect_success 'hook aborts updating ref in prepared state' '
        git reset --hard PRE &&
        test_hook reference-transaction <<-\EOF &&
@@ -36,7 +49,7 @@ test_expect_success 'hook aborts updating ref in prepared state' '
                fi
        EOF
        test_must_fail git update-ref HEAD POST 2>err &&
-       test_grep "ref updates aborted by hook" err
+       test_grep "in '\''prepared'\'' phase, update aborted by the reference-transaction hook" err
 '
 
 test_expect_success 'hook gets all queued updates in prepared state' '
@@ -121,6 +134,7 @@ test_expect_success 'interleaving hook calls succeed' '
        cat >expect <<-EOF &&
                hooks/update refs/tags/PRE $ZERO_OID $PRE_OID
                hooks/update refs/tags/POST $ZERO_OID $POST_OID
+               hooks/reference-transaction preparing
                hooks/reference-transaction prepared
                hooks/reference-transaction committed
        EOF
@@ -143,6 +157,8 @@ test_expect_success 'hook captures git-symbolic-ref updates' '
        git symbolic-ref refs/heads/symref refs/heads/main &&
 
        cat >expect <<-EOF &&
+       preparing
+       $ZERO_OID ref:refs/heads/main refs/heads/symref
        prepared
        $ZERO_OID ref:refs/heads/main refs/heads/symref
        committed
@@ -171,14 +187,20 @@ test_expect_success 'hook gets all queued symref updates' '
        # In the files backend, "delete" also triggers an additional transaction
        # update on the packed-refs backend, which constitutes additional reflog
        # entries.
+       cat >expect <<-EOF &&
+       preparing
+       ref:refs/heads/main $ZERO_OID refs/heads/symref
+       ref:refs/heads/main $ZERO_OID refs/heads/symrefd
+       $ZERO_OID ref:refs/heads/main refs/heads/symrefc
+       ref:refs/heads/main ref:refs/heads/branch refs/heads/symrefu
+       EOF
+
        if test_have_prereq REFFILES
        then
-               cat >expect <<-EOF
+               cat >>expect <<-EOF
                aborted
                $ZERO_OID $ZERO_OID refs/heads/symrefd
                EOF
-       else
-               >expect
        fi &&
 
        cat >>expect <<-EOF &&
index 5dcb4b51a47d8868b65cffd76e59f948bd49f21b..6fe21e2b3a6b1bbcd4cf5a4ffcb2adc02540a4dd 100755 (executable)
@@ -469,12 +469,17 @@ test_expect_success 'fetch --atomic executes a single reference transaction only
        head_oid=$(git rev-parse HEAD) &&
 
        cat >expected <<-EOF &&
+               preparing
+               $ZERO_OID $head_oid refs/remotes/origin/atomic-hooks-1
+               $ZERO_OID $head_oid refs/remotes/origin/atomic-hooks-2
                prepared
                $ZERO_OID $head_oid refs/remotes/origin/atomic-hooks-1
                $ZERO_OID $head_oid refs/remotes/origin/atomic-hooks-2
                committed
                $ZERO_OID $head_oid refs/remotes/origin/atomic-hooks-1
                $ZERO_OID $head_oid refs/remotes/origin/atomic-hooks-2
+               preparing
+               $ZERO_OID ref:refs/remotes/origin/main refs/remotes/origin/HEAD
        EOF
 
        rm -f atomic/actual &&
@@ -497,7 +502,7 @@ test_expect_success 'fetch --atomic aborts all reference updates if hook aborts'
        head_oid=$(git rev-parse HEAD) &&
 
        cat >expected <<-EOF &&
-               prepared
+               preparing
                $ZERO_OID $head_oid refs/remotes/origin/atomic-hooks-abort-1
                $ZERO_OID $head_oid refs/remotes/origin/atomic-hooks-abort-2
                $ZERO_OID $head_oid refs/remotes/origin/atomic-hooks-abort-3