]> git.ipfire.org Git - thirdparty/git.git/blame - bundle-uri.c
bundle-uri: quiet failed unbundlings
[thirdparty/git.git] / bundle-uri.c
CommitLineData
53a50892
DS
1#include "cache.h"
2#include "bundle-uri.h"
3#include "bundle.h"
4#include "object-store.h"
5#include "refs.h"
6#include "run-command.h"
0634f717
DS
7#include "hashmap.h"
8#include "pkt-line.h"
bff03c47 9#include "config.h"
0634f717
DS
10
11static int compare_bundles(const void *hashmap_cmp_fn_data,
12 const struct hashmap_entry *he1,
13 const struct hashmap_entry *he2,
14 const void *id)
15{
16 const struct remote_bundle_info *e1 =
17 container_of(he1, const struct remote_bundle_info, ent);
18 const struct remote_bundle_info *e2 =
19 container_of(he2, const struct remote_bundle_info, ent);
20
21 return strcmp(e1->id, id ? (const char *)id : e2->id);
22}
23
24void init_bundle_list(struct bundle_list *list)
25{
26 memset(list, 0, sizeof(*list));
27
28 /* Implied defaults. */
29 list->mode = BUNDLE_MODE_ALL;
30 list->version = 1;
31
32 hashmap_init(&list->bundles, compare_bundles, NULL, 0);
33}
34
35static int clear_remote_bundle_info(struct remote_bundle_info *bundle,
36 void *data)
37{
38 FREE_AND_NULL(bundle->id);
39 FREE_AND_NULL(bundle->uri);
c23f5921
DS
40 FREE_AND_NULL(bundle->file);
41 bundle->unbundled = 0;
0634f717
DS
42 return 0;
43}
44
45void clear_bundle_list(struct bundle_list *list)
46{
47 if (!list)
48 return;
49
50 for_all_bundles_in_list(list, clear_remote_bundle_info, NULL);
51 hashmap_clear_and_free(&list->bundles, struct remote_bundle_info, ent);
52}
53
54int for_all_bundles_in_list(struct bundle_list *list,
55 bundle_iterator iter,
56 void *data)
57{
58 struct remote_bundle_info *info;
59 struct hashmap_iter i;
60
61 hashmap_for_each_entry(&list->bundles, &i, info, ent) {
62 int result = iter(info, data);
63
64 if (result)
65 return result;
66 }
67
68 return 0;
69}
53a50892 70
d796cedb
ÆAB
71static int summarize_bundle(struct remote_bundle_info *info, void *data)
72{
73 FILE *fp = data;
74 fprintf(fp, "[bundle \"%s\"]\n", info->id);
75 fprintf(fp, "\turi = %s\n", info->uri);
76 return 0;
77}
78
79void print_bundle_list(FILE *fp, struct bundle_list *list)
80{
81 const char *mode;
82
83 switch (list->mode) {
84 case BUNDLE_MODE_ALL:
85 mode = "all";
86 break;
87
88 case BUNDLE_MODE_ANY:
89 mode = "any";
90 break;
91
92 case BUNDLE_MODE_NONE:
93 default:
94 mode = "<unknown>";
95 }
96
97 fprintf(fp, "[bundle]\n");
98 fprintf(fp, "\tversion = %d\n", list->version);
99 fprintf(fp, "\tmode = %s\n", mode);
100
101 for_all_bundles_in_list(list, summarize_bundle, fp);
102}
103
bff03c47
DS
104/**
105 * Given a key-value pair, update the state of the given bundle list.
106 * Returns 0 if the key-value pair is understood. Returns -1 if the key
107 * is not understood or the value is malformed.
108 */
bff03c47
DS
109static int bundle_list_update(const char *key, const char *value,
110 struct bundle_list *list)
111{
112 struct strbuf id = STRBUF_INIT;
113 struct remote_bundle_info lookup = REMOTE_BUNDLE_INFO_INIT;
114 struct remote_bundle_info *bundle;
115 const char *subsection, *subkey;
116 size_t subsection_len;
117
118 if (parse_config_key(key, "bundle", &subsection, &subsection_len, &subkey))
119 return -1;
120
121 if (!subsection_len) {
122 if (!strcmp(subkey, "version")) {
123 int version;
124 if (!git_parse_int(value, &version))
125 return -1;
126 if (version != 1)
127 return -1;
128
129 list->version = version;
130 return 0;
131 }
132
133 if (!strcmp(subkey, "mode")) {
134 if (!strcmp(value, "all"))
135 list->mode = BUNDLE_MODE_ALL;
136 else if (!strcmp(value, "any"))
137 list->mode = BUNDLE_MODE_ANY;
138 else
139 return -1;
140 return 0;
141 }
142
143 /* Ignore other unknown global keys. */
144 return 0;
145 }
146
147 strbuf_add(&id, subsection, subsection_len);
148
149 /*
150 * Check for an existing bundle with this <id>, or create one
151 * if necessary.
152 */
153 lookup.id = id.buf;
154 hashmap_entry_init(&lookup.ent, strhash(lookup.id));
155 if (!(bundle = hashmap_get_entry(&list->bundles, &lookup, ent, NULL))) {
156 CALLOC_ARRAY(bundle, 1);
157 bundle->id = strbuf_detach(&id, NULL);
158 hashmap_entry_init(&bundle->ent, strhash(bundle->id));
159 hashmap_add(&list->bundles, &bundle->ent);
160 }
161 strbuf_release(&id);
162
163 if (!strcmp(subkey, "uri")) {
164 if (bundle->uri)
165 return -1;
166 bundle->uri = xstrdup(value);
167 return 0;
168 }
169
170 /*
171 * At this point, we ignore any information that we don't
172 * understand, assuming it to be hints for a heuristic the client
173 * does not currently understand.
174 */
175 return 0;
176}
177
738e5245
DS
178static int config_to_bundle_list(const char *key, const char *value, void *data)
179{
180 struct bundle_list *list = data;
181 return bundle_list_update(key, value, list);
182}
183
184int bundle_uri_parse_config_format(const char *uri,
185 const char *filename,
186 struct bundle_list *list)
187{
188 int result;
189 struct config_options opts = {
190 .error_action = CONFIG_ERROR_ERROR,
191 };
192
193 result = git_config_from_file_with_options(config_to_bundle_list,
194 filename, list,
195 &opts);
196
197 if (!result && list->mode == BUNDLE_MODE_NONE) {
198 warning(_("bundle list at '%s' has no mode"), uri);
199 result = 1;
200 }
201
202 return result;
203}
204
23b6d00b 205static char *find_temp_filename(void)
53a50892
DS
206{
207 int fd;
23b6d00b 208 struct strbuf name = STRBUF_INIT;
53a50892
DS
209 /*
210 * Find a temporary filename that is available. This is briefly
211 * racy, but unlikely to collide.
212 */
23b6d00b 213 fd = odb_mkstemp(&name, "bundles/tmp_uri_XXXXXX");
53a50892
DS
214 if (fd < 0) {
215 warning(_("failed to create temporary file"));
23b6d00b 216 return NULL;
53a50892
DS
217 }
218
219 close(fd);
23b6d00b
DS
220 unlink(name.buf);
221 return strbuf_detach(&name, NULL);
53a50892
DS
222}
223
59c1752a 224static int download_https_uri_to_file(const char *file, const char *uri)
53a50892 225{
59c1752a
DS
226 int result = 0;
227 struct child_process cp = CHILD_PROCESS_INIT;
228 FILE *child_in = NULL, *child_out = NULL;
229 struct strbuf line = STRBUF_INIT;
230 int found_get = 0;
231
232 strvec_pushl(&cp.args, "git-remote-https", uri, NULL);
233 cp.in = -1;
234 cp.out = -1;
235
236 if (start_command(&cp))
237 return 1;
238
239 child_in = fdopen(cp.in, "w");
240 if (!child_in) {
241 result = 1;
242 goto cleanup;
243 }
244
245 child_out = fdopen(cp.out, "r");
246 if (!child_out) {
247 result = 1;
248 goto cleanup;
249 }
250
251 fprintf(child_in, "capabilities\n");
252 fflush(child_in);
253
254 while (!strbuf_getline(&line, child_out)) {
255 if (!line.len)
256 break;
257 if (!strcmp(line.buf, "get"))
258 found_get = 1;
259 }
260 strbuf_release(&line);
261
262 if (!found_get) {
263 result = error(_("insufficient capabilities"));
264 goto cleanup;
265 }
266
267 fprintf(child_in, "get %s %s\n\n", uri, file);
268
269cleanup:
270 if (child_in)
271 fclose(child_in);
272 if (finish_command(&cp))
273 return 1;
274 if (child_out)
275 fclose(child_out);
276 return result;
277}
278
279static int copy_uri_to_file(const char *filename, const char *uri)
280{
281 const char *out;
282
283 if (starts_with(uri, "https:") ||
284 starts_with(uri, "http:"))
285 return download_https_uri_to_file(filename, uri);
286
287 if (skip_prefix(uri, "file://", &out))
288 uri = out;
289
290 /* Copy as a file */
291 return copy_file(filename, uri, 0);
53a50892
DS
292}
293
294static int unbundle_from_file(struct repository *r, const char *file)
295{
296 int result = 0;
297 int bundle_fd;
298 struct bundle_header header = BUNDLE_HEADER_INIT;
299 struct string_list_item *refname;
300 struct strbuf bundle_ref = STRBUF_INIT;
301 size_t bundle_prefix_len;
302
303 if ((bundle_fd = read_bundle_header(file, &header)) < 0)
304 return 1;
305
89bd7fed
DS
306 /*
307 * Skip the reachability walk here, since we will be adding
308 * a reachable ref pointing to the new tips, which will reach
309 * the prerequisite commits.
310 */
70334fc3
DS
311 if ((result = unbundle(r, &header, bundle_fd, NULL,
312 VERIFY_BUNDLE_QUIET)))
53a50892
DS
313 return 1;
314
315 /*
316 * Convert all refs/heads/ from the bundle into refs/bundles/
317 * in the local repository.
318 */
319 strbuf_addstr(&bundle_ref, "refs/bundles/");
320 bundle_prefix_len = bundle_ref.len;
321
322 for_each_string_list_item(refname, &header.references) {
323 struct object_id *oid = refname->util;
324 struct object_id old_oid;
325 const char *branch_name;
326 int has_old;
327
328 if (!skip_prefix(refname->string, "refs/heads/", &branch_name))
329 continue;
330
331 strbuf_setlen(&bundle_ref, bundle_prefix_len);
332 strbuf_addstr(&bundle_ref, branch_name);
333
334 has_old = !read_ref(bundle_ref.buf, &old_oid);
335 update_ref("fetched bundle", bundle_ref.buf, oid,
336 has_old ? &old_oid : NULL,
337 REF_SKIP_OID_VERIFICATION,
338 UPDATE_REFS_MSG_ON_ERR);
339 }
340
341 bundle_header_release(&header);
342 return result;
343}
344
c23f5921
DS
345struct bundle_list_context {
346 struct repository *r;
347 struct bundle_list *list;
348 enum bundle_list_mode mode;
349 int count;
350 int depth;
351};
352
353/*
354 * This early definition is necessary because we use indirect recursion:
355 *
356 * While iterating through a bundle list that was downloaded as part
357 * of fetch_bundle_uri_internal(), iterator methods eventually call it
358 * again, but with depth + 1.
359 */
360static int fetch_bundle_uri_internal(struct repository *r,
361 struct remote_bundle_info *bundle,
362 int depth,
363 struct bundle_list *list);
364
365static int download_bundle_to_file(struct remote_bundle_info *bundle, void *data)
366{
367 int res;
368 struct bundle_list_context *ctx = data;
369
370 if (ctx->mode == BUNDLE_MODE_ANY && ctx->count)
371 return 0;
372
373 res = fetch_bundle_uri_internal(ctx->r, bundle, ctx->depth + 1, ctx->list);
374
375 /*
376 * Only increment count if the download succeeded. If our mode is
377 * BUNDLE_MODE_ANY, then we will want to try other URIs in the
378 * list in case they work instead.
379 */
380 if (!res)
381 ctx->count++;
382
383 /*
384 * To be opportunistic as possible, we continue iterating and
385 * download as many bundles as we can, so we can apply the ones
386 * that work, even in BUNDLE_MODE_ALL mode.
387 */
388 return 0;
389}
390
391static int download_bundle_list(struct repository *r,
392 struct bundle_list *local_list,
393 struct bundle_list *global_list,
394 int depth)
395{
396 struct bundle_list_context ctx = {
397 .r = r,
398 .list = global_list,
399 .depth = depth + 1,
400 .mode = local_list->mode,
401 };
402
403 return for_all_bundles_in_list(local_list, download_bundle_to_file, &ctx);
404}
405
406static int fetch_bundle_list_in_config_format(struct repository *r,
407 struct bundle_list *global_list,
408 struct remote_bundle_info *bundle,
409 int depth)
410{
411 int result;
412 struct bundle_list list_from_bundle;
413
414 init_bundle_list(&list_from_bundle);
415
416 if ((result = bundle_uri_parse_config_format(bundle->uri,
417 bundle->file,
418 &list_from_bundle)))
419 goto cleanup;
420
421 if (list_from_bundle.mode == BUNDLE_MODE_NONE) {
422 warning(_("unrecognized bundle mode from URI '%s'"),
423 bundle->uri);
424 result = -1;
425 goto cleanup;
426 }
427
428 if ((result = download_bundle_list(r, &list_from_bundle,
429 global_list, depth)))
430 goto cleanup;
431
432cleanup:
433 clear_bundle_list(&list_from_bundle);
434 return result;
435}
436
20c1e2a6
DS
437/**
438 * This limits the recursion on fetch_bundle_uri_internal() when following
439 * bundle lists.
440 */
441static int max_bundle_uri_depth = 4;
442
c23f5921
DS
443/**
444 * Recursively download all bundles advertised at the given URI
445 * to files. If the file is a bundle, then add it to the given
446 * 'list'. Otherwise, expect a bundle list and recurse on the
447 * URIs in that list according to the list mode (ANY or ALL).
448 */
20c1e2a6 449static int fetch_bundle_uri_internal(struct repository *r,
c23f5921
DS
450 struct remote_bundle_info *bundle,
451 int depth,
452 struct bundle_list *list)
53a50892
DS
453{
454 int result = 0;
c23f5921 455 struct remote_bundle_info *bcopy;
53a50892 456
20c1e2a6
DS
457 if (depth >= max_bundle_uri_depth) {
458 warning(_("exceeded bundle URI recursion limit (%d)"),
459 max_bundle_uri_depth);
460 return -1;
461 }
462
c23f5921
DS
463 if (!bundle->file &&
464 !(bundle->file = find_temp_filename())) {
23b6d00b 465 result = -1;
53a50892 466 goto cleanup;
23b6d00b 467 }
53a50892 468
c23f5921
DS
469 if ((result = copy_uri_to_file(bundle->file, bundle->uri))) {
470 warning(_("failed to download bundle from URI '%s'"), bundle->uri);
53a50892
DS
471 goto cleanup;
472 }
473
c23f5921
DS
474 if ((result = !is_bundle(bundle->file, 1))) {
475 result = fetch_bundle_list_in_config_format(
476 r, list, bundle, depth);
477 if (result)
478 warning(_("file at URI '%s' is not a bundle or bundle list"),
479 bundle->uri);
53a50892
DS
480 goto cleanup;
481 }
482
c23f5921
DS
483 /* Copy the bundle and insert it into the global list. */
484 CALLOC_ARRAY(bcopy, 1);
485 bcopy->id = xstrdup(bundle->id);
486 bcopy->file = xstrdup(bundle->file);
487 hashmap_entry_init(&bcopy->ent, strhash(bcopy->id));
488 hashmap_add(&list->bundles, &bcopy->ent);
53a50892
DS
489
490cleanup:
c23f5921
DS
491 if (result && bundle->file)
492 unlink(bundle->file);
53a50892
DS
493 return result;
494}
9424e373 495
c23f5921
DS
496/**
497 * This loop iterator breaks the loop with nonzero return code on the
498 * first successful unbundling of a bundle.
499 */
500static int attempt_unbundle(struct remote_bundle_info *info, void *data)
501{
502 struct repository *r = data;
503
504 if (!info->file || info->unbundled)
505 return 0;
506
507 if (!unbundle_from_file(r, info->file)) {
508 info->unbundled = 1;
509 return 1;
510 }
511
512 return 0;
513}
514
515static int unbundle_all_bundles(struct repository *r,
516 struct bundle_list *list)
517{
518 /*
519 * Iterate through all bundles looking for ones that can
520 * successfully unbundle. If any succeed, then perhaps another
521 * will succeed in the next attempt.
522 *
523 * Keep in mind that a non-zero result for the loop here means
524 * the loop terminated early on a successful unbundling, which
525 * signals that we can try again.
526 */
527 while (for_all_bundles_in_list(list, attempt_unbundle, r)) ;
528
529 return 0;
530}
531
532static int unlink_bundle(struct remote_bundle_info *info, void *data)
533{
534 if (info->file)
535 unlink_or_warn(info->file);
536 return 0;
537}
538
20c1e2a6
DS
539int fetch_bundle_uri(struct repository *r, const char *uri)
540{
c23f5921
DS
541 int result;
542 struct bundle_list list;
543 struct remote_bundle_info bundle = {
544 .uri = xstrdup(uri),
545 .id = xstrdup(""),
546 };
547
548 init_bundle_list(&list);
549
550 /* If a bundle is added to this global list, then it is required. */
551 list.mode = BUNDLE_MODE_ALL;
552
553 if ((result = fetch_bundle_uri_internal(r, &bundle, 0, &list)))
554 goto cleanup;
555
556 result = unbundle_all_bundles(r, &list);
557
558cleanup:
559 for_all_bundles_in_list(&list, unlink_bundle, NULL);
560 clear_bundle_list(&list);
561 clear_remote_bundle_info(&bundle, NULL);
562 return result;
20c1e2a6
DS
563}
564
9424e373
ÆAB
565/**
566 * General API for {transport,connect}.c etc.
567 */
568int bundle_uri_parse_line(struct bundle_list *list, const char *line)
569{
570 int result;
571 const char *equals;
572 struct strbuf key = STRBUF_INIT;
573
574 if (!strlen(line))
575 return error(_("bundle-uri: got an empty line"));
576
577 equals = strchr(line, '=');
578
579 if (!equals)
580 return error(_("bundle-uri: line is not of the form 'key=value'"));
581 if (line == equals || !*(equals + 1))
582 return error(_("bundle-uri: line has empty key or value"));
583
584 strbuf_add(&key, line, equals - line);
585 result = bundle_list_update(key.buf, equals + 1, list);
586 strbuf_release(&key);
587
588 return result;
589}