Johannes Schindelin | 30415d5 | 2007-09-10 23:03:15 -0400 | [diff] [blame] | 1 | #include "cache.h" |
Michael Haggerty | 697cc8e | 2014-10-01 12:28:42 +0200 | [diff] [blame] | 2 | #include "lockfile.h" |
Johannes Schindelin | 30415d5 | 2007-09-10 23:03:15 -0400 | [diff] [blame] | 3 | #include "bundle.h" |
Stefan Beller | cbd53a2 | 2018-05-15 16:42:15 -0700 | [diff] [blame] | 4 | #include "object-store.h" |
Stefan Beller | 109cd76 | 2018-06-28 18:21:51 -0700 | [diff] [blame] | 5 | #include "repository.h" |
Johannes Schindelin | 30415d5 | 2007-09-10 23:03:15 -0400 | [diff] [blame] | 6 | #include "object.h" |
| 7 | #include "commit.h" |
| 8 | #include "diff.h" |
| 9 | #include "revision.h" |
| 10 | #include "list-objects.h" |
| 11 | #include "run-command.h" |
Junio C Hamano | fa30383 | 2007-11-22 16:51:18 -0800 | [diff] [blame] | 12 | #include "refs.h" |
Jeff King | dbbcd44 | 2020-07-28 16:23:39 -0400 | [diff] [blame] | 13 | #include "strvec.h" |
Johannes Schindelin | 30415d5 | 2007-09-10 23:03:15 -0400 | [diff] [blame] | 14 | |
brian m. carlson | c5aecfc | 2020-07-29 23:14:20 +0000 | [diff] [blame] | 15 | |
| 16 | static const char v2_bundle_signature[] = "# v2 git bundle\n"; |
| 17 | static const char v3_bundle_signature[] = "# v3 git bundle\n"; |
| 18 | static struct { |
| 19 | int version; |
| 20 | const char *signature; |
| 21 | } bundle_sigs[] = { |
| 22 | { 2, v2_bundle_signature }, |
| 23 | { 3, v3_bundle_signature }, |
| 24 | }; |
Johannes Schindelin | 30415d5 | 2007-09-10 23:03:15 -0400 | [diff] [blame] | 25 | |
brian m. carlson | b8607f3 | 2017-05-01 02:28:59 +0000 | [diff] [blame] | 26 | static void add_to_ref_list(const struct object_id *oid, const char *name, |
Johannes Schindelin | 30415d5 | 2007-09-10 23:03:15 -0400 | [diff] [blame] | 27 | struct ref_list *list) |
| 28 | { |
Dmitry S. Dolzhenko | 5cbbe13 | 2014-03-04 02:31:50 +0400 | [diff] [blame] | 29 | ALLOC_GROW(list->list, list->nr + 1, list->alloc); |
brian m. carlson | b8607f3 | 2017-05-01 02:28:59 +0000 | [diff] [blame] | 30 | oidcpy(&list->list[list->nr].oid, oid); |
Johannes Schindelin | 30415d5 | 2007-09-10 23:03:15 -0400 | [diff] [blame] | 31 | list->list[list->nr].name = xstrdup(name); |
| 32 | list->nr++; |
| 33 | } |
| 34 | |
brian m. carlson | c5aecfc | 2020-07-29 23:14:20 +0000 | [diff] [blame] | 35 | static int parse_capability(struct bundle_header *header, const char *capability) |
brian m. carlson | 6161ce7 | 2020-06-19 17:56:00 +0000 | [diff] [blame] | 36 | { |
brian m. carlson | c5aecfc | 2020-07-29 23:14:20 +0000 | [diff] [blame] | 37 | const char *arg; |
| 38 | if (skip_prefix(capability, "object-format=", &arg)) { |
| 39 | int algo = hash_algo_by_name(arg); |
| 40 | if (algo == GIT_HASH_UNKNOWN) |
| 41 | return error(_("unrecognized bundle hash algorithm: %s"), arg); |
| 42 | header->hash_algo = &hash_algos[algo]; |
| 43 | return 0; |
| 44 | } |
| 45 | return error(_("unknown capability '%s'"), capability); |
| 46 | } |
brian m. carlson | 6161ce7 | 2020-06-19 17:56:00 +0000 | [diff] [blame] | 47 | |
brian m. carlson | c5aecfc | 2020-07-29 23:14:20 +0000 | [diff] [blame] | 48 | static int parse_bundle_signature(struct bundle_header *header, const char *line) |
| 49 | { |
| 50 | int i; |
| 51 | |
| 52 | for (i = 0; i < ARRAY_SIZE(bundle_sigs); i++) { |
| 53 | if (!strcmp(line, bundle_sigs[i].signature)) { |
| 54 | header->version = bundle_sigs[i].version; |
| 55 | return 0; |
| 56 | } |
| 57 | } |
| 58 | return -1; |
brian m. carlson | 6161ce7 | 2020-06-19 17:56:00 +0000 | [diff] [blame] | 59 | } |
| 60 | |
Junio C Hamano | 2727b71 | 2011-10-13 15:19:31 -0700 | [diff] [blame] | 61 | static int parse_bundle_header(int fd, struct bundle_header *header, |
| 62 | const char *report_path) |
Junio C Hamano | f3fa183 | 2007-11-08 15:35:32 -0800 | [diff] [blame] | 63 | { |
Junio C Hamano | e9ee84c | 2011-10-13 15:12:02 -0700 | [diff] [blame] | 64 | struct strbuf buf = STRBUF_INIT; |
Junio C Hamano | e9ee84c | 2011-10-13 15:12:02 -0700 | [diff] [blame] | 65 | int status = 0; |
Johannes Schindelin | 30415d5 | 2007-09-10 23:03:15 -0400 | [diff] [blame] | 66 | |
Junio C Hamano | e9ee84c | 2011-10-13 15:12:02 -0700 | [diff] [blame] | 67 | /* The bundle header begins with the signature */ |
Thomas Rast | 5e8617f | 2012-02-22 20:34:22 +0100 | [diff] [blame] | 68 | if (strbuf_getwholeline_fd(&buf, fd, '\n') || |
brian m. carlson | c5aecfc | 2020-07-29 23:14:20 +0000 | [diff] [blame] | 69 | parse_bundle_signature(header, buf.buf)) { |
Junio C Hamano | 2727b71 | 2011-10-13 15:19:31 -0700 | [diff] [blame] | 70 | if (report_path) |
brian m. carlson | c5aecfc | 2020-07-29 23:14:20 +0000 | [diff] [blame] | 71 | error(_("'%s' does not look like a v2 or v3 bundle file"), |
Junio C Hamano | 2727b71 | 2011-10-13 15:19:31 -0700 | [diff] [blame] | 72 | report_path); |
Junio C Hamano | e9ee84c | 2011-10-13 15:12:02 -0700 | [diff] [blame] | 73 | status = -1; |
| 74 | goto abort; |
| 75 | } |
| 76 | |
brian m. carlson | c5aecfc | 2020-07-29 23:14:20 +0000 | [diff] [blame] | 77 | header->hash_algo = the_hash_algo; |
| 78 | |
Junio C Hamano | e9ee84c | 2011-10-13 15:12:02 -0700 | [diff] [blame] | 79 | /* The bundle header ends with an empty line */ |
Thomas Rast | 5e8617f | 2012-02-22 20:34:22 +0100 | [diff] [blame] | 80 | while (!strbuf_getwholeline_fd(&buf, fd, '\n') && |
Junio C Hamano | e9ee84c | 2011-10-13 15:12:02 -0700 | [diff] [blame] | 81 | buf.len && buf.buf[0] != '\n') { |
brian m. carlson | b8607f3 | 2017-05-01 02:28:59 +0000 | [diff] [blame] | 82 | struct object_id oid; |
Junio C Hamano | e9ee84c | 2011-10-13 15:12:02 -0700 | [diff] [blame] | 83 | int is_prereq = 0; |
brian m. carlson | b8607f3 | 2017-05-01 02:28:59 +0000 | [diff] [blame] | 84 | const char *p; |
Junio C Hamano | e9ee84c | 2011-10-13 15:12:02 -0700 | [diff] [blame] | 85 | |
Junio C Hamano | e9ee84c | 2011-10-13 15:12:02 -0700 | [diff] [blame] | 86 | strbuf_rtrim(&buf); |
| 87 | |
brian m. carlson | c5aecfc | 2020-07-29 23:14:20 +0000 | [diff] [blame] | 88 | if (header->version == 3 && *buf.buf == '@') { |
| 89 | if (parse_capability(header, buf.buf + 1)) { |
brian m. carlson | 6161ce7 | 2020-06-19 17:56:00 +0000 | [diff] [blame] | 90 | status = -1; |
| 91 | break; |
| 92 | } |
brian m. carlson | c5aecfc | 2020-07-29 23:14:20 +0000 | [diff] [blame] | 93 | continue; |
| 94 | } |
| 95 | |
| 96 | if (*buf.buf == '-') { |
| 97 | is_prereq = 1; |
| 98 | strbuf_remove(&buf, 0, 1); |
brian m. carlson | 6161ce7 | 2020-06-19 17:56:00 +0000 | [diff] [blame] | 99 | } |
| 100 | |
Junio C Hamano | e9ee84c | 2011-10-13 15:12:02 -0700 | [diff] [blame] | 101 | /* |
| 102 | * Tip lines have object name, SP, and refname. |
| 103 | * Prerequisites have object name that is optionally |
| 104 | * followed by SP and subject line. |
| 105 | */ |
brian m. carlson | 6161ce7 | 2020-06-19 17:56:00 +0000 | [diff] [blame] | 106 | if (parse_oid_hex_algop(buf.buf, &oid, &p, header->hash_algo) || |
brian m. carlson | b8607f3 | 2017-05-01 02:28:59 +0000 | [diff] [blame] | 107 | (*p && !isspace(*p)) || |
| 108 | (!is_prereq && !*p)) { |
Junio C Hamano | 2727b71 | 2011-10-13 15:19:31 -0700 | [diff] [blame] | 109 | if (report_path) |
Nguyễn Thái Ngọc Duy | 8a1e7ea | 2012-04-23 19:30:30 +0700 | [diff] [blame] | 110 | error(_("unrecognized header: %s%s (%d)"), |
Junio C Hamano | 2727b71 | 2011-10-13 15:19:31 -0700 | [diff] [blame] | 111 | (is_prereq ? "-" : ""), buf.buf, (int)buf.len); |
Junio C Hamano | e9ee84c | 2011-10-13 15:12:02 -0700 | [diff] [blame] | 112 | status = -1; |
| 113 | break; |
| 114 | } else { |
| 115 | if (is_prereq) |
brian m. carlson | b8607f3 | 2017-05-01 02:28:59 +0000 | [diff] [blame] | 116 | add_to_ref_list(&oid, "", &header->prerequisites); |
Junio C Hamano | e9ee84c | 2011-10-13 15:12:02 -0700 | [diff] [blame] | 117 | else |
brian m. carlson | b8607f3 | 2017-05-01 02:28:59 +0000 | [diff] [blame] | 118 | add_to_ref_list(&oid, p + 1, &header->references); |
Junio C Hamano | e9ee84c | 2011-10-13 15:12:02 -0700 | [diff] [blame] | 119 | } |
| 120 | } |
| 121 | |
| 122 | abort: |
| 123 | if (status) { |
| 124 | close(fd); |
| 125 | fd = -1; |
| 126 | } |
| 127 | strbuf_release(&buf); |
Johannes Schindelin | 30415d5 | 2007-09-10 23:03:15 -0400 | [diff] [blame] | 128 | return fd; |
| 129 | } |
| 130 | |
Johannes Schindelin | 30415d5 | 2007-09-10 23:03:15 -0400 | [diff] [blame] | 131 | int read_bundle_header(const char *path, struct bundle_header *header) |
| 132 | { |
Junio C Hamano | 2727b71 | 2011-10-13 15:19:31 -0700 | [diff] [blame] | 133 | int fd = open(path, O_RDONLY); |
Johannes Schindelin | 30415d5 | 2007-09-10 23:03:15 -0400 | [diff] [blame] | 134 | |
Johannes Schindelin | 30415d5 | 2007-09-10 23:03:15 -0400 | [diff] [blame] | 135 | if (fd < 0) |
Nguyễn Thái Ngọc Duy | 8a1e7ea | 2012-04-23 19:30:30 +0700 | [diff] [blame] | 136 | return error(_("could not open '%s'"), path); |
Junio C Hamano | 2727b71 | 2011-10-13 15:19:31 -0700 | [diff] [blame] | 137 | return parse_bundle_header(fd, header, path); |
| 138 | } |
| 139 | |
| 140 | int is_bundle(const char *path, int quiet) |
| 141 | { |
| 142 | struct bundle_header header; |
| 143 | int fd = open(path, O_RDONLY); |
| 144 | |
| 145 | if (fd < 0) |
| 146 | return 0; |
| 147 | memset(&header, 0, sizeof(header)); |
| 148 | fd = parse_bundle_header(fd, &header, quiet ? NULL : path); |
| 149 | if (fd >= 0) |
| 150 | close(fd); |
| 151 | return (fd >= 0); |
Johannes Schindelin | 30415d5 | 2007-09-10 23:03:15 -0400 | [diff] [blame] | 152 | } |
| 153 | |
| 154 | static int list_refs(struct ref_list *r, int argc, const char **argv) |
| 155 | { |
| 156 | int i; |
| 157 | |
| 158 | for (i = 0; i < r->nr; i++) { |
| 159 | if (argc > 1) { |
| 160 | int j; |
| 161 | for (j = 1; j < argc; j++) |
| 162 | if (!strcmp(r->list[i].name, argv[j])) |
| 163 | break; |
| 164 | if (j == argc) |
| 165 | continue; |
| 166 | } |
brian m. carlson | b8607f3 | 2017-05-01 02:28:59 +0000 | [diff] [blame] | 167 | printf("%s %s\n", oid_to_hex(&r->list[i].oid), |
Johannes Schindelin | 30415d5 | 2007-09-10 23:03:15 -0400 | [diff] [blame] | 168 | r->list[i].name); |
| 169 | } |
| 170 | return 0; |
| 171 | } |
| 172 | |
Nguyễn Thái Ngọc Duy | 208acbf | 2014-03-25 20:23:26 +0700 | [diff] [blame] | 173 | /* Remember to update object flag allocation in object.h */ |
Johannes Schindelin | 30415d5 | 2007-09-10 23:03:15 -0400 | [diff] [blame] | 174 | #define PREREQ_MARK (1u<<16) |
| 175 | |
Nguyễn Thái Ngọc Duy | 74ae4b6 | 2018-11-10 06:49:01 +0100 | [diff] [blame] | 176 | int verify_bundle(struct repository *r, |
| 177 | struct bundle_header *header, |
| 178 | int verbose) |
Johannes Schindelin | 30415d5 | 2007-09-10 23:03:15 -0400 | [diff] [blame] | 179 | { |
| 180 | /* |
| 181 | * Do fast check, then if any prereqs are missing then go line by line |
| 182 | * to be verbose about the errors |
| 183 | */ |
| 184 | struct ref_list *p = &header->prerequisites; |
| 185 | struct rev_info revs; |
Nguyễn Thái Ngọc Duy | a80aad7 | 2009-05-21 19:32:44 +1000 | [diff] [blame] | 186 | const char *argv[] = {NULL, "--all", NULL}; |
Johannes Schindelin | 30415d5 | 2007-09-10 23:03:15 -0400 | [diff] [blame] | 187 | struct commit *commit; |
| 188 | int i, ret = 0, req_nr; |
Nguyễn Thái Ngọc Duy | 8a1e7ea | 2012-04-23 19:30:30 +0700 | [diff] [blame] | 189 | const char *message = _("Repository lacks these prerequisite commits:"); |
Johannes Schindelin | 30415d5 | 2007-09-10 23:03:15 -0400 | [diff] [blame] | 190 | |
Johannes Schindelin | 3bbbe46 | 2019-05-27 12:59:14 -0700 | [diff] [blame] | 191 | if (!r || !r->objects || !r->objects->odb) |
| 192 | return error(_("need a repository to verify a bundle")); |
| 193 | |
Nguyễn Thái Ngọc Duy | 74ae4b6 | 2018-11-10 06:49:01 +0100 | [diff] [blame] | 194 | repo_init_revisions(r, &revs, NULL); |
Johannes Schindelin | 30415d5 | 2007-09-10 23:03:15 -0400 | [diff] [blame] | 195 | for (i = 0; i < p->nr; i++) { |
| 196 | struct ref_list_entry *e = p->list + i; |
Nguyễn Thái Ngọc Duy | 74ae4b6 | 2018-11-10 06:49:01 +0100 | [diff] [blame] | 197 | struct object *o = parse_object(r, &e->oid); |
Johannes Schindelin | 30415d5 | 2007-09-10 23:03:15 -0400 | [diff] [blame] | 198 | if (o) { |
| 199 | o->flags |= PREREQ_MARK; |
| 200 | add_pending_object(&revs, o, e->name); |
| 201 | continue; |
| 202 | } |
| 203 | if (++ret == 1) |
Daniel Lowe | 9db56f7 | 2008-11-10 16:07:52 -0500 | [diff] [blame] | 204 | error("%s", message); |
brian m. carlson | b8607f3 | 2017-05-01 02:28:59 +0000 | [diff] [blame] | 205 | error("%s %s", oid_to_hex(&e->oid), e->name); |
Johannes Schindelin | 30415d5 | 2007-09-10 23:03:15 -0400 | [diff] [blame] | 206 | } |
| 207 | if (revs.pending.nr != p->nr) |
| 208 | return ret; |
| 209 | req_nr = revs.pending.nr; |
| 210 | setup_revisions(2, argv, &revs, NULL); |
| 211 | |
Martin Koegler | 3d51e1b | 2008-02-18 08:31:56 +0100 | [diff] [blame] | 212 | if (prepare_revision_walk(&revs)) |
Nguyễn Thái Ngọc Duy | 8a1e7ea | 2012-04-23 19:30:30 +0700 | [diff] [blame] | 213 | die(_("revision walk setup failed")); |
Johannes Schindelin | 30415d5 | 2007-09-10 23:03:15 -0400 | [diff] [blame] | 214 | |
| 215 | i = req_nr; |
| 216 | while (i && (commit = get_revision(&revs))) |
| 217 | if (commit->object.flags & PREREQ_MARK) |
| 218 | i--; |
| 219 | |
René Scharfe | 6364739 | 2017-12-25 18:46:14 +0100 | [diff] [blame] | 220 | for (i = 0; i < p->nr; i++) { |
| 221 | struct ref_list_entry *e = p->list + i; |
Nguyễn Thái Ngọc Duy | 74ae4b6 | 2018-11-10 06:49:01 +0100 | [diff] [blame] | 222 | struct object *o = parse_object(r, &e->oid); |
René Scharfe | 6364739 | 2017-12-25 18:46:14 +0100 | [diff] [blame] | 223 | assert(o); /* otherwise we'd have returned early */ |
| 224 | if (o->flags & SHOWN) |
| 225 | continue; |
| 226 | if (++ret == 1) |
| 227 | error("%s", message); |
| 228 | error("%s %s", oid_to_hex(&e->oid), e->name); |
| 229 | } |
Johannes Schindelin | 30415d5 | 2007-09-10 23:03:15 -0400 | [diff] [blame] | 230 | |
Martin Ågren | b2ccdf7 | 2017-09-23 01:34:51 +0200 | [diff] [blame] | 231 | /* Clean up objects used, as they will be reused. */ |
René Scharfe | 6364739 | 2017-12-25 18:46:14 +0100 | [diff] [blame] | 232 | for (i = 0; i < p->nr; i++) { |
| 233 | struct ref_list_entry *e = p->list + i; |
Nguyễn Thái Ngọc Duy | 74ae4b6 | 2018-11-10 06:49:01 +0100 | [diff] [blame] | 234 | commit = lookup_commit_reference_gently(r, &e->oid, 1); |
René Scharfe | 6364739 | 2017-12-25 18:46:14 +0100 | [diff] [blame] | 235 | if (commit) |
| 236 | clear_commit_marks(commit, ALL_REV_FLAGS); |
| 237 | } |
Johannes Schindelin | 30415d5 | 2007-09-10 23:03:15 -0400 | [diff] [blame] | 238 | |
| 239 | if (verbose) { |
| 240 | struct ref_list *r; |
| 241 | |
| 242 | r = &header->references; |
Lukas Fleischer | a02ffe0 | 2013-03-08 19:01:26 +0100 | [diff] [blame] | 243 | printf_ln(Q_("The bundle contains this ref:", |
| 244 | "The bundle contains these %d refs:", |
Nguyễn Thái Ngọc Duy | 8a1e7ea | 2012-04-23 19:30:30 +0700 | [diff] [blame] | 245 | r->nr), |
| 246 | r->nr); |
Johannes Schindelin | 30415d5 | 2007-09-10 23:03:15 -0400 | [diff] [blame] | 247 | list_refs(r, 0, NULL); |
Lukas Fleischer | 71ba6b1 | 2013-03-07 01:56:35 +0100 | [diff] [blame] | 248 | r = &header->prerequisites; |
Junio C Hamano | 8c3710f | 2012-06-04 11:51:13 -0700 | [diff] [blame] | 249 | if (!r->nr) { |
| 250 | printf_ln(_("The bundle records a complete history.")); |
| 251 | } else { |
Lukas Fleischer | a02ffe0 | 2013-03-08 19:01:26 +0100 | [diff] [blame] | 252 | printf_ln(Q_("The bundle requires this ref:", |
| 253 | "The bundle requires these %d refs:", |
Junio C Hamano | 8c3710f | 2012-06-04 11:51:13 -0700 | [diff] [blame] | 254 | r->nr), |
| 255 | r->nr); |
| 256 | list_refs(r, 0, NULL); |
| 257 | } |
Johannes Schindelin | 30415d5 | 2007-09-10 23:03:15 -0400 | [diff] [blame] | 258 | } |
| 259 | return ret; |
| 260 | } |
| 261 | |
| 262 | int list_bundle_refs(struct bundle_header *header, int argc, const char **argv) |
| 263 | { |
| 264 | return list_refs(&header->references, argc, argv); |
| 265 | } |
| 266 | |
Johannes Schindelin | c9a42c4 | 2009-01-02 19:08:46 +0100 | [diff] [blame] | 267 | static int is_tag_in_date_range(struct object *tag, struct rev_info *revs) |
| 268 | { |
| 269 | unsigned long size; |
| 270 | enum object_type type; |
René Scharfe | 6404594 | 2014-10-04 00:40:24 +0200 | [diff] [blame] | 271 | char *buf = NULL, *line, *lineend; |
Johannes Schindelin | dddbad7 | 2017-04-26 21:29:31 +0200 | [diff] [blame] | 272 | timestamp_t date; |
René Scharfe | 6404594 | 2014-10-04 00:40:24 +0200 | [diff] [blame] | 273 | int result = 1; |
Johannes Schindelin | c9a42c4 | 2009-01-02 19:08:46 +0100 | [diff] [blame] | 274 | |
| 275 | if (revs->max_age == -1 && revs->min_age == -1) |
René Scharfe | 6404594 | 2014-10-04 00:40:24 +0200 | [diff] [blame] | 276 | goto out; |
Johannes Schindelin | c9a42c4 | 2009-01-02 19:08:46 +0100 | [diff] [blame] | 277 | |
brian m. carlson | b4f5aca | 2018-03-12 02:27:53 +0000 | [diff] [blame] | 278 | buf = read_object_file(&tag->oid, &type, &size); |
Johannes Schindelin | c9a42c4 | 2009-01-02 19:08:46 +0100 | [diff] [blame] | 279 | if (!buf) |
René Scharfe | 6404594 | 2014-10-04 00:40:24 +0200 | [diff] [blame] | 280 | goto out; |
Johannes Schindelin | c9a42c4 | 2009-01-02 19:08:46 +0100 | [diff] [blame] | 281 | line = memmem(buf, size, "\ntagger ", 8); |
| 282 | if (!line++) |
René Scharfe | 6404594 | 2014-10-04 00:40:24 +0200 | [diff] [blame] | 283 | goto out; |
Lukas Fleischer | 2c8544a | 2014-08-02 10:39:06 +0200 | [diff] [blame] | 284 | lineend = memchr(line, '\n', buf + size - line); |
| 285 | line = memchr(line, '>', lineend ? lineend - line : buf + size - line); |
Johannes Schindelin | c9a42c4 | 2009-01-02 19:08:46 +0100 | [diff] [blame] | 286 | if (!line++) |
René Scharfe | 6404594 | 2014-10-04 00:40:24 +0200 | [diff] [blame] | 287 | goto out; |
Johannes Schindelin | 1aeb7e7 | 2017-04-21 12:45:44 +0200 | [diff] [blame] | 288 | date = parse_timestamp(line, NULL, 10); |
René Scharfe | 6404594 | 2014-10-04 00:40:24 +0200 | [diff] [blame] | 289 | result = (revs->max_age == -1 || revs->max_age < date) && |
Johannes Schindelin | c9a42c4 | 2009-01-02 19:08:46 +0100 | [diff] [blame] | 290 | (revs->min_age == -1 || revs->min_age > date); |
René Scharfe | 6404594 | 2014-10-04 00:40:24 +0200 | [diff] [blame] | 291 | out: |
| 292 | free(buf); |
| 293 | return result; |
Johannes Schindelin | c9a42c4 | 2009-01-02 19:08:46 +0100 | [diff] [blame] | 294 | } |
| 295 | |
Michael Haggerty | e54c347 | 2015-08-10 11:47:37 +0200 | [diff] [blame] | 296 | |
Jeff King | 2c8ee1f | 2018-11-16 04:43:59 -0500 | [diff] [blame] | 297 | /* Write the pack data to bundle_fd */ |
Jeff King | ef8d7ac | 2020-07-28 16:24:53 -0400 | [diff] [blame] | 298 | static int write_pack_data(int bundle_fd, struct rev_info *revs, struct strvec *pack_options) |
Junio C Hamano | 5e626b9 | 2014-10-30 10:45:41 -0700 | [diff] [blame] | 299 | { |
| 300 | struct child_process pack_objects = CHILD_PROCESS_INIT; |
| 301 | int i; |
| 302 | |
Jeff King | ef8d7ac | 2020-07-28 16:24:53 -0400 | [diff] [blame] | 303 | strvec_pushl(&pack_objects.args, |
Jeff King | f6d8942 | 2020-07-28 16:26:31 -0400 | [diff] [blame] | 304 | "pack-objects", |
| 305 | "--stdout", "--thin", "--delta-base-offset", |
| 306 | NULL); |
Jeff King | d70a9eb | 2020-07-28 20:37:20 -0400 | [diff] [blame] | 307 | strvec_pushv(&pack_objects.args, pack_options->v); |
Junio C Hamano | 5e626b9 | 2014-10-30 10:45:41 -0700 | [diff] [blame] | 308 | pack_objects.in = -1; |
| 309 | pack_objects.out = bundle_fd; |
| 310 | pack_objects.git_cmd = 1; |
Jeff King | 2c8ee1f | 2018-11-16 04:43:59 -0500 | [diff] [blame] | 311 | |
| 312 | /* |
| 313 | * start_command() will close our descriptor if it's >1. Duplicate it |
| 314 | * to avoid surprising the caller. |
| 315 | */ |
| 316 | if (pack_objects.out > 1) { |
| 317 | pack_objects.out = dup(pack_objects.out); |
| 318 | if (pack_objects.out < 0) { |
| 319 | error_errno(_("unable to dup bundle descriptor")); |
| 320 | child_process_clear(&pack_objects); |
| 321 | return -1; |
| 322 | } |
| 323 | } |
| 324 | |
Junio C Hamano | 5e626b9 | 2014-10-30 10:45:41 -0700 | [diff] [blame] | 325 | if (start_command(&pack_objects)) |
| 326 | return error(_("Could not spawn pack-objects")); |
| 327 | |
Junio C Hamano | 5e626b9 | 2014-10-30 10:45:41 -0700 | [diff] [blame] | 328 | for (i = 0; i < revs->pending.nr; i++) { |
| 329 | struct object *object = revs->pending.objects[i].item; |
| 330 | if (object->flags & UNINTERESTING) |
| 331 | write_or_die(pack_objects.in, "^", 1); |
brian m. carlson | 703d2d4 | 2019-08-18 20:04:11 +0000 | [diff] [blame] | 332 | write_or_die(pack_objects.in, oid_to_hex(&object->oid), the_hash_algo->hexsz); |
Junio C Hamano | 5e626b9 | 2014-10-30 10:45:41 -0700 | [diff] [blame] | 333 | write_or_die(pack_objects.in, "\n", 1); |
| 334 | } |
| 335 | close(pack_objects.in); |
| 336 | if (finish_command(&pack_objects)) |
| 337 | return error(_("pack-objects died")); |
| 338 | return 0; |
| 339 | } |
| 340 | |
Jeff King | d9362ef | 2014-10-30 17:35:24 -0400 | [diff] [blame] | 341 | /* |
| 342 | * Write out bundle refs based on the tips already |
| 343 | * parsed into revs.pending. As a side effect, may |
| 344 | * manipulate revs.pending to include additional |
| 345 | * necessary objects (like tags). |
| 346 | * |
| 347 | * Returns the number of refs written, or negative |
| 348 | * on error. |
| 349 | */ |
| 350 | static int write_bundle_refs(int bundle_fd, struct rev_info *revs) |
Junio C Hamano | e8eb251 | 2014-10-30 11:01:37 -0700 | [diff] [blame] | 351 | { |
Jeff King | d9362ef | 2014-10-30 17:35:24 -0400 | [diff] [blame] | 352 | int i; |
| 353 | int ref_count = 0; |
Junio C Hamano | e8eb251 | 2014-10-30 11:01:37 -0700 | [diff] [blame] | 354 | |
Jeff King | d9362ef | 2014-10-30 17:35:24 -0400 | [diff] [blame] | 355 | for (i = 0; i < revs->pending.nr; i++) { |
| 356 | struct object_array_entry *e = revs->pending.objects + i; |
brian m. carlson | f2fd076 | 2015-11-10 02:22:28 +0000 | [diff] [blame] | 357 | struct object_id oid; |
Johannes Schindelin | 30415d5 | 2007-09-10 23:03:15 -0400 | [diff] [blame] | 358 | char *ref; |
Junio C Hamano | fa30383 | 2007-11-22 16:51:18 -0800 | [diff] [blame] | 359 | const char *display_ref; |
| 360 | int flag; |
Johannes Schindelin | 30415d5 | 2007-09-10 23:03:15 -0400 | [diff] [blame] | 361 | |
| 362 | if (e->item->flags & UNINTERESTING) |
| 363 | continue; |
Jonathan Tan | f24c30e | 2020-09-01 15:28:09 -0700 | [diff] [blame] | 364 | if (dwim_ref(e->name, strlen(e->name), &oid, &ref, 0) != 1) |
Stefan Beller | c8a571d | 2015-03-10 16:51:48 -0700 | [diff] [blame] | 365 | goto skip_write_ref; |
brian m. carlson | 34c290a | 2017-10-15 22:06:56 +0000 | [diff] [blame] | 366 | if (read_ref_full(e->name, RESOLVE_REF_READING, &oid, &flag)) |
Junio C Hamano | fa30383 | 2007-11-22 16:51:18 -0800 | [diff] [blame] | 367 | flag = 0; |
| 368 | display_ref = (flag & REF_ISSYMREF) ? e->name : ref; |
| 369 | |
Johannes Schindelin | c9a42c4 | 2009-01-02 19:08:46 +0100 | [diff] [blame] | 370 | if (e->item->type == OBJ_TAG && |
Jeff King | d9362ef | 2014-10-30 17:35:24 -0400 | [diff] [blame] | 371 | !is_tag_in_date_range(e->item, revs)) { |
Johannes Schindelin | c9a42c4 | 2009-01-02 19:08:46 +0100 | [diff] [blame] | 372 | e->item->flags |= UNINTERESTING; |
Stefan Beller | c8a571d | 2015-03-10 16:51:48 -0700 | [diff] [blame] | 373 | goto skip_write_ref; |
Johannes Schindelin | c9a42c4 | 2009-01-02 19:08:46 +0100 | [diff] [blame] | 374 | } |
| 375 | |
Johannes Schindelin | 30415d5 | 2007-09-10 23:03:15 -0400 | [diff] [blame] | 376 | /* |
| 377 | * Make sure the refs we wrote out is correct; --max-count and |
| 378 | * other limiting options could have prevented all the tips |
| 379 | * from getting output. |
| 380 | * |
| 381 | * Non commit objects such as tags and blobs do not have |
| 382 | * this issue as they are not affected by those extra |
| 383 | * constraints. |
| 384 | */ |
| 385 | if (!(e->item->flags & SHOWN) && e->item->type == OBJ_COMMIT) { |
Nguyễn Thái Ngọc Duy | 8a1e7ea | 2012-04-23 19:30:30 +0700 | [diff] [blame] | 386 | warning(_("ref '%s' is excluded by the rev-list options"), |
Johannes Schindelin | 30415d5 | 2007-09-10 23:03:15 -0400 | [diff] [blame] | 387 | e->name); |
Stefan Beller | c8a571d | 2015-03-10 16:51:48 -0700 | [diff] [blame] | 388 | goto skip_write_ref; |
Johannes Schindelin | 30415d5 | 2007-09-10 23:03:15 -0400 | [diff] [blame] | 389 | } |
| 390 | /* |
| 391 | * If you run "git bundle create bndl v1.0..v2.0", the |
| 392 | * name of the positive ref is "v2.0" but that is the |
| 393 | * commit that is referenced by the tag, and not the tag |
| 394 | * itself. |
| 395 | */ |
Jeff King | 9001dc2 | 2018-08-28 17:22:48 -0400 | [diff] [blame] | 396 | if (!oideq(&oid, &e->item->oid)) { |
Johannes Schindelin | 30415d5 | 2007-09-10 23:03:15 -0400 | [diff] [blame] | 397 | /* |
| 398 | * Is this the positive end of a range expressed |
| 399 | * in terms of a tag (e.g. v2.0 from the range |
| 400 | * "v1.0..v2.0")? |
| 401 | */ |
Nguyễn Thái Ngọc Duy | 74ae4b6 | 2018-11-10 06:49:01 +0100 | [diff] [blame] | 402 | struct commit *one = lookup_commit_reference(revs->repo, &oid); |
Johannes Schindelin | 30415d5 | 2007-09-10 23:03:15 -0400 | [diff] [blame] | 403 | struct object *obj; |
| 404 | |
| 405 | if (e->item == &(one->object)) { |
| 406 | /* |
| 407 | * Need to include e->name as an |
| 408 | * independent ref to the pack-objects |
| 409 | * input, so that the tag is included |
| 410 | * in the output; otherwise we would |
| 411 | * end up triggering "empty bundle" |
| 412 | * error. |
| 413 | */ |
brian m. carlson | c251c83 | 2017-05-06 22:10:38 +0000 | [diff] [blame] | 414 | obj = parse_object_or_die(&oid, e->name); |
Johannes Schindelin | 30415d5 | 2007-09-10 23:03:15 -0400 | [diff] [blame] | 415 | obj->flags |= SHOWN; |
Jeff King | d9362ef | 2014-10-30 17:35:24 -0400 | [diff] [blame] | 416 | add_pending_object(revs, obj, e->name); |
Johannes Schindelin | 30415d5 | 2007-09-10 23:03:15 -0400 | [diff] [blame] | 417 | } |
Stefan Beller | c8a571d | 2015-03-10 16:51:48 -0700 | [diff] [blame] | 418 | goto skip_write_ref; |
Johannes Schindelin | 30415d5 | 2007-09-10 23:03:15 -0400 | [diff] [blame] | 419 | } |
| 420 | |
| 421 | ref_count++; |
brian m. carlson | 703d2d4 | 2019-08-18 20:04:11 +0000 | [diff] [blame] | 422 | write_or_die(bundle_fd, oid_to_hex(&e->item->oid), the_hash_algo->hexsz); |
Johannes Schindelin | 30415d5 | 2007-09-10 23:03:15 -0400 | [diff] [blame] | 423 | write_or_die(bundle_fd, " ", 1); |
Junio C Hamano | fa30383 | 2007-11-22 16:51:18 -0800 | [diff] [blame] | 424 | write_or_die(bundle_fd, display_ref, strlen(display_ref)); |
Johannes Schindelin | 30415d5 | 2007-09-10 23:03:15 -0400 | [diff] [blame] | 425 | write_or_die(bundle_fd, "\n", 1); |
Stefan Beller | c8a571d | 2015-03-10 16:51:48 -0700 | [diff] [blame] | 426 | skip_write_ref: |
Johannes Schindelin | 30415d5 | 2007-09-10 23:03:15 -0400 | [diff] [blame] | 427 | free(ref); |
| 428 | } |
Johannes Schindelin | 30415d5 | 2007-09-10 23:03:15 -0400 | [diff] [blame] | 429 | |
| 430 | /* end header */ |
| 431 | write_or_die(bundle_fd, "\n", 1); |
Jeff King | d9362ef | 2014-10-30 17:35:24 -0400 | [diff] [blame] | 432 | return ref_count; |
| 433 | } |
| 434 | |
Jiang Xin | 5bb0fd2 | 2021-01-11 21:27:03 -0500 | [diff] [blame] | 435 | struct bundle_prerequisites_info { |
| 436 | struct object_array *pending; |
| 437 | int fd; |
| 438 | }; |
| 439 | |
| 440 | static void write_bundle_prerequisites(struct commit *commit, void *data) |
| 441 | { |
| 442 | struct bundle_prerequisites_info *bpi = data; |
| 443 | struct object *object; |
| 444 | struct pretty_print_context ctx = { 0 }; |
| 445 | struct strbuf buf = STRBUF_INIT; |
| 446 | |
| 447 | if (!(commit->object.flags & BOUNDARY)) |
| 448 | return; |
| 449 | strbuf_addf(&buf, "-%s ", oid_to_hex(&commit->object.oid)); |
| 450 | write_or_die(bpi->fd, buf.buf, buf.len); |
| 451 | |
| 452 | ctx.fmt = CMIT_FMT_ONELINE; |
| 453 | ctx.output_encoding = get_log_output_encoding(); |
| 454 | strbuf_reset(&buf); |
| 455 | pretty_print_commit(&ctx, commit, &buf); |
| 456 | strbuf_trim(&buf); |
| 457 | |
| 458 | object = (struct object *)commit; |
| 459 | object->flags |= UNINTERESTING; |
| 460 | add_object_array_with_path(object, buf.buf, bpi->pending, S_IFINVALID, |
| 461 | NULL); |
| 462 | strbuf_addch(&buf, '\n'); |
| 463 | write_or_die(bpi->fd, buf.buf, buf.len); |
| 464 | strbuf_release(&buf); |
| 465 | } |
| 466 | |
Jeff King | fcb133e | 2019-01-24 08:11:51 -0500 | [diff] [blame] | 467 | int create_bundle(struct repository *r, const char *path, |
Junio C Hamano | e0ad957 | 2020-08-11 18:04:11 -0700 | [diff] [blame] | 468 | int argc, const char **argv, struct strvec *pack_options, int version) |
Jeff King | d9362ef | 2014-10-30 17:35:24 -0400 | [diff] [blame] | 469 | { |
Martin Ågren | b227586 | 2018-05-09 22:55:38 +0200 | [diff] [blame] | 470 | struct lock_file lock = LOCK_INIT; |
Jeff King | d9362ef | 2014-10-30 17:35:24 -0400 | [diff] [blame] | 471 | int bundle_fd = -1; |
| 472 | int bundle_to_stdout; |
| 473 | int ref_count = 0; |
Jiang Xin | 5bb0fd2 | 2021-01-11 21:27:03 -0500 | [diff] [blame] | 474 | struct rev_info revs, revs_copy; |
brian m. carlson | c5aecfc | 2020-07-29 23:14:20 +0000 | [diff] [blame] | 475 | int min_version = the_hash_algo == &hash_algos[GIT_HASH_SHA1] ? 2 : 3; |
Jiang Xin | 5bb0fd2 | 2021-01-11 21:27:03 -0500 | [diff] [blame] | 476 | struct bundle_prerequisites_info bpi; |
| 477 | int i; |
Jeff King | d9362ef | 2014-10-30 17:35:24 -0400 | [diff] [blame] | 478 | |
| 479 | bundle_to_stdout = !strcmp(path, "-"); |
| 480 | if (bundle_to_stdout) |
| 481 | bundle_fd = 1; |
Jeff King | 2c8ee1f | 2018-11-16 04:43:59 -0500 | [diff] [blame] | 482 | else |
Jeff King | d9362ef | 2014-10-30 17:35:24 -0400 | [diff] [blame] | 483 | bundle_fd = hold_lock_file_for_update(&lock, path, |
| 484 | LOCK_DIE_ON_ERROR); |
| 485 | |
brian m. carlson | c5aecfc | 2020-07-29 23:14:20 +0000 | [diff] [blame] | 486 | if (version == -1) |
| 487 | version = min_version; |
| 488 | |
| 489 | if (version < 2 || version > 3) { |
| 490 | die(_("unsupported bundle version %d"), version); |
| 491 | } else if (version < min_version) { |
| 492 | die(_("cannot write bundle version %d with algorithm %s"), version, the_hash_algo->name); |
| 493 | } else if (version == 2) { |
| 494 | write_or_die(bundle_fd, v2_bundle_signature, strlen(v2_bundle_signature)); |
| 495 | } else { |
| 496 | const char *capability = "@object-format="; |
| 497 | write_or_die(bundle_fd, v3_bundle_signature, strlen(v3_bundle_signature)); |
| 498 | write_or_die(bundle_fd, capability, strlen(capability)); |
| 499 | write_or_die(bundle_fd, the_hash_algo->name, strlen(the_hash_algo->name)); |
| 500 | write_or_die(bundle_fd, "\n", 1); |
| 501 | } |
Jeff King | d9362ef | 2014-10-30 17:35:24 -0400 | [diff] [blame] | 502 | |
| 503 | /* init revs to list objects for pack-objects later */ |
| 504 | save_commit_buffer = 0; |
Nguyễn Thái Ngọc Duy | 74ae4b6 | 2018-11-10 06:49:01 +0100 | [diff] [blame] | 505 | repo_init_revisions(r, &revs, NULL); |
Jeff King | d9362ef | 2014-10-30 17:35:24 -0400 | [diff] [blame] | 506 | |
Jeff King | d9362ef | 2014-10-30 17:35:24 -0400 | [diff] [blame] | 507 | argc = setup_revisions(argc, argv, &revs, NULL); |
| 508 | |
Stefan Beller | f5ff5fb | 2016-03-31 17:35:45 -0700 | [diff] [blame] | 509 | if (argc > 1) { |
| 510 | error(_("unrecognized argument: %s"), argv[1]); |
| 511 | goto err; |
| 512 | } |
Jeff King | d9362ef | 2014-10-30 17:35:24 -0400 | [diff] [blame] | 513 | |
Jiang Xin | 5bb0fd2 | 2021-01-11 21:27:03 -0500 | [diff] [blame] | 514 | /* save revs.pending in revs_copy for later use */ |
| 515 | memcpy(&revs_copy, &revs, sizeof(revs)); |
| 516 | revs_copy.pending.nr = 0; |
| 517 | revs_copy.pending.alloc = 0; |
| 518 | revs_copy.pending.objects = NULL; |
| 519 | for (i = 0; i < revs.pending.nr; i++) { |
| 520 | struct object_array_entry *e = revs.pending.objects + i; |
| 521 | if (e) |
| 522 | add_object_array_with_path(e->item, e->name, |
| 523 | &revs_copy.pending, |
| 524 | e->mode, e->path); |
| 525 | } |
Jeff King | d9362ef | 2014-10-30 17:35:24 -0400 | [diff] [blame] | 526 | |
Jiang Xin | 5bb0fd2 | 2021-01-11 21:27:03 -0500 | [diff] [blame] | 527 | /* write prerequisites */ |
| 528 | revs.boundary = 1; |
| 529 | if (prepare_revision_walk(&revs)) |
| 530 | die("revision walk setup failed"); |
| 531 | bpi.fd = bundle_fd; |
| 532 | bpi.pending = &revs_copy.pending; |
| 533 | traverse_commit_list(&revs, write_bundle_prerequisites, NULL, &bpi); |
| 534 | object_array_remove_duplicates(&revs_copy.pending); |
| 535 | |
| 536 | /* write bundle refs */ |
| 537 | ref_count = write_bundle_refs(bundle_fd, &revs_copy); |
Jeff King | d9362ef | 2014-10-30 17:35:24 -0400 | [diff] [blame] | 538 | if (!ref_count) |
| 539 | die(_("Refusing to create empty bundle.")); |
| 540 | else if (ref_count < 0) |
Stefan Beller | f5ff5fb | 2016-03-31 17:35:45 -0700 | [diff] [blame] | 541 | goto err; |
Johannes Schindelin | 30415d5 | 2007-09-10 23:03:15 -0400 | [diff] [blame] | 542 | |
| 543 | /* write pack */ |
Jiang Xin | 5bb0fd2 | 2021-01-11 21:27:03 -0500 | [diff] [blame] | 544 | if (write_pack_data(bundle_fd, &revs_copy, pack_options)) |
Stefan Beller | f5ff5fb | 2016-03-31 17:35:45 -0700 | [diff] [blame] | 545 | goto err; |
Brandon Casey | 4ed7cd3 | 2008-01-16 13:12:46 -0600 | [diff] [blame] | 546 | |
Csaba Henk | 0f5cdf6 | 2010-08-27 20:31:47 +0000 | [diff] [blame] | 547 | if (!bundle_to_stdout) { |
| 548 | if (commit_lock_file(&lock)) |
Nguyễn Thái Ngọc Duy | 8a1e7ea | 2012-04-23 19:30:30 +0700 | [diff] [blame] | 549 | die_errno(_("cannot create '%s'"), path); |
Csaba Henk | 0f5cdf6 | 2010-08-27 20:31:47 +0000 | [diff] [blame] | 550 | } |
Johannes Sixt | c20181e | 2008-02-21 23:42:56 +0100 | [diff] [blame] | 551 | return 0; |
Stefan Beller | f5ff5fb | 2016-03-31 17:35:45 -0700 | [diff] [blame] | 552 | err: |
Jeff King | 2c8ee1f | 2018-11-16 04:43:59 -0500 | [diff] [blame] | 553 | rollback_lock_file(&lock); |
Stefan Beller | f5ff5fb | 2016-03-31 17:35:45 -0700 | [diff] [blame] | 554 | return -1; |
Johannes Schindelin | 30415d5 | 2007-09-10 23:03:15 -0400 | [diff] [blame] | 555 | } |
| 556 | |
Nguyễn Thái Ngọc Duy | 74ae4b6 | 2018-11-10 06:49:01 +0100 | [diff] [blame] | 557 | int unbundle(struct repository *r, struct bundle_header *header, |
| 558 | int bundle_fd, int flags) |
Johannes Schindelin | 30415d5 | 2007-09-10 23:03:15 -0400 | [diff] [blame] | 559 | { |
| 560 | const char *argv_index_pack[] = {"index-pack", |
Junio C Hamano | be042af | 2011-09-18 16:52:32 -0700 | [diff] [blame] | 561 | "--fix-thin", "--stdin", NULL, NULL}; |
René Scharfe | d318027 | 2014-08-19 21:09:35 +0200 | [diff] [blame] | 562 | struct child_process ip = CHILD_PROCESS_INIT; |
Johannes Schindelin | 30415d5 | 2007-09-10 23:03:15 -0400 | [diff] [blame] | 563 | |
Junio C Hamano | be042af | 2011-09-18 16:52:32 -0700 | [diff] [blame] | 564 | if (flags & BUNDLE_VERBOSE) |
| 565 | argv_index_pack[3] = "-v"; |
| 566 | |
Nguyễn Thái Ngọc Duy | 74ae4b6 | 2018-11-10 06:49:01 +0100 | [diff] [blame] | 567 | if (verify_bundle(r, header, 0)) |
Johannes Schindelin | 30415d5 | 2007-09-10 23:03:15 -0400 | [diff] [blame] | 568 | return -1; |
Johannes Schindelin | 30415d5 | 2007-09-10 23:03:15 -0400 | [diff] [blame] | 569 | ip.argv = argv_index_pack; |
| 570 | ip.in = bundle_fd; |
| 571 | ip.no_stdout = 1; |
| 572 | ip.git_cmd = 1; |
| 573 | if (run_command(&ip)) |
Nguyễn Thái Ngọc Duy | 8a1e7ea | 2012-04-23 19:30:30 +0700 | [diff] [blame] | 574 | return error(_("index-pack died")); |
Johannes Schindelin | 30415d5 | 2007-09-10 23:03:15 -0400 | [diff] [blame] | 575 | return 0; |
| 576 | } |