]> git.ipfire.org Git - thirdparty/git.git/commitdiff
submodule--helper: don't exit() on failure, return
authorÆvar Arnfjörð Bjarmason <avarab@gmail.com>
Wed, 31 Aug 2022 23:18:07 +0000 (01:18 +0200)
committerJunio C Hamano <gitster@pobox.com>
Fri, 2 Sep 2022 16:16:24 +0000 (09:16 -0700)
Change code downstream of module_update() to short-circuit and return
to the top-level on failure, rather than calling exit().

To do so we need to diligently check whether we "must_die_on_failure",
which is a pattern started in c51f8f94e5b (submodule--helper: run
update procedures from C, 2021-08-24), but which hadn't been completed
to the point where we could avoid calling exit() here.

This introduces no functional changes, but makes it easier to both
call these routines as a library in the future, and to eventually
avoid leaking memory.

This and similar control flow in submodule--helper.c could be made
simpler by properly "libifying" it, i.e. to have it consistently
return -1 on failures, and to early return on any non-success.

But let's leave that larger project for now, and (mostly) emulate what
were doing with the "exit(128)" before this change.

Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com>
Reviewed-by: Glen Choo <chooglen@google.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin/submodule--helper.c

index 35abb993d8e2156cfc7f399d5bcd78213149139e..1646caf82afb2e2d9bbe44e8542b65d5e3671770 100644 (file)
@@ -2123,7 +2123,8 @@ static int fetch_in_submodule(const char *module_path, int depth, int quiet,
        return run_command(&cp);
 }
 
-static int run_update_command(const struct update_data *ud, int subforce)
+static int run_update_command(const struct update_data *ud, int subforce,
+                             int *must_die_on_failure)
 {
        struct child_process cp = CHILD_PROCESS_INIT;
        char *oid = oid_to_hex(&ud->oid);
@@ -2187,7 +2188,7 @@ static int run_update_command(const struct update_data *ud, int subforce)
                }
 
                if (ret == 128)
-                       exit(ret);
+                       *must_die_on_failure = 1;
                return ret;
        }
 
@@ -2219,7 +2220,8 @@ static int run_update_command(const struct update_data *ud, int subforce)
        return 0;
 }
 
-static int run_update_procedure(const struct update_data *ud)
+static int run_update_procedure(const struct update_data *ud,
+                               int *must_die_on_failure)
 {
        int subforce = is_null_oid(&ud->suboid) || ud->force;
 
@@ -2246,7 +2248,7 @@ static int run_update_procedure(const struct update_data *ud)
                            ud->displaypath, oid_to_hex(&ud->oid));
        }
 
-       return run_update_command(ud, subforce);
+       return run_update_command(ud, subforce, must_die_on_failure);
 }
 
 static const char *remote_submodule_branch(const char *path)
@@ -2383,7 +2385,8 @@ static void update_data_to_args(const struct update_data *update_data,
                                    "--no-single-branch");
 }
 
-static int update_submodule(struct update_data *update_data)
+static int update_submodule(struct update_data *update_data,
+                           int *must_die_on_failure)
 {
        ensure_core_worktree(update_data->sm_path);
 
@@ -2419,9 +2422,15 @@ static int update_submodule(struct update_data *update_data)
                free(remote_ref);
        }
 
-       if (!oideq(&update_data->oid, &update_data->suboid) || update_data->force)
-               if (run_update_procedure(update_data))
+       if (!oideq(&update_data->oid, &update_data->suboid) || update_data->force) {
+               int ret;
+
+               ret = run_update_procedure(update_data, must_die_on_failure);
+               if (*must_die_on_failure)
+                       return ret;
+               if (ret)
                        return 1;
+       }
 
        if (update_data->recursive) {
                struct child_process cp = CHILD_PROCESS_INIT;
@@ -2437,14 +2446,13 @@ static int update_submodule(struct update_data *update_data)
                prepare_submodule_repo_env(&cp.env);
                update_data_to_args(&next, &cp.args);
 
-               /* die() if child process die()'d */
                ret = run_command(&cp);
                if (!ret)
                        return 0;
                die_message(_("Failed to recurse into submodule path '%s'"),
                            update_data->displaypath);
                if (ret == 128)
-                       exit(ret);
+                       *must_die_on_failure = 1;
                return ret;
        }
 
@@ -2477,12 +2485,19 @@ static int update_submodules(struct update_data *update_data)
 
        for (i = 0; i < suc.update_clone_nr; i++) {
                struct update_clone_data ucd = suc.update_clone[i];
+               int must_die_on_failure = 0;
+               int code;
 
                oidcpy(&update_data->oid, &ucd.oid);
                update_data->just_cloned = ucd.just_cloned;
                update_data->sm_path = ucd.sub->path;
 
-               if (update_submodule(update_data))
+               code = update_submodule(update_data, &must_die_on_failure);
+               if (code)
+                       ret = code;
+               if (must_die_on_failure)
+                       goto cleanup;
+               else if (code)
                        ret = 1;
        }