Junio C Hamano | f96400c | 2011-09-02 16:33:22 -0700 | [diff] [blame] | 1 | #include "cache.h" |
| 2 | #include "run-command.h" |
| 3 | #include "sigchain.h" |
| 4 | #include "connected.h" |
Nguyễn Thái Ngọc Duy | c6807a4 | 2013-05-26 08:16:17 +0700 | [diff] [blame] | 5 | #include "transport.h" |
Junio C Hamano | f96400c | 2011-09-02 16:33:22 -0700 | [diff] [blame] | 6 | |
| 7 | /* |
| 8 | * If we feed all the commits we want to verify to this command |
| 9 | * |
Junio C Hamano | d21c463 | 2012-03-15 14:57:02 -0700 | [diff] [blame] | 10 | * $ git rev-list --objects --stdin --not --all |
Junio C Hamano | f96400c | 2011-09-02 16:33:22 -0700 | [diff] [blame] | 11 | * |
| 12 | * and if it does not error out, that means everything reachable from |
Junio C Hamano | d21c463 | 2012-03-15 14:57:02 -0700 | [diff] [blame] | 13 | * these commits locally exists and is connected to our existing refs. |
| 14 | * Note that this does _not_ validate the individual objects. |
Junio C Hamano | f96400c | 2011-09-02 16:33:22 -0700 | [diff] [blame] | 15 | * |
| 16 | * Returns 0 if everything is connected, non-zero otherwise. |
| 17 | */ |
Jeff King | 7043c70 | 2016-07-15 06:30:40 -0400 | [diff] [blame] | 18 | int check_connected(sha1_iterate_fn fn, void *cb_data, |
| 19 | struct check_connected_options *opt) |
Junio C Hamano | f96400c | 2011-09-02 16:33:22 -0700 | [diff] [blame] | 20 | { |
René Scharfe | d318027 | 2014-08-19 21:09:35 +0200 | [diff] [blame] | 21 | struct child_process rev_list = CHILD_PROCESS_INIT; |
Jeff King | 7043c70 | 2016-07-15 06:30:40 -0400 | [diff] [blame] | 22 | struct check_connected_options defaults = CHECK_CONNECTED_INIT; |
Junio C Hamano | f96400c | 2011-09-02 16:33:22 -0700 | [diff] [blame] | 23 | char commit[41]; |
| 24 | unsigned char sha1[20]; |
Jeff King | 3be89f9 | 2016-07-15 06:28:32 -0400 | [diff] [blame] | 25 | int err = 0; |
Nguyễn Thái Ngọc Duy | c6807a4 | 2013-05-26 08:16:17 +0700 | [diff] [blame] | 26 | struct packed_git *new_pack = NULL; |
Jeff King | 7043c70 | 2016-07-15 06:30:40 -0400 | [diff] [blame] | 27 | struct transport *transport; |
Jeff King | 26936bf | 2014-06-30 12:58:51 -0400 | [diff] [blame] | 28 | size_t base_len; |
Junio C Hamano | f96400c | 2011-09-02 16:33:22 -0700 | [diff] [blame] | 29 | |
Jeff King | 7043c70 | 2016-07-15 06:30:40 -0400 | [diff] [blame] | 30 | if (!opt) |
| 31 | opt = &defaults; |
| 32 | transport = opt->transport; |
| 33 | |
Jeff King | e033184 | 2016-07-15 06:32:03 -0400 | [diff] [blame] | 34 | if (fn(cb_data, sha1)) { |
| 35 | if (opt->err_fd) |
| 36 | close(opt->err_fd); |
Junio C Hamano | f96400c | 2011-09-02 16:33:22 -0700 | [diff] [blame] | 37 | return err; |
Jeff King | e033184 | 2016-07-15 06:32:03 -0400 | [diff] [blame] | 38 | } |
Junio C Hamano | f96400c | 2011-09-02 16:33:22 -0700 | [diff] [blame] | 39 | |
Nguyễn Thái Ngọc Duy | c6807a4 | 2013-05-26 08:16:17 +0700 | [diff] [blame] | 40 | if (transport && transport->smart_options && |
| 41 | transport->smart_options->self_contained_and_connected && |
| 42 | transport->pack_lockfile && |
Jeff King | 26936bf | 2014-06-30 12:58:51 -0400 | [diff] [blame] | 43 | strip_suffix(transport->pack_lockfile, ".keep", &base_len)) { |
Nguyễn Thái Ngọc Duy | c6807a4 | 2013-05-26 08:16:17 +0700 | [diff] [blame] | 44 | struct strbuf idx_file = STRBUF_INIT; |
Jeff King | 26936bf | 2014-06-30 12:58:51 -0400 | [diff] [blame] | 45 | strbuf_add(&idx_file, transport->pack_lockfile, base_len); |
Nguyễn Thái Ngọc Duy | c6807a4 | 2013-05-26 08:16:17 +0700 | [diff] [blame] | 46 | strbuf_addstr(&idx_file, ".idx"); |
| 47 | new_pack = add_packed_git(idx_file.buf, idx_file.len, 1); |
| 48 | strbuf_release(&idx_file); |
| 49 | } |
| 50 | |
Jeff King | 7043c70 | 2016-07-15 06:30:40 -0400 | [diff] [blame] | 51 | if (opt->shallow_file) { |
Jeff King | 3be89f9 | 2016-07-15 06:28:32 -0400 | [diff] [blame] | 52 | argv_array_push(&rev_list.args, "--shallow-file"); |
Jeff King | 7043c70 | 2016-07-15 06:30:40 -0400 | [diff] [blame] | 53 | argv_array_push(&rev_list.args, opt->shallow_file); |
Nguyễn Thái Ngọc Duy | 614db3e | 2013-12-05 20:02:46 +0700 | [diff] [blame] | 54 | } |
Jeff King | 3be89f9 | 2016-07-15 06:28:32 -0400 | [diff] [blame] | 55 | argv_array_push(&rev_list.args,"rev-list"); |
| 56 | argv_array_push(&rev_list.args, "--objects"); |
| 57 | argv_array_push(&rev_list.args, "--stdin"); |
| 58 | argv_array_push(&rev_list.args, "--not"); |
| 59 | argv_array_push(&rev_list.args, "--all"); |
| 60 | argv_array_push(&rev_list.args, "--quiet"); |
Jeff King | 70d5e2d | 2016-07-15 06:32:28 -0400 | [diff] [blame] | 61 | if (opt->progress) |
| 62 | argv_array_pushf(&rev_list.args, "--progress=%s", |
| 63 | _("Checking connectivity")); |
Junio C Hamano | f96400c | 2011-09-02 16:33:22 -0700 | [diff] [blame] | 64 | |
Junio C Hamano | f96400c | 2011-09-02 16:33:22 -0700 | [diff] [blame] | 65 | rev_list.git_cmd = 1; |
| 66 | rev_list.in = -1; |
| 67 | rev_list.no_stdout = 1; |
Jeff King | e033184 | 2016-07-15 06:32:03 -0400 | [diff] [blame] | 68 | if (opt->err_fd) |
| 69 | rev_list.err = opt->err_fd; |
| 70 | else |
| 71 | rev_list.no_stderr = opt->quiet; |
| 72 | |
Junio C Hamano | f96400c | 2011-09-02 16:33:22 -0700 | [diff] [blame] | 73 | if (start_command(&rev_list)) |
| 74 | return error(_("Could not run 'git rev-list'")); |
| 75 | |
| 76 | sigchain_push(SIGPIPE, SIG_IGN); |
| 77 | |
| 78 | commit[40] = '\n'; |
| 79 | do { |
Nguyễn Thái Ngọc Duy | c6807a4 | 2013-05-26 08:16:17 +0700 | [diff] [blame] | 80 | /* |
| 81 | * If index-pack already checked that: |
| 82 | * - there are no dangling pointers in the new pack |
| 83 | * - the pack is self contained |
| 84 | * Then if the updated ref is in the new pack, then we |
| 85 | * are sure the ref is good and not sending it to |
| 86 | * rev-list for verification. |
| 87 | */ |
| 88 | if (new_pack && find_pack_entry_one(sha1, new_pack)) |
| 89 | continue; |
| 90 | |
Junio C Hamano | f96400c | 2011-09-02 16:33:22 -0700 | [diff] [blame] | 91 | memcpy(commit, sha1_to_hex(sha1), 40); |
| 92 | if (write_in_full(rev_list.in, commit, 41) < 0) { |
| 93 | if (errno != EPIPE && errno != EINVAL) |
Nguyễn Thái Ngọc Duy | 5cc026e | 2016-05-08 16:47:39 +0700 | [diff] [blame] | 94 | error_errno(_("failed write to rev-list")); |
Junio C Hamano | f96400c | 2011-09-02 16:33:22 -0700 | [diff] [blame] | 95 | err = -1; |
| 96 | break; |
| 97 | } |
| 98 | } while (!fn(cb_data, sha1)); |
| 99 | |
Nguyễn Thái Ngọc Duy | 5cc026e | 2016-05-08 16:47:39 +0700 | [diff] [blame] | 100 | if (close(rev_list.in)) |
| 101 | err = error_errno(_("failed to close rev-list's stdin")); |
Junio C Hamano | f96400c | 2011-09-02 16:33:22 -0700 | [diff] [blame] | 102 | |
| 103 | sigchain_pop(SIGPIPE); |
| 104 | return finish_command(&rev_list) || err; |
| 105 | } |