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 5822e79e 2023-02-23 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 ae25a666 2023-02-23 op #include "got_lib_hash.h"
48 13b2bc37 2022-10-23 stsp #include "got_lib_object.h"
49 13b2bc37 2022-10-23 stsp #include "got_lib_object_cache.h"
50 9afa3de2 2023-04-04 stsp #include "got_lib_object_idset.h"
51 9afa3de2 2023-04-04 stsp #include "got_lib_object_parse.h"
52 13b2bc37 2022-10-23 stsp #include "got_lib_ratelimit.h"
53 13b2bc37 2022-10-23 stsp #include "got_lib_pack.h"
54 13b2bc37 2022-10-23 stsp #include "got_lib_pack_index.h"
55 13b2bc37 2022-10-23 stsp #include "got_lib_repository.h"
56 13b2bc37 2022-10-23 stsp #include "got_lib_poll.h"
57 13b2bc37 2022-10-23 stsp
58 13b2bc37 2022-10-23 stsp #include "log.h"
59 13b2bc37 2022-10-23 stsp #include "gotd.h"
60 13b2bc37 2022-10-23 stsp #include "repo_write.h"
61 13b2bc37 2022-10-23 stsp
62 13b2bc37 2022-10-23 stsp #ifndef nitems
63 13b2bc37 2022-10-23 stsp #define nitems(_a) (sizeof((_a)) / sizeof((_a)[0]))
64 13b2bc37 2022-10-23 stsp #endif
65 13b2bc37 2022-10-23 stsp
66 13b2bc37 2022-10-23 stsp static struct repo_write {
67 13b2bc37 2022-10-23 stsp pid_t pid;
68 13b2bc37 2022-10-23 stsp const char *title;
69 13b2bc37 2022-10-23 stsp struct got_repository *repo;
70 13b2bc37 2022-10-23 stsp int *pack_fds;
71 13b2bc37 2022-10-23 stsp int *temp_fds;
72 ae7c1b78 2023-01-10 stsp int session_fd;
73 ae7c1b78 2023-01-10 stsp struct gotd_imsgev session_iev;
74 9afa3de2 2023-04-04 stsp struct got_pathlist_head *protected_tag_namespaces;
75 9afa3de2 2023-04-04 stsp struct got_pathlist_head *protected_branch_namespaces;
76 9afa3de2 2023-04-04 stsp struct got_pathlist_head *protected_branches;
77 13b2bc37 2022-10-23 stsp } repo_write;
78 13b2bc37 2022-10-23 stsp
79 13b2bc37 2022-10-23 stsp struct gotd_ref_update {
80 13b2bc37 2022-10-23 stsp STAILQ_ENTRY(gotd_ref_update) entry;
81 13b2bc37 2022-10-23 stsp struct got_reference *ref;
82 13b2bc37 2022-10-23 stsp int ref_is_new;
83 9a8e357c 2023-01-28 op int delete_ref;
84 13b2bc37 2022-10-23 stsp struct got_object_id old_id;
85 13b2bc37 2022-10-23 stsp struct got_object_id new_id;
86 13b2bc37 2022-10-23 stsp };
87 13b2bc37 2022-10-23 stsp STAILQ_HEAD(gotd_ref_updates, gotd_ref_update);
88 13b2bc37 2022-10-23 stsp
89 1a52c9bf 2022-12-30 stsp static struct repo_write_client {
90 13b2bc37 2022-10-23 stsp uint32_t id;
91 13b2bc37 2022-10-23 stsp int fd;
92 7fec5f4a 2022-10-28 stsp int pack_pipe;
93 13b2bc37 2022-10-23 stsp struct got_pack pack;
94 13b2bc37 2022-10-23 stsp uint8_t pack_sha1[SHA1_DIGEST_LENGTH];
95 13b2bc37 2022-10-23 stsp int packidx_fd;
96 13b2bc37 2022-10-23 stsp struct gotd_ref_updates ref_updates;
97 13b2bc37 2022-10-23 stsp int nref_updates;
98 9a8e357c 2023-01-28 op int nref_del;
99 0ff2c315 2023-01-18 stsp int nref_new;
100 cc88020e 2023-04-11 stsp int nref_move;
101 1a52c9bf 2022-12-30 stsp } repo_write_client;
102 13b2bc37 2022-10-23 stsp
103 13b2bc37 2022-10-23 stsp static volatile sig_atomic_t sigint_received;
104 13b2bc37 2022-10-23 stsp static volatile sig_atomic_t sigterm_received;
105 13b2bc37 2022-10-23 stsp
106 13b2bc37 2022-10-23 stsp static void
107 13b2bc37 2022-10-23 stsp catch_sigint(int signo)
108 13b2bc37 2022-10-23 stsp {
109 13b2bc37 2022-10-23 stsp sigint_received = 1;
110 13b2bc37 2022-10-23 stsp }
111 13b2bc37 2022-10-23 stsp
112 13b2bc37 2022-10-23 stsp static void
113 13b2bc37 2022-10-23 stsp catch_sigterm(int signo)
114 13b2bc37 2022-10-23 stsp {
115 13b2bc37 2022-10-23 stsp sigterm_received = 1;
116 13b2bc37 2022-10-23 stsp }
117 13b2bc37 2022-10-23 stsp
118 13b2bc37 2022-10-23 stsp static const struct got_error *
119 13b2bc37 2022-10-23 stsp check_cancelled(void *arg)
120 13b2bc37 2022-10-23 stsp {
121 13b2bc37 2022-10-23 stsp if (sigint_received || sigterm_received)
122 13b2bc37 2022-10-23 stsp return got_error(GOT_ERR_CANCELLED);
123 13b2bc37 2022-10-23 stsp
124 13b2bc37 2022-10-23 stsp return NULL;
125 13b2bc37 2022-10-23 stsp }
126 13b2bc37 2022-10-23 stsp
127 13b2bc37 2022-10-23 stsp static const struct got_error *
128 13b2bc37 2022-10-23 stsp send_peeled_tag_ref(struct got_reference *ref, struct got_object *obj,
129 13b2bc37 2022-10-23 stsp struct imsgbuf *ibuf)
130 13b2bc37 2022-10-23 stsp {
131 13b2bc37 2022-10-23 stsp const struct got_error *err = NULL;
132 13b2bc37 2022-10-23 stsp struct got_tag_object *tag;
133 13b2bc37 2022-10-23 stsp size_t namelen, len;
134 13b2bc37 2022-10-23 stsp char *peeled_refname = NULL;
135 13b2bc37 2022-10-23 stsp struct got_object_id *id;
136 13b2bc37 2022-10-23 stsp struct ibuf *wbuf;
137 13b2bc37 2022-10-23 stsp
138 13b2bc37 2022-10-23 stsp err = got_object_tag_open(&tag, repo_write.repo, obj);
139 13b2bc37 2022-10-23 stsp if (err)
140 13b2bc37 2022-10-23 stsp return err;
141 13b2bc37 2022-10-23 stsp
142 13b2bc37 2022-10-23 stsp if (asprintf(&peeled_refname, "%s^{}", got_ref_get_name(ref)) == -1) {
143 13b2bc37 2022-10-23 stsp err = got_error_from_errno("asprintf");
144 13b2bc37 2022-10-23 stsp goto done;
145 13b2bc37 2022-10-23 stsp }
146 13b2bc37 2022-10-23 stsp
147 13b2bc37 2022-10-23 stsp id = got_object_tag_get_object_id(tag);
148 13b2bc37 2022-10-23 stsp namelen = strlen(peeled_refname);
149 13b2bc37 2022-10-23 stsp
150 13b2bc37 2022-10-23 stsp len = sizeof(struct gotd_imsg_ref) + namelen;
151 13b2bc37 2022-10-23 stsp if (len > MAX_IMSGSIZE - IMSG_HEADER_SIZE) {
152 13b2bc37 2022-10-23 stsp err = got_error(GOT_ERR_NO_SPACE);
153 13b2bc37 2022-10-23 stsp goto done;
154 13b2bc37 2022-10-23 stsp }
155 13b2bc37 2022-10-23 stsp
156 13b2bc37 2022-10-23 stsp wbuf = imsg_create(ibuf, GOTD_IMSG_REF, PROC_REPO_WRITE,
157 13b2bc37 2022-10-23 stsp repo_write.pid, len);
158 13b2bc37 2022-10-23 stsp if (wbuf == NULL) {
159 13b2bc37 2022-10-23 stsp err = got_error_from_errno("imsg_create REF");
160 13b2bc37 2022-10-23 stsp goto done;
161 13b2bc37 2022-10-23 stsp }
162 13b2bc37 2022-10-23 stsp
163 13b2bc37 2022-10-23 stsp /* Keep in sync with struct gotd_imsg_ref definition. */
164 13b2bc37 2022-10-23 stsp if (imsg_add(wbuf, id->sha1, SHA1_DIGEST_LENGTH) == -1) {
165 13b2bc37 2022-10-23 stsp err = got_error_from_errno("imsg_add REF");
166 13b2bc37 2022-10-23 stsp goto done;
167 13b2bc37 2022-10-23 stsp }
168 13b2bc37 2022-10-23 stsp if (imsg_add(wbuf, &namelen, sizeof(namelen)) == -1) {
169 13b2bc37 2022-10-23 stsp err = got_error_from_errno("imsg_add REF");
170 13b2bc37 2022-10-23 stsp goto done;
171 13b2bc37 2022-10-23 stsp }
172 13b2bc37 2022-10-23 stsp if (imsg_add(wbuf, peeled_refname, namelen) == -1) {
173 13b2bc37 2022-10-23 stsp err = got_error_from_errno("imsg_add REF");
174 13b2bc37 2022-10-23 stsp goto done;
175 13b2bc37 2022-10-23 stsp }
176 13b2bc37 2022-10-23 stsp
177 13b2bc37 2022-10-23 stsp wbuf->fd = -1;
178 13b2bc37 2022-10-23 stsp imsg_close(ibuf, wbuf);
179 13b2bc37 2022-10-23 stsp done:
180 13b2bc37 2022-10-23 stsp got_object_tag_close(tag);
181 13b2bc37 2022-10-23 stsp return err;
182 13b2bc37 2022-10-23 stsp }
183 13b2bc37 2022-10-23 stsp
184 13b2bc37 2022-10-23 stsp static const struct got_error *
185 13b2bc37 2022-10-23 stsp send_ref(struct got_reference *ref, struct imsgbuf *ibuf)
186 13b2bc37 2022-10-23 stsp {
187 13b2bc37 2022-10-23 stsp const struct got_error *err;
188 13b2bc37 2022-10-23 stsp const char *refname = got_ref_get_name(ref);
189 13b2bc37 2022-10-23 stsp size_t namelen;
190 13b2bc37 2022-10-23 stsp struct got_object_id *id = NULL;
191 13b2bc37 2022-10-23 stsp struct got_object *obj = NULL;
192 13b2bc37 2022-10-23 stsp size_t len;
193 13b2bc37 2022-10-23 stsp struct ibuf *wbuf;
194 13b2bc37 2022-10-23 stsp
195 13b2bc37 2022-10-23 stsp namelen = strlen(refname);
196 13b2bc37 2022-10-23 stsp
197 13b2bc37 2022-10-23 stsp len = sizeof(struct gotd_imsg_ref) + namelen;
198 13b2bc37 2022-10-23 stsp if (len > MAX_IMSGSIZE - IMSG_HEADER_SIZE)
199 13b2bc37 2022-10-23 stsp return got_error(GOT_ERR_NO_SPACE);
200 13b2bc37 2022-10-23 stsp
201 13b2bc37 2022-10-23 stsp err = got_ref_resolve(&id, repo_write.repo, ref);
202 13b2bc37 2022-10-23 stsp if (err)
203 13b2bc37 2022-10-23 stsp return err;
204 13b2bc37 2022-10-23 stsp
205 13b2bc37 2022-10-23 stsp wbuf = imsg_create(ibuf, GOTD_IMSG_REF, PROC_REPO_WRITE,
206 13b2bc37 2022-10-23 stsp repo_write.pid, len);
207 13b2bc37 2022-10-23 stsp if (wbuf == NULL) {
208 13b2bc37 2022-10-23 stsp err = got_error_from_errno("imsg_create REF");
209 13b2bc37 2022-10-23 stsp goto done;
210 13b2bc37 2022-10-23 stsp }
211 13b2bc37 2022-10-23 stsp
212 13b2bc37 2022-10-23 stsp /* Keep in sync with struct gotd_imsg_ref definition. */
213 13b2bc37 2022-10-23 stsp if (imsg_add(wbuf, id->sha1, SHA1_DIGEST_LENGTH) == -1)
214 13b2bc37 2022-10-23 stsp return got_error_from_errno("imsg_add REF");
215 13b2bc37 2022-10-23 stsp if (imsg_add(wbuf, &namelen, sizeof(namelen)) == -1)
216 13b2bc37 2022-10-23 stsp return got_error_from_errno("imsg_add REF");
217 13b2bc37 2022-10-23 stsp if (imsg_add(wbuf, refname, namelen) == -1)
218 13b2bc37 2022-10-23 stsp return got_error_from_errno("imsg_add REF");
219 13b2bc37 2022-10-23 stsp
220 13b2bc37 2022-10-23 stsp wbuf->fd = -1;
221 13b2bc37 2022-10-23 stsp imsg_close(ibuf, wbuf);
222 13b2bc37 2022-10-23 stsp
223 13b2bc37 2022-10-23 stsp err = got_object_open(&obj, repo_write.repo, id);
224 13b2bc37 2022-10-23 stsp if (err)
225 13b2bc37 2022-10-23 stsp goto done;
226 13b2bc37 2022-10-23 stsp if (obj->type == GOT_OBJ_TYPE_TAG)
227 13b2bc37 2022-10-23 stsp err = send_peeled_tag_ref(ref, obj, ibuf);
228 13b2bc37 2022-10-23 stsp done:
229 13b2bc37 2022-10-23 stsp if (obj)
230 13b2bc37 2022-10-23 stsp got_object_close(obj);
231 13b2bc37 2022-10-23 stsp free(id);
232 13b2bc37 2022-10-23 stsp return err;
233 13b2bc37 2022-10-23 stsp }
234 13b2bc37 2022-10-23 stsp
235 13b2bc37 2022-10-23 stsp static const struct got_error *
236 1a52c9bf 2022-12-30 stsp list_refs(struct imsg *imsg)
237 13b2bc37 2022-10-23 stsp {
238 13b2bc37 2022-10-23 stsp const struct got_error *err;
239 1a52c9bf 2022-12-30 stsp struct repo_write_client *client = &repo_write_client;
240 13b2bc37 2022-10-23 stsp struct got_reflist_head refs;
241 13b2bc37 2022-10-23 stsp struct got_reflist_entry *re;
242 13b2bc37 2022-10-23 stsp struct gotd_imsg_list_refs_internal ireq;
243 13b2bc37 2022-10-23 stsp size_t datalen;
244 13b2bc37 2022-10-23 stsp struct gotd_imsg_reflist irefs;
245 13b2bc37 2022-10-23 stsp struct imsgbuf ibuf;
246 13b2bc37 2022-10-23 stsp int client_fd = imsg->fd;
247 13b2bc37 2022-10-23 stsp
248 13b2bc37 2022-10-23 stsp TAILQ_INIT(&refs);
249 13b2bc37 2022-10-23 stsp
250 13b2bc37 2022-10-23 stsp if (client_fd == -1)
251 13b2bc37 2022-10-23 stsp return got_error(GOT_ERR_PRIVSEP_NO_FD);
252 13b2bc37 2022-10-23 stsp
253 13b2bc37 2022-10-23 stsp datalen = imsg->hdr.len - IMSG_HEADER_SIZE;
254 13b2bc37 2022-10-23 stsp if (datalen != sizeof(ireq))
255 13b2bc37 2022-10-23 stsp return got_error(GOT_ERR_PRIVSEP_LEN);
256 13b2bc37 2022-10-23 stsp memcpy(&ireq, imsg->data, sizeof(ireq));
257 13b2bc37 2022-10-23 stsp
258 1a52c9bf 2022-12-30 stsp if (ireq.client_id == 0)
259 1a52c9bf 2022-12-30 stsp return got_error(GOT_ERR_CLIENT_ID);
260 1a52c9bf 2022-12-30 stsp if (client->id != 0) {
261 1a52c9bf 2022-12-30 stsp return got_error_msg(GOT_ERR_CLIENT_ID,
262 1a52c9bf 2022-12-30 stsp "duplicate list-refs request");
263 1a52c9bf 2022-12-30 stsp }
264 1a52c9bf 2022-12-30 stsp client->id = ireq.client_id;
265 1a52c9bf 2022-12-30 stsp client->fd = client_fd;
266 1a52c9bf 2022-12-30 stsp client->nref_updates = 0;
267 9a8e357c 2023-01-28 op client->nref_del = 0;
268 0ff2c315 2023-01-18 stsp client->nref_new = 0;
269 cc88020e 2023-04-11 stsp client->nref_move = 0;
270 13b2bc37 2022-10-23 stsp
271 13b2bc37 2022-10-23 stsp imsg_init(&ibuf, client_fd);
272 13b2bc37 2022-10-23 stsp
273 13b2bc37 2022-10-23 stsp err = got_ref_list(&refs, repo_write.repo, "",
274 13b2bc37 2022-10-23 stsp got_ref_cmp_by_name, NULL);
275 13b2bc37 2022-10-23 stsp if (err)
276 13b2bc37 2022-10-23 stsp return err;
277 13b2bc37 2022-10-23 stsp
278 13b2bc37 2022-10-23 stsp memset(&irefs, 0, sizeof(irefs));
279 13b2bc37 2022-10-23 stsp TAILQ_FOREACH(re, &refs, entry) {
280 13b2bc37 2022-10-23 stsp struct got_object_id *id;
281 13b2bc37 2022-10-23 stsp int obj_type;
282 13b2bc37 2022-10-23 stsp
283 13b2bc37 2022-10-23 stsp if (got_ref_is_symbolic(re->ref))
284 13b2bc37 2022-10-23 stsp continue;
285 13b2bc37 2022-10-23 stsp
286 13b2bc37 2022-10-23 stsp irefs.nrefs++;
287 13b2bc37 2022-10-23 stsp
288 13b2bc37 2022-10-23 stsp /* Account for a peeled tag refs. */
289 13b2bc37 2022-10-23 stsp err = got_ref_resolve(&id, repo_write.repo, re->ref);
290 13b2bc37 2022-10-23 stsp if (err)
291 13b2bc37 2022-10-23 stsp goto done;
292 e26970cc 2023-01-10 op err = got_object_get_type(&obj_type, repo_write.repo, id);
293 13b2bc37 2022-10-23 stsp free(id);
294 13b2bc37 2022-10-23 stsp if (err)
295 13b2bc37 2022-10-23 stsp goto done;
296 13b2bc37 2022-10-23 stsp if (obj_type == GOT_OBJ_TYPE_TAG)
297 13b2bc37 2022-10-23 stsp irefs.nrefs++;
298 13b2bc37 2022-10-23 stsp }
299 13b2bc37 2022-10-23 stsp
300 13b2bc37 2022-10-23 stsp if (imsg_compose(&ibuf, GOTD_IMSG_REFLIST, PROC_REPO_WRITE,
301 13b2bc37 2022-10-23 stsp repo_write.pid, -1, &irefs, sizeof(irefs)) == -1) {
302 13b2bc37 2022-10-23 stsp err = got_error_from_errno("imsg_compose REFLIST");
303 13b2bc37 2022-10-23 stsp goto done;
304 13b2bc37 2022-10-23 stsp }
305 13b2bc37 2022-10-23 stsp
306 13b2bc37 2022-10-23 stsp TAILQ_FOREACH(re, &refs, entry) {
307 13b2bc37 2022-10-23 stsp if (got_ref_is_symbolic(re->ref))
308 13b2bc37 2022-10-23 stsp continue;
309 13b2bc37 2022-10-23 stsp err = send_ref(re->ref, &ibuf);
310 13b2bc37 2022-10-23 stsp if (err)
311 13b2bc37 2022-10-23 stsp goto done;
312 13b2bc37 2022-10-23 stsp }
313 13b2bc37 2022-10-23 stsp
314 13b2bc37 2022-10-23 stsp err = gotd_imsg_flush(&ibuf);
315 13b2bc37 2022-10-23 stsp done:
316 13b2bc37 2022-10-23 stsp got_ref_list_free(&refs);
317 13b2bc37 2022-10-23 stsp imsg_clear(&ibuf);
318 13b2bc37 2022-10-23 stsp return err;
319 13b2bc37 2022-10-23 stsp }
320 13b2bc37 2022-10-23 stsp
321 13b2bc37 2022-10-23 stsp static const struct got_error *
322 9afa3de2 2023-04-04 stsp validate_namespace(const char *namespace)
323 13b2bc37 2022-10-23 stsp {
324 13b2bc37 2022-10-23 stsp size_t len = strlen(namespace);
325 13b2bc37 2022-10-23 stsp
326 13b2bc37 2022-10-23 stsp if (len < 5 || strncmp("refs/", namespace, 5) != 0 ||
327 13b2bc37 2022-10-23 stsp namespace[len -1] != '/') {
328 13b2bc37 2022-10-23 stsp return got_error_fmt(GOT_ERR_BAD_REF_NAME,
329 13b2bc37 2022-10-23 stsp "reference namespace '%s'", namespace);
330 13b2bc37 2022-10-23 stsp }
331 13b2bc37 2022-10-23 stsp
332 9afa3de2 2023-04-04 stsp return NULL;
333 9afa3de2 2023-04-04 stsp }
334 9afa3de2 2023-04-04 stsp
335 9afa3de2 2023-04-04 stsp static const struct got_error *
336 9afa3de2 2023-04-04 stsp protect_ref_namespace(const char *refname, const char *namespace)
337 9afa3de2 2023-04-04 stsp {
338 9afa3de2 2023-04-04 stsp const struct got_error *err;
339 9afa3de2 2023-04-04 stsp
340 9afa3de2 2023-04-04 stsp err = validate_namespace(namespace);
341 9afa3de2 2023-04-04 stsp if (err)
342 9afa3de2 2023-04-04 stsp return err;
343 9afa3de2 2023-04-04 stsp
344 9afa3de2 2023-04-04 stsp if (strncmp(namespace, refname, strlen(namespace)) == 0)
345 13b2bc37 2022-10-23 stsp return got_error_fmt(GOT_ERR_REFS_PROTECTED, "%s", namespace);
346 13b2bc37 2022-10-23 stsp
347 13b2bc37 2022-10-23 stsp return NULL;
348 13b2bc37 2022-10-23 stsp }
349 13b2bc37 2022-10-23 stsp
350 13b2bc37 2022-10-23 stsp static const struct got_error *
351 9afa3de2 2023-04-04 stsp verify_object_type(struct got_object_id *id, int expected_obj_type,
352 9afa3de2 2023-04-04 stsp struct got_pack *pack, struct got_packidx *packidx)
353 9afa3de2 2023-04-04 stsp {
354 9afa3de2 2023-04-04 stsp const struct got_error *err;
355 9afa3de2 2023-04-04 stsp char hex[SHA1_DIGEST_STRING_LENGTH];
356 9afa3de2 2023-04-04 stsp struct got_object *obj;
357 9afa3de2 2023-04-04 stsp int idx;
358 9afa3de2 2023-04-04 stsp const char *typestr;
359 9afa3de2 2023-04-04 stsp
360 9afa3de2 2023-04-04 stsp idx = got_packidx_get_object_idx(packidx, id);
361 9afa3de2 2023-04-04 stsp if (idx == -1) {
362 9afa3de2 2023-04-04 stsp got_sha1_digest_to_str(id->sha1, hex, sizeof(hex));
363 9afa3de2 2023-04-04 stsp return got_error_fmt(GOT_ERR_BAD_PACKFILE,
364 9afa3de2 2023-04-04 stsp "object %s is missing from pack file", hex);
365 9afa3de2 2023-04-04 stsp }
366 9afa3de2 2023-04-04 stsp
367 9afa3de2 2023-04-04 stsp err = got_object_open_from_packfile(&obj, id, pack, packidx,
368 9afa3de2 2023-04-04 stsp idx, repo_write.repo);
369 9afa3de2 2023-04-04 stsp if (err)
370 9afa3de2 2023-04-04 stsp return err;
371 9afa3de2 2023-04-04 stsp
372 9afa3de2 2023-04-04 stsp if (obj->type != expected_obj_type) {
373 9afa3de2 2023-04-04 stsp got_sha1_digest_to_str(id->sha1, hex, sizeof(hex));
374 9afa3de2 2023-04-04 stsp got_object_type_label(&typestr, expected_obj_type);
375 9afa3de2 2023-04-04 stsp err = got_error_fmt(GOT_ERR_OBJ_TYPE,
376 9afa3de2 2023-04-04 stsp "%s is not pointing at a %s object", hex, typestr);
377 9afa3de2 2023-04-04 stsp }
378 9afa3de2 2023-04-04 stsp got_object_close(obj);
379 9afa3de2 2023-04-04 stsp return err;
380 9afa3de2 2023-04-04 stsp }
381 9afa3de2 2023-04-04 stsp
382 9afa3de2 2023-04-04 stsp static const struct got_error *
383 9afa3de2 2023-04-04 stsp protect_tag_namespace(const char *namespace, struct got_pack *pack,
384 9afa3de2 2023-04-04 stsp struct got_packidx *packidx, struct gotd_ref_update *ref_update)
385 9afa3de2 2023-04-04 stsp {
386 9afa3de2 2023-04-04 stsp const struct got_error *err;
387 9afa3de2 2023-04-04 stsp
388 9afa3de2 2023-04-04 stsp err = validate_namespace(namespace);
389 9afa3de2 2023-04-04 stsp if (err)
390 9afa3de2 2023-04-04 stsp return err;
391 9afa3de2 2023-04-04 stsp
392 9afa3de2 2023-04-04 stsp if (strncmp(namespace, got_ref_get_name(ref_update->ref),
393 9afa3de2 2023-04-04 stsp strlen(namespace)) != 0)
394 9afa3de2 2023-04-04 stsp return NULL;
395 9afa3de2 2023-04-04 stsp
396 9afa3de2 2023-04-04 stsp if (!ref_update->ref_is_new)
397 9afa3de2 2023-04-04 stsp return got_error_fmt(GOT_ERR_REFS_PROTECTED, "%s", namespace);
398 9afa3de2 2023-04-04 stsp
399 9afa3de2 2023-04-04 stsp return verify_object_type(&ref_update->new_id, GOT_OBJ_TYPE_TAG,
400 9afa3de2 2023-04-04 stsp pack, packidx);
401 9afa3de2 2023-04-04 stsp }
402 9afa3de2 2023-04-04 stsp
403 9afa3de2 2023-04-04 stsp static const struct got_error *
404 9afa3de2 2023-04-04 stsp protect_require_yca(struct got_object_id *tip_id,
405 9afa3de2 2023-04-04 stsp size_t max_commits_to_traverse, struct got_pack *pack,
406 9afa3de2 2023-04-04 stsp struct got_packidx *packidx, struct got_reference *ref)
407 9afa3de2 2023-04-04 stsp {
408 9afa3de2 2023-04-04 stsp const struct got_error *err;
409 9afa3de2 2023-04-04 stsp uint8_t *buf = NULL;
410 9afa3de2 2023-04-04 stsp size_t len;
411 9afa3de2 2023-04-04 stsp struct got_object_id *expected_yca_id = NULL;
412 9afa3de2 2023-04-04 stsp struct got_object *obj = NULL;
413 9afa3de2 2023-04-04 stsp struct got_commit_object *commit = NULL;
414 9afa3de2 2023-04-04 stsp char hex[SHA1_DIGEST_STRING_LENGTH];
415 9afa3de2 2023-04-04 stsp const struct got_object_id_queue *parent_ids;
416 9afa3de2 2023-04-04 stsp struct got_object_id_queue ids;
417 9afa3de2 2023-04-04 stsp struct got_object_qid *pid, *qid;
418 9afa3de2 2023-04-04 stsp struct got_object_idset *traversed_set = NULL;
419 9afa3de2 2023-04-04 stsp int found_yca = 0, obj_type;
420 9afa3de2 2023-04-04 stsp
421 9afa3de2 2023-04-04 stsp STAILQ_INIT(&ids);
422 9afa3de2 2023-04-04 stsp
423 9afa3de2 2023-04-04 stsp err = got_ref_resolve(&expected_yca_id, repo_write.repo, ref);
424 9afa3de2 2023-04-04 stsp if (err)
425 9afa3de2 2023-04-04 stsp return err;
426 9afa3de2 2023-04-04 stsp
427 9afa3de2 2023-04-04 stsp err = got_object_get_type(&obj_type, repo_write.repo, expected_yca_id);
428 9afa3de2 2023-04-04 stsp if (err)
429 9afa3de2 2023-04-04 stsp goto done;
430 9afa3de2 2023-04-04 stsp
431 9afa3de2 2023-04-04 stsp if (obj_type != GOT_OBJ_TYPE_COMMIT) {
432 9afa3de2 2023-04-04 stsp got_sha1_digest_to_str(expected_yca_id->sha1, hex, sizeof(hex));
433 9afa3de2 2023-04-04 stsp err = got_error_fmt(GOT_ERR_OBJ_TYPE,
434 9afa3de2 2023-04-04 stsp "%s is not pointing at a commit object", hex);
435 9afa3de2 2023-04-04 stsp goto done;
436 9afa3de2 2023-04-04 stsp }
437 9afa3de2 2023-04-04 stsp
438 9afa3de2 2023-04-04 stsp traversed_set = got_object_idset_alloc();
439 9afa3de2 2023-04-04 stsp if (traversed_set == NULL) {
440 9afa3de2 2023-04-04 stsp err = got_error_from_errno("got_object_idset_alloc");
441 9afa3de2 2023-04-04 stsp goto done;
442 9afa3de2 2023-04-04 stsp }
443 9afa3de2 2023-04-04 stsp
444 9afa3de2 2023-04-04 stsp err = got_object_qid_alloc(&qid, tip_id);
445 9afa3de2 2023-04-04 stsp if (err)
446 9afa3de2 2023-04-04 stsp goto done;
447 9afa3de2 2023-04-04 stsp STAILQ_INSERT_TAIL(&ids, qid, entry);
448 9afa3de2 2023-04-04 stsp while (!STAILQ_EMPTY(&ids)) {
449 9afa3de2 2023-04-04 stsp err = check_cancelled(NULL);
450 9afa3de2 2023-04-04 stsp if (err)
451 9afa3de2 2023-04-04 stsp break;
452 9afa3de2 2023-04-04 stsp
453 9afa3de2 2023-04-04 stsp qid = STAILQ_FIRST(&ids);
454 9afa3de2 2023-04-04 stsp if (got_object_id_cmp(&qid->id, expected_yca_id) == 0) {
455 9afa3de2 2023-04-04 stsp found_yca = 1;
456 9afa3de2 2023-04-04 stsp break;
457 9afa3de2 2023-04-04 stsp }
458 9afa3de2 2023-04-04 stsp
459 9afa3de2 2023-04-04 stsp if (got_object_idset_num_elements(traversed_set) >=
460 9afa3de2 2023-04-04 stsp max_commits_to_traverse)
461 9afa3de2 2023-04-04 stsp break;
462 9afa3de2 2023-04-04 stsp
463 9afa3de2 2023-04-04 stsp if (got_object_idset_contains(traversed_set, &qid->id)) {
464 9afa3de2 2023-04-04 stsp STAILQ_REMOVE_HEAD(&ids, entry);
465 9afa3de2 2023-04-04 stsp got_object_qid_free(qid);
466 9afa3de2 2023-04-04 stsp qid = NULL;
467 9afa3de2 2023-04-04 stsp continue;
468 9afa3de2 2023-04-04 stsp }
469 9afa3de2 2023-04-04 stsp err = got_object_idset_add(traversed_set, &qid->id, NULL);
470 9afa3de2 2023-04-04 stsp if (err)
471 9afa3de2 2023-04-04 stsp goto done;
472 9afa3de2 2023-04-04 stsp
473 9afa3de2 2023-04-04 stsp err = got_object_open(&obj, repo_write.repo, &qid->id);
474 9afa3de2 2023-04-04 stsp if (err && err->code != GOT_ERR_NO_OBJ)
475 9afa3de2 2023-04-04 stsp goto done;
476 9afa3de2 2023-04-04 stsp err = NULL;
477 9afa3de2 2023-04-04 stsp if (obj) {
478 9afa3de2 2023-04-04 stsp err = got_object_commit_open(&commit, repo_write.repo,
479 9afa3de2 2023-04-04 stsp obj);
480 9afa3de2 2023-04-04 stsp if (err)
481 9afa3de2 2023-04-04 stsp goto done;
482 9afa3de2 2023-04-04 stsp } else {
483 9afa3de2 2023-04-04 stsp int idx;
484 9afa3de2 2023-04-04 stsp
485 9afa3de2 2023-04-04 stsp idx = got_packidx_get_object_idx(packidx, &qid->id);
486 9afa3de2 2023-04-04 stsp if (idx == -1) {
487 9afa3de2 2023-04-04 stsp got_sha1_digest_to_str(qid->id.sha1,
488 9afa3de2 2023-04-04 stsp hex, sizeof(hex));
489 9afa3de2 2023-04-04 stsp err = got_error_fmt(GOT_ERR_BAD_PACKFILE,
490 9afa3de2 2023-04-04 stsp "object %s is missing from pack file", hex);
491 9afa3de2 2023-04-04 stsp goto done;
492 9afa3de2 2023-04-04 stsp }
493 9afa3de2 2023-04-04 stsp
494 9afa3de2 2023-04-04 stsp err = got_object_open_from_packfile(&obj, &qid->id,
495 9afa3de2 2023-04-04 stsp pack, packidx, idx, repo_write.repo);
496 9afa3de2 2023-04-04 stsp if (err)
497 9afa3de2 2023-04-04 stsp goto done;
498 9afa3de2 2023-04-04 stsp
499 9afa3de2 2023-04-04 stsp if (obj->type != GOT_OBJ_TYPE_COMMIT) {
500 9afa3de2 2023-04-04 stsp got_sha1_digest_to_str(qid->id.sha1,
501 9afa3de2 2023-04-04 stsp hex, sizeof(hex));
502 9afa3de2 2023-04-04 stsp err = got_error_fmt(GOT_ERR_OBJ_TYPE,
503 9afa3de2 2023-04-04 stsp "%s is not pointing at a commit object",
504 9afa3de2 2023-04-04 stsp hex);
505 9afa3de2 2023-04-04 stsp goto done;
506 9afa3de2 2023-04-04 stsp }
507 9afa3de2 2023-04-04 stsp
508 9afa3de2 2023-04-04 stsp err = got_packfile_extract_object_to_mem(&buf, &len,
509 9afa3de2 2023-04-04 stsp obj, pack);
510 9afa3de2 2023-04-04 stsp if (err)
511 9afa3de2 2023-04-04 stsp goto done;
512 9afa3de2 2023-04-04 stsp
513 9afa3de2 2023-04-04 stsp err = got_object_parse_commit(&commit, buf, len);
514 9afa3de2 2023-04-04 stsp if (err)
515 9afa3de2 2023-04-04 stsp goto done;
516 9afa3de2 2023-04-04 stsp
517 9afa3de2 2023-04-04 stsp free(buf);
518 9afa3de2 2023-04-04 stsp buf = NULL;
519 9afa3de2 2023-04-04 stsp }
520 9afa3de2 2023-04-04 stsp
521 9afa3de2 2023-04-04 stsp got_object_close(obj);
522 9afa3de2 2023-04-04 stsp obj = NULL;
523 9afa3de2 2023-04-04 stsp
524 9afa3de2 2023-04-04 stsp STAILQ_REMOVE_HEAD(&ids, entry);
525 9afa3de2 2023-04-04 stsp got_object_qid_free(qid);
526 9afa3de2 2023-04-04 stsp qid = NULL;
527 9afa3de2 2023-04-04 stsp
528 9afa3de2 2023-04-04 stsp if (got_object_commit_get_nparents(commit) == 0)
529 9afa3de2 2023-04-04 stsp break;
530 9afa3de2 2023-04-04 stsp
531 9afa3de2 2023-04-04 stsp parent_ids = got_object_commit_get_parent_ids(commit);
532 9afa3de2 2023-04-04 stsp STAILQ_FOREACH(pid, parent_ids, entry) {
533 9afa3de2 2023-04-04 stsp err = check_cancelled(NULL);
534 9afa3de2 2023-04-04 stsp if (err)
535 9afa3de2 2023-04-04 stsp goto done;
536 9afa3de2 2023-04-04 stsp err = got_object_qid_alloc(&qid, &pid->id);
537 9afa3de2 2023-04-04 stsp if (err)
538 9afa3de2 2023-04-04 stsp goto done;
539 9afa3de2 2023-04-04 stsp STAILQ_INSERT_TAIL(&ids, qid, entry);
540 9afa3de2 2023-04-04 stsp qid = NULL;
541 9afa3de2 2023-04-04 stsp }
542 9afa3de2 2023-04-04 stsp got_object_commit_close(commit);
543 9afa3de2 2023-04-04 stsp commit = NULL;
544 9afa3de2 2023-04-04 stsp }
545 9afa3de2 2023-04-04 stsp
546 9afa3de2 2023-04-04 stsp if (!found_yca) {
547 9afa3de2 2023-04-04 stsp err = got_error_fmt(GOT_ERR_REF_PROTECTED, "%s",
548 9afa3de2 2023-04-04 stsp got_ref_get_name(ref));
549 9afa3de2 2023-04-04 stsp }
550 9afa3de2 2023-04-04 stsp done:
551 9afa3de2 2023-04-04 stsp got_object_idset_free(traversed_set);
552 9afa3de2 2023-04-04 stsp got_object_id_queue_free(&ids);
553 9afa3de2 2023-04-04 stsp free(buf);
554 9afa3de2 2023-04-04 stsp if (obj)
555 9afa3de2 2023-04-04 stsp got_object_close(obj);
556 9afa3de2 2023-04-04 stsp if (commit)
557 9afa3de2 2023-04-04 stsp got_object_commit_close(commit);
558 9afa3de2 2023-04-04 stsp free(expected_yca_id);
559 9afa3de2 2023-04-04 stsp return err;
560 9afa3de2 2023-04-04 stsp }
561 9afa3de2 2023-04-04 stsp
562 9afa3de2 2023-04-04 stsp static const struct got_error *
563 9afa3de2 2023-04-04 stsp protect_branch_namespace(const char *namespace, struct got_pack *pack,
564 9afa3de2 2023-04-04 stsp struct got_packidx *packidx, struct gotd_ref_update *ref_update)
565 9afa3de2 2023-04-04 stsp {
566 9afa3de2 2023-04-04 stsp const struct got_error *err;
567 9afa3de2 2023-04-04 stsp
568 9afa3de2 2023-04-04 stsp err = validate_namespace(namespace);
569 9afa3de2 2023-04-04 stsp if (err)
570 9afa3de2 2023-04-04 stsp return err;
571 9afa3de2 2023-04-04 stsp
572 9afa3de2 2023-04-04 stsp if (strncmp(namespace, got_ref_get_name(ref_update->ref),
573 9afa3de2 2023-04-04 stsp strlen(namespace)) != 0)
574 9afa3de2 2023-04-04 stsp return NULL;
575 9afa3de2 2023-04-04 stsp
576 9afa3de2 2023-04-04 stsp if (ref_update->ref_is_new) {
577 9afa3de2 2023-04-04 stsp return verify_object_type(&ref_update->new_id,
578 9afa3de2 2023-04-04 stsp GOT_OBJ_TYPE_COMMIT, pack, packidx);
579 9afa3de2 2023-04-04 stsp }
580 9afa3de2 2023-04-04 stsp
581 9afa3de2 2023-04-04 stsp return protect_require_yca(&ref_update->new_id,
582 9afa3de2 2023-04-04 stsp be32toh(packidx->hdr.fanout_table[0xff]), pack, packidx,
583 9afa3de2 2023-04-04 stsp ref_update->ref);
584 9afa3de2 2023-04-04 stsp }
585 9afa3de2 2023-04-04 stsp
586 9afa3de2 2023-04-04 stsp static const struct got_error *
587 9afa3de2 2023-04-04 stsp protect_branch(const char *refname, struct got_pack *pack,
588 9afa3de2 2023-04-04 stsp struct got_packidx *packidx, struct gotd_ref_update *ref_update)
589 9afa3de2 2023-04-04 stsp {
590 9afa3de2 2023-04-04 stsp if (strcmp(refname, got_ref_get_name(ref_update->ref)) != 0)
591 9afa3de2 2023-04-04 stsp return NULL;
592 9afa3de2 2023-04-04 stsp
593 9afa3de2 2023-04-04 stsp /* Always allow new branches to be created. */
594 9afa3de2 2023-04-04 stsp if (ref_update->ref_is_new) {
595 9afa3de2 2023-04-04 stsp return verify_object_type(&ref_update->new_id,
596 9afa3de2 2023-04-04 stsp GOT_OBJ_TYPE_COMMIT, pack, packidx);
597 9afa3de2 2023-04-04 stsp }
598 9afa3de2 2023-04-04 stsp
599 9afa3de2 2023-04-04 stsp return protect_require_yca(&ref_update->new_id,
600 9afa3de2 2023-04-04 stsp be32toh(packidx->hdr.fanout_table[0xff]), pack, packidx,
601 9afa3de2 2023-04-04 stsp ref_update->ref);
602 9afa3de2 2023-04-04 stsp }
603 9afa3de2 2023-04-04 stsp
604 9afa3de2 2023-04-04 stsp static const struct got_error *
605 1a52c9bf 2022-12-30 stsp recv_ref_update(struct imsg *imsg)
606 13b2bc37 2022-10-23 stsp {
607 9a8e357c 2023-01-28 op static const char zero_id[SHA1_DIGEST_LENGTH];
608 13b2bc37 2022-10-23 stsp const struct got_error *err = NULL;
609 1a52c9bf 2022-12-30 stsp struct repo_write_client *client = &repo_write_client;
610 13b2bc37 2022-10-23 stsp struct gotd_imsg_ref_update iref;
611 13b2bc37 2022-10-23 stsp size_t datalen;
612 13b2bc37 2022-10-23 stsp char *refname = NULL;
613 13b2bc37 2022-10-23 stsp struct got_reference *ref = NULL;
614 13b2bc37 2022-10-23 stsp struct got_object_id *id = NULL;
615 13b2bc37 2022-10-23 stsp struct imsgbuf ibuf;
616 13b2bc37 2022-10-23 stsp struct gotd_ref_update *ref_update = NULL;
617 13b2bc37 2022-10-23 stsp
618 13b2bc37 2022-10-23 stsp log_debug("ref-update received");
619 13b2bc37 2022-10-23 stsp
620 13b2bc37 2022-10-23 stsp datalen = imsg->hdr.len - IMSG_HEADER_SIZE;
621 13b2bc37 2022-10-23 stsp if (datalen < sizeof(iref))
622 13b2bc37 2022-10-23 stsp return got_error(GOT_ERR_PRIVSEP_LEN);
623 13b2bc37 2022-10-23 stsp memcpy(&iref, imsg->data, sizeof(iref));
624 13b2bc37 2022-10-23 stsp if (datalen != sizeof(iref) + iref.name_len)
625 13b2bc37 2022-10-23 stsp return got_error(GOT_ERR_PRIVSEP_LEN);
626 13b2bc37 2022-10-23 stsp
627 1a52c9bf 2022-12-30 stsp imsg_init(&ibuf, client->fd);
628 13b2bc37 2022-10-23 stsp
629 00b3e9ae 2023-01-11 op refname = strndup(imsg->data + sizeof(iref), iref.name_len);
630 13b2bc37 2022-10-23 stsp if (refname == NULL)
631 00b3e9ae 2023-01-11 op return got_error_from_errno("strndup");
632 13b2bc37 2022-10-23 stsp
633 13b2bc37 2022-10-23 stsp ref_update = calloc(1, sizeof(*ref_update));
634 13b2bc37 2022-10-23 stsp if (ref_update == NULL) {
635 13b2bc37 2022-10-23 stsp err = got_error_from_errno("malloc");
636 13b2bc37 2022-10-23 stsp goto done;
637 13b2bc37 2022-10-23 stsp }
638 13b2bc37 2022-10-23 stsp
639 13b2bc37 2022-10-23 stsp memcpy(ref_update->old_id.sha1, iref.old_id, SHA1_DIGEST_LENGTH);
640 13b2bc37 2022-10-23 stsp memcpy(ref_update->new_id.sha1, iref.new_id, SHA1_DIGEST_LENGTH);
641 13b2bc37 2022-10-23 stsp
642 13b2bc37 2022-10-23 stsp err = got_ref_open(&ref, repo_write.repo, refname, 0);
643 13b2bc37 2022-10-23 stsp if (err) {
644 13b2bc37 2022-10-23 stsp if (err->code != GOT_ERR_NOT_REF)
645 13b2bc37 2022-10-23 stsp goto done;
646 9afa3de2 2023-04-04 stsp if (memcmp(ref_update->new_id.sha1,
647 9afa3de2 2023-04-04 stsp zero_id, sizeof(zero_id)) == 0) {
648 9afa3de2 2023-04-04 stsp err = got_error_fmt(GOT_ERR_BAD_OBJ_ID,
649 9afa3de2 2023-04-04 stsp "%s", refname);
650 9afa3de2 2023-04-04 stsp goto done;
651 9afa3de2 2023-04-04 stsp }
652 13b2bc37 2022-10-23 stsp err = got_ref_alloc(&ref, refname, &ref_update->new_id);
653 13b2bc37 2022-10-23 stsp if (err)
654 13b2bc37 2022-10-23 stsp goto done;
655 13b2bc37 2022-10-23 stsp ref_update->ref_is_new = 1;
656 0ff2c315 2023-01-18 stsp client->nref_new++;
657 13b2bc37 2022-10-23 stsp }
658 13b2bc37 2022-10-23 stsp if (got_ref_is_symbolic(ref)) {
659 13b2bc37 2022-10-23 stsp err = got_error_fmt(GOT_ERR_BAD_REF_TYPE,
660 13b2bc37 2022-10-23 stsp "'%s' is a symbolic reference and cannot "
661 13b2bc37 2022-10-23 stsp "be updated", got_ref_get_name(ref));
662 13b2bc37 2022-10-23 stsp goto done;
663 13b2bc37 2022-10-23 stsp }
664 13b2bc37 2022-10-23 stsp if (strncmp("refs/", got_ref_get_name(ref), 5) != 0) {
665 13b2bc37 2022-10-23 stsp err = got_error_fmt(GOT_ERR_BAD_REF_NAME,
666 13b2bc37 2022-10-23 stsp "%s: does not begin with 'refs/'",
667 13b2bc37 2022-10-23 stsp got_ref_get_name(ref));
668 13b2bc37 2022-10-23 stsp goto done;
669 13b2bc37 2022-10-23 stsp }
670 13b2bc37 2022-10-23 stsp
671 9afa3de2 2023-04-04 stsp err = protect_ref_namespace(got_ref_get_name(ref), "refs/got/");
672 13b2bc37 2022-10-23 stsp if (err)
673 13b2bc37 2022-10-23 stsp goto done;
674 9afa3de2 2023-04-04 stsp err = protect_ref_namespace(got_ref_get_name(ref), "refs/remotes/");
675 13b2bc37 2022-10-23 stsp if (err)
676 13b2bc37 2022-10-23 stsp goto done;
677 13b2bc37 2022-10-23 stsp
678 13b2bc37 2022-10-23 stsp if (!ref_update->ref_is_new) {
679 13b2bc37 2022-10-23 stsp /*
680 13b2bc37 2022-10-23 stsp * Ensure the client's idea of this update is still valid.
681 13b2bc37 2022-10-23 stsp * At this point we can only return an error, to prevent
682 13b2bc37 2022-10-23 stsp * the client from uploading a pack file which will likely
683 13b2bc37 2022-10-23 stsp * have to be discarded.
684 13b2bc37 2022-10-23 stsp */
685 13b2bc37 2022-10-23 stsp err = got_ref_resolve(&id, repo_write.repo, ref);
686 13b2bc37 2022-10-23 stsp if (err)
687 13b2bc37 2022-10-23 stsp goto done;
688 13b2bc37 2022-10-23 stsp
689 13b2bc37 2022-10-23 stsp if (got_object_id_cmp(id, &ref_update->old_id) != 0) {
690 13b2bc37 2022-10-23 stsp err = got_error_fmt(GOT_ERR_REF_BUSY,
691 13b2bc37 2022-10-23 stsp "%s has been modified by someone else "
692 13b2bc37 2022-10-23 stsp "while transaction was in progress",
693 13b2bc37 2022-10-23 stsp got_ref_get_name(ref));
694 13b2bc37 2022-10-23 stsp goto done;
695 13b2bc37 2022-10-23 stsp }
696 13b2bc37 2022-10-23 stsp }
697 13b2bc37 2022-10-23 stsp
698 13b2bc37 2022-10-23 stsp gotd_imsg_send_ack(&ref_update->new_id, &ibuf, PROC_REPO_WRITE,
699 13b2bc37 2022-10-23 stsp repo_write.pid);
700 13b2bc37 2022-10-23 stsp
701 13b2bc37 2022-10-23 stsp ref_update->ref = ref;
702 9a8e357c 2023-01-28 op if (memcmp(ref_update->new_id.sha1, zero_id, sizeof(zero_id)) == 0) {
703 9a8e357c 2023-01-28 op ref_update->delete_ref = 1;
704 9a8e357c 2023-01-28 op client->nref_del++;
705 9a8e357c 2023-01-28 op }
706 1a52c9bf 2022-12-30 stsp STAILQ_INSERT_HEAD(&client->ref_updates, ref_update, entry);
707 1a52c9bf 2022-12-30 stsp client->nref_updates++;
708 13b2bc37 2022-10-23 stsp ref = NULL;
709 13b2bc37 2022-10-23 stsp ref_update = NULL;
710 13b2bc37 2022-10-23 stsp done:
711 13b2bc37 2022-10-23 stsp if (ref)
712 13b2bc37 2022-10-23 stsp got_ref_close(ref);
713 13b2bc37 2022-10-23 stsp free(ref_update);
714 13b2bc37 2022-10-23 stsp free(refname);
715 13b2bc37 2022-10-23 stsp free(id);
716 13b2bc37 2022-10-23 stsp return err;
717 13b2bc37 2022-10-23 stsp }
718 13b2bc37 2022-10-23 stsp
719 13b2bc37 2022-10-23 stsp static const struct got_error *
720 13b2bc37 2022-10-23 stsp pack_index_progress(void *arg, uint32_t nobj_total, uint32_t nobj_indexed,
721 13b2bc37 2022-10-23 stsp uint32_t nobj_loose, uint32_t nobj_resolved)
722 13b2bc37 2022-10-23 stsp {
723 13b2bc37 2022-10-23 stsp int p_indexed = 0, p_resolved = 0;
724 13b2bc37 2022-10-23 stsp int nobj_delta = nobj_total - nobj_loose;
725 13b2bc37 2022-10-23 stsp
726 13b2bc37 2022-10-23 stsp if (nobj_total > 0)
727 13b2bc37 2022-10-23 stsp p_indexed = (nobj_indexed * 100) / nobj_total;
728 13b2bc37 2022-10-23 stsp
729 13b2bc37 2022-10-23 stsp if (nobj_delta > 0)
730 13b2bc37 2022-10-23 stsp p_resolved = (nobj_resolved * 100) / nobj_delta;
731 13b2bc37 2022-10-23 stsp
732 13b2bc37 2022-10-23 stsp if (p_resolved > 0) {
733 13b2bc37 2022-10-23 stsp log_debug("indexing %d objects %d%%; resolving %d deltas %d%%",
734 13b2bc37 2022-10-23 stsp nobj_total, p_indexed, nobj_delta, p_resolved);
735 13b2bc37 2022-10-23 stsp } else
736 13b2bc37 2022-10-23 stsp log_debug("indexing %d objects %d%%", nobj_total, p_indexed);
737 13b2bc37 2022-10-23 stsp
738 13b2bc37 2022-10-23 stsp return NULL;
739 13b2bc37 2022-10-23 stsp }
740 13b2bc37 2022-10-23 stsp
741 13b2bc37 2022-10-23 stsp static const struct got_error *
742 13b2bc37 2022-10-23 stsp read_more_pack_stream(int infd, BUF *buf, size_t minsize)
743 13b2bc37 2022-10-23 stsp {
744 13b2bc37 2022-10-23 stsp const struct got_error *err = NULL;
745 13b2bc37 2022-10-23 stsp uint8_t readahead[65536];
746 13b2bc37 2022-10-23 stsp size_t have, newlen;
747 13b2bc37 2022-10-23 stsp
748 13b2bc37 2022-10-23 stsp err = got_poll_read_full(infd, &have,
749 13b2bc37 2022-10-23 stsp readahead, sizeof(readahead), minsize);
750 13b2bc37 2022-10-23 stsp if (err)
751 13b2bc37 2022-10-23 stsp return err;
752 13b2bc37 2022-10-23 stsp
753 13b2bc37 2022-10-23 stsp err = buf_append(&newlen, buf, readahead, have);
754 13b2bc37 2022-10-23 stsp if (err)
755 13b2bc37 2022-10-23 stsp return err;
756 e26970cc 2023-01-10 op return NULL;
757 13b2bc37 2022-10-23 stsp }
758 13b2bc37 2022-10-23 stsp
759 13b2bc37 2022-10-23 stsp static const struct got_error *
760 13b2bc37 2022-10-23 stsp copy_object_type_and_size(uint8_t *type, uint64_t *size, int infd, int outfd,
761 ae25a666 2023-02-23 op off_t *outsize, BUF *buf, size_t *buf_pos, struct got_hash *ctx)
762 13b2bc37 2022-10-23 stsp {
763 13b2bc37 2022-10-23 stsp const struct got_error *err = NULL;
764 13b2bc37 2022-10-23 stsp uint8_t t = 0;
765 13b2bc37 2022-10-23 stsp uint64_t s = 0;
766 13b2bc37 2022-10-23 stsp uint8_t sizebuf[8];
767 13b2bc37 2022-10-23 stsp size_t i = 0;
768 13b2bc37 2022-10-23 stsp off_t obj_offset = *outsize;
769 13b2bc37 2022-10-23 stsp
770 13b2bc37 2022-10-23 stsp do {
771 13b2bc37 2022-10-23 stsp /* We do not support size values which don't fit in 64 bit. */
772 13b2bc37 2022-10-23 stsp if (i > 9)
773 13b2bc37 2022-10-23 stsp return got_error_fmt(GOT_ERR_OBJ_TOO_LARGE,
774 22ec3416 2022-10-25 op "packfile offset %lld", (long long)obj_offset);
775 13b2bc37 2022-10-23 stsp
776 13b2bc37 2022-10-23 stsp if (buf_len(buf) - *buf_pos < sizeof(sizebuf[0])) {
777 13b2bc37 2022-10-23 stsp err = read_more_pack_stream(infd, buf,
778 13b2bc37 2022-10-23 stsp sizeof(sizebuf[0]));
779 13b2bc37 2022-10-23 stsp if (err)
780 13b2bc37 2022-10-23 stsp return err;
781 13b2bc37 2022-10-23 stsp }
782 13b2bc37 2022-10-23 stsp
783 13b2bc37 2022-10-23 stsp sizebuf[i] = buf_getc(buf, *buf_pos);
784 13b2bc37 2022-10-23 stsp *buf_pos += sizeof(sizebuf[i]);
785 13b2bc37 2022-10-23 stsp
786 13b2bc37 2022-10-23 stsp if (i == 0) {
787 13b2bc37 2022-10-23 stsp t = (sizebuf[i] & GOT_PACK_OBJ_SIZE0_TYPE_MASK) >>
788 13b2bc37 2022-10-23 stsp GOT_PACK_OBJ_SIZE0_TYPE_MASK_SHIFT;
789 13b2bc37 2022-10-23 stsp s = (sizebuf[i] & GOT_PACK_OBJ_SIZE0_VAL_MASK);
790 13b2bc37 2022-10-23 stsp } else {
791 13b2bc37 2022-10-23 stsp size_t shift = 4 + 7 * (i - 1);
792 13b2bc37 2022-10-23 stsp s |= ((sizebuf[i] & GOT_PACK_OBJ_SIZE_VAL_MASK) <<
793 13b2bc37 2022-10-23 stsp shift);
794 13b2bc37 2022-10-23 stsp }
795 13b2bc37 2022-10-23 stsp i++;
796 13b2bc37 2022-10-23 stsp } while (sizebuf[i - 1] & GOT_PACK_OBJ_SIZE_MORE);
797 13b2bc37 2022-10-23 stsp
798 13b2bc37 2022-10-23 stsp err = got_pack_hwrite(outfd, sizebuf, i, ctx);
799 13b2bc37 2022-10-23 stsp if (err)
800 13b2bc37 2022-10-23 stsp return err;
801 13b2bc37 2022-10-23 stsp *outsize += i;
802 13b2bc37 2022-10-23 stsp
803 13b2bc37 2022-10-23 stsp *type = t;
804 13b2bc37 2022-10-23 stsp *size = s;
805 13b2bc37 2022-10-23 stsp return NULL;
806 13b2bc37 2022-10-23 stsp }
807 13b2bc37 2022-10-23 stsp
808 13b2bc37 2022-10-23 stsp static const struct got_error *
809 13b2bc37 2022-10-23 stsp copy_ref_delta(int infd, int outfd, off_t *outsize, BUF *buf, size_t *buf_pos,
810 ae25a666 2023-02-23 op struct got_hash *ctx)
811 13b2bc37 2022-10-23 stsp {
812 13b2bc37 2022-10-23 stsp const struct got_error *err = NULL;
813 13b2bc37 2022-10-23 stsp size_t remain = buf_len(buf) - *buf_pos;
814 13b2bc37 2022-10-23 stsp
815 13b2bc37 2022-10-23 stsp if (remain < SHA1_DIGEST_LENGTH) {
816 13b2bc37 2022-10-23 stsp err = read_more_pack_stream(infd, buf,
817 13b2bc37 2022-10-23 stsp SHA1_DIGEST_LENGTH - remain);
818 13b2bc37 2022-10-23 stsp if (err)
819 13b2bc37 2022-10-23 stsp return err;
820 13b2bc37 2022-10-23 stsp }
821 13b2bc37 2022-10-23 stsp
822 13b2bc37 2022-10-23 stsp err = got_pack_hwrite(outfd, buf_get(buf) + *buf_pos,
823 13b2bc37 2022-10-23 stsp SHA1_DIGEST_LENGTH, ctx);
824 13b2bc37 2022-10-23 stsp if (err)
825 13b2bc37 2022-10-23 stsp return err;
826 13b2bc37 2022-10-23 stsp
827 13b2bc37 2022-10-23 stsp *buf_pos += SHA1_DIGEST_LENGTH;
828 13b2bc37 2022-10-23 stsp return NULL;
829 13b2bc37 2022-10-23 stsp }
830 13b2bc37 2022-10-23 stsp
831 13b2bc37 2022-10-23 stsp static const struct got_error *
832 13b2bc37 2022-10-23 stsp copy_offset_delta(int infd, int outfd, off_t *outsize, BUF *buf, size_t *buf_pos,
833 ae25a666 2023-02-23 op struct got_hash *ctx)
834 13b2bc37 2022-10-23 stsp {
835 13b2bc37 2022-10-23 stsp const struct got_error *err = NULL;
836 13b2bc37 2022-10-23 stsp uint64_t o = 0;
837 13b2bc37 2022-10-23 stsp uint8_t offbuf[8];
838 13b2bc37 2022-10-23 stsp size_t i = 0;
839 13b2bc37 2022-10-23 stsp off_t obj_offset = *outsize;
840 13b2bc37 2022-10-23 stsp
841 13b2bc37 2022-10-23 stsp do {
842 13b2bc37 2022-10-23 stsp /* We do not support offset values which don't fit in 64 bit. */
843 13b2bc37 2022-10-23 stsp if (i > 8)
844 13b2bc37 2022-10-23 stsp return got_error_fmt(GOT_ERR_OBJ_TOO_LARGE,
845 22ec3416 2022-10-25 op "packfile offset %lld", (long long)obj_offset);
846 13b2bc37 2022-10-23 stsp
847 13b2bc37 2022-10-23 stsp if (buf_len(buf) - *buf_pos < sizeof(offbuf[0])) {
848 13b2bc37 2022-10-23 stsp err = read_more_pack_stream(infd, buf,
849 13b2bc37 2022-10-23 stsp sizeof(offbuf[0]));
850 13b2bc37 2022-10-23 stsp if (err)
851 13b2bc37 2022-10-23 stsp return err;
852 13b2bc37 2022-10-23 stsp }
853 13b2bc37 2022-10-23 stsp
854 13b2bc37 2022-10-23 stsp offbuf[i] = buf_getc(buf, *buf_pos);
855 13b2bc37 2022-10-23 stsp *buf_pos += sizeof(offbuf[i]);
856 13b2bc37 2022-10-23 stsp
857 13b2bc37 2022-10-23 stsp if (i == 0)
858 13b2bc37 2022-10-23 stsp o = (offbuf[i] & GOT_PACK_OBJ_DELTA_OFF_VAL_MASK);
859 13b2bc37 2022-10-23 stsp else {
860 13b2bc37 2022-10-23 stsp o++;
861 13b2bc37 2022-10-23 stsp o <<= 7;
862 13b2bc37 2022-10-23 stsp o += (offbuf[i] & GOT_PACK_OBJ_DELTA_OFF_VAL_MASK);
863 13b2bc37 2022-10-23 stsp }
864 13b2bc37 2022-10-23 stsp i++;
865 13b2bc37 2022-10-23 stsp } while (offbuf[i - 1] & GOT_PACK_OBJ_DELTA_OFF_MORE);
866 13b2bc37 2022-10-23 stsp
867 13b2bc37 2022-10-23 stsp if (o < sizeof(struct got_packfile_hdr) || o > *outsize)
868 13b2bc37 2022-10-23 stsp return got_error(GOT_ERR_PACK_OFFSET);
869 13b2bc37 2022-10-23 stsp
870 13b2bc37 2022-10-23 stsp err = got_pack_hwrite(outfd, offbuf, i, ctx);
871 13b2bc37 2022-10-23 stsp if (err)
872 13b2bc37 2022-10-23 stsp return err;
873 13b2bc37 2022-10-23 stsp
874 13b2bc37 2022-10-23 stsp *outsize += i;
875 13b2bc37 2022-10-23 stsp return NULL;
876 13b2bc37 2022-10-23 stsp }
877 13b2bc37 2022-10-23 stsp
878 13b2bc37 2022-10-23 stsp static const struct got_error *
879 13b2bc37 2022-10-23 stsp copy_zstream(int infd, int outfd, off_t *outsize, BUF *buf, size_t *buf_pos,
880 ae25a666 2023-02-23 op struct got_hash *ctx)
881 13b2bc37 2022-10-23 stsp {
882 13b2bc37 2022-10-23 stsp const struct got_error *err = NULL;
883 13b2bc37 2022-10-23 stsp z_stream z;
884 13b2bc37 2022-10-23 stsp int zret;
885 13b2bc37 2022-10-23 stsp char voidbuf[1024];
886 13b2bc37 2022-10-23 stsp size_t consumed_total = 0;
887 13b2bc37 2022-10-23 stsp off_t zstream_offset = *outsize;
888 13b2bc37 2022-10-23 stsp
889 13b2bc37 2022-10-23 stsp memset(&z, 0, sizeof(z));
890 13b2bc37 2022-10-23 stsp
891 13b2bc37 2022-10-23 stsp z.zalloc = Z_NULL;
892 13b2bc37 2022-10-23 stsp z.zfree = Z_NULL;
893 13b2bc37 2022-10-23 stsp zret = inflateInit(&z);
894 13b2bc37 2022-10-23 stsp if (zret != Z_OK) {
895 13b2bc37 2022-10-23 stsp if (zret == Z_ERRNO)
896 13b2bc37 2022-10-23 stsp return got_error_from_errno("inflateInit");
897 13b2bc37 2022-10-23 stsp if (zret == Z_MEM_ERROR) {
898 13b2bc37 2022-10-23 stsp errno = ENOMEM;
899 13b2bc37 2022-10-23 stsp return got_error_from_errno("inflateInit");
900 13b2bc37 2022-10-23 stsp }
901 13b2bc37 2022-10-23 stsp return got_error_msg(GOT_ERR_DECOMPRESSION,
902 13b2bc37 2022-10-23 stsp "inflateInit failed");
903 13b2bc37 2022-10-23 stsp }
904 13b2bc37 2022-10-23 stsp
905 13b2bc37 2022-10-23 stsp while (zret != Z_STREAM_END) {
906 13b2bc37 2022-10-23 stsp size_t last_total_in, consumed;
907 13b2bc37 2022-10-23 stsp
908 13b2bc37 2022-10-23 stsp /*
909 13b2bc37 2022-10-23 stsp * Decompress into the void. Object data will be parsed
910 13b2bc37 2022-10-23 stsp * later, when the pack file is indexed. For now, we just
911 13b2bc37 2022-10-23 stsp * want to locate the end of the compressed stream.
912 13b2bc37 2022-10-23 stsp */
913 13b2bc37 2022-10-23 stsp while (zret != Z_STREAM_END && buf_len(buf) - *buf_pos > 0) {
914 13b2bc37 2022-10-23 stsp last_total_in = z.total_in;
915 13b2bc37 2022-10-23 stsp z.next_in = buf_get(buf) + *buf_pos;
916 13b2bc37 2022-10-23 stsp z.avail_in = buf_len(buf) - *buf_pos;
917 13b2bc37 2022-10-23 stsp z.next_out = voidbuf;
918 13b2bc37 2022-10-23 stsp z.avail_out = sizeof(voidbuf);
919 13b2bc37 2022-10-23 stsp
920 13b2bc37 2022-10-23 stsp zret = inflate(&z, Z_SYNC_FLUSH);
921 13b2bc37 2022-10-23 stsp if (zret != Z_OK && zret != Z_BUF_ERROR &&
922 13b2bc37 2022-10-23 stsp zret != Z_STREAM_END) {
923 13b2bc37 2022-10-23 stsp err = got_error_fmt(GOT_ERR_DECOMPRESSION,
924 22ec3416 2022-10-25 op "packfile offset %lld",
925 22ec3416 2022-10-25 op (long long)zstream_offset);
926 13b2bc37 2022-10-23 stsp goto done;
927 13b2bc37 2022-10-23 stsp }
928 13b2bc37 2022-10-23 stsp consumed = z.total_in - last_total_in;
929 13b2bc37 2022-10-23 stsp
930 13b2bc37 2022-10-23 stsp err = got_pack_hwrite(outfd, buf_get(buf) + *buf_pos,
931 13b2bc37 2022-10-23 stsp consumed, ctx);
932 13b2bc37 2022-10-23 stsp if (err)
933 13b2bc37 2022-10-23 stsp goto done;
934 13b2bc37 2022-10-23 stsp
935 13b2bc37 2022-10-23 stsp err = buf_discard(buf, *buf_pos + consumed);
936 13b2bc37 2022-10-23 stsp if (err)
937 13b2bc37 2022-10-23 stsp goto done;
938 13b2bc37 2022-10-23 stsp *buf_pos = 0;
939 13b2bc37 2022-10-23 stsp
940 13b2bc37 2022-10-23 stsp consumed_total += consumed;
941 13b2bc37 2022-10-23 stsp }
942 13b2bc37 2022-10-23 stsp
943 13b2bc37 2022-10-23 stsp if (zret != Z_STREAM_END) {
944 13b2bc37 2022-10-23 stsp err = read_more_pack_stream(infd, buf, 1);
945 13b2bc37 2022-10-23 stsp if (err)
946 13b2bc37 2022-10-23 stsp goto done;
947 13b2bc37 2022-10-23 stsp }
948 13b2bc37 2022-10-23 stsp }
949 13b2bc37 2022-10-23 stsp
950 13b2bc37 2022-10-23 stsp if (err == NULL)
951 13b2bc37 2022-10-23 stsp *outsize += consumed_total;
952 13b2bc37 2022-10-23 stsp done:
953 13b2bc37 2022-10-23 stsp inflateEnd(&z);
954 13b2bc37 2022-10-23 stsp return err;
955 13b2bc37 2022-10-23 stsp }
956 13b2bc37 2022-10-23 stsp
957 13b2bc37 2022-10-23 stsp static const struct got_error *
958 13b2bc37 2022-10-23 stsp validate_object_type(int obj_type)
959 13b2bc37 2022-10-23 stsp {
960 13b2bc37 2022-10-23 stsp switch (obj_type) {
961 13b2bc37 2022-10-23 stsp case GOT_OBJ_TYPE_BLOB:
962 13b2bc37 2022-10-23 stsp case GOT_OBJ_TYPE_COMMIT:
963 13b2bc37 2022-10-23 stsp case GOT_OBJ_TYPE_TREE:
964 13b2bc37 2022-10-23 stsp case GOT_OBJ_TYPE_TAG:
965 13b2bc37 2022-10-23 stsp case GOT_OBJ_TYPE_REF_DELTA:
966 13b2bc37 2022-10-23 stsp case GOT_OBJ_TYPE_OFFSET_DELTA:
967 13b2bc37 2022-10-23 stsp return NULL;
968 13b2bc37 2022-10-23 stsp default:
969 13b2bc37 2022-10-23 stsp break;
970 13b2bc37 2022-10-23 stsp }
971 13b2bc37 2022-10-23 stsp
972 13b2bc37 2022-10-23 stsp return got_error(GOT_ERR_OBJ_TYPE);
973 13b2bc37 2022-10-23 stsp }
974 13b2bc37 2022-10-23 stsp
975 13b2bc37 2022-10-23 stsp static const struct got_error *
976 cc88020e 2023-04-11 stsp ensure_all_objects_exist_locally(struct gotd_ref_updates *ref_updates)
977 cc88020e 2023-04-11 stsp {
978 cc88020e 2023-04-11 stsp const struct got_error *err = NULL;
979 cc88020e 2023-04-11 stsp struct gotd_ref_update *ref_update;
980 cc88020e 2023-04-11 stsp struct got_object *obj;
981 cc88020e 2023-04-11 stsp
982 cc88020e 2023-04-11 stsp STAILQ_FOREACH(ref_update, ref_updates, entry) {
983 cc88020e 2023-04-11 stsp err = got_object_open(&obj, repo_write.repo,
984 cc88020e 2023-04-11 stsp &ref_update->new_id);
985 cc88020e 2023-04-11 stsp if (err)
986 cc88020e 2023-04-11 stsp return err;
987 cc88020e 2023-04-11 stsp got_object_close(obj);
988 cc88020e 2023-04-11 stsp }
989 cc88020e 2023-04-11 stsp
990 cc88020e 2023-04-11 stsp return NULL;
991 cc88020e 2023-04-11 stsp }
992 cc88020e 2023-04-11 stsp
993 cc88020e 2023-04-11 stsp static const struct got_error *
994 0ff2c315 2023-01-18 stsp recv_packdata(off_t *outsize, uint32_t *nobj, uint8_t *sha1,
995 0ff2c315 2023-01-18 stsp int infd, int outfd)
996 13b2bc37 2022-10-23 stsp {
997 13b2bc37 2022-10-23 stsp const struct got_error *err;
998 0ff2c315 2023-01-18 stsp struct repo_write_client *client = &repo_write_client;
999 13b2bc37 2022-10-23 stsp struct got_packfile_hdr hdr;
1000 13b2bc37 2022-10-23 stsp size_t have;
1001 0ff2c315 2023-01-18 stsp uint32_t nhave = 0;
1002 ae25a666 2023-02-23 op struct got_hash ctx;
1003 13b2bc37 2022-10-23 stsp uint8_t expected_sha1[SHA1_DIGEST_LENGTH];
1004 13b2bc37 2022-10-23 stsp char hex[SHA1_DIGEST_STRING_LENGTH];
1005 13b2bc37 2022-10-23 stsp BUF *buf = NULL;
1006 13b2bc37 2022-10-23 stsp size_t buf_pos = 0, remain;
1007 13b2bc37 2022-10-23 stsp ssize_t w;
1008 13b2bc37 2022-10-23 stsp
1009 13b2bc37 2022-10-23 stsp *outsize = 0;
1010 0ff2c315 2023-01-18 stsp *nobj = 0;
1011 9a8e357c 2023-01-28 op
1012 9a8e357c 2023-01-28 op /* if only deleting references there's nothing to read */
1013 9a8e357c 2023-01-28 op if (client->nref_updates == client->nref_del)
1014 9a8e357c 2023-01-28 op return NULL;
1015 9a8e357c 2023-01-28 op
1016 ae25a666 2023-02-23 op got_hash_init(&ctx, GOT_HASH_SHA1);
1017 13b2bc37 2022-10-23 stsp
1018 13b2bc37 2022-10-23 stsp err = got_poll_read_full(infd, &have, &hdr, sizeof(hdr), sizeof(hdr));
1019 13b2bc37 2022-10-23 stsp if (err)
1020 13b2bc37 2022-10-23 stsp return err;
1021 13b2bc37 2022-10-23 stsp if (have != sizeof(hdr))
1022 13b2bc37 2022-10-23 stsp return got_error_msg(GOT_ERR_BAD_PACKFILE, "short pack file");
1023 13b2bc37 2022-10-23 stsp *outsize += have;
1024 13b2bc37 2022-10-23 stsp
1025 13b2bc37 2022-10-23 stsp if (hdr.signature != htobe32(GOT_PACKFILE_SIGNATURE))
1026 13b2bc37 2022-10-23 stsp return got_error_msg(GOT_ERR_BAD_PACKFILE,
1027 13b2bc37 2022-10-23 stsp "bad packfile signature");
1028 13b2bc37 2022-10-23 stsp if (hdr.version != htobe32(GOT_PACKFILE_VERSION))
1029 13b2bc37 2022-10-23 stsp return got_error_msg(GOT_ERR_BAD_PACKFILE,
1030 13b2bc37 2022-10-23 stsp "bad packfile version");
1031 13b2bc37 2022-10-23 stsp
1032 0ff2c315 2023-01-18 stsp *nobj = be32toh(hdr.nobjects);
1033 0ff2c315 2023-01-18 stsp if (*nobj == 0) {
1034 0ff2c315 2023-01-18 stsp /*
1035 0ff2c315 2023-01-18 stsp * Clients which are creating new references only
1036 0ff2c315 2023-01-18 stsp * will send us an empty pack file.
1037 0ff2c315 2023-01-18 stsp */
1038 0ff2c315 2023-01-18 stsp if (client->nref_updates > 0 &&
1039 0ff2c315 2023-01-18 stsp client->nref_updates == client->nref_new)
1040 0ff2c315 2023-01-18 stsp return NULL;
1041 0ff2c315 2023-01-18 stsp
1042 cc88020e 2023-04-11 stsp /*
1043 cc88020e 2023-04-11 stsp * Clients which only move existing refs will send us an empty
1044 cc88020e 2023-04-11 stsp * pack file. All referenced objects must exist locally.
1045 cc88020e 2023-04-11 stsp */
1046 cc88020e 2023-04-11 stsp err = ensure_all_objects_exist_locally(&client->ref_updates);
1047 cc88020e 2023-04-11 stsp if (err) {
1048 cc88020e 2023-04-11 stsp if (err->code != GOT_ERR_NO_OBJ)
1049 cc88020e 2023-04-11 stsp return err;
1050 cc88020e 2023-04-11 stsp return got_error_msg(GOT_ERR_BAD_PACKFILE,
1051 cc88020e 2023-04-11 stsp "bad packfile with zero objects");
1052 cc88020e 2023-04-11 stsp }
1053 cc88020e 2023-04-11 stsp
1054 cc88020e 2023-04-11 stsp client->nref_move = client->nref_updates;
1055 cc88020e 2023-04-11 stsp return NULL;
1056 0ff2c315 2023-01-18 stsp }
1057 13b2bc37 2022-10-23 stsp
1058 0ff2c315 2023-01-18 stsp log_debug("expecting %d objects", *nobj);
1059 13b2bc37 2022-10-23 stsp
1060 13b2bc37 2022-10-23 stsp err = got_pack_hwrite(outfd, &hdr, sizeof(hdr), &ctx);
1061 13b2bc37 2022-10-23 stsp if (err)
1062 13b2bc37 2022-10-23 stsp return err;
1063 13b2bc37 2022-10-23 stsp
1064 13b2bc37 2022-10-23 stsp err = buf_alloc(&buf, 65536);
1065 13b2bc37 2022-10-23 stsp if (err)
1066 13b2bc37 2022-10-23 stsp return err;
1067 13b2bc37 2022-10-23 stsp
1068 0ff2c315 2023-01-18 stsp while (nhave != *nobj) {
1069 13b2bc37 2022-10-23 stsp uint8_t obj_type;
1070 13b2bc37 2022-10-23 stsp uint64_t obj_size;
1071 13b2bc37 2022-10-23 stsp
1072 13b2bc37 2022-10-23 stsp err = copy_object_type_and_size(&obj_type, &obj_size,
1073 13b2bc37 2022-10-23 stsp infd, outfd, outsize, buf, &buf_pos, &ctx);
1074 13b2bc37 2022-10-23 stsp if (err)
1075 13b2bc37 2022-10-23 stsp goto done;
1076 13b2bc37 2022-10-23 stsp
1077 13b2bc37 2022-10-23 stsp err = validate_object_type(obj_type);
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 if (obj_type == GOT_OBJ_TYPE_REF_DELTA) {
1082 13b2bc37 2022-10-23 stsp err = copy_ref_delta(infd, outfd, outsize,
1083 13b2bc37 2022-10-23 stsp buf, &buf_pos, &ctx);
1084 13b2bc37 2022-10-23 stsp if (err)
1085 13b2bc37 2022-10-23 stsp goto done;
1086 13b2bc37 2022-10-23 stsp } else if (obj_type == GOT_OBJ_TYPE_OFFSET_DELTA) {
1087 13b2bc37 2022-10-23 stsp err = copy_offset_delta(infd, outfd, outsize,
1088 13b2bc37 2022-10-23 stsp buf, &buf_pos, &ctx);
1089 13b2bc37 2022-10-23 stsp if (err)
1090 13b2bc37 2022-10-23 stsp goto done;
1091 13b2bc37 2022-10-23 stsp }
1092 13b2bc37 2022-10-23 stsp
1093 13b2bc37 2022-10-23 stsp err = copy_zstream(infd, outfd, outsize, buf, &buf_pos, &ctx);
1094 13b2bc37 2022-10-23 stsp if (err)
1095 13b2bc37 2022-10-23 stsp goto done;
1096 13b2bc37 2022-10-23 stsp
1097 13b2bc37 2022-10-23 stsp nhave++;
1098 13b2bc37 2022-10-23 stsp }
1099 13b2bc37 2022-10-23 stsp
1100 0ff2c315 2023-01-18 stsp log_debug("received %u objects", *nobj);
1101 13b2bc37 2022-10-23 stsp
1102 ae25a666 2023-02-23 op got_hash_final(&ctx, expected_sha1);
1103 13b2bc37 2022-10-23 stsp
1104 13b2bc37 2022-10-23 stsp remain = buf_len(buf) - buf_pos;
1105 13b2bc37 2022-10-23 stsp if (remain < SHA1_DIGEST_LENGTH) {
1106 13b2bc37 2022-10-23 stsp err = read_more_pack_stream(infd, buf,
1107 13b2bc37 2022-10-23 stsp SHA1_DIGEST_LENGTH - remain);
1108 13b2bc37 2022-10-23 stsp if (err)
1109 13b2bc37 2022-10-23 stsp return err;
1110 13b2bc37 2022-10-23 stsp }
1111 13b2bc37 2022-10-23 stsp
1112 13b2bc37 2022-10-23 stsp got_sha1_digest_to_str(expected_sha1, hex, sizeof(hex));
1113 13b2bc37 2022-10-23 stsp log_debug("expect SHA1: %s", hex);
1114 13b2bc37 2022-10-23 stsp got_sha1_digest_to_str(buf_get(buf) + buf_pos, hex, sizeof(hex));
1115 13b2bc37 2022-10-23 stsp log_debug("actual SHA1: %s", hex);
1116 13b2bc37 2022-10-23 stsp
1117 13b2bc37 2022-10-23 stsp if (memcmp(buf_get(buf) + buf_pos, expected_sha1,
1118 13b2bc37 2022-10-23 stsp SHA1_DIGEST_LENGTH) != 0) {
1119 13b2bc37 2022-10-23 stsp err = got_error(GOT_ERR_PACKFILE_CSUM);
1120 13b2bc37 2022-10-23 stsp goto done;
1121 13b2bc37 2022-10-23 stsp }
1122 13b2bc37 2022-10-23 stsp
1123 13b2bc37 2022-10-23 stsp memcpy(sha1, expected_sha1, SHA1_DIGEST_LENGTH);
1124 13b2bc37 2022-10-23 stsp
1125 13b2bc37 2022-10-23 stsp w = write(outfd, expected_sha1, SHA1_DIGEST_LENGTH);
1126 13b2bc37 2022-10-23 stsp if (w == -1) {
1127 13b2bc37 2022-10-23 stsp err = got_error_from_errno("write");
1128 13b2bc37 2022-10-23 stsp goto done;
1129 13b2bc37 2022-10-23 stsp }
1130 13b2bc37 2022-10-23 stsp if (w != SHA1_DIGEST_LENGTH) {
1131 13b2bc37 2022-10-23 stsp err = got_error(GOT_ERR_IO);
1132 13b2bc37 2022-10-23 stsp goto done;
1133 13b2bc37 2022-10-23 stsp }
1134 13b2bc37 2022-10-23 stsp
1135 13b2bc37 2022-10-23 stsp *outsize += SHA1_DIGEST_LENGTH;
1136 13b2bc37 2022-10-23 stsp
1137 13b2bc37 2022-10-23 stsp if (fsync(outfd) == -1) {
1138 13b2bc37 2022-10-23 stsp err = got_error_from_errno("fsync");
1139 13b2bc37 2022-10-23 stsp goto done;
1140 13b2bc37 2022-10-23 stsp }
1141 13b2bc37 2022-10-23 stsp if (lseek(outfd, 0L, SEEK_SET) == -1) {
1142 13b2bc37 2022-10-23 stsp err = got_error_from_errno("lseek");
1143 13b2bc37 2022-10-23 stsp goto done;
1144 13b2bc37 2022-10-23 stsp }
1145 13b2bc37 2022-10-23 stsp done:
1146 13b2bc37 2022-10-23 stsp buf_free(buf);
1147 13b2bc37 2022-10-23 stsp return err;
1148 13b2bc37 2022-10-23 stsp }
1149 13b2bc37 2022-10-23 stsp
1150 13b2bc37 2022-10-23 stsp static const struct got_error *
1151 1a52c9bf 2022-12-30 stsp report_pack_status(const struct got_error *unpack_err)
1152 13b2bc37 2022-10-23 stsp {
1153 13b2bc37 2022-10-23 stsp const struct got_error *err = NULL;
1154 1a52c9bf 2022-12-30 stsp struct repo_write_client *client = &repo_write_client;
1155 13b2bc37 2022-10-23 stsp struct gotd_imsg_packfile_status istatus;
1156 13b2bc37 2022-10-23 stsp struct ibuf *wbuf;
1157 13b2bc37 2022-10-23 stsp struct imsgbuf ibuf;
1158 13b2bc37 2022-10-23 stsp const char *unpack_ok = "unpack ok\n";
1159 13b2bc37 2022-10-23 stsp size_t len;
1160 e26970cc 2023-01-10 op
1161 13b2bc37 2022-10-23 stsp imsg_init(&ibuf, client->fd);
1162 13b2bc37 2022-10-23 stsp
1163 13b2bc37 2022-10-23 stsp if (unpack_err)
1164 13b2bc37 2022-10-23 stsp istatus.reason_len = strlen(unpack_err->msg);
1165 13b2bc37 2022-10-23 stsp else
1166 13b2bc37 2022-10-23 stsp istatus.reason_len = strlen(unpack_ok);
1167 13b2bc37 2022-10-23 stsp
1168 13b2bc37 2022-10-23 stsp len = sizeof(istatus) + istatus.reason_len;
1169 13b2bc37 2022-10-23 stsp wbuf = imsg_create(&ibuf, GOTD_IMSG_PACKFILE_STATUS, PROC_REPO_WRITE,
1170 13b2bc37 2022-10-23 stsp repo_write.pid, len);
1171 13b2bc37 2022-10-23 stsp if (wbuf == NULL) {
1172 13b2bc37 2022-10-23 stsp err = got_error_from_errno("imsg_create PACKFILE_STATUS");
1173 13b2bc37 2022-10-23 stsp goto done;
1174 13b2bc37 2022-10-23 stsp }
1175 13b2bc37 2022-10-23 stsp
1176 13b2bc37 2022-10-23 stsp if (imsg_add(wbuf, &istatus, sizeof(istatus)) == -1) {
1177 13b2bc37 2022-10-23 stsp err = got_error_from_errno("imsg_add PACKFILE_STATUS");
1178 13b2bc37 2022-10-23 stsp goto done;
1179 13b2bc37 2022-10-23 stsp }
1180 13b2bc37 2022-10-23 stsp
1181 13b2bc37 2022-10-23 stsp if (imsg_add(wbuf, err ? err->msg : unpack_ok,
1182 13b2bc37 2022-10-23 stsp istatus.reason_len) == -1) {
1183 13b2bc37 2022-10-23 stsp err = got_error_from_errno("imsg_add PACKFILE_STATUS");
1184 13b2bc37 2022-10-23 stsp goto done;
1185 13b2bc37 2022-10-23 stsp }
1186 13b2bc37 2022-10-23 stsp
1187 13b2bc37 2022-10-23 stsp wbuf->fd = -1;
1188 13b2bc37 2022-10-23 stsp imsg_close(&ibuf, wbuf);
1189 13b2bc37 2022-10-23 stsp
1190 13b2bc37 2022-10-23 stsp err = gotd_imsg_flush(&ibuf);
1191 13b2bc37 2022-10-23 stsp done:
1192 13b2bc37 2022-10-23 stsp imsg_clear(&ibuf);
1193 13b2bc37 2022-10-23 stsp return err;
1194 13b2bc37 2022-10-23 stsp }
1195 13b2bc37 2022-10-23 stsp
1196 13b2bc37 2022-10-23 stsp static const struct got_error *
1197 0ff2c315 2023-01-18 stsp recv_packfile(int *have_packfile, struct imsg *imsg)
1198 13b2bc37 2022-10-23 stsp {
1199 13b2bc37 2022-10-23 stsp const struct got_error *err = NULL, *unpack_err;
1200 1a52c9bf 2022-12-30 stsp struct repo_write_client *client = &repo_write_client;
1201 13b2bc37 2022-10-23 stsp struct gotd_imsg_recv_packfile ireq;
1202 13b2bc37 2022-10-23 stsp FILE *tempfiles[3] = { NULL, NULL, NULL };
1203 13b2bc37 2022-10-23 stsp struct repo_tempfile {
1204 13b2bc37 2022-10-23 stsp int fd;
1205 13b2bc37 2022-10-23 stsp int idx;
1206 13b2bc37 2022-10-23 stsp } repo_tempfiles[3] = { { - 1, - 1 }, { - 1, - 1 }, { - 1, - 1 }, };
1207 13b2bc37 2022-10-23 stsp int i;
1208 13b2bc37 2022-10-23 stsp size_t datalen;
1209 13b2bc37 2022-10-23 stsp struct imsgbuf ibuf;
1210 13b2bc37 2022-10-23 stsp struct got_ratelimit rl;
1211 13b2bc37 2022-10-23 stsp struct got_pack *pack = NULL;
1212 13b2bc37 2022-10-23 stsp off_t pack_filesize = 0;
1213 0ff2c315 2023-01-18 stsp uint32_t nobj = 0;
1214 13b2bc37 2022-10-23 stsp
1215 13b2bc37 2022-10-23 stsp log_debug("packfile request received");
1216 13b2bc37 2022-10-23 stsp
1217 0ff2c315 2023-01-18 stsp *have_packfile = 0;
1218 13b2bc37 2022-10-23 stsp got_ratelimit_init(&rl, 2, 0);
1219 13b2bc37 2022-10-23 stsp
1220 13b2bc37 2022-10-23 stsp datalen = imsg->hdr.len - IMSG_HEADER_SIZE;
1221 13b2bc37 2022-10-23 stsp if (datalen != sizeof(ireq))
1222 13b2bc37 2022-10-23 stsp return got_error(GOT_ERR_PRIVSEP_LEN);
1223 13b2bc37 2022-10-23 stsp memcpy(&ireq, imsg->data, sizeof(ireq));
1224 13b2bc37 2022-10-23 stsp
1225 1a52c9bf 2022-12-30 stsp if (client->pack_pipe == -1 || client->packidx_fd == -1)
1226 13b2bc37 2022-10-23 stsp return got_error(GOT_ERR_PRIVSEP_NO_FD);
1227 13b2bc37 2022-10-23 stsp
1228 1a52c9bf 2022-12-30 stsp imsg_init(&ibuf, client->fd);
1229 13b2bc37 2022-10-23 stsp
1230 13b2bc37 2022-10-23 stsp if (imsg->fd == -1)
1231 13b2bc37 2022-10-23 stsp return got_error(GOT_ERR_PRIVSEP_NO_FD);
1232 13b2bc37 2022-10-23 stsp
1233 1a52c9bf 2022-12-30 stsp pack = &client->pack;
1234 13b2bc37 2022-10-23 stsp memset(pack, 0, sizeof(*pack));
1235 13b2bc37 2022-10-23 stsp pack->fd = imsg->fd;
1236 13b2bc37 2022-10-23 stsp err = got_delta_cache_alloc(&pack->delta_cache);
1237 13b2bc37 2022-10-23 stsp if (err)
1238 13b2bc37 2022-10-23 stsp return err;
1239 13b2bc37 2022-10-23 stsp
1240 13b2bc37 2022-10-23 stsp for (i = 0; i < nitems(repo_tempfiles); i++) {
1241 13b2bc37 2022-10-23 stsp struct repo_tempfile *t = &repo_tempfiles[i];
1242 13b2bc37 2022-10-23 stsp err = got_repo_temp_fds_get(&t->fd, &t->idx, repo_write.repo);
1243 13b2bc37 2022-10-23 stsp if (err)
1244 13b2bc37 2022-10-23 stsp goto done;
1245 13b2bc37 2022-10-23 stsp }
1246 13b2bc37 2022-10-23 stsp
1247 13b2bc37 2022-10-23 stsp for (i = 0; i < nitems(tempfiles); i++) {
1248 e294dc4e 2023-02-03 mark int fd;
1249 13b2bc37 2022-10-23 stsp FILE *f;
1250 e294dc4e 2023-02-03 mark
1251 e294dc4e 2023-02-03 mark fd = dup(repo_tempfiles[i].fd);
1252 13b2bc37 2022-10-23 stsp if (fd == -1) {
1253 13b2bc37 2022-10-23 stsp err = got_error_from_errno("dup");
1254 13b2bc37 2022-10-23 stsp goto done;
1255 13b2bc37 2022-10-23 stsp }
1256 13b2bc37 2022-10-23 stsp f = fdopen(fd, "w+");
1257 13b2bc37 2022-10-23 stsp if (f == NULL) {
1258 e294dc4e 2023-02-03 mark err = got_error_from_errno("fdopen");
1259 13b2bc37 2022-10-23 stsp close(fd);
1260 13b2bc37 2022-10-23 stsp goto done;
1261 13b2bc37 2022-10-23 stsp }
1262 13b2bc37 2022-10-23 stsp tempfiles[i] = f;
1263 13b2bc37 2022-10-23 stsp }
1264 13b2bc37 2022-10-23 stsp
1265 13b2bc37 2022-10-23 stsp err = gotd_imsg_flush(&ibuf);
1266 13b2bc37 2022-10-23 stsp if (err)
1267 13b2bc37 2022-10-23 stsp goto done;
1268 13b2bc37 2022-10-23 stsp
1269 13b2bc37 2022-10-23 stsp log_debug("receiving pack data");
1270 0ff2c315 2023-01-18 stsp unpack_err = recv_packdata(&pack_filesize, &nobj,
1271 0ff2c315 2023-01-18 stsp client->pack_sha1, client->pack_pipe, pack->fd);
1272 13b2bc37 2022-10-23 stsp if (ireq.report_status) {
1273 1a52c9bf 2022-12-30 stsp err = report_pack_status(unpack_err);
1274 13b2bc37 2022-10-23 stsp if (err) {
1275 13b2bc37 2022-10-23 stsp /* Git clients hang up after sending the pack file. */
1276 13b2bc37 2022-10-23 stsp if (err->code == GOT_ERR_EOF)
1277 13b2bc37 2022-10-23 stsp err = NULL;
1278 13b2bc37 2022-10-23 stsp }
1279 13b2bc37 2022-10-23 stsp }
1280 13b2bc37 2022-10-23 stsp if (unpack_err)
1281 13b2bc37 2022-10-23 stsp err = unpack_err;
1282 13b2bc37 2022-10-23 stsp if (err)
1283 13b2bc37 2022-10-23 stsp goto done;
1284 13b2bc37 2022-10-23 stsp
1285 13b2bc37 2022-10-23 stsp log_debug("pack data received");
1286 0ff2c315 2023-01-18 stsp
1287 0ff2c315 2023-01-18 stsp /*
1288 0ff2c315 2023-01-18 stsp * Clients which are creating new references only will
1289 0ff2c315 2023-01-18 stsp * send us an empty pack file.
1290 0ff2c315 2023-01-18 stsp */
1291 0ff2c315 2023-01-18 stsp if (nobj == 0 &&
1292 0ff2c315 2023-01-18 stsp pack_filesize == sizeof(struct got_packfile_hdr) &&
1293 0ff2c315 2023-01-18 stsp client->nref_updates > 0 &&
1294 0ff2c315 2023-01-18 stsp client->nref_updates == client->nref_new)
1295 0ff2c315 2023-01-18 stsp goto done;
1296 13b2bc37 2022-10-23 stsp
1297 9a8e357c 2023-01-28 op /*
1298 9a8e357c 2023-01-28 op * Clients which are deleting references only will send
1299 9a8e357c 2023-01-28 op * no pack file.
1300 9a8e357c 2023-01-28 op */
1301 9a8e357c 2023-01-28 op if (nobj == 0 &&
1302 9a8e357c 2023-01-28 op client->nref_del > 0 &&
1303 9a8e357c 2023-01-28 op client->nref_updates == client->nref_del)
1304 cc88020e 2023-04-11 stsp goto done;
1305 cc88020e 2023-04-11 stsp
1306 cc88020e 2023-04-11 stsp /*
1307 cc88020e 2023-04-11 stsp * Clients which only move existing refs will send us an empty
1308 cc88020e 2023-04-11 stsp * pack file. All referenced objects must exist locally.
1309 cc88020e 2023-04-11 stsp */
1310 cc88020e 2023-04-11 stsp if (nobj == 0 &&
1311 cc88020e 2023-04-11 stsp pack_filesize == sizeof(struct got_packfile_hdr) &&
1312 cc88020e 2023-04-11 stsp client->nref_move > 0 &&
1313 cc88020e 2023-04-11 stsp client->nref_updates == client->nref_move)
1314 9a8e357c 2023-01-28 op goto done;
1315 9a8e357c 2023-01-28 op
1316 13b2bc37 2022-10-23 stsp pack->filesize = pack_filesize;
1317 0ff2c315 2023-01-18 stsp *have_packfile = 1;
1318 13b2bc37 2022-10-23 stsp
1319 ad4cc361 2022-10-27 op log_debug("begin indexing pack (%lld bytes in size)",
1320 ad4cc361 2022-10-27 op (long long)pack->filesize);
1321 1a52c9bf 2022-12-30 stsp err = got_pack_index(pack, client->packidx_fd,
1322 1a52c9bf 2022-12-30 stsp tempfiles[0], tempfiles[1], tempfiles[2], client->pack_sha1,
1323 13b2bc37 2022-10-23 stsp pack_index_progress, NULL, &rl);
1324 13b2bc37 2022-10-23 stsp if (err)
1325 13b2bc37 2022-10-23 stsp goto done;
1326 13b2bc37 2022-10-23 stsp log_debug("done indexing pack");
1327 13b2bc37 2022-10-23 stsp
1328 1a52c9bf 2022-12-30 stsp if (fsync(client->packidx_fd) == -1) {
1329 13b2bc37 2022-10-23 stsp err = got_error_from_errno("fsync");
1330 13b2bc37 2022-10-23 stsp goto done;
1331 13b2bc37 2022-10-23 stsp }
1332 1a52c9bf 2022-12-30 stsp if (lseek(client->packidx_fd, 0L, SEEK_SET) == -1)
1333 13b2bc37 2022-10-23 stsp err = got_error_from_errno("lseek");
1334 13b2bc37 2022-10-23 stsp done:
1335 1a52c9bf 2022-12-30 stsp if (close(client->pack_pipe) == -1 && err == NULL)
1336 13b2bc37 2022-10-23 stsp err = got_error_from_errno("close");
1337 1a52c9bf 2022-12-30 stsp client->pack_pipe = -1;
1338 13b2bc37 2022-10-23 stsp for (i = 0; i < nitems(repo_tempfiles); i++) {
1339 13b2bc37 2022-10-23 stsp struct repo_tempfile *t = &repo_tempfiles[i];
1340 13b2bc37 2022-10-23 stsp if (t->idx != -1)
1341 13b2bc37 2022-10-23 stsp got_repo_temp_fds_put(t->idx, repo_write.repo);
1342 13b2bc37 2022-10-23 stsp }
1343 13b2bc37 2022-10-23 stsp for (i = 0; i < nitems(tempfiles); i++) {
1344 13b2bc37 2022-10-23 stsp if (tempfiles[i] && fclose(tempfiles[i]) == EOF && err == NULL)
1345 13b2bc37 2022-10-23 stsp err = got_error_from_errno("fclose");
1346 13b2bc37 2022-10-23 stsp }
1347 13b2bc37 2022-10-23 stsp if (err)
1348 13b2bc37 2022-10-23 stsp got_pack_close(pack);
1349 13b2bc37 2022-10-23 stsp imsg_clear(&ibuf);
1350 13b2bc37 2022-10-23 stsp return err;
1351 13b2bc37 2022-10-23 stsp }
1352 13b2bc37 2022-10-23 stsp
1353 13b2bc37 2022-10-23 stsp static const struct got_error *
1354 1a52c9bf 2022-12-30 stsp verify_packfile(void)
1355 13b2bc37 2022-10-23 stsp {
1356 13b2bc37 2022-10-23 stsp const struct got_error *err = NULL, *close_err;
1357 1a52c9bf 2022-12-30 stsp struct repo_write_client *client = &repo_write_client;
1358 13b2bc37 2022-10-23 stsp struct gotd_ref_update *ref_update;
1359 13b2bc37 2022-10-23 stsp struct got_packidx *packidx = NULL;
1360 13b2bc37 2022-10-23 stsp struct stat sb;
1361 13b2bc37 2022-10-23 stsp char *id_str = NULL;
1362 9afa3de2 2023-04-04 stsp struct got_object *obj = NULL;
1363 9afa3de2 2023-04-04 stsp struct got_pathlist_entry *pe;
1364 9afa3de2 2023-04-04 stsp char hex[SHA1_DIGEST_STRING_LENGTH];
1365 13b2bc37 2022-10-23 stsp
1366 13b2bc37 2022-10-23 stsp if (STAILQ_EMPTY(&client->ref_updates)) {
1367 13b2bc37 2022-10-23 stsp return got_error_msg(GOT_ERR_BAD_REQUEST,
1368 13b2bc37 2022-10-23 stsp "cannot verify pack file without any ref-updates");
1369 13b2bc37 2022-10-23 stsp }
1370 13b2bc37 2022-10-23 stsp
1371 13b2bc37 2022-10-23 stsp if (client->pack.fd == -1) {
1372 13b2bc37 2022-10-23 stsp return got_error_msg(GOT_ERR_BAD_REQUEST,
1373 13b2bc37 2022-10-23 stsp "invalid pack file handle during pack verification");
1374 13b2bc37 2022-10-23 stsp }
1375 13b2bc37 2022-10-23 stsp if (client->packidx_fd == -1) {
1376 13b2bc37 2022-10-23 stsp return got_error_msg(GOT_ERR_BAD_REQUEST,
1377 13b2bc37 2022-10-23 stsp "invalid pack index handle during pack verification");
1378 13b2bc37 2022-10-23 stsp }
1379 13b2bc37 2022-10-23 stsp
1380 13b2bc37 2022-10-23 stsp if (fstat(client->packidx_fd, &sb) == -1)
1381 13b2bc37 2022-10-23 stsp return got_error_from_errno("pack index fstat");
1382 13b2bc37 2022-10-23 stsp
1383 13b2bc37 2022-10-23 stsp packidx = malloc(sizeof(*packidx));
1384 13b2bc37 2022-10-23 stsp memset(packidx, 0, sizeof(*packidx));
1385 13b2bc37 2022-10-23 stsp packidx->fd = client->packidx_fd;
1386 13b2bc37 2022-10-23 stsp client->packidx_fd = -1;
1387 13b2bc37 2022-10-23 stsp packidx->len = sb.st_size;
1388 e26970cc 2023-01-10 op
1389 13b2bc37 2022-10-23 stsp err = got_packidx_init_hdr(packidx, 1, client->pack.filesize);
1390 13b2bc37 2022-10-23 stsp if (err)
1391 13b2bc37 2022-10-23 stsp return err;
1392 13b2bc37 2022-10-23 stsp
1393 13b2bc37 2022-10-23 stsp STAILQ_FOREACH(ref_update, &client->ref_updates, entry) {
1394 9a8e357c 2023-01-28 op if (ref_update->delete_ref)
1395 9a8e357c 2023-01-28 op continue;
1396 9a8e357c 2023-01-28 op
1397 9afa3de2 2023-04-04 stsp TAILQ_FOREACH(pe, repo_write.protected_tag_namespaces, entry) {
1398 9afa3de2 2023-04-04 stsp err = protect_tag_namespace(pe->path, &client->pack,
1399 9afa3de2 2023-04-04 stsp packidx, ref_update);
1400 9afa3de2 2023-04-04 stsp if (err)
1401 9afa3de2 2023-04-04 stsp goto done;
1402 9afa3de2 2023-04-04 stsp }
1403 13b2bc37 2022-10-23 stsp
1404 9afa3de2 2023-04-04 stsp /*
1405 9afa3de2 2023-04-04 stsp * Objects which already exist in our repository need
1406 9afa3de2 2023-04-04 stsp * not be present in the pack file.
1407 9afa3de2 2023-04-04 stsp */
1408 9afa3de2 2023-04-04 stsp err = got_object_open(&obj, repo_write.repo,
1409 9afa3de2 2023-04-04 stsp &ref_update->new_id);
1410 9afa3de2 2023-04-04 stsp if (err && err->code != GOT_ERR_NO_OBJ)
1411 13b2bc37 2022-10-23 stsp goto done;
1412 9afa3de2 2023-04-04 stsp err = NULL;
1413 9afa3de2 2023-04-04 stsp if (obj) {
1414 9afa3de2 2023-04-04 stsp got_object_close(obj);
1415 9afa3de2 2023-04-04 stsp obj = NULL;
1416 9afa3de2 2023-04-04 stsp } else {
1417 9afa3de2 2023-04-04 stsp int idx = got_packidx_get_object_idx(packidx,
1418 9afa3de2 2023-04-04 stsp &ref_update->new_id);
1419 9afa3de2 2023-04-04 stsp if (idx == -1) {
1420 9afa3de2 2023-04-04 stsp got_sha1_digest_to_str(ref_update->new_id.sha1,
1421 9afa3de2 2023-04-04 stsp hex, sizeof(hex));
1422 9afa3de2 2023-04-04 stsp err = got_error_fmt(GOT_ERR_BAD_PACKFILE,
1423 9afa3de2 2023-04-04 stsp "object %s is missing from pack file",
1424 9afa3de2 2023-04-04 stsp hex);
1425 9afa3de2 2023-04-04 stsp goto done;
1426 9afa3de2 2023-04-04 stsp }
1427 13b2bc37 2022-10-23 stsp }
1428 9afa3de2 2023-04-04 stsp
1429 9afa3de2 2023-04-04 stsp TAILQ_FOREACH(pe, repo_write.protected_branch_namespaces,
1430 9afa3de2 2023-04-04 stsp entry) {
1431 9afa3de2 2023-04-04 stsp err = protect_branch_namespace(pe->path,
1432 9afa3de2 2023-04-04 stsp &client->pack, packidx, ref_update);
1433 9afa3de2 2023-04-04 stsp if (err)
1434 9afa3de2 2023-04-04 stsp goto done;
1435 9afa3de2 2023-04-04 stsp }
1436 9afa3de2 2023-04-04 stsp TAILQ_FOREACH(pe, repo_write.protected_branches, entry) {
1437 9afa3de2 2023-04-04 stsp err = protect_branch(pe->path, &client->pack,
1438 9afa3de2 2023-04-04 stsp packidx, ref_update);
1439 9afa3de2 2023-04-04 stsp if (err)
1440 9afa3de2 2023-04-04 stsp goto done;
1441 9afa3de2 2023-04-04 stsp }
1442 13b2bc37 2022-10-23 stsp }
1443 13b2bc37 2022-10-23 stsp
1444 e26970cc 2023-01-10 op done:
1445 13b2bc37 2022-10-23 stsp close_err = got_packidx_close(packidx);
1446 13b2bc37 2022-10-23 stsp if (close_err && err == NULL)
1447 13b2bc37 2022-10-23 stsp err = close_err;
1448 13b2bc37 2022-10-23 stsp free(id_str);
1449 9afa3de2 2023-04-04 stsp if (obj)
1450 9afa3de2 2023-04-04 stsp got_object_close(obj);
1451 13b2bc37 2022-10-23 stsp return err;
1452 13b2bc37 2022-10-23 stsp }
1453 13b2bc37 2022-10-23 stsp
1454 13b2bc37 2022-10-23 stsp static const struct got_error *
1455 9afa3de2 2023-04-04 stsp protect_refs_from_deletion(void)
1456 9afa3de2 2023-04-04 stsp {
1457 9afa3de2 2023-04-04 stsp const struct got_error *err = NULL;
1458 9afa3de2 2023-04-04 stsp struct repo_write_client *client = &repo_write_client;
1459 9afa3de2 2023-04-04 stsp struct gotd_ref_update *ref_update;
1460 9afa3de2 2023-04-04 stsp struct got_pathlist_entry *pe;
1461 9afa3de2 2023-04-04 stsp const char *refname;
1462 9afa3de2 2023-04-04 stsp
1463 9afa3de2 2023-04-04 stsp STAILQ_FOREACH(ref_update, &client->ref_updates, entry) {
1464 9afa3de2 2023-04-04 stsp if (!ref_update->delete_ref)
1465 9afa3de2 2023-04-04 stsp continue;
1466 9afa3de2 2023-04-04 stsp
1467 9afa3de2 2023-04-04 stsp refname = got_ref_get_name(ref_update->ref);
1468 9afa3de2 2023-04-04 stsp
1469 9afa3de2 2023-04-04 stsp TAILQ_FOREACH(pe, repo_write.protected_tag_namespaces, entry) {
1470 9afa3de2 2023-04-04 stsp err = protect_ref_namespace(refname, pe->path);
1471 9afa3de2 2023-04-04 stsp if (err)
1472 9afa3de2 2023-04-04 stsp return err;
1473 9afa3de2 2023-04-04 stsp }
1474 9afa3de2 2023-04-04 stsp
1475 9afa3de2 2023-04-04 stsp TAILQ_FOREACH(pe, repo_write.protected_branch_namespaces,
1476 9afa3de2 2023-04-04 stsp entry) {
1477 9afa3de2 2023-04-04 stsp err = protect_ref_namespace(refname, pe->path);
1478 9afa3de2 2023-04-04 stsp if (err)
1479 9afa3de2 2023-04-04 stsp return err;
1480 9afa3de2 2023-04-04 stsp }
1481 9afa3de2 2023-04-04 stsp
1482 9afa3de2 2023-04-04 stsp TAILQ_FOREACH(pe, repo_write.protected_branches, entry) {
1483 9afa3de2 2023-04-04 stsp if (strcmp(refname, pe->path) == 0) {
1484 9afa3de2 2023-04-04 stsp return got_error_fmt(GOT_ERR_REF_PROTECTED,
1485 9afa3de2 2023-04-04 stsp "%s", refname);
1486 9afa3de2 2023-04-04 stsp }
1487 9afa3de2 2023-04-04 stsp }
1488 9afa3de2 2023-04-04 stsp }
1489 9afa3de2 2023-04-04 stsp
1490 9afa3de2 2023-04-04 stsp return NULL;
1491 9afa3de2 2023-04-04 stsp }
1492 9afa3de2 2023-04-04 stsp
1493 9afa3de2 2023-04-04 stsp static const struct got_error *
1494 1a52c9bf 2022-12-30 stsp install_packfile(struct gotd_imsgev *iev)
1495 13b2bc37 2022-10-23 stsp {
1496 1a52c9bf 2022-12-30 stsp struct repo_write_client *client = &repo_write_client;
1497 13b2bc37 2022-10-23 stsp struct gotd_imsg_packfile_install inst;
1498 13b2bc37 2022-10-23 stsp int ret;
1499 13b2bc37 2022-10-23 stsp
1500 13b2bc37 2022-10-23 stsp memset(&inst, 0, sizeof(inst));
1501 13b2bc37 2022-10-23 stsp inst.client_id = client->id;
1502 13b2bc37 2022-10-23 stsp memcpy(inst.pack_sha1, client->pack_sha1, SHA1_DIGEST_LENGTH);
1503 13b2bc37 2022-10-23 stsp
1504 13b2bc37 2022-10-23 stsp ret = gotd_imsg_compose_event(iev, GOTD_IMSG_PACKFILE_INSTALL,
1505 13b2bc37 2022-10-23 stsp PROC_REPO_WRITE, -1, &inst, sizeof(inst));
1506 13b2bc37 2022-10-23 stsp if (ret == -1)
1507 13b2bc37 2022-10-23 stsp return got_error_from_errno("imsg_compose PACKFILE_INSTALL");
1508 13b2bc37 2022-10-23 stsp
1509 13b2bc37 2022-10-23 stsp return NULL;
1510 13b2bc37 2022-10-23 stsp }
1511 13b2bc37 2022-10-23 stsp
1512 13b2bc37 2022-10-23 stsp static const struct got_error *
1513 1a52c9bf 2022-12-30 stsp send_ref_updates_start(int nref_updates, struct gotd_imsgev *iev)
1514 13b2bc37 2022-10-23 stsp {
1515 1a52c9bf 2022-12-30 stsp struct repo_write_client *client = &repo_write_client;
1516 13b2bc37 2022-10-23 stsp struct gotd_imsg_ref_updates_start istart;
1517 13b2bc37 2022-10-23 stsp int ret;
1518 13b2bc37 2022-10-23 stsp
1519 13b2bc37 2022-10-23 stsp memset(&istart, 0, sizeof(istart));
1520 13b2bc37 2022-10-23 stsp istart.nref_updates = nref_updates;
1521 13b2bc37 2022-10-23 stsp istart.client_id = client->id;
1522 13b2bc37 2022-10-23 stsp
1523 13b2bc37 2022-10-23 stsp ret = gotd_imsg_compose_event(iev, GOTD_IMSG_REF_UPDATES_START,
1524 13b2bc37 2022-10-23 stsp PROC_REPO_WRITE, -1, &istart, sizeof(istart));
1525 13b2bc37 2022-10-23 stsp if (ret == -1)
1526 13b2bc37 2022-10-23 stsp return got_error_from_errno("imsg_compose REF_UPDATES_START");
1527 13b2bc37 2022-10-23 stsp
1528 13b2bc37 2022-10-23 stsp return NULL;
1529 13b2bc37 2022-10-23 stsp }
1530 13b2bc37 2022-10-23 stsp
1531 13b2bc37 2022-10-23 stsp
1532 13b2bc37 2022-10-23 stsp static const struct got_error *
1533 1a52c9bf 2022-12-30 stsp send_ref_update(struct gotd_ref_update *ref_update, struct gotd_imsgev *iev)
1534 13b2bc37 2022-10-23 stsp {
1535 1a52c9bf 2022-12-30 stsp struct repo_write_client *client = &repo_write_client;
1536 13b2bc37 2022-10-23 stsp struct gotd_imsg_ref_update iref;
1537 13b2bc37 2022-10-23 stsp const char *refname = got_ref_get_name(ref_update->ref);
1538 13b2bc37 2022-10-23 stsp struct ibuf *wbuf;
1539 13b2bc37 2022-10-23 stsp size_t len;
1540 13b2bc37 2022-10-23 stsp
1541 13b2bc37 2022-10-23 stsp memset(&iref, 0, sizeof(iref));
1542 13b2bc37 2022-10-23 stsp memcpy(iref.old_id, ref_update->old_id.sha1, SHA1_DIGEST_LENGTH);
1543 13b2bc37 2022-10-23 stsp memcpy(iref.new_id, ref_update->new_id.sha1, SHA1_DIGEST_LENGTH);
1544 13b2bc37 2022-10-23 stsp iref.ref_is_new = ref_update->ref_is_new;
1545 9a8e357c 2023-01-28 op iref.delete_ref = ref_update->delete_ref;
1546 13b2bc37 2022-10-23 stsp iref.client_id = client->id;
1547 13b2bc37 2022-10-23 stsp iref.name_len = strlen(refname);
1548 13b2bc37 2022-10-23 stsp
1549 13b2bc37 2022-10-23 stsp len = sizeof(iref) + iref.name_len;
1550 13b2bc37 2022-10-23 stsp wbuf = imsg_create(&iev->ibuf, GOTD_IMSG_REF_UPDATE, PROC_REPO_WRITE,
1551 13b2bc37 2022-10-23 stsp repo_write.pid, len);
1552 13b2bc37 2022-10-23 stsp if (wbuf == NULL)
1553 13b2bc37 2022-10-23 stsp return got_error_from_errno("imsg_create REF_UPDATE");
1554 13b2bc37 2022-10-23 stsp
1555 13b2bc37 2022-10-23 stsp if (imsg_add(wbuf, &iref, sizeof(iref)) == -1)
1556 13b2bc37 2022-10-23 stsp return got_error_from_errno("imsg_add REF_UPDATE");
1557 13b2bc37 2022-10-23 stsp if (imsg_add(wbuf, refname, iref.name_len) == -1)
1558 13b2bc37 2022-10-23 stsp return got_error_from_errno("imsg_add REF_UPDATE");
1559 13b2bc37 2022-10-23 stsp
1560 13b2bc37 2022-10-23 stsp wbuf->fd = -1;
1561 13b2bc37 2022-10-23 stsp imsg_close(&iev->ibuf, wbuf);
1562 13b2bc37 2022-10-23 stsp
1563 13b2bc37 2022-10-23 stsp gotd_imsg_event_add(iev);
1564 13b2bc37 2022-10-23 stsp return NULL;
1565 13b2bc37 2022-10-23 stsp }
1566 13b2bc37 2022-10-23 stsp
1567 13b2bc37 2022-10-23 stsp static const struct got_error *
1568 1a52c9bf 2022-12-30 stsp update_refs(struct gotd_imsgev *iev)
1569 13b2bc37 2022-10-23 stsp {
1570 13b2bc37 2022-10-23 stsp const struct got_error *err = NULL;
1571 1a52c9bf 2022-12-30 stsp struct repo_write_client *client = &repo_write_client;
1572 13b2bc37 2022-10-23 stsp struct gotd_ref_update *ref_update;
1573 13b2bc37 2022-10-23 stsp
1574 1a52c9bf 2022-12-30 stsp err = send_ref_updates_start(client->nref_updates, iev);
1575 13b2bc37 2022-10-23 stsp if (err)
1576 13b2bc37 2022-10-23 stsp return err;
1577 13b2bc37 2022-10-23 stsp
1578 13b2bc37 2022-10-23 stsp STAILQ_FOREACH(ref_update, &client->ref_updates, entry) {
1579 1a52c9bf 2022-12-30 stsp err = send_ref_update(ref_update, iev);
1580 13b2bc37 2022-10-23 stsp if (err)
1581 13b2bc37 2022-10-23 stsp goto done;
1582 13b2bc37 2022-10-23 stsp }
1583 13b2bc37 2022-10-23 stsp done:
1584 13b2bc37 2022-10-23 stsp return err;
1585 13b2bc37 2022-10-23 stsp }
1586 13b2bc37 2022-10-23 stsp
1587 13b2bc37 2022-10-23 stsp static const struct got_error *
1588 1a52c9bf 2022-12-30 stsp receive_pack_pipe(struct imsg *imsg, struct gotd_imsgev *iev)
1589 13b2bc37 2022-10-23 stsp {
1590 1a52c9bf 2022-12-30 stsp struct repo_write_client *client = &repo_write_client;
1591 13b2bc37 2022-10-23 stsp struct gotd_imsg_packfile_pipe ireq;
1592 13b2bc37 2022-10-23 stsp size_t datalen;
1593 13b2bc37 2022-10-23 stsp
1594 9cbac887 2023-04-20 stsp log_debug("receiving pack pipe descriptor");
1595 13b2bc37 2022-10-23 stsp
1596 13b2bc37 2022-10-23 stsp if (imsg->fd == -1)
1597 13b2bc37 2022-10-23 stsp return got_error(GOT_ERR_PRIVSEP_NO_FD);
1598 13b2bc37 2022-10-23 stsp
1599 13b2bc37 2022-10-23 stsp datalen = imsg->hdr.len - IMSG_HEADER_SIZE;
1600 13b2bc37 2022-10-23 stsp if (datalen != sizeof(ireq))
1601 13b2bc37 2022-10-23 stsp return got_error(GOT_ERR_PRIVSEP_LEN);
1602 13b2bc37 2022-10-23 stsp memcpy(&ireq, imsg->data, sizeof(ireq));
1603 13b2bc37 2022-10-23 stsp
1604 1a52c9bf 2022-12-30 stsp if (client->pack_pipe != -1)
1605 13b2bc37 2022-10-23 stsp return got_error(GOT_ERR_PRIVSEP_MSG);
1606 13b2bc37 2022-10-23 stsp
1607 1a52c9bf 2022-12-30 stsp client->pack_pipe = imsg->fd;
1608 13b2bc37 2022-10-23 stsp return NULL;
1609 13b2bc37 2022-10-23 stsp }
1610 13b2bc37 2022-10-23 stsp
1611 13b2bc37 2022-10-23 stsp static const struct got_error *
1612 1a52c9bf 2022-12-30 stsp receive_pack_idx(struct imsg *imsg, struct gotd_imsgev *iev)
1613 13b2bc37 2022-10-23 stsp {
1614 1a52c9bf 2022-12-30 stsp struct repo_write_client *client = &repo_write_client;
1615 13b2bc37 2022-10-23 stsp struct gotd_imsg_packidx_file ireq;
1616 13b2bc37 2022-10-23 stsp size_t datalen;
1617 13b2bc37 2022-10-23 stsp
1618 9cbac887 2023-04-20 stsp log_debug("receiving pack index output file");
1619 13b2bc37 2022-10-23 stsp
1620 13b2bc37 2022-10-23 stsp if (imsg->fd == -1)
1621 13b2bc37 2022-10-23 stsp return got_error(GOT_ERR_PRIVSEP_NO_FD);
1622 13b2bc37 2022-10-23 stsp
1623 13b2bc37 2022-10-23 stsp datalen = imsg->hdr.len - IMSG_HEADER_SIZE;
1624 13b2bc37 2022-10-23 stsp if (datalen != sizeof(ireq))
1625 13b2bc37 2022-10-23 stsp return got_error(GOT_ERR_PRIVSEP_LEN);
1626 13b2bc37 2022-10-23 stsp memcpy(&ireq, imsg->data, sizeof(ireq));
1627 13b2bc37 2022-10-23 stsp
1628 1a52c9bf 2022-12-30 stsp if (client->packidx_fd != -1)
1629 13b2bc37 2022-10-23 stsp return got_error(GOT_ERR_PRIVSEP_MSG);
1630 13b2bc37 2022-10-23 stsp
1631 1a52c9bf 2022-12-30 stsp client->packidx_fd = imsg->fd;
1632 13b2bc37 2022-10-23 stsp return NULL;
1633 13b2bc37 2022-10-23 stsp }
1634 13b2bc37 2022-10-23 stsp
1635 13b2bc37 2022-10-23 stsp static void
1636 ae7c1b78 2023-01-10 stsp repo_write_dispatch_session(int fd, short event, void *arg)
1637 13b2bc37 2022-10-23 stsp {
1638 13b2bc37 2022-10-23 stsp const struct got_error *err = NULL;
1639 13b2bc37 2022-10-23 stsp struct gotd_imsgev *iev = arg;
1640 13b2bc37 2022-10-23 stsp struct imsgbuf *ibuf = &iev->ibuf;
1641 13b2bc37 2022-10-23 stsp struct imsg imsg;
1642 1a52c9bf 2022-12-30 stsp struct repo_write_client *client = &repo_write_client;
1643 13b2bc37 2022-10-23 stsp ssize_t n;
1644 0ff2c315 2023-01-18 stsp int shut = 0, have_packfile = 0;
1645 13b2bc37 2022-10-23 stsp
1646 13b2bc37 2022-10-23 stsp if (event & EV_READ) {
1647 13b2bc37 2022-10-23 stsp if ((n = imsg_read(ibuf)) == -1 && errno != EAGAIN)
1648 13b2bc37 2022-10-23 stsp fatal("imsg_read error");
1649 13b2bc37 2022-10-23 stsp if (n == 0) /* Connection closed. */
1650 13b2bc37 2022-10-23 stsp shut = 1;
1651 13b2bc37 2022-10-23 stsp }
1652 13b2bc37 2022-10-23 stsp
1653 13b2bc37 2022-10-23 stsp if (event & EV_WRITE) {
1654 13b2bc37 2022-10-23 stsp n = msgbuf_write(&ibuf->w);
1655 13b2bc37 2022-10-23 stsp if (n == -1 && errno != EAGAIN)
1656 13b2bc37 2022-10-23 stsp fatal("msgbuf_write");
1657 13b2bc37 2022-10-23 stsp if (n == 0) /* Connection closed. */
1658 13b2bc37 2022-10-23 stsp shut = 1;
1659 13b2bc37 2022-10-23 stsp }
1660 13b2bc37 2022-10-23 stsp
1661 13b2bc37 2022-10-23 stsp for (;;) {
1662 13b2bc37 2022-10-23 stsp if ((n = imsg_get(ibuf, &imsg)) == -1)
1663 13b2bc37 2022-10-23 stsp fatal("%s: imsg_get error", __func__);
1664 13b2bc37 2022-10-23 stsp if (n == 0) /* No more messages. */
1665 13b2bc37 2022-10-23 stsp break;
1666 13b2bc37 2022-10-23 stsp
1667 1a52c9bf 2022-12-30 stsp if (imsg.hdr.type != GOTD_IMSG_LIST_REFS_INTERNAL &&
1668 1a52c9bf 2022-12-30 stsp client->id == 0) {
1669 1a52c9bf 2022-12-30 stsp err = got_error(GOT_ERR_PRIVSEP_MSG);
1670 1a52c9bf 2022-12-30 stsp break;
1671 1a52c9bf 2022-12-30 stsp }
1672 1a52c9bf 2022-12-30 stsp
1673 13b2bc37 2022-10-23 stsp switch (imsg.hdr.type) {
1674 13b2bc37 2022-10-23 stsp case GOTD_IMSG_LIST_REFS_INTERNAL:
1675 1a52c9bf 2022-12-30 stsp err = list_refs(&imsg);
1676 13b2bc37 2022-10-23 stsp if (err)
1677 88f6dccd 2023-03-04 op log_warnx("ls-refs: %s", err->msg);
1678 13b2bc37 2022-10-23 stsp break;
1679 13b2bc37 2022-10-23 stsp case GOTD_IMSG_REF_UPDATE:
1680 1a52c9bf 2022-12-30 stsp err = recv_ref_update(&imsg);
1681 13b2bc37 2022-10-23 stsp if (err)
1682 88f6dccd 2023-03-04 op log_warnx("ref-update: %s", err->msg);
1683 13b2bc37 2022-10-23 stsp break;
1684 13b2bc37 2022-10-23 stsp case GOTD_IMSG_PACKFILE_PIPE:
1685 1a52c9bf 2022-12-30 stsp err = receive_pack_pipe(&imsg, iev);
1686 13b2bc37 2022-10-23 stsp if (err) {
1687 88f6dccd 2023-03-04 op log_warnx("receiving pack pipe: %s", err->msg);
1688 13b2bc37 2022-10-23 stsp break;
1689 13b2bc37 2022-10-23 stsp }
1690 13b2bc37 2022-10-23 stsp break;
1691 13b2bc37 2022-10-23 stsp case GOTD_IMSG_PACKIDX_FILE:
1692 1a52c9bf 2022-12-30 stsp err = receive_pack_idx(&imsg, iev);
1693 13b2bc37 2022-10-23 stsp if (err) {
1694 88f6dccd 2023-03-04 op log_warnx("receiving pack index: %s",
1695 88f6dccd 2023-03-04 op err->msg);
1696 13b2bc37 2022-10-23 stsp break;
1697 13b2bc37 2022-10-23 stsp }
1698 13b2bc37 2022-10-23 stsp break;
1699 13b2bc37 2022-10-23 stsp case GOTD_IMSG_RECV_PACKFILE:
1700 9afa3de2 2023-04-04 stsp err = protect_refs_from_deletion();
1701 9afa3de2 2023-04-04 stsp if (err)
1702 9afa3de2 2023-04-04 stsp break;
1703 0ff2c315 2023-01-18 stsp err = recv_packfile(&have_packfile, &imsg);
1704 13b2bc37 2022-10-23 stsp if (err) {
1705 88f6dccd 2023-03-04 op log_warnx("receive packfile: %s", err->msg);
1706 13b2bc37 2022-10-23 stsp break;
1707 13b2bc37 2022-10-23 stsp }
1708 0ff2c315 2023-01-18 stsp if (have_packfile) {
1709 0ff2c315 2023-01-18 stsp err = verify_packfile();
1710 0ff2c315 2023-01-18 stsp if (err) {
1711 88f6dccd 2023-03-04 op log_warnx("verify packfile: %s",
1712 88f6dccd 2023-03-04 op err->msg);
1713 0ff2c315 2023-01-18 stsp break;
1714 0ff2c315 2023-01-18 stsp }
1715 0ff2c315 2023-01-18 stsp err = install_packfile(iev);
1716 0ff2c315 2023-01-18 stsp if (err) {
1717 88f6dccd 2023-03-04 op log_warnx("install packfile: %s",
1718 88f6dccd 2023-03-04 op err->msg);
1719 0ff2c315 2023-01-18 stsp break;
1720 0ff2c315 2023-01-18 stsp }
1721 13b2bc37 2022-10-23 stsp }
1722 1a52c9bf 2022-12-30 stsp err = update_refs(iev);
1723 13b2bc37 2022-10-23 stsp if (err) {
1724 88f6dccd 2023-03-04 op log_warnx("update refs: %s", err->msg);
1725 13b2bc37 2022-10-23 stsp }
1726 13b2bc37 2022-10-23 stsp break;
1727 ae7c1b78 2023-01-10 stsp default:
1728 88f6dccd 2023-03-04 op log_debug("unexpected imsg %d", imsg.hdr.type);
1729 ae7c1b78 2023-01-10 stsp break;
1730 ae7c1b78 2023-01-10 stsp }
1731 ae7c1b78 2023-01-10 stsp
1732 ae7c1b78 2023-01-10 stsp imsg_free(&imsg);
1733 ae7c1b78 2023-01-10 stsp }
1734 ae7c1b78 2023-01-10 stsp
1735 ae7c1b78 2023-01-10 stsp if (!shut && check_cancelled(NULL) == NULL) {
1736 ae7c1b78 2023-01-10 stsp if (err &&
1737 ae7c1b78 2023-01-10 stsp gotd_imsg_send_error_event(iev, PROC_REPO_WRITE,
1738 ae7c1b78 2023-01-10 stsp client->id, err) == -1) {
1739 ae7c1b78 2023-01-10 stsp log_warnx("could not send error to parent: %s",
1740 ae7c1b78 2023-01-10 stsp err->msg);
1741 ae7c1b78 2023-01-10 stsp }
1742 ae7c1b78 2023-01-10 stsp gotd_imsg_event_add(iev);
1743 ae7c1b78 2023-01-10 stsp } else {
1744 ae7c1b78 2023-01-10 stsp /* This pipe is dead. Remove its event handler */
1745 ae7c1b78 2023-01-10 stsp event_del(&iev->ev);
1746 ae7c1b78 2023-01-10 stsp event_loopexit(NULL);
1747 ae7c1b78 2023-01-10 stsp }
1748 ae7c1b78 2023-01-10 stsp }
1749 ae7c1b78 2023-01-10 stsp
1750 ae7c1b78 2023-01-10 stsp static const struct got_error *
1751 ae7c1b78 2023-01-10 stsp recv_connect(struct imsg *imsg)
1752 ae7c1b78 2023-01-10 stsp {
1753 ae7c1b78 2023-01-10 stsp struct gotd_imsgev *iev = &repo_write.session_iev;
1754 ae7c1b78 2023-01-10 stsp size_t datalen;
1755 ae7c1b78 2023-01-10 stsp
1756 ae7c1b78 2023-01-10 stsp datalen = imsg->hdr.len - IMSG_HEADER_SIZE;
1757 ae7c1b78 2023-01-10 stsp if (datalen != 0)
1758 ae7c1b78 2023-01-10 stsp return got_error(GOT_ERR_PRIVSEP_LEN);
1759 ae7c1b78 2023-01-10 stsp if (imsg->fd == -1)
1760 ae7c1b78 2023-01-10 stsp return got_error(GOT_ERR_PRIVSEP_NO_FD);
1761 ae7c1b78 2023-01-10 stsp
1762 ae7c1b78 2023-01-10 stsp if (repo_write.session_fd != -1)
1763 ae7c1b78 2023-01-10 stsp return got_error(GOT_ERR_PRIVSEP_MSG);
1764 ae7c1b78 2023-01-10 stsp
1765 ae7c1b78 2023-01-10 stsp repo_write.session_fd = imsg->fd;
1766 ae7c1b78 2023-01-10 stsp
1767 ae7c1b78 2023-01-10 stsp imsg_init(&iev->ibuf, repo_write.session_fd);
1768 ae7c1b78 2023-01-10 stsp iev->handler = repo_write_dispatch_session;
1769 ae7c1b78 2023-01-10 stsp iev->events = EV_READ;
1770 ae7c1b78 2023-01-10 stsp iev->handler_arg = NULL;
1771 ae7c1b78 2023-01-10 stsp event_set(&iev->ev, iev->ibuf.fd, EV_READ,
1772 ae7c1b78 2023-01-10 stsp repo_write_dispatch_session, iev);
1773 ae7c1b78 2023-01-10 stsp gotd_imsg_event_add(iev);
1774 ae7c1b78 2023-01-10 stsp
1775 ae7c1b78 2023-01-10 stsp return NULL;
1776 ae7c1b78 2023-01-10 stsp }
1777 ae7c1b78 2023-01-10 stsp
1778 ae7c1b78 2023-01-10 stsp static void
1779 ae7c1b78 2023-01-10 stsp repo_write_dispatch(int fd, short event, void *arg)
1780 ae7c1b78 2023-01-10 stsp {
1781 ae7c1b78 2023-01-10 stsp const struct got_error *err = NULL;
1782 ae7c1b78 2023-01-10 stsp struct gotd_imsgev *iev = arg;
1783 ae7c1b78 2023-01-10 stsp struct imsgbuf *ibuf = &iev->ibuf;
1784 ae7c1b78 2023-01-10 stsp struct imsg imsg;
1785 ae7c1b78 2023-01-10 stsp ssize_t n;
1786 ae7c1b78 2023-01-10 stsp int shut = 0;
1787 ae7c1b78 2023-01-10 stsp struct repo_write_client *client = &repo_write_client;
1788 ae7c1b78 2023-01-10 stsp
1789 ae7c1b78 2023-01-10 stsp if (event & EV_READ) {
1790 ae7c1b78 2023-01-10 stsp if ((n = imsg_read(ibuf)) == -1 && errno != EAGAIN)
1791 ae7c1b78 2023-01-10 stsp fatal("imsg_read error");
1792 ae7c1b78 2023-01-10 stsp if (n == 0) /* Connection closed. */
1793 1a52c9bf 2022-12-30 stsp shut = 1;
1794 ae7c1b78 2023-01-10 stsp }
1795 ae7c1b78 2023-01-10 stsp
1796 ae7c1b78 2023-01-10 stsp if (event & EV_WRITE) {
1797 ae7c1b78 2023-01-10 stsp n = msgbuf_write(&ibuf->w);
1798 ae7c1b78 2023-01-10 stsp if (n == -1 && errno != EAGAIN)
1799 ae7c1b78 2023-01-10 stsp fatal("msgbuf_write");
1800 ae7c1b78 2023-01-10 stsp if (n == 0) /* Connection closed. */
1801 ae7c1b78 2023-01-10 stsp shut = 1;
1802 ae7c1b78 2023-01-10 stsp }
1803 ae7c1b78 2023-01-10 stsp
1804 ae7c1b78 2023-01-10 stsp while (err == NULL && check_cancelled(NULL) == NULL) {
1805 ae7c1b78 2023-01-10 stsp if ((n = imsg_get(ibuf, &imsg)) == -1)
1806 ae7c1b78 2023-01-10 stsp fatal("%s: imsg_get", __func__);
1807 ae7c1b78 2023-01-10 stsp if (n == 0) /* No more messages. */
1808 13b2bc37 2022-10-23 stsp break;
1809 ae7c1b78 2023-01-10 stsp
1810 ae7c1b78 2023-01-10 stsp switch (imsg.hdr.type) {
1811 ae7c1b78 2023-01-10 stsp case GOTD_IMSG_CONNECT_REPO_CHILD:
1812 ae7c1b78 2023-01-10 stsp err = recv_connect(&imsg);
1813 ae7c1b78 2023-01-10 stsp break;
1814 13b2bc37 2022-10-23 stsp default:
1815 88f6dccd 2023-03-04 op log_debug("unexpected imsg %d", imsg.hdr.type);
1816 13b2bc37 2022-10-23 stsp break;
1817 13b2bc37 2022-10-23 stsp }
1818 13b2bc37 2022-10-23 stsp
1819 13b2bc37 2022-10-23 stsp imsg_free(&imsg);
1820 13b2bc37 2022-10-23 stsp }
1821 13b2bc37 2022-10-23 stsp
1822 13b2bc37 2022-10-23 stsp if (!shut && check_cancelled(NULL) == NULL) {
1823 13b2bc37 2022-10-23 stsp if (err &&
1824 13b2bc37 2022-10-23 stsp gotd_imsg_send_error_event(iev, PROC_REPO_WRITE,
1825 1a52c9bf 2022-12-30 stsp client->id, err) == -1) {
1826 13b2bc37 2022-10-23 stsp log_warnx("could not send error to parent: %s",
1827 13b2bc37 2022-10-23 stsp err->msg);
1828 13b2bc37 2022-10-23 stsp }
1829 13b2bc37 2022-10-23 stsp gotd_imsg_event_add(iev);
1830 13b2bc37 2022-10-23 stsp } else {
1831 13b2bc37 2022-10-23 stsp /* This pipe is dead. Remove its event handler */
1832 13b2bc37 2022-10-23 stsp event_del(&iev->ev);
1833 13b2bc37 2022-10-23 stsp event_loopexit(NULL);
1834 13b2bc37 2022-10-23 stsp }
1835 13b2bc37 2022-10-23 stsp }
1836 13b2bc37 2022-10-23 stsp
1837 13b2bc37 2022-10-23 stsp void
1838 eec68231 2022-12-14 stsp repo_write_main(const char *title, const char *repo_path,
1839 9afa3de2 2023-04-04 stsp int *pack_fds, int *temp_fds,
1840 9afa3de2 2023-04-04 stsp struct got_pathlist_head *protected_tag_namespaces,
1841 9afa3de2 2023-04-04 stsp struct got_pathlist_head *protected_branch_namespaces,
1842 9afa3de2 2023-04-04 stsp struct got_pathlist_head *protected_branches)
1843 13b2bc37 2022-10-23 stsp {
1844 13b2bc37 2022-10-23 stsp const struct got_error *err = NULL;
1845 363c6230 2023-02-09 stsp struct repo_write_client *client = &repo_write_client;
1846 13b2bc37 2022-10-23 stsp struct gotd_imsgev iev;
1847 13b2bc37 2022-10-23 stsp
1848 363c6230 2023-02-09 stsp client->fd = -1;
1849 363c6230 2023-02-09 stsp client->pack_pipe = -1;
1850 363c6230 2023-02-09 stsp client->packidx_fd = -1;
1851 363c6230 2023-02-09 stsp client->pack.fd = -1;
1852 363c6230 2023-02-09 stsp
1853 13b2bc37 2022-10-23 stsp repo_write.title = title;
1854 13b2bc37 2022-10-23 stsp repo_write.pid = getpid();
1855 13b2bc37 2022-10-23 stsp repo_write.pack_fds = pack_fds;
1856 13b2bc37 2022-10-23 stsp repo_write.temp_fds = temp_fds;
1857 ae7c1b78 2023-01-10 stsp repo_write.session_fd = -1;
1858 ae7c1b78 2023-01-10 stsp repo_write.session_iev.ibuf.fd = -1;
1859 9afa3de2 2023-04-04 stsp repo_write.protected_tag_namespaces = protected_tag_namespaces;
1860 9afa3de2 2023-04-04 stsp repo_write.protected_branch_namespaces = protected_branch_namespaces;
1861 9afa3de2 2023-04-04 stsp repo_write.protected_branches = protected_branches;
1862 13b2bc37 2022-10-23 stsp
1863 1a52c9bf 2022-12-30 stsp STAILQ_INIT(&repo_write_client.ref_updates);
1864 13b2bc37 2022-10-23 stsp
1865 eec68231 2022-12-14 stsp err = got_repo_open(&repo_write.repo, repo_path, NULL, pack_fds);
1866 13b2bc37 2022-10-23 stsp if (err)
1867 13b2bc37 2022-10-23 stsp goto done;
1868 13b2bc37 2022-10-23 stsp if (!got_repo_is_bare(repo_write.repo)) {
1869 13b2bc37 2022-10-23 stsp err = got_error_msg(GOT_ERR_NOT_GIT_REPO,
1870 13b2bc37 2022-10-23 stsp "bare git repository required");
1871 13b2bc37 2022-10-23 stsp goto done;
1872 13b2bc37 2022-10-23 stsp }
1873 13b2bc37 2022-10-23 stsp
1874 13b2bc37 2022-10-23 stsp got_repo_temp_fds_set(repo_write.repo, temp_fds);
1875 13b2bc37 2022-10-23 stsp
1876 13b2bc37 2022-10-23 stsp signal(SIGINT, catch_sigint);
1877 13b2bc37 2022-10-23 stsp signal(SIGTERM, catch_sigterm);
1878 13b2bc37 2022-10-23 stsp signal(SIGPIPE, SIG_IGN);
1879 13b2bc37 2022-10-23 stsp signal(SIGHUP, SIG_IGN);
1880 13b2bc37 2022-10-23 stsp
1881 8c6fc146 2022-11-17 stsp imsg_init(&iev.ibuf, GOTD_FILENO_MSG_PIPE);
1882 13b2bc37 2022-10-23 stsp iev.handler = repo_write_dispatch;
1883 13b2bc37 2022-10-23 stsp iev.events = EV_READ;
1884 13b2bc37 2022-10-23 stsp iev.handler_arg = NULL;
1885 13b2bc37 2022-10-23 stsp event_set(&iev.ev, iev.ibuf.fd, EV_READ, repo_write_dispatch, &iev);
1886 b50a2b46 2022-12-29 stsp if (gotd_imsg_compose_event(&iev, GOTD_IMSG_REPO_CHILD_READY,
1887 b50a2b46 2022-12-29 stsp PROC_REPO_WRITE, -1, NULL, 0) == -1) {
1888 b50a2b46 2022-12-29 stsp err = got_error_from_errno("imsg compose REPO_CHILD_READY");
1889 13b2bc37 2022-10-23 stsp goto done;
1890 13b2bc37 2022-10-23 stsp }
1891 13b2bc37 2022-10-23 stsp
1892 13b2bc37 2022-10-23 stsp event_dispatch();
1893 13b2bc37 2022-10-23 stsp done:
1894 13b2bc37 2022-10-23 stsp if (err)
1895 13b2bc37 2022-10-23 stsp log_warnx("%s: %s", title, err->msg);
1896 13b2bc37 2022-10-23 stsp repo_write_shutdown();
1897 13b2bc37 2022-10-23 stsp }
1898 13b2bc37 2022-10-23 stsp
1899 13b2bc37 2022-10-23 stsp void
1900 13b2bc37 2022-10-23 stsp repo_write_shutdown(void)
1901 13b2bc37 2022-10-23 stsp {
1902 363c6230 2023-02-09 stsp struct repo_write_client *client = &repo_write_client;
1903 363c6230 2023-02-09 stsp struct gotd_ref_update *ref_update;
1904 363c6230 2023-02-09 stsp
1905 4f8a1204 2023-03-04 op log_debug("shutting down");
1906 363c6230 2023-02-09 stsp
1907 363c6230 2023-02-09 stsp while (!STAILQ_EMPTY(&client->ref_updates)) {
1908 363c6230 2023-02-09 stsp ref_update = STAILQ_FIRST(&client->ref_updates);
1909 363c6230 2023-02-09 stsp STAILQ_REMOVE_HEAD(&client->ref_updates, entry);
1910 363c6230 2023-02-09 stsp got_ref_close(ref_update->ref);
1911 363c6230 2023-02-09 stsp free(ref_update);
1912 363c6230 2023-02-09 stsp }
1913 363c6230 2023-02-09 stsp
1914 363c6230 2023-02-09 stsp got_pack_close(&client->pack);
1915 363c6230 2023-02-09 stsp if (client->fd != -1)
1916 363c6230 2023-02-09 stsp close(client->fd);
1917 363c6230 2023-02-09 stsp if (client->pack_pipe != -1)
1918 363c6230 2023-02-09 stsp close(client->pack_pipe);
1919 363c6230 2023-02-09 stsp if (client->packidx_fd != -1)
1920 363c6230 2023-02-09 stsp close(client->packidx_fd);
1921 363c6230 2023-02-09 stsp
1922 13b2bc37 2022-10-23 stsp if (repo_write.repo)
1923 13b2bc37 2022-10-23 stsp got_repo_close(repo_write.repo);
1924 13b2bc37 2022-10-23 stsp got_repo_pack_fds_close(repo_write.pack_fds);
1925 8193d041 2022-10-30 stsp got_repo_temp_fds_close(repo_write.temp_fds);
1926 ae7c1b78 2023-01-10 stsp if (repo_write.session_fd != -1)
1927 ae7c1b78 2023-01-10 stsp close(repo_write.session_fd);
1928 13b2bc37 2022-10-23 stsp exit(0);
1929 13b2bc37 2022-10-23 stsp }