3 #include "run-command.h"
8 #include "fetch-pack.h"
18 * We copy packed-refs and refs/ into a temporary file, then read the
19 * loose refs recursively (sorting whenever possible), and then inserting
20 * those packed refs that are not yet in the list (not validating, but
21 * assuming that the file is sorted).
23 * Appears refactoring this from refs.c is too cumbersome.
26 static int str_cmp(const void *a
, const void *b
)
31 return strcmp(s1
, s2
);
34 /* path->buf + name_offset is expected to point to "refs/" */
36 static int read_loose_refs(struct strbuf
*path
, int name_offset
,
39 DIR *dir
= opendir(path
->buf
);
50 memset (&list
, 0, sizeof(list
));
52 while ((de
= readdir(dir
))) {
53 if (is_dot_or_dotdot(de
->d_name
))
55 ALLOC_GROW(list
.entries
, list
.nr
+ 1, list
.alloc
);
56 list
.entries
[list
.nr
++] = xstrdup(de
->d_name
);
62 qsort(list
.entries
, list
.nr
, sizeof(char *), str_cmp
);
65 strbuf_addch(path
, '/');
67 for (i
= 0; i
< list
.nr
; i
++, strbuf_setlen(path
, pathlen
+ 1)) {
68 strbuf_addstr(path
, list
.entries
[i
]);
69 if (read_loose_refs(path
, name_offset
, tail
)) {
70 int fd
= open(path
->buf
, O_RDONLY
);
76 next
= alloc_ref(path
->buf
+ name_offset
);
77 if (read_in_full(fd
, buffer
, 40) != 40 ||
78 get_sha1_hex(buffer
, next
->old_sha1
)) {
88 strbuf_setlen(path
, pathlen
);
90 for (i
= 0; i
< list
.nr
; i
++)
91 free(list
.entries
[i
]);
97 /* insert the packed refs for which no loose refs were found */
99 static void insert_packed_refs(const char *packed_refs
, struct ref
**list
)
101 FILE *f
= fopen(packed_refs
, "r");
102 static char buffer
[PATH_MAX
];
110 if (!fgets(buffer
, sizeof(buffer
), f
)) {
115 if (hexval(buffer
[0]) > 0xf)
117 len
= strlen(buffer
);
118 if (len
&& buffer
[len
- 1] == '\n')
119 buffer
[--len
] = '\0';
122 while ((*list
)->next
&&
123 (cmp
= strcmp(buffer
+ 41,
124 (*list
)->next
->name
)) > 0)
125 list
= &(*list
)->next
;
126 if (!(*list
)->next
|| cmp
< 0) {
127 struct ref
*next
= alloc_ref(buffer
+ 41);
129 if (get_sha1_hex(buffer
, next
->old_sha1
)) {
130 warning ("invalid SHA-1: %s", buffer
);
134 next
->next
= (*list
)->next
;
135 (*list
)->next
= next
;
136 list
= &(*list
)->next
;
141 static struct ref
*get_refs_via_rsync(struct transport
*transport
)
143 struct strbuf buf
= STRBUF_INIT
, temp_dir
= STRBUF_INIT
;
144 struct ref dummy
, *tail
= &dummy
;
145 struct child_process rsync
;
149 /* copy the refs to the temporary directory */
151 strbuf_addstr(&temp_dir
, git_path("rsync-refs-XXXXXX"));
152 if (!mkdtemp(temp_dir
.buf
))
153 die ("Could not make temporary directory");
154 temp_dir_len
= temp_dir
.len
;
156 strbuf_addstr(&buf
, transport
->url
);
157 strbuf_addstr(&buf
, "/refs");
159 memset(&rsync
, 0, sizeof(rsync
));
161 rsync
.stdout_to_stderr
= 1;
163 args
[1] = (transport
->verbose
> 0) ? "-rv" : "-r";
165 args
[3] = temp_dir
.buf
;
168 if (run_command(&rsync
))
169 die ("Could not run rsync to get refs");
172 strbuf_addstr(&buf
, transport
->url
);
173 strbuf_addstr(&buf
, "/packed-refs");
177 if (run_command(&rsync
))
178 die ("Could not run rsync to get refs");
180 /* read the copied refs */
182 strbuf_addstr(&temp_dir
, "/refs");
183 read_loose_refs(&temp_dir
, temp_dir_len
+ 1, &tail
);
184 strbuf_setlen(&temp_dir
, temp_dir_len
);
187 strbuf_addstr(&temp_dir
, "/packed-refs");
188 insert_packed_refs(temp_dir
.buf
, &tail
);
189 strbuf_setlen(&temp_dir
, temp_dir_len
);
191 if (remove_dir_recursively(&temp_dir
, 0))
192 warning ("Error removing temporary directory %s.",
195 strbuf_release(&buf
);
196 strbuf_release(&temp_dir
);
201 static int fetch_objs_via_rsync(struct transport
*transport
,
202 int nr_objs
, const struct ref
**to_fetch
)
204 struct strbuf buf
= STRBUF_INIT
;
205 struct child_process rsync
;
209 strbuf_addstr(&buf
, transport
->url
);
210 strbuf_addstr(&buf
, "/objects/");
212 memset(&rsync
, 0, sizeof(rsync
));
214 rsync
.stdout_to_stderr
= 1;
216 args
[1] = (transport
->verbose
> 0) ? "-rv" : "-r";
217 args
[2] = "--ignore-existing";
218 args
[3] = "--exclude";
221 args
[6] = get_object_directory();
224 /* NEEDSWORK: handle one level of alternates */
225 result
= run_command(&rsync
);
227 strbuf_release(&buf
);
232 static int write_one_ref(const char *name
, const unsigned char *sha1
,
233 int flags
, void *data
)
235 struct strbuf
*buf
= data
;
239 /* when called via for_each_ref(), flags is non-zero */
240 if (flags
&& prefixcmp(name
, "refs/heads/") &&
241 prefixcmp(name
, "refs/tags/"))
244 strbuf_addstr(buf
, name
);
245 if (safe_create_leading_directories(buf
->buf
) ||
246 !(f
= fopen(buf
->buf
, "w")) ||
247 fprintf(f
, "%s\n", sha1_to_hex(sha1
)) < 0 ||
249 return error("problems writing temporary file %s", buf
->buf
);
250 strbuf_setlen(buf
, len
);
254 static int write_refs_to_temp_dir(struct strbuf
*temp_dir
,
255 int refspec_nr
, const char **refspec
)
259 for (i
= 0; i
< refspec_nr
; i
++) {
260 unsigned char sha1
[20];
263 if (dwim_ref(refspec
[i
], strlen(refspec
[i
]), sha1
, &ref
) != 1)
264 return error("Could not get ref %s", refspec
[i
]);
266 if (write_one_ref(ref
, sha1
, 0, temp_dir
)) {
275 static int rsync_transport_push(struct transport
*transport
,
276 int refspec_nr
, const char **refspec
, int flags
)
278 struct strbuf buf
= STRBUF_INIT
, temp_dir
= STRBUF_INIT
;
280 struct child_process rsync
;
281 const char *args
[10];
283 if (flags
& TRANSPORT_PUSH_MIRROR
)
284 return error("rsync transport does not support mirror mode");
286 /* first push the objects */
288 strbuf_addstr(&buf
, transport
->url
);
289 strbuf_addch(&buf
, '/');
291 memset(&rsync
, 0, sizeof(rsync
));
293 rsync
.stdout_to_stderr
= 1;
297 if (flags
& TRANSPORT_PUSH_DRY_RUN
)
298 args
[i
++] = "--dry-run";
299 if (transport
->verbose
> 0)
301 args
[i
++] = "--ignore-existing";
302 args
[i
++] = "--exclude";
304 args
[i
++] = get_object_directory();
308 if (run_command(&rsync
))
309 return error("Could not push objects to %s", transport
->url
);
311 /* copy the refs to the temporary directory; they could be packed. */
313 strbuf_addstr(&temp_dir
, git_path("rsync-refs-XXXXXX"));
314 if (!mkdtemp(temp_dir
.buf
))
315 die ("Could not make temporary directory");
316 strbuf_addch(&temp_dir
, '/');
318 if (flags
& TRANSPORT_PUSH_ALL
) {
319 if (for_each_ref(write_one_ref
, &temp_dir
))
321 } else if (write_refs_to_temp_dir(&temp_dir
, refspec_nr
, refspec
))
325 if (flags
& TRANSPORT_PUSH_DRY_RUN
)
326 args
[i
++] = "--dry-run";
327 if (!(flags
& TRANSPORT_PUSH_FORCE
))
328 args
[i
++] = "--ignore-existing";
329 args
[i
++] = temp_dir
.buf
;
330 args
[i
++] = transport
->url
;
332 if (run_command(&rsync
))
333 result
= error("Could not push to %s", transport
->url
);
335 if (remove_dir_recursively(&temp_dir
, 0))
336 warning ("Could not remove temporary directory %s.",
339 strbuf_release(&buf
);
340 strbuf_release(&temp_dir
);
345 /* Generic functions for using commit walkers */
347 #ifndef NO_CURL /* http fetch is the only user */
348 static int fetch_objs_via_walker(struct transport
*transport
,
349 int nr_objs
, const struct ref
**to_fetch
)
351 char *dest
= xstrdup(transport
->url
);
352 struct walker
*walker
= transport
->data
;
353 char **objs
= xmalloc(nr_objs
* sizeof(*objs
));
357 walker
->get_tree
= 1;
358 walker
->get_history
= 1;
359 walker
->get_verbosely
= transport
->verbose
>= 0;
360 walker
->get_recover
= 0;
362 for (i
= 0; i
< nr_objs
; i
++)
363 objs
[i
] = xstrdup(sha1_to_hex(to_fetch
[i
]->old_sha1
));
365 if (walker_fetch(walker
, nr_objs
, objs
, NULL
, NULL
))
366 die("Fetch failed.");
368 for (i
= 0; i
< nr_objs
; i
++)
376 static int disconnect_walker(struct transport
*transport
)
378 struct walker
*walker
= transport
->data
;
385 static int curl_transport_push(struct transport
*transport
, int refspec_nr
, const char **refspec
, int flags
)
391 if (flags
& TRANSPORT_PUSH_MIRROR
)
392 return error("http transport does not support mirror mode");
394 argv
= xmalloc((refspec_nr
+ 12) * sizeof(char *));
395 argv
[0] = "http-push";
397 if (flags
& TRANSPORT_PUSH_ALL
)
398 argv
[argc
++] = "--all";
399 if (flags
& TRANSPORT_PUSH_FORCE
)
400 argv
[argc
++] = "--force";
401 if (flags
& TRANSPORT_PUSH_DRY_RUN
)
402 argv
[argc
++] = "--dry-run";
403 if (flags
& TRANSPORT_PUSH_VERBOSE
)
404 argv
[argc
++] = "--verbose";
405 argv
[argc
++] = transport
->url
;
407 argv
[argc
++] = *refspec
++;
409 err
= run_command_v_opt(argv
, RUN_GIT_CMD
);
411 case -ERR_RUN_COMMAND_FORK
:
412 error("unable to fork for %s", argv
[0]);
413 case -ERR_RUN_COMMAND_EXEC
:
414 error("unable to exec %s", argv
[0]);
416 case -ERR_RUN_COMMAND_WAITPID
:
417 case -ERR_RUN_COMMAND_WAITPID_WRONG_PID
:
418 case -ERR_RUN_COMMAND_WAITPID_SIGNAL
:
419 case -ERR_RUN_COMMAND_WAITPID_NOEXIT
:
420 error("%s died with strange error", argv
[0]);
425 static struct ref
*get_refs_via_curl(struct transport
*transport
)
427 struct strbuf buffer
= STRBUF_INIT
;
428 char *data
, *start
, *mid
;
433 struct active_request_slot
*slot
;
434 struct slot_results results
;
436 struct ref
*refs
= NULL
;
437 struct ref
*ref
= NULL
;
438 struct ref
*last_ref
= NULL
;
440 struct walker
*walker
;
442 if (!transport
->data
)
443 transport
->data
= get_http_walker(transport
->url
,
446 walker
= transport
->data
;
448 refs_url
= xmalloc(strlen(transport
->url
) + 11);
449 sprintf(refs_url
, "%s/info/refs", transport
->url
);
451 slot
= get_active_slot();
452 slot
->results
= &results
;
453 curl_easy_setopt(slot
->curl
, CURLOPT_FILE
, &buffer
);
454 curl_easy_setopt(slot
->curl
, CURLOPT_WRITEFUNCTION
, fwrite_buffer
);
455 curl_easy_setopt(slot
->curl
, CURLOPT_URL
, refs_url
);
456 curl_easy_setopt(slot
->curl
, CURLOPT_HTTPHEADER
, NULL
);
458 if (start_active_slot(slot
)) {
459 run_active_slot(slot
);
460 if (results
.curl_result
!= CURLE_OK
) {
461 strbuf_release(&buffer
);
462 if (missing_target(&results
))
463 die("%s not found: did you run git update-server-info on the server?", refs_url
);
465 die("%s download error - %s", refs_url
, curl_errorstr
);
468 strbuf_release(&buffer
);
469 die("Unable to start HTTP request");
475 while (i
< buffer
.len
) {
480 if (data
[i
] == '\n') {
483 ref
= xmalloc(sizeof(struct ref
) +
484 strlen(ref_name
) + 1);
485 memset(ref
, 0, sizeof(struct ref
));
486 strcpy(ref
->name
, ref_name
);
487 get_sha1_hex(start
, ref
->old_sha1
);
491 last_ref
->next
= ref
;
498 strbuf_release(&buffer
);
500 ref
= alloc_ref("HEAD");
501 if (!walker
->fetch_ref(walker
, ref
) &&
502 !resolve_remote_symref(ref
, refs
)) {
512 static int fetch_objs_via_curl(struct transport
*transport
,
513 int nr_objs
, const struct ref
**to_fetch
)
515 if (!transport
->data
)
516 transport
->data
= get_http_walker(transport
->url
,
518 return fetch_objs_via_walker(transport
, nr_objs
, to_fetch
);
523 struct bundle_transport_data
{
525 struct bundle_header header
;
528 static struct ref
*get_refs_from_bundle(struct transport
*transport
)
530 struct bundle_transport_data
*data
= transport
->data
;
531 struct ref
*result
= NULL
;
536 data
->fd
= read_bundle_header(transport
->url
, &data
->header
);
538 die ("Could not read bundle '%s'.", transport
->url
);
539 for (i
= 0; i
< data
->header
.references
.nr
; i
++) {
540 struct ref_list_entry
*e
= data
->header
.references
.list
+ i
;
541 struct ref
*ref
= alloc_ref(e
->name
);
542 hashcpy(ref
->old_sha1
, e
->sha1
);
549 static int fetch_refs_from_bundle(struct transport
*transport
,
550 int nr_heads
, const struct ref
**to_fetch
)
552 struct bundle_transport_data
*data
= transport
->data
;
553 return unbundle(&data
->header
, data
->fd
);
556 static int close_bundle(struct transport
*transport
)
558 struct bundle_transport_data
*data
= transport
->data
;
565 struct git_transport_data
{
568 unsigned followtags
: 1;
570 struct child_process
*conn
;
572 const char *uploadpack
;
573 const char *receivepack
;
576 static int set_git_option(struct transport
*connection
,
577 const char *name
, const char *value
)
579 struct git_transport_data
*data
= connection
->data
;
580 if (!strcmp(name
, TRANS_OPT_UPLOADPACK
)) {
581 data
->uploadpack
= value
;
583 } else if (!strcmp(name
, TRANS_OPT_RECEIVEPACK
)) {
584 data
->receivepack
= value
;
586 } else if (!strcmp(name
, TRANS_OPT_THIN
)) {
587 data
->thin
= !!value
;
589 } else if (!strcmp(name
, TRANS_OPT_FOLLOWTAGS
)) {
590 data
->followtags
= !!value
;
592 } else if (!strcmp(name
, TRANS_OPT_KEEP
)) {
593 data
->keep
= !!value
;
595 } else if (!strcmp(name
, TRANS_OPT_DEPTH
)) {
599 data
->depth
= atoi(value
);
605 static int connect_setup(struct transport
*transport
)
607 struct git_transport_data
*data
= transport
->data
;
608 data
->conn
= git_connect(data
->fd
, transport
->url
, data
->uploadpack
, 0);
612 static struct ref
*get_refs_via_connect(struct transport
*transport
)
614 struct git_transport_data
*data
= transport
->data
;
617 connect_setup(transport
);
618 get_remote_heads(data
->fd
[0], &refs
, 0, NULL
, 0, NULL
);
623 static int fetch_refs_via_pack(struct transport
*transport
,
624 int nr_heads
, const struct ref
**to_fetch
)
626 struct git_transport_data
*data
= transport
->data
;
627 char **heads
= xmalloc(nr_heads
* sizeof(*heads
));
628 char **origh
= xmalloc(nr_heads
* sizeof(*origh
));
629 const struct ref
*refs
;
630 char *dest
= xstrdup(transport
->url
);
631 struct fetch_pack_args args
;
633 struct ref
*refs_tmp
= NULL
;
635 memset(&args
, 0, sizeof(args
));
636 args
.uploadpack
= data
->uploadpack
;
637 args
.keep_pack
= data
->keep
;
639 args
.use_thin_pack
= data
->thin
;
640 args
.include_tag
= data
->followtags
;
641 args
.verbose
= (transport
->verbose
> 0);
642 args
.quiet
= (transport
->verbose
< 0);
643 args
.no_progress
= args
.quiet
|| (!transport
->progress
&& !isatty(1));
644 args
.depth
= data
->depth
;
646 for (i
= 0; i
< nr_heads
; i
++)
647 origh
[i
] = heads
[i
] = xstrdup(to_fetch
[i
]->name
);
650 connect_setup(transport
);
651 get_remote_heads(data
->fd
[0], &refs_tmp
, 0, NULL
, 0, NULL
);
654 refs
= fetch_pack(&args
, data
->fd
, data
->conn
,
655 refs_tmp
? refs_tmp
: transport
->remote_refs
,
656 dest
, nr_heads
, heads
, &transport
->pack_lockfile
);
659 if (finish_connect(data
->conn
))
665 for (i
= 0; i
< nr_heads
; i
++)
670 return (refs
? 0 : -1);
673 static int git_transport_push(struct transport
*transport
, int refspec_nr
, const char **refspec
, int flags
)
675 struct git_transport_data
*data
= transport
->data
;
676 struct send_pack_args args
;
678 args
.receivepack
= data
->receivepack
;
679 args
.send_all
= !!(flags
& TRANSPORT_PUSH_ALL
);
680 args
.send_mirror
= !!(flags
& TRANSPORT_PUSH_MIRROR
);
681 args
.force_update
= !!(flags
& TRANSPORT_PUSH_FORCE
);
682 args
.use_thin_pack
= data
->thin
;
683 args
.verbose
= !!(flags
& TRANSPORT_PUSH_VERBOSE
);
684 args
.dry_run
= !!(flags
& TRANSPORT_PUSH_DRY_RUN
);
686 return send_pack(&args
, transport
->url
, transport
->remote
, refspec_nr
, refspec
);
689 static int disconnect_git(struct transport
*transport
)
691 struct git_transport_data
*data
= transport
->data
;
693 packet_flush(data
->fd
[1]);
696 finish_connect(data
->conn
);
703 static int is_local(const char *url
)
705 const char *colon
= strchr(url
, ':');
706 const char *slash
= strchr(url
, '/');
707 return !colon
|| (slash
&& slash
< colon
) ||
708 has_dos_drive_prefix(url
);
711 static int is_file(const char *url
)
716 return S_ISREG(buf
.st_mode
);
719 struct transport
*transport_get(struct remote
*remote
, const char *url
)
721 struct transport
*ret
= xcalloc(1, sizeof(*ret
));
723 ret
->remote
= remote
;
726 if (!prefixcmp(url
, "rsync://")) {
727 ret
->get_refs_list
= get_refs_via_rsync
;
728 ret
->fetch
= fetch_objs_via_rsync
;
729 ret
->push
= rsync_transport_push
;
731 } else if (!prefixcmp(url
, "http://")
732 || !prefixcmp(url
, "https://")
733 || !prefixcmp(url
, "ftp://")) {
735 error("git was compiled without libcurl support.");
737 ret
->get_refs_list
= get_refs_via_curl
;
738 ret
->fetch
= fetch_objs_via_curl
;
739 ret
->push
= curl_transport_push
;
741 ret
->disconnect
= disconnect_walker
;
743 } else if (is_local(url
) && is_file(url
)) {
744 struct bundle_transport_data
*data
= xcalloc(1, sizeof(*data
));
746 ret
->get_refs_list
= get_refs_from_bundle
;
747 ret
->fetch
= fetch_refs_from_bundle
;
748 ret
->disconnect
= close_bundle
;
751 struct git_transport_data
*data
= xcalloc(1, sizeof(*data
));
753 ret
->set_option
= set_git_option
;
754 ret
->get_refs_list
= get_refs_via_connect
;
755 ret
->fetch
= fetch_refs_via_pack
;
756 ret
->push
= git_transport_push
;
757 ret
->disconnect
= disconnect_git
;
761 data
->uploadpack
= "git-upload-pack";
762 if (remote
&& remote
->uploadpack
)
763 data
->uploadpack
= remote
->uploadpack
;
764 data
->receivepack
= "git-receive-pack";
765 if (remote
&& remote
->receivepack
)
766 data
->receivepack
= remote
->receivepack
;
772 int transport_set_option(struct transport
*transport
,
773 const char *name
, const char *value
)
775 if (transport
->set_option
)
776 return transport
->set_option(transport
, name
, value
);
780 int transport_push(struct transport
*transport
,
781 int refspec_nr
, const char **refspec
, int flags
)
783 if (!transport
->push
)
785 return transport
->push(transport
, refspec_nr
, refspec
, flags
);
788 const struct ref
*transport_get_remote_refs(struct transport
*transport
)
790 if (!transport
->remote_refs
)
791 transport
->remote_refs
= transport
->get_refs_list(transport
);
792 return transport
->remote_refs
;
795 int transport_fetch_refs(struct transport
*transport
, const struct ref
*refs
)
798 int nr_heads
= 0, nr_alloc
= 0;
799 const struct ref
**heads
= NULL
;
800 const struct ref
*rm
;
802 for (rm
= refs
; rm
; rm
= rm
->next
) {
804 !hashcmp(rm
->peer_ref
->old_sha1
, rm
->old_sha1
))
806 ALLOC_GROW(heads
, nr_heads
+ 1, nr_alloc
);
807 heads
[nr_heads
++] = rm
;
810 rc
= transport
->fetch(transport
, nr_heads
, heads
);
815 void transport_unlock_pack(struct transport
*transport
)
817 if (transport
->pack_lockfile
) {
818 unlink(transport
->pack_lockfile
);
819 free(transport
->pack_lockfile
);
820 transport
->pack_lockfile
= NULL
;
824 int transport_disconnect(struct transport
*transport
)
827 if (transport
->disconnect
)
828 ret
= transport
->disconnect(transport
);