2 * Copyright (c) 2018, 2019, 2020 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.
18 #include <sys/types.h>
19 #include <sys/queue.h>
36 #include "got_error.h"
37 #include "got_object.h"
40 #include "got_lib_delta.h"
41 #include "got_lib_delta_cache.h"
42 #include "got_lib_object.h"
43 #include "got_lib_object_cache.h"
44 #include "got_lib_object_parse.h"
45 #include "got_lib_object_idset.h"
46 #include "got_lib_privsep.h"
47 #include "got_lib_pack.h"
50 #define nitems(_a) (sizeof((_a)) / sizeof((_a)[0]))
53 static volatile sig_atomic_t sigint_received;
56 catch_sigint(int signo)
61 static const struct got_error *
62 open_object(struct got_object **obj, struct got_pack *pack,
63 struct got_packidx *packidx, int idx, struct got_object_id *id,
64 struct got_object_cache *objcache)
66 const struct got_error *err;
68 err = got_packfile_open_object(obj, pack, packidx, idx, id);
73 err = got_object_cache_add(objcache, id, *obj);
75 if (err->code == GOT_ERR_OBJ_EXISTS ||
76 err->code == GOT_ERR_OBJ_TOO_LARGE)
84 static const struct got_error *
85 object_request(struct imsg *imsg, struct imsgbuf *ibuf, struct got_pack *pack,
86 struct got_packidx *packidx, struct got_object_cache *objcache)
88 const struct got_error *err = NULL;
89 struct got_imsg_packed_object iobj;
90 struct got_object *obj;
91 struct got_object_id id;
94 datalen = imsg->hdr.len - IMSG_HEADER_SIZE;
95 if (datalen != sizeof(iobj))
96 return got_error(GOT_ERR_PRIVSEP_LEN);
97 memcpy(&iobj, imsg->data, sizeof(iobj));
98 memcpy(id.sha1, iobj.id, SHA1_DIGEST_LENGTH);
100 obj = got_object_cache_get(objcache, &id);
104 err = open_object(&obj, pack, packidx, iobj.idx, &id,
110 err = got_privsep_send_obj(ibuf, obj);
112 got_object_close(obj);
116 static const struct got_error *
117 open_commit(struct got_commit_object **commit, struct got_pack *pack,
118 struct got_packidx *packidx, int obj_idx, struct got_object_id *id,
119 struct got_object_cache *objcache)
121 const struct got_error *err = NULL;
122 struct got_object *obj = NULL;
128 obj = got_object_cache_get(objcache, id);
132 err = open_object(&obj, pack, packidx, obj_idx, id,
138 err = got_packfile_extract_object_to_mem(&buf, &len, obj, pack);
144 err = got_object_parse_commit(commit, buf, len);
146 got_object_close(obj);
151 static const struct got_error *
152 commit_request(struct imsg *imsg, struct imsgbuf *ibuf, struct got_pack *pack,
153 struct got_packidx *packidx, struct got_object_cache *objcache)
155 const struct got_error *err = NULL;
156 struct got_imsg_packed_object iobj;
157 struct got_commit_object *commit = NULL;
158 struct got_object_id id;
161 datalen = imsg->hdr.len - IMSG_HEADER_SIZE;
162 if (datalen != sizeof(iobj))
163 return got_error(GOT_ERR_PRIVSEP_LEN);
164 memcpy(&iobj, imsg->data, sizeof(iobj));
165 memcpy(id.sha1, iobj.id, SHA1_DIGEST_LENGTH);
167 err = open_commit(&commit, pack, packidx, iobj.idx, &id, objcache);
171 err = got_privsep_send_commit(ibuf, commit);
174 got_object_commit_close(commit);
176 if (err->code == GOT_ERR_PRIVSEP_PIPE)
179 got_privsep_send_error(ibuf, err);
185 static const struct got_error *
186 open_tree(uint8_t **buf, struct got_parsed_tree_entry **entries, size_t *nentries,
187 size_t *nentries_alloc, struct got_pack *pack, struct got_packidx *packidx,
188 int obj_idx, struct got_object_id *id, struct got_object_cache *objcache)
190 const struct got_error *err = NULL;
191 struct got_object *obj = NULL;
197 obj = got_object_cache_get(objcache, id);
201 err = open_object(&obj, pack, packidx, obj_idx, id,
207 err = got_packfile_extract_object_to_mem(buf, &len, obj, pack);
213 err = got_object_parse_tree(entries, nentries, nentries_alloc,
216 got_object_close(obj);
224 static const struct got_error *
225 tree_request(struct imsg *imsg, struct imsgbuf *ibuf, struct got_pack *pack,
226 struct got_packidx *packidx, struct got_object_cache *objcache,
227 struct got_parsed_tree_entry **entries, size_t *nentries,
228 size_t *nentries_alloc)
230 const struct got_error *err = NULL;
231 struct got_imsg_packed_object iobj;
233 struct got_object_id id;
236 datalen = imsg->hdr.len - IMSG_HEADER_SIZE;
237 if (datalen != sizeof(iobj))
238 return got_error(GOT_ERR_PRIVSEP_LEN);
239 memcpy(&iobj, imsg->data, sizeof(iobj));
240 memcpy(id.sha1, iobj.id, SHA1_DIGEST_LENGTH);
242 err = open_tree(&buf, entries, nentries, nentries_alloc,
243 pack, packidx, iobj.idx, &id, objcache);
247 err = got_privsep_send_tree(ibuf, *entries, *nentries);
250 if (err->code == GOT_ERR_PRIVSEP_PIPE)
253 got_privsep_send_error(ibuf, err);
259 static const struct got_error *
260 receive_file(FILE **f, struct imsgbuf *ibuf, uint32_t imsg_code)
262 const struct got_error *err;
266 err = got_privsep_recv_imsg(&imsg, ibuf, 0);
270 if (imsg.hdr.type != imsg_code) {
271 err = got_error(GOT_ERR_PRIVSEP_MSG);
275 datalen = imsg.hdr.len - IMSG_HEADER_SIZE;
277 err = got_error(GOT_ERR_PRIVSEP_LEN);
281 err = got_error(GOT_ERR_PRIVSEP_NO_FD);
285 *f = fdopen(imsg.fd, "w+");
287 err = got_error_from_errno("fdopen");
296 static const struct got_error *
297 receive_tempfile(FILE **f, const char *mode, struct imsg *imsg,
298 struct imsgbuf *ibuf)
302 datalen = imsg->hdr.len - IMSG_HEADER_SIZE;
304 return got_error(GOT_ERR_PRIVSEP_LEN);
307 return got_error(GOT_ERR_PRIVSEP_NO_FD);
309 *f = fdopen(imsg->fd, mode);
311 return got_error_from_errno("fdopen");
317 static const struct got_error *
318 blob_request(struct imsg *imsg, struct imsgbuf *ibuf, struct got_pack *pack,
319 struct got_packidx *packidx, struct got_object_cache *objcache,
320 FILE *basefile, FILE *accumfile)
322 const struct got_error *err = NULL;
323 struct got_imsg_packed_object iobj;
324 struct got_object *obj = NULL;
325 FILE *outfile = NULL;
326 struct got_object_id id;
331 datalen = imsg->hdr.len - IMSG_HEADER_SIZE;
332 if (datalen != sizeof(iobj))
333 return got_error(GOT_ERR_PRIVSEP_LEN);
334 memcpy(&iobj, imsg->data, sizeof(iobj));
335 memcpy(id.sha1, iobj.id, SHA1_DIGEST_LENGTH);
337 obj = got_object_cache_get(objcache, &id);
341 err = open_object(&obj, pack, packidx, iobj.idx, &id,
347 err = receive_file(&outfile, ibuf, GOT_IMSG_BLOB_OUTFD);
351 if (obj->flags & GOT_OBJ_FLAG_DELTIFIED) {
352 err = got_pack_get_max_delta_object_size(&blob_size, obj, pack);
356 blob_size = obj->size;
358 if (blob_size <= GOT_PRIVSEP_INLINE_BLOB_DATA_MAX)
359 err = got_packfile_extract_object_to_mem(&buf, &obj->size,
362 err = got_packfile_extract_object(pack, obj, outfile, basefile,
367 err = got_privsep_send_blob(ibuf, obj->size, obj->hdrlen, buf);
370 if (outfile && fclose(outfile) == EOF && err == NULL)
371 err = got_error_from_errno("fclose");
372 got_object_close(obj);
373 if (err && err->code != GOT_ERR_PRIVSEP_PIPE)
374 got_privsep_send_error(ibuf, err);
379 static const struct got_error *
380 tag_request(struct imsg *imsg, struct imsgbuf *ibuf, struct got_pack *pack,
381 struct got_packidx *packidx, struct got_object_cache *objcache)
383 const struct got_error *err = NULL;
384 struct got_imsg_packed_object iobj;
385 struct got_object *obj = NULL;
386 struct got_tag_object *tag = NULL;
389 struct got_object_id id;
392 datalen = imsg->hdr.len - IMSG_HEADER_SIZE;
393 if (datalen != sizeof(iobj))
394 return got_error(GOT_ERR_PRIVSEP_LEN);
395 memcpy(&iobj, imsg->data, sizeof(iobj));
396 memcpy(id.sha1, iobj.id, SHA1_DIGEST_LENGTH);
398 obj = got_object_cache_get(objcache, &id);
402 err = open_object(&obj, pack, packidx, iobj.idx, &id,
408 err = got_packfile_extract_object_to_mem(&buf, &len, obj, pack);
413 err = got_object_parse_tag(&tag, buf, len);
417 err = got_privsep_send_tag(ibuf, tag);
420 got_object_close(obj);
422 got_object_tag_close(tag);
424 if (err->code == GOT_ERR_PRIVSEP_PIPE)
427 got_privsep_send_error(ibuf, err);
433 static struct got_parsed_tree_entry *
434 find_entry_by_name(struct got_parsed_tree_entry *entries, int nentries,
435 const char *name, size_t len)
437 struct got_parsed_tree_entry *pte;
440 /* Note that tree entries are sorted in strncmp() order. */
441 for (i = 0; i < nentries; i++) {
443 cmp = strncmp(pte->name, name, len);
448 if (pte->name[len] == '\0')
454 static const struct got_error *
455 tree_path_changed(int *changed, uint8_t **buf1, uint8_t **buf2,
456 struct got_parsed_tree_entry **entries1, size_t *nentries1,
457 size_t *nentries_alloc1,
458 struct got_parsed_tree_entry **entries2, size_t *nentries2,
459 size_t *nentries_alloc2,
460 const char *path, struct got_pack *pack, struct got_packidx *packidx,
461 struct imsgbuf *ibuf, struct got_object_cache *objcache)
463 const struct got_error *err = NULL;
464 struct got_parsed_tree_entry *pte1 = NULL, *pte2 = NULL;
470 /* We not do support comparing the root path. */
471 if (got_path_is_root_dir(path))
472 return got_error_path(path, GOT_ERR_BAD_PATH);
487 pte1 = find_entry_by_name(*entries1, *nentries1, seg, seglen);
489 err = got_error(GOT_ERR_NO_OBJ);
493 pte2 = find_entry_by_name(*entries2, *nentries2, seg, seglen);
499 if (pte1->mode != pte2->mode) {
504 if (memcmp(pte1->id, pte2->id, SHA1_DIGEST_LENGTH) == 0) {
509 if (*s == '\0') { /* final path element */
518 struct got_object_id id1, id2;
521 memcpy(id1.sha1, pte1->id, SHA1_DIGEST_LENGTH);
522 idx = got_packidx_get_object_idx(packidx, &id1);
524 err = got_error_no_obj(&id1);
530 err = open_tree(buf1, entries1, nentries1,
531 nentries_alloc1, pack, packidx, idx, &id1,
537 memcpy(id2.sha1, pte2->id, SHA1_DIGEST_LENGTH);
538 idx = got_packidx_get_object_idx(packidx, &id2);
540 err = got_error_no_obj(&id2);
546 err = open_tree(buf2, entries2, nentries2,
547 nentries_alloc2, pack, packidx, idx, &id2, objcache);
557 static const struct got_error *
558 send_traversed_commits(struct got_object_id *commit_ids, size_t ncommits,
559 struct imsgbuf *ibuf)
564 wbuf = imsg_create(ibuf, GOT_IMSG_TRAVERSED_COMMITS, 0, 0,
565 sizeof(struct got_imsg_traversed_commits) +
566 ncommits * SHA1_DIGEST_LENGTH);
568 return got_error_from_errno("imsg_create TRAVERSED_COMMITS");
570 if (imsg_add(wbuf, &ncommits, sizeof(ncommits)) == -1)
571 return got_error_from_errno("imsg_add TRAVERSED_COMMITS");
573 for (i = 0; i < ncommits; i++) {
574 struct got_object_id *id = &commit_ids[i];
575 if (imsg_add(wbuf, id->sha1, SHA1_DIGEST_LENGTH) == -1) {
576 return got_error_from_errno(
577 "imsg_add TRAVERSED_COMMITS");
582 imsg_close(ibuf, wbuf);
584 return got_privsep_flush_imsg(ibuf);
587 static const struct got_error *
588 send_commit_traversal_done(struct imsgbuf *ibuf)
590 if (imsg_compose(ibuf, GOT_IMSG_COMMIT_TRAVERSAL_DONE, 0, 0, -1,
592 return got_error_from_errno("imsg_compose TRAVERSAL_DONE");
594 return got_privsep_flush_imsg(ibuf);
597 static const struct got_error *
598 commit_traversal_request(struct imsg *imsg, struct imsgbuf *ibuf,
599 struct got_pack *pack, struct got_packidx *packidx,
600 struct got_object_cache *objcache)
602 const struct got_error *err = NULL;
603 struct got_imsg_packed_object iobj;
604 struct got_object_qid *pid;
605 struct got_commit_object *commit = NULL, *pcommit = NULL;
606 struct got_parsed_tree_entry *entries = NULL, *pentries = NULL;
607 size_t nentries = 0, nentries_alloc = 0;
608 size_t pnentries = 0, pnentries_alloc = 0;
609 struct got_object_id id;
610 size_t datalen, path_len;
612 const int min_alloc = 64;
613 int changed = 0, ncommits = 0, nallocated = 0;
614 struct got_object_id *commit_ids = NULL;
616 datalen = imsg->hdr.len - IMSG_HEADER_SIZE;
617 if (datalen < sizeof(iobj))
618 return got_error(GOT_ERR_PRIVSEP_LEN);
619 memcpy(&iobj, imsg->data, sizeof(iobj));
620 memcpy(id.sha1, iobj.id, SHA1_DIGEST_LENGTH);
622 path_len = datalen - sizeof(iobj) - 1;
624 return got_error(GOT_ERR_PRIVSEP_LEN);
626 path = imsg->data + sizeof(iobj);
627 if (path[path_len] != '\0')
628 return got_error(GOT_ERR_PRIVSEP_LEN);
631 nallocated = min_alloc;
632 commit_ids = reallocarray(NULL, nallocated, sizeof(*commit_ids));
633 if (commit_ids == NULL)
634 return got_error_from_errno("reallocarray");
637 const size_t max_datalen = MAX_IMSGSIZE - IMSG_HEADER_SIZE;
640 if (sigint_received) {
641 err = got_error(GOT_ERR_CANCELLED);
645 if (commit == NULL) {
646 idx = got_packidx_get_object_idx(packidx, &id);
649 err = open_commit(&commit, pack, packidx,
652 if (err->code != GOT_ERR_NO_OBJ)
659 if (sizeof(struct got_imsg_traversed_commits) +
660 ncommits * SHA1_DIGEST_LENGTH >= max_datalen) {
661 err = send_traversed_commits(commit_ids, ncommits,
668 if (ncommits > nallocated) {
669 struct got_object_id *new;
670 nallocated += min_alloc;
671 new = reallocarray(commit_ids, nallocated,
672 sizeof(*commit_ids));
674 err = got_error_from_errno("reallocarray");
679 memcpy(commit_ids[ncommits - 1].sha1, id.sha1,
682 pid = STAILQ_FIRST(&commit->parent_ids);
686 idx = got_packidx_get_object_idx(packidx, &pid->id);
690 err = open_commit(&pcommit, pack, packidx, idx, &pid->id,
693 if (err->code != GOT_ERR_NO_OBJ)
699 if (path[0] == '/' && path[1] == '\0') {
700 if (got_object_id_cmp(pcommit->tree_id,
701 commit->tree_id) != 0) {
707 uint8_t *buf = NULL, *pbuf = NULL;
709 idx = got_packidx_get_object_idx(packidx,
713 pidx = got_packidx_get_object_idx(packidx,
718 err = open_tree(&buf, &entries, &nentries,
719 &nentries_alloc, pack, packidx, idx,
720 commit->tree_id, objcache);
723 err = open_tree(&pbuf, &pentries, &pnentries,
724 &pnentries_alloc, pack, packidx, pidx,
725 pcommit->tree_id, objcache);
731 err = tree_path_changed(&changed, &buf, &pbuf,
732 &entries, &nentries, &nentries_alloc,
733 &pentries, &pnentries, &pnentries_alloc,
734 path, pack, packidx, ibuf, objcache);
741 if (err->code != GOT_ERR_NO_OBJ)
749 memcpy(id.sha1, pid->id.sha1, SHA1_DIGEST_LENGTH);
750 got_object_commit_close(commit);
757 err = send_traversed_commits(commit_ids, ncommits, ibuf);
762 err = got_privsep_send_commit(ibuf, commit);
767 err = send_commit_traversal_done(ibuf);
771 got_object_commit_close(commit);
773 got_object_commit_close(pcommit);
777 if (err->code == GOT_ERR_PRIVSEP_PIPE)
780 got_privsep_send_error(ibuf, err);
786 static const struct got_error *
787 raw_object_request(struct imsg *imsg, struct imsgbuf *ibuf,
788 struct got_pack *pack, struct got_packidx *packidx,
789 struct got_object_cache *objcache, FILE *basefile, FILE *accumfile)
791 const struct got_error *err = NULL;
794 FILE *outfile = NULL;
795 struct got_imsg_packed_object iobj;
796 struct got_object *obj;
797 struct got_object_id id;
800 datalen = imsg->hdr.len - IMSG_HEADER_SIZE;
801 if (datalen != sizeof(iobj))
802 return got_error(GOT_ERR_PRIVSEP_LEN);
803 memcpy(&iobj, imsg->data, sizeof(iobj));
804 memcpy(id.sha1, iobj.id, SHA1_DIGEST_LENGTH);
806 obj = got_object_cache_get(objcache, &id);
810 err = open_object(&obj, pack, packidx, iobj.idx, &id,
816 err = receive_file(&outfile, ibuf, GOT_IMSG_RAW_OBJECT_OUTFD);
820 if (obj->flags & GOT_OBJ_FLAG_DELTIFIED) {
821 err = got_pack_get_max_delta_object_size(&size, obj, pack);
827 if (size <= GOT_PRIVSEP_INLINE_OBJECT_DATA_MAX)
828 err = got_packfile_extract_object_to_mem(&buf, &obj->size,
831 err = got_packfile_extract_object(pack, obj, outfile, basefile,
836 err = got_privsep_send_raw_obj(ibuf, obj->size, obj->hdrlen, buf);
839 if (outfile && fclose(outfile) == EOF && err == NULL)
840 err = got_error_from_errno("fclose");
841 got_object_close(obj);
842 if (err && err->code != GOT_ERR_PRIVSEP_PIPE)
843 got_privsep_send_error(ibuf, err);
848 static const struct got_error *
849 get_base_object_id(struct got_object_id *base_id, struct got_packidx *packidx,
852 const struct got_error *err;
855 err = got_packidx_get_offset_idx(&idx, packidx, base_offset);
859 return got_error(GOT_ERR_BAD_PACKIDX);
861 return got_packidx_get_object_id(base_id, packidx, idx);
864 static const struct got_error *
865 raw_delta_request(struct imsg *imsg, struct imsgbuf *ibuf,
866 FILE *delta_outfile, struct got_pack *pack,
867 struct got_packidx *packidx)
869 const struct got_error *err = NULL;
870 struct got_imsg_raw_delta_request req;
871 size_t datalen, delta_size, delta_compressed_size;
872 off_t delta_offset, delta_data_offset;
873 uint8_t *delta_buf = NULL;
874 struct got_object_id id, base_id;
875 off_t base_offset, delta_out_offset = 0;
876 uint64_t base_size = 0, result_size = 0;
879 datalen = imsg->hdr.len - IMSG_HEADER_SIZE;
880 if (datalen != sizeof(req))
881 return got_error(GOT_ERR_PRIVSEP_LEN);
882 memcpy(&req, imsg->data, sizeof(req));
883 memcpy(id.sha1, req.id, SHA1_DIGEST_LENGTH);
887 err = got_packfile_extract_raw_delta(&delta_buf, &delta_size,
888 &delta_compressed_size, &delta_offset, &delta_data_offset,
889 &base_offset, &base_id, &base_size, &result_size,
890 pack, packidx, req.idx);
895 * If this is an offset delta we must determine the base
896 * object ID ourselves.
898 if (base_offset != 0) {
899 err = get_base_object_id(&base_id, packidx, base_offset);
904 delta_out_offset = ftello(delta_outfile);
905 w = fwrite(delta_buf, 1, delta_compressed_size, delta_outfile);
906 if (w != delta_compressed_size) {
907 err = got_ferror(delta_outfile, GOT_ERR_IO);
910 if (fflush(delta_outfile) == -1) {
911 err = got_error_from_errno("fflush");
915 err = got_privsep_send_raw_delta(ibuf, base_size, result_size,
916 delta_size, delta_compressed_size, delta_offset, delta_out_offset,
923 struct search_deltas_arg {
924 struct imsgbuf *ibuf;
925 struct got_packidx *packidx;
926 struct got_pack *pack;
927 struct got_object_idset *idset;
928 struct got_imsg_reused_delta deltas[GOT_IMSG_REUSED_DELTAS_MAX_NDELTAS];
932 static const struct got_error *
933 search_delta_for_object(struct got_object_id *id, void *data, void *arg)
935 const struct got_error *err;
936 struct search_deltas_arg *a = arg;
938 uint8_t *delta_buf = NULL;
939 uint64_t base_size, result_size;
940 size_t delta_size, delta_compressed_size;
941 off_t delta_offset, delta_data_offset, base_offset;
942 struct got_object_id base_id;
945 return got_error(GOT_ERR_CANCELLED);
947 obj_idx = got_packidx_get_object_idx(a->packidx, id);
949 return NULL; /* object not present in our pack file */
951 err = got_packfile_extract_raw_delta(&delta_buf, &delta_size,
952 &delta_compressed_size, &delta_offset, &delta_data_offset,
953 &base_offset, &base_id, &base_size, &result_size,
954 a->pack, a->packidx, obj_idx);
956 if (err->code == GOT_ERR_OBJ_TYPE)
957 return NULL; /* object not stored as a delta */
962 * If this is an offset delta we must determine the base
963 * object ID ourselves.
965 if (base_offset != 0) {
966 err = get_base_object_id(&base_id, a->packidx, base_offset);
971 if (got_object_idset_contains(a->idset, &base_id)) {
972 struct got_imsg_reused_delta *delta;
974 delta = &a->deltas[a->ndeltas++];
975 memcpy(&delta->id, id, sizeof(delta->id));
976 memcpy(&delta->base_id, &base_id, sizeof(delta->base_id));
977 delta->base_size = base_size;
978 delta->result_size = result_size;
979 delta->delta_size = delta_size;
980 delta->delta_compressed_size = delta_compressed_size;
981 delta->delta_offset = delta_data_offset;
983 if (a->ndeltas >= GOT_IMSG_REUSED_DELTAS_MAX_NDELTAS) {
984 err = got_privsep_send_reused_deltas(a->ibuf,
985 a->deltas, a->ndeltas);
996 static const struct got_error *
997 recv_object_ids(struct got_object_idset *idset, struct imsgbuf *ibuf)
999 const struct got_error *err = NULL;
1001 struct got_object_id *ids;
1005 err = got_privsep_recv_object_idlist(&done, &ids, &nids, ibuf);
1008 for (i = 0; i < nids; i++) {
1009 err = got_object_idset_add(idset, &ids[i], NULL);
1021 static const struct got_error *
1022 recv_object_id_queue(struct got_object_id_queue *queue, struct imsgbuf *ibuf)
1024 const struct got_error *err = NULL;
1026 struct got_object_qid *qid;
1027 struct got_object_id *ids;
1031 err = got_privsep_recv_object_idlist(&done, &ids, &nids, ibuf);
1034 for (i = 0; i < nids; i++) {
1035 err = got_object_qid_alloc_partial(&qid);
1038 memcpy(&qid->id, &ids[i], sizeof(qid->id));
1039 STAILQ_INSERT_TAIL(queue, qid, entry);
1046 static const struct got_error *
1047 delta_reuse_request(struct imsg *imsg, struct imsgbuf *ibuf,
1048 struct got_pack *pack, struct got_packidx *packidx)
1050 const struct got_error *err = NULL;
1051 struct got_object_idset *idset;
1052 struct search_deltas_arg sda;
1054 idset = got_object_idset_alloc();
1056 return got_error_from_errno("got_object_idset_alloc");
1058 err = recv_object_ids(idset, ibuf);
1062 memset(&sda, 0, sizeof(sda));
1066 sda.packidx = packidx;
1067 err = got_object_idset_for_each(idset, search_delta_for_object, &sda);
1071 if (sda.ndeltas > 0) {
1072 err = got_privsep_send_reused_deltas(ibuf, sda.deltas,
1078 err = got_privsep_send_reused_deltas_done(ibuf);
1080 got_object_idset_free(idset);
1084 static const struct got_error *
1085 receive_packidx(struct got_packidx **packidx, struct imsgbuf *ibuf)
1087 const struct got_error *err = NULL;
1089 struct got_imsg_packidx ipackidx;
1091 struct got_packidx *p;
1095 err = got_privsep_recv_imsg(&imsg, ibuf, 0);
1099 p = calloc(1, sizeof(*p));
1101 err = got_error_from_errno("calloc");
1105 if (imsg.hdr.type != GOT_IMSG_PACKIDX) {
1106 err = got_error(GOT_ERR_PRIVSEP_MSG);
1110 if (imsg.fd == -1) {
1111 err = got_error(GOT_ERR_PRIVSEP_NO_FD);
1115 datalen = imsg.hdr.len - IMSG_HEADER_SIZE;
1116 if (datalen != sizeof(ipackidx)) {
1117 err = got_error(GOT_ERR_PRIVSEP_LEN);
1120 memcpy(&ipackidx, imsg.data, sizeof(ipackidx));
1122 p->len = ipackidx.len;
1123 p->fd = dup(imsg.fd);
1125 err = got_error_from_errno("dup");
1128 if (lseek(p->fd, 0, SEEK_SET) == -1) {
1129 err = got_error_from_errno("lseek");
1133 #ifndef GOT_PACK_NO_MMAP
1134 if (p->len > 0 && p->len <= SIZE_MAX) {
1135 p->map = mmap(NULL, p->len, PROT_READ, MAP_PRIVATE, p->fd, 0);
1136 if (p->map == MAP_FAILED)
1137 p->map = NULL; /* fall back to read(2) */
1140 err = got_packidx_init_hdr(p, 1, ipackidx.packfile_size);
1145 got_packidx_close(p);
1152 static const struct got_error *
1153 send_tree_enumeration_done(struct imsgbuf *ibuf)
1155 if (imsg_compose(ibuf, GOT_IMSG_TREE_ENUMERATION_DONE, 0, 0, -1,
1157 return got_error_from_errno("imsg_compose TREE_ENUMERATION_DONE");
1159 return got_privsep_flush_imsg(ibuf);
1162 struct enumerated_tree {
1163 struct got_object_id id;
1166 struct got_parsed_tree_entry *entries;
1170 static const struct got_error *
1171 enumerate_tree(int *have_all_entries, struct imsgbuf *ibuf, size_t *totlen,
1172 struct got_object_id *tree_id,
1173 const char *path, struct got_pack *pack, struct got_packidx *packidx,
1174 struct got_object_cache *objcache, struct got_object_idset *idset,
1175 struct enumerated_tree **trees, size_t *nalloc, size_t *ntrees)
1177 const struct got_error *err = NULL;
1178 struct got_object_id_queue ids;
1179 struct got_object_qid *qid;
1180 uint8_t *buf = NULL;
1181 struct got_parsed_tree_entry *entries = NULL;
1182 size_t nentries = 0, nentries_alloc = 0, i;
1183 struct enumerated_tree *tree;
1186 *have_all_entries = 1;
1189 err = got_object_qid_alloc_partial(&qid);
1192 memcpy(&qid->id.sha1, tree_id, SHA1_DIGEST_LENGTH);
1193 qid->data = strdup(path);
1194 if (qid->data == NULL) {
1195 err = got_error_from_errno("strdup");
1198 STAILQ_INSERT_TAIL(&ids, qid, entry);
1201 /* Traverse the tree hierarchy, gather tree object IDs and paths. */
1206 if (sigint_received) {
1207 err = got_error(GOT_ERR_CANCELLED);
1211 qid = STAILQ_FIRST(&ids);
1212 STAILQ_REMOVE_HEAD(&ids, entry);
1215 idx = got_packidx_get_object_idx(packidx, &qid->id);
1217 *have_all_entries = 0;
1221 err = open_tree(&buf, &entries, &nentries, &nentries_alloc,
1222 pack, packidx, idx, &qid->id, objcache);
1224 if (err->code != GOT_ERR_NO_OBJ)
1228 err = got_object_idset_add(idset, &qid->id, NULL);
1232 for (i = 0; i < nentries; i++) {
1233 struct got_object_qid *eqid = NULL;
1234 struct got_parsed_tree_entry *pte = &entries[i];
1237 if (!S_ISDIR(pte->mode))
1240 err = got_object_qid_alloc_partial(&eqid);
1243 memcpy(eqid->id.sha1, pte->id, sizeof(eqid->id.sha1));
1245 if (got_object_idset_contains(idset, &eqid->id)) {
1246 got_object_qid_free(eqid);
1250 if (asprintf(&p, "%s%s%s", path,
1251 got_path_is_root_dir(path) ? "" : "/",
1253 err = got_error_from_errno("asprintf");
1254 got_object_qid_free(eqid);
1258 STAILQ_INSERT_TAIL(&ids, eqid, entry);
1261 if (*ntrees >= *nalloc) {
1262 struct enumerated_tree *new;
1263 new = recallocarray(*trees, *nalloc, *nalloc + 16,
1266 err = got_error_from_errno("malloc");
1272 tree = &(*trees)[*ntrees];
1274 memcpy(&tree->id, &qid->id, sizeof(tree->id));
1275 tree->path = qid->data;
1278 tree->entries = entries;
1281 tree->nentries = nentries;
1284 got_object_qid_free(qid);
1286 } while (!STAILQ_EMPTY(&ids));
1288 if (*have_all_entries) {
1291 * We have managed to traverse all entries in the hierarchy.
1292 * Tell the main process what we have found.
1294 for (i = 0; i < *ntrees; i++) {
1295 tree = &(*trees)[i];
1296 err = got_privsep_send_enumerated_tree(totlen,
1297 ibuf, &tree->id, tree->path, tree->entries,
1305 free(tree->entries);
1306 tree->entries = NULL;
1308 *ntrees = 0; /* don't loop again below to free memory */
1310 err = send_tree_enumeration_done(ibuf);
1313 * We can only load fully packed tree hierarchies on
1314 * behalf of the main process, otherwise the main process
1315 * gets a wrong idea about which tree objects have
1316 * already been traversed.
1317 * Indicate a missing entry for the root of this tree.
1318 * The main process should continue by loading this
1319 * entire tree the slow way.
1321 err = got_privsep_send_enumerated_tree(totlen, ibuf,
1322 tree_id, "/", NULL, -1);
1329 for (i = 0; i < *ntrees; i++) {
1330 tree = &(*trees)[i];
1335 free(tree->entries);
1336 tree->entries = NULL;
1340 got_object_qid_free(qid);
1341 got_object_id_queue_free(&ids);
1343 if (err->code == GOT_ERR_PRIVSEP_PIPE)
1346 got_privsep_send_error(ibuf, err);
1352 static const struct got_error *
1353 enumeration_request(struct imsg *imsg, struct imsgbuf *ibuf,
1354 struct got_pack *pack, struct got_packidx *packidx,
1355 struct got_object_cache *objcache)
1357 const struct got_error *err = NULL;
1358 struct got_object_id_queue commit_ids;
1359 const struct got_object_id_queue *parents = NULL;
1360 struct got_object_qid *qid = NULL;
1361 struct got_object *obj = NULL;
1362 struct got_commit_object *commit = NULL;
1363 struct got_object_id *tree_id = NULL;
1365 struct got_object_idset *idset;
1366 int i, idx, have_all_entries = 1;
1367 struct enumerated_tree *trees = NULL;
1368 size_t ntrees = 0, nalloc = 16;
1370 STAILQ_INIT(&commit_ids);
1372 trees = calloc(nalloc, sizeof(*trees));
1374 return got_error_from_errno("calloc");
1376 idset = got_object_idset_alloc();
1377 if (idset == NULL) {
1378 err = got_error_from_errno("got_object_idset_alloc");
1382 err = recv_object_id_queue(&commit_ids, ibuf);
1386 if (STAILQ_EMPTY(&commit_ids)) {
1387 err = got_error(GOT_ERR_PRIVSEP_MSG);
1391 err = recv_object_ids(idset, ibuf);
1395 while (!STAILQ_EMPTY(&commit_ids)) {
1396 if (sigint_received) {
1397 err = got_error(GOT_ERR_CANCELLED);
1401 qid = STAILQ_FIRST(&commit_ids);
1402 STAILQ_REMOVE_HEAD(&commit_ids, entry);
1404 if (got_object_idset_contains(idset, &qid->id)) {
1405 got_object_qid_free(qid);
1410 idx = got_packidx_get_object_idx(packidx, &qid->id);
1412 have_all_entries = 0;
1416 err = open_object(&obj, pack, packidx, idx, &qid->id,
1420 if (obj->type == GOT_OBJ_TYPE_TAG) {
1421 struct got_tag_object *tag;
1424 err = got_packfile_extract_object_to_mem(&buf,
1429 err = got_object_parse_tag(&tag, buf, len);
1434 idx = got_packidx_get_object_idx(packidx, &tag->id);
1436 have_all_entries = 0;
1439 err = open_commit(&commit, pack, packidx, idx,
1440 &tag->id, objcache);
1441 got_object_tag_close(tag);
1445 } else if (obj->type == GOT_OBJ_TYPE_COMMIT) {
1446 err = open_commit(&commit, pack, packidx, idx,
1447 &qid->id, objcache);
1451 err = got_error(GOT_ERR_OBJ_TYPE);
1454 got_object_close(obj);
1457 err = got_privsep_send_enumerated_commit(ibuf, &qid->id,
1458 got_object_commit_get_committer_time(commit));
1462 tree_id = got_object_commit_get_tree_id(commit);
1463 idx = got_packidx_get_object_idx(packidx, tree_id);
1465 have_all_entries = 0;
1466 err = got_privsep_send_enumerated_tree(&totlen, ibuf,
1467 tree_id, "/", NULL, -1);
1473 if (got_object_idset_contains(idset, tree_id)) {
1474 got_object_qid_free(qid);
1479 err = enumerate_tree(&have_all_entries, ibuf, &totlen,
1480 tree_id, "/", pack, packidx, objcache, idset,
1481 &trees, &nalloc, &ntrees);
1485 if (!have_all_entries)
1488 got_object_qid_free(qid);
1491 parents = got_object_commit_get_parent_ids(commit);
1493 struct got_object_qid *pid;
1494 STAILQ_FOREACH(pid, parents, entry) {
1495 if (got_object_idset_contains(idset, &pid->id))
1497 err = got_object_qid_alloc_partial(&qid);
1500 memcpy(&qid->id, &pid->id, sizeof(qid->id));
1501 STAILQ_INSERT_TAIL(&commit_ids, qid, entry);
1506 got_object_commit_close(commit);
1510 if (have_all_entries) {
1511 err = got_privsep_send_object_enumeration_done(ibuf);
1515 err = got_privsep_send_object_enumeration_incomplete(ibuf);
1521 got_object_close(obj);
1523 got_object_commit_close(commit);
1524 got_object_qid_free(qid);
1525 got_object_id_queue_free(&commit_ids);
1527 got_object_idset_free(idset);
1528 for (i = 0; i < ntrees; i++) {
1529 struct enumerated_tree *tree = &trees[i];
1532 free(tree->entries);
1538 enum findtwixt_color {
1545 static const struct got_error *
1546 paint_commit(struct got_object_qid *qid, intptr_t color)
1548 if (color < 0 || color >= COLOR_MAX)
1549 return got_error(GOT_ERR_RANGE);
1551 qid->data = (void *)color;
1555 static const struct got_error *
1556 queue_commit_id(struct got_object_id_queue *ids, struct got_object_id *id,
1559 const struct got_error *err;
1560 struct got_object_qid *qid;
1562 err = got_object_qid_alloc_partial(&qid);
1566 memcpy(&qid->id, id, sizeof(qid->id));
1567 STAILQ_INSERT_TAIL(ids, qid, entry);
1568 return paint_commit(qid, color);
1571 static const struct got_error *
1572 paint_commits(struct got_object_id_queue *ids, int *nids,
1573 struct got_object_idset *keep, struct got_object_idset *drop,
1574 struct got_object_idset *skip, struct got_pack *pack,
1575 struct got_packidx *packidx, struct imsgbuf *ibuf,
1576 struct got_object_cache *objcache)
1578 const struct got_error *err = NULL;
1579 struct got_commit_object *commit = NULL;
1580 struct got_object_id_queue painted;
1581 const struct got_object_id_queue *parents;
1582 struct got_object_qid *qid = NULL;
1583 int nqueued = *nids, nskip = 0, npainted = 0;
1585 STAILQ_INIT(&painted);
1587 while (!STAILQ_EMPTY(ids) && nskip != nqueued) {
1591 if (sigint_received) {
1592 err = got_error(GOT_ERR_CANCELLED);
1596 qid = STAILQ_FIRST(ids);
1597 idx = got_packidx_get_object_idx(packidx, &qid->id);
1603 STAILQ_REMOVE_HEAD(ids, entry);
1605 color = (intptr_t)qid->data;
1606 if (color == COLOR_SKIP)
1609 if (got_object_idset_contains(skip, &qid->id)) {
1610 got_object_qid_free(qid);
1617 if (got_object_idset_contains(keep, &qid->id)) {
1618 got_object_qid_free(qid);
1622 if (got_object_idset_contains(drop, &qid->id)) {
1623 err = paint_commit(qid, COLOR_SKIP);
1627 err = got_object_idset_add(keep, &qid->id, NULL);
1632 if (got_object_idset_contains(drop, &qid->id)) {
1633 got_object_qid_free(qid);
1637 if (got_object_idset_contains(keep, &qid->id)) {
1638 err = paint_commit(qid, COLOR_SKIP);
1642 err = got_object_idset_add(drop, &qid->id, NULL);
1647 if (!got_object_idset_contains(skip, &qid->id)) {
1648 err = got_object_idset_add(skip, &qid->id,
1655 /* should not happen */
1656 err = got_error_fmt(GOT_ERR_NOT_IMPL,
1657 "%s invalid commit color %"PRIdPTR, __func__,
1662 err = open_commit(&commit, pack, packidx, idx, &qid->id,
1667 parents = got_object_commit_get_parent_ids(commit);
1669 struct got_object_qid *pid;
1670 color = (intptr_t)qid->data;
1671 STAILQ_FOREACH(pid, parents, entry) {
1672 err = queue_commit_id(ids, &pid->id, color);
1676 if (color == COLOR_SKIP)
1681 got_object_commit_close(commit);
1684 STAILQ_INSERT_TAIL(&painted, qid, entry);
1688 err = got_privsep_send_painted_commits(ibuf, &painted,
1694 err = got_privsep_send_painted_commits(ibuf, &painted, &npainted, 1, 1);
1701 got_object_commit_close(commit);
1702 got_object_qid_free(qid);
1707 commit_painting_free(struct got_object_idset **keep,
1708 struct got_object_idset **drop,
1709 struct got_object_idset **skip)
1712 got_object_idset_free(*keep);
1716 got_object_idset_free(*drop);
1720 got_object_idset_free(*skip);
1725 static const struct got_error *
1726 commit_painting_init(struct imsgbuf *ibuf, struct got_object_idset **keep,
1727 struct got_object_idset **drop, struct got_object_idset **skip)
1729 const struct got_error *err = NULL;
1731 *keep = got_object_idset_alloc();
1732 if (*keep == NULL) {
1733 err = got_error_from_errno("got_object_idset_alloc");
1736 *drop = got_object_idset_alloc();
1737 if (*drop == NULL) {
1738 err = got_error_from_errno("got_object_idset_alloc");
1741 *skip = got_object_idset_alloc();
1742 if (*skip == NULL) {
1743 err = got_error_from_errno("got_object_idset_alloc");
1747 err = recv_object_ids(*keep, ibuf);
1750 err = recv_object_ids(*drop, ibuf);
1753 err = recv_object_ids(*skip, ibuf);
1759 commit_painting_free(keep, drop, skip);
1764 static const struct got_error *
1765 commit_painting_request(struct imsg *imsg, struct imsgbuf *ibuf,
1766 struct got_pack *pack, struct got_packidx *packidx,
1767 struct got_object_cache *objcache, struct got_object_idset *keep,
1768 struct got_object_idset *drop, struct got_object_idset *skip)
1770 const struct got_error *err = NULL;
1771 struct got_imsg_commit_painting_request ireq;
1772 struct got_object_id id;
1774 struct got_object_id_queue ids;
1779 datalen = imsg->hdr.len - IMSG_HEADER_SIZE;
1780 if (datalen != sizeof(ireq))
1781 return got_error(GOT_ERR_PRIVSEP_LEN);
1782 memcpy(&ireq, imsg->data, sizeof(ireq));
1783 memcpy(id.sha1, ireq.id, SHA1_DIGEST_LENGTH);
1785 err = queue_commit_id(&ids, &id, ireq.color);
1790 err = paint_commits(&ids, &nids, keep, drop, skip,
1791 pack, packidx, ibuf, objcache);
1795 err = got_privsep_send_painted_commits(ibuf, &ids, &nids, 0, 1);
1799 err = got_privsep_send_painting_commits_done(ibuf);
1801 got_object_id_queue_free(&ids);
1805 static const struct got_error *
1806 receive_pack(struct got_pack **packp, struct imsgbuf *ibuf)
1808 const struct got_error *err = NULL;
1810 struct got_imsg_pack ipack;
1812 struct got_pack *pack;
1816 err = got_privsep_recv_imsg(&imsg, ibuf, 0);
1820 pack = calloc(1, sizeof(*pack));
1822 err = got_error_from_errno("calloc");
1826 if (imsg.hdr.type != GOT_IMSG_PACK) {
1827 err = got_error(GOT_ERR_PRIVSEP_MSG);
1831 if (imsg.fd == -1) {
1832 err = got_error(GOT_ERR_PRIVSEP_NO_FD);
1836 datalen = imsg.hdr.len - IMSG_HEADER_SIZE;
1837 if (datalen != sizeof(ipack)) {
1838 err = got_error(GOT_ERR_PRIVSEP_LEN);
1841 memcpy(&ipack, imsg.data, sizeof(ipack));
1843 pack->filesize = ipack.filesize;
1844 pack->fd = dup(imsg.fd);
1845 if (pack->fd == -1) {
1846 err = got_error_from_errno("dup");
1849 if (lseek(pack->fd, 0, SEEK_SET) == -1) {
1850 err = got_error_from_errno("lseek");
1853 pack->path_packfile = strdup(ipack.path_packfile);
1854 if (pack->path_packfile == NULL) {
1855 err = got_error_from_errno("strdup");
1859 err = got_delta_cache_alloc(&pack->delta_cache);
1863 #ifndef GOT_PACK_NO_MMAP
1864 if (pack->filesize > 0 && pack->filesize <= SIZE_MAX) {
1865 pack->map = mmap(NULL, pack->filesize, PROT_READ, MAP_PRIVATE,
1867 if (pack->map == MAP_FAILED)
1868 pack->map = NULL; /* fall back to read(2) */
1883 main(int argc, char *argv[])
1885 const struct got_error *err = NULL;
1886 struct imsgbuf ibuf;
1888 struct got_packidx *packidx = NULL;
1889 struct got_pack *pack = NULL;
1890 struct got_object_cache objcache;
1891 FILE *basefile = NULL, *accumfile = NULL, *delta_outfile = NULL;
1892 struct got_object_idset *keep = NULL, *drop = NULL, *skip = NULL;
1893 struct got_parsed_tree_entry *entries = NULL;
1894 size_t nentries = 0, nentries_alloc = 0;
1896 //static int attached;
1897 //while (!attached) sleep(1);
1899 signal(SIGINT, catch_sigint);
1901 imsg_init(&ibuf, GOT_IMSG_FD_CHILD);
1903 err = got_object_cache_init(&objcache, GOT_OBJECT_CACHE_TYPE_OBJ);
1905 err = got_error_from_errno("got_object_cache_init");
1906 got_privsep_send_error(&ibuf, err);
1911 /* revoke access to most system calls */
1912 if (pledge("stdio recvfd", NULL) == -1) {
1913 err = got_error_from_errno("pledge");
1914 got_privsep_send_error(&ibuf, err);
1919 err = receive_packidx(&packidx, &ibuf);
1921 got_privsep_send_error(&ibuf, err);
1925 err = receive_pack(&pack, &ibuf);
1927 got_privsep_send_error(&ibuf, err);
1934 if (sigint_received) {
1935 err = got_error(GOT_ERR_CANCELLED);
1939 err = got_privsep_recv_imsg(&imsg, &ibuf, 0);
1941 if (err->code == GOT_ERR_PRIVSEP_PIPE)
1946 if (imsg.hdr.type == GOT_IMSG_STOP)
1949 switch (imsg.hdr.type) {
1950 case GOT_IMSG_TMPFD:
1951 if (basefile == NULL) {
1952 err = receive_tempfile(&basefile, "w+",
1954 } else if (accumfile == NULL) {
1955 err = receive_tempfile(&accumfile, "w+",
1958 err = got_error(GOT_ERR_PRIVSEP_MSG);
1960 case GOT_IMSG_PACKED_OBJECT_REQUEST:
1961 err = object_request(&imsg, &ibuf, pack, packidx,
1964 case GOT_IMSG_PACKED_RAW_OBJECT_REQUEST:
1965 if (basefile == NULL || accumfile == NULL) {
1966 err = got_error(GOT_ERR_PRIVSEP_MSG);
1969 err = raw_object_request(&imsg, &ibuf, pack, packidx,
1970 &objcache, basefile, accumfile);
1972 case GOT_IMSG_RAW_DELTA_OUTFD:
1973 if (delta_outfile != NULL) {
1974 err = got_error(GOT_ERR_PRIVSEP_MSG);
1977 err = receive_tempfile(&delta_outfile, "w",
1980 case GOT_IMSG_RAW_DELTA_REQUEST:
1981 if (delta_outfile == NULL) {
1982 err = got_error(GOT_ERR_PRIVSEP_NO_FD);
1985 err = raw_delta_request(&imsg, &ibuf, delta_outfile,
1988 case GOT_IMSG_DELTA_REUSE_REQUEST:
1989 err = delta_reuse_request(&imsg, &ibuf, pack, packidx);
1991 case GOT_IMSG_COMMIT_REQUEST:
1992 err = commit_request(&imsg, &ibuf, pack, packidx,
1995 case GOT_IMSG_TREE_REQUEST:
1996 err = tree_request(&imsg, &ibuf, pack, packidx,
1997 &objcache, &entries, &nentries, &nentries_alloc);
1999 case GOT_IMSG_BLOB_REQUEST:
2000 if (basefile == NULL || accumfile == NULL) {
2001 err = got_error(GOT_ERR_PRIVSEP_MSG);
2004 err = blob_request(&imsg, &ibuf, pack, packidx,
2005 &objcache, basefile, accumfile);
2007 case GOT_IMSG_TAG_REQUEST:
2008 err = tag_request(&imsg, &ibuf, pack, packidx,
2011 case GOT_IMSG_COMMIT_TRAVERSAL_REQUEST:
2012 err = commit_traversal_request(&imsg, &ibuf, pack,
2013 packidx, &objcache);
2015 case GOT_IMSG_OBJECT_ENUMERATION_REQUEST:
2016 err = enumeration_request(&imsg, &ibuf, pack,
2017 packidx, &objcache);
2019 case GOT_IMSG_COMMIT_PAINTING_INIT:
2020 commit_painting_free(&keep, &drop, &skip);
2021 err = commit_painting_init(&ibuf, &keep, &drop, &skip);
2023 case GOT_IMSG_COMMIT_PAINTING_REQUEST:
2024 if (keep == NULL || drop == NULL || skip == NULL) {
2025 err = got_error(GOT_ERR_PRIVSEP_MSG);
2028 err = commit_painting_request(&imsg, &ibuf, pack,
2029 packidx, &objcache, keep, drop, skip);
2031 case GOT_IMSG_COMMIT_PAINTING_DONE:
2032 commit_painting_free(&keep, &drop, &skip);
2035 err = got_error(GOT_ERR_PRIVSEP_MSG);
2039 if (imsg.fd != -1 && close(imsg.fd) == -1 && err == NULL)
2040 err = got_error_from_errno("close");
2047 commit_painting_free(&keep, &drop, &skip);
2049 got_packidx_close(packidx);
2051 got_pack_close(pack);
2052 got_object_cache_close(&objcache);
2054 if (basefile && fclose(basefile) == EOF && err == NULL)
2055 err = got_error_from_errno("fclose");
2056 if (accumfile && fclose(accumfile) == EOF && err == NULL)
2057 err = got_error_from_errno("fclose");
2058 if (delta_outfile && fclose(delta_outfile) == EOF && err == NULL)
2059 err = got_error_from_errno("fclose");
2061 if (!sigint_received && err->code != GOT_ERR_PRIVSEP_PIPE) {
2062 fprintf(stderr, "%s: %s\n", getprogname(), err->msg);
2063 got_privsep_send_error(&ibuf, err);
2066 if (close(GOT_IMSG_FD_CHILD) == -1 && err == NULL)
2067 err = got_error_from_errno("close");