Blob


1 /*
2 * Copyright (c) 2019 Ori Bernstein <ori@openbsd.org>
3 * Copyright (c) 2020 Stefan Sperling <stsp@openbsd.org>
4 *
5 * Permission to use, copy, modify, and distribute this software for any
6 * purpose with or without fee is hereby granted, provided that the above
7 * copyright notice and this permission notice appear in all copies.
8 *
9 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16 */
18 #include <sys/types.h>
19 #include <sys/queue.h>
20 #include <sys/mman.h>
21 #include <sys/uio.h>
23 #include <sha1.h>
24 #include <sha2.h>
25 #include <stdint.h>
26 #include <stdio.h>
27 #include <stdlib.h>
28 #include <string.h>
29 #include <imsg.h>
30 #include <limits.h>
31 #include <time.h>
32 #include <unistd.h>
34 #include "got_error.h"
35 #include "got_object.h"
37 #include "got_lib_delta.h"
38 #include "got_lib_delta_cache.h"
39 #include "got_lib_hash.h"
40 #include "got_lib_object.h"
41 #include "got_lib_privsep.h"
42 #include "got_lib_ratelimit.h"
43 #include "got_lib_pack.h"
44 #include "got_lib_pack_index.h"
46 #ifndef nitems
47 #define nitems(_a) (sizeof((_a)) / sizeof((_a)[0]))
48 #endif
50 static const struct got_error *
51 send_index_pack_progress(void *arg, uint32_t nobj_total, uint32_t nobj_indexed,
52 uint32_t nobj_loose, uint32_t nobj_resolved)
53 {
54 struct imsgbuf *ibuf = arg;
55 struct got_imsg_index_pack_progress iprogress;
57 iprogress.nobj_total = nobj_total;
58 iprogress.nobj_indexed = nobj_indexed;
59 iprogress.nobj_loose = nobj_loose;
60 iprogress.nobj_resolved = nobj_resolved;
62 if (imsg_compose(ibuf, GOT_IMSG_IDXPACK_PROGRESS, 0, 0, -1,
63 &iprogress, sizeof(iprogress)) == -1)
64 return got_error_from_errno("imsg_compose IDXPACK_PROGRESS");
66 return got_privsep_flush_imsg(ibuf);
67 }
69 static const struct got_error *
70 send_index_pack_done(struct imsgbuf *ibuf)
71 {
72 if (imsg_compose(ibuf, GOT_IMSG_IDXPACK_DONE, 0, 0, -1, NULL, 0) == -1)
73 return got_error_from_errno("imsg_compose FETCH");
74 return got_privsep_flush_imsg(ibuf);
75 }
78 int
79 main(int argc, char **argv)
80 {
81 const struct got_error *err = NULL, *close_err;
82 struct imsgbuf ibuf;
83 struct imsg imsg;
84 size_t i;
85 int idxfd = -1, tmpfd = -1;
86 FILE *tmpfiles[3];
87 struct got_pack pack;
88 uint8_t pack_hash[SHA1_DIGEST_LENGTH];
89 off_t packfile_size;
90 struct got_ratelimit rl;
91 #if 0
92 static int attached;
93 while (!attached)
94 sleep(1);
95 #endif
97 got_ratelimit_init(&rl, 0, 500);
99 for (i = 0; i < nitems(tmpfiles); i++)
100 tmpfiles[i] = NULL;
102 memset(&pack, 0, sizeof(pack));
103 pack.fd = -1;
104 err = got_delta_cache_alloc(&pack.delta_cache);
105 if (err)
106 goto done;
108 imsg_init(&ibuf, GOT_IMSG_FD_CHILD);
109 #ifndef PROFILE
110 /* revoke access to most system calls */
111 if (pledge("stdio recvfd", NULL) == -1) {
112 err = got_error_from_errno("pledge");
113 got_privsep_send_error(&ibuf, err);
114 return 1;
116 #endif
117 err = got_privsep_recv_imsg(&imsg, &ibuf, 0);
118 if (err)
119 goto done;
120 if (imsg.hdr.type == GOT_IMSG_STOP)
121 goto done;
122 if (imsg.hdr.type != GOT_IMSG_IDXPACK_REQUEST) {
123 err = got_error(GOT_ERR_PRIVSEP_MSG);
124 goto done;
126 if (imsg.hdr.len - IMSG_HEADER_SIZE != sizeof(pack_hash)) {
127 err = got_error(GOT_ERR_PRIVSEP_LEN);
128 goto done;
130 memcpy(pack_hash, imsg.data, sizeof(pack_hash));
131 pack.fd = imsg.fd;
133 err = got_privsep_recv_imsg(&imsg, &ibuf, 0);
134 if (err)
135 goto done;
136 if (imsg.hdr.type == GOT_IMSG_STOP)
137 goto done;
138 if (imsg.hdr.type != GOT_IMSG_IDXPACK_OUTFD) {
139 err = got_error(GOT_ERR_PRIVSEP_MSG);
140 goto done;
142 if (imsg.hdr.len - IMSG_HEADER_SIZE != 0) {
143 err = got_error(GOT_ERR_PRIVSEP_LEN);
144 goto done;
146 idxfd = imsg.fd;
148 for (i = 0; i < nitems(tmpfiles); i++) {
149 err = got_privsep_recv_imsg(&imsg, &ibuf, 0);
150 if (err)
151 goto done;
152 if (imsg.hdr.type == GOT_IMSG_STOP)
153 goto done;
154 if (imsg.hdr.type != GOT_IMSG_TMPFD) {
155 err = got_error(GOT_ERR_PRIVSEP_MSG);
156 goto done;
158 if (imsg.hdr.len - IMSG_HEADER_SIZE != 0) {
159 err = got_error(GOT_ERR_PRIVSEP_LEN);
160 goto done;
162 tmpfd = imsg.fd;
163 tmpfiles[i] = fdopen(tmpfd, "w+");
164 if (tmpfiles[i] == NULL) {
165 err = got_error_from_errno("fdopen");
166 goto done;
168 tmpfd = -1;
171 if (lseek(pack.fd, 0, SEEK_END) == -1) {
172 err = got_error_from_errno("lseek");
173 goto done;
175 packfile_size = lseek(pack.fd, 0, SEEK_CUR);
176 if (packfile_size == -1) {
177 err = got_error_from_errno("lseek");
178 goto done;
180 pack.filesize = packfile_size;
182 if (lseek(pack.fd, 0, SEEK_SET) == -1) {
183 err = got_error_from_errno("lseek");
184 goto done;
187 #ifndef GOT_PACK_NO_MMAP
188 if (pack.filesize > 0 && pack.filesize <= SIZE_MAX) {
189 pack.map = mmap(NULL, pack.filesize, PROT_READ, MAP_PRIVATE,
190 pack.fd, 0);
191 if (pack.map == MAP_FAILED)
192 pack.map = NULL; /* fall back to read(2) */
194 #endif
195 err = got_pack_index(&pack, idxfd, tmpfiles[0], tmpfiles[1],
196 tmpfiles[2], pack_hash, send_index_pack_progress, &ibuf, &rl);
197 done:
198 close_err = got_pack_close(&pack);
199 if (close_err && err == NULL)
200 err = close_err;
201 if (idxfd != -1 && close(idxfd) == -1 && err == NULL)
202 err = got_error_from_errno("close");
203 if (tmpfd != -1 && close(tmpfd) == -1 && err == NULL)
204 err = got_error_from_errno("close");
205 for (i = 0; i < nitems(tmpfiles); i++) {
206 if (tmpfiles[i] != NULL && fclose(tmpfiles[i]) == EOF &&
207 err == NULL)
208 err = got_error_from_errno("fclose");
211 if (err == NULL)
212 err = send_index_pack_done(&ibuf);
213 if (err) {
214 got_privsep_send_error(&ibuf, err);
215 fprintf(stderr, "%s: %s\n", getprogname(), err->msg);
216 got_privsep_send_error(&ibuf, err);
217 exit(1);
220 exit(0);