Blame


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