Commit | Line | Data |
---|---|---|
9b288516 DB |
1 | #include "cache.h" |
2 | #include "transport.h" | |
3 | #include "run-command.h" | |
c29727d5 DB |
4 | #include "pkt-line.h" |
5 | #include "fetch-pack.h" | |
47a59185 JH |
6 | #include "remote.h" |
7 | #include "connect.h" | |
40cb4fab | 8 | #include "send-pack.h" |
c29727d5 | 9 | #include "walker.h" |
c7a8a162 | 10 | #include "bundle.h" |
cd547b48 JS |
11 | #include "dir.h" |
12 | #include "refs.h" | |
e9fcd1e2 | 13 | #include "branch.h" |
638794cd | 14 | #include "url.h" |
d2b17b32 | 15 | #include "submodule.h" |
a762e51e | 16 | #include "string-list.h" |
13eb4626 | 17 | #include "sha1-array.h" |
af65f68c | 18 | #include "sigchain.h" |
cd547b48 | 19 | |
e9fcd1e2 IL |
20 | static void set_upstreams(struct transport *transport, struct ref *refs, |
21 | int pretend) | |
22 | { | |
23 | struct ref *ref; | |
24 | for (ref = refs; ref; ref = ref->next) { | |
25 | const char *localname; | |
26 | const char *tmp; | |
27 | const char *remotename; | |
28 | unsigned char sha[20]; | |
29 | int flag = 0; | |
30 | /* | |
31 | * Check suitability for tracking. Must be successful / | |
32 | * already up-to-date ref create/modify (not delete). | |
33 | */ | |
34 | if (ref->status != REF_STATUS_OK && | |
35 | ref->status != REF_STATUS_UPTODATE) | |
36 | continue; | |
37 | if (!ref->peer_ref) | |
38 | continue; | |
f4e54d02 | 39 | if (is_null_oid(&ref->new_oid)) |
e9fcd1e2 IL |
40 | continue; |
41 | ||
42 | /* Follow symbolic refs (mainly for HEAD). */ | |
43 | localname = ref->peer_ref->name; | |
44 | remotename = ref->name; | |
7695d118 RS |
45 | tmp = resolve_ref_unsafe(localname, RESOLVE_REF_READING, |
46 | sha, &flag); | |
e9fcd1e2 | 47 | if (tmp && flag & REF_ISSYMREF && |
59556548 | 48 | starts_with(tmp, "refs/heads/")) |
e9fcd1e2 IL |
49 | localname = tmp; |
50 | ||
51 | /* Both source and destination must be local branches. */ | |
59556548 | 52 | if (!localname || !starts_with(localname, "refs/heads/")) |
e9fcd1e2 | 53 | continue; |
59556548 | 54 | if (!remotename || !starts_with(remotename, "refs/heads/")) |
e9fcd1e2 IL |
55 | continue; |
56 | ||
57 | if (!pretend) | |
58 | install_branch_config(BRANCH_CONFIG_VERBOSE, | |
59 | localname + 11, transport->remote->name, | |
60 | remotename); | |
61 | else | |
62 | printf("Would set upstream of '%s' to '%s' of '%s'\n", | |
63 | localname + 11, remotename + 11, | |
64 | transport->remote->name); | |
65 | } | |
66 | } | |
67 | ||
c7a8a162 JS |
68 | struct bundle_transport_data { |
69 | int fd; | |
70 | struct bundle_header header; | |
71 | }; | |
72 | ||
64fcef2d | 73 | static struct ref *get_refs_from_bundle(struct transport *transport, int for_push) |
c7a8a162 JS |
74 | { |
75 | struct bundle_transport_data *data = transport->data; | |
76 | struct ref *result = NULL; | |
77 | int i; | |
78 | ||
64fcef2d DB |
79 | if (for_push) |
80 | return NULL; | |
81 | ||
c7a8a162 JS |
82 | if (data->fd > 0) |
83 | close(data->fd); | |
84 | data->fd = read_bundle_header(transport->url, &data->header); | |
85 | if (data->fd < 0) | |
86 | die ("Could not read bundle '%s'.", transport->url); | |
87 | for (i = 0; i < data->header.references.nr; i++) { | |
88 | struct ref_list_entry *e = data->header.references.list + i; | |
59c69c0c | 89 | struct ref *ref = alloc_ref(e->name); |
f4e54d02 | 90 | hashcpy(ref->old_oid.hash, e->sha1); |
c7a8a162 JS |
91 | ref->next = result; |
92 | result = ref; | |
93 | } | |
94 | return result; | |
95 | } | |
96 | ||
1788c39c | 97 | static int fetch_refs_from_bundle(struct transport *transport, |
37148311 | 98 | int nr_heads, struct ref **to_fetch) |
c7a8a162 JS |
99 | { |
100 | struct bundle_transport_data *data = transport->data; | |
be042aff JH |
101 | return unbundle(&data->header, data->fd, |
102 | transport->progress ? BUNDLE_VERBOSE : 0); | |
c7a8a162 JS |
103 | } |
104 | ||
105 | static int close_bundle(struct transport *transport) | |
106 | { | |
107 | struct bundle_transport_data *data = transport->data; | |
108 | if (data->fd > 0) | |
109 | close(data->fd); | |
f4e95765 | 110 | free(data); |
c7a8a162 JS |
111 | return 0; |
112 | } | |
113 | ||
9b288516 | 114 | struct git_transport_data { |
aa5af974 | 115 | struct git_transport_options options; |
ba227857 DB |
116 | struct child_process *conn; |
117 | int fd[2]; | |
61b075bd | 118 | unsigned got_remote_heads : 1; |
13eb4626 | 119 | struct sha1_array extra_have; |
beea4152 | 120 | struct sha1_array shallow; |
9b288516 DB |
121 | }; |
122 | ||
aa5af974 | 123 | static int set_git_option(struct git_transport_options *opts, |
9b288516 DB |
124 | const char *name, const char *value) |
125 | { | |
c29727d5 | 126 | if (!strcmp(name, TRANS_OPT_UPLOADPACK)) { |
aa5af974 | 127 | opts->uploadpack = value; |
c29727d5 DB |
128 | return 0; |
129 | } else if (!strcmp(name, TRANS_OPT_RECEIVEPACK)) { | |
aa5af974 | 130 | opts->receivepack = value; |
9b288516 DB |
131 | return 0; |
132 | } else if (!strcmp(name, TRANS_OPT_THIN)) { | |
aa5af974 | 133 | opts->thin = !!value; |
9b288516 | 134 | return 0; |
41fa7d2e | 135 | } else if (!strcmp(name, TRANS_OPT_FOLLOWTAGS)) { |
aa5af974 | 136 | opts->followtags = !!value; |
41fa7d2e | 137 | return 0; |
c29727d5 | 138 | } else if (!strcmp(name, TRANS_OPT_KEEP)) { |
aa5af974 | 139 | opts->keep = !!value; |
c29727d5 | 140 | return 0; |
48d25cae NTND |
141 | } else if (!strcmp(name, TRANS_OPT_UPDATE_SHALLOW)) { |
142 | opts->update_shallow = !!value; | |
143 | return 0; | |
c29727d5 DB |
144 | } else if (!strcmp(name, TRANS_OPT_DEPTH)) { |
145 | if (!value) | |
aa5af974 | 146 | opts->depth = 0; |
e7622ce8 NTND |
147 | else { |
148 | char *end; | |
149 | opts->depth = strtol(value, &end, 0); | |
150 | if (*end) | |
151 | die("transport: invalid depth option '%s'", value); | |
152 | } | |
c29727d5 | 153 | return 0; |
9b288516 DB |
154 | } |
155 | return 1; | |
156 | } | |
157 | ||
f3ee9ca5 | 158 | static int connect_setup(struct transport *transport, int for_push) |
ba227857 DB |
159 | { |
160 | struct git_transport_data *data = transport->data; | |
f3ee9ca5 | 161 | int flags = transport->verbose > 0 ? CONNECT_VERBOSE : 0; |
61b075bd IL |
162 | |
163 | if (data->conn) | |
164 | return 0; | |
165 | ||
c915f11e EW |
166 | switch (transport->family) { |
167 | case TRANSPORT_FAMILY_ALL: break; | |
168 | case TRANSPORT_FAMILY_IPV4: flags |= CONNECT_IPV4; break; | |
169 | case TRANSPORT_FAMILY_IPV6: flags |= CONNECT_IPV6; break; | |
170 | } | |
171 | ||
5a277f3f JH |
172 | data->conn = git_connect(data->fd, transport->url, |
173 | for_push ? data->options.receivepack : | |
174 | data->options.uploadpack, | |
f3ee9ca5 | 175 | flags); |
61b075bd | 176 | |
ba227857 DB |
177 | return 0; |
178 | } | |
179 | ||
64fcef2d | 180 | static struct ref *get_refs_via_connect(struct transport *transport, int for_push) |
c29727d5 DB |
181 | { |
182 | struct git_transport_data *data = transport->data; | |
183 | struct ref *refs; | |
c29727d5 | 184 | |
f3ee9ca5 | 185 | connect_setup(transport, for_push); |
85edf4f5 | 186 | get_remote_heads(data->fd[0], NULL, 0, &refs, |
beea4152 NTND |
187 | for_push ? REF_NORMAL : 0, |
188 | &data->extra_have, | |
4820a33b | 189 | &data->shallow); |
61b075bd | 190 | data->got_remote_heads = 1; |
c29727d5 DB |
191 | |
192 | return refs; | |
193 | } | |
194 | ||
1788c39c | 195 | static int fetch_refs_via_pack(struct transport *transport, |
37148311 | 196 | int nr_heads, struct ref **to_fetch) |
c29727d5 DB |
197 | { |
198 | struct git_transport_data *data = transport->data; | |
626df76e | 199 | struct ref *refs; |
c29727d5 DB |
200 | char *dest = xstrdup(transport->url); |
201 | struct fetch_pack_args args; | |
00183cbb | 202 | struct ref *refs_tmp = NULL; |
c29727d5 | 203 | |
fa740529 | 204 | memset(&args, 0, sizeof(args)); |
aa5af974 IL |
205 | args.uploadpack = data->options.uploadpack; |
206 | args.keep_pack = data->options.keep; | |
fa740529 | 207 | args.lock_pack = 1; |
aa5af974 IL |
208 | args.use_thin_pack = data->options.thin; |
209 | args.include_tag = data->options.followtags; | |
bd2c86ef | 210 | args.verbose = (transport->verbose > 1); |
fe8aa148 | 211 | args.quiet = (transport->verbose < 0); |
d01b3c02 | 212 | args.no_progress = !transport->progress; |
aa5af974 | 213 | args.depth = data->options.depth; |
c6807a40 NTND |
214 | args.check_self_contained_and_connected = |
215 | data->options.check_self_contained_and_connected; | |
beea4152 | 216 | args.cloning = transport->cloning; |
48d25cae | 217 | args.update_shallow = data->options.update_shallow; |
c29727d5 | 218 | |
61b075bd | 219 | if (!data->got_remote_heads) { |
f3ee9ca5 | 220 | connect_setup(transport, 0); |
b06dcd7d | 221 | get_remote_heads(data->fd[0], NULL, 0, &refs_tmp, 0, |
4820a33b | 222 | NULL, &data->shallow); |
61b075bd | 223 | data->got_remote_heads = 1; |
ba227857 DB |
224 | } |
225 | ||
00183cbb DB |
226 | refs = fetch_pack(&args, data->fd, data->conn, |
227 | refs_tmp ? refs_tmp : transport->remote_refs, | |
beea4152 | 228 | dest, to_fetch, nr_heads, &data->shallow, |
f2db854d | 229 | &transport->pack_lockfile); |
ba227857 DB |
230 | close(data->fd[0]); |
231 | close(data->fd[1]); | |
626df76e JK |
232 | if (finish_connect(data->conn)) { |
233 | free_refs(refs); | |
ba227857 | 234 | refs = NULL; |
626df76e | 235 | } |
ba227857 | 236 | data->conn = NULL; |
61b075bd | 237 | data->got_remote_heads = 0; |
c6807a40 NTND |
238 | data->options.self_contained_and_connected = |
239 | args.self_contained_and_connected; | |
c29727d5 | 240 | |
00183cbb | 241 | free_refs(refs_tmp); |
626df76e | 242 | free_refs(refs); |
c29727d5 | 243 | free(dest); |
c6bc4005 | 244 | return (refs ? 0 : -1); |
c29727d5 DB |
245 | } |
246 | ||
481c7a6d JK |
247 | static int push_had_errors(struct ref *ref) |
248 | { | |
249 | for (; ref; ref = ref->next) { | |
250 | switch (ref->status) { | |
251 | case REF_STATUS_NONE: | |
252 | case REF_STATUS_UPTODATE: | |
253 | case REF_STATUS_OK: | |
254 | break; | |
255 | default: | |
256 | return 1; | |
257 | } | |
258 | } | |
259 | return 0; | |
260 | } | |
261 | ||
f1863d0d | 262 | int transport_refs_pushed(struct ref *ref) |
64fcef2d DB |
263 | { |
264 | for (; ref; ref = ref->next) { | |
265 | switch(ref->status) { | |
266 | case REF_STATUS_NONE: | |
267 | case REF_STATUS_UPTODATE: | |
268 | break; | |
269 | default: | |
270 | return 1; | |
271 | } | |
272 | } | |
273 | return 0; | |
274 | } | |
275 | ||
f1863d0d | 276 | void transport_update_tracking_ref(struct remote *remote, struct ref *ref, int verbose) |
64fcef2d DB |
277 | { |
278 | struct refspec rs; | |
279 | ||
280 | if (ref->status != REF_STATUS_OK && ref->status != REF_STATUS_UPTODATE) | |
281 | return; | |
282 | ||
283 | rs.src = ref->name; | |
284 | rs.dst = NULL; | |
285 | ||
286 | if (!remote_find_tracking(remote, &rs)) { | |
287 | if (verbose) | |
288 | fprintf(stderr, "updating local tracking ref '%s'\n", rs.dst); | |
289 | if (ref->deletion) { | |
290 | delete_ref(rs.dst, NULL, 0); | |
291 | } else | |
292 | update_ref("update by push", rs.dst, | |
f4e54d02 | 293 | ref->new_oid.hash, NULL, 0, 0); |
64fcef2d DB |
294 | free(rs.dst); |
295 | } | |
296 | } | |
297 | ||
1965ff74 | 298 | static void print_ref_status(char flag, const char *summary, struct ref *to, struct ref *from, const char *msg, int porcelain) |
64fcef2d | 299 | { |
1965ff74 LA |
300 | if (porcelain) { |
301 | if (from) | |
302 | fprintf(stdout, "%c\t%s:%s\t", flag, from->name, to->name); | |
303 | else | |
304 | fprintf(stdout, "%c\t:%s\t", flag, to->name); | |
305 | if (msg) | |
306 | fprintf(stdout, "%s (%s)\n", summary, msg); | |
307 | else | |
308 | fprintf(stdout, "%s\n", summary); | |
309 | } else { | |
f1863d0d | 310 | fprintf(stderr, " %c %-*s ", flag, TRANSPORT_SUMMARY_WIDTH, summary); |
1965ff74 LA |
311 | if (from) |
312 | fprintf(stderr, "%s -> %s", prettify_refname(from->name), prettify_refname(to->name)); | |
313 | else | |
314 | fputs(prettify_refname(to->name), stderr); | |
315 | if (msg) { | |
316 | fputs(" (", stderr); | |
317 | fputs(msg, stderr); | |
318 | fputc(')', stderr); | |
319 | } | |
320 | fputc('\n', stderr); | |
64fcef2d | 321 | } |
64fcef2d DB |
322 | } |
323 | ||
324 | static const char *status_abbrev(unsigned char sha1[20]) | |
325 | { | |
326 | return find_unique_abbrev(sha1, DEFAULT_ABBREV); | |
327 | } | |
328 | ||
1965ff74 | 329 | static void print_ok_ref_status(struct ref *ref, int porcelain) |
64fcef2d DB |
330 | { |
331 | if (ref->deletion) | |
1965ff74 | 332 | print_ref_status('-', "[deleted]", ref, NULL, NULL, porcelain); |
f4e54d02 | 333 | else if (is_null_oid(&ref->old_oid)) |
64fcef2d | 334 | print_ref_status('*', |
59556548 | 335 | (starts_with(ref->name, "refs/tags/") ? "[new tag]" : |
1965ff74 LA |
336 | "[new branch]"), |
337 | ref, ref->peer_ref, NULL, porcelain); | |
64fcef2d | 338 | else { |
bd22d4ff | 339 | struct strbuf quickref = STRBUF_INIT; |
64fcef2d DB |
340 | char type; |
341 | const char *msg; | |
342 | ||
f4e54d02 | 343 | strbuf_addstr(&quickref, status_abbrev(ref->old_oid.hash)); |
5ece083f | 344 | if (ref->forced_update) { |
bd22d4ff | 345 | strbuf_addstr(&quickref, "..."); |
64fcef2d DB |
346 | type = '+'; |
347 | msg = "forced update"; | |
348 | } else { | |
bd22d4ff | 349 | strbuf_addstr(&quickref, ".."); |
64fcef2d DB |
350 | type = ' '; |
351 | msg = NULL; | |
352 | } | |
f4e54d02 | 353 | strbuf_addstr(&quickref, status_abbrev(ref->new_oid.hash)); |
64fcef2d | 354 | |
bd22d4ff JK |
355 | print_ref_status(type, quickref.buf, ref, ref->peer_ref, msg, porcelain); |
356 | strbuf_release(&quickref); | |
64fcef2d DB |
357 | } |
358 | } | |
359 | ||
1965ff74 | 360 | static int print_one_push_status(struct ref *ref, const char *dest, int count, int porcelain) |
64fcef2d | 361 | { |
882d49ca JK |
362 | if (!count) { |
363 | char *url = transport_anonymize_url(dest); | |
364 | fprintf(porcelain ? stdout : stderr, "To %s\n", url); | |
365 | free(url); | |
366 | } | |
64fcef2d DB |
367 | |
368 | switch(ref->status) { | |
369 | case REF_STATUS_NONE: | |
1965ff74 | 370 | print_ref_status('X', "[no match]", ref, NULL, NULL, porcelain); |
64fcef2d DB |
371 | break; |
372 | case REF_STATUS_REJECT_NODELETE: | |
373 | print_ref_status('!', "[rejected]", ref, NULL, | |
1965ff74 | 374 | "remote does not support deleting refs", porcelain); |
64fcef2d DB |
375 | break; |
376 | case REF_STATUS_UPTODATE: | |
377 | print_ref_status('=', "[up to date]", ref, | |
1965ff74 | 378 | ref->peer_ref, NULL, porcelain); |
64fcef2d DB |
379 | break; |
380 | case REF_STATUS_REJECT_NONFASTFORWARD: | |
381 | print_ref_status('!', "[rejected]", ref, ref->peer_ref, | |
a75d7b54 | 382 | "non-fast-forward", porcelain); |
64fcef2d | 383 | break; |
dbfeddb1 CR |
384 | case REF_STATUS_REJECT_ALREADY_EXISTS: |
385 | print_ref_status('!', "[rejected]", ref, ref->peer_ref, | |
386 | "already exists", porcelain); | |
387 | break; | |
75e5c0dc JH |
388 | case REF_STATUS_REJECT_FETCH_FIRST: |
389 | print_ref_status('!', "[rejected]", ref, ref->peer_ref, | |
390 | "fetch first", porcelain); | |
391 | break; | |
392 | case REF_STATUS_REJECT_NEEDS_FORCE: | |
393 | print_ref_status('!', "[rejected]", ref, ref->peer_ref, | |
394 | "needs force", porcelain); | |
395 | break; | |
631b5ef2 JH |
396 | case REF_STATUS_REJECT_STALE: |
397 | print_ref_status('!', "[rejected]", ref, ref->peer_ref, | |
398 | "stale info", porcelain); | |
399 | break; | |
4820a33b NTND |
400 | case REF_STATUS_REJECT_SHALLOW: |
401 | print_ref_status('!', "[rejected]", ref, ref->peer_ref, | |
402 | "new shallow roots not allowed", porcelain); | |
403 | break; | |
64fcef2d DB |
404 | case REF_STATUS_REMOTE_REJECT: |
405 | print_ref_status('!', "[remote rejected]", ref, | |
1965ff74 LA |
406 | ref->deletion ? NULL : ref->peer_ref, |
407 | ref->remote_status, porcelain); | |
64fcef2d DB |
408 | break; |
409 | case REF_STATUS_EXPECTING_REPORT: | |
410 | print_ref_status('!', "[remote failure]", ref, | |
1965ff74 LA |
411 | ref->deletion ? NULL : ref->peer_ref, |
412 | "remote failed to report status", porcelain); | |
64fcef2d | 413 | break; |
4ff17f10 RS |
414 | case REF_STATUS_ATOMIC_PUSH_FAILED: |
415 | print_ref_status('!', "[rejected]", ref, ref->peer_ref, | |
416 | "atomic push failed", porcelain); | |
417 | break; | |
64fcef2d | 418 | case REF_STATUS_OK: |
1965ff74 | 419 | print_ok_ref_status(ref, porcelain); |
64fcef2d DB |
420 | break; |
421 | } | |
422 | ||
423 | return 1; | |
424 | } | |
425 | ||
f1863d0d | 426 | void transport_print_push_status(const char *dest, struct ref *refs, |
10643d4e | 427 | int verbose, int porcelain, unsigned int *reject_reasons) |
64fcef2d DB |
428 | { |
429 | struct ref *ref; | |
430 | int n = 0; | |
f25950f3 CT |
431 | unsigned char head_sha1[20]; |
432 | char *head; | |
433 | ||
7695d118 | 434 | head = resolve_refdup("HEAD", RESOLVE_REF_READING, head_sha1, NULL); |
64fcef2d DB |
435 | |
436 | if (verbose) { | |
437 | for (ref = refs; ref; ref = ref->next) | |
438 | if (ref->status == REF_STATUS_UPTODATE) | |
1965ff74 | 439 | n += print_one_push_status(ref, dest, n, porcelain); |
64fcef2d DB |
440 | } |
441 | ||
442 | for (ref = refs; ref; ref = ref->next) | |
443 | if (ref->status == REF_STATUS_OK) | |
1965ff74 | 444 | n += print_one_push_status(ref, dest, n, porcelain); |
64fcef2d | 445 | |
10643d4e | 446 | *reject_reasons = 0; |
64fcef2d DB |
447 | for (ref = refs; ref; ref = ref->next) { |
448 | if (ref->status != REF_STATUS_NONE && | |
449 | ref->status != REF_STATUS_UPTODATE && | |
450 | ref->status != REF_STATUS_OK) | |
1965ff74 | 451 | n += print_one_push_status(ref, dest, n, porcelain); |
10643d4e | 452 | if (ref->status == REF_STATUS_REJECT_NONFASTFORWARD) { |
1d2c14df | 453 | if (head != NULL && !strcmp(head, ref->name)) |
10643d4e | 454 | *reject_reasons |= REJECT_NON_FF_HEAD; |
f25950f3 | 455 | else |
10643d4e | 456 | *reject_reasons |= REJECT_NON_FF_OTHER; |
dbfeddb1 CR |
457 | } else if (ref->status == REF_STATUS_REJECT_ALREADY_EXISTS) { |
458 | *reject_reasons |= REJECT_ALREADY_EXISTS; | |
75e5c0dc JH |
459 | } else if (ref->status == REF_STATUS_REJECT_FETCH_FIRST) { |
460 | *reject_reasons |= REJECT_FETCH_FIRST; | |
461 | } else if (ref->status == REF_STATUS_REJECT_NEEDS_FORCE) { | |
462 | *reject_reasons |= REJECT_NEEDS_FORCE; | |
f25950f3 | 463 | } |
64fcef2d | 464 | } |
dc76c7f7 | 465 | free(head); |
64fcef2d DB |
466 | } |
467 | ||
f1863d0d | 468 | void transport_verify_remote_names(int nr_heads, const char **heads) |
64fcef2d DB |
469 | { |
470 | int i; | |
471 | ||
472 | for (i = 0; i < nr_heads; i++) { | |
473 | const char *local = heads[i]; | |
474 | const char *remote = strrchr(heads[i], ':'); | |
475 | ||
476 | if (*local == '+') | |
477 | local++; | |
478 | ||
479 | /* A matching refspec is okay. */ | |
480 | if (remote == local && remote[1] == '\0') | |
481 | continue; | |
482 | ||
483 | remote = remote ? (remote + 1) : local; | |
8d9c5010 MH |
484 | if (check_refname_format(remote, |
485 | REFNAME_ALLOW_ONELEVEL|REFNAME_REFSPEC_PATTERN)) | |
486 | die("remote part of refspec is not a valid name in %s", | |
487 | heads[i]); | |
64fcef2d DB |
488 | } |
489 | } | |
490 | ||
491 | static int git_transport_push(struct transport *transport, struct ref *remote_refs, int flags) | |
f3fa1838 | 492 | { |
9b288516 | 493 | struct git_transport_data *data = transport->data; |
40cb4fab | 494 | struct send_pack_args args; |
64fcef2d DB |
495 | int ret; |
496 | ||
61b075bd | 497 | if (!data->got_remote_heads) { |
64fcef2d | 498 | struct ref *tmp_refs; |
f3ee9ca5 | 499 | connect_setup(transport, 1); |
64fcef2d | 500 | |
b016918b NTND |
501 | get_remote_heads(data->fd[0], NULL, 0, &tmp_refs, REF_NORMAL, |
502 | NULL, &data->shallow); | |
61b075bd | 503 | data->got_remote_heads = 1; |
64fcef2d | 504 | } |
9b288516 | 505 | |
de1a2fdd | 506 | memset(&args, 0, sizeof(args)); |
94c89ba6 | 507 | args.send_mirror = !!(flags & TRANSPORT_PUSH_MIRROR); |
40cb4fab | 508 | args.force_update = !!(flags & TRANSPORT_PUSH_FORCE); |
aa5af974 | 509 | args.use_thin_pack = data->options.thin; |
8afd8dc0 TRC |
510 | args.verbose = (transport->verbose > 0); |
511 | args.quiet = (transport->verbose < 0); | |
d7c411b7 | 512 | args.progress = transport->progress; |
40cb4fab | 513 | args.dry_run = !!(flags & TRANSPORT_PUSH_DRY_RUN); |
77555854 | 514 | args.porcelain = !!(flags & TRANSPORT_PUSH_PORCELAIN); |
d0e8e09c | 515 | args.atomic = !!(flags & TRANSPORT_PUSH_ATOMIC); |
9be89160 | 516 | args.url = transport->url; |
40cb4fab | 517 | |
30261094 DB |
518 | if (flags & TRANSPORT_PUSH_CERT_ALWAYS) |
519 | args.push_cert = SEND_PACK_PUSH_CERT_ALWAYS; | |
520 | else if (flags & TRANSPORT_PUSH_CERT_IF_ASKED) | |
521 | args.push_cert = SEND_PACK_PUSH_CERT_IF_ASKED; | |
522 | else | |
523 | args.push_cert = SEND_PACK_PUSH_CERT_NEVER; | |
524 | ||
64fcef2d DB |
525 | ret = send_pack(&args, data->fd, data->conn, remote_refs, |
526 | &data->extra_have); | |
527 | ||
528 | close(data->fd[1]); | |
529 | close(data->fd[0]); | |
530 | ret |= finish_connect(data->conn); | |
531 | data->conn = NULL; | |
61b075bd | 532 | data->got_remote_heads = 0; |
64fcef2d DB |
533 | |
534 | return ret; | |
9b288516 DB |
535 | } |
536 | ||
b236752a IL |
537 | static int connect_git(struct transport *transport, const char *name, |
538 | const char *executable, int fd[2]) | |
539 | { | |
540 | struct git_transport_data *data = transport->data; | |
541 | data->conn = git_connect(data->fd, transport->url, | |
542 | executable, 0); | |
543 | fd[0] = data->fd[0]; | |
544 | fd[1] = data->fd[1]; | |
545 | return 0; | |
546 | } | |
547 | ||
f4e95765 SP |
548 | static int disconnect_git(struct transport *transport) |
549 | { | |
ba227857 DB |
550 | struct git_transport_data *data = transport->data; |
551 | if (data->conn) { | |
61b075bd IL |
552 | if (data->got_remote_heads) |
553 | packet_flush(data->fd[1]); | |
ba227857 DB |
554 | close(data->fd[0]); |
555 | close(data->fd[1]); | |
556 | finish_connect(data->conn); | |
557 | } | |
558 | ||
559 | free(data); | |
f4e95765 SP |
560 | return 0; |
561 | } | |
562 | ||
61b075bd IL |
563 | void transport_take_over(struct transport *transport, |
564 | struct child_process *child) | |
565 | { | |
566 | struct git_transport_data *data; | |
567 | ||
568 | if (!transport->smart_options) | |
569 | die("Bug detected: Taking over transport requires non-NULL " | |
570 | "smart_options field."); | |
571 | ||
572 | data = xcalloc(1, sizeof(*data)); | |
573 | data->options = *transport->smart_options; | |
574 | data->conn = child; | |
575 | data->fd[0] = data->conn->out; | |
576 | data->fd[1] = data->conn->in; | |
577 | data->got_remote_heads = 0; | |
578 | transport->data = data; | |
579 | ||
580 | transport->set_option = NULL; | |
581 | transport->get_refs_list = get_refs_via_connect; | |
582 | transport->fetch = fetch_refs_via_pack; | |
583 | transport->push = NULL; | |
584 | transport->push_refs = git_transport_push; | |
585 | transport->disconnect = disconnect_git; | |
586 | transport->smart_options = &(data->options); | |
b26ed430 JH |
587 | |
588 | transport->cannot_reuse = 1; | |
61b075bd IL |
589 | } |
590 | ||
9b288516 DB |
591 | static int is_file(const char *url) |
592 | { | |
593 | struct stat buf; | |
594 | if (stat(url, &buf)) | |
595 | return 0; | |
596 | return S_ISREG(buf.st_mode); | |
597 | } | |
598 | ||
25d5cc48 IL |
599 | static int external_specification_len(const char *url) |
600 | { | |
601 | return strchr(url, ':') - url; | |
602 | } | |
603 | ||
5088d3b3 | 604 | static const struct string_list *protocol_whitelist(void) |
a5adaced | 605 | { |
5088d3b3 JK |
606 | static int enabled = -1; |
607 | static struct string_list allowed = STRING_LIST_INIT_DUP; | |
a5adaced | 608 | |
5088d3b3 JK |
609 | if (enabled < 0) { |
610 | const char *v = getenv("GIT_ALLOW_PROTOCOL"); | |
611 | if (v) { | |
612 | string_list_split(&allowed, v, ':', -1); | |
613 | string_list_sort(&allowed); | |
614 | enabled = 1; | |
615 | } else { | |
616 | enabled = 0; | |
617 | } | |
618 | } | |
619 | ||
620 | return enabled ? &allowed : NULL; | |
621 | } | |
a5adaced | 622 | |
5088d3b3 JK |
623 | int is_transport_allowed(const char *type) |
624 | { | |
625 | const struct string_list *allowed = protocol_whitelist(); | |
626 | return !allowed || string_list_has_string(allowed, type); | |
627 | } | |
628 | ||
629 | void transport_check_allowed(const char *type) | |
630 | { | |
631 | if (!is_transport_allowed(type)) | |
a5adaced | 632 | die("transport '%s' not allowed", type); |
5088d3b3 JK |
633 | } |
634 | ||
635 | int transport_restrict_protocols(void) | |
636 | { | |
637 | return !!protocol_whitelist(); | |
a5adaced JK |
638 | } |
639 | ||
e5f4e214 | 640 | struct transport *transport_get(struct remote *remote, const char *url) |
9b288516 | 641 | { |
4da50460 | 642 | const char *helper; |
8eb554ae SP |
643 | struct transport *ret = xcalloc(1, sizeof(*ret)); |
644 | ||
d01b3c02 TRC |
645 | ret->progress = isatty(2); |
646 | ||
c1d45cf7 DB |
647 | if (!remote) |
648 | die("No remote provided to transport_get()"); | |
649 | ||
b0d66e15 | 650 | ret->got_remote_refs = 0; |
8eb554ae | 651 | ret->remote = remote; |
4da50460 | 652 | helper = remote->foreign_vcs; |
fb0cc87e | 653 | |
cb21d8f0 | 654 | if (!url && remote->url) |
fb0cc87e | 655 | url = remote->url[0]; |
8eb554ae | 656 | ret->url = url; |
8eb554ae | 657 | |
87422439 JS |
658 | /* maybe it is a foreign URL? */ |
659 | if (url) { | |
660 | const char *p = url; | |
661 | ||
638794cd | 662 | while (is_urlschemechar(p == url, *p)) |
87422439 | 663 | p++; |
59556548 | 664 | if (starts_with(p, "::")) |
4da50460 | 665 | helper = xstrndup(url, p - url); |
87422439 JS |
666 | } |
667 | ||
4da50460 IL |
668 | if (helper) { |
669 | transport_helper_init(ret, helper); | |
59556548 | 670 | } else if (starts_with(url, "rsync:")) { |
0d0bac67 | 671 | die("git-over-rsync is no longer supported"); |
c59ab2e5 | 672 | } else if (url_is_local_not_ssh(url) && is_file(url) && is_bundle(url, 1)) { |
c7a8a162 | 673 | struct bundle_transport_data *data = xcalloc(1, sizeof(*data)); |
a5adaced | 674 | transport_check_allowed("file"); |
c7a8a162 | 675 | ret->data = data; |
824d5776 SP |
676 | ret->get_refs_list = get_refs_from_bundle; |
677 | ret->fetch = fetch_refs_from_bundle; | |
678 | ret->disconnect = close_bundle; | |
aa5af974 | 679 | ret->smart_options = NULL; |
25d5cc48 | 680 | } else if (!is_url(url) |
59556548 CC |
681 | || starts_with(url, "file://") |
682 | || starts_with(url, "git://") | |
683 | || starts_with(url, "ssh://") | |
07c7782c CMN |
684 | || starts_with(url, "git+ssh://") /* deprecated - do not use */ |
685 | || starts_with(url, "ssh+git://") /* deprecated - do not use */ | |
686 | ) { | |
a5adaced JK |
687 | /* |
688 | * These are builtin smart transports; "allowed" transports | |
689 | * will be checked individually in git_connect. | |
690 | */ | |
9b288516 | 691 | struct git_transport_data *data = xcalloc(1, sizeof(*data)); |
9b288516 | 692 | ret->data = data; |
aa5af974 | 693 | ret->set_option = NULL; |
824d5776 SP |
694 | ret->get_refs_list = get_refs_via_connect; |
695 | ret->fetch = fetch_refs_via_pack; | |
64fcef2d | 696 | ret->push_refs = git_transport_push; |
b236752a | 697 | ret->connect = connect_git; |
f4e95765 | 698 | ret->disconnect = disconnect_git; |
aa5af974 | 699 | ret->smart_options = &(data->options); |
824d5776 | 700 | |
ba227857 | 701 | data->conn = NULL; |
61b075bd | 702 | data->got_remote_heads = 0; |
25d5cc48 IL |
703 | } else { |
704 | /* Unknown protocol in URL. Pass to external handler. */ | |
705 | int len = external_specification_len(url); | |
6b33894f | 706 | char *handler = xmemdupz(url, len); |
25d5cc48 | 707 | transport_helper_init(ret, handler); |
9b288516 | 708 | } |
8eb554ae | 709 | |
aa5af974 IL |
710 | if (ret->smart_options) { |
711 | ret->smart_options->thin = 1; | |
712 | ret->smart_options->uploadpack = "git-upload-pack"; | |
713 | if (remote->uploadpack) | |
714 | ret->smart_options->uploadpack = remote->uploadpack; | |
715 | ret->smart_options->receivepack = "git-receive-pack"; | |
716 | if (remote->receivepack) | |
717 | ret->smart_options->receivepack = remote->receivepack; | |
718 | } | |
719 | ||
9b288516 DB |
720 | return ret; |
721 | } | |
722 | ||
723 | int transport_set_option(struct transport *transport, | |
724 | const char *name, const char *value) | |
725 | { | |
aa5af974 IL |
726 | int git_reports = 1, protocol_reports = 1; |
727 | ||
728 | if (transport->smart_options) | |
729 | git_reports = set_git_option(transport->smart_options, | |
730 | name, value); | |
731 | ||
824d5776 | 732 | if (transport->set_option) |
aa5af974 IL |
733 | protocol_reports = transport->set_option(transport, name, |
734 | value); | |
735 | ||
736 | /* If either report is 0, report 0 (success). */ | |
737 | if (!git_reports || !protocol_reports) | |
738 | return 0; | |
739 | /* If either reports -1 (invalid value), report -1. */ | |
740 | if ((git_reports == -1) || (protocol_reports == -1)) | |
741 | return -1; | |
742 | /* Otherwise if both report unknown, report unknown. */ | |
ab865e6e | 743 | return 1; |
9b288516 DB |
744 | } |
745 | ||
d01b3c02 TRC |
746 | void transport_set_verbosity(struct transport *transport, int verbosity, |
747 | int force_progress) | |
bde873c5 | 748 | { |
bd2c86ef | 749 | if (verbosity >= 1) |
bde873c5 TRC |
750 | transport->verbose = verbosity <= 3 ? verbosity : 3; |
751 | if (verbosity < 0) | |
752 | transport->verbose = -1; | |
d01b3c02 TRC |
753 | |
754 | /** | |
755 | * Rules used to determine whether to report progress (processing aborts | |
756 | * when a rule is satisfied): | |
757 | * | |
01fdc21f CB |
758 | * . Report progress, if force_progress is 1 (ie. --progress). |
759 | * . Don't report progress, if force_progress is 0 (ie. --no-progress). | |
760 | * . Don't report progress, if verbosity < 0 (ie. -q/--quiet ). | |
761 | * . Report progress if isatty(2) is 1. | |
d01b3c02 | 762 | **/ |
01fdc21f CB |
763 | if (force_progress >= 0) |
764 | transport->progress = !!force_progress; | |
765 | else | |
766 | transport->progress = verbosity >= 0 && isatty(2); | |
bde873c5 TRC |
767 | } |
768 | ||
a762e51e HV |
769 | static void die_with_unpushed_submodules(struct string_list *needs_pushing) |
770 | { | |
771 | int i; | |
772 | ||
773 | fprintf(stderr, "The following submodule paths contain changes that can\n" | |
774 | "not be found on any remote:\n"); | |
775 | for (i = 0; i < needs_pushing->nr; i++) | |
776 | printf(" %s\n", needs_pushing->items[i].string); | |
eb21c732 HV |
777 | fprintf(stderr, "\nPlease try\n\n" |
778 | " git push --recurse-submodules=on-demand\n\n" | |
779 | "or cd to the path and use\n\n" | |
780 | " git push\n\n" | |
781 | "to push them to a remote.\n\n"); | |
a762e51e HV |
782 | |
783 | string_list_clear(needs_pushing, 0); | |
784 | ||
785 | die("Aborting."); | |
786 | } | |
787 | ||
ec55559f AS |
788 | static int run_pre_push_hook(struct transport *transport, |
789 | struct ref *remote_refs) | |
790 | { | |
791 | int ret = 0, x; | |
792 | struct ref *r; | |
d3180279 | 793 | struct child_process proc = CHILD_PROCESS_INIT; |
ec55559f AS |
794 | struct strbuf buf; |
795 | const char *argv[4]; | |
796 | ||
797 | if (!(argv[0] = find_hook("pre-push"))) | |
798 | return 0; | |
799 | ||
800 | argv[1] = transport->remote->name; | |
801 | argv[2] = transport->url; | |
802 | argv[3] = NULL; | |
803 | ||
ec55559f AS |
804 | proc.argv = argv; |
805 | proc.in = -1; | |
806 | ||
807 | if (start_command(&proc)) { | |
808 | finish_command(&proc); | |
809 | return -1; | |
810 | } | |
811 | ||
af65f68c CB |
812 | sigchain_push(SIGPIPE, SIG_IGN); |
813 | ||
ec55559f AS |
814 | strbuf_init(&buf, 256); |
815 | ||
816 | for (r = remote_refs; r; r = r->next) { | |
817 | if (!r->peer_ref) continue; | |
818 | if (r->status == REF_STATUS_REJECT_NONFASTFORWARD) continue; | |
631b5ef2 | 819 | if (r->status == REF_STATUS_REJECT_STALE) continue; |
ec55559f AS |
820 | if (r->status == REF_STATUS_UPTODATE) continue; |
821 | ||
822 | strbuf_reset(&buf); | |
823 | strbuf_addf( &buf, "%s %s %s %s\n", | |
f4e54d02 | 824 | r->peer_ref->name, oid_to_hex(&r->new_oid), |
825 | r->name, oid_to_hex(&r->old_oid)); | |
ec55559f | 826 | |
af65f68c CB |
827 | if (write_in_full(proc.in, buf.buf, buf.len) < 0) { |
828 | /* We do not mind if a hook does not read all refs. */ | |
829 | if (errno != EPIPE) | |
830 | ret = -1; | |
ec55559f AS |
831 | break; |
832 | } | |
833 | } | |
834 | ||
835 | strbuf_release(&buf); | |
836 | ||
837 | x = close(proc.in); | |
838 | if (!ret) | |
839 | ret = x; | |
840 | ||
af65f68c CB |
841 | sigchain_pop(SIGPIPE); |
842 | ||
ec55559f AS |
843 | x = finish_command(&proc); |
844 | if (!ret) | |
845 | ret = x; | |
846 | ||
847 | return ret; | |
848 | } | |
849 | ||
9b288516 | 850 | int transport_push(struct transport *transport, |
07436e43 | 851 | int refspec_nr, const char **refspec, int flags, |
10643d4e | 852 | unsigned int *reject_reasons) |
9b288516 | 853 | { |
10643d4e | 854 | *reject_reasons = 0; |
f1863d0d | 855 | transport_verify_remote_names(refspec_nr, refspec); |
64fcef2d | 856 | |
61b075bd | 857 | if (transport->push) { |
e9fcd1e2 IL |
858 | /* Maybe FIXME. But no important transport uses this case. */ |
859 | if (flags & TRANSPORT_PUSH_SET_UPSTREAM) | |
860 | die("This transport does not support using --set-upstream"); | |
861 | ||
64fcef2d | 862 | return transport->push(transport, refspec_nr, refspec, flags); |
61b075bd | 863 | } else if (transport->push_refs) { |
ba928c13 | 864 | struct ref *remote_refs; |
64fcef2d DB |
865 | struct ref *local_refs = get_local_heads(); |
866 | int match_flags = MATCH_REFS_NONE; | |
8afd8dc0 TRC |
867 | int verbose = (transport->verbose > 0); |
868 | int quiet = (transport->verbose < 0); | |
1965ff74 | 869 | int porcelain = flags & TRANSPORT_PUSH_PORCELAIN; |
e9fcd1e2 | 870 | int pretend = flags & TRANSPORT_PUSH_DRY_RUN; |
77555854 | 871 | int push_ret, ret, err; |
64fcef2d | 872 | |
ba928c13 JK |
873 | if (check_push_refs(local_refs, refspec_nr, refspec) < 0) |
874 | return -1; | |
875 | ||
876 | remote_refs = transport->get_refs_list(transport, 1); | |
877 | ||
64fcef2d DB |
878 | if (flags & TRANSPORT_PUSH_ALL) |
879 | match_flags |= MATCH_REFS_ALL; | |
880 | if (flags & TRANSPORT_PUSH_MIRROR) | |
881 | match_flags |= MATCH_REFS_MIRROR; | |
6ddba5e2 FC |
882 | if (flags & TRANSPORT_PUSH_PRUNE) |
883 | match_flags |= MATCH_REFS_PRUNE; | |
c2aba155 JH |
884 | if (flags & TRANSPORT_PUSH_FOLLOW_TAGS) |
885 | match_flags |= MATCH_REFS_FOLLOW_TAGS; | |
64fcef2d | 886 | |
29753cdd JH |
887 | if (match_push_refs(local_refs, &remote_refs, |
888 | refspec_nr, refspec, match_flags)) { | |
64fcef2d DB |
889 | return -1; |
890 | } | |
891 | ||
91048a95 JH |
892 | if (transport->smart_options && |
893 | transport->smart_options->cas && | |
894 | !is_empty_cas(transport->smart_options->cas)) | |
895 | apply_push_cas(transport->smart_options->cas, | |
896 | transport->remote, remote_refs); | |
897 | ||
20e8b465 TRC |
898 | set_ref_status_for_push(remote_refs, |
899 | flags & TRANSPORT_PUSH_MIRROR, | |
900 | flags & TRANSPORT_PUSH_FORCE); | |
901 | ||
ec55559f AS |
902 | if (!(flags & TRANSPORT_PUSH_NO_HOOK)) |
903 | if (run_pre_push_hook(transport, remote_refs)) | |
904 | return -1; | |
905 | ||
eb21c732 | 906 | if ((flags & TRANSPORT_RECURSE_SUBMODULES_ON_DEMAND) && !is_bare_repository()) { |
d2b17b32 FG |
907 | struct ref *ref = remote_refs; |
908 | for (; ref; ref = ref->next) | |
f4e54d02 | 909 | if (!is_null_oid(&ref->new_oid) && |
910 | !push_unpushed_submodules(ref->new_oid.hash, | |
eb21c732 HV |
911 | transport->remote->name)) |
912 | die ("Failed to push all needed submodules!"); | |
913 | } | |
914 | ||
915 | if ((flags & (TRANSPORT_RECURSE_SUBMODULES_ON_DEMAND | | |
916 | TRANSPORT_RECURSE_SUBMODULES_CHECK)) && !is_bare_repository()) { | |
d2b17b32 | 917 | struct ref *ref = remote_refs; |
f93d7c6f | 918 | struct string_list needs_pushing = STRING_LIST_INIT_DUP; |
a762e51e | 919 | |
d2b17b32 | 920 | for (; ref; ref = ref->next) |
f4e54d02 | 921 | if (!is_null_oid(&ref->new_oid) && |
922 | find_unpushed_submodules(ref->new_oid.hash, | |
a762e51e HV |
923 | transport->remote->name, &needs_pushing)) |
924 | die_with_unpushed_submodules(&needs_pushing); | |
d2b17b32 FG |
925 | } |
926 | ||
77555854 | 927 | push_ret = transport->push_refs(transport, remote_refs, flags); |
42328267 | 928 | err = push_had_errors(remote_refs); |
77555854 | 929 | ret = push_ret | err; |
64fcef2d | 930 | |
42328267 | 931 | if (!quiet || err) |
f1863d0d | 932 | transport_print_push_status(transport->url, remote_refs, |
6ffd7812 | 933 | verbose | porcelain, porcelain, |
10643d4e | 934 | reject_reasons); |
64fcef2d | 935 | |
e9fcd1e2 IL |
936 | if (flags & TRANSPORT_PUSH_SET_UPSTREAM) |
937 | set_upstreams(transport, remote_refs, pretend); | |
938 | ||
64fcef2d DB |
939 | if (!(flags & TRANSPORT_PUSH_DRY_RUN)) { |
940 | struct ref *ref; | |
941 | for (ref = remote_refs; ref; ref = ref->next) | |
f1863d0d | 942 | transport_update_tracking_ref(transport->remote, ref, verbose); |
64fcef2d DB |
943 | } |
944 | ||
77555854 LA |
945 | if (porcelain && !push_ret) |
946 | puts("Done"); | |
66bce02e | 947 | else if (!quiet && !ret && !transport_refs_pushed(remote_refs)) |
64fcef2d | 948 | fprintf(stderr, "Everything up-to-date\n"); |
77555854 | 949 | |
64fcef2d DB |
950 | return ret; |
951 | } | |
952 | return 1; | |
9b288516 DB |
953 | } |
954 | ||
4577370e | 955 | const struct ref *transport_get_remote_refs(struct transport *transport) |
c29727d5 | 956 | { |
b0d66e15 | 957 | if (!transport->got_remote_refs) { |
64fcef2d | 958 | transport->remote_refs = transport->get_refs_list(transport, 0); |
b0d66e15 TRC |
959 | transport->got_remote_refs = 1; |
960 | } | |
61b075bd | 961 | |
c29727d5 DB |
962 | return transport->remote_refs; |
963 | } | |
964 | ||
37148311 | 965 | int transport_fetch_refs(struct transport *transport, struct ref *refs) |
c29727d5 | 966 | { |
425b1393 | 967 | int rc; |
86386829 | 968 | int nr_heads = 0, nr_alloc = 0, nr_refs = 0; |
37148311 DB |
969 | struct ref **heads = NULL; |
970 | struct ref *rm; | |
c29727d5 DB |
971 | |
972 | for (rm = refs; rm; rm = rm->next) { | |
86386829 | 973 | nr_refs++; |
c29727d5 | 974 | if (rm->peer_ref && |
f4e54d02 | 975 | !is_null_oid(&rm->old_oid) && |
976 | !oidcmp(&rm->peer_ref->old_oid, &rm->old_oid)) | |
c29727d5 | 977 | continue; |
7a2bff45 | 978 | ALLOC_GROW(heads, nr_heads + 1, nr_alloc); |
425b1393 | 979 | heads[nr_heads++] = rm; |
c29727d5 DB |
980 | } |
981 | ||
86386829 NP |
982 | if (!nr_heads) { |
983 | /* | |
984 | * When deepening of a shallow repository is requested, | |
985 | * then local and remote refs are likely to still be equal. | |
986 | * Just feed them all to the fetch method in that case. | |
987 | * This condition shouldn't be met in a non-deepening fetch | |
09b7e220 | 988 | * (see builtin/fetch.c:quickfetch()). |
86386829 | 989 | */ |
b32fa95f | 990 | ALLOC_ARRAY(heads, nr_refs); |
86386829 NP |
991 | for (rm = refs; rm; rm = rm->next) |
992 | heads[nr_heads++] = rm; | |
993 | } | |
994 | ||
824d5776 | 995 | rc = transport->fetch(transport, nr_heads, heads); |
61b075bd | 996 | |
c29727d5 | 997 | free(heads); |
425b1393 | 998 | return rc; |
c29727d5 DB |
999 | } |
1000 | ||
1788c39c SP |
1001 | void transport_unlock_pack(struct transport *transport) |
1002 | { | |
1003 | if (transport->pack_lockfile) { | |
691f1a28 | 1004 | unlink_or_warn(transport->pack_lockfile); |
1788c39c SP |
1005 | free(transport->pack_lockfile); |
1006 | transport->pack_lockfile = NULL; | |
1007 | } | |
1008 | } | |
1009 | ||
b236752a IL |
1010 | int transport_connect(struct transport *transport, const char *name, |
1011 | const char *exec, int fd[2]) | |
1012 | { | |
1013 | if (transport->connect) | |
1014 | return transport->connect(transport, name, exec, fd); | |
1015 | else | |
1016 | die("Operation not supported by protocol"); | |
1017 | } | |
1018 | ||
9b288516 DB |
1019 | int transport_disconnect(struct transport *transport) |
1020 | { | |
1021 | int ret = 0; | |
824d5776 SP |
1022 | if (transport->disconnect) |
1023 | ret = transport->disconnect(transport); | |
9b288516 DB |
1024 | free(transport); |
1025 | return ret; | |
1026 | } | |
47abd85b AE |
1027 | |
1028 | /* | |
a7793a74 | 1029 | * Strip username (and password) from a URL and return |
47abd85b AE |
1030 | * it in a newly allocated string. |
1031 | */ | |
1032 | char *transport_anonymize_url(const char *url) | |
1033 | { | |
21f9d0f6 | 1034 | char *scheme_prefix, *anon_part; |
47abd85b AE |
1035 | size_t anon_len, prefix_len = 0; |
1036 | ||
1037 | anon_part = strchr(url, '@'); | |
c59ab2e5 | 1038 | if (url_is_local_not_ssh(url) || !anon_part) |
47abd85b AE |
1039 | goto literal_copy; |
1040 | ||
1041 | anon_len = strlen(++anon_part); | |
1042 | scheme_prefix = strstr(url, "://"); | |
1043 | if (!scheme_prefix) { | |
1044 | if (!strchr(anon_part, ':')) | |
1045 | /* cannot be "me@there:/path/name" */ | |
1046 | goto literal_copy; | |
1047 | } else { | |
1048 | const char *cp; | |
1049 | /* make sure scheme is reasonable */ | |
1050 | for (cp = url; cp < scheme_prefix; cp++) { | |
1051 | switch (*cp) { | |
1052 | /* RFC 1738 2.1 */ | |
1053 | case '+': case '.': case '-': | |
1054 | break; /* ok */ | |
1055 | default: | |
1056 | if (isalnum(*cp)) | |
1057 | break; | |
1058 | /* it isn't */ | |
1059 | goto literal_copy; | |
1060 | } | |
1061 | } | |
1062 | /* @ past the first slash does not count */ | |
1063 | cp = strchr(scheme_prefix + 3, '/'); | |
1064 | if (cp && cp < anon_part) | |
1065 | goto literal_copy; | |
1066 | prefix_len = scheme_prefix - url + 3; | |
1067 | } | |
21f9d0f6 JK |
1068 | return xstrfmt("%.*s%.*s", (int)prefix_len, url, |
1069 | (int)anon_len, anon_part); | |
47abd85b AE |
1070 | literal_copy: |
1071 | return xstrdup(url); | |
1072 | } | |
36cfda15 | 1073 | |
114a6a88 JK |
1074 | struct alternate_refs_data { |
1075 | alternate_ref_fn *fn; | |
1076 | void *data; | |
1077 | }; | |
1078 | ||
1079 | static int refs_from_alternate_cb(struct alternate_object_database *e, | |
1080 | void *data) | |
36cfda15 JH |
1081 | { |
1082 | char *other; | |
1083 | size_t len; | |
1084 | struct remote *remote; | |
1085 | struct transport *transport; | |
1086 | const struct ref *extra; | |
114a6a88 | 1087 | struct alternate_refs_data *cb = data; |
36cfda15 JH |
1088 | |
1089 | e->name[-1] = '\0'; | |
91b3c7ce | 1090 | other = xstrdup(real_path(e->base)); |
36cfda15 JH |
1091 | e->name[-1] = '/'; |
1092 | len = strlen(other); | |
1093 | ||
1094 | while (other[len-1] == '/') | |
1095 | other[--len] = '\0'; | |
1096 | if (len < 8 || memcmp(other + len - 8, "/objects", 8)) | |
def06971 | 1097 | goto out; |
36cfda15 JH |
1098 | /* Is this a git repository with refs? */ |
1099 | memcpy(other + len - 8, "/refs", 6); | |
1100 | if (!is_directory(other)) | |
def06971 | 1101 | goto out; |
36cfda15 JH |
1102 | other[len - 8] = '\0'; |
1103 | remote = remote_get(other); | |
1104 | transport = transport_get(remote, other); | |
1105 | for (extra = transport_get_remote_refs(transport); | |
1106 | extra; | |
1107 | extra = extra->next) | |
114a6a88 | 1108 | cb->fn(extra, cb->data); |
36cfda15 | 1109 | transport_disconnect(transport); |
def06971 | 1110 | out: |
36cfda15 JH |
1111 | free(other); |
1112 | return 0; | |
1113 | } | |
114a6a88 JK |
1114 | |
1115 | void for_each_alternate_ref(alternate_ref_fn fn, void *data) | |
1116 | { | |
1117 | struct alternate_refs_data cb; | |
1118 | cb.fn = fn; | |
1119 | cb.data = data; | |
1120 | foreach_alt_odb(refs_from_alternate_cb, &cb); | |
1121 | } |