Blame


1 3efd8e31 2022-10-23 thomas /*
2 3efd8e31 2022-10-23 thomas * Copyright (c) 2022 Stefan Sperling <stsp@openbsd.org>
3 3efd8e31 2022-10-23 thomas *
4 3efd8e31 2022-10-23 thomas * Permission to use, copy, modify, and distribute this software for any
5 3efd8e31 2022-10-23 thomas * purpose with or without fee is hereby granted, provided that the above
6 3efd8e31 2022-10-23 thomas * copyright notice and this permission notice appear in all copies.
7 3efd8e31 2022-10-23 thomas *
8 3efd8e31 2022-10-23 thomas * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 3efd8e31 2022-10-23 thomas * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 3efd8e31 2022-10-23 thomas * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 3efd8e31 2022-10-23 thomas * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 3efd8e31 2022-10-23 thomas * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 3efd8e31 2022-10-23 thomas * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 3efd8e31 2022-10-23 thomas * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 3efd8e31 2022-10-23 thomas */
16 3efd8e31 2022-10-23 thomas
17 3efd8e31 2022-10-23 thomas #include <sys/queue.h>
18 3efd8e31 2022-10-23 thomas #include <sys/stat.h>
19 3efd8e31 2022-10-23 thomas #include <sys/tree.h>
20 3efd8e31 2022-10-23 thomas #include <sys/types.h>
21 3efd8e31 2022-10-23 thomas
22 3efd8e31 2022-10-23 thomas #include <event.h>
23 3efd8e31 2022-10-23 thomas #include <errno.h>
24 3efd8e31 2022-10-23 thomas #include <imsg.h>
25 3efd8e31 2022-10-23 thomas #include <signal.h>
26 3efd8e31 2022-10-23 thomas #include <siphash.h>
27 3efd8e31 2022-10-23 thomas #include <stdio.h>
28 3efd8e31 2022-10-23 thomas #include <stdlib.h>
29 3efd8e31 2022-10-23 thomas #include <string.h>
30 3efd8e31 2022-10-23 thomas #include <limits.h>
31 3efd8e31 2022-10-23 thomas #include <poll.h>
32 3efd8e31 2022-10-23 thomas #include <sha1.h>
33 3efd8e31 2022-10-23 thomas #include <unistd.h>
34 3efd8e31 2022-10-23 thomas #include <zlib.h>
35 3efd8e31 2022-10-23 thomas
36 3efd8e31 2022-10-23 thomas #include "buf.h"
37 3efd8e31 2022-10-23 thomas
38 3efd8e31 2022-10-23 thomas #include "got_error.h"
39 3efd8e31 2022-10-23 thomas #include "got_repository.h"
40 3efd8e31 2022-10-23 thomas #include "got_object.h"
41 3efd8e31 2022-10-23 thomas #include "got_reference.h"
42 3efd8e31 2022-10-23 thomas #include "got_path.h"
43 3efd8e31 2022-10-23 thomas
44 3efd8e31 2022-10-23 thomas #include "got_lib_delta.h"
45 3efd8e31 2022-10-23 thomas #include "got_lib_delta_cache.h"
46 3efd8e31 2022-10-23 thomas #include "got_lib_object.h"
47 3efd8e31 2022-10-23 thomas #include "got_lib_object_cache.h"
48 3efd8e31 2022-10-23 thomas #include "got_lib_ratelimit.h"
49 3efd8e31 2022-10-23 thomas #include "got_lib_pack.h"
50 3efd8e31 2022-10-23 thomas #include "got_lib_pack_index.h"
51 3efd8e31 2022-10-23 thomas #include "got_lib_repository.h"
52 3efd8e31 2022-10-23 thomas #include "got_lib_poll.h"
53 3efd8e31 2022-10-23 thomas
54 3efd8e31 2022-10-23 thomas #include "got_lib_sha1.h" /* XXX temp include for debugging */
55 3efd8e31 2022-10-23 thomas
56 3efd8e31 2022-10-23 thomas #include "log.h"
57 3efd8e31 2022-10-23 thomas #include "gotd.h"
58 3efd8e31 2022-10-23 thomas #include "repo_write.h"
59 3efd8e31 2022-10-23 thomas
60 3efd8e31 2022-10-23 thomas #ifndef nitems
61 3efd8e31 2022-10-23 thomas #define nitems(_a) (sizeof((_a)) / sizeof((_a)[0]))
62 3efd8e31 2022-10-23 thomas #endif
63 3efd8e31 2022-10-23 thomas
64 3efd8e31 2022-10-23 thomas static struct repo_write {
65 3efd8e31 2022-10-23 thomas pid_t pid;
66 3efd8e31 2022-10-23 thomas const char *title;
67 3efd8e31 2022-10-23 thomas struct got_repository *repo;
68 3efd8e31 2022-10-23 thomas int *pack_fds;
69 3efd8e31 2022-10-23 thomas int *temp_fds;
70 62ee7d94 2023-01-10 thomas int session_fd;
71 62ee7d94 2023-01-10 thomas struct gotd_imsgev session_iev;
72 3efd8e31 2022-10-23 thomas } repo_write;
73 3efd8e31 2022-10-23 thomas
74 3efd8e31 2022-10-23 thomas struct gotd_ref_update {
75 3efd8e31 2022-10-23 thomas STAILQ_ENTRY(gotd_ref_update) entry;
76 3efd8e31 2022-10-23 thomas struct got_reference *ref;
77 3efd8e31 2022-10-23 thomas int ref_is_new;
78 49563dfb 2023-01-28 thomas int delete_ref;
79 3efd8e31 2022-10-23 thomas struct got_object_id old_id;
80 3efd8e31 2022-10-23 thomas struct got_object_id new_id;
81 3efd8e31 2022-10-23 thomas };
82 3efd8e31 2022-10-23 thomas STAILQ_HEAD(gotd_ref_updates, gotd_ref_update);
83 3efd8e31 2022-10-23 thomas
84 9148c8a7 2023-01-02 thomas static struct repo_write_client {
85 3efd8e31 2022-10-23 thomas uint32_t id;
86 3efd8e31 2022-10-23 thomas int fd;
87 3efd8e31 2022-10-23 thomas int pack_pipe[2];
88 3efd8e31 2022-10-23 thomas struct got_pack pack;
89 3efd8e31 2022-10-23 thomas uint8_t pack_sha1[SHA1_DIGEST_LENGTH];
90 3efd8e31 2022-10-23 thomas int packidx_fd;
91 3efd8e31 2022-10-23 thomas struct gotd_ref_updates ref_updates;
92 3efd8e31 2022-10-23 thomas int nref_updates;
93 49563dfb 2023-01-28 thomas int nref_del;
94 d98779cd 2023-01-19 thomas int nref_new;
95 9148c8a7 2023-01-02 thomas } repo_write_client;
96 3efd8e31 2022-10-23 thomas
97 3efd8e31 2022-10-23 thomas static volatile sig_atomic_t sigint_received;
98 3efd8e31 2022-10-23 thomas static volatile sig_atomic_t sigterm_received;
99 3efd8e31 2022-10-23 thomas
100 3efd8e31 2022-10-23 thomas static void
101 3efd8e31 2022-10-23 thomas catch_sigint(int signo)
102 3efd8e31 2022-10-23 thomas {
103 3efd8e31 2022-10-23 thomas sigint_received = 1;
104 3efd8e31 2022-10-23 thomas }
105 3efd8e31 2022-10-23 thomas
106 3efd8e31 2022-10-23 thomas static void
107 3efd8e31 2022-10-23 thomas catch_sigterm(int signo)
108 3efd8e31 2022-10-23 thomas {
109 3efd8e31 2022-10-23 thomas sigterm_received = 1;
110 3efd8e31 2022-10-23 thomas }
111 3efd8e31 2022-10-23 thomas
112 3efd8e31 2022-10-23 thomas static const struct got_error *
113 3efd8e31 2022-10-23 thomas check_cancelled(void *arg)
114 3efd8e31 2022-10-23 thomas {
115 3efd8e31 2022-10-23 thomas if (sigint_received || sigterm_received)
116 3efd8e31 2022-10-23 thomas return got_error(GOT_ERR_CANCELLED);
117 3efd8e31 2022-10-23 thomas
118 3efd8e31 2022-10-23 thomas return NULL;
119 3efd8e31 2022-10-23 thomas }
120 3efd8e31 2022-10-23 thomas
121 3efd8e31 2022-10-23 thomas static const struct got_error *
122 3efd8e31 2022-10-23 thomas send_peeled_tag_ref(struct got_reference *ref, struct got_object *obj,
123 3efd8e31 2022-10-23 thomas struct imsgbuf *ibuf)
124 3efd8e31 2022-10-23 thomas {
125 3efd8e31 2022-10-23 thomas const struct got_error *err = NULL;
126 3efd8e31 2022-10-23 thomas struct got_tag_object *tag;
127 3efd8e31 2022-10-23 thomas size_t namelen, len;
128 3efd8e31 2022-10-23 thomas char *peeled_refname = NULL;
129 3efd8e31 2022-10-23 thomas struct got_object_id *id;
130 3efd8e31 2022-10-23 thomas struct ibuf *wbuf;
131 3efd8e31 2022-10-23 thomas
132 3efd8e31 2022-10-23 thomas err = got_object_tag_open(&tag, repo_write.repo, obj);
133 3efd8e31 2022-10-23 thomas if (err)
134 3efd8e31 2022-10-23 thomas return err;
135 3efd8e31 2022-10-23 thomas
136 3efd8e31 2022-10-23 thomas if (asprintf(&peeled_refname, "%s^{}", got_ref_get_name(ref)) == -1) {
137 3efd8e31 2022-10-23 thomas err = got_error_from_errno("asprintf");
138 3efd8e31 2022-10-23 thomas goto done;
139 3efd8e31 2022-10-23 thomas }
140 3efd8e31 2022-10-23 thomas
141 3efd8e31 2022-10-23 thomas id = got_object_tag_get_object_id(tag);
142 3efd8e31 2022-10-23 thomas namelen = strlen(peeled_refname);
143 3efd8e31 2022-10-23 thomas
144 3efd8e31 2022-10-23 thomas len = sizeof(struct gotd_imsg_ref) + namelen;
145 3efd8e31 2022-10-23 thomas if (len > MAX_IMSGSIZE - IMSG_HEADER_SIZE) {
146 3efd8e31 2022-10-23 thomas err = got_error(GOT_ERR_NO_SPACE);
147 3efd8e31 2022-10-23 thomas goto done;
148 3efd8e31 2022-10-23 thomas }
149 3efd8e31 2022-10-23 thomas
150 3efd8e31 2022-10-23 thomas wbuf = imsg_create(ibuf, GOTD_IMSG_REF, PROC_REPO_WRITE,
151 3efd8e31 2022-10-23 thomas repo_write.pid, len);
152 3efd8e31 2022-10-23 thomas if (wbuf == NULL) {
153 3efd8e31 2022-10-23 thomas err = got_error_from_errno("imsg_create REF");
154 3efd8e31 2022-10-23 thomas goto done;
155 3efd8e31 2022-10-23 thomas }
156 3efd8e31 2022-10-23 thomas
157 3efd8e31 2022-10-23 thomas /* Keep in sync with struct gotd_imsg_ref definition. */
158 3efd8e31 2022-10-23 thomas if (imsg_add(wbuf, id->sha1, SHA1_DIGEST_LENGTH) == -1) {
159 3efd8e31 2022-10-23 thomas err = got_error_from_errno("imsg_add REF");
160 3efd8e31 2022-10-23 thomas goto done;
161 3efd8e31 2022-10-23 thomas }
162 3efd8e31 2022-10-23 thomas if (imsg_add(wbuf, &namelen, sizeof(namelen)) == -1) {
163 3efd8e31 2022-10-23 thomas err = got_error_from_errno("imsg_add REF");
164 3efd8e31 2022-10-23 thomas goto done;
165 3efd8e31 2022-10-23 thomas }
166 3efd8e31 2022-10-23 thomas if (imsg_add(wbuf, peeled_refname, namelen) == -1) {
167 3efd8e31 2022-10-23 thomas err = got_error_from_errno("imsg_add REF");
168 3efd8e31 2022-10-23 thomas goto done;
169 3efd8e31 2022-10-23 thomas }
170 3efd8e31 2022-10-23 thomas
171 3efd8e31 2022-10-23 thomas wbuf->fd = -1;
172 3efd8e31 2022-10-23 thomas imsg_close(ibuf, wbuf);
173 3efd8e31 2022-10-23 thomas done:
174 3efd8e31 2022-10-23 thomas got_object_tag_close(tag);
175 3efd8e31 2022-10-23 thomas return err;
176 3efd8e31 2022-10-23 thomas }
177 3efd8e31 2022-10-23 thomas
178 3efd8e31 2022-10-23 thomas static const struct got_error *
179 3efd8e31 2022-10-23 thomas send_ref(struct got_reference *ref, struct imsgbuf *ibuf)
180 3efd8e31 2022-10-23 thomas {
181 3efd8e31 2022-10-23 thomas const struct got_error *err;
182 3efd8e31 2022-10-23 thomas const char *refname = got_ref_get_name(ref);
183 3efd8e31 2022-10-23 thomas size_t namelen;
184 3efd8e31 2022-10-23 thomas struct got_object_id *id = NULL;
185 3efd8e31 2022-10-23 thomas struct got_object *obj = NULL;
186 3efd8e31 2022-10-23 thomas size_t len;
187 3efd8e31 2022-10-23 thomas struct ibuf *wbuf;
188 3efd8e31 2022-10-23 thomas
189 3efd8e31 2022-10-23 thomas namelen = strlen(refname);
190 3efd8e31 2022-10-23 thomas
191 3efd8e31 2022-10-23 thomas len = sizeof(struct gotd_imsg_ref) + namelen;
192 3efd8e31 2022-10-23 thomas if (len > MAX_IMSGSIZE - IMSG_HEADER_SIZE)
193 3efd8e31 2022-10-23 thomas return got_error(GOT_ERR_NO_SPACE);
194 3efd8e31 2022-10-23 thomas
195 3efd8e31 2022-10-23 thomas err = got_ref_resolve(&id, repo_write.repo, ref);
196 3efd8e31 2022-10-23 thomas if (err)
197 3efd8e31 2022-10-23 thomas return err;
198 3efd8e31 2022-10-23 thomas
199 3efd8e31 2022-10-23 thomas wbuf = imsg_create(ibuf, GOTD_IMSG_REF, PROC_REPO_WRITE,
200 3efd8e31 2022-10-23 thomas repo_write.pid, len);
201 3efd8e31 2022-10-23 thomas if (wbuf == NULL) {
202 3efd8e31 2022-10-23 thomas err = got_error_from_errno("imsg_create REF");
203 3efd8e31 2022-10-23 thomas goto done;
204 3efd8e31 2022-10-23 thomas }
205 3efd8e31 2022-10-23 thomas
206 3efd8e31 2022-10-23 thomas /* Keep in sync with struct gotd_imsg_ref definition. */
207 3efd8e31 2022-10-23 thomas if (imsg_add(wbuf, id->sha1, SHA1_DIGEST_LENGTH) == -1)
208 3efd8e31 2022-10-23 thomas return got_error_from_errno("imsg_add REF");
209 3efd8e31 2022-10-23 thomas if (imsg_add(wbuf, &namelen, sizeof(namelen)) == -1)
210 3efd8e31 2022-10-23 thomas return got_error_from_errno("imsg_add REF");
211 3efd8e31 2022-10-23 thomas if (imsg_add(wbuf, refname, namelen) == -1)
212 3efd8e31 2022-10-23 thomas return got_error_from_errno("imsg_add REF");
213 3efd8e31 2022-10-23 thomas
214 3efd8e31 2022-10-23 thomas wbuf->fd = -1;
215 3efd8e31 2022-10-23 thomas imsg_close(ibuf, wbuf);
216 3efd8e31 2022-10-23 thomas
217 3efd8e31 2022-10-23 thomas err = got_object_open(&obj, repo_write.repo, id);
218 3efd8e31 2022-10-23 thomas if (err)
219 3efd8e31 2022-10-23 thomas goto done;
220 3efd8e31 2022-10-23 thomas if (obj->type == GOT_OBJ_TYPE_TAG)
221 3efd8e31 2022-10-23 thomas err = send_peeled_tag_ref(ref, obj, ibuf);
222 3efd8e31 2022-10-23 thomas done:
223 3efd8e31 2022-10-23 thomas if (obj)
224 3efd8e31 2022-10-23 thomas got_object_close(obj);
225 3efd8e31 2022-10-23 thomas free(id);
226 3efd8e31 2022-10-23 thomas return err;
227 3efd8e31 2022-10-23 thomas }
228 3efd8e31 2022-10-23 thomas
229 3efd8e31 2022-10-23 thomas static const struct got_error *
230 9148c8a7 2023-01-02 thomas list_refs(struct imsg *imsg)
231 3efd8e31 2022-10-23 thomas {
232 3efd8e31 2022-10-23 thomas const struct got_error *err;
233 9148c8a7 2023-01-02 thomas struct repo_write_client *client = &repo_write_client;
234 3efd8e31 2022-10-23 thomas struct got_reflist_head refs;
235 3efd8e31 2022-10-23 thomas struct got_reflist_entry *re;
236 3efd8e31 2022-10-23 thomas struct gotd_imsg_list_refs_internal ireq;
237 3efd8e31 2022-10-23 thomas size_t datalen;
238 3efd8e31 2022-10-23 thomas struct gotd_imsg_reflist irefs;
239 3efd8e31 2022-10-23 thomas struct imsgbuf ibuf;
240 3efd8e31 2022-10-23 thomas int client_fd = imsg->fd;
241 3efd8e31 2022-10-23 thomas
242 3efd8e31 2022-10-23 thomas TAILQ_INIT(&refs);
243 3efd8e31 2022-10-23 thomas
244 3efd8e31 2022-10-23 thomas if (client_fd == -1)
245 3efd8e31 2022-10-23 thomas return got_error(GOT_ERR_PRIVSEP_NO_FD);
246 3efd8e31 2022-10-23 thomas
247 3efd8e31 2022-10-23 thomas datalen = imsg->hdr.len - IMSG_HEADER_SIZE;
248 3efd8e31 2022-10-23 thomas if (datalen != sizeof(ireq))
249 3efd8e31 2022-10-23 thomas return got_error(GOT_ERR_PRIVSEP_LEN);
250 3efd8e31 2022-10-23 thomas memcpy(&ireq, imsg->data, sizeof(ireq));
251 3efd8e31 2022-10-23 thomas
252 9148c8a7 2023-01-02 thomas if (ireq.client_id == 0)
253 9148c8a7 2023-01-02 thomas return got_error(GOT_ERR_CLIENT_ID);
254 9148c8a7 2023-01-02 thomas if (client->id != 0) {
255 9148c8a7 2023-01-02 thomas return got_error_msg(GOT_ERR_CLIENT_ID,
256 9148c8a7 2023-01-02 thomas "duplicate list-refs request");
257 9148c8a7 2023-01-02 thomas }
258 9148c8a7 2023-01-02 thomas client->id = ireq.client_id;
259 9148c8a7 2023-01-02 thomas client->fd = client_fd;
260 9148c8a7 2023-01-02 thomas client->nref_updates = 0;
261 49563dfb 2023-01-28 thomas client->nref_del = 0;
262 d98779cd 2023-01-19 thomas client->nref_new = 0;
263 3efd8e31 2022-10-23 thomas
264 3efd8e31 2022-10-23 thomas imsg_init(&ibuf, client_fd);
265 3efd8e31 2022-10-23 thomas
266 3efd8e31 2022-10-23 thomas err = got_ref_list(&refs, repo_write.repo, "",
267 3efd8e31 2022-10-23 thomas got_ref_cmp_by_name, NULL);
268 3efd8e31 2022-10-23 thomas if (err)
269 3efd8e31 2022-10-23 thomas return err;
270 3efd8e31 2022-10-23 thomas
271 3efd8e31 2022-10-23 thomas memset(&irefs, 0, sizeof(irefs));
272 3efd8e31 2022-10-23 thomas TAILQ_FOREACH(re, &refs, entry) {
273 3efd8e31 2022-10-23 thomas struct got_object_id *id;
274 3efd8e31 2022-10-23 thomas int obj_type;
275 3efd8e31 2022-10-23 thomas
276 3efd8e31 2022-10-23 thomas if (got_ref_is_symbolic(re->ref))
277 3efd8e31 2022-10-23 thomas continue;
278 3efd8e31 2022-10-23 thomas
279 3efd8e31 2022-10-23 thomas irefs.nrefs++;
280 3efd8e31 2022-10-23 thomas
281 3efd8e31 2022-10-23 thomas /* Account for a peeled tag refs. */
282 3efd8e31 2022-10-23 thomas err = got_ref_resolve(&id, repo_write.repo, re->ref);
283 3efd8e31 2022-10-23 thomas if (err)
284 3efd8e31 2022-10-23 thomas goto done;
285 8652e561 2023-01-14 thomas err = got_object_get_type(&obj_type, repo_write.repo, id);
286 3efd8e31 2022-10-23 thomas free(id);
287 3efd8e31 2022-10-23 thomas if (err)
288 3efd8e31 2022-10-23 thomas goto done;
289 3efd8e31 2022-10-23 thomas if (obj_type == GOT_OBJ_TYPE_TAG)
290 3efd8e31 2022-10-23 thomas irefs.nrefs++;
291 3efd8e31 2022-10-23 thomas }
292 3efd8e31 2022-10-23 thomas
293 3efd8e31 2022-10-23 thomas if (imsg_compose(&ibuf, GOTD_IMSG_REFLIST, PROC_REPO_WRITE,
294 3efd8e31 2022-10-23 thomas repo_write.pid, -1, &irefs, sizeof(irefs)) == -1) {
295 3efd8e31 2022-10-23 thomas err = got_error_from_errno("imsg_compose REFLIST");
296 3efd8e31 2022-10-23 thomas goto done;
297 3efd8e31 2022-10-23 thomas }
298 3efd8e31 2022-10-23 thomas
299 3efd8e31 2022-10-23 thomas TAILQ_FOREACH(re, &refs, entry) {
300 3efd8e31 2022-10-23 thomas if (got_ref_is_symbolic(re->ref))
301 3efd8e31 2022-10-23 thomas continue;
302 3efd8e31 2022-10-23 thomas err = send_ref(re->ref, &ibuf);
303 3efd8e31 2022-10-23 thomas if (err)
304 3efd8e31 2022-10-23 thomas goto done;
305 3efd8e31 2022-10-23 thomas }
306 3efd8e31 2022-10-23 thomas
307 3efd8e31 2022-10-23 thomas err = gotd_imsg_flush(&ibuf);
308 3efd8e31 2022-10-23 thomas done:
309 3efd8e31 2022-10-23 thomas got_ref_list_free(&refs);
310 3efd8e31 2022-10-23 thomas imsg_clear(&ibuf);
311 3efd8e31 2022-10-23 thomas return err;
312 3efd8e31 2022-10-23 thomas }
313 3efd8e31 2022-10-23 thomas
314 3efd8e31 2022-10-23 thomas static const struct got_error *
315 3efd8e31 2022-10-23 thomas protect_ref_namespace(struct got_reference *ref, const char *namespace)
316 3efd8e31 2022-10-23 thomas {
317 3efd8e31 2022-10-23 thomas size_t len = strlen(namespace);
318 3efd8e31 2022-10-23 thomas
319 3efd8e31 2022-10-23 thomas if (len < 5 || strncmp("refs/", namespace, 5) != 0 ||
320 3efd8e31 2022-10-23 thomas namespace[len -1] != '/') {
321 3efd8e31 2022-10-23 thomas return got_error_fmt(GOT_ERR_BAD_REF_NAME,
322 3efd8e31 2022-10-23 thomas "reference namespace '%s'", namespace);
323 3efd8e31 2022-10-23 thomas }
324 3efd8e31 2022-10-23 thomas
325 3efd8e31 2022-10-23 thomas if (strncmp(namespace, got_ref_get_name(ref), len) == 0)
326 3efd8e31 2022-10-23 thomas return got_error_fmt(GOT_ERR_REFS_PROTECTED, "%s", namespace);
327 3efd8e31 2022-10-23 thomas
328 3efd8e31 2022-10-23 thomas return NULL;
329 3efd8e31 2022-10-23 thomas }
330 3efd8e31 2022-10-23 thomas
331 3efd8e31 2022-10-23 thomas static const struct got_error *
332 9148c8a7 2023-01-02 thomas recv_ref_update(struct imsg *imsg)
333 3efd8e31 2022-10-23 thomas {
334 49563dfb 2023-01-28 thomas static const char zero_id[SHA1_DIGEST_LENGTH];
335 3efd8e31 2022-10-23 thomas const struct got_error *err = NULL;
336 9148c8a7 2023-01-02 thomas struct repo_write_client *client = &repo_write_client;
337 3efd8e31 2022-10-23 thomas struct gotd_imsg_ref_update iref;
338 3efd8e31 2022-10-23 thomas size_t datalen;
339 3efd8e31 2022-10-23 thomas char *refname = NULL;
340 3efd8e31 2022-10-23 thomas struct got_reference *ref = NULL;
341 3efd8e31 2022-10-23 thomas struct got_object_id *id = NULL;
342 3efd8e31 2022-10-23 thomas struct imsgbuf ibuf;
343 3efd8e31 2022-10-23 thomas struct gotd_ref_update *ref_update = NULL;
344 3efd8e31 2022-10-23 thomas
345 3efd8e31 2022-10-23 thomas log_debug("ref-update received");
346 3efd8e31 2022-10-23 thomas
347 3efd8e31 2022-10-23 thomas datalen = imsg->hdr.len - IMSG_HEADER_SIZE;
348 3efd8e31 2022-10-23 thomas if (datalen < sizeof(iref))
349 3efd8e31 2022-10-23 thomas return got_error(GOT_ERR_PRIVSEP_LEN);
350 3efd8e31 2022-10-23 thomas memcpy(&iref, imsg->data, sizeof(iref));
351 3efd8e31 2022-10-23 thomas if (datalen != sizeof(iref) + iref.name_len)
352 3efd8e31 2022-10-23 thomas return got_error(GOT_ERR_PRIVSEP_LEN);
353 3efd8e31 2022-10-23 thomas
354 9148c8a7 2023-01-02 thomas imsg_init(&ibuf, client->fd);
355 3efd8e31 2022-10-23 thomas
356 fcbb06bf 2023-01-14 thomas refname = strndup(imsg->data + sizeof(iref), iref.name_len);
357 3efd8e31 2022-10-23 thomas if (refname == NULL)
358 fcbb06bf 2023-01-14 thomas return got_error_from_errno("strndup");
359 3efd8e31 2022-10-23 thomas
360 3efd8e31 2022-10-23 thomas ref_update = calloc(1, sizeof(*ref_update));
361 3efd8e31 2022-10-23 thomas if (ref_update == NULL) {
362 3efd8e31 2022-10-23 thomas err = got_error_from_errno("malloc");
363 3efd8e31 2022-10-23 thomas goto done;
364 3efd8e31 2022-10-23 thomas }
365 3efd8e31 2022-10-23 thomas
366 3efd8e31 2022-10-23 thomas memcpy(ref_update->old_id.sha1, iref.old_id, SHA1_DIGEST_LENGTH);
367 3efd8e31 2022-10-23 thomas memcpy(ref_update->new_id.sha1, iref.new_id, SHA1_DIGEST_LENGTH);
368 3efd8e31 2022-10-23 thomas
369 3efd8e31 2022-10-23 thomas err = got_ref_open(&ref, repo_write.repo, refname, 0);
370 3efd8e31 2022-10-23 thomas if (err) {
371 3efd8e31 2022-10-23 thomas if (err->code != GOT_ERR_NOT_REF)
372 3efd8e31 2022-10-23 thomas goto done;
373 3efd8e31 2022-10-23 thomas err = got_ref_alloc(&ref, refname, &ref_update->new_id);
374 3efd8e31 2022-10-23 thomas if (err)
375 3efd8e31 2022-10-23 thomas goto done;
376 3efd8e31 2022-10-23 thomas ref_update->ref_is_new = 1;
377 d98779cd 2023-01-19 thomas client->nref_new++;
378 3efd8e31 2022-10-23 thomas }
379 3efd8e31 2022-10-23 thomas if (got_ref_is_symbolic(ref)) {
380 3efd8e31 2022-10-23 thomas err = got_error_fmt(GOT_ERR_BAD_REF_TYPE,
381 3efd8e31 2022-10-23 thomas "'%s' is a symbolic reference and cannot "
382 3efd8e31 2022-10-23 thomas "be updated", got_ref_get_name(ref));
383 3efd8e31 2022-10-23 thomas goto done;
384 3efd8e31 2022-10-23 thomas }
385 3efd8e31 2022-10-23 thomas if (strncmp("refs/", got_ref_get_name(ref), 5) != 0) {
386 3efd8e31 2022-10-23 thomas err = got_error_fmt(GOT_ERR_BAD_REF_NAME,
387 3efd8e31 2022-10-23 thomas "%s: does not begin with 'refs/'",
388 3efd8e31 2022-10-23 thomas got_ref_get_name(ref));
389 3efd8e31 2022-10-23 thomas goto done;
390 3efd8e31 2022-10-23 thomas }
391 3efd8e31 2022-10-23 thomas
392 3efd8e31 2022-10-23 thomas err = protect_ref_namespace(ref, "refs/got/");
393 3efd8e31 2022-10-23 thomas if (err)
394 3efd8e31 2022-10-23 thomas goto done;
395 3efd8e31 2022-10-23 thomas err = protect_ref_namespace(ref, "refs/remotes/");
396 3efd8e31 2022-10-23 thomas if (err)
397 3efd8e31 2022-10-23 thomas goto done;
398 3efd8e31 2022-10-23 thomas
399 3efd8e31 2022-10-23 thomas if (!ref_update->ref_is_new) {
400 3efd8e31 2022-10-23 thomas /*
401 3efd8e31 2022-10-23 thomas * Ensure the client's idea of this update is still valid.
402 3efd8e31 2022-10-23 thomas * At this point we can only return an error, to prevent
403 3efd8e31 2022-10-23 thomas * the client from uploading a pack file which will likely
404 3efd8e31 2022-10-23 thomas * have to be discarded.
405 3efd8e31 2022-10-23 thomas */
406 3efd8e31 2022-10-23 thomas err = got_ref_resolve(&id, repo_write.repo, ref);
407 3efd8e31 2022-10-23 thomas if (err)
408 3efd8e31 2022-10-23 thomas goto done;
409 3efd8e31 2022-10-23 thomas
410 3efd8e31 2022-10-23 thomas if (got_object_id_cmp(id, &ref_update->old_id) != 0) {
411 3efd8e31 2022-10-23 thomas err = got_error_fmt(GOT_ERR_REF_BUSY,
412 3efd8e31 2022-10-23 thomas "%s has been modified by someone else "
413 3efd8e31 2022-10-23 thomas "while transaction was in progress",
414 3efd8e31 2022-10-23 thomas got_ref_get_name(ref));
415 3efd8e31 2022-10-23 thomas goto done;
416 3efd8e31 2022-10-23 thomas }
417 3efd8e31 2022-10-23 thomas }
418 3efd8e31 2022-10-23 thomas
419 3efd8e31 2022-10-23 thomas gotd_imsg_send_ack(&ref_update->new_id, &ibuf, PROC_REPO_WRITE,
420 3efd8e31 2022-10-23 thomas repo_write.pid);
421 3efd8e31 2022-10-23 thomas
422 3efd8e31 2022-10-23 thomas ref_update->ref = ref;
423 49563dfb 2023-01-28 thomas if (memcmp(ref_update->new_id.sha1, zero_id, sizeof(zero_id)) == 0) {
424 49563dfb 2023-01-28 thomas ref_update->delete_ref = 1;
425 49563dfb 2023-01-28 thomas client->nref_del++;
426 49563dfb 2023-01-28 thomas }
427 9148c8a7 2023-01-02 thomas STAILQ_INSERT_HEAD(&client->ref_updates, ref_update, entry);
428 9148c8a7 2023-01-02 thomas client->nref_updates++;
429 3efd8e31 2022-10-23 thomas ref = NULL;
430 3efd8e31 2022-10-23 thomas ref_update = NULL;
431 3efd8e31 2022-10-23 thomas done:
432 3efd8e31 2022-10-23 thomas if (ref)
433 3efd8e31 2022-10-23 thomas got_ref_close(ref);
434 3efd8e31 2022-10-23 thomas free(ref_update);
435 3efd8e31 2022-10-23 thomas free(refname);
436 3efd8e31 2022-10-23 thomas free(id);
437 3efd8e31 2022-10-23 thomas return err;
438 3efd8e31 2022-10-23 thomas }
439 3efd8e31 2022-10-23 thomas
440 3efd8e31 2022-10-23 thomas static const struct got_error *
441 3efd8e31 2022-10-23 thomas pack_index_progress(void *arg, uint32_t nobj_total, uint32_t nobj_indexed,
442 3efd8e31 2022-10-23 thomas uint32_t nobj_loose, uint32_t nobj_resolved)
443 3efd8e31 2022-10-23 thomas {
444 3efd8e31 2022-10-23 thomas int p_indexed = 0, p_resolved = 0;
445 3efd8e31 2022-10-23 thomas int nobj_delta = nobj_total - nobj_loose;
446 3efd8e31 2022-10-23 thomas
447 3efd8e31 2022-10-23 thomas if (nobj_total > 0)
448 3efd8e31 2022-10-23 thomas p_indexed = (nobj_indexed * 100) / nobj_total;
449 3efd8e31 2022-10-23 thomas
450 3efd8e31 2022-10-23 thomas if (nobj_delta > 0)
451 3efd8e31 2022-10-23 thomas p_resolved = (nobj_resolved * 100) / nobj_delta;
452 3efd8e31 2022-10-23 thomas
453 3efd8e31 2022-10-23 thomas if (p_resolved > 0) {
454 3efd8e31 2022-10-23 thomas log_debug("indexing %d objects %d%%; resolving %d deltas %d%%",
455 3efd8e31 2022-10-23 thomas nobj_total, p_indexed, nobj_delta, p_resolved);
456 3efd8e31 2022-10-23 thomas } else
457 3efd8e31 2022-10-23 thomas log_debug("indexing %d objects %d%%", nobj_total, p_indexed);
458 3efd8e31 2022-10-23 thomas
459 3efd8e31 2022-10-23 thomas return NULL;
460 3efd8e31 2022-10-23 thomas }
461 3efd8e31 2022-10-23 thomas
462 3efd8e31 2022-10-23 thomas static const struct got_error *
463 3efd8e31 2022-10-23 thomas read_more_pack_stream(int infd, BUF *buf, size_t minsize)
464 3efd8e31 2022-10-23 thomas {
465 3efd8e31 2022-10-23 thomas const struct got_error *err = NULL;
466 3efd8e31 2022-10-23 thomas uint8_t readahead[65536];
467 3efd8e31 2022-10-23 thomas size_t have, newlen;
468 3efd8e31 2022-10-23 thomas
469 3efd8e31 2022-10-23 thomas err = got_poll_read_full(infd, &have,
470 3efd8e31 2022-10-23 thomas readahead, sizeof(readahead), minsize);
471 3efd8e31 2022-10-23 thomas if (err)
472 3efd8e31 2022-10-23 thomas return err;
473 3efd8e31 2022-10-23 thomas
474 3efd8e31 2022-10-23 thomas err = buf_append(&newlen, buf, readahead, have);
475 3efd8e31 2022-10-23 thomas if (err)
476 3efd8e31 2022-10-23 thomas return err;
477 8652e561 2023-01-14 thomas return NULL;
478 3efd8e31 2022-10-23 thomas }
479 3efd8e31 2022-10-23 thomas
480 3efd8e31 2022-10-23 thomas static const struct got_error *
481 3efd8e31 2022-10-23 thomas copy_object_type_and_size(uint8_t *type, uint64_t *size, int infd, int outfd,
482 3efd8e31 2022-10-23 thomas off_t *outsize, BUF *buf, size_t *buf_pos, SHA1_CTX *ctx)
483 3efd8e31 2022-10-23 thomas {
484 3efd8e31 2022-10-23 thomas const struct got_error *err = NULL;
485 3efd8e31 2022-10-23 thomas uint8_t t = 0;
486 3efd8e31 2022-10-23 thomas uint64_t s = 0;
487 3efd8e31 2022-10-23 thomas uint8_t sizebuf[8];
488 3efd8e31 2022-10-23 thomas size_t i = 0;
489 3efd8e31 2022-10-23 thomas off_t obj_offset = *outsize;
490 3efd8e31 2022-10-23 thomas
491 3efd8e31 2022-10-23 thomas do {
492 3efd8e31 2022-10-23 thomas /* We do not support size values which don't fit in 64 bit. */
493 3efd8e31 2022-10-23 thomas if (i > 9)
494 3efd8e31 2022-10-23 thomas return got_error_fmt(GOT_ERR_OBJ_TOO_LARGE,
495 fe3b5495 2022-10-25 thomas "packfile offset %lld", (long long)obj_offset);
496 3efd8e31 2022-10-23 thomas
497 3efd8e31 2022-10-23 thomas if (buf_len(buf) - *buf_pos < sizeof(sizebuf[0])) {
498 3efd8e31 2022-10-23 thomas err = read_more_pack_stream(infd, buf,
499 3efd8e31 2022-10-23 thomas sizeof(sizebuf[0]));
500 3efd8e31 2022-10-23 thomas if (err)
501 3efd8e31 2022-10-23 thomas return err;
502 3efd8e31 2022-10-23 thomas }
503 3efd8e31 2022-10-23 thomas
504 3efd8e31 2022-10-23 thomas sizebuf[i] = buf_getc(buf, *buf_pos);
505 3efd8e31 2022-10-23 thomas *buf_pos += sizeof(sizebuf[i]);
506 3efd8e31 2022-10-23 thomas
507 3efd8e31 2022-10-23 thomas if (i == 0) {
508 3efd8e31 2022-10-23 thomas t = (sizebuf[i] & GOT_PACK_OBJ_SIZE0_TYPE_MASK) >>
509 3efd8e31 2022-10-23 thomas GOT_PACK_OBJ_SIZE0_TYPE_MASK_SHIFT;
510 3efd8e31 2022-10-23 thomas s = (sizebuf[i] & GOT_PACK_OBJ_SIZE0_VAL_MASK);
511 3efd8e31 2022-10-23 thomas } else {
512 3efd8e31 2022-10-23 thomas size_t shift = 4 + 7 * (i - 1);
513 3efd8e31 2022-10-23 thomas s |= ((sizebuf[i] & GOT_PACK_OBJ_SIZE_VAL_MASK) <<
514 3efd8e31 2022-10-23 thomas shift);
515 3efd8e31 2022-10-23 thomas }
516 3efd8e31 2022-10-23 thomas i++;
517 3efd8e31 2022-10-23 thomas } while (sizebuf[i - 1] & GOT_PACK_OBJ_SIZE_MORE);
518 3efd8e31 2022-10-23 thomas
519 3efd8e31 2022-10-23 thomas err = got_pack_hwrite(outfd, sizebuf, i, ctx);
520 3efd8e31 2022-10-23 thomas if (err)
521 3efd8e31 2022-10-23 thomas return err;
522 3efd8e31 2022-10-23 thomas *outsize += i;
523 3efd8e31 2022-10-23 thomas
524 3efd8e31 2022-10-23 thomas *type = t;
525 3efd8e31 2022-10-23 thomas *size = s;
526 3efd8e31 2022-10-23 thomas return NULL;
527 3efd8e31 2022-10-23 thomas }
528 3efd8e31 2022-10-23 thomas
529 3efd8e31 2022-10-23 thomas static const struct got_error *
530 3efd8e31 2022-10-23 thomas copy_ref_delta(int infd, int outfd, off_t *outsize, BUF *buf, size_t *buf_pos,
531 3efd8e31 2022-10-23 thomas SHA1_CTX *ctx)
532 3efd8e31 2022-10-23 thomas {
533 3efd8e31 2022-10-23 thomas const struct got_error *err = NULL;
534 3efd8e31 2022-10-23 thomas size_t remain = buf_len(buf) - *buf_pos;
535 3efd8e31 2022-10-23 thomas
536 3efd8e31 2022-10-23 thomas if (remain < SHA1_DIGEST_LENGTH) {
537 3efd8e31 2022-10-23 thomas err = read_more_pack_stream(infd, buf,
538 3efd8e31 2022-10-23 thomas SHA1_DIGEST_LENGTH - remain);
539 3efd8e31 2022-10-23 thomas if (err)
540 3efd8e31 2022-10-23 thomas return err;
541 3efd8e31 2022-10-23 thomas }
542 3efd8e31 2022-10-23 thomas
543 3efd8e31 2022-10-23 thomas err = got_pack_hwrite(outfd, buf_get(buf) + *buf_pos,
544 3efd8e31 2022-10-23 thomas SHA1_DIGEST_LENGTH, ctx);
545 3efd8e31 2022-10-23 thomas if (err)
546 3efd8e31 2022-10-23 thomas return err;
547 3efd8e31 2022-10-23 thomas
548 3efd8e31 2022-10-23 thomas *buf_pos += SHA1_DIGEST_LENGTH;
549 3efd8e31 2022-10-23 thomas return NULL;
550 3efd8e31 2022-10-23 thomas }
551 3efd8e31 2022-10-23 thomas
552 3efd8e31 2022-10-23 thomas static const struct got_error *
553 3efd8e31 2022-10-23 thomas copy_offset_delta(int infd, int outfd, off_t *outsize, BUF *buf, size_t *buf_pos,
554 3efd8e31 2022-10-23 thomas SHA1_CTX *ctx)
555 3efd8e31 2022-10-23 thomas {
556 3efd8e31 2022-10-23 thomas const struct got_error *err = NULL;
557 3efd8e31 2022-10-23 thomas uint64_t o = 0;
558 3efd8e31 2022-10-23 thomas uint8_t offbuf[8];
559 3efd8e31 2022-10-23 thomas size_t i = 0;
560 3efd8e31 2022-10-23 thomas off_t obj_offset = *outsize;
561 3efd8e31 2022-10-23 thomas
562 3efd8e31 2022-10-23 thomas do {
563 3efd8e31 2022-10-23 thomas /* We do not support offset values which don't fit in 64 bit. */
564 3efd8e31 2022-10-23 thomas if (i > 8)
565 3efd8e31 2022-10-23 thomas return got_error_fmt(GOT_ERR_OBJ_TOO_LARGE,
566 fe3b5495 2022-10-25 thomas "packfile offset %lld", (long long)obj_offset);
567 3efd8e31 2022-10-23 thomas
568 3efd8e31 2022-10-23 thomas if (buf_len(buf) - *buf_pos < sizeof(offbuf[0])) {
569 3efd8e31 2022-10-23 thomas err = read_more_pack_stream(infd, buf,
570 3efd8e31 2022-10-23 thomas sizeof(offbuf[0]));
571 3efd8e31 2022-10-23 thomas if (err)
572 3efd8e31 2022-10-23 thomas return err;
573 3efd8e31 2022-10-23 thomas }
574 3efd8e31 2022-10-23 thomas
575 3efd8e31 2022-10-23 thomas offbuf[i] = buf_getc(buf, *buf_pos);
576 3efd8e31 2022-10-23 thomas *buf_pos += sizeof(offbuf[i]);
577 3efd8e31 2022-10-23 thomas
578 3efd8e31 2022-10-23 thomas if (i == 0)
579 3efd8e31 2022-10-23 thomas o = (offbuf[i] & GOT_PACK_OBJ_DELTA_OFF_VAL_MASK);
580 3efd8e31 2022-10-23 thomas else {
581 3efd8e31 2022-10-23 thomas o++;
582 3efd8e31 2022-10-23 thomas o <<= 7;
583 3efd8e31 2022-10-23 thomas o += (offbuf[i] & GOT_PACK_OBJ_DELTA_OFF_VAL_MASK);
584 3efd8e31 2022-10-23 thomas }
585 3efd8e31 2022-10-23 thomas i++;
586 3efd8e31 2022-10-23 thomas } while (offbuf[i - 1] & GOT_PACK_OBJ_DELTA_OFF_MORE);
587 3efd8e31 2022-10-23 thomas
588 3efd8e31 2022-10-23 thomas if (o < sizeof(struct got_packfile_hdr) || o > *outsize)
589 3efd8e31 2022-10-23 thomas return got_error(GOT_ERR_PACK_OFFSET);
590 3efd8e31 2022-10-23 thomas
591 3efd8e31 2022-10-23 thomas err = got_pack_hwrite(outfd, offbuf, i, ctx);
592 3efd8e31 2022-10-23 thomas if (err)
593 3efd8e31 2022-10-23 thomas return err;
594 3efd8e31 2022-10-23 thomas
595 3efd8e31 2022-10-23 thomas *outsize += i;
596 3efd8e31 2022-10-23 thomas return NULL;
597 3efd8e31 2022-10-23 thomas }
598 3efd8e31 2022-10-23 thomas
599 3efd8e31 2022-10-23 thomas static const struct got_error *
600 3efd8e31 2022-10-23 thomas copy_zstream(int infd, int outfd, off_t *outsize, BUF *buf, size_t *buf_pos,
601 3efd8e31 2022-10-23 thomas SHA1_CTX *ctx)
602 3efd8e31 2022-10-23 thomas {
603 3efd8e31 2022-10-23 thomas const struct got_error *err = NULL;
604 3efd8e31 2022-10-23 thomas z_stream z;
605 3efd8e31 2022-10-23 thomas int zret;
606 3efd8e31 2022-10-23 thomas char voidbuf[1024];
607 3efd8e31 2022-10-23 thomas size_t consumed_total = 0;
608 3efd8e31 2022-10-23 thomas off_t zstream_offset = *outsize;
609 3efd8e31 2022-10-23 thomas
610 3efd8e31 2022-10-23 thomas memset(&z, 0, sizeof(z));
611 3efd8e31 2022-10-23 thomas
612 3efd8e31 2022-10-23 thomas z.zalloc = Z_NULL;
613 3efd8e31 2022-10-23 thomas z.zfree = Z_NULL;
614 3efd8e31 2022-10-23 thomas zret = inflateInit(&z);
615 3efd8e31 2022-10-23 thomas if (zret != Z_OK) {
616 3efd8e31 2022-10-23 thomas if (zret == Z_ERRNO)
617 3efd8e31 2022-10-23 thomas return got_error_from_errno("inflateInit");
618 3efd8e31 2022-10-23 thomas if (zret == Z_MEM_ERROR) {
619 3efd8e31 2022-10-23 thomas errno = ENOMEM;
620 3efd8e31 2022-10-23 thomas return got_error_from_errno("inflateInit");
621 3efd8e31 2022-10-23 thomas }
622 3efd8e31 2022-10-23 thomas return got_error_msg(GOT_ERR_DECOMPRESSION,
623 3efd8e31 2022-10-23 thomas "inflateInit failed");
624 3efd8e31 2022-10-23 thomas }
625 3efd8e31 2022-10-23 thomas
626 3efd8e31 2022-10-23 thomas while (zret != Z_STREAM_END) {
627 3efd8e31 2022-10-23 thomas size_t last_total_in, consumed;
628 3efd8e31 2022-10-23 thomas
629 3efd8e31 2022-10-23 thomas /*
630 3efd8e31 2022-10-23 thomas * Decompress into the void. Object data will be parsed
631 3efd8e31 2022-10-23 thomas * later, when the pack file is indexed. For now, we just
632 3efd8e31 2022-10-23 thomas * want to locate the end of the compressed stream.
633 3efd8e31 2022-10-23 thomas */
634 3efd8e31 2022-10-23 thomas while (zret != Z_STREAM_END && buf_len(buf) - *buf_pos > 0) {
635 3efd8e31 2022-10-23 thomas last_total_in = z.total_in;
636 3efd8e31 2022-10-23 thomas z.next_in = buf_get(buf) + *buf_pos;
637 3efd8e31 2022-10-23 thomas z.avail_in = buf_len(buf) - *buf_pos;
638 3efd8e31 2022-10-23 thomas z.next_out = voidbuf;
639 3efd8e31 2022-10-23 thomas z.avail_out = sizeof(voidbuf);
640 3efd8e31 2022-10-23 thomas
641 3efd8e31 2022-10-23 thomas zret = inflate(&z, Z_SYNC_FLUSH);
642 3efd8e31 2022-10-23 thomas if (zret != Z_OK && zret != Z_BUF_ERROR &&
643 3efd8e31 2022-10-23 thomas zret != Z_STREAM_END) {
644 3efd8e31 2022-10-23 thomas err = got_error_fmt(GOT_ERR_DECOMPRESSION,
645 fe3b5495 2022-10-25 thomas "packfile offset %lld",
646 fe3b5495 2022-10-25 thomas (long long)zstream_offset);
647 3efd8e31 2022-10-23 thomas goto done;
648 3efd8e31 2022-10-23 thomas }
649 3efd8e31 2022-10-23 thomas consumed = z.total_in - last_total_in;
650 3efd8e31 2022-10-23 thomas
651 3efd8e31 2022-10-23 thomas err = got_pack_hwrite(outfd, buf_get(buf) + *buf_pos,
652 3efd8e31 2022-10-23 thomas consumed, ctx);
653 3efd8e31 2022-10-23 thomas if (err)
654 3efd8e31 2022-10-23 thomas goto done;
655 3efd8e31 2022-10-23 thomas
656 3efd8e31 2022-10-23 thomas err = buf_discard(buf, *buf_pos + consumed);
657 3efd8e31 2022-10-23 thomas if (err)
658 3efd8e31 2022-10-23 thomas goto done;
659 3efd8e31 2022-10-23 thomas *buf_pos = 0;
660 3efd8e31 2022-10-23 thomas
661 3efd8e31 2022-10-23 thomas consumed_total += consumed;
662 3efd8e31 2022-10-23 thomas }
663 3efd8e31 2022-10-23 thomas
664 3efd8e31 2022-10-23 thomas if (zret != Z_STREAM_END) {
665 3efd8e31 2022-10-23 thomas err = read_more_pack_stream(infd, buf, 1);
666 3efd8e31 2022-10-23 thomas if (err)
667 3efd8e31 2022-10-23 thomas goto done;
668 3efd8e31 2022-10-23 thomas }
669 3efd8e31 2022-10-23 thomas }
670 3efd8e31 2022-10-23 thomas
671 3efd8e31 2022-10-23 thomas if (err == NULL)
672 3efd8e31 2022-10-23 thomas *outsize += consumed_total;
673 3efd8e31 2022-10-23 thomas done:
674 3efd8e31 2022-10-23 thomas inflateEnd(&z);
675 3efd8e31 2022-10-23 thomas return err;
676 3efd8e31 2022-10-23 thomas }
677 3efd8e31 2022-10-23 thomas
678 3efd8e31 2022-10-23 thomas static const struct got_error *
679 3efd8e31 2022-10-23 thomas validate_object_type(int obj_type)
680 3efd8e31 2022-10-23 thomas {
681 3efd8e31 2022-10-23 thomas switch (obj_type) {
682 3efd8e31 2022-10-23 thomas case GOT_OBJ_TYPE_BLOB:
683 3efd8e31 2022-10-23 thomas case GOT_OBJ_TYPE_COMMIT:
684 3efd8e31 2022-10-23 thomas case GOT_OBJ_TYPE_TREE:
685 3efd8e31 2022-10-23 thomas case GOT_OBJ_TYPE_TAG:
686 3efd8e31 2022-10-23 thomas case GOT_OBJ_TYPE_REF_DELTA:
687 3efd8e31 2022-10-23 thomas case GOT_OBJ_TYPE_OFFSET_DELTA:
688 3efd8e31 2022-10-23 thomas return NULL;
689 3efd8e31 2022-10-23 thomas default:
690 3efd8e31 2022-10-23 thomas break;
691 3efd8e31 2022-10-23 thomas }
692 3efd8e31 2022-10-23 thomas
693 3efd8e31 2022-10-23 thomas return got_error(GOT_ERR_OBJ_TYPE);
694 3efd8e31 2022-10-23 thomas }
695 3efd8e31 2022-10-23 thomas
696 3efd8e31 2022-10-23 thomas static const struct got_error *
697 d98779cd 2023-01-19 thomas recv_packdata(off_t *outsize, uint32_t *nobj, uint8_t *sha1,
698 d98779cd 2023-01-19 thomas int infd, int outfd)
699 3efd8e31 2022-10-23 thomas {
700 3efd8e31 2022-10-23 thomas const struct got_error *err;
701 d98779cd 2023-01-19 thomas struct repo_write_client *client = &repo_write_client;
702 3efd8e31 2022-10-23 thomas struct got_packfile_hdr hdr;
703 3efd8e31 2022-10-23 thomas size_t have;
704 d98779cd 2023-01-19 thomas uint32_t nhave = 0;
705 3efd8e31 2022-10-23 thomas SHA1_CTX ctx;
706 3efd8e31 2022-10-23 thomas uint8_t expected_sha1[SHA1_DIGEST_LENGTH];
707 3efd8e31 2022-10-23 thomas char hex[SHA1_DIGEST_STRING_LENGTH];
708 3efd8e31 2022-10-23 thomas BUF *buf = NULL;
709 3efd8e31 2022-10-23 thomas size_t buf_pos = 0, remain;
710 3efd8e31 2022-10-23 thomas ssize_t w;
711 3efd8e31 2022-10-23 thomas
712 3efd8e31 2022-10-23 thomas *outsize = 0;
713 d98779cd 2023-01-19 thomas *nobj = 0;
714 49563dfb 2023-01-28 thomas
715 49563dfb 2023-01-28 thomas /* if only deleting references there's nothing to read */
716 49563dfb 2023-01-28 thomas if (client->nref_updates == client->nref_del)
717 49563dfb 2023-01-28 thomas return NULL;
718 49563dfb 2023-01-28 thomas
719 3efd8e31 2022-10-23 thomas SHA1Init(&ctx);
720 3efd8e31 2022-10-23 thomas
721 3efd8e31 2022-10-23 thomas err = got_poll_read_full(infd, &have, &hdr, sizeof(hdr), sizeof(hdr));
722 3efd8e31 2022-10-23 thomas if (err)
723 3efd8e31 2022-10-23 thomas return err;
724 3efd8e31 2022-10-23 thomas if (have != sizeof(hdr))
725 3efd8e31 2022-10-23 thomas return got_error_msg(GOT_ERR_BAD_PACKFILE, "short pack file");
726 3efd8e31 2022-10-23 thomas *outsize += have;
727 3efd8e31 2022-10-23 thomas
728 3efd8e31 2022-10-23 thomas if (hdr.signature != htobe32(GOT_PACKFILE_SIGNATURE))
729 3efd8e31 2022-10-23 thomas return got_error_msg(GOT_ERR_BAD_PACKFILE,
730 3efd8e31 2022-10-23 thomas "bad packfile signature");
731 3efd8e31 2022-10-23 thomas if (hdr.version != htobe32(GOT_PACKFILE_VERSION))
732 3efd8e31 2022-10-23 thomas return got_error_msg(GOT_ERR_BAD_PACKFILE,
733 3efd8e31 2022-10-23 thomas "bad packfile version");
734 3efd8e31 2022-10-23 thomas
735 d98779cd 2023-01-19 thomas *nobj = be32toh(hdr.nobjects);
736 d98779cd 2023-01-19 thomas if (*nobj == 0) {
737 d98779cd 2023-01-19 thomas /*
738 d98779cd 2023-01-19 thomas * Clients which are creating new references only
739 d98779cd 2023-01-19 thomas * will send us an empty pack file.
740 d98779cd 2023-01-19 thomas */
741 d98779cd 2023-01-19 thomas if (client->nref_updates > 0 &&
742 d98779cd 2023-01-19 thomas client->nref_updates == client->nref_new)
743 d98779cd 2023-01-19 thomas return NULL;
744 d98779cd 2023-01-19 thomas
745 3efd8e31 2022-10-23 thomas return got_error_msg(GOT_ERR_BAD_PACKFILE,
746 3efd8e31 2022-10-23 thomas "bad packfile with zero objects");
747 d98779cd 2023-01-19 thomas }
748 3efd8e31 2022-10-23 thomas
749 d98779cd 2023-01-19 thomas log_debug("expecting %d objects", *nobj);
750 3efd8e31 2022-10-23 thomas
751 3efd8e31 2022-10-23 thomas err = got_pack_hwrite(outfd, &hdr, sizeof(hdr), &ctx);
752 3efd8e31 2022-10-23 thomas if (err)
753 3efd8e31 2022-10-23 thomas return err;
754 3efd8e31 2022-10-23 thomas
755 3efd8e31 2022-10-23 thomas err = buf_alloc(&buf, 65536);
756 3efd8e31 2022-10-23 thomas if (err)
757 3efd8e31 2022-10-23 thomas return err;
758 3efd8e31 2022-10-23 thomas
759 d98779cd 2023-01-19 thomas while (nhave != *nobj) {
760 3efd8e31 2022-10-23 thomas uint8_t obj_type;
761 3efd8e31 2022-10-23 thomas uint64_t obj_size;
762 3efd8e31 2022-10-23 thomas
763 3efd8e31 2022-10-23 thomas err = copy_object_type_and_size(&obj_type, &obj_size,
764 3efd8e31 2022-10-23 thomas infd, outfd, outsize, buf, &buf_pos, &ctx);
765 3efd8e31 2022-10-23 thomas if (err)
766 3efd8e31 2022-10-23 thomas goto done;
767 3efd8e31 2022-10-23 thomas
768 3efd8e31 2022-10-23 thomas err = validate_object_type(obj_type);
769 3efd8e31 2022-10-23 thomas if (err)
770 3efd8e31 2022-10-23 thomas goto done;
771 3efd8e31 2022-10-23 thomas
772 3efd8e31 2022-10-23 thomas if (obj_type == GOT_OBJ_TYPE_REF_DELTA) {
773 3efd8e31 2022-10-23 thomas err = copy_ref_delta(infd, outfd, outsize,
774 3efd8e31 2022-10-23 thomas buf, &buf_pos, &ctx);
775 3efd8e31 2022-10-23 thomas if (err)
776 3efd8e31 2022-10-23 thomas goto done;
777 3efd8e31 2022-10-23 thomas } else if (obj_type == GOT_OBJ_TYPE_OFFSET_DELTA) {
778 3efd8e31 2022-10-23 thomas err = copy_offset_delta(infd, outfd, outsize,
779 3efd8e31 2022-10-23 thomas buf, &buf_pos, &ctx);
780 3efd8e31 2022-10-23 thomas if (err)
781 3efd8e31 2022-10-23 thomas goto done;
782 3efd8e31 2022-10-23 thomas }
783 3efd8e31 2022-10-23 thomas
784 3efd8e31 2022-10-23 thomas err = copy_zstream(infd, outfd, outsize, buf, &buf_pos, &ctx);
785 3efd8e31 2022-10-23 thomas if (err)
786 3efd8e31 2022-10-23 thomas goto done;
787 3efd8e31 2022-10-23 thomas
788 3efd8e31 2022-10-23 thomas nhave++;
789 3efd8e31 2022-10-23 thomas }
790 3efd8e31 2022-10-23 thomas
791 d98779cd 2023-01-19 thomas log_debug("received %u objects", *nobj);
792 3efd8e31 2022-10-23 thomas
793 3efd8e31 2022-10-23 thomas SHA1Final(expected_sha1, &ctx);
794 3efd8e31 2022-10-23 thomas
795 3efd8e31 2022-10-23 thomas remain = buf_len(buf) - buf_pos;
796 3efd8e31 2022-10-23 thomas if (remain < SHA1_DIGEST_LENGTH) {
797 3efd8e31 2022-10-23 thomas err = read_more_pack_stream(infd, buf,
798 3efd8e31 2022-10-23 thomas SHA1_DIGEST_LENGTH - remain);
799 3efd8e31 2022-10-23 thomas if (err)
800 3efd8e31 2022-10-23 thomas return err;
801 3efd8e31 2022-10-23 thomas }
802 3efd8e31 2022-10-23 thomas
803 3efd8e31 2022-10-23 thomas got_sha1_digest_to_str(expected_sha1, hex, sizeof(hex));
804 3efd8e31 2022-10-23 thomas log_debug("expect SHA1: %s", hex);
805 3efd8e31 2022-10-23 thomas got_sha1_digest_to_str(buf_get(buf) + buf_pos, hex, sizeof(hex));
806 3efd8e31 2022-10-23 thomas log_debug("actual SHA1: %s", hex);
807 3efd8e31 2022-10-23 thomas
808 3efd8e31 2022-10-23 thomas if (memcmp(buf_get(buf) + buf_pos, expected_sha1,
809 3efd8e31 2022-10-23 thomas SHA1_DIGEST_LENGTH) != 0) {
810 3efd8e31 2022-10-23 thomas err = got_error(GOT_ERR_PACKFILE_CSUM);
811 3efd8e31 2022-10-23 thomas goto done;
812 3efd8e31 2022-10-23 thomas }
813 3efd8e31 2022-10-23 thomas
814 3efd8e31 2022-10-23 thomas memcpy(sha1, expected_sha1, SHA1_DIGEST_LENGTH);
815 3efd8e31 2022-10-23 thomas
816 3efd8e31 2022-10-23 thomas w = write(outfd, expected_sha1, SHA1_DIGEST_LENGTH);
817 3efd8e31 2022-10-23 thomas if (w == -1) {
818 3efd8e31 2022-10-23 thomas err = got_error_from_errno("write");
819 3efd8e31 2022-10-23 thomas goto done;
820 3efd8e31 2022-10-23 thomas }
821 3efd8e31 2022-10-23 thomas if (w != SHA1_DIGEST_LENGTH) {
822 3efd8e31 2022-10-23 thomas err = got_error(GOT_ERR_IO);
823 3efd8e31 2022-10-23 thomas goto done;
824 3efd8e31 2022-10-23 thomas }
825 3efd8e31 2022-10-23 thomas
826 3efd8e31 2022-10-23 thomas *outsize += SHA1_DIGEST_LENGTH;
827 3efd8e31 2022-10-23 thomas
828 3efd8e31 2022-10-23 thomas if (fsync(outfd) == -1) {
829 3efd8e31 2022-10-23 thomas err = got_error_from_errno("fsync");
830 3efd8e31 2022-10-23 thomas goto done;
831 3efd8e31 2022-10-23 thomas }
832 3efd8e31 2022-10-23 thomas if (lseek(outfd, 0L, SEEK_SET) == -1) {
833 3efd8e31 2022-10-23 thomas err = got_error_from_errno("lseek");
834 3efd8e31 2022-10-23 thomas goto done;
835 3efd8e31 2022-10-23 thomas }
836 3efd8e31 2022-10-23 thomas done:
837 3efd8e31 2022-10-23 thomas buf_free(buf);
838 3efd8e31 2022-10-23 thomas return err;
839 3efd8e31 2022-10-23 thomas }
840 3efd8e31 2022-10-23 thomas
841 3efd8e31 2022-10-23 thomas static const struct got_error *
842 9148c8a7 2023-01-02 thomas report_pack_status(const struct got_error *unpack_err)
843 3efd8e31 2022-10-23 thomas {
844 3efd8e31 2022-10-23 thomas const struct got_error *err = NULL;
845 9148c8a7 2023-01-02 thomas struct repo_write_client *client = &repo_write_client;
846 3efd8e31 2022-10-23 thomas struct gotd_imsg_packfile_status istatus;
847 3efd8e31 2022-10-23 thomas struct ibuf *wbuf;
848 3efd8e31 2022-10-23 thomas struct imsgbuf ibuf;
849 3efd8e31 2022-10-23 thomas const char *unpack_ok = "unpack ok\n";
850 3efd8e31 2022-10-23 thomas size_t len;
851 8652e561 2023-01-14 thomas
852 3efd8e31 2022-10-23 thomas imsg_init(&ibuf, client->fd);
853 3efd8e31 2022-10-23 thomas
854 3efd8e31 2022-10-23 thomas if (unpack_err)
855 3efd8e31 2022-10-23 thomas istatus.reason_len = strlen(unpack_err->msg);
856 3efd8e31 2022-10-23 thomas else
857 3efd8e31 2022-10-23 thomas istatus.reason_len = strlen(unpack_ok);
858 3efd8e31 2022-10-23 thomas
859 3efd8e31 2022-10-23 thomas len = sizeof(istatus) + istatus.reason_len;
860 3efd8e31 2022-10-23 thomas wbuf = imsg_create(&ibuf, GOTD_IMSG_PACKFILE_STATUS, PROC_REPO_WRITE,
861 3efd8e31 2022-10-23 thomas repo_write.pid, len);
862 3efd8e31 2022-10-23 thomas if (wbuf == NULL) {
863 3efd8e31 2022-10-23 thomas err = got_error_from_errno("imsg_create PACKFILE_STATUS");
864 3efd8e31 2022-10-23 thomas goto done;
865 3efd8e31 2022-10-23 thomas }
866 3efd8e31 2022-10-23 thomas
867 3efd8e31 2022-10-23 thomas if (imsg_add(wbuf, &istatus, sizeof(istatus)) == -1) {
868 3efd8e31 2022-10-23 thomas err = got_error_from_errno("imsg_add PACKFILE_STATUS");
869 3efd8e31 2022-10-23 thomas goto done;
870 3efd8e31 2022-10-23 thomas }
871 3efd8e31 2022-10-23 thomas
872 3efd8e31 2022-10-23 thomas if (imsg_add(wbuf, err ? err->msg : unpack_ok,
873 3efd8e31 2022-10-23 thomas istatus.reason_len) == -1) {
874 3efd8e31 2022-10-23 thomas err = got_error_from_errno("imsg_add PACKFILE_STATUS");
875 3efd8e31 2022-10-23 thomas goto done;
876 3efd8e31 2022-10-23 thomas }
877 3efd8e31 2022-10-23 thomas
878 3efd8e31 2022-10-23 thomas wbuf->fd = -1;
879 3efd8e31 2022-10-23 thomas imsg_close(&ibuf, wbuf);
880 3efd8e31 2022-10-23 thomas
881 3efd8e31 2022-10-23 thomas err = gotd_imsg_flush(&ibuf);
882 3efd8e31 2022-10-23 thomas done:
883 3efd8e31 2022-10-23 thomas imsg_clear(&ibuf);
884 3efd8e31 2022-10-23 thomas return err;
885 3efd8e31 2022-10-23 thomas }
886 3efd8e31 2022-10-23 thomas
887 3efd8e31 2022-10-23 thomas static const struct got_error *
888 d98779cd 2023-01-19 thomas recv_packfile(int *have_packfile, struct imsg *imsg)
889 3efd8e31 2022-10-23 thomas {
890 3efd8e31 2022-10-23 thomas const struct got_error *err = NULL, *unpack_err;
891 9148c8a7 2023-01-02 thomas struct repo_write_client *client = &repo_write_client;
892 3efd8e31 2022-10-23 thomas struct gotd_imsg_recv_packfile ireq;
893 3efd8e31 2022-10-23 thomas FILE *tempfiles[3] = { NULL, NULL, NULL };
894 3efd8e31 2022-10-23 thomas struct repo_tempfile {
895 3efd8e31 2022-10-23 thomas int fd;
896 3efd8e31 2022-10-23 thomas int idx;
897 3efd8e31 2022-10-23 thomas } repo_tempfiles[3] = { { - 1, - 1 }, { - 1, - 1 }, { - 1, - 1 }, };
898 3efd8e31 2022-10-23 thomas int i;
899 3efd8e31 2022-10-23 thomas size_t datalen;
900 3efd8e31 2022-10-23 thomas struct imsgbuf ibuf;
901 3efd8e31 2022-10-23 thomas struct got_ratelimit rl;
902 3efd8e31 2022-10-23 thomas struct got_pack *pack = NULL;
903 3efd8e31 2022-10-23 thomas off_t pack_filesize = 0;
904 d98779cd 2023-01-19 thomas uint32_t nobj = 0;
905 3efd8e31 2022-10-23 thomas
906 3efd8e31 2022-10-23 thomas log_debug("packfile request received");
907 3efd8e31 2022-10-23 thomas
908 d98779cd 2023-01-19 thomas *have_packfile = 0;
909 3efd8e31 2022-10-23 thomas got_ratelimit_init(&rl, 2, 0);
910 3efd8e31 2022-10-23 thomas
911 3efd8e31 2022-10-23 thomas datalen = imsg->hdr.len - IMSG_HEADER_SIZE;
912 3efd8e31 2022-10-23 thomas if (datalen != sizeof(ireq))
913 3efd8e31 2022-10-23 thomas return got_error(GOT_ERR_PRIVSEP_LEN);
914 3efd8e31 2022-10-23 thomas memcpy(&ireq, imsg->data, sizeof(ireq));
915 3efd8e31 2022-10-23 thomas
916 9148c8a7 2023-01-02 thomas if (client->pack_pipe == -1 || client->packidx_fd == -1)
917 3efd8e31 2022-10-23 thomas return got_error(GOT_ERR_PRIVSEP_NO_FD);
918 3efd8e31 2022-10-23 thomas
919 9148c8a7 2023-01-02 thomas imsg_init(&ibuf, client->fd);
920 3efd8e31 2022-10-23 thomas
921 3efd8e31 2022-10-23 thomas if (imsg->fd == -1)
922 3efd8e31 2022-10-23 thomas return got_error(GOT_ERR_PRIVSEP_NO_FD);
923 3efd8e31 2022-10-23 thomas
924 9148c8a7 2023-01-02 thomas pack = &client->pack;
925 3efd8e31 2022-10-23 thomas memset(pack, 0, sizeof(*pack));
926 3efd8e31 2022-10-23 thomas pack->fd = imsg->fd;
927 3efd8e31 2022-10-23 thomas err = got_delta_cache_alloc(&pack->delta_cache);
928 3efd8e31 2022-10-23 thomas if (err)
929 3efd8e31 2022-10-23 thomas return err;
930 3efd8e31 2022-10-23 thomas
931 3efd8e31 2022-10-23 thomas for (i = 0; i < nitems(repo_tempfiles); i++) {
932 3efd8e31 2022-10-23 thomas struct repo_tempfile *t = &repo_tempfiles[i];
933 3efd8e31 2022-10-23 thomas err = got_repo_temp_fds_get(&t->fd, &t->idx, repo_write.repo);
934 3efd8e31 2022-10-23 thomas if (err)
935 3efd8e31 2022-10-23 thomas goto done;
936 3efd8e31 2022-10-23 thomas }
937 3efd8e31 2022-10-23 thomas
938 3efd8e31 2022-10-23 thomas for (i = 0; i < nitems(tempfiles); i++) {
939 da2c57e4 2023-02-03 thomas int fd;
940 3efd8e31 2022-10-23 thomas FILE *f;
941 da2c57e4 2023-02-03 thomas
942 da2c57e4 2023-02-03 thomas fd = dup(repo_tempfiles[i].fd);
943 3efd8e31 2022-10-23 thomas if (fd == -1) {
944 3efd8e31 2022-10-23 thomas err = got_error_from_errno("dup");
945 3efd8e31 2022-10-23 thomas goto done;
946 3efd8e31 2022-10-23 thomas }
947 3efd8e31 2022-10-23 thomas f = fdopen(fd, "w+");
948 3efd8e31 2022-10-23 thomas if (f == NULL) {
949 da2c57e4 2023-02-03 thomas err = got_error_from_errno("fdopen");
950 3efd8e31 2022-10-23 thomas close(fd);
951 3efd8e31 2022-10-23 thomas goto done;
952 3efd8e31 2022-10-23 thomas }
953 3efd8e31 2022-10-23 thomas tempfiles[i] = f;
954 3efd8e31 2022-10-23 thomas }
955 3efd8e31 2022-10-23 thomas
956 3efd8e31 2022-10-23 thomas /* Send pack file pipe to gotsh(1). */
957 3efd8e31 2022-10-23 thomas if (imsg_compose(&ibuf, GOTD_IMSG_RECV_PACKFILE, PROC_REPO_WRITE,
958 3efd8e31 2022-10-23 thomas repo_write.pid, (*client)->pack_pipe[1], NULL, 0) == -1) {
959 3efd8e31 2022-10-23 thomas (*client)->pack_pipe[1] = -1;
960 3efd8e31 2022-10-23 thomas err = got_error_from_errno("imsg_compose ACK");
961 3efd8e31 2022-10-23 thomas if (err)
962 3efd8e31 2022-10-23 thomas goto done;
963 3efd8e31 2022-10-23 thomas }
964 3efd8e31 2022-10-23 thomas (*client)->pack_pipe[1] = -1;
965 3efd8e31 2022-10-23 thomas err = gotd_imsg_flush(&ibuf);
966 3efd8e31 2022-10-23 thomas if (err)
967 3efd8e31 2022-10-23 thomas goto done;
968 3efd8e31 2022-10-23 thomas
969 3efd8e31 2022-10-23 thomas log_debug("receiving pack data");
970 d98779cd 2023-01-19 thomas unpack_err = recv_packdata(&pack_filesize, &nobj,
971 d98779cd 2023-01-19 thomas client->pack_sha1, client->pack_pipe, pack->fd);
972 3efd8e31 2022-10-23 thomas if (ireq.report_status) {
973 9148c8a7 2023-01-02 thomas err = report_pack_status(unpack_err);
974 3efd8e31 2022-10-23 thomas if (err) {
975 3efd8e31 2022-10-23 thomas /* Git clients hang up after sending the pack file. */
976 3efd8e31 2022-10-23 thomas if (err->code == GOT_ERR_EOF)
977 3efd8e31 2022-10-23 thomas err = NULL;
978 3efd8e31 2022-10-23 thomas }
979 3efd8e31 2022-10-23 thomas }
980 3efd8e31 2022-10-23 thomas if (unpack_err)
981 3efd8e31 2022-10-23 thomas err = unpack_err;
982 3efd8e31 2022-10-23 thomas if (err)
983 3efd8e31 2022-10-23 thomas goto done;
984 3efd8e31 2022-10-23 thomas
985 3efd8e31 2022-10-23 thomas log_debug("pack data received");
986 d98779cd 2023-01-19 thomas
987 d98779cd 2023-01-19 thomas /*
988 d98779cd 2023-01-19 thomas * Clients which are creating new references only will
989 d98779cd 2023-01-19 thomas * send us an empty pack file.
990 d98779cd 2023-01-19 thomas */
991 d98779cd 2023-01-19 thomas if (nobj == 0 &&
992 d98779cd 2023-01-19 thomas pack_filesize == sizeof(struct got_packfile_hdr) &&
993 d98779cd 2023-01-19 thomas client->nref_updates > 0 &&
994 d98779cd 2023-01-19 thomas client->nref_updates == client->nref_new)
995 d98779cd 2023-01-19 thomas goto done;
996 3efd8e31 2022-10-23 thomas
997 49563dfb 2023-01-28 thomas /*
998 49563dfb 2023-01-28 thomas * Clients which are deleting references only will send
999 49563dfb 2023-01-28 thomas * no pack file.
1000 49563dfb 2023-01-28 thomas */
1001 49563dfb 2023-01-28 thomas if (nobj == 0 &&
1002 49563dfb 2023-01-28 thomas client->nref_del > 0 &&
1003 49563dfb 2023-01-28 thomas client->nref_updates == client->nref_del)
1004 49563dfb 2023-01-28 thomas goto done;
1005 49563dfb 2023-01-28 thomas
1006 3efd8e31 2022-10-23 thomas pack->filesize = pack_filesize;
1007 d98779cd 2023-01-19 thomas *have_packfile = 1;
1008 3efd8e31 2022-10-23 thomas
1009 66e6097f 2022-10-27 thomas log_debug("begin indexing pack (%lld bytes in size)",
1010 66e6097f 2022-10-27 thomas (long long)pack->filesize);
1011 9148c8a7 2023-01-02 thomas err = got_pack_index(pack, client->packidx_fd,
1012 9148c8a7 2023-01-02 thomas tempfiles[0], tempfiles[1], tempfiles[2], client->pack_sha1,
1013 3efd8e31 2022-10-23 thomas pack_index_progress, NULL, &rl);
1014 3efd8e31 2022-10-23 thomas if (err)
1015 3efd8e31 2022-10-23 thomas goto done;
1016 3efd8e31 2022-10-23 thomas log_debug("done indexing pack");
1017 3efd8e31 2022-10-23 thomas
1018 9148c8a7 2023-01-02 thomas if (fsync(client->packidx_fd) == -1) {
1019 3efd8e31 2022-10-23 thomas err = got_error_from_errno("fsync");
1020 3efd8e31 2022-10-23 thomas goto done;
1021 3efd8e31 2022-10-23 thomas }
1022 9148c8a7 2023-01-02 thomas if (lseek(client->packidx_fd, 0L, SEEK_SET) == -1)
1023 3efd8e31 2022-10-23 thomas err = got_error_from_errno("lseek");
1024 3efd8e31 2022-10-23 thomas done:
1025 9148c8a7 2023-01-02 thomas if (close(client->pack_pipe) == -1 && err == NULL)
1026 3efd8e31 2022-10-23 thomas err = got_error_from_errno("close");
1027 9148c8a7 2023-01-02 thomas client->pack_pipe = -1;
1028 3efd8e31 2022-10-23 thomas for (i = 0; i < nitems(repo_tempfiles); i++) {
1029 3efd8e31 2022-10-23 thomas struct repo_tempfile *t = &repo_tempfiles[i];
1030 3efd8e31 2022-10-23 thomas if (t->idx != -1)
1031 3efd8e31 2022-10-23 thomas got_repo_temp_fds_put(t->idx, repo_write.repo);
1032 3efd8e31 2022-10-23 thomas }
1033 3efd8e31 2022-10-23 thomas for (i = 0; i < nitems(tempfiles); i++) {
1034 3efd8e31 2022-10-23 thomas if (tempfiles[i] && fclose(tempfiles[i]) == EOF && err == NULL)
1035 3efd8e31 2022-10-23 thomas err = got_error_from_errno("fclose");
1036 3efd8e31 2022-10-23 thomas }
1037 3efd8e31 2022-10-23 thomas if (err)
1038 3efd8e31 2022-10-23 thomas got_pack_close(pack);
1039 3efd8e31 2022-10-23 thomas imsg_clear(&ibuf);
1040 3efd8e31 2022-10-23 thomas return err;
1041 3efd8e31 2022-10-23 thomas }
1042 3efd8e31 2022-10-23 thomas
1043 3efd8e31 2022-10-23 thomas static const struct got_error *
1044 9148c8a7 2023-01-02 thomas verify_packfile(void)
1045 3efd8e31 2022-10-23 thomas {
1046 3efd8e31 2022-10-23 thomas const struct got_error *err = NULL, *close_err;
1047 9148c8a7 2023-01-02 thomas struct repo_write_client *client = &repo_write_client;
1048 3efd8e31 2022-10-23 thomas struct gotd_ref_update *ref_update;
1049 3efd8e31 2022-10-23 thomas struct got_packidx *packidx = NULL;
1050 3efd8e31 2022-10-23 thomas struct stat sb;
1051 3efd8e31 2022-10-23 thomas char *id_str = NULL;
1052 3efd8e31 2022-10-23 thomas int idx = -1;
1053 3efd8e31 2022-10-23 thomas
1054 3efd8e31 2022-10-23 thomas if (STAILQ_EMPTY(&client->ref_updates)) {
1055 3efd8e31 2022-10-23 thomas return got_error_msg(GOT_ERR_BAD_REQUEST,
1056 3efd8e31 2022-10-23 thomas "cannot verify pack file without any ref-updates");
1057 3efd8e31 2022-10-23 thomas }
1058 3efd8e31 2022-10-23 thomas
1059 3efd8e31 2022-10-23 thomas if (client->pack.fd == -1) {
1060 3efd8e31 2022-10-23 thomas return got_error_msg(GOT_ERR_BAD_REQUEST,
1061 3efd8e31 2022-10-23 thomas "invalid pack file handle during pack verification");
1062 3efd8e31 2022-10-23 thomas }
1063 3efd8e31 2022-10-23 thomas if (client->packidx_fd == -1) {
1064 3efd8e31 2022-10-23 thomas return got_error_msg(GOT_ERR_BAD_REQUEST,
1065 3efd8e31 2022-10-23 thomas "invalid pack index handle during pack verification");
1066 3efd8e31 2022-10-23 thomas }
1067 3efd8e31 2022-10-23 thomas
1068 3efd8e31 2022-10-23 thomas if (fstat(client->packidx_fd, &sb) == -1)
1069 3efd8e31 2022-10-23 thomas return got_error_from_errno("pack index fstat");
1070 3efd8e31 2022-10-23 thomas
1071 3efd8e31 2022-10-23 thomas packidx = malloc(sizeof(*packidx));
1072 3efd8e31 2022-10-23 thomas memset(packidx, 0, sizeof(*packidx));
1073 3efd8e31 2022-10-23 thomas packidx->fd = client->packidx_fd;
1074 3efd8e31 2022-10-23 thomas client->packidx_fd = -1;
1075 3efd8e31 2022-10-23 thomas packidx->len = sb.st_size;
1076 8652e561 2023-01-14 thomas
1077 3efd8e31 2022-10-23 thomas err = got_packidx_init_hdr(packidx, 1, client->pack.filesize);
1078 3efd8e31 2022-10-23 thomas if (err)
1079 3efd8e31 2022-10-23 thomas return err;
1080 3efd8e31 2022-10-23 thomas
1081 3efd8e31 2022-10-23 thomas STAILQ_FOREACH(ref_update, &client->ref_updates, entry) {
1082 49563dfb 2023-01-28 thomas if (ref_update->delete_ref)
1083 49563dfb 2023-01-28 thomas continue;
1084 49563dfb 2023-01-28 thomas
1085 3efd8e31 2022-10-23 thomas err = got_object_id_str(&id_str, &ref_update->new_id);
1086 3efd8e31 2022-10-23 thomas if (err)
1087 3efd8e31 2022-10-23 thomas goto done;
1088 3efd8e31 2022-10-23 thomas
1089 3efd8e31 2022-10-23 thomas idx = got_packidx_get_object_idx(packidx, &ref_update->new_id);
1090 3efd8e31 2022-10-23 thomas if (idx == -1) {
1091 3efd8e31 2022-10-23 thomas err = got_error_fmt(GOT_ERR_BAD_PACKFILE,
1092 3efd8e31 2022-10-23 thomas "advertised object %s is missing from pack file",
1093 3efd8e31 2022-10-23 thomas id_str);
1094 3efd8e31 2022-10-23 thomas goto done;
1095 3efd8e31 2022-10-23 thomas }
1096 3efd8e31 2022-10-23 thomas }
1097 3efd8e31 2022-10-23 thomas
1098 8652e561 2023-01-14 thomas done:
1099 3efd8e31 2022-10-23 thomas close_err = got_packidx_close(packidx);
1100 3efd8e31 2022-10-23 thomas if (close_err && err == NULL)
1101 3efd8e31 2022-10-23 thomas err = close_err;
1102 3efd8e31 2022-10-23 thomas free(id_str);
1103 3efd8e31 2022-10-23 thomas return err;
1104 3efd8e31 2022-10-23 thomas }
1105 3efd8e31 2022-10-23 thomas
1106 3efd8e31 2022-10-23 thomas static const struct got_error *
1107 9148c8a7 2023-01-02 thomas install_packfile(struct gotd_imsgev *iev)
1108 3efd8e31 2022-10-23 thomas {
1109 9148c8a7 2023-01-02 thomas struct repo_write_client *client = &repo_write_client;
1110 3efd8e31 2022-10-23 thomas struct gotd_imsg_packfile_install inst;
1111 3efd8e31 2022-10-23 thomas int ret;
1112 3efd8e31 2022-10-23 thomas
1113 3efd8e31 2022-10-23 thomas memset(&inst, 0, sizeof(inst));
1114 3efd8e31 2022-10-23 thomas inst.client_id = client->id;
1115 3efd8e31 2022-10-23 thomas memcpy(inst.pack_sha1, client->pack_sha1, SHA1_DIGEST_LENGTH);
1116 3efd8e31 2022-10-23 thomas
1117 3efd8e31 2022-10-23 thomas ret = gotd_imsg_compose_event(iev, GOTD_IMSG_PACKFILE_INSTALL,
1118 3efd8e31 2022-10-23 thomas PROC_REPO_WRITE, -1, &inst, sizeof(inst));
1119 3efd8e31 2022-10-23 thomas if (ret == -1)
1120 3efd8e31 2022-10-23 thomas return got_error_from_errno("imsg_compose PACKFILE_INSTALL");
1121 3efd8e31 2022-10-23 thomas
1122 3efd8e31 2022-10-23 thomas return NULL;
1123 3efd8e31 2022-10-23 thomas }
1124 3efd8e31 2022-10-23 thomas
1125 3efd8e31 2022-10-23 thomas static const struct got_error *
1126 9148c8a7 2023-01-02 thomas send_ref_updates_start(int nref_updates, struct gotd_imsgev *iev)
1127 3efd8e31 2022-10-23 thomas {
1128 9148c8a7 2023-01-02 thomas struct repo_write_client *client = &repo_write_client;
1129 3efd8e31 2022-10-23 thomas struct gotd_imsg_ref_updates_start istart;
1130 3efd8e31 2022-10-23 thomas int ret;
1131 3efd8e31 2022-10-23 thomas
1132 3efd8e31 2022-10-23 thomas memset(&istart, 0, sizeof(istart));
1133 3efd8e31 2022-10-23 thomas istart.nref_updates = nref_updates;
1134 3efd8e31 2022-10-23 thomas istart.client_id = client->id;
1135 3efd8e31 2022-10-23 thomas
1136 3efd8e31 2022-10-23 thomas ret = gotd_imsg_compose_event(iev, GOTD_IMSG_REF_UPDATES_START,
1137 3efd8e31 2022-10-23 thomas PROC_REPO_WRITE, -1, &istart, sizeof(istart));
1138 3efd8e31 2022-10-23 thomas if (ret == -1)
1139 3efd8e31 2022-10-23 thomas return got_error_from_errno("imsg_compose REF_UPDATES_START");
1140 3efd8e31 2022-10-23 thomas
1141 3efd8e31 2022-10-23 thomas return NULL;
1142 3efd8e31 2022-10-23 thomas }
1143 3efd8e31 2022-10-23 thomas
1144 3efd8e31 2022-10-23 thomas
1145 3efd8e31 2022-10-23 thomas static const struct got_error *
1146 9148c8a7 2023-01-02 thomas send_ref_update(struct gotd_ref_update *ref_update, struct gotd_imsgev *iev)
1147 3efd8e31 2022-10-23 thomas {
1148 9148c8a7 2023-01-02 thomas struct repo_write_client *client = &repo_write_client;
1149 3efd8e31 2022-10-23 thomas struct gotd_imsg_ref_update iref;
1150 3efd8e31 2022-10-23 thomas const char *refname = got_ref_get_name(ref_update->ref);
1151 3efd8e31 2022-10-23 thomas struct ibuf *wbuf;
1152 3efd8e31 2022-10-23 thomas size_t len;
1153 3efd8e31 2022-10-23 thomas
1154 3efd8e31 2022-10-23 thomas memset(&iref, 0, sizeof(iref));
1155 3efd8e31 2022-10-23 thomas memcpy(iref.old_id, ref_update->old_id.sha1, SHA1_DIGEST_LENGTH);
1156 3efd8e31 2022-10-23 thomas memcpy(iref.new_id, ref_update->new_id.sha1, SHA1_DIGEST_LENGTH);
1157 3efd8e31 2022-10-23 thomas iref.ref_is_new = ref_update->ref_is_new;
1158 49563dfb 2023-01-28 thomas iref.delete_ref = ref_update->delete_ref;
1159 3efd8e31 2022-10-23 thomas iref.client_id = client->id;
1160 3efd8e31 2022-10-23 thomas iref.name_len = strlen(refname);
1161 3efd8e31 2022-10-23 thomas
1162 3efd8e31 2022-10-23 thomas len = sizeof(iref) + iref.name_len;
1163 3efd8e31 2022-10-23 thomas wbuf = imsg_create(&iev->ibuf, GOTD_IMSG_REF_UPDATE, PROC_REPO_WRITE,
1164 3efd8e31 2022-10-23 thomas repo_write.pid, len);
1165 3efd8e31 2022-10-23 thomas if (wbuf == NULL)
1166 3efd8e31 2022-10-23 thomas return got_error_from_errno("imsg_create REF_UPDATE");
1167 3efd8e31 2022-10-23 thomas
1168 3efd8e31 2022-10-23 thomas if (imsg_add(wbuf, &iref, sizeof(iref)) == -1)
1169 3efd8e31 2022-10-23 thomas return got_error_from_errno("imsg_add REF_UPDATE");
1170 3efd8e31 2022-10-23 thomas if (imsg_add(wbuf, refname, iref.name_len) == -1)
1171 3efd8e31 2022-10-23 thomas return got_error_from_errno("imsg_add REF_UPDATE");
1172 3efd8e31 2022-10-23 thomas
1173 3efd8e31 2022-10-23 thomas wbuf->fd = -1;
1174 3efd8e31 2022-10-23 thomas imsg_close(&iev->ibuf, wbuf);
1175 3efd8e31 2022-10-23 thomas
1176 3efd8e31 2022-10-23 thomas gotd_imsg_event_add(iev);
1177 3efd8e31 2022-10-23 thomas return NULL;
1178 3efd8e31 2022-10-23 thomas }
1179 3efd8e31 2022-10-23 thomas
1180 3efd8e31 2022-10-23 thomas static const struct got_error *
1181 9148c8a7 2023-01-02 thomas update_refs(struct gotd_imsgev *iev)
1182 3efd8e31 2022-10-23 thomas {
1183 3efd8e31 2022-10-23 thomas const struct got_error *err = NULL;
1184 9148c8a7 2023-01-02 thomas struct repo_write_client *client = &repo_write_client;
1185 3efd8e31 2022-10-23 thomas struct gotd_ref_update *ref_update;
1186 3efd8e31 2022-10-23 thomas
1187 9148c8a7 2023-01-02 thomas err = send_ref_updates_start(client->nref_updates, iev);
1188 3efd8e31 2022-10-23 thomas if (err)
1189 3efd8e31 2022-10-23 thomas return err;
1190 3efd8e31 2022-10-23 thomas
1191 3efd8e31 2022-10-23 thomas STAILQ_FOREACH(ref_update, &client->ref_updates, entry) {
1192 9148c8a7 2023-01-02 thomas err = send_ref_update(ref_update, iev);
1193 3efd8e31 2022-10-23 thomas if (err)
1194 3efd8e31 2022-10-23 thomas goto done;
1195 3efd8e31 2022-10-23 thomas }
1196 3efd8e31 2022-10-23 thomas done:
1197 3efd8e31 2022-10-23 thomas return err;
1198 3efd8e31 2022-10-23 thomas }
1199 3efd8e31 2022-10-23 thomas
1200 3efd8e31 2022-10-23 thomas static const struct got_error *
1201 9148c8a7 2023-01-02 thomas receive_pack_pipe(struct imsg *imsg, struct gotd_imsgev *iev)
1202 3efd8e31 2022-10-23 thomas {
1203 9148c8a7 2023-01-02 thomas struct repo_write_client *client = &repo_write_client;
1204 3efd8e31 2022-10-23 thomas struct gotd_imsg_packfile_pipe ireq;
1205 3efd8e31 2022-10-23 thomas size_t datalen;
1206 3efd8e31 2022-10-23 thomas
1207 3efd8e31 2022-10-23 thomas log_debug("receving pack pipe descriptor");
1208 3efd8e31 2022-10-23 thomas
1209 3efd8e31 2022-10-23 thomas if (imsg->fd == -1)
1210 3efd8e31 2022-10-23 thomas return got_error(GOT_ERR_PRIVSEP_NO_FD);
1211 3efd8e31 2022-10-23 thomas
1212 3efd8e31 2022-10-23 thomas datalen = imsg->hdr.len - IMSG_HEADER_SIZE;
1213 3efd8e31 2022-10-23 thomas if (datalen != sizeof(ireq))
1214 3efd8e31 2022-10-23 thomas return got_error(GOT_ERR_PRIVSEP_LEN);
1215 3efd8e31 2022-10-23 thomas memcpy(&ireq, imsg->data, sizeof(ireq));
1216 3efd8e31 2022-10-23 thomas
1217 9148c8a7 2023-01-02 thomas if (client->pack_pipe != -1)
1218 3efd8e31 2022-10-23 thomas return got_error(GOT_ERR_PRIVSEP_MSG);
1219 3efd8e31 2022-10-23 thomas
1220 9148c8a7 2023-01-02 thomas client->pack_pipe = imsg->fd;
1221 3efd8e31 2022-10-23 thomas return NULL;
1222 3efd8e31 2022-10-23 thomas }
1223 3efd8e31 2022-10-23 thomas
1224 3efd8e31 2022-10-23 thomas static const struct got_error *
1225 9148c8a7 2023-01-02 thomas receive_pack_idx(struct imsg *imsg, struct gotd_imsgev *iev)
1226 3efd8e31 2022-10-23 thomas {
1227 9148c8a7 2023-01-02 thomas struct repo_write_client *client = &repo_write_client;
1228 3efd8e31 2022-10-23 thomas struct gotd_imsg_packidx_file ireq;
1229 3efd8e31 2022-10-23 thomas size_t datalen;
1230 3efd8e31 2022-10-23 thomas
1231 3efd8e31 2022-10-23 thomas log_debug("receving pack index output file");
1232 3efd8e31 2022-10-23 thomas
1233 3efd8e31 2022-10-23 thomas if (imsg->fd == -1)
1234 3efd8e31 2022-10-23 thomas return got_error(GOT_ERR_PRIVSEP_NO_FD);
1235 3efd8e31 2022-10-23 thomas
1236 3efd8e31 2022-10-23 thomas datalen = imsg->hdr.len - IMSG_HEADER_SIZE;
1237 3efd8e31 2022-10-23 thomas if (datalen != sizeof(ireq))
1238 3efd8e31 2022-10-23 thomas return got_error(GOT_ERR_PRIVSEP_LEN);
1239 3efd8e31 2022-10-23 thomas memcpy(&ireq, imsg->data, sizeof(ireq));
1240 3efd8e31 2022-10-23 thomas
1241 9148c8a7 2023-01-02 thomas if (client->packidx_fd != -1)
1242 3efd8e31 2022-10-23 thomas return got_error(GOT_ERR_PRIVSEP_MSG);
1243 3efd8e31 2022-10-23 thomas
1244 9148c8a7 2023-01-02 thomas client->packidx_fd = imsg->fd;
1245 3efd8e31 2022-10-23 thomas return NULL;
1246 3efd8e31 2022-10-23 thomas }
1247 3efd8e31 2022-10-23 thomas
1248 3efd8e31 2022-10-23 thomas static void
1249 62ee7d94 2023-01-10 thomas repo_write_dispatch_session(int fd, short event, void *arg)
1250 3efd8e31 2022-10-23 thomas {
1251 3efd8e31 2022-10-23 thomas const struct got_error *err = NULL;
1252 3efd8e31 2022-10-23 thomas struct gotd_imsgev *iev = arg;
1253 3efd8e31 2022-10-23 thomas struct imsgbuf *ibuf = &iev->ibuf;
1254 3efd8e31 2022-10-23 thomas struct imsg imsg;
1255 9148c8a7 2023-01-02 thomas struct repo_write_client *client = &repo_write_client;
1256 3efd8e31 2022-10-23 thomas ssize_t n;
1257 d98779cd 2023-01-19 thomas int shut = 0, have_packfile = 0;
1258 3efd8e31 2022-10-23 thomas
1259 3efd8e31 2022-10-23 thomas if (event & EV_READ) {
1260 3efd8e31 2022-10-23 thomas if ((n = imsg_read(ibuf)) == -1 && errno != EAGAIN)
1261 3efd8e31 2022-10-23 thomas fatal("imsg_read error");
1262 3efd8e31 2022-10-23 thomas if (n == 0) /* Connection closed. */
1263 3efd8e31 2022-10-23 thomas shut = 1;
1264 3efd8e31 2022-10-23 thomas }
1265 3efd8e31 2022-10-23 thomas
1266 3efd8e31 2022-10-23 thomas if (event & EV_WRITE) {
1267 3efd8e31 2022-10-23 thomas n = msgbuf_write(&ibuf->w);
1268 3efd8e31 2022-10-23 thomas if (n == -1 && errno != EAGAIN)
1269 3efd8e31 2022-10-23 thomas fatal("msgbuf_write");
1270 3efd8e31 2022-10-23 thomas if (n == 0) /* Connection closed. */
1271 3efd8e31 2022-10-23 thomas shut = 1;
1272 3efd8e31 2022-10-23 thomas }
1273 3efd8e31 2022-10-23 thomas
1274 3efd8e31 2022-10-23 thomas for (;;) {
1275 3efd8e31 2022-10-23 thomas if ((n = imsg_get(ibuf, &imsg)) == -1)
1276 3efd8e31 2022-10-23 thomas fatal("%s: imsg_get error", __func__);
1277 3efd8e31 2022-10-23 thomas if (n == 0) /* No more messages. */
1278 3efd8e31 2022-10-23 thomas break;
1279 3efd8e31 2022-10-23 thomas
1280 9148c8a7 2023-01-02 thomas if (imsg.hdr.type != GOTD_IMSG_LIST_REFS_INTERNAL &&
1281 9148c8a7 2023-01-02 thomas client->id == 0) {
1282 9148c8a7 2023-01-02 thomas err = got_error(GOT_ERR_PRIVSEP_MSG);
1283 9148c8a7 2023-01-02 thomas break;
1284 9148c8a7 2023-01-02 thomas }
1285 9148c8a7 2023-01-02 thomas
1286 3efd8e31 2022-10-23 thomas switch (imsg.hdr.type) {
1287 3efd8e31 2022-10-23 thomas case GOTD_IMSG_LIST_REFS_INTERNAL:
1288 9148c8a7 2023-01-02 thomas err = list_refs(&imsg);
1289 3efd8e31 2022-10-23 thomas if (err)
1290 3efd8e31 2022-10-23 thomas log_warnx("%s: ls-refs: %s", repo_write.title,
1291 3efd8e31 2022-10-23 thomas err->msg);
1292 3efd8e31 2022-10-23 thomas break;
1293 3efd8e31 2022-10-23 thomas case GOTD_IMSG_REF_UPDATE:
1294 9148c8a7 2023-01-02 thomas err = recv_ref_update(&imsg);
1295 3efd8e31 2022-10-23 thomas if (err)
1296 3efd8e31 2022-10-23 thomas log_warnx("%s: ref-update: %s",
1297 3efd8e31 2022-10-23 thomas repo_write.title, err->msg);
1298 3efd8e31 2022-10-23 thomas break;
1299 3efd8e31 2022-10-23 thomas case GOTD_IMSG_PACKFILE_PIPE:
1300 9148c8a7 2023-01-02 thomas err = receive_pack_pipe(&imsg, iev);
1301 3efd8e31 2022-10-23 thomas if (err) {
1302 3efd8e31 2022-10-23 thomas log_warnx("%s: receiving pack pipe: %s",
1303 3efd8e31 2022-10-23 thomas repo_write.title, err->msg);
1304 3efd8e31 2022-10-23 thomas break;
1305 3efd8e31 2022-10-23 thomas }
1306 3efd8e31 2022-10-23 thomas break;
1307 3efd8e31 2022-10-23 thomas case GOTD_IMSG_PACKIDX_FILE:
1308 9148c8a7 2023-01-02 thomas err = receive_pack_idx(&imsg, iev);
1309 3efd8e31 2022-10-23 thomas if (err) {
1310 3efd8e31 2022-10-23 thomas log_warnx("%s: receiving pack index: %s",
1311 3efd8e31 2022-10-23 thomas repo_write.title, err->msg);
1312 3efd8e31 2022-10-23 thomas break;
1313 3efd8e31 2022-10-23 thomas }
1314 3efd8e31 2022-10-23 thomas break;
1315 3efd8e31 2022-10-23 thomas case GOTD_IMSG_RECV_PACKFILE:
1316 d98779cd 2023-01-19 thomas err = recv_packfile(&have_packfile, &imsg);
1317 3efd8e31 2022-10-23 thomas if (err) {
1318 3efd8e31 2022-10-23 thomas log_warnx("%s: receive packfile: %s",
1319 3efd8e31 2022-10-23 thomas repo_write.title, err->msg);
1320 3efd8e31 2022-10-23 thomas break;
1321 3efd8e31 2022-10-23 thomas }
1322 d98779cd 2023-01-19 thomas if (have_packfile) {
1323 d98779cd 2023-01-19 thomas err = verify_packfile();
1324 d98779cd 2023-01-19 thomas if (err) {
1325 d98779cd 2023-01-19 thomas log_warnx("%s: verify packfile: %s",
1326 d98779cd 2023-01-19 thomas repo_write.title, err->msg);
1327 d98779cd 2023-01-19 thomas break;
1328 d98779cd 2023-01-19 thomas }
1329 d98779cd 2023-01-19 thomas err = install_packfile(iev);
1330 d98779cd 2023-01-19 thomas if (err) {
1331 d98779cd 2023-01-19 thomas log_warnx("%s: install packfile: %s",
1332 d98779cd 2023-01-19 thomas repo_write.title, err->msg);
1333 d98779cd 2023-01-19 thomas break;
1334 d98779cd 2023-01-19 thomas }
1335 3efd8e31 2022-10-23 thomas }
1336 9148c8a7 2023-01-02 thomas err = update_refs(iev);
1337 3efd8e31 2022-10-23 thomas if (err) {
1338 3efd8e31 2022-10-23 thomas log_warnx("%s: update refs: %s",
1339 3efd8e31 2022-10-23 thomas repo_write.title, err->msg);
1340 3efd8e31 2022-10-23 thomas }
1341 3efd8e31 2022-10-23 thomas break;
1342 62ee7d94 2023-01-10 thomas default:
1343 62ee7d94 2023-01-10 thomas log_debug("%s: unexpected imsg %d", repo_write.title,
1344 62ee7d94 2023-01-10 thomas imsg.hdr.type);
1345 62ee7d94 2023-01-10 thomas break;
1346 62ee7d94 2023-01-10 thomas }
1347 62ee7d94 2023-01-10 thomas
1348 62ee7d94 2023-01-10 thomas imsg_free(&imsg);
1349 62ee7d94 2023-01-10 thomas }
1350 62ee7d94 2023-01-10 thomas
1351 62ee7d94 2023-01-10 thomas if (!shut && check_cancelled(NULL) == NULL) {
1352 62ee7d94 2023-01-10 thomas if (err &&
1353 62ee7d94 2023-01-10 thomas gotd_imsg_send_error_event(iev, PROC_REPO_WRITE,
1354 62ee7d94 2023-01-10 thomas client->id, err) == -1) {
1355 62ee7d94 2023-01-10 thomas log_warnx("could not send error to parent: %s",
1356 62ee7d94 2023-01-10 thomas err->msg);
1357 62ee7d94 2023-01-10 thomas }
1358 62ee7d94 2023-01-10 thomas gotd_imsg_event_add(iev);
1359 62ee7d94 2023-01-10 thomas } else {
1360 62ee7d94 2023-01-10 thomas /* This pipe is dead. Remove its event handler */
1361 62ee7d94 2023-01-10 thomas event_del(&iev->ev);
1362 62ee7d94 2023-01-10 thomas event_loopexit(NULL);
1363 62ee7d94 2023-01-10 thomas }
1364 62ee7d94 2023-01-10 thomas }
1365 62ee7d94 2023-01-10 thomas
1366 62ee7d94 2023-01-10 thomas static const struct got_error *
1367 62ee7d94 2023-01-10 thomas recv_connect(struct imsg *imsg)
1368 62ee7d94 2023-01-10 thomas {
1369 62ee7d94 2023-01-10 thomas struct gotd_imsgev *iev = &repo_write.session_iev;
1370 62ee7d94 2023-01-10 thomas size_t datalen;
1371 62ee7d94 2023-01-10 thomas
1372 62ee7d94 2023-01-10 thomas datalen = imsg->hdr.len - IMSG_HEADER_SIZE;
1373 62ee7d94 2023-01-10 thomas if (datalen != 0)
1374 62ee7d94 2023-01-10 thomas return got_error(GOT_ERR_PRIVSEP_LEN);
1375 62ee7d94 2023-01-10 thomas if (imsg->fd == -1)
1376 62ee7d94 2023-01-10 thomas return got_error(GOT_ERR_PRIVSEP_NO_FD);
1377 62ee7d94 2023-01-10 thomas
1378 62ee7d94 2023-01-10 thomas if (repo_write.session_fd != -1)
1379 62ee7d94 2023-01-10 thomas return got_error(GOT_ERR_PRIVSEP_MSG);
1380 62ee7d94 2023-01-10 thomas
1381 62ee7d94 2023-01-10 thomas repo_write.session_fd = imsg->fd;
1382 62ee7d94 2023-01-10 thomas
1383 62ee7d94 2023-01-10 thomas imsg_init(&iev->ibuf, repo_write.session_fd);
1384 62ee7d94 2023-01-10 thomas iev->handler = repo_write_dispatch_session;
1385 62ee7d94 2023-01-10 thomas iev->events = EV_READ;
1386 62ee7d94 2023-01-10 thomas iev->handler_arg = NULL;
1387 62ee7d94 2023-01-10 thomas event_set(&iev->ev, iev->ibuf.fd, EV_READ,
1388 62ee7d94 2023-01-10 thomas repo_write_dispatch_session, iev);
1389 62ee7d94 2023-01-10 thomas gotd_imsg_event_add(iev);
1390 62ee7d94 2023-01-10 thomas
1391 62ee7d94 2023-01-10 thomas return NULL;
1392 62ee7d94 2023-01-10 thomas }
1393 62ee7d94 2023-01-10 thomas
1394 62ee7d94 2023-01-10 thomas static void
1395 62ee7d94 2023-01-10 thomas repo_write_dispatch(int fd, short event, void *arg)
1396 62ee7d94 2023-01-10 thomas {
1397 62ee7d94 2023-01-10 thomas const struct got_error *err = NULL;
1398 62ee7d94 2023-01-10 thomas struct gotd_imsgev *iev = arg;
1399 62ee7d94 2023-01-10 thomas struct imsgbuf *ibuf = &iev->ibuf;
1400 62ee7d94 2023-01-10 thomas struct imsg imsg;
1401 62ee7d94 2023-01-10 thomas ssize_t n;
1402 62ee7d94 2023-01-10 thomas int shut = 0;
1403 62ee7d94 2023-01-10 thomas struct repo_write_client *client = &repo_write_client;
1404 62ee7d94 2023-01-10 thomas
1405 62ee7d94 2023-01-10 thomas if (event & EV_READ) {
1406 62ee7d94 2023-01-10 thomas if ((n = imsg_read(ibuf)) == -1 && errno != EAGAIN)
1407 62ee7d94 2023-01-10 thomas fatal("imsg_read error");
1408 62ee7d94 2023-01-10 thomas if (n == 0) /* Connection closed. */
1409 9148c8a7 2023-01-02 thomas shut = 1;
1410 62ee7d94 2023-01-10 thomas }
1411 62ee7d94 2023-01-10 thomas
1412 62ee7d94 2023-01-10 thomas if (event & EV_WRITE) {
1413 62ee7d94 2023-01-10 thomas n = msgbuf_write(&ibuf->w);
1414 62ee7d94 2023-01-10 thomas if (n == -1 && errno != EAGAIN)
1415 62ee7d94 2023-01-10 thomas fatal("msgbuf_write");
1416 62ee7d94 2023-01-10 thomas if (n == 0) /* Connection closed. */
1417 62ee7d94 2023-01-10 thomas shut = 1;
1418 62ee7d94 2023-01-10 thomas }
1419 62ee7d94 2023-01-10 thomas
1420 62ee7d94 2023-01-10 thomas while (err == NULL && check_cancelled(NULL) == NULL) {
1421 62ee7d94 2023-01-10 thomas if ((n = imsg_get(ibuf, &imsg)) == -1)
1422 62ee7d94 2023-01-10 thomas fatal("%s: imsg_get", __func__);
1423 62ee7d94 2023-01-10 thomas if (n == 0) /* No more messages. */
1424 3efd8e31 2022-10-23 thomas break;
1425 62ee7d94 2023-01-10 thomas
1426 62ee7d94 2023-01-10 thomas switch (imsg.hdr.type) {
1427 62ee7d94 2023-01-10 thomas case GOTD_IMSG_CONNECT_REPO_CHILD:
1428 62ee7d94 2023-01-10 thomas err = recv_connect(&imsg);
1429 62ee7d94 2023-01-10 thomas break;
1430 3efd8e31 2022-10-23 thomas default:
1431 3efd8e31 2022-10-23 thomas log_debug("%s: unexpected imsg %d", repo_write.title,
1432 3efd8e31 2022-10-23 thomas imsg.hdr.type);
1433 3efd8e31 2022-10-23 thomas break;
1434 3efd8e31 2022-10-23 thomas }
1435 3efd8e31 2022-10-23 thomas
1436 3efd8e31 2022-10-23 thomas imsg_free(&imsg);
1437 3efd8e31 2022-10-23 thomas }
1438 3efd8e31 2022-10-23 thomas
1439 3efd8e31 2022-10-23 thomas if (!shut && check_cancelled(NULL) == NULL) {
1440 3efd8e31 2022-10-23 thomas if (err &&
1441 3efd8e31 2022-10-23 thomas gotd_imsg_send_error_event(iev, PROC_REPO_WRITE,
1442 9148c8a7 2023-01-02 thomas client->id, err) == -1) {
1443 3efd8e31 2022-10-23 thomas log_warnx("could not send error to parent: %s",
1444 3efd8e31 2022-10-23 thomas err->msg);
1445 3efd8e31 2022-10-23 thomas }
1446 3efd8e31 2022-10-23 thomas gotd_imsg_event_add(iev);
1447 3efd8e31 2022-10-23 thomas } else {
1448 3efd8e31 2022-10-23 thomas /* This pipe is dead. Remove its event handler */
1449 3efd8e31 2022-10-23 thomas event_del(&iev->ev);
1450 3efd8e31 2022-10-23 thomas event_loopexit(NULL);
1451 3efd8e31 2022-10-23 thomas }
1452 3efd8e31 2022-10-23 thomas }
1453 3efd8e31 2022-10-23 thomas
1454 3efd8e31 2022-10-23 thomas void
1455 414e37cb 2022-12-30 thomas repo_write_main(const char *title, const char *repo_path,
1456 414e37cb 2022-12-30 thomas int *pack_fds, int *temp_fds)
1457 3efd8e31 2022-10-23 thomas {
1458 3efd8e31 2022-10-23 thomas const struct got_error *err = NULL;
1459 92db09ff 2023-02-17 thomas struct repo_write_client *client = &repo_write_client;
1460 3efd8e31 2022-10-23 thomas struct gotd_imsgev iev;
1461 3efd8e31 2022-10-23 thomas
1462 92db09ff 2023-02-17 thomas client->fd = -1;
1463 92db09ff 2023-02-17 thomas client->pack_pipe = -1;
1464 92db09ff 2023-02-17 thomas client->packidx_fd = -1;
1465 92db09ff 2023-02-17 thomas client->pack.fd = -1;
1466 92db09ff 2023-02-17 thomas
1467 3efd8e31 2022-10-23 thomas repo_write.title = title;
1468 3efd8e31 2022-10-23 thomas repo_write.pid = getpid();
1469 3efd8e31 2022-10-23 thomas repo_write.pack_fds = pack_fds;
1470 3efd8e31 2022-10-23 thomas repo_write.temp_fds = temp_fds;
1471 62ee7d94 2023-01-10 thomas repo_write.session_fd = -1;
1472 62ee7d94 2023-01-10 thomas repo_write.session_iev.ibuf.fd = -1;
1473 3efd8e31 2022-10-23 thomas
1474 9148c8a7 2023-01-02 thomas STAILQ_INIT(&repo_write_client.ref_updates);
1475 3efd8e31 2022-10-23 thomas
1476 414e37cb 2022-12-30 thomas err = got_repo_open(&repo_write.repo, repo_path, NULL, pack_fds);
1477 3efd8e31 2022-10-23 thomas if (err)
1478 3efd8e31 2022-10-23 thomas goto done;
1479 3efd8e31 2022-10-23 thomas if (!got_repo_is_bare(repo_write.repo)) {
1480 3efd8e31 2022-10-23 thomas err = got_error_msg(GOT_ERR_NOT_GIT_REPO,
1481 3efd8e31 2022-10-23 thomas "bare git repository required");
1482 3efd8e31 2022-10-23 thomas goto done;
1483 3efd8e31 2022-10-23 thomas }
1484 3efd8e31 2022-10-23 thomas
1485 3efd8e31 2022-10-23 thomas got_repo_temp_fds_set(repo_write.repo, temp_fds);
1486 3efd8e31 2022-10-23 thomas
1487 3efd8e31 2022-10-23 thomas signal(SIGINT, catch_sigint);
1488 3efd8e31 2022-10-23 thomas signal(SIGTERM, catch_sigterm);
1489 3efd8e31 2022-10-23 thomas signal(SIGPIPE, SIG_IGN);
1490 3efd8e31 2022-10-23 thomas signal(SIGHUP, SIG_IGN);
1491 3efd8e31 2022-10-23 thomas
1492 bb3a6ce9 2022-11-17 thomas imsg_init(&iev.ibuf, GOTD_FILENO_MSG_PIPE);
1493 3efd8e31 2022-10-23 thomas iev.handler = repo_write_dispatch;
1494 3efd8e31 2022-10-23 thomas iev.events = EV_READ;
1495 3efd8e31 2022-10-23 thomas iev.handler_arg = NULL;
1496 3efd8e31 2022-10-23 thomas event_set(&iev.ev, iev.ibuf.fd, EV_READ, repo_write_dispatch, &iev);
1497 85b37c72 2022-12-30 thomas if (gotd_imsg_compose_event(&iev, GOTD_IMSG_REPO_CHILD_READY,
1498 85b37c72 2022-12-30 thomas PROC_REPO_WRITE, -1, NULL, 0) == -1) {
1499 85b37c72 2022-12-30 thomas err = got_error_from_errno("imsg compose REPO_CHILD_READY");
1500 3efd8e31 2022-10-23 thomas goto done;
1501 3efd8e31 2022-10-23 thomas }
1502 3efd8e31 2022-10-23 thomas
1503 3efd8e31 2022-10-23 thomas event_dispatch();
1504 3efd8e31 2022-10-23 thomas done:
1505 3efd8e31 2022-10-23 thomas if (err)
1506 3efd8e31 2022-10-23 thomas log_warnx("%s: %s", title, err->msg);
1507 3efd8e31 2022-10-23 thomas repo_write_shutdown();
1508 3efd8e31 2022-10-23 thomas }
1509 3efd8e31 2022-10-23 thomas
1510 3efd8e31 2022-10-23 thomas void
1511 3efd8e31 2022-10-23 thomas repo_write_shutdown(void)
1512 3efd8e31 2022-10-23 thomas {
1513 92db09ff 2023-02-17 thomas struct repo_write_client *client = &repo_write_client;
1514 92db09ff 2023-02-17 thomas struct gotd_ref_update *ref_update;
1515 92db09ff 2023-02-17 thomas
1516 3efd8e31 2022-10-23 thomas log_debug("%s: shutting down", repo_write.title);
1517 92db09ff 2023-02-17 thomas
1518 92db09ff 2023-02-17 thomas while (!STAILQ_EMPTY(&client->ref_updates)) {
1519 92db09ff 2023-02-17 thomas ref_update = STAILQ_FIRST(&client->ref_updates);
1520 92db09ff 2023-02-17 thomas STAILQ_REMOVE_HEAD(&client->ref_updates, entry);
1521 92db09ff 2023-02-17 thomas got_ref_close(ref_update->ref);
1522 92db09ff 2023-02-17 thomas free(ref_update);
1523 92db09ff 2023-02-17 thomas }
1524 92db09ff 2023-02-17 thomas
1525 92db09ff 2023-02-17 thomas got_pack_close(&client->pack);
1526 92db09ff 2023-02-17 thomas if (client->fd != -1)
1527 92db09ff 2023-02-17 thomas close(client->fd);
1528 92db09ff 2023-02-17 thomas if (client->pack_pipe != -1)
1529 92db09ff 2023-02-17 thomas close(client->pack_pipe);
1530 92db09ff 2023-02-17 thomas if (client->packidx_fd != -1)
1531 92db09ff 2023-02-17 thomas close(client->packidx_fd);
1532 92db09ff 2023-02-17 thomas
1533 3efd8e31 2022-10-23 thomas if (repo_write.repo)
1534 3efd8e31 2022-10-23 thomas got_repo_close(repo_write.repo);
1535 3efd8e31 2022-10-23 thomas got_repo_pack_fds_close(repo_write.pack_fds);
1536 80536967 2022-10-30 thomas got_repo_temp_fds_close(repo_write.temp_fds);
1537 62ee7d94 2023-01-10 thomas if (repo_write.session_fd != -1)
1538 62ee7d94 2023-01-10 thomas close(repo_write.session_fd);
1539 3efd8e31 2022-10-23 thomas exit(0);
1540 3efd8e31 2022-10-23 thomas }