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>
18 #include <sys/types.h>
33 #include "got_error.h"
34 #include "got_cancel.h"
35 #include "got_object.h"
36 #include "got_repository.h"
37 #include "got_reference.h"
38 #include "got_repository_admin.h"
40 #include "got_lib_delta.h"
41 #include "got_lib_object.h"
42 #include "got_lib_object_idset.h"
43 #include "got_lib_sha1.h"
44 #include "got_lib_pack.h"
45 #include "got_lib_ratelimit.h"
46 #include "got_lib_pack_create.h"
47 #include "got_lib_poll.h"
51 #include "repo_read.h"
54 #define nitems(_a) (sizeof((_a)) / sizeof((_a)[0]))
57 static struct repo_read {
60 struct got_repository *repo;
64 struct gotd_imsgev session_iev;
67 static struct repo_read_client {
73 struct gotd_object_id_array want_ids;
74 struct gotd_object_id_array have_ids;
77 static volatile sig_atomic_t sigint_received;
78 static volatile sig_atomic_t sigterm_received;
81 catch_sigint(int signo)
87 catch_sigterm(int signo)
92 static const struct got_error *
93 check_cancelled(void *arg)
95 if (sigint_received || sigterm_received)
96 return got_error(GOT_ERR_CANCELLED);
101 static const struct got_error *
102 send_symref(struct got_reference *symref, struct got_object_id *target_id,
103 struct imsgbuf *ibuf)
105 const struct got_error *err = NULL;
106 struct gotd_imsg_symref isymref;
107 const char *refname = got_ref_get_name(symref);
108 const char *target = got_ref_get_symref_target(symref);
112 memset(&isymref, 0, sizeof(isymref));
113 isymref.name_len = strlen(refname);
114 isymref.target_len = strlen(target);
115 memcpy(isymref.target_id, target_id->sha1, sizeof(isymref.target_id));
117 len = sizeof(isymref) + isymref.name_len + isymref.target_len;
118 if (len > MAX_IMSGSIZE - IMSG_HEADER_SIZE) {
119 err = got_error(GOT_ERR_NO_SPACE);
123 wbuf = imsg_create(ibuf, GOTD_IMSG_SYMREF, 0, 0, len);
125 err = got_error_from_errno("imsg_create SYMREF");
129 if (imsg_add(wbuf, &isymref, sizeof(isymref)) == -1) {
130 err = got_error_from_errno("imsg_add SYMREF");
133 if (imsg_add(wbuf, refname, isymref.name_len) == -1) {
134 err = got_error_from_errno("imsg_add SYMREF");
137 if (imsg_add(wbuf, target, isymref.target_len) == -1) {
138 err = got_error_from_errno("imsg_add SYMREF");
143 imsg_close(ibuf, wbuf);
149 static const struct got_error *
150 send_peeled_tag_ref(struct got_reference *ref, struct got_object *obj,
151 struct imsgbuf *ibuf)
153 const struct got_error *err = NULL;
154 struct got_tag_object *tag;
156 char *peeled_refname = NULL;
157 struct got_object_id *id;
160 err = got_object_tag_open(&tag, repo_read.repo, obj);
164 if (asprintf(&peeled_refname, "%s^{}", got_ref_get_name(ref)) == -1) {
165 err = got_error_from_errno("asprintf");
169 id = got_object_tag_get_object_id(tag);
170 namelen = strlen(peeled_refname);
172 len = sizeof(struct gotd_imsg_ref) + namelen;
173 if (len > MAX_IMSGSIZE - IMSG_HEADER_SIZE) {
174 err = got_error(GOT_ERR_NO_SPACE);
178 wbuf = imsg_create(ibuf, GOTD_IMSG_REF, PROC_REPO_READ,
181 err = got_error_from_errno("imsg_create MREF");
185 /* Keep in sync with struct gotd_imsg_ref definition. */
186 if (imsg_add(wbuf, id->sha1, SHA1_DIGEST_LENGTH) == -1) {
187 err = got_error_from_errno("imsg_add REF");
190 if (imsg_add(wbuf, &namelen, sizeof(namelen)) == -1) {
191 err = got_error_from_errno("imsg_add REF");
194 if (imsg_add(wbuf, peeled_refname, namelen) == -1) {
195 err = got_error_from_errno("imsg_add REF");
200 imsg_close(ibuf, wbuf);
202 got_object_tag_close(tag);
206 static const struct got_error *
207 send_ref(struct got_reference *ref, struct imsgbuf *ibuf)
209 const struct got_error *err;
210 const char *refname = got_ref_get_name(ref);
212 struct got_object_id *id = NULL;
213 struct got_object *obj = NULL;
217 namelen = strlen(refname);
219 len = sizeof(struct gotd_imsg_ref) + namelen;
220 if (len > MAX_IMSGSIZE - IMSG_HEADER_SIZE)
221 return got_error(GOT_ERR_NO_SPACE);
223 err = got_ref_resolve(&id, repo_read.repo, ref);
227 wbuf = imsg_create(ibuf, GOTD_IMSG_REF, PROC_REPO_READ,
230 err = got_error_from_errno("imsg_create REF");
234 /* Keep in sync with struct gotd_imsg_ref definition. */
235 if (imsg_add(wbuf, id->sha1, SHA1_DIGEST_LENGTH) == -1)
236 return got_error_from_errno("imsg_add REF");
237 if (imsg_add(wbuf, &namelen, sizeof(namelen)) == -1)
238 return got_error_from_errno("imsg_add REF");
239 if (imsg_add(wbuf, refname, namelen) == -1)
240 return got_error_from_errno("imsg_add REF");
243 imsg_close(ibuf, wbuf);
245 err = got_object_open(&obj, repo_read.repo, id);
248 if (obj->type == GOT_OBJ_TYPE_TAG)
249 err = send_peeled_tag_ref(ref, obj, ibuf);
252 got_object_close(obj);
257 static const struct got_error *
258 list_refs(struct imsg *imsg)
260 const struct got_error *err;
261 struct repo_read_client *client = &repo_read_client;
262 struct got_reflist_head refs;
263 struct got_reflist_entry *re;
264 struct gotd_imsg_list_refs_internal ireq;
266 struct gotd_imsg_reflist irefs;
268 int client_fd = imsg->fd;
269 struct got_object_id *head_target_id = NULL;
274 return got_error(GOT_ERR_PRIVSEP_NO_FD);
276 datalen = imsg->hdr.len - IMSG_HEADER_SIZE;
277 if (datalen != sizeof(ireq))
278 return got_error(GOT_ERR_PRIVSEP_LEN);
279 memcpy(&ireq, imsg->data, sizeof(ireq));
281 if (ireq.client_id == 0)
282 return got_error(GOT_ERR_CLIENT_ID);
283 if (client->id != 0) {
284 return got_error_msg(GOT_ERR_CLIENT_ID,
285 "duplicate list-refs request");
287 client->id = ireq.client_id;
288 client->fd = client_fd;
289 client->delta_cache_fd = -1;
290 client->pack_pipe = -1;
292 imsg_init(&ibuf, client_fd);
294 err = got_ref_list(&refs, repo_read.repo, "",
295 got_ref_cmp_by_name, NULL);
299 memset(&irefs, 0, sizeof(irefs));
300 TAILQ_FOREACH(re, &refs, entry) {
301 struct got_object_id *id;
304 if (got_ref_is_symbolic(re->ref)) {
305 const char *refname = got_ref_get_name(re->ref);
306 if (strcmp(refname, GOT_REF_HEAD) != 0)
308 err = got_ref_resolve(&head_target_id, repo_read.repo,
311 if (err->code != GOT_ERR_NOT_REF)
314 * HEAD points to a non-existent branch.
315 * Do not advertise it.
316 * Matches git-daemon's behaviour.
318 head_target_id = NULL;
327 /* Account for a peeled tag refs. */
328 err = got_ref_resolve(&id, repo_read.repo, re->ref);
331 err = got_object_get_type(&obj_type, repo_read.repo, id);
335 if (obj_type == GOT_OBJ_TYPE_TAG)
339 if (imsg_compose(&ibuf, GOTD_IMSG_REFLIST, PROC_REPO_READ,
340 repo_read.pid, -1, &irefs, sizeof(irefs)) == -1) {
341 err = got_error_from_errno("imsg_compose REFLIST");
346 * Send the HEAD symref first. In Git-protocol versions < 2
347 * the HEAD symref must be announced on the initial line of
348 * the server's ref advertisement.
349 * For now, we do not advertise symrefs other than HEAD.
351 TAILQ_FOREACH(re, &refs, entry) {
352 if (!got_ref_is_symbolic(re->ref) ||
353 strcmp(got_ref_get_name(re->ref), GOT_REF_HEAD) != 0 ||
354 head_target_id == NULL)
356 err = send_symref(re->ref, head_target_id, &ibuf);
361 TAILQ_FOREACH(re, &refs, entry) {
362 if (got_ref_is_symbolic(re->ref))
364 err = send_ref(re->ref, &ibuf);
369 err = gotd_imsg_flush(&ibuf);
371 got_ref_list_free(&refs);
376 static const struct got_error *
377 record_object_id(struct gotd_object_id_array *array, struct got_object_id *id)
379 const size_t alloc_chunksz = 256;
381 if (array->ids == NULL) {
382 array->ids = reallocarray(NULL, alloc_chunksz,
383 sizeof(*array->ids));
384 if (array->ids == NULL)
385 return got_error_from_errno("reallocarray");
386 array->nalloc = alloc_chunksz;
388 } else if (array->nalloc <= array->nids) {
389 struct got_object_id **new;
390 new = recallocarray(array->ids, array->nalloc,
391 array->nalloc + alloc_chunksz, sizeof(*new));
393 return got_error_from_errno("recallocarray");
395 array->nalloc += alloc_chunksz;
398 array->ids[array->nids] = got_object_id_dup(id);
399 if (array->ids[array->nids] == NULL)
400 return got_error_from_errno("got_object_id_dup");
406 free_object_ids(struct gotd_object_id_array *array)
410 for (i = 0; i < array->nids; i++)
419 static const struct got_error *
420 recv_want(struct imsg *imsg)
422 const struct got_error *err;
423 struct repo_read_client *client = &repo_read_client;
424 struct gotd_imsg_want iwant;
426 char hex[SHA1_DIGEST_STRING_LENGTH];
427 struct got_object_id id;
431 datalen = imsg->hdr.len - IMSG_HEADER_SIZE;
432 if (datalen != sizeof(iwant))
433 return got_error(GOT_ERR_PRIVSEP_LEN);
434 memcpy(&iwant, imsg->data, sizeof(iwant));
436 memset(&id, 0, sizeof(id));
437 memcpy(id.sha1, iwant.object_id, SHA1_DIGEST_LENGTH);
439 if (log_getverbose() > 0 &&
440 got_sha1_digest_to_str(id.sha1, hex, sizeof(hex)))
441 log_debug("client wants %s", hex);
443 imsg_init(&ibuf, client->fd);
445 err = got_object_get_type(&obj_type, repo_read.repo, &id);
449 if (obj_type != GOT_OBJ_TYPE_COMMIT &&
450 obj_type != GOT_OBJ_TYPE_TAG)
451 return got_error(GOT_ERR_OBJ_TYPE);
453 err = record_object_id(&client->want_ids, &id);
457 gotd_imsg_send_ack(&id, &ibuf, PROC_REPO_READ, repo_read.pid);
462 static const struct got_error *
463 recv_have(struct imsg *imsg)
465 const struct got_error *err;
466 struct repo_read_client *client = &repo_read_client;
467 struct gotd_imsg_have ihave;
469 char hex[SHA1_DIGEST_STRING_LENGTH];
470 struct got_object_id id;
474 datalen = imsg->hdr.len - IMSG_HEADER_SIZE;
475 if (datalen != sizeof(ihave))
476 return got_error(GOT_ERR_PRIVSEP_LEN);
477 memcpy(&ihave, imsg->data, sizeof(ihave));
479 memset(&id, 0, sizeof(id));
480 memcpy(id.sha1, ihave.object_id, SHA1_DIGEST_LENGTH);
482 if (log_getverbose() > 0 &&
483 got_sha1_digest_to_str(id.sha1, hex, sizeof(hex)))
484 log_debug("client has %s", hex);
486 imsg_init(&ibuf, client->fd);
488 err = got_object_get_type(&obj_type, repo_read.repo, &id);
490 if (err->code == GOT_ERR_NO_OBJ) {
491 gotd_imsg_send_nak(&id, &ibuf,
492 PROC_REPO_READ, repo_read.pid);
498 if (obj_type != GOT_OBJ_TYPE_COMMIT &&
499 obj_type != GOT_OBJ_TYPE_TAG) {
500 gotd_imsg_send_nak(&id, &ibuf, PROC_REPO_READ, repo_read.pid);
501 err = got_error(GOT_ERR_OBJ_TYPE);
505 err = record_object_id(&client->have_ids, &id);
509 gotd_imsg_send_ack(&id, &ibuf, PROC_REPO_READ, repo_read.pid);
515 struct repo_read_pack_progress_arg {
517 struct imsgbuf *ibuf;
521 static const struct got_error *
522 pack_progress(void *arg, int ncolored, int nfound, int ntrees,
523 off_t packfile_size, int ncommits, int nobj_total, int nobj_deltify,
526 struct repo_read_pack_progress_arg *a = arg;
527 struct gotd_imsg_packfile_progress iprog;
530 if (!a->report_progress)
532 if (packfile_size > 0 && a->sent_ready)
535 memset(&iprog, 0, sizeof(iprog));
536 iprog.ncolored = ncolored;
537 iprog.nfound = nfound;
538 iprog.ntrees = ntrees;
539 iprog.packfile_size = packfile_size;
540 iprog.ncommits = ncommits;
541 iprog.nobj_total = nobj_total;
542 iprog.nobj_deltify = nobj_deltify;
543 iprog.nobj_written = nobj_written;
545 /* Using synchronous writes since we are blocking the event loop. */
546 if (packfile_size == 0) {
547 ret = imsg_compose(a->ibuf, GOTD_IMSG_PACKFILE_PROGRESS,
548 PROC_REPO_READ, repo_read.pid, -1, &iprog, sizeof(iprog));
550 return got_error_from_errno("imsg compose "
551 "PACKFILE_PROGRESS");
555 ret = imsg_compose(a->ibuf, GOTD_IMSG_PACKFILE_READY,
556 PROC_REPO_READ, repo_read.pid, -1, &iprog, sizeof(iprog));
558 return got_error_from_errno("imsg compose "
563 return gotd_imsg_flush(a->ibuf);
566 static const struct got_error *
567 receive_delta_cache_fd(struct imsg *imsg,
568 struct gotd_imsgev *iev)
570 struct repo_read_client *client = &repo_read_client;
571 struct gotd_imsg_send_packfile ireq;
574 log_debug("receving delta cache file");
577 return got_error(GOT_ERR_PRIVSEP_NO_FD);
579 datalen = imsg->hdr.len - IMSG_HEADER_SIZE;
580 if (datalen != sizeof(ireq))
581 return got_error(GOT_ERR_PRIVSEP_LEN);
582 memcpy(&ireq, imsg->data, sizeof(ireq));
584 if (client->delta_cache_fd != -1)
585 return got_error(GOT_ERR_PRIVSEP_MSG);
587 client->delta_cache_fd = imsg->fd;
588 client->report_progress = ireq.report_progress;
592 static const struct got_error *
593 receive_pack_pipe(struct imsg *imsg, struct gotd_imsgev *iev)
595 struct repo_read_client *client = &repo_read_client;
596 struct gotd_imsg_packfile_pipe ireq;
599 log_debug("receving pack pipe descriptor");
602 return got_error(GOT_ERR_PRIVSEP_NO_FD);
604 datalen = imsg->hdr.len - IMSG_HEADER_SIZE;
605 if (datalen != sizeof(ireq))
606 return got_error(GOT_ERR_PRIVSEP_LEN);
607 memcpy(&ireq, imsg->data, sizeof(ireq));
609 if (client->pack_pipe != -1)
610 return got_error(GOT_ERR_PRIVSEP_MSG);
612 client->pack_pipe = imsg->fd;
616 static const struct got_error *
617 send_packfile(struct imsg *imsg, struct gotd_imsgev *iev)
619 const struct got_error *err = NULL;
620 struct repo_read_client *client = &repo_read_client;
621 struct gotd_imsg_packfile_done idone;
622 uint8_t packsha1[SHA1_DIGEST_LENGTH];
623 char hex[SHA1_DIGEST_STRING_LENGTH];
624 FILE *delta_cache = NULL;
626 struct repo_read_pack_progress_arg pa;
627 struct got_ratelimit rl;
629 log_debug("packfile request received");
631 got_ratelimit_init(&rl, 2, 0);
633 if (client->delta_cache_fd == -1 || client->pack_pipe == -1)
634 return got_error(GOT_ERR_PRIVSEP_NO_FD);
636 imsg_init(&ibuf, client->fd);
638 delta_cache = fdopen(client->delta_cache_fd, "w+");
639 if (delta_cache == NULL) {
640 err = got_error_from_errno("fdopen");
643 client->delta_cache_fd = -1;
645 memset(&pa, 0, sizeof(pa));
647 pa.report_progress = client->report_progress;
649 err = got_pack_create(packsha1, client->pack_pipe, delta_cache,
650 client->have_ids.ids, client->have_ids.nids,
651 client->want_ids.ids, client->want_ids.nids,
652 repo_read.repo, 0, 1, pack_progress, &pa, &rl,
653 check_cancelled, NULL);
657 if (log_getverbose() > 0 &&
658 got_sha1_digest_to_str(packsha1, hex, sizeof(hex)))
659 log_debug("sent pack-%s.pack", hex);
661 memset(&idone, 0, sizeof(idone));
662 idone.client_id = client->id;
663 if (gotd_imsg_compose_event(iev, GOTD_IMSG_PACKFILE_DONE,
664 PROC_REPO_READ, -1, &idone, sizeof(idone)) == -1)
665 err = got_error_from_errno("imsg compose PACKFILE_DONE");
667 if (delta_cache != NULL && fclose(delta_cache) == EOF && err == NULL)
668 err = got_error_from_errno("fclose");
673 static const struct got_error *
674 recv_disconnect(struct imsg *imsg)
676 const struct got_error *err = NULL;
677 struct gotd_imsg_disconnect idisconnect;
679 int delta_cache_fd, pack_pipe;
680 struct repo_read_client *client = &repo_read_client;
682 datalen = imsg->hdr.len - IMSG_HEADER_SIZE;
683 if (datalen != sizeof(idisconnect))
684 return got_error(GOT_ERR_PRIVSEP_LEN);
685 memcpy(&idisconnect, imsg->data, sizeof(idisconnect));
687 log_debug("client disconnecting");
689 free_object_ids(&client->have_ids);
690 free_object_ids(&client->want_ids);
691 if (close(client->fd) == -1)
692 err = got_error_from_errno("close");
693 delta_cache_fd = client->delta_cache_fd;
694 if (delta_cache_fd != -1 && close(delta_cache_fd) == -1 && err == NULL)
695 return got_error_from_errno("close");
696 pack_pipe = client->pack_pipe;
697 if (pack_pipe != -1 && close(pack_pipe) == -1 && err == NULL)
698 return got_error_from_errno("close");
703 repo_read_dispatch_session(int fd, short event, void *arg)
705 const struct got_error *err = NULL;
706 struct gotd_imsgev *iev = arg;
707 struct imsgbuf *ibuf = &iev->ibuf;
711 struct repo_read_client *client = &repo_read_client;
713 if (event & EV_READ) {
714 if ((n = imsg_read(ibuf)) == -1 && errno != EAGAIN)
715 fatal("imsg_read error");
716 if (n == 0) /* Connection closed. */
720 if (event & EV_WRITE) {
721 n = msgbuf_write(&ibuf->w);
722 if (n == -1 && errno != EAGAIN)
723 fatal("msgbuf_write");
724 if (n == 0) /* Connection closed. */
728 while (err == NULL && check_cancelled(NULL) == NULL) {
729 if ((n = imsg_get(ibuf, &imsg)) == -1)
730 fatal("%s: imsg_get", __func__);
731 if (n == 0) /* No more messages. */
734 if (imsg.hdr.type != GOTD_IMSG_LIST_REFS_INTERNAL &&
736 err = got_error(GOT_ERR_PRIVSEP_MSG);
740 switch (imsg.hdr.type) {
741 case GOTD_IMSG_LIST_REFS_INTERNAL:
742 err = list_refs(&imsg);
744 log_warnx("%s: ls-refs: %s", repo_read.title,
748 err = recv_want(&imsg);
750 log_warnx("%s: want-line: %s", repo_read.title,
754 err = recv_have(&imsg);
756 log_warnx("%s: have-line: %s", repo_read.title,
759 case GOTD_IMSG_SEND_PACKFILE:
760 err = receive_delta_cache_fd(&imsg, iev);
762 log_warnx("%s: receiving delta cache: %s",
763 repo_read.title, err->msg);
765 case GOTD_IMSG_PACKFILE_PIPE:
766 err = receive_pack_pipe(&imsg, iev);
768 log_warnx("%s: receiving pack pipe: %s",
769 repo_read.title, err->msg);
772 err = send_packfile(&imsg, iev);
774 log_warnx("%s: sending packfile: %s",
775 repo_read.title, err->msg);
777 case GOTD_IMSG_DISCONNECT:
778 err = recv_disconnect(&imsg);
780 log_warnx("%s: disconnect: %s",
781 repo_read.title, err->msg);
785 log_debug("%s: unexpected imsg %d", repo_read.title,
793 if (!shut && check_cancelled(NULL) == NULL) {
795 gotd_imsg_send_error_event(iev, PROC_REPO_READ,
796 client->id, err) == -1) {
797 log_warnx("could not send error to parent: %s",
800 gotd_imsg_event_add(iev);
802 /* This pipe is dead. Remove its event handler */
804 event_loopexit(NULL);
808 static const struct got_error *
809 recv_connect(struct imsg *imsg)
811 struct gotd_imsgev *iev = &repo_read.session_iev;
814 datalen = imsg->hdr.len - IMSG_HEADER_SIZE;
816 return got_error(GOT_ERR_PRIVSEP_LEN);
818 return got_error(GOT_ERR_PRIVSEP_NO_FD);
820 if (repo_read.session_fd != -1)
821 return got_error(GOT_ERR_PRIVSEP_MSG);
823 repo_read.session_fd = imsg->fd;
825 imsg_init(&iev->ibuf, repo_read.session_fd);
826 iev->handler = repo_read_dispatch_session;
827 iev->events = EV_READ;
828 iev->handler_arg = NULL;
829 event_set(&iev->ev, iev->ibuf.fd, EV_READ,
830 repo_read_dispatch_session, iev);
831 gotd_imsg_event_add(iev);
837 repo_read_dispatch(int fd, short event, void *arg)
839 const struct got_error *err = NULL;
840 struct gotd_imsgev *iev = arg;
841 struct imsgbuf *ibuf = &iev->ibuf;
845 struct repo_read_client *client = &repo_read_client;
847 if (event & EV_READ) {
848 if ((n = imsg_read(ibuf)) == -1 && errno != EAGAIN)
849 fatal("imsg_read error");
850 if (n == 0) /* Connection closed. */
854 if (event & EV_WRITE) {
855 n = msgbuf_write(&ibuf->w);
856 if (n == -1 && errno != EAGAIN)
857 fatal("msgbuf_write");
858 if (n == 0) /* Connection closed. */
862 while (err == NULL && check_cancelled(NULL) == NULL) {
863 if ((n = imsg_get(ibuf, &imsg)) == -1)
864 fatal("%s: imsg_get", __func__);
865 if (n == 0) /* No more messages. */
868 switch (imsg.hdr.type) {
869 case GOTD_IMSG_CONNECT_REPO_CHILD:
870 err = recv_connect(&imsg);
873 log_debug("%s: unexpected imsg %d", repo_read.title,
881 if (!shut && check_cancelled(NULL) == NULL) {
883 gotd_imsg_send_error_event(iev, PROC_REPO_READ,
884 client->id, err) == -1) {
885 log_warnx("could not send error to parent: %s",
888 gotd_imsg_event_add(iev);
890 /* This pipe is dead. Remove its event handler */
892 event_loopexit(NULL);
897 repo_read_main(const char *title, const char *repo_path,
898 int *pack_fds, int *temp_fds)
900 const struct got_error *err = NULL;
901 struct gotd_imsgev iev;
903 repo_read.title = title;
904 repo_read.pid = getpid();
905 repo_read.pack_fds = pack_fds;
906 repo_read.temp_fds = temp_fds;
907 repo_read.session_fd = -1;
908 repo_read.session_iev.ibuf.fd = -1;
910 err = got_repo_open(&repo_read.repo, repo_path, NULL, pack_fds);
913 if (!got_repo_is_bare(repo_read.repo)) {
914 err = got_error_msg(GOT_ERR_NOT_GIT_REPO,
915 "bare git repository required");
919 got_repo_temp_fds_set(repo_read.repo, temp_fds);
921 signal(SIGINT, catch_sigint);
922 signal(SIGTERM, catch_sigterm);
923 signal(SIGPIPE, SIG_IGN);
924 signal(SIGHUP, SIG_IGN);
926 imsg_init(&iev.ibuf, GOTD_FILENO_MSG_PIPE);
927 iev.handler = repo_read_dispatch;
928 iev.events = EV_READ;
929 iev.handler_arg = NULL;
930 event_set(&iev.ev, iev.ibuf.fd, EV_READ, repo_read_dispatch, &iev);
932 if (gotd_imsg_compose_event(&iev, GOTD_IMSG_REPO_CHILD_READY,
933 PROC_REPO_READ, -1, NULL, 0) == -1) {
934 err = got_error_from_errno("imsg compose REPO_CHILD_READY");
941 log_warnx("%s: %s", title, err->msg);
942 repo_read_shutdown();
946 repo_read_shutdown(void)
948 log_debug("%s: shutting down", repo_read.title);
950 got_repo_close(repo_read.repo);
951 got_repo_pack_fds_close(repo_read.pack_fds);
952 got_repo_temp_fds_close(repo_read.temp_fds);
953 if (repo_read.session_fd != -1)
954 close(repo_read.session_fd);