2 * Copyright (c) 2018, 2019 Ori Bernstein <ori@openbsd.org>
4 * Permission to use, copy, modify, and distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16 #include "got_compat.h"
18 #include <sys/types.h>
20 #include <sys/queue.h>
22 #include <sys/socket.h>
24 #include <sys/resource.h>
25 #include <sys/socket.h>
40 #include "got_error.h"
41 #include "got_reference.h"
42 #include "got_repository.h"
44 #include "got_cancel.h"
45 #include "got_worktree.h"
46 #include "got_object.h"
47 #include "got_opentemp.h"
48 #include "got_fetch.h"
50 #include "got_lib_hash.h"
51 #include "got_lib_delta.h"
52 #include "got_lib_inflate.h"
53 #include "got_lib_object.h"
54 #include "got_lib_object_parse.h"
55 #include "got_lib_object_create.h"
56 #include "got_lib_pack.h"
57 #include "got_lib_privsep.h"
58 #include "got_lib_object_cache.h"
59 #include "got_lib_repository.h"
60 #include "got_lib_dial.h"
61 #include "got_lib_pkt.h"
64 #define nitems(_a) (sizeof((_a)) / sizeof((_a)[0]))
68 #define ssizeof(_x) ((ssize_t)(sizeof(_x)))
72 #define MIN(_a,_b) ((_a) < (_b) ? (_a) : (_b))
75 const struct got_error
*
76 got_fetch_connect(pid_t
*fetchpid
, int *fetchfd
, const char *proto
,
77 const char *host
, const char *port
, const char *server_path
,
78 const char *jumphost
, int verbosity
)
80 const struct got_error
*err
= NULL
;
85 if (strcmp(proto
, "ssh") == 0 || strcmp(proto
, "git+ssh") == 0)
86 err
= got_dial_ssh(fetchpid
, fetchfd
, host
, port
,
87 server_path
, jumphost
, GOT_DIAL_CMD_FETCH
, verbosity
);
88 else if (strcmp(proto
, "git") == 0)
89 err
= got_dial_git(fetchfd
, host
, port
, server_path
,
91 else if (strcmp(proto
, "http") == 0 ||
92 strcmp(proto
, "git+http") == 0 ||
93 strcmp(proto
, "https") == 0 ||
94 strcmp(proto
, "git+https") == 0)
95 err
= got_dial_http(fetchpid
, fetchfd
, host
, port
,
96 server_path
, verbosity
, strstr(proto
, "https") != NULL
);
98 err
= got_error_path(proto
, GOT_ERR_BAD_PROTO
);
102 const struct got_error
*
103 got_fetch_pack(struct got_object_id
**pack_hash
, struct got_pathlist_head
*refs
,
104 struct got_pathlist_head
*symrefs
, const char *remote_name
,
105 int mirror_references
, int fetch_all_branches
,
106 struct got_pathlist_head
*wanted_branches
,
107 struct got_pathlist_head
*wanted_refs
, int list_refs_only
, int verbosity
,
108 int fetchfd
, struct got_repository
*repo
, const char *worktree_refname
,
109 const char *remote_head
, int no_head
, got_fetch_progress_cb progress_cb
,
113 int imsg_fetchfds
[2], imsg_idxfds
[2];
114 int packfd
= -1, npackfd
= -1, idxfd
= -1, nidxfd
= -1, nfetchfd
= -1;
116 int fetchstatus
, idxstatus
, done
= 0;
117 const struct got_error
*err
;
118 struct imsgbuf fetchibuf
, idxibuf
;
119 pid_t fetchpid
, idxpid
;
120 char *tmppackpath
= NULL
, *tmpidxpath
= NULL
;
121 char *packpath
= NULL
, *idxpath
= NULL
, *id_str
= NULL
;
122 const char *repo_path
= NULL
;
123 struct got_pathlist_head have_refs
;
124 struct got_pathlist_entry
*pe
, *new;
125 struct got_reflist_head my_refs
;
126 struct got_reflist_entry
*re
;
127 off_t packfile_size
= 0;
128 struct got_packfile_hdr pack_hdr
;
131 char *progress
= NULL
;
134 memset(&fetchibuf
, 0, sizeof(fetchibuf
));
135 memset(&idxibuf
, 0, sizeof(idxibuf
));
137 if (repo
&& got_repo_get_object_format(repo
) != GOT_HASH_SHA1
)
138 return got_error_fmt(GOT_ERR_NOT_IMPL
,
139 "sha256 object IDs unsupported in network protocol");
142 * Prevent fetching of references that won't make any
143 * sense outside of the remote repository's context.
145 RB_FOREACH(pe
, got_pathlist_head
, wanted_refs
) {
146 const char *refname
= pe
->path
;
147 if (strncmp(refname
, "refs/got/", 9) == 0 ||
148 strncmp(refname
, "got/", 4) == 0 ||
149 strncmp(refname
, "refs/remotes/", 13) == 0 ||
150 strncmp(refname
, "remotes/", 8) == 0)
151 return got_error_path(refname
, GOT_ERR_FETCH_BAD_REF
);
155 repo_path
= got_repo_get_path_git_dir(repo
);
157 for (i
= 0; i
< nitems(tmpfds
); i
++)
161 TAILQ_INIT(&my_refs
);
163 if (!list_refs_only
) {
164 err
= got_ref_list(&my_refs
, repo
, NULL
,
165 got_ref_cmp_by_name
, NULL
);
170 TAILQ_FOREACH(re
, &my_refs
, entry
) {
171 struct got_object_id
*id
;
174 if (got_ref_is_symbolic(re
->ref
))
177 err
= got_ref_resolve(&id
, repo
, re
->ref
);
180 refname
= strdup(got_ref_get_name(re
->ref
));
181 if (refname
== NULL
) {
182 err
= got_error_from_errno("strdup");
185 err
= got_pathlist_insert(&new, &have_refs
, refname
, id
);
195 if (list_refs_only
) {
196 packfd
= got_opentempfd();
198 err
= got_error_from_errno("got_opentempfd");
202 if (asprintf(&path
, "%s/%s/fetching.pack",
203 repo_path
, GOT_OBJECTS_PACK_DIR
) == -1) {
204 err
= got_error_from_errno("asprintf");
207 err
= got_opentemp_named_fd(&tmppackpath
, &packfd
, path
, "");
211 if (fchmod(packfd
, GOT_DEFAULT_FILE_MODE
) != 0) {
212 err
= got_error_from_errno2("fchmod", tmppackpath
);
216 if (list_refs_only
) {
217 idxfd
= got_opentempfd();
219 err
= got_error_from_errno("got_opentempfd");
223 if (asprintf(&path
, "%s/%s/fetching.idx",
224 repo_path
, GOT_OBJECTS_PACK_DIR
) == -1) {
225 err
= got_error_from_errno("asprintf");
228 err
= got_opentemp_named_fd(&tmpidxpath
, &idxfd
, path
, "");
232 if (fchmod(idxfd
, GOT_DEFAULT_FILE_MODE
) != 0) {
233 err
= got_error_from_errno2("fchmod", tmpidxpath
);
239 err
= got_error_from_errno("dup");
243 for (i
= 0; i
< nitems(tmpfds
); i
++) {
244 tmpfds
[i
] = got_opentempfd();
245 if (tmpfds
[i
] == -1) {
246 err
= got_error_from_errno("got_opentempfd");
251 if (socketpair(AF_UNIX
, SOCK_STREAM
, PF_UNSPEC
, imsg_fetchfds
) == -1) {
252 err
= got_error_from_errno("socketpair");
257 if (fetchpid
== -1) {
258 err
= got_error_from_errno("fork");
260 } else if (fetchpid
== 0){
261 got_privsep_exec_child(imsg_fetchfds
,
262 GOT_PATH_PROG_FETCH_PACK
, tmppackpath
);
265 if (close(imsg_fetchfds
[1]) == -1) {
266 err
= got_error_from_errno("close");
269 if (imsgbuf_init(&fetchibuf
, imsg_fetchfds
[0]) == -1) {
270 err
= got_error_from_errno("imsgbuf_init");
273 imsgbuf_allow_fdpass(&fetchibuf
);
274 nfetchfd
= dup(fetchfd
);
275 if (nfetchfd
== -1) {
276 err
= got_error_from_errno("dup");
279 err
= got_privsep_send_fetch_req(&fetchibuf
, nfetchfd
, &have_refs
,
280 fetch_all_branches
, wanted_branches
, wanted_refs
,
281 list_refs_only
, worktree_refname
, remote_head
, no_head
, verbosity
);
285 npackfd
= dup(packfd
);
287 err
= got_error_from_errno("dup");
290 err
= got_privsep_send_fetch_outfd(&fetchibuf
, npackfd
);
296 progress
= calloc(GOT_PKT_MAX
, 1);
297 if (progress
== NULL
) {
298 err
= got_error_from_errno("calloc");
302 *pack_hash
= calloc(1, sizeof(**pack_hash
));
303 if (*pack_hash
== NULL
) {
304 err
= got_error_from_errno("calloc");
309 struct got_object_id
*id
= NULL
;
310 char *refname
= NULL
;
311 char *server_progress
= NULL
;
312 off_t packfile_size_cur
= 0;
314 err
= got_privsep_recv_fetch_progress(&done
,
315 &id
, &refname
, symrefs
, &server_progress
,
316 &packfile_size_cur
, (*pack_hash
)->hash
, &fetchibuf
);
319 /* Don't report size progress for an empty pack file. */
320 if (packfile_size_cur
<= ssizeof(pack_hdr
) + SHA1_DIGEST_LENGTH
)
321 packfile_size_cur
= 0;
322 if (!done
&& refname
&& id
) {
323 err
= got_pathlist_insert(&pe
, refs
, refname
, id
);
324 if (err
|| pe
== NULL
) {
330 } else if (!done
&& server_progress
) {
333 * XXX git-daemon tends to send batched output with
334 * lines spanning separate packets. Buffer progress
335 * output until we see a CR or LF to avoid giving
336 * partial lines of progress output to the callback.
338 if (strlcat(progress
, server_progress
,
339 GOT_PKT_MAX
) >= GOT_PKT_MAX
) {
340 progress
[0] = '\0'; /* discard */
343 while ((p
= strchr(progress
, '\r')) != NULL
||
344 (p
= strchr(progress
, '\n')) != NULL
) {
349 if (asprintf(&s
, "%s%s", progress
,
350 c
== '\n' ? "\n" : "") == -1) {
351 err
= got_error_from_errno("asprintf");
354 err
= progress_cb(progress_arg
, s
,
355 packfile_size_cur
, 0, 0, 0, 0);
359 n
= strlen(progress
);
360 if (n
< GOT_PKT_MAX
- 1) {
361 memmove(progress
, &progress
[n
+ 1],
362 GOT_PKT_MAX
- n
- 1);
366 free(server_progress
);
369 } else if (!done
&& packfile_size_cur
!= packfile_size
) {
370 err
= progress_cb(progress_arg
, NULL
,
371 packfile_size_cur
, 0, 0, 0, 0);
374 packfile_size
= packfile_size_cur
;
377 if (close(imsg_fetchfds
[0]) == -1) {
378 err
= got_error_from_errno("close");
381 if (waitpid(fetchpid
, &fetchstatus
, 0) == -1) {
382 err
= got_error_from_errno("waitpid");
386 if (lseek(packfd
, 0, SEEK_SET
) == -1) {
387 err
= got_error_from_errno("lseek");
391 /* If zero data was fetched without error we are already up-to-date. */
392 if (packfile_size
== 0) {
396 } else if (packfile_size
< ssizeof(pack_hdr
) + SHA1_DIGEST_LENGTH
) {
397 err
= got_error_msg(GOT_ERR_BAD_PACKFILE
, "short pack file");
402 n
= read(packfd
, &pack_hdr
, ssizeof(pack_hdr
));
404 err
= got_error_from_errno("read");
407 if (n
!= ssizeof(pack_hdr
)) {
408 err
= got_error(GOT_ERR_IO
);
411 if (pack_hdr
.signature
!= htobe32(GOT_PACKFILE_SIGNATURE
)) {
412 err
= got_error_msg(GOT_ERR_BAD_PACKFILE
,
413 "bad pack file signature");
416 if (pack_hdr
.version
!= htobe32(GOT_PACKFILE_VERSION
)) {
417 err
= got_error_msg(GOT_ERR_BAD_PACKFILE
,
418 "bad pack file version");
421 nobj
= be32toh(pack_hdr
.nobjects
);
423 packfile_size
> ssizeof(pack_hdr
) + SHA1_DIGEST_LENGTH
) {
424 err
= got_error_msg(GOT_ERR_BAD_PACKFILE
,
425 "bad pack file with zero objects");
429 packfile_size
<= ssizeof(pack_hdr
) + SHA1_DIGEST_LENGTH
) {
430 err
= got_error_msg(GOT_ERR_BAD_PACKFILE
,
431 "empty pack file with non-zero object count");
437 * If the pack file contains no objects, we may only need to update
438 * references in our repository. The caller will take care of that.
446 if (lseek(packfd
, 0, SEEK_SET
) == -1) {
447 err
= got_error_from_errno("lseek");
451 if (socketpair(AF_UNIX
, SOCK_STREAM
, PF_UNSPEC
, imsg_idxfds
) == -1) {
452 err
= got_error_from_errno("socketpair");
457 err
= got_error_from_errno("fork");
459 } else if (idxpid
== 0)
460 got_privsep_exec_child(imsg_idxfds
,
461 GOT_PATH_PROG_INDEX_PACK
, tmppackpath
);
462 if (close(imsg_idxfds
[1]) == -1) {
463 err
= got_error_from_errno("close");
466 if (imsgbuf_init(&idxibuf
, imsg_idxfds
[0]) == -1) {
467 err
= got_error_from_errno("imsgbuf_init");
470 imsgbuf_allow_fdpass(&idxibuf
);
472 npackfd
= dup(packfd
);
474 err
= got_error_from_errno("dup");
477 err
= got_privsep_send_index_pack_req(&idxibuf
, *pack_hash
, npackfd
);
481 err
= got_privsep_send_index_pack_outfd(&idxibuf
, nidxfd
);
485 for (i
= 0; i
< nitems(tmpfds
); i
++) {
486 err
= got_privsep_send_tmpfd(&idxibuf
, tmpfds
[i
]);
493 int nobj_total
, nobj_indexed
, nobj_loose
, nobj_resolved
;
495 err
= got_privsep_recv_index_progress(&done
, &nobj_total
,
496 &nobj_indexed
, &nobj_loose
, &nobj_resolved
,
500 if (nobj_indexed
!= 0) {
501 err
= progress_cb(progress_arg
, NULL
,
502 packfile_size
, nobj_total
,
503 nobj_indexed
, nobj_loose
, nobj_resolved
);
508 if (close(imsg_idxfds
[0]) == -1) {
509 err
= got_error_from_errno("close");
512 if (waitpid(idxpid
, &idxstatus
, 0) == -1) {
513 err
= got_error_from_errno("waitpid");
517 err
= got_object_id_str(&id_str
, *pack_hash
);
520 if (asprintf(&packpath
, "%s/%s/pack-%s.pack",
521 repo_path
, GOT_OBJECTS_PACK_DIR
, id_str
) == -1) {
522 err
= got_error_from_errno("asprintf");
526 if (asprintf(&idxpath
, "%s/%s/pack-%s.idx",
527 repo_path
, GOT_OBJECTS_PACK_DIR
, id_str
) == -1) {
528 err
= got_error_from_errno("asprintf");
534 if (rename(tmppackpath
, packpath
) == -1) {
535 err
= got_error_from_errno3("rename", tmppackpath
, packpath
);
540 if (rename(tmpidxpath
, idxpath
) == -1) {
541 err
= got_error_from_errno3("rename", tmpidxpath
, idxpath
);
549 imsgbuf_clear(&fetchibuf
);
551 imsgbuf_clear(&idxibuf
);
552 if (tmppackpath
&& unlink(tmppackpath
) == -1 && err
== NULL
)
553 err
= got_error_from_errno2("unlink", tmppackpath
);
554 if (tmpidxpath
&& unlink(tmpidxpath
) == -1 && err
== NULL
)
555 err
= got_error_from_errno2("unlink", tmpidxpath
);
556 if (nfetchfd
!= -1 && close(nfetchfd
) == -1 && err
== NULL
)
557 err
= got_error_from_errno("close");
558 if (npackfd
!= -1 && close(npackfd
) == -1 && err
== NULL
)
559 err
= got_error_from_errno("close");
560 if (packfd
!= -1 && close(packfd
) == -1 && err
== NULL
)
561 err
= got_error_from_errno("close");
562 if (idxfd
!= -1 && close(idxfd
) == -1 && err
== NULL
)
563 err
= got_error_from_errno("close");
564 for (i
= 0; i
< nitems(tmpfds
); i
++) {
565 if (tmpfds
[i
] != -1 && close(tmpfds
[i
]) == -1 && err
== NULL
)
566 err
= got_error_from_errno("close");
575 got_pathlist_free(&have_refs
, GOT_PATHLIST_FREE_ALL
);
576 got_ref_list_free(&my_refs
);
580 got_pathlist_free(refs
, GOT_PATHLIST_FREE_ALL
);
581 got_pathlist_free(symrefs
, GOT_PATHLIST_FREE_ALL
);