2 * Copyright (c) 2022 Stefan Sperling <stsp@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.
17 #include <sys/queue.h>
20 #include <sys/types.h>
40 #include "got_error.h"
41 #include "got_repository.h"
42 #include "got_object.h"
43 #include "got_reference.h"
46 #include "got_cancel.h"
47 #include "got_commit_graph.h"
48 #include "got_opentemp.h"
50 #include "got_lib_delta.h"
51 #include "got_lib_delta_cache.h"
52 #include "got_lib_hash.h"
53 #include "got_lib_object.h"
54 #include "got_lib_object_cache.h"
55 #include "got_lib_object_idset.h"
56 #include "got_lib_object_parse.h"
57 #include "got_lib_ratelimit.h"
58 #include "got_lib_pack.h"
59 #include "got_lib_pack_index.h"
60 #include "got_lib_repository.h"
61 #include "got_lib_poll.h"
65 #include "repo_write.h"
68 #define nitems(_a) (sizeof((_a)) / sizeof((_a)[0]))
71 static struct repo_write {
74 struct got_repository *repo;
78 struct gotd_imsgev session_iev;
79 struct got_pathlist_head *protected_tag_namespaces;
80 struct got_pathlist_head *protected_branch_namespaces;
81 struct got_pathlist_head *protected_branches;
91 struct gotd_ref_update {
92 STAILQ_ENTRY(gotd_ref_update) entry;
93 struct got_reference *ref;
96 struct got_object_id old_id;
97 struct got_object_id new_id;
99 STAILQ_HEAD(gotd_ref_updates, gotd_ref_update);
101 static struct repo_write_client {
105 struct got_pack pack;
106 uint8_t pack_sha1[SHA1_DIGEST_LENGTH];
108 struct gotd_ref_updates ref_updates;
115 static volatile sig_atomic_t sigint_received;
116 static volatile sig_atomic_t sigterm_received;
119 catch_sigint(int signo)
125 catch_sigterm(int signo)
127 sigterm_received = 1;
130 static const struct got_error *
131 check_cancelled(void *arg)
133 if (sigint_received || sigterm_received)
134 return got_error(GOT_ERR_CANCELLED);
139 static const struct got_error *
140 send_peeled_tag_ref(struct got_reference *ref, struct got_object *obj,
141 struct imsgbuf *ibuf)
143 const struct got_error *err = NULL;
144 struct got_tag_object *tag;
146 char *peeled_refname = NULL;
147 struct got_object_id *id;
150 err = got_object_tag_open(&tag, repo_write.repo, obj);
154 if (asprintf(&peeled_refname, "%s^{}", got_ref_get_name(ref)) == -1) {
155 err = got_error_from_errno("asprintf");
159 id = got_object_tag_get_object_id(tag);
160 namelen = strlen(peeled_refname);
162 len = sizeof(struct gotd_imsg_ref) + namelen;
163 if (len > MAX_IMSGSIZE - IMSG_HEADER_SIZE) {
164 err = got_error(GOT_ERR_NO_SPACE);
168 wbuf = imsg_create(ibuf, GOTD_IMSG_REF, PROC_REPO_WRITE,
169 repo_write.pid, len);
171 err = got_error_from_errno("imsg_create REF");
175 /* Keep in sync with struct gotd_imsg_ref definition. */
176 if (imsg_add(wbuf, id->hash, SHA1_DIGEST_LENGTH) == -1) {
177 err = got_error_from_errno("imsg_add REF");
180 if (imsg_add(wbuf, &namelen, sizeof(namelen)) == -1) {
181 err = got_error_from_errno("imsg_add REF");
184 if (imsg_add(wbuf, peeled_refname, namelen) == -1) {
185 err = got_error_from_errno("imsg_add REF");
189 imsg_close(ibuf, wbuf);
191 got_object_tag_close(tag);
195 static const struct got_error *
196 send_ref(struct got_reference *ref, struct imsgbuf *ibuf)
198 const struct got_error *err;
199 const char *refname = got_ref_get_name(ref);
201 struct got_object_id *id = NULL;
202 struct got_object *obj = NULL;
206 namelen = strlen(refname);
208 len = sizeof(struct gotd_imsg_ref) + namelen;
209 if (len > MAX_IMSGSIZE - IMSG_HEADER_SIZE)
210 return got_error(GOT_ERR_NO_SPACE);
212 err = got_ref_resolve(&id, repo_write.repo, ref);
216 wbuf = imsg_create(ibuf, GOTD_IMSG_REF, PROC_REPO_WRITE,
217 repo_write.pid, len);
219 err = got_error_from_errno("imsg_create REF");
223 /* Keep in sync with struct gotd_imsg_ref definition. */
224 if (imsg_add(wbuf, id->hash, SHA1_DIGEST_LENGTH) == -1)
225 return got_error_from_errno("imsg_add REF");
226 if (imsg_add(wbuf, &namelen, sizeof(namelen)) == -1)
227 return got_error_from_errno("imsg_add REF");
228 if (imsg_add(wbuf, refname, namelen) == -1)
229 return got_error_from_errno("imsg_add REF");
231 imsg_close(ibuf, wbuf);
233 err = got_object_open(&obj, repo_write.repo, id);
236 if (obj->type == GOT_OBJ_TYPE_TAG)
237 err = send_peeled_tag_ref(ref, obj, ibuf);
240 got_object_close(obj);
245 static const struct got_error *
246 list_refs(struct imsg *imsg)
248 const struct got_error *err;
249 struct repo_write_client *client = &repo_write_client;
250 struct got_reflist_head refs;
251 struct got_reflist_entry *re;
253 struct gotd_imsg_reflist irefs;
259 client_fd = imsg_get_fd(imsg);
261 return got_error(GOT_ERR_PRIVSEP_NO_FD);
263 datalen = imsg->hdr.len - IMSG_HEADER_SIZE;
265 return got_error(GOT_ERR_PRIVSEP_LEN);
267 if (repo_write.refs_listed) {
268 return got_error_msg(GOT_ERR_CLIENT_ID,
269 "duplicate list-refs request");
271 repo_write.refs_listed = 1;
273 client->fd = client_fd;
274 client->nref_updates = 0;
275 client->nref_del = 0;
276 client->nref_new = 0;
277 client->nref_move = 0;
279 imsg_init(&ibuf, client_fd);
281 err = got_ref_list(&refs, repo_write.repo, "",
282 got_ref_cmp_by_name, NULL);
286 memset(&irefs, 0, sizeof(irefs));
287 TAILQ_FOREACH(re, &refs, entry) {
288 struct got_object_id *id;
291 if (got_ref_is_symbolic(re->ref))
296 /* Account for a peeled tag refs. */
297 err = got_ref_resolve(&id, repo_write.repo, re->ref);
300 err = got_object_get_type(&obj_type, repo_write.repo, id);
304 if (obj_type == GOT_OBJ_TYPE_TAG)
308 if (imsg_compose(&ibuf, GOTD_IMSG_REFLIST, PROC_REPO_WRITE,
309 repo_write.pid, -1, &irefs, sizeof(irefs)) == -1) {
310 err = got_error_from_errno("imsg_compose REFLIST");
314 TAILQ_FOREACH(re, &refs, entry) {
315 if (got_ref_is_symbolic(re->ref))
317 err = send_ref(re->ref, &ibuf);
322 err = gotd_imsg_flush(&ibuf);
324 got_ref_list_free(&refs);
329 static const struct got_error *
330 validate_namespace(const char *namespace)
332 size_t len = strlen(namespace);
334 if (len < 5 || strncmp("refs/", namespace, 5) != 0 ||
335 namespace[len -1] != '/') {
336 return got_error_fmt(GOT_ERR_BAD_REF_NAME,
337 "reference namespace '%s'", namespace);
343 static const struct got_error *
344 protect_ref_namespace(const char *refname, const char *namespace)
346 const struct got_error *err;
348 err = validate_namespace(namespace);
352 if (strncmp(namespace, refname, strlen(namespace)) == 0)
353 return got_error_fmt(GOT_ERR_REFS_PROTECTED, "%s", namespace);
358 static const struct got_error *
359 verify_object_type(struct got_object_id *id, int expected_obj_type,
360 struct got_pack *pack, struct got_packidx *packidx)
362 const struct got_error *err;
363 char hex[SHA1_DIGEST_STRING_LENGTH];
364 struct got_object *obj;
368 idx = got_packidx_get_object_idx(packidx, id);
370 got_object_id_hex(id, hex, sizeof(hex));
371 return got_error_fmt(GOT_ERR_BAD_PACKFILE,
372 "object %s is missing from pack file", hex);
375 err = got_object_open_from_packfile(&obj, id, pack, packidx,
376 idx, repo_write.repo);
380 if (obj->type != expected_obj_type) {
381 got_object_id_hex(id, hex, sizeof(hex));
382 got_object_type_label(&typestr, expected_obj_type);
383 err = got_error_fmt(GOT_ERR_OBJ_TYPE,
384 "%s is not pointing at a %s object", hex, typestr);
386 got_object_close(obj);
390 static const struct got_error *
391 protect_tag_namespace(const char *namespace, struct got_pack *pack,
392 struct got_packidx *packidx, struct gotd_ref_update *ref_update)
394 const struct got_error *err;
396 err = validate_namespace(namespace);
400 if (strncmp(namespace, got_ref_get_name(ref_update->ref),
401 strlen(namespace)) != 0)
404 if (!ref_update->ref_is_new)
405 return got_error_fmt(GOT_ERR_REFS_PROTECTED, "%s", namespace);
407 return verify_object_type(&ref_update->new_id, GOT_OBJ_TYPE_TAG,
411 static const struct got_error *
412 protect_require_yca(struct got_object_id *tip_id,
413 size_t max_commits_to_traverse, struct got_pack *pack,
414 struct got_packidx *packidx, struct got_reference *ref)
416 const struct got_error *err;
419 struct got_object_id *expected_yca_id = NULL;
420 struct got_object *obj = NULL;
421 struct got_commit_object *commit = NULL;
422 char hex[SHA1_DIGEST_STRING_LENGTH];
423 const struct got_object_id_queue *parent_ids;
424 struct got_object_id_queue ids;
425 struct got_object_qid *pid, *qid;
426 struct got_object_idset *traversed_set = NULL;
427 int found_yca = 0, obj_type;
431 err = got_ref_resolve(&expected_yca_id, repo_write.repo, ref);
435 err = got_object_get_type(&obj_type, repo_write.repo, expected_yca_id);
439 if (obj_type != GOT_OBJ_TYPE_COMMIT) {
440 got_object_id_hex(expected_yca_id, hex, sizeof(hex));
441 err = got_error_fmt(GOT_ERR_OBJ_TYPE,
442 "%s is not pointing at a commit object", hex);
446 traversed_set = got_object_idset_alloc();
447 if (traversed_set == NULL) {
448 err = got_error_from_errno("got_object_idset_alloc");
452 err = got_object_qid_alloc(&qid, tip_id);
455 STAILQ_INSERT_TAIL(&ids, qid, entry);
456 while (!STAILQ_EMPTY(&ids)) {
457 err = check_cancelled(NULL);
461 qid = STAILQ_FIRST(&ids);
462 if (got_object_id_cmp(&qid->id, expected_yca_id) == 0) {
467 if (got_object_idset_num_elements(traversed_set) >=
468 max_commits_to_traverse)
471 if (got_object_idset_contains(traversed_set, &qid->id)) {
472 STAILQ_REMOVE_HEAD(&ids, entry);
473 got_object_qid_free(qid);
477 err = got_object_idset_add(traversed_set, &qid->id, NULL);
481 err = got_object_open(&obj, repo_write.repo, &qid->id);
482 if (err && err->code != GOT_ERR_NO_OBJ)
486 err = got_object_commit_open(&commit, repo_write.repo,
493 idx = got_packidx_get_object_idx(packidx, &qid->id);
495 got_object_id_hex(&qid->id, hex, sizeof(hex));
496 err = got_error_fmt(GOT_ERR_BAD_PACKFILE,
497 "object %s is missing from pack file", hex);
501 err = got_object_open_from_packfile(&obj, &qid->id,
502 pack, packidx, idx, repo_write.repo);
506 if (obj->type != GOT_OBJ_TYPE_COMMIT) {
507 got_object_id_hex(&qid->id, hex, sizeof(hex));
508 err = got_error_fmt(GOT_ERR_OBJ_TYPE,
509 "%s is not pointing at a commit object",
514 err = got_packfile_extract_object_to_mem(&buf, &len,
519 err = got_object_parse_commit(&commit, buf, len,
528 got_object_close(obj);
531 STAILQ_REMOVE_HEAD(&ids, entry);
532 got_object_qid_free(qid);
535 if (got_object_commit_get_nparents(commit) == 0)
538 parent_ids = got_object_commit_get_parent_ids(commit);
539 STAILQ_FOREACH(pid, parent_ids, entry) {
540 err = check_cancelled(NULL);
543 err = got_object_qid_alloc(&qid, &pid->id);
546 STAILQ_INSERT_TAIL(&ids, qid, entry);
549 got_object_commit_close(commit);
554 err = got_error_fmt(GOT_ERR_REF_PROTECTED, "%s",
555 got_ref_get_name(ref));
558 got_object_idset_free(traversed_set);
559 got_object_id_queue_free(&ids);
562 got_object_close(obj);
564 got_object_commit_close(commit);
565 free(expected_yca_id);
569 static const struct got_error *
570 protect_branch_namespace(const char *namespace, struct got_pack *pack,
571 struct got_packidx *packidx, struct gotd_ref_update *ref_update)
573 const struct got_error *err;
575 err = validate_namespace(namespace);
579 if (strncmp(namespace, got_ref_get_name(ref_update->ref),
580 strlen(namespace)) != 0)
583 if (ref_update->ref_is_new) {
584 return verify_object_type(&ref_update->new_id,
585 GOT_OBJ_TYPE_COMMIT, pack, packidx);
588 return protect_require_yca(&ref_update->new_id,
589 be32toh(packidx->hdr.fanout_table[0xff]), pack, packidx,
593 static const struct got_error *
594 protect_branch(const char *refname, struct got_pack *pack,
595 struct got_packidx *packidx, struct gotd_ref_update *ref_update)
597 if (strcmp(refname, got_ref_get_name(ref_update->ref)) != 0)
600 /* Always allow new branches to be created. */
601 if (ref_update->ref_is_new) {
602 return verify_object_type(&ref_update->new_id,
603 GOT_OBJ_TYPE_COMMIT, pack, packidx);
606 return protect_require_yca(&ref_update->new_id,
607 be32toh(packidx->hdr.fanout_table[0xff]), pack, packidx,
611 static const struct got_error *
612 recv_ref_update(struct imsg *imsg)
614 static const char zero_id[SHA1_DIGEST_LENGTH];
615 const struct got_error *err = NULL;
616 struct repo_write_client *client = &repo_write_client;
617 struct gotd_imsg_ref_update iref;
619 char *refname = NULL;
620 struct got_reference *ref = NULL;
621 struct got_object_id *id = NULL;
623 struct gotd_ref_update *ref_update = NULL;
625 log_debug("ref-update received");
627 datalen = imsg->hdr.len - IMSG_HEADER_SIZE;
628 if (datalen < sizeof(iref))
629 return got_error(GOT_ERR_PRIVSEP_LEN);
630 memcpy(&iref, imsg->data, sizeof(iref));
631 if (datalen != sizeof(iref) + iref.name_len)
632 return got_error(GOT_ERR_PRIVSEP_LEN);
634 imsg_init(&ibuf, client->fd);
636 refname = strndup(imsg->data + sizeof(iref), iref.name_len);
638 return got_error_from_errno("strndup");
640 ref_update = calloc(1, sizeof(*ref_update));
641 if (ref_update == NULL) {
642 err = got_error_from_errno("malloc");
646 memcpy(ref_update->old_id.hash, iref.old_id, SHA1_DIGEST_LENGTH);
647 memcpy(ref_update->new_id.hash, iref.new_id, SHA1_DIGEST_LENGTH);
649 err = got_ref_open(&ref, repo_write.repo, refname, 0);
651 if (err->code != GOT_ERR_NOT_REF)
653 if (memcmp(ref_update->new_id.hash,
654 zero_id, sizeof(zero_id)) == 0) {
655 err = got_error_fmt(GOT_ERR_BAD_OBJ_ID,
659 err = got_ref_alloc(&ref, refname, &ref_update->new_id);
662 ref_update->ref_is_new = 1;
665 if (got_ref_is_symbolic(ref)) {
666 err = got_error_fmt(GOT_ERR_BAD_REF_TYPE,
667 "'%s' is a symbolic reference and cannot "
668 "be updated", got_ref_get_name(ref));
671 if (strncmp("refs/", got_ref_get_name(ref), 5) != 0) {
672 err = got_error_fmt(GOT_ERR_BAD_REF_NAME,
673 "%s: does not begin with 'refs/'",
674 got_ref_get_name(ref));
678 err = protect_ref_namespace(got_ref_get_name(ref), "refs/got/");
681 err = protect_ref_namespace(got_ref_get_name(ref), "refs/remotes/");
685 if (!ref_update->ref_is_new) {
687 * Ensure the client's idea of this update is still valid.
688 * At this point we can only return an error, to prevent
689 * the client from uploading a pack file which will likely
690 * have to be discarded.
692 err = got_ref_resolve(&id, repo_write.repo, ref);
696 if (got_object_id_cmp(id, &ref_update->old_id) != 0) {
697 err = got_error_fmt(GOT_ERR_REF_BUSY,
698 "%s has been modified by someone else "
699 "while transaction was in progress",
700 got_ref_get_name(ref));
705 gotd_imsg_send_ack(&ref_update->new_id, &ibuf, PROC_REPO_WRITE,
708 ref_update->ref = ref;
709 if (memcmp(ref_update->new_id.hash, zero_id, sizeof(zero_id)) == 0) {
710 ref_update->delete_ref = 1;
713 STAILQ_INSERT_HEAD(&client->ref_updates, ref_update, entry);
714 client->nref_updates++;
726 static const struct got_error *
727 pack_index_progress(void *arg, uint32_t nobj_total, uint32_t nobj_indexed,
728 uint32_t nobj_loose, uint32_t nobj_resolved)
730 int p_indexed = 0, p_resolved = 0;
731 int nobj_delta = nobj_total - nobj_loose;
734 p_indexed = (nobj_indexed * 100) / nobj_total;
737 p_resolved = (nobj_resolved * 100) / nobj_delta;
739 if (p_resolved > 0) {
740 log_debug("indexing %d objects %d%%; resolving %d deltas %d%%",
741 nobj_total, p_indexed, nobj_delta, p_resolved);
743 log_debug("indexing %d objects %d%%", nobj_total, p_indexed);
748 static const struct got_error *
749 read_more_pack_stream(int infd, BUF *buf, size_t minsize)
751 const struct got_error *err = NULL;
752 uint8_t readahead[65536];
755 err = got_poll_read_full(infd, &have,
756 readahead, sizeof(readahead), minsize);
760 err = buf_append(&newlen, buf, readahead, have);
766 static const struct got_error *
767 copy_object_type_and_size(uint8_t *type, uint64_t *size, int infd, int outfd,
768 off_t *outsize, BUF *buf, size_t *buf_pos, struct got_hash *ctx)
770 const struct got_error *err = NULL;
775 off_t obj_offset = *outsize;
778 /* We do not support size values which don't fit in 64 bit. */
780 return got_error_fmt(GOT_ERR_OBJ_TOO_LARGE,
781 "packfile offset %lld", (long long)obj_offset);
783 if (buf_len(buf) - *buf_pos < sizeof(sizebuf[0])) {
784 err = read_more_pack_stream(infd, buf,
790 sizebuf[i] = buf_getc(buf, *buf_pos);
791 *buf_pos += sizeof(sizebuf[i]);
794 t = (sizebuf[i] & GOT_PACK_OBJ_SIZE0_TYPE_MASK) >>
795 GOT_PACK_OBJ_SIZE0_TYPE_MASK_SHIFT;
796 s = (sizebuf[i] & GOT_PACK_OBJ_SIZE0_VAL_MASK);
798 size_t shift = 4 + 7 * (i - 1);
799 s |= ((sizebuf[i] & GOT_PACK_OBJ_SIZE_VAL_MASK) <<
803 } while (sizebuf[i - 1] & GOT_PACK_OBJ_SIZE_MORE);
805 err = got_pack_hwrite(outfd, sizebuf, i, ctx);
815 static const struct got_error *
816 copy_ref_delta(int infd, int outfd, off_t *outsize, BUF *buf, size_t *buf_pos,
817 struct got_hash *ctx)
819 const struct got_error *err = NULL;
820 size_t remain = buf_len(buf) - *buf_pos;
822 if (remain < SHA1_DIGEST_LENGTH) {
823 err = read_more_pack_stream(infd, buf,
824 SHA1_DIGEST_LENGTH - remain);
829 err = got_pack_hwrite(outfd, buf_get(buf) + *buf_pos,
830 SHA1_DIGEST_LENGTH, ctx);
834 *buf_pos += SHA1_DIGEST_LENGTH;
838 static const struct got_error *
839 copy_offset_delta(int infd, int outfd, off_t *outsize, BUF *buf, size_t *buf_pos,
840 struct got_hash *ctx)
842 const struct got_error *err = NULL;
846 off_t obj_offset = *outsize;
849 /* We do not support offset values which don't fit in 64 bit. */
851 return got_error_fmt(GOT_ERR_OBJ_TOO_LARGE,
852 "packfile offset %lld", (long long)obj_offset);
854 if (buf_len(buf) - *buf_pos < sizeof(offbuf[0])) {
855 err = read_more_pack_stream(infd, buf,
861 offbuf[i] = buf_getc(buf, *buf_pos);
862 *buf_pos += sizeof(offbuf[i]);
865 o = (offbuf[i] & GOT_PACK_OBJ_DELTA_OFF_VAL_MASK);
869 o += (offbuf[i] & GOT_PACK_OBJ_DELTA_OFF_VAL_MASK);
872 } while (offbuf[i - 1] & GOT_PACK_OBJ_DELTA_OFF_MORE);
874 if (o < sizeof(struct got_packfile_hdr) || o > *outsize)
875 return got_error(GOT_ERR_PACK_OFFSET);
877 err = got_pack_hwrite(outfd, offbuf, i, ctx);
885 static const struct got_error *
886 copy_zstream(int infd, int outfd, off_t *outsize, BUF *buf, size_t *buf_pos,
887 struct got_hash *ctx)
889 const struct got_error *err = NULL;
893 size_t consumed_total = 0;
894 off_t zstream_offset = *outsize;
896 memset(&z, 0, sizeof(z));
900 zret = inflateInit(&z);
903 return got_error_from_errno("inflateInit");
904 if (zret == Z_MEM_ERROR) {
906 return got_error_from_errno("inflateInit");
908 return got_error_msg(GOT_ERR_DECOMPRESSION,
909 "inflateInit failed");
912 while (zret != Z_STREAM_END) {
913 size_t last_total_in, consumed;
916 * Decompress into the void. Object data will be parsed
917 * later, when the pack file is indexed. For now, we just
918 * want to locate the end of the compressed stream.
920 while (zret != Z_STREAM_END && buf_len(buf) - *buf_pos > 0) {
921 last_total_in = z.total_in;
922 z.next_in = buf_get(buf) + *buf_pos;
923 z.avail_in = buf_len(buf) - *buf_pos;
924 z.next_out = voidbuf;
925 z.avail_out = sizeof(voidbuf);
927 zret = inflate(&z, Z_SYNC_FLUSH);
928 if (zret != Z_OK && zret != Z_BUF_ERROR &&
929 zret != Z_STREAM_END) {
930 err = got_error_fmt(GOT_ERR_DECOMPRESSION,
931 "packfile offset %lld",
932 (long long)zstream_offset);
935 consumed = z.total_in - last_total_in;
937 err = got_pack_hwrite(outfd, buf_get(buf) + *buf_pos,
942 err = buf_discard(buf, *buf_pos + consumed);
947 consumed_total += consumed;
950 if (zret != Z_STREAM_END) {
951 err = read_more_pack_stream(infd, buf, 1);
958 *outsize += consumed_total;
964 static const struct got_error *
965 validate_object_type(int obj_type)
968 case GOT_OBJ_TYPE_BLOB:
969 case GOT_OBJ_TYPE_COMMIT:
970 case GOT_OBJ_TYPE_TREE:
971 case GOT_OBJ_TYPE_TAG:
972 case GOT_OBJ_TYPE_REF_DELTA:
973 case GOT_OBJ_TYPE_OFFSET_DELTA:
979 return got_error(GOT_ERR_OBJ_TYPE);
982 static const struct got_error *
983 ensure_all_objects_exist_locally(struct gotd_ref_updates *ref_updates)
985 const struct got_error *err = NULL;
986 struct gotd_ref_update *ref_update;
987 struct got_object *obj;
989 STAILQ_FOREACH(ref_update, ref_updates, entry) {
990 err = got_object_open(&obj, repo_write.repo,
991 &ref_update->new_id);
994 got_object_close(obj);
1000 static const struct got_error *
1001 recv_packdata(off_t *outsize, uint32_t *nobj, uint8_t *sha1,
1002 int infd, int outfd)
1004 const struct got_error *err;
1005 struct repo_write_client *client = &repo_write_client;
1006 struct got_packfile_hdr hdr;
1009 struct got_hash ctx;
1010 uint8_t expected_sha1[SHA1_DIGEST_LENGTH];
1011 char hex[SHA1_DIGEST_STRING_LENGTH];
1013 size_t buf_pos = 0, remain;
1019 /* if only deleting references there's nothing to read */
1020 if (client->nref_updates == client->nref_del)
1023 got_hash_init(&ctx, GOT_HASH_SHA1);
1025 err = got_poll_read_full(infd, &have, &hdr, sizeof(hdr), sizeof(hdr));
1028 if (have != sizeof(hdr))
1029 return got_error_msg(GOT_ERR_BAD_PACKFILE, "short pack file");
1032 if (hdr.signature != htobe32(GOT_PACKFILE_SIGNATURE))
1033 return got_error_msg(GOT_ERR_BAD_PACKFILE,
1034 "bad packfile signature");
1035 if (hdr.version != htobe32(GOT_PACKFILE_VERSION))
1036 return got_error_msg(GOT_ERR_BAD_PACKFILE,
1037 "bad packfile version");
1039 *nobj = be32toh(hdr.nobjects);
1042 * Clients which are creating new references only
1043 * will send us an empty pack file.
1045 if (client->nref_updates > 0 &&
1046 client->nref_updates == client->nref_new)
1050 * Clients which only move existing refs will send us an empty
1051 * pack file. All referenced objects must exist locally.
1053 err = ensure_all_objects_exist_locally(&client->ref_updates);
1055 if (err->code != GOT_ERR_NO_OBJ)
1057 return got_error_msg(GOT_ERR_BAD_PACKFILE,
1058 "bad packfile with zero objects");
1061 client->nref_move = client->nref_updates;
1065 log_debug("expecting %d objects", *nobj);
1067 err = got_pack_hwrite(outfd, &hdr, sizeof(hdr), &ctx);
1071 err = buf_alloc(&buf, 65536);
1075 while (nhave != *nobj) {
1079 err = copy_object_type_and_size(&obj_type, &obj_size,
1080 infd, outfd, outsize, buf, &buf_pos, &ctx);
1084 err = validate_object_type(obj_type);
1088 if (obj_type == GOT_OBJ_TYPE_REF_DELTA) {
1089 err = copy_ref_delta(infd, outfd, outsize,
1090 buf, &buf_pos, &ctx);
1093 } else if (obj_type == GOT_OBJ_TYPE_OFFSET_DELTA) {
1094 err = copy_offset_delta(infd, outfd, outsize,
1095 buf, &buf_pos, &ctx);
1100 err = copy_zstream(infd, outfd, outsize, buf, &buf_pos, &ctx);
1107 log_debug("received %u objects", *nobj);
1109 got_hash_final(&ctx, expected_sha1);
1111 remain = buf_len(buf) - buf_pos;
1112 if (remain < SHA1_DIGEST_LENGTH) {
1113 err = read_more_pack_stream(infd, buf,
1114 SHA1_DIGEST_LENGTH - remain);
1119 got_sha1_digest_to_str(expected_sha1, hex, sizeof(hex));
1120 log_debug("expect SHA1: %s", hex);
1121 got_sha1_digest_to_str(buf_get(buf) + buf_pos, hex, sizeof(hex));
1122 log_debug("actual SHA1: %s", hex);
1124 if (memcmp(buf_get(buf) + buf_pos, expected_sha1,
1125 SHA1_DIGEST_LENGTH) != 0) {
1126 err = got_error(GOT_ERR_PACKFILE_CSUM);
1130 memcpy(sha1, expected_sha1, SHA1_DIGEST_LENGTH);
1132 w = write(outfd, expected_sha1, SHA1_DIGEST_LENGTH);
1134 err = got_error_from_errno("write");
1137 if (w != SHA1_DIGEST_LENGTH) {
1138 err = got_error(GOT_ERR_IO);
1142 *outsize += SHA1_DIGEST_LENGTH;
1144 if (fsync(outfd) == -1) {
1145 err = got_error_from_errno("fsync");
1148 if (lseek(outfd, 0L, SEEK_SET) == -1) {
1149 err = got_error_from_errno("lseek");
1157 static const struct got_error *
1158 report_pack_status(const struct got_error *unpack_err)
1160 const struct got_error *err = NULL;
1161 struct repo_write_client *client = &repo_write_client;
1162 struct gotd_imsg_packfile_status istatus;
1164 struct imsgbuf ibuf;
1165 const char *unpack_ok = "unpack ok\n";
1168 imsg_init(&ibuf, client->fd);
1171 istatus.reason_len = strlen(unpack_err->msg);
1173 istatus.reason_len = strlen(unpack_ok);
1175 len = sizeof(istatus) + istatus.reason_len;
1176 wbuf = imsg_create(&ibuf, GOTD_IMSG_PACKFILE_STATUS, PROC_REPO_WRITE,
1177 repo_write.pid, len);
1179 err = got_error_from_errno("imsg_create PACKFILE_STATUS");
1183 if (imsg_add(wbuf, &istatus, sizeof(istatus)) == -1) {
1184 err = got_error_from_errno("imsg_add PACKFILE_STATUS");
1188 if (imsg_add(wbuf, err ? err->msg : unpack_ok,
1189 istatus.reason_len) == -1) {
1190 err = got_error_from_errno("imsg_add PACKFILE_STATUS");
1194 imsg_close(&ibuf, wbuf);
1196 err = gotd_imsg_flush(&ibuf);
1202 static const struct got_error *
1203 recv_packfile(int *have_packfile, struct imsg *imsg)
1205 const struct got_error *err = NULL, *unpack_err;
1206 struct repo_write_client *client = &repo_write_client;
1207 struct gotd_imsg_recv_packfile ireq;
1208 struct got_object_id id;
1209 FILE *tempfiles[3] = { NULL, NULL, NULL };
1210 struct repo_tempfile {
1213 } repo_tempfiles[3] = { { - 1, - 1 }, { - 1, - 1 }, { - 1, - 1 }, };
1216 struct imsgbuf ibuf;
1217 struct got_ratelimit rl;
1218 struct got_pack *pack = NULL;
1219 off_t pack_filesize = 0;
1222 log_debug("packfile request received");
1225 got_ratelimit_init(&rl, 2, 0);
1227 datalen = imsg->hdr.len - IMSG_HEADER_SIZE;
1228 if (datalen != sizeof(ireq))
1229 return got_error(GOT_ERR_PRIVSEP_LEN);
1230 memcpy(&ireq, imsg->data, sizeof(ireq));
1232 if (client->pack_pipe == -1 || client->packidx_fd == -1)
1233 return got_error(GOT_ERR_PRIVSEP_NO_FD);
1235 imsg_init(&ibuf, client->fd);
1237 pack = &client->pack;
1238 memset(pack, 0, sizeof(*pack));
1239 pack->fd = imsg_get_fd(imsg);
1241 return got_error(GOT_ERR_PRIVSEP_NO_FD);
1243 err = got_delta_cache_alloc(&pack->delta_cache);
1247 for (i = 0; i < nitems(repo_tempfiles); i++) {
1248 struct repo_tempfile *t = &repo_tempfiles[i];
1249 err = got_repo_temp_fds_get(&t->fd, &t->idx, repo_write.repo);
1254 for (i = 0; i < nitems(tempfiles); i++) {
1258 fd = dup(repo_tempfiles[i].fd);
1260 err = got_error_from_errno("dup");
1263 f = fdopen(fd, "w+");
1265 err = got_error_from_errno("fdopen");
1272 err = gotd_imsg_flush(&ibuf);
1276 log_debug("receiving pack data");
1277 unpack_err = recv_packdata(&pack_filesize, &nobj,
1278 client->pack_sha1, client->pack_pipe, pack->fd);
1279 if (ireq.report_status) {
1280 err = report_pack_status(unpack_err);
1282 /* Git clients hang up after sending the pack file. */
1283 if (err->code == GOT_ERR_EOF)
1292 log_debug("pack data received");
1295 * Clients which are creating new references only will
1296 * send us an empty pack file.
1299 pack_filesize == sizeof(struct got_packfile_hdr) &&
1300 client->nref_updates > 0 &&
1301 client->nref_updates == client->nref_new)
1305 * Clients which are deleting references only will send
1309 client->nref_del > 0 &&
1310 client->nref_updates == client->nref_del)
1314 * Clients which only move existing refs will send us an empty
1315 * pack file. All referenced objects must exist locally.
1318 pack_filesize == sizeof(struct got_packfile_hdr) &&
1319 client->nref_move > 0 &&
1320 client->nref_updates == client->nref_move)
1323 pack->filesize = pack_filesize;
1326 memset(&id, 0, sizeof(id));
1327 memcpy(&id.hash, client->pack_sha1, SHA1_DIGEST_LENGTH);
1328 id.algo = GOT_HASH_SHA1;
1330 log_debug("begin indexing pack (%lld bytes in size)",
1331 (long long)pack->filesize);
1332 err = got_pack_index(pack, client->packidx_fd,
1333 tempfiles[0], tempfiles[1], tempfiles[2], &id,
1334 pack_index_progress, NULL, &rl);
1337 log_debug("done indexing pack");
1339 if (fsync(client->packidx_fd) == -1) {
1340 err = got_error_from_errno("fsync");
1343 if (lseek(client->packidx_fd, 0L, SEEK_SET) == -1)
1344 err = got_error_from_errno("lseek");
1346 if (close(client->pack_pipe) == -1 && err == NULL)
1347 err = got_error_from_errno("close");
1348 client->pack_pipe = -1;
1349 for (i = 0; i < nitems(repo_tempfiles); i++) {
1350 struct repo_tempfile *t = &repo_tempfiles[i];
1352 got_repo_temp_fds_put(t->idx, repo_write.repo);
1354 for (i = 0; i < nitems(tempfiles); i++) {
1355 if (tempfiles[i] && fclose(tempfiles[i]) == EOF && err == NULL)
1356 err = got_error_from_errno("fclose");
1359 got_pack_close(pack);
1364 static const struct got_error *
1365 verify_packfile(void)
1367 const struct got_error *err = NULL, *close_err;
1368 struct repo_write_client *client = &repo_write_client;
1369 struct gotd_ref_update *ref_update;
1370 struct got_packidx *packidx = NULL;
1372 char *id_str = NULL;
1373 struct got_object *obj = NULL;
1374 struct got_pathlist_entry *pe;
1375 char hex[SHA1_DIGEST_STRING_LENGTH];
1377 if (STAILQ_EMPTY(&client->ref_updates)) {
1378 return got_error_msg(GOT_ERR_BAD_REQUEST,
1379 "cannot verify pack file without any ref-updates");
1382 if (client->pack.fd == -1) {
1383 return got_error_msg(GOT_ERR_BAD_REQUEST,
1384 "invalid pack file handle during pack verification");
1386 if (client->packidx_fd == -1) {
1387 return got_error_msg(GOT_ERR_BAD_REQUEST,
1388 "invalid pack index handle during pack verification");
1391 if (fstat(client->packidx_fd, &sb) == -1)
1392 return got_error_from_errno("pack index fstat");
1394 packidx = malloc(sizeof(*packidx));
1395 memset(packidx, 0, sizeof(*packidx));
1396 packidx->fd = client->packidx_fd;
1397 client->packidx_fd = -1;
1398 packidx->len = sb.st_size;
1400 err = got_packidx_init_hdr(packidx, 1, client->pack.filesize);
1404 STAILQ_FOREACH(ref_update, &client->ref_updates, entry) {
1405 if (ref_update->delete_ref)
1408 TAILQ_FOREACH(pe, repo_write.protected_tag_namespaces, entry) {
1409 err = protect_tag_namespace(pe->path, &client->pack,
1410 packidx, ref_update);
1416 * Objects which already exist in our repository need
1417 * not be present in the pack file.
1419 err = got_object_open(&obj, repo_write.repo,
1420 &ref_update->new_id);
1421 if (err && err->code != GOT_ERR_NO_OBJ)
1425 got_object_close(obj);
1428 int idx = got_packidx_get_object_idx(packidx,
1429 &ref_update->new_id);
1431 got_object_id_hex(&ref_update->new_id,
1433 err = got_error_fmt(GOT_ERR_BAD_PACKFILE,
1434 "object %s is missing from pack file",
1440 TAILQ_FOREACH(pe, repo_write.protected_branch_namespaces,
1442 err = protect_branch_namespace(pe->path,
1443 &client->pack, packidx, ref_update);
1447 TAILQ_FOREACH(pe, repo_write.protected_branches, entry) {
1448 err = protect_branch(pe->path, &client->pack,
1449 packidx, ref_update);
1456 close_err = got_packidx_close(packidx);
1457 if (close_err && err == NULL)
1461 got_object_close(obj);
1465 static const struct got_error *
1466 protect_refs_from_deletion(void)
1468 const struct got_error *err = NULL;
1469 struct repo_write_client *client = &repo_write_client;
1470 struct gotd_ref_update *ref_update;
1471 struct got_pathlist_entry *pe;
1472 const char *refname;
1474 STAILQ_FOREACH(ref_update, &client->ref_updates, entry) {
1475 if (!ref_update->delete_ref)
1478 refname = got_ref_get_name(ref_update->ref);
1480 TAILQ_FOREACH(pe, repo_write.protected_tag_namespaces, entry) {
1481 err = protect_ref_namespace(refname, pe->path);
1486 TAILQ_FOREACH(pe, repo_write.protected_branch_namespaces,
1488 err = protect_ref_namespace(refname, pe->path);
1493 TAILQ_FOREACH(pe, repo_write.protected_branches, entry) {
1494 if (strcmp(refname, pe->path) == 0) {
1495 return got_error_fmt(GOT_ERR_REF_PROTECTED,
1504 static const struct got_error *
1505 install_packfile(struct gotd_imsgev *iev)
1507 struct repo_write_client *client = &repo_write_client;
1508 struct gotd_imsg_packfile_install inst;
1511 memset(&inst, 0, sizeof(inst));
1512 memcpy(inst.pack_sha1, client->pack_sha1, SHA1_DIGEST_LENGTH);
1514 ret = gotd_imsg_compose_event(iev, GOTD_IMSG_PACKFILE_INSTALL,
1515 PROC_REPO_WRITE, -1, &inst, sizeof(inst));
1517 return got_error_from_errno("imsg_compose PACKFILE_INSTALL");
1522 static const struct got_error *
1523 send_ref_updates_start(int nref_updates, struct gotd_imsgev *iev)
1525 struct gotd_imsg_ref_updates_start istart;
1528 memset(&istart, 0, sizeof(istart));
1529 istart.nref_updates = nref_updates;
1531 ret = gotd_imsg_compose_event(iev, GOTD_IMSG_REF_UPDATES_START,
1532 PROC_REPO_WRITE, -1, &istart, sizeof(istart));
1534 return got_error_from_errno("imsg_compose REF_UPDATES_START");
1540 static const struct got_error *
1541 send_ref_update(struct gotd_ref_update *ref_update, struct gotd_imsgev *iev)
1543 struct gotd_imsg_ref_update iref;
1544 const char *refname = got_ref_get_name(ref_update->ref);
1548 memset(&iref, 0, sizeof(iref));
1549 memcpy(iref.old_id, ref_update->old_id.hash, SHA1_DIGEST_LENGTH);
1550 memcpy(iref.new_id, ref_update->new_id.hash, SHA1_DIGEST_LENGTH);
1551 iref.ref_is_new = ref_update->ref_is_new;
1552 iref.delete_ref = ref_update->delete_ref;
1553 iref.name_len = strlen(refname);
1555 len = sizeof(iref) + iref.name_len;
1556 wbuf = imsg_create(&iev->ibuf, GOTD_IMSG_REF_UPDATE, PROC_REPO_WRITE,
1557 repo_write.pid, len);
1559 return got_error_from_errno("imsg_create REF_UPDATE");
1561 if (imsg_add(wbuf, &iref, sizeof(iref)) == -1)
1562 return got_error_from_errno("imsg_add REF_UPDATE");
1563 if (imsg_add(wbuf, refname, iref.name_len) == -1)
1564 return got_error_from_errno("imsg_add REF_UPDATE");
1566 imsg_close(&iev->ibuf, wbuf);
1568 gotd_imsg_event_add(iev);
1572 static const struct got_error *
1573 update_refs(struct gotd_imsgev *iev)
1575 const struct got_error *err = NULL;
1576 struct repo_write_client *client = &repo_write_client;
1577 struct gotd_ref_update *ref_update;
1579 err = send_ref_updates_start(client->nref_updates, iev);
1583 STAILQ_FOREACH(ref_update, &client->ref_updates, entry) {
1584 err = send_ref_update(ref_update, iev);
1592 static const struct got_error *
1593 receive_pack_pipe(struct imsg *imsg, struct gotd_imsgev *iev)
1595 struct repo_write_client *client = &repo_write_client;
1598 log_debug("receiving pack pipe descriptor");
1600 datalen = imsg->hdr.len - IMSG_HEADER_SIZE;
1602 return got_error(GOT_ERR_PRIVSEP_LEN);
1604 if (client->pack_pipe != -1)
1605 return got_error(GOT_ERR_PRIVSEP_MSG);
1607 client->pack_pipe = imsg_get_fd(imsg);
1608 if (client->pack_pipe == -1)
1609 return got_error(GOT_ERR_PRIVSEP_NO_FD);
1614 static const struct got_error *
1615 receive_pack_idx(struct imsg *imsg, struct gotd_imsgev *iev)
1617 struct repo_write_client *client = &repo_write_client;
1620 log_debug("receiving pack index output file");
1622 datalen = imsg->hdr.len - IMSG_HEADER_SIZE;
1624 return got_error(GOT_ERR_PRIVSEP_LEN);
1626 if (client->packidx_fd != -1)
1627 return got_error(GOT_ERR_PRIVSEP_MSG);
1629 client->packidx_fd = imsg_get_fd(imsg);
1630 if (client->packidx_fd == -1)
1631 return got_error(GOT_ERR_PRIVSEP_NO_FD);
1636 static const struct got_error *
1637 notify_removed_ref(const char *refname, struct got_object_id *id,
1638 struct gotd_imsgev *iev, int fd)
1640 const struct got_error *err;
1643 err = got_object_id_str(&id_str, id);
1647 dprintf(fd, "Removed %s: %s\n", refname, id_str);
1653 format_author(char *author)
1657 smallerthan = strchr(author, '<');
1658 if (smallerthan && smallerthan[1] != '\0')
1659 author = smallerthan + 1;
1660 author[strcspn(author, "@>")] = '\0';
1665 static const struct got_error *
1666 print_commit_oneline(struct got_commit_object *commit, struct got_object_id *id,
1667 struct got_repository *repo, int fd)
1669 const struct got_error *err = NULL;
1670 char *id_str = NULL, *logmsg0 = NULL;
1672 char *committer = NULL, *author = NULL;
1673 time_t committer_time;
1675 err = got_object_id_str(&id_str, id);
1679 committer_time = got_object_commit_get_committer_time(commit);
1681 err = got_object_commit_get_logmsg(&logmsg0, commit);
1686 while (isspace((unsigned char)s[0]))
1689 nl = strchr(s, '\n');
1694 if (strcmp(got_object_commit_get_author(commit),
1695 got_object_commit_get_committer(commit)) != 0) {
1696 author = strdup(got_object_commit_get_author(commit));
1697 if (author == NULL) {
1698 err = got_error_from_errno("strdup");
1701 dprintf(fd, "%lld %.7s %.8s %s\n", (long long)committer_time,
1702 id_str, format_author(author), s);
1704 committer = strdup(got_object_commit_get_committer(commit));
1705 dprintf(fd, "%lld %.7s %.8s %s\n", (long long)committer_time,
1706 id_str, format_author(committer), s);
1709 if (fsync(fd) == -1 && err == NULL)
1710 err = got_error_from_errno("fsync");
1719 static const struct got_error *
1720 print_diffstat(struct got_diffstat_cb_arg *dsa, int fd)
1722 struct got_pathlist_entry *pe;
1724 TAILQ_FOREACH(pe, dsa->paths, entry) {
1725 struct got_diff_changed_path *cp = pe->data;
1726 int pad = dsa->max_path_len - pe->path_len + 1;
1728 dprintf(fd, " %c %s%*c | %*d+ %*d-\n", cp->status,
1729 pe->path, pad, ' ', dsa->add_cols + 1, cp->add,
1730 dsa->rm_cols + 1, cp->rm);
1733 "\n%d file%s changed, %d insertion%s(+), %d deletion%s(-)\n\n",
1734 dsa->nfiles, dsa->nfiles > 1 ? "s" : "", dsa->ins,
1735 dsa->ins != 1 ? "s" : "", dsa->del, dsa->del != 1 ? "s" : "");
1740 static const struct got_error *
1741 print_commit(struct got_commit_object *commit, struct got_object_id *id,
1742 struct got_repository *repo, struct got_pathlist_head *changed_paths,
1743 struct got_diffstat_cb_arg *diffstat, int fd)
1745 const struct got_error *err = NULL;
1746 char *id_str, *logmsg0, *logmsg, *line;
1747 time_t committer_time;
1748 const char *author, *committer;
1750 err = got_object_id_str(&id_str, id);
1754 dprintf(fd, "commit %s\n", id_str);
1757 dprintf(fd, "from: %s\n", got_object_commit_get_author(commit));
1758 author = got_object_commit_get_author(commit);
1759 committer = got_object_commit_get_committer(commit);
1760 if (strcmp(author, committer) != 0)
1761 dprintf(fd, "via: %s\n", committer);
1762 committer_time = got_object_commit_get_committer_time(commit);
1763 dprintf(fd, "date: %lld\n", (long long)committer_time);
1764 if (got_object_commit_get_nparents(commit) > 1) {
1765 const struct got_object_id_queue *parent_ids;
1766 struct got_object_qid *qid;
1768 parent_ids = got_object_commit_get_parent_ids(commit);
1769 STAILQ_FOREACH(qid, parent_ids, entry) {
1770 err = got_object_id_str(&id_str, &qid->id);
1773 dprintf(fd, "parent %d: %s\n", n++, id_str);
1779 err = got_object_commit_get_logmsg(&logmsg0, commit);
1783 dprintf(fd, "messagelen: %zu\n", strlen(logmsg0));
1787 line = strsep(&logmsg, "\n");
1789 dprintf(fd, " %s\n", line);
1793 err = print_diffstat(diffstat, fd);
1797 if (fsync(fd) == -1 && err == NULL)
1798 err = got_error_from_errno("fsync");
1804 static const struct got_error *
1805 get_changed_paths(struct got_pathlist_head *paths,
1806 struct got_commit_object *commit, struct got_repository *repo,
1807 struct got_diffstat_cb_arg *dsa)
1809 const struct got_error *err = NULL;
1810 struct got_object_id *tree_id1 = NULL, *tree_id2 = NULL;
1811 struct got_tree_object *tree1 = NULL, *tree2 = NULL;
1812 struct got_object_qid *qid;
1813 got_diff_blob_cb cb = got_diff_tree_collect_changed_paths;
1814 FILE *f1 = repo_write.diff.f1, *f2 = repo_write.diff.f2;
1815 int fd1 = repo_write.diff.fd1, fd2 = repo_write.diff.fd2;
1818 cb = got_diff_tree_compute_diffstat;
1820 err = got_opentemp_truncate(f1);
1823 err = got_opentemp_truncate(f2);
1826 err = got_opentemp_truncatefd(fd1);
1829 err = got_opentemp_truncatefd(fd2);
1833 qid = STAILQ_FIRST(got_object_commit_get_parent_ids(commit));
1835 struct got_commit_object *pcommit;
1836 err = got_object_open_as_commit(&pcommit, repo,
1841 tree_id1 = got_object_id_dup(
1842 got_object_commit_get_tree_id(pcommit));
1843 if (tree_id1 == NULL) {
1844 got_object_commit_close(pcommit);
1845 return got_error_from_errno("got_object_id_dup");
1847 got_object_commit_close(pcommit);
1852 err = got_object_open_as_tree(&tree1, repo, tree_id1);
1857 tree_id2 = got_object_commit_get_tree_id(commit);
1858 err = got_object_open_as_tree(&tree2, repo, tree_id2);
1862 err = got_diff_tree(tree1, tree2, f1, f2, fd1, fd2, "", "", repo,
1863 cb, dsa ? (void *)dsa : paths, dsa ? 1 : 0);
1866 got_object_tree_close(tree1);
1868 got_object_tree_close(tree2);
1873 static const struct got_error *
1874 print_commits(struct got_object_id *root_id, struct got_object_id *end_id,
1875 struct got_repository *repo, int fd)
1877 const struct got_error *err;
1878 struct got_commit_graph *graph;
1879 struct got_object_id_queue reversed_commits;
1880 struct got_object_qid *qid;
1881 struct got_commit_object *commit = NULL;
1882 struct got_pathlist_head changed_paths;
1884 const int shortlog_threshold = 50;
1886 STAILQ_INIT(&reversed_commits);
1887 TAILQ_INIT(&changed_paths);
1889 /* XXX first-parent only for now */
1890 err = got_commit_graph_open(&graph, "/", 1);
1893 err = got_commit_graph_bfsort(graph, root_id, repo,
1894 check_cancelled, NULL);
1898 struct got_object_id id;
1900 err = got_commit_graph_iter_next(&id, graph, repo,
1901 check_cancelled, NULL);
1903 if (err->code == GOT_ERR_ITER_COMPLETED)
1908 err = got_object_open_as_commit(&commit, repo, &id);
1912 if (end_id && got_object_id_cmp(&id, end_id) == 0)
1915 err = got_object_qid_alloc(&qid, &id);
1919 STAILQ_INSERT_HEAD(&reversed_commits, qid, entry);
1921 got_object_commit_close(commit);
1927 STAILQ_FOREACH(qid, &reversed_commits, entry) {
1928 struct got_diffstat_cb_arg dsa = { 0, 0, 0, 0, 0, 0,
1929 &changed_paths, 0, 0, GOT_DIFF_ALGORITHM_PATIENCE };
1931 err = got_object_open_as_commit(&commit, repo, &qid->id);
1935 if (ncommits > shortlog_threshold) {
1936 err = print_commit_oneline(commit, &qid->id,
1941 err = get_changed_paths(&changed_paths, commit,
1945 err = print_commit(commit, &qid->id, repo,
1946 &changed_paths, &dsa, fd);
1948 got_object_commit_close(commit);
1950 got_pathlist_free(&changed_paths, GOT_PATHLIST_FREE_ALL);
1954 got_object_commit_close(commit);
1955 while (!STAILQ_EMPTY(&reversed_commits)) {
1956 qid = STAILQ_FIRST(&reversed_commits);
1957 STAILQ_REMOVE_HEAD(&reversed_commits, entry);
1958 got_object_qid_free(qid);
1960 got_pathlist_free(&changed_paths, GOT_PATHLIST_FREE_ALL);
1961 got_commit_graph_close(graph);
1965 static const struct got_error *
1966 print_tag(struct got_object_id *id,
1967 const char *refname, struct got_repository *repo, int fd)
1969 const struct got_error *err = NULL;
1970 struct got_tag_object *tag = NULL;
1971 const char *tagger = NULL;
1972 char *id_str = NULL, *tagmsg0 = NULL, *tagmsg, *line;
1975 err = got_object_open_as_tag(&tag, repo, id);
1979 tagger = got_object_tag_get_tagger(tag);
1980 tagger_time = got_object_tag_get_tagger_time(tag);
1981 err = got_object_id_str(&id_str,
1982 got_object_tag_get_object_id(tag));
1986 dprintf(fd, "tag %s\n", refname);
1987 dprintf(fd, "from: %s\n", tagger);
1988 dprintf(fd, "date: %lld\n", (long long)tagger_time);
1990 switch (got_object_tag_get_object_type(tag)) {
1991 case GOT_OBJ_TYPE_BLOB:
1992 dprintf(fd, "object: %s %s\n", GOT_OBJ_LABEL_BLOB, id_str);
1994 case GOT_OBJ_TYPE_TREE:
1995 dprintf(fd, "object: %s %s\n", GOT_OBJ_LABEL_TREE, id_str);
1997 case GOT_OBJ_TYPE_COMMIT:
1998 dprintf(fd, "object: %s %s\n", GOT_OBJ_LABEL_COMMIT, id_str);
2000 case GOT_OBJ_TYPE_TAG:
2001 dprintf(fd, "object: %s %s\n", GOT_OBJ_LABEL_TAG, id_str);
2007 tagmsg0 = strdup(got_object_tag_get_message(tag));
2008 if (tagmsg0 == NULL) {
2009 err = got_error_from_errno("strdup");
2013 dprintf(fd, "messagelen: %zu\n", strlen(tagmsg0));
2017 line = strsep(&tagmsg, "\n");
2019 dprintf(fd, " %s\n", line);
2024 got_object_tag_close(tag);
2029 static const struct got_error *
2030 notify_changed_ref(const char *refname, struct got_object_id *old_id,
2031 struct got_object_id *new_id, struct gotd_imsgev *iev, int fd)
2033 const struct got_error *err;
2034 int old_obj_type, new_obj_type;
2036 char *new_id_str = NULL;
2038 err = got_object_get_type(&old_obj_type, repo_write.repo, old_id);
2042 err = got_object_get_type(&new_obj_type, repo_write.repo, new_id);
2046 switch (new_obj_type) {
2047 case GOT_OBJ_TYPE_COMMIT:
2048 err = print_commits(new_id,
2049 old_obj_type == GOT_OBJ_TYPE_COMMIT ? old_id : NULL,
2050 repo_write.repo, fd);
2052 case GOT_OBJ_TYPE_TAG:
2053 err = print_tag(new_id, refname, repo_write.repo, fd);
2056 err = got_object_type_label(&label, new_obj_type);
2059 err = got_object_id_str(&new_id_str, new_id);
2062 dprintf(fd, "%s: %s object %s\n", refname, label, new_id_str);
2070 static const struct got_error *
2071 notify_created_ref(const char *refname, struct got_object_id *id,
2072 struct gotd_imsgev *iev, int fd)
2074 const struct got_error *err;
2077 err = got_object_get_type(&obj_type, repo_write.repo, id);
2081 if (obj_type == GOT_OBJ_TYPE_TAG)
2082 return print_tag(id, refname, repo_write.repo, fd);
2084 return print_commits(id, NULL, repo_write.repo, fd);
2087 static const struct got_error *
2088 render_notification(struct imsg *imsg, struct gotd_imsgev *iev)
2090 const struct got_error *err = NULL;
2091 struct gotd_imsg_notification_content ireq;
2092 size_t datalen, len;
2093 char *refname = NULL;
2097 fd = imsg_get_fd(imsg);
2099 return got_error(GOT_ERR_PRIVSEP_NO_FD);
2101 datalen = imsg->hdr.len - IMSG_HEADER_SIZE;
2102 if (datalen < sizeof(ireq)) {
2103 err = got_error(GOT_ERR_PRIVSEP_LEN);
2107 memcpy(&ireq, imsg->data, sizeof(ireq));
2109 if (datalen != sizeof(ireq) + ireq.refname_len) {
2110 err = got_error(GOT_ERR_PRIVSEP_LEN);
2114 refname = strndup(imsg->data + sizeof(ireq), ireq.refname_len);
2115 if (refname == NULL) {
2116 err = got_error_from_errno("strndup");
2120 switch (ireq.action) {
2121 case GOTD_NOTIF_ACTION_CREATED:
2122 err = notify_created_ref(refname, &ireq.new_id, iev, fd);
2124 case GOTD_NOTIF_ACTION_REMOVED:
2125 err = notify_removed_ref(refname, &ireq.old_id, iev, fd);
2127 case GOTD_NOTIF_ACTION_CHANGED:
2128 err = notify_changed_ref(refname, &ireq.old_id, &ireq.new_id,
2135 if (fsync(fd) == -1) {
2136 err = got_error_from_errno("fsync");
2140 len = sizeof(ireq) + ireq.refname_len;
2141 wbuf = imsg_create(&iev->ibuf, GOTD_IMSG_NOTIFY, PROC_REPO_WRITE,
2142 repo_write.pid, len);
2144 err = got_error_from_errno("imsg_create REF");
2147 if (imsg_add(wbuf, &ireq, sizeof(ireq)) == -1) {
2148 err = got_error_from_errno("imsg_add NOTIFY");
2151 if (imsg_add(wbuf, refname, ireq.refname_len) == -1) {
2152 err = got_error_from_errno("imsg_add NOTIFY");
2156 imsg_close(&iev->ibuf, wbuf);
2157 gotd_imsg_event_add(iev);
2160 if (fd != -1 && close(fd) == -1 && err == NULL)
2161 err = got_error_from_errno("close");
2166 repo_write_dispatch_session(int fd, short event, void *arg)
2168 const struct got_error *err = NULL;
2169 struct gotd_imsgev *iev = arg;
2170 struct imsgbuf *ibuf = &iev->ibuf;
2172 struct repo_write_client *client = &repo_write_client;
2174 int shut = 0, have_packfile = 0;
2176 if (event & EV_READ) {
2177 if ((n = imsg_read(ibuf)) == -1 && errno != EAGAIN)
2178 fatal("imsg_read error");
2179 if (n == 0) /* Connection closed. */
2183 if (event & EV_WRITE) {
2184 n = msgbuf_write(&ibuf->w);
2185 if (n == -1 && errno != EAGAIN)
2186 fatal("msgbuf_write");
2187 if (n == 0) /* Connection closed. */
2192 if ((n = imsg_get(ibuf, &imsg)) == -1)
2193 fatal("%s: imsg_get error", __func__);
2194 if (n == 0) /* No more messages. */
2197 if (imsg.hdr.type != GOTD_IMSG_LIST_REFS_INTERNAL &&
2198 !repo_write.refs_listed) {
2199 err = got_error(GOT_ERR_PRIVSEP_MSG);
2203 switch (imsg.hdr.type) {
2204 case GOTD_IMSG_LIST_REFS_INTERNAL:
2205 err = list_refs(&imsg);
2207 log_warnx("ls-refs: %s", err->msg);
2209 case GOTD_IMSG_REF_UPDATE:
2210 err = recv_ref_update(&imsg);
2212 log_warnx("ref-update: %s", err->msg);
2214 case GOTD_IMSG_PACKFILE_PIPE:
2215 err = receive_pack_pipe(&imsg, iev);
2217 log_warnx("receiving pack pipe: %s", err->msg);
2221 case GOTD_IMSG_PACKIDX_FILE:
2222 err = receive_pack_idx(&imsg, iev);
2224 log_warnx("receiving pack index: %s",
2229 case GOTD_IMSG_RECV_PACKFILE:
2230 err = protect_refs_from_deletion();
2233 err = recv_packfile(&have_packfile, &imsg);
2235 log_warnx("receive packfile: %s", err->msg);
2238 if (have_packfile) {
2239 err = verify_packfile();
2241 log_warnx("verify packfile: %s",
2245 err = install_packfile(iev);
2247 log_warnx("install packfile: %s",
2252 * Ensure we re-read the pack index list
2255 repo_write.repo->pack_path_mtime.tv_sec = 0;
2256 repo_write.repo->pack_path_mtime.tv_nsec = 0;
2258 err = update_refs(iev);
2260 log_warnx("update refs: %s", err->msg);
2263 case GOTD_IMSG_NOTIFY:
2264 err = render_notification(&imsg, iev);
2266 log_warnx("render notification: %s", err->msg);
2271 log_debug("unexpected imsg %d", imsg.hdr.type);
2278 if (!shut && check_cancelled(NULL) == NULL) {
2280 gotd_imsg_send_error_event(iev, PROC_REPO_WRITE,
2281 client->id, err) == -1) {
2282 log_warnx("could not send error to parent: %s",
2285 gotd_imsg_event_add(iev);
2287 /* This pipe is dead. Remove its event handler */
2288 event_del(&iev->ev);
2289 event_loopexit(NULL);
2293 static const struct got_error *
2294 recv_connect(struct imsg *imsg)
2296 struct gotd_imsgev *iev = &repo_write.session_iev;
2299 datalen = imsg->hdr.len - IMSG_HEADER_SIZE;
2301 return got_error(GOT_ERR_PRIVSEP_LEN);
2303 if (repo_write.session_fd != -1)
2304 return got_error(GOT_ERR_PRIVSEP_MSG);
2306 repo_write.session_fd = imsg_get_fd(imsg);
2307 if (repo_write.session_fd == -1)
2308 return got_error(GOT_ERR_PRIVSEP_NO_FD);
2310 imsg_init(&iev->ibuf, repo_write.session_fd);
2311 iev->handler = repo_write_dispatch_session;
2312 iev->events = EV_READ;
2313 iev->handler_arg = NULL;
2314 event_set(&iev->ev, iev->ibuf.fd, EV_READ,
2315 repo_write_dispatch_session, iev);
2316 gotd_imsg_event_add(iev);
2322 repo_write_dispatch(int fd, short event, void *arg)
2324 const struct got_error *err = NULL;
2325 struct gotd_imsgev *iev = arg;
2326 struct imsgbuf *ibuf = &iev->ibuf;
2330 struct repo_write_client *client = &repo_write_client;
2332 if (event & EV_READ) {
2333 if ((n = imsg_read(ibuf)) == -1 && errno != EAGAIN)
2334 fatal("imsg_read error");
2335 if (n == 0) /* Connection closed. */
2339 if (event & EV_WRITE) {
2340 n = msgbuf_write(&ibuf->w);
2341 if (n == -1 && errno != EAGAIN)
2342 fatal("msgbuf_write");
2343 if (n == 0) /* Connection closed. */
2347 while (err == NULL && check_cancelled(NULL) == NULL) {
2348 if ((n = imsg_get(ibuf, &imsg)) == -1)
2349 fatal("%s: imsg_get", __func__);
2350 if (n == 0) /* No more messages. */
2353 switch (imsg.hdr.type) {
2354 case GOTD_IMSG_CONNECT_REPO_CHILD:
2355 err = recv_connect(&imsg);
2358 log_debug("unexpected imsg %d", imsg.hdr.type);
2365 if (!shut && check_cancelled(NULL) == NULL) {
2367 gotd_imsg_send_error_event(iev, PROC_REPO_WRITE,
2368 client->id, err) == -1) {
2369 log_warnx("could not send error to parent: %s",
2372 gotd_imsg_event_add(iev);
2374 /* This pipe is dead. Remove its event handler */
2375 event_del(&iev->ev);
2376 event_loopexit(NULL);
2381 repo_write_main(const char *title, const char *repo_path,
2382 int *pack_fds, int *temp_fds,
2383 FILE *diff_f1, FILE *diff_f2, int diff_fd1, int diff_fd2,
2384 struct got_pathlist_head *protected_tag_namespaces,
2385 struct got_pathlist_head *protected_branch_namespaces,
2386 struct got_pathlist_head *protected_branches)
2388 const struct got_error *err = NULL;
2389 struct repo_write_client *client = &repo_write_client;
2390 struct gotd_imsgev iev;
2393 client->pack_pipe = -1;
2394 client->packidx_fd = -1;
2395 client->pack.fd = -1;
2397 repo_write.title = title;
2398 repo_write.pid = getpid();
2399 repo_write.pack_fds = pack_fds;
2400 repo_write.temp_fds = temp_fds;
2401 repo_write.session_fd = -1;
2402 repo_write.session_iev.ibuf.fd = -1;
2403 repo_write.protected_tag_namespaces = protected_tag_namespaces;
2404 repo_write.protected_branch_namespaces = protected_branch_namespaces;
2405 repo_write.protected_branches = protected_branches;
2406 repo_write.diff.f1 = diff_f1;
2407 repo_write.diff.f2 = diff_f2;
2408 repo_write.diff.fd1 = diff_fd1;
2409 repo_write.diff.fd2 = diff_fd2;
2411 STAILQ_INIT(&repo_write_client.ref_updates);
2413 err = got_repo_open(&repo_write.repo, repo_path, NULL, pack_fds);
2416 if (!got_repo_is_bare(repo_write.repo)) {
2417 err = got_error_msg(GOT_ERR_NOT_GIT_REPO,
2418 "bare git repository required");
2421 if (got_repo_get_object_format(repo_write.repo) != GOT_HASH_SHA1) {
2422 err = got_error_msg(GOT_ERR_NOT_IMPL,
2423 "sha256 object IDs unsupported in network protocol");
2427 got_repo_temp_fds_set(repo_write.repo, temp_fds);
2429 signal(SIGINT, catch_sigint);
2430 signal(SIGTERM, catch_sigterm);
2431 signal(SIGPIPE, SIG_IGN);
2432 signal(SIGHUP, SIG_IGN);
2434 imsg_init(&iev.ibuf, GOTD_FILENO_MSG_PIPE);
2435 iev.handler = repo_write_dispatch;
2436 iev.events = EV_READ;
2437 iev.handler_arg = NULL;
2438 event_set(&iev.ev, iev.ibuf.fd, EV_READ, repo_write_dispatch, &iev);
2439 if (gotd_imsg_compose_event(&iev, GOTD_IMSG_REPO_CHILD_READY,
2440 PROC_REPO_WRITE, -1, NULL, 0) == -1) {
2441 err = got_error_from_errno("imsg compose REPO_CHILD_READY");
2447 if (fclose(diff_f1) == EOF && err == NULL)
2448 err = got_error_from_errno("fclose");
2449 if (fclose(diff_f2) == EOF && err == NULL)
2450 err = got_error_from_errno("fclose");
2451 if (close(diff_fd1) == -1 && err == NULL)
2452 err = got_error_from_errno("close");
2453 if (close(diff_fd2) == -1 && err == NULL)
2454 err = got_error_from_errno("close");
2456 log_warnx("%s: %s", title, err->msg);
2457 repo_write_shutdown();
2461 repo_write_shutdown(void)
2463 struct repo_write_client *client = &repo_write_client;
2464 struct gotd_ref_update *ref_update;
2466 log_debug("%s: shutting down", repo_write.title);
2468 while (!STAILQ_EMPTY(&client->ref_updates)) {
2469 ref_update = STAILQ_FIRST(&client->ref_updates);
2470 STAILQ_REMOVE_HEAD(&client->ref_updates, entry);
2471 got_ref_close(ref_update->ref);
2475 got_pack_close(&client->pack);
2476 if (client->fd != -1)
2478 if (client->pack_pipe != -1)
2479 close(client->pack_pipe);
2480 if (client->packidx_fd != -1)
2481 close(client->packidx_fd);
2483 if (repo_write.repo)
2484 got_repo_close(repo_write.repo);
2485 got_repo_pack_fds_close(repo_write.pack_fds);
2486 got_repo_temp_fds_close(repo_write.temp_fds);
2487 if (repo_write.session_fd != -1)
2488 close(repo_write.session_fd);