🌐 AI搜索 & 代理 主页
blob: ed3025e7a2a7cffdc6607aa9408d097f6d537768 [file] [log] [blame]
Junio C Hamanof96400c2011-09-02 23:33:221#include "cache.h"
Josh Steadmondfa33a22019-04-19 21:00:132#include "object-store.h"
Junio C Hamanof96400c2011-09-02 23:33:223#include "run-command.h"
4#include "sigchain.h"
5#include "connected.h"
Nguyễn Thái Ngọc Duyc6807a42013-05-26 01:16:176#include "transport.h"
Jonathan Tan0abe14f2017-08-18 22:20:267#include "packfile.h"
Christian Couderb14ed5a2019-06-25 13:40:318#include "promisor-remote.h"
Junio C Hamanof96400c2011-09-02 23:33:229
10/*
11 * If we feed all the commits we want to verify to this command
12 *
Junio C Hamanod21c4632012-03-15 21:57:0213 * $ git rev-list --objects --stdin --not --all
Junio C Hamanof96400c2011-09-02 23:33:2214 *
15 * and if it does not error out, that means everything reachable from
Junio C Hamanod21c4632012-03-15 21:57:0216 * these commits locally exists and is connected to our existing refs.
17 * Note that this does _not_ validate the individual objects.
Junio C Hamanof96400c2011-09-02 23:33:2218 *
19 * Returns 0 if everything is connected, non-zero otherwise.
20 */
brian m. carlson6ccac9e2017-10-15 22:06:5421int check_connected(oid_iterate_fn fn, void *cb_data,
Jeff King7043c702016-07-15 10:30:4022 struct check_connected_options *opt)
Junio C Hamanof96400c2011-09-02 23:33:2223{
René Scharfed3180272014-08-19 19:09:3524 struct child_process rev_list = CHILD_PROCESS_INIT;
René Scharfe24b75fa2020-08-12 16:52:4925 FILE *rev_list_in;
Jeff King7043c702016-07-15 10:30:4026 struct check_connected_options defaults = CHECK_CONNECTED_INIT;
Patrick Steinhardt9fec7b22021-09-01 13:09:5027 const struct object_id *oid;
Jeff King3be89f92016-07-15 10:28:3228 int err = 0;
Nguyễn Thái Ngọc Duyc6807a42013-05-26 01:16:1729 struct packed_git *new_pack = NULL;
Jeff King7043c702016-07-15 10:30:4030 struct transport *transport;
Jeff King26936bf2014-06-30 16:58:5131 size_t base_len;
Junio C Hamanof96400c2011-09-02 23:33:2232
Jeff King7043c702016-07-15 10:30:4033 if (!opt)
34 opt = &defaults;
35 transport = opt->transport;
36
Patrick Steinhardt9fec7b22021-09-01 13:09:5037 oid = fn(cb_data);
38 if (!oid) {
Jeff Kinge0331842016-07-15 10:32:0339 if (opt->err_fd)
40 close(opt->err_fd);
Junio C Hamanof96400c2011-09-02 23:33:2241 return err;
Jeff Kinge0331842016-07-15 10:32:0342 }
Junio C Hamanof96400c2011-09-02 23:33:2243
Nguyễn Thái Ngọc Duyc6807a42013-05-26 01:16:1744 if (transport && transport->smart_options &&
45 transport->smart_options->self_contained_and_connected &&
Jonathan Tan9da69a62020-06-10 20:57:2246 transport->pack_lockfiles.nr == 1 &&
47 strip_suffix(transport->pack_lockfiles.items[0].string,
48 ".keep", &base_len)) {
Nguyễn Thái Ngọc Duyc6807a42013-05-26 01:16:1749 struct strbuf idx_file = STRBUF_INIT;
Jonathan Tan9da69a62020-06-10 20:57:2250 strbuf_add(&idx_file, transport->pack_lockfiles.items[0].string,
51 base_len);
Nguyễn Thái Ngọc Duyc6807a42013-05-26 01:16:1752 strbuf_addstr(&idx_file, ".idx");
53 new_pack = add_packed_git(idx_file.buf, idx_file.len, 1);
54 strbuf_release(&idx_file);
55 }
56
Jonathan Tan2b984782020-03-20 22:00:4557 if (has_promisor_remote()) {
Josh Steadmondfa33a22019-04-19 21:00:1358 /*
59 * For partial clones, we don't want to have to do a regular
60 * connectivity check because we have to enumerate and exclude
61 * all promisor objects (slow), and then the connectivity check
62 * itself becomes a no-op because in a partial clone every
63 * object is a promisor object. Instead, just make sure we
Jonathan Tan50033772020-01-12 04:15:2464 * received, in a promisor packfile, the objects pointed to by
65 * each wanted ref.
Derrick Stoleeb739d972020-03-13 21:11:5566 *
67 * Before checking for promisor packs, be sure we have the
68 * latest pack-files loaded into memory.
Josh Steadmondfa33a22019-04-19 21:00:1369 */
Derrick Stoleeb739d972020-03-13 21:11:5570 reprepare_packed_git(the_repository);
Josh Steadmondfa33a22019-04-19 21:00:1371 do {
Jonathan Tan50033772020-01-12 04:15:2472 struct packed_git *p;
73
74 for (p = get_all_packs(the_repository); p; p = p->next) {
75 if (!p->pack_promisor)
76 continue;
Patrick Steinhardt9fec7b22021-09-01 13:09:5077 if (find_pack_entry_one(oid->hash, p))
Jonathan Tan50033772020-01-12 04:15:2478 goto promisor_pack_found;
79 }
Jonathan Tan2b984782020-03-20 22:00:4580 /*
81 * Fallback to rev-list with oid and the rest of the
82 * object IDs provided by fn.
83 */
84 goto no_promisor_pack_found;
Jonathan Tan50033772020-01-12 04:15:2485promisor_pack_found:
86 ;
Patrick Steinhardt9fec7b22021-09-01 13:09:5087 } while ((oid = fn(cb_data)) != NULL);
Josh Steadmondfa33a22019-04-19 21:00:1388 return 0;
89 }
90
Jonathan Tan2b984782020-03-20 22:00:4591no_promisor_pack_found:
Jeff King7043c702016-07-15 10:30:4092 if (opt->shallow_file) {
Jeff Kingef8d7ac2020-07-28 20:24:5393 strvec_push(&rev_list.args, "--shallow-file");
94 strvec_push(&rev_list.args, opt->shallow_file);
Nguyễn Thái Ngọc Duy614db3e2013-12-05 13:02:4695 }
Jeff Kingef8d7ac2020-07-28 20:24:5396 strvec_push(&rev_list.args,"rev-list");
97 strvec_push(&rev_list.args, "--objects");
98 strvec_push(&rev_list.args, "--stdin");
Christian Couderb14ed5a2019-06-25 13:40:3199 if (has_promisor_remote())
Jeff Kingef8d7ac2020-07-28 20:24:53100 strvec_push(&rev_list.args, "--exclude-promisor-objects");
Jonathan Tancf1e7c02018-07-02 22:08:43101 if (!opt->is_deepening_fetch) {
Jeff Kingef8d7ac2020-07-28 20:24:53102 strvec_push(&rev_list.args, "--not");
103 strvec_push(&rev_list.args, "--all");
Jonathan Tancf1e7c02018-07-02 22:08:43104 }
Jeff Kingef8d7ac2020-07-28 20:24:53105 strvec_push(&rev_list.args, "--quiet");
106 strvec_push(&rev_list.args, "--alternate-refs");
Jeff King70d5e2d2016-07-15 10:32:28107 if (opt->progress)
Jeff Kingef8d7ac2020-07-28 20:24:53108 strvec_pushf(&rev_list.args, "--progress=%s",
Jeff Kingf6d89422020-07-28 20:26:31109 _("Checking connectivity"));
Junio C Hamanof96400c2011-09-02 23:33:22110
Junio C Hamanof96400c2011-09-02 23:33:22111 rev_list.git_cmd = 1;
Ævar Arnfjörð Bjarmasonc7c4bde2021-11-25 22:52:24112 if (opt->env)
113 strvec_pushv(&rev_list.env_array, opt->env);
Junio C Hamanof96400c2011-09-02 23:33:22114 rev_list.in = -1;
115 rev_list.no_stdout = 1;
Jeff Kinge0331842016-07-15 10:32:03116 if (opt->err_fd)
117 rev_list.err = opt->err_fd;
118 else
119 rev_list.no_stderr = opt->quiet;
120
Junio C Hamanof96400c2011-09-02 23:33:22121 if (start_command(&rev_list))
122 return error(_("Could not run 'git rev-list'"));
123
124 sigchain_push(SIGPIPE, SIG_IGN);
125
René Scharfe24b75fa2020-08-12 16:52:49126 rev_list_in = xfdopen(rev_list.in, "w");
127
Junio C Hamanof96400c2011-09-02 23:33:22128 do {
Nguyễn Thái Ngọc Duyc6807a42013-05-26 01:16:17129 /*
130 * If index-pack already checked that:
131 * - there are no dangling pointers in the new pack
132 * - the pack is self contained
133 * Then if the updated ref is in the new pack, then we
134 * are sure the ref is good and not sending it to
135 * rev-list for verification.
136 */
Patrick Steinhardt9fec7b22021-09-01 13:09:50137 if (new_pack && find_pack_entry_one(oid->hash, new_pack))
Nguyễn Thái Ngọc Duyc6807a42013-05-26 01:16:17138 continue;
139
Patrick Steinhardt9fec7b22021-09-01 13:09:50140 if (fprintf(rev_list_in, "%s\n", oid_to_hex(oid)) < 0)
Junio C Hamanof96400c2011-09-02 23:33:22141 break;
Patrick Steinhardt9fec7b22021-09-01 13:09:50142 } while ((oid = fn(cb_data)) != NULL);
Junio C Hamanof96400c2011-09-02 23:33:22143
René Scharfe24b75fa2020-08-12 16:52:49144 if (ferror(rev_list_in) || fflush(rev_list_in)) {
145 if (errno != EPIPE && errno != EINVAL)
146 error_errno(_("failed write to rev-list"));
147 err = -1;
148 }
149
150 if (fclose(rev_list_in))
Nguyễn Thái Ngọc Duy5cc026e2016-05-08 09:47:39151 err = error_errno(_("failed to close rev-list's stdin"));
Junio C Hamanof96400c2011-09-02 23:33:22152
153 sigchain_pop(SIGPIPE);
154 return finish_command(&rev_list) || err;
155}