Blame


1 ae7c1b78 2023-01-10 stsp /*
2 ae7c1b78 2023-01-10 stsp * Copyright (c) 2022, 2023 Stefan Sperling <stsp@openbsd.org>
3 ae7c1b78 2023-01-10 stsp *
4 ae7c1b78 2023-01-10 stsp * Permission to use, copy, modify, and distribute this software for any
5 ae7c1b78 2023-01-10 stsp * purpose with or without fee is hereby granted, provided that the above
6 ae7c1b78 2023-01-10 stsp * copyright notice and this permission notice appear in all copies.
7 ae7c1b78 2023-01-10 stsp *
8 ae7c1b78 2023-01-10 stsp * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 ae7c1b78 2023-01-10 stsp * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 ae7c1b78 2023-01-10 stsp * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 ae7c1b78 2023-01-10 stsp * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 ae7c1b78 2023-01-10 stsp * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 ae7c1b78 2023-01-10 stsp * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 ae7c1b78 2023-01-10 stsp * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 ae7c1b78 2023-01-10 stsp */
16 ae7c1b78 2023-01-10 stsp
17 ae7c1b78 2023-01-10 stsp #include <sys/types.h>
18 ae7c1b78 2023-01-10 stsp #include <sys/queue.h>
19 ae7c1b78 2023-01-10 stsp #include <sys/tree.h>
20 ae7c1b78 2023-01-10 stsp #include <sys/socket.h>
21 839bbaae 2023-02-01 op #include <sys/stat.h>
22 ae7c1b78 2023-01-10 stsp #include <sys/uio.h>
23 ae7c1b78 2023-01-10 stsp
24 ae7c1b78 2023-01-10 stsp #include <errno.h>
25 ae7c1b78 2023-01-10 stsp #include <event.h>
26 ae7c1b78 2023-01-10 stsp #include <limits.h>
27 ae7c1b78 2023-01-10 stsp #include <sha1.h>
28 5822e79e 2023-02-23 op #include <sha2.h>
29 ae7c1b78 2023-01-10 stsp #include <signal.h>
30 ae7c1b78 2023-01-10 stsp #include <stdint.h>
31 ae7c1b78 2023-01-10 stsp #include <stdio.h>
32 ae7c1b78 2023-01-10 stsp #include <stdlib.h>
33 ae7c1b78 2023-01-10 stsp #include <string.h>
34 ae7c1b78 2023-01-10 stsp #include <imsg.h>
35 ae7c1b78 2023-01-10 stsp #include <unistd.h>
36 ae7c1b78 2023-01-10 stsp
37 ae7c1b78 2023-01-10 stsp #include "got_error.h"
38 ae7c1b78 2023-01-10 stsp #include "got_repository.h"
39 ae7c1b78 2023-01-10 stsp #include "got_object.h"
40 ae7c1b78 2023-01-10 stsp #include "got_path.h"
41 ae7c1b78 2023-01-10 stsp #include "got_reference.h"
42 ae7c1b78 2023-01-10 stsp #include "got_opentemp.h"
43 ae7c1b78 2023-01-10 stsp
44 53bf0b54 2023-02-23 op #include "got_lib_hash.h"
45 ae7c1b78 2023-01-10 stsp #include "got_lib_delta.h"
46 ae7c1b78 2023-01-10 stsp #include "got_lib_object.h"
47 ae7c1b78 2023-01-10 stsp #include "got_lib_object_cache.h"
48 ae7c1b78 2023-01-10 stsp #include "got_lib_pack.h"
49 ae7c1b78 2023-01-10 stsp #include "got_lib_repository.h"
50 ae7c1b78 2023-01-10 stsp #include "got_lib_gitproto.h"
51 ae7c1b78 2023-01-10 stsp
52 ae7c1b78 2023-01-10 stsp #include "gotd.h"
53 ae7c1b78 2023-01-10 stsp #include "log.h"
54 ae7c1b78 2023-01-10 stsp #include "session.h"
55 ae7c1b78 2023-01-10 stsp
56 ae7c1b78 2023-01-10 stsp
57 ae7c1b78 2023-01-10 stsp static struct gotd_session {
58 ae7c1b78 2023-01-10 stsp pid_t pid;
59 ae7c1b78 2023-01-10 stsp const char *title;
60 ae7c1b78 2023-01-10 stsp struct got_repository *repo;
61 ae7c1b78 2023-01-10 stsp int *pack_fds;
62 ae7c1b78 2023-01-10 stsp int *temp_fds;
63 ae7c1b78 2023-01-10 stsp struct gotd_imsgev parent_iev;
64 ae7c1b78 2023-01-10 stsp struct timeval request_timeout;
65 b0614828 2023-06-19 stsp enum gotd_procid proc_id;
66 ae7c1b78 2023-01-10 stsp } gotd_session;
67 ae7c1b78 2023-01-10 stsp
68 ae7c1b78 2023-01-10 stsp static struct gotd_session_client {
69 eac23c30 2023-01-10 stsp enum gotd_session_state state;
70 ae7c1b78 2023-01-10 stsp int is_writing;
71 ae7c1b78 2023-01-10 stsp struct gotd_client_capability *capabilities;
72 ae7c1b78 2023-01-10 stsp size_t ncapa_alloc;
73 ae7c1b78 2023-01-10 stsp size_t ncapabilities;
74 ae7c1b78 2023-01-10 stsp uint32_t id;
75 ae7c1b78 2023-01-10 stsp int fd;
76 ae7c1b78 2023-01-10 stsp int delta_cache_fd;
77 ae7c1b78 2023-01-10 stsp struct gotd_imsgev iev;
78 ae7c1b78 2023-01-10 stsp struct gotd_imsgev repo_child_iev;
79 ae7c1b78 2023-01-10 stsp struct event tmo;
80 ae7c1b78 2023-01-10 stsp uid_t euid;
81 ae7c1b78 2023-01-10 stsp gid_t egid;
82 ae7c1b78 2023-01-10 stsp char *packfile_path;
83 ae7c1b78 2023-01-10 stsp char *packidx_path;
84 ae7c1b78 2023-01-10 stsp int nref_updates;
85 3448a19a 2023-01-21 stsp int accept_flush_pkt;
86 808264b2 2023-08-22 stsp int flush_disconnect;
87 ae7c1b78 2023-01-10 stsp } gotd_session_client;
88 ae7c1b78 2023-01-10 stsp
89 ae7c1b78 2023-01-10 stsp void gotd_session_sighdlr(int sig, short event, void *arg);
90 ae7c1b78 2023-01-10 stsp static void gotd_session_shutdown(void);
91 ae7c1b78 2023-01-10 stsp
92 ae7c1b78 2023-01-10 stsp static void
93 ae7c1b78 2023-01-10 stsp disconnect(struct gotd_session_client *client)
94 ae7c1b78 2023-01-10 stsp {
95 ae7c1b78 2023-01-10 stsp log_debug("uid %d: disconnecting", client->euid);
96 ae7c1b78 2023-01-10 stsp
97 ae7c1b78 2023-01-10 stsp if (gotd_imsg_compose_event(&gotd_session.parent_iev,
98 b0614828 2023-06-19 stsp GOTD_IMSG_DISCONNECT, gotd_session.proc_id, -1, NULL, 0) == -1)
99 ae7c1b78 2023-01-10 stsp log_warn("imsg compose DISCONNECT");
100 ae7c1b78 2023-01-10 stsp
101 ae7c1b78 2023-01-10 stsp imsg_clear(&client->repo_child_iev.ibuf);
102 ae7c1b78 2023-01-10 stsp event_del(&client->repo_child_iev.ev);
103 ae7c1b78 2023-01-10 stsp evtimer_del(&client->tmo);
104 ae7c1b78 2023-01-10 stsp close(client->fd);
105 ae7c1b78 2023-01-10 stsp if (client->delta_cache_fd != -1)
106 ae7c1b78 2023-01-10 stsp close(client->delta_cache_fd);
107 ae7c1b78 2023-01-10 stsp if (client->packfile_path) {
108 ae7c1b78 2023-01-10 stsp if (unlink(client->packfile_path) == -1 && errno != ENOENT)
109 ae7c1b78 2023-01-10 stsp log_warn("unlink %s: ", client->packfile_path);
110 ae7c1b78 2023-01-10 stsp free(client->packfile_path);
111 ae7c1b78 2023-01-10 stsp }
112 ae7c1b78 2023-01-10 stsp if (client->packidx_path) {
113 ae7c1b78 2023-01-10 stsp if (unlink(client->packidx_path) == -1 && errno != ENOENT)
114 ae7c1b78 2023-01-10 stsp log_warn("unlink %s: ", client->packidx_path);
115 ae7c1b78 2023-01-10 stsp free(client->packidx_path);
116 ae7c1b78 2023-01-10 stsp }
117 ae7c1b78 2023-01-10 stsp free(client->capabilities);
118 ae7c1b78 2023-01-10 stsp
119 ae7c1b78 2023-01-10 stsp gotd_session_shutdown();
120 ae7c1b78 2023-01-10 stsp }
121 ae7c1b78 2023-01-10 stsp
122 ae7c1b78 2023-01-10 stsp static void
123 ae7c1b78 2023-01-10 stsp disconnect_on_error(struct gotd_session_client *client,
124 ae7c1b78 2023-01-10 stsp const struct got_error *err)
125 ae7c1b78 2023-01-10 stsp {
126 ae7c1b78 2023-01-10 stsp struct imsgbuf ibuf;
127 ae7c1b78 2023-01-10 stsp
128 ae7c1b78 2023-01-10 stsp if (err->code != GOT_ERR_EOF) {
129 1050403b 2023-08-11 stsp log_warnx("uid %d: %s", client->euid, err->msg);
130 ae7c1b78 2023-01-10 stsp imsg_init(&ibuf, client->fd);
131 b0614828 2023-06-19 stsp gotd_imsg_send_error(&ibuf, 0, gotd_session.proc_id, err);
132 ae7c1b78 2023-01-10 stsp imsg_clear(&ibuf);
133 ae7c1b78 2023-01-10 stsp }
134 ae7c1b78 2023-01-10 stsp
135 ae7c1b78 2023-01-10 stsp disconnect(client);
136 ae7c1b78 2023-01-10 stsp }
137 ae7c1b78 2023-01-10 stsp
138 ae7c1b78 2023-01-10 stsp static void
139 ae7c1b78 2023-01-10 stsp gotd_request_timeout(int fd, short events, void *arg)
140 ae7c1b78 2023-01-10 stsp {
141 ae7c1b78 2023-01-10 stsp struct gotd_session_client *client = arg;
142 ae7c1b78 2023-01-10 stsp
143 ae7c1b78 2023-01-10 stsp log_debug("disconnecting uid %d due to timeout", client->euid);
144 ae7c1b78 2023-01-10 stsp disconnect(client);
145 ae7c1b78 2023-01-10 stsp }
146 ae7c1b78 2023-01-10 stsp
147 ae7c1b78 2023-01-10 stsp void
148 ae7c1b78 2023-01-10 stsp gotd_session_sighdlr(int sig, short event, void *arg)
149 ae7c1b78 2023-01-10 stsp {
150 ae7c1b78 2023-01-10 stsp /*
151 ae7c1b78 2023-01-10 stsp * Normal signal handler rules don't apply because libevent
152 ae7c1b78 2023-01-10 stsp * decouples for us.
153 ae7c1b78 2023-01-10 stsp */
154 ae7c1b78 2023-01-10 stsp
155 ae7c1b78 2023-01-10 stsp switch (sig) {
156 ae7c1b78 2023-01-10 stsp case SIGHUP:
157 ae7c1b78 2023-01-10 stsp log_info("%s: ignoring SIGHUP", __func__);
158 ae7c1b78 2023-01-10 stsp break;
159 ae7c1b78 2023-01-10 stsp case SIGUSR1:
160 ae7c1b78 2023-01-10 stsp log_info("%s: ignoring SIGUSR1", __func__);
161 ae7c1b78 2023-01-10 stsp break;
162 ae7c1b78 2023-01-10 stsp case SIGTERM:
163 ae7c1b78 2023-01-10 stsp case SIGINT:
164 ae7c1b78 2023-01-10 stsp gotd_session_shutdown();
165 ae7c1b78 2023-01-10 stsp /* NOTREACHED */
166 ae7c1b78 2023-01-10 stsp break;
167 ae7c1b78 2023-01-10 stsp default:
168 ae7c1b78 2023-01-10 stsp fatalx("unexpected signal");
169 ae7c1b78 2023-01-10 stsp }
170 ae7c1b78 2023-01-10 stsp }
171 ae7c1b78 2023-01-10 stsp
172 ae7c1b78 2023-01-10 stsp static const struct got_error *
173 ae7c1b78 2023-01-10 stsp recv_packfile_done(uint32_t *client_id, struct imsg *imsg)
174 ae7c1b78 2023-01-10 stsp {
175 ae7c1b78 2023-01-10 stsp struct gotd_imsg_packfile_done idone;
176 ae7c1b78 2023-01-10 stsp size_t datalen;
177 ae7c1b78 2023-01-10 stsp
178 ae7c1b78 2023-01-10 stsp log_debug("packfile-done received");
179 ae7c1b78 2023-01-10 stsp
180 ae7c1b78 2023-01-10 stsp datalen = imsg->hdr.len - IMSG_HEADER_SIZE;
181 ae7c1b78 2023-01-10 stsp if (datalen != sizeof(idone))
182 ae7c1b78 2023-01-10 stsp return got_error(GOT_ERR_PRIVSEP_LEN);
183 ae7c1b78 2023-01-10 stsp memcpy(&idone, imsg->data, sizeof(idone));
184 ae7c1b78 2023-01-10 stsp
185 ae7c1b78 2023-01-10 stsp *client_id = idone.client_id;
186 ae7c1b78 2023-01-10 stsp return NULL;
187 ae7c1b78 2023-01-10 stsp }
188 ae7c1b78 2023-01-10 stsp
189 ae7c1b78 2023-01-10 stsp static const struct got_error *
190 ae7c1b78 2023-01-10 stsp recv_packfile_install(uint32_t *client_id, struct imsg *imsg)
191 ae7c1b78 2023-01-10 stsp {
192 ae7c1b78 2023-01-10 stsp struct gotd_imsg_packfile_install inst;
193 ae7c1b78 2023-01-10 stsp size_t datalen;
194 ae7c1b78 2023-01-10 stsp
195 ae7c1b78 2023-01-10 stsp log_debug("packfile-install received");
196 ae7c1b78 2023-01-10 stsp
197 ae7c1b78 2023-01-10 stsp datalen = imsg->hdr.len - IMSG_HEADER_SIZE;
198 ae7c1b78 2023-01-10 stsp if (datalen != sizeof(inst))
199 ae7c1b78 2023-01-10 stsp return got_error(GOT_ERR_PRIVSEP_LEN);
200 ae7c1b78 2023-01-10 stsp memcpy(&inst, imsg->data, sizeof(inst));
201 ae7c1b78 2023-01-10 stsp
202 ae7c1b78 2023-01-10 stsp *client_id = inst.client_id;
203 ae7c1b78 2023-01-10 stsp return NULL;
204 ae7c1b78 2023-01-10 stsp }
205 ae7c1b78 2023-01-10 stsp
206 ae7c1b78 2023-01-10 stsp static const struct got_error *
207 ae7c1b78 2023-01-10 stsp recv_ref_updates_start(uint32_t *client_id, struct imsg *imsg)
208 ae7c1b78 2023-01-10 stsp {
209 ae7c1b78 2023-01-10 stsp struct gotd_imsg_ref_updates_start istart;
210 ae7c1b78 2023-01-10 stsp size_t datalen;
211 ae7c1b78 2023-01-10 stsp
212 ae7c1b78 2023-01-10 stsp log_debug("ref-updates-start received");
213 ae7c1b78 2023-01-10 stsp
214 ae7c1b78 2023-01-10 stsp datalen = imsg->hdr.len - IMSG_HEADER_SIZE;
215 ae7c1b78 2023-01-10 stsp if (datalen != sizeof(istart))
216 ae7c1b78 2023-01-10 stsp return got_error(GOT_ERR_PRIVSEP_LEN);
217 ae7c1b78 2023-01-10 stsp memcpy(&istart, imsg->data, sizeof(istart));
218 ae7c1b78 2023-01-10 stsp
219 ae7c1b78 2023-01-10 stsp *client_id = istart.client_id;
220 ae7c1b78 2023-01-10 stsp return NULL;
221 ae7c1b78 2023-01-10 stsp }
222 ae7c1b78 2023-01-10 stsp
223 ae7c1b78 2023-01-10 stsp static const struct got_error *
224 ae7c1b78 2023-01-10 stsp recv_ref_update(uint32_t *client_id, struct imsg *imsg)
225 ae7c1b78 2023-01-10 stsp {
226 ae7c1b78 2023-01-10 stsp struct gotd_imsg_ref_update iref;
227 ae7c1b78 2023-01-10 stsp size_t datalen;
228 ae7c1b78 2023-01-10 stsp
229 ae7c1b78 2023-01-10 stsp log_debug("ref-update received");
230 ae7c1b78 2023-01-10 stsp
231 ae7c1b78 2023-01-10 stsp datalen = imsg->hdr.len - IMSG_HEADER_SIZE;
232 ae7c1b78 2023-01-10 stsp if (datalen < sizeof(iref))
233 ae7c1b78 2023-01-10 stsp return got_error(GOT_ERR_PRIVSEP_LEN);
234 ae7c1b78 2023-01-10 stsp memcpy(&iref, imsg->data, sizeof(iref));
235 ae7c1b78 2023-01-10 stsp
236 ae7c1b78 2023-01-10 stsp *client_id = iref.client_id;
237 ae7c1b78 2023-01-10 stsp return NULL;
238 ae7c1b78 2023-01-10 stsp }
239 ae7c1b78 2023-01-10 stsp
240 ae7c1b78 2023-01-10 stsp static const struct got_error *
241 ae7c1b78 2023-01-10 stsp send_ref_update_ok(struct gotd_session_client *client,
242 ae7c1b78 2023-01-10 stsp struct gotd_imsg_ref_update *iref, const char *refname)
243 ae7c1b78 2023-01-10 stsp {
244 ae7c1b78 2023-01-10 stsp struct gotd_imsg_ref_update_ok iok;
245 ae7c1b78 2023-01-10 stsp struct gotd_imsgev *iev = &client->iev;
246 ae7c1b78 2023-01-10 stsp struct ibuf *wbuf;
247 ae7c1b78 2023-01-10 stsp size_t len;
248 ae7c1b78 2023-01-10 stsp
249 ae7c1b78 2023-01-10 stsp memset(&iok, 0, sizeof(iok));
250 ae7c1b78 2023-01-10 stsp iok.client_id = client->id;
251 ae7c1b78 2023-01-10 stsp memcpy(iok.old_id, iref->old_id, SHA1_DIGEST_LENGTH);
252 ae7c1b78 2023-01-10 stsp memcpy(iok.new_id, iref->new_id, SHA1_DIGEST_LENGTH);
253 ae7c1b78 2023-01-10 stsp iok.name_len = strlen(refname);
254 ae7c1b78 2023-01-10 stsp
255 ae7c1b78 2023-01-10 stsp len = sizeof(iok) + iok.name_len;
256 ae7c1b78 2023-01-10 stsp wbuf = imsg_create(&iev->ibuf, GOTD_IMSG_REF_UPDATE_OK,
257 b0614828 2023-06-19 stsp gotd_session.proc_id, gotd_session.pid, len);
258 ae7c1b78 2023-01-10 stsp if (wbuf == NULL)
259 ae7c1b78 2023-01-10 stsp return got_error_from_errno("imsg_create REF_UPDATE_OK");
260 ae7c1b78 2023-01-10 stsp
261 ae7c1b78 2023-01-10 stsp if (imsg_add(wbuf, &iok, sizeof(iok)) == -1)
262 ae7c1b78 2023-01-10 stsp return got_error_from_errno("imsg_add REF_UPDATE_OK");
263 ae7c1b78 2023-01-10 stsp if (imsg_add(wbuf, refname, iok.name_len) == -1)
264 ae7c1b78 2023-01-10 stsp return got_error_from_errno("imsg_add REF_UPDATE_OK");
265 ae7c1b78 2023-01-10 stsp
266 ae7c1b78 2023-01-10 stsp imsg_close(&iev->ibuf, wbuf);
267 ae7c1b78 2023-01-10 stsp gotd_imsg_event_add(iev);
268 ae7c1b78 2023-01-10 stsp return NULL;
269 ae7c1b78 2023-01-10 stsp }
270 ae7c1b78 2023-01-10 stsp
271 ae7c1b78 2023-01-10 stsp static void
272 ae7c1b78 2023-01-10 stsp send_refs_updated(struct gotd_session_client *client)
273 ae7c1b78 2023-01-10 stsp {
274 ae7c1b78 2023-01-10 stsp if (gotd_imsg_compose_event(&client->iev, GOTD_IMSG_REFS_UPDATED,
275 b0614828 2023-06-19 stsp gotd_session.proc_id, -1, NULL, 0) == -1)
276 ae7c1b78 2023-01-10 stsp log_warn("imsg compose REFS_UPDATED");
277 ae7c1b78 2023-01-10 stsp }
278 ae7c1b78 2023-01-10 stsp
279 ae7c1b78 2023-01-10 stsp static const struct got_error *
280 ae7c1b78 2023-01-10 stsp send_ref_update_ng(struct gotd_session_client *client,
281 ae7c1b78 2023-01-10 stsp struct gotd_imsg_ref_update *iref, const char *refname,
282 ae7c1b78 2023-01-10 stsp const char *reason)
283 ae7c1b78 2023-01-10 stsp {
284 ae7c1b78 2023-01-10 stsp const struct got_error *ng_err;
285 ae7c1b78 2023-01-10 stsp struct gotd_imsg_ref_update_ng ing;
286 ae7c1b78 2023-01-10 stsp struct gotd_imsgev *iev = &client->iev;
287 ae7c1b78 2023-01-10 stsp struct ibuf *wbuf;
288 ae7c1b78 2023-01-10 stsp size_t len;
289 ae7c1b78 2023-01-10 stsp
290 ae7c1b78 2023-01-10 stsp memset(&ing, 0, sizeof(ing));
291 ae7c1b78 2023-01-10 stsp ing.client_id = client->id;
292 ae7c1b78 2023-01-10 stsp memcpy(ing.old_id, iref->old_id, SHA1_DIGEST_LENGTH);
293 ae7c1b78 2023-01-10 stsp memcpy(ing.new_id, iref->new_id, SHA1_DIGEST_LENGTH);
294 ae7c1b78 2023-01-10 stsp ing.name_len = strlen(refname);
295 ae7c1b78 2023-01-10 stsp
296 ae7c1b78 2023-01-10 stsp ng_err = got_error_fmt(GOT_ERR_REF_BUSY, "%s", reason);
297 ae7c1b78 2023-01-10 stsp ing.reason_len = strlen(ng_err->msg);
298 ae7c1b78 2023-01-10 stsp
299 ae7c1b78 2023-01-10 stsp len = sizeof(ing) + ing.name_len + ing.reason_len;
300 ae7c1b78 2023-01-10 stsp wbuf = imsg_create(&iev->ibuf, GOTD_IMSG_REF_UPDATE_NG,
301 b0614828 2023-06-19 stsp gotd_session.proc_id, gotd_session.pid, len);
302 ae7c1b78 2023-01-10 stsp if (wbuf == NULL)
303 ae7c1b78 2023-01-10 stsp return got_error_from_errno("imsg_create REF_UPDATE_NG");
304 ae7c1b78 2023-01-10 stsp
305 ae7c1b78 2023-01-10 stsp if (imsg_add(wbuf, &ing, sizeof(ing)) == -1)
306 ae7c1b78 2023-01-10 stsp return got_error_from_errno("imsg_add REF_UPDATE_NG");
307 ae7c1b78 2023-01-10 stsp if (imsg_add(wbuf, refname, ing.name_len) == -1)
308 ae7c1b78 2023-01-10 stsp return got_error_from_errno("imsg_add REF_UPDATE_NG");
309 ae7c1b78 2023-01-10 stsp if (imsg_add(wbuf, ng_err->msg, ing.reason_len) == -1)
310 ae7c1b78 2023-01-10 stsp return got_error_from_errno("imsg_add REF_UPDATE_NG");
311 ae7c1b78 2023-01-10 stsp
312 ae7c1b78 2023-01-10 stsp imsg_close(&iev->ibuf, wbuf);
313 ae7c1b78 2023-01-10 stsp gotd_imsg_event_add(iev);
314 ae7c1b78 2023-01-10 stsp return NULL;
315 ae7c1b78 2023-01-10 stsp }
316 ae7c1b78 2023-01-10 stsp
317 ae7c1b78 2023-01-10 stsp static const struct got_error *
318 ae7c1b78 2023-01-10 stsp install_pack(struct gotd_session_client *client, const char *repo_path,
319 ae7c1b78 2023-01-10 stsp struct imsg *imsg)
320 ae7c1b78 2023-01-10 stsp {
321 ae7c1b78 2023-01-10 stsp const struct got_error *err = NULL;
322 ae7c1b78 2023-01-10 stsp struct gotd_imsg_packfile_install inst;
323 ae7c1b78 2023-01-10 stsp char hex[SHA1_DIGEST_STRING_LENGTH];
324 ae7c1b78 2023-01-10 stsp size_t datalen;
325 ae7c1b78 2023-01-10 stsp char *packfile_path = NULL, *packidx_path = NULL;
326 ae7c1b78 2023-01-10 stsp
327 ae7c1b78 2023-01-10 stsp datalen = imsg->hdr.len - IMSG_HEADER_SIZE;
328 ae7c1b78 2023-01-10 stsp if (datalen != sizeof(inst))
329 ae7c1b78 2023-01-10 stsp return got_error(GOT_ERR_PRIVSEP_LEN);
330 ae7c1b78 2023-01-10 stsp memcpy(&inst, imsg->data, sizeof(inst));
331 ae7c1b78 2023-01-10 stsp
332 ae7c1b78 2023-01-10 stsp if (client->packfile_path == NULL)
333 ae7c1b78 2023-01-10 stsp return got_error_msg(GOT_ERR_BAD_REQUEST,
334 ae7c1b78 2023-01-10 stsp "client has no pack file");
335 ae7c1b78 2023-01-10 stsp if (client->packidx_path == NULL)
336 ae7c1b78 2023-01-10 stsp return got_error_msg(GOT_ERR_BAD_REQUEST,
337 ae7c1b78 2023-01-10 stsp "client has no pack file index");
338 ae7c1b78 2023-01-10 stsp
339 ae7c1b78 2023-01-10 stsp if (got_sha1_digest_to_str(inst.pack_sha1, hex, sizeof(hex)) == NULL)
340 ae7c1b78 2023-01-10 stsp return got_error_msg(GOT_ERR_NO_SPACE,
341 ae7c1b78 2023-01-10 stsp "could not convert pack file SHA1 to hex");
342 ae7c1b78 2023-01-10 stsp
343 ae7c1b78 2023-01-10 stsp if (asprintf(&packfile_path, "/%s/%s/pack-%s.pack",
344 ae7c1b78 2023-01-10 stsp repo_path, GOT_OBJECTS_PACK_DIR, hex) == -1) {
345 ae7c1b78 2023-01-10 stsp err = got_error_from_errno("asprintf");
346 ae7c1b78 2023-01-10 stsp goto done;
347 ae7c1b78 2023-01-10 stsp }
348 ae7c1b78 2023-01-10 stsp
349 ae7c1b78 2023-01-10 stsp if (asprintf(&packidx_path, "/%s/%s/pack-%s.idx",
350 ae7c1b78 2023-01-10 stsp repo_path, GOT_OBJECTS_PACK_DIR, hex) == -1) {
351 ae7c1b78 2023-01-10 stsp err = got_error_from_errno("asprintf");
352 ae7c1b78 2023-01-10 stsp goto done;
353 ae7c1b78 2023-01-10 stsp }
354 ae7c1b78 2023-01-10 stsp
355 ae7c1b78 2023-01-10 stsp if (rename(client->packfile_path, packfile_path) == -1) {
356 ae7c1b78 2023-01-10 stsp err = got_error_from_errno3("rename", client->packfile_path,
357 ae7c1b78 2023-01-10 stsp packfile_path);
358 ae7c1b78 2023-01-10 stsp goto done;
359 ae7c1b78 2023-01-10 stsp }
360 ae7c1b78 2023-01-10 stsp
361 ae7c1b78 2023-01-10 stsp free(client->packfile_path);
362 ae7c1b78 2023-01-10 stsp client->packfile_path = NULL;
363 ae7c1b78 2023-01-10 stsp
364 ae7c1b78 2023-01-10 stsp if (rename(client->packidx_path, packidx_path) == -1) {
365 ae7c1b78 2023-01-10 stsp err = got_error_from_errno3("rename", client->packidx_path,
366 ae7c1b78 2023-01-10 stsp packidx_path);
367 ae7c1b78 2023-01-10 stsp goto done;
368 ae7c1b78 2023-01-10 stsp }
369 ae7c1b78 2023-01-10 stsp
370 ae7c1b78 2023-01-10 stsp free(client->packidx_path);
371 ae7c1b78 2023-01-10 stsp client->packidx_path = NULL;
372 ae7c1b78 2023-01-10 stsp done:
373 ae7c1b78 2023-01-10 stsp free(packfile_path);
374 ae7c1b78 2023-01-10 stsp free(packidx_path);
375 ae7c1b78 2023-01-10 stsp return err;
376 ae7c1b78 2023-01-10 stsp }
377 ae7c1b78 2023-01-10 stsp
378 ae7c1b78 2023-01-10 stsp static const struct got_error *
379 ae7c1b78 2023-01-10 stsp begin_ref_updates(struct gotd_session_client *client, struct imsg *imsg)
380 ae7c1b78 2023-01-10 stsp {
381 ae7c1b78 2023-01-10 stsp struct gotd_imsg_ref_updates_start istart;
382 ae7c1b78 2023-01-10 stsp size_t datalen;
383 ae7c1b78 2023-01-10 stsp
384 ae7c1b78 2023-01-10 stsp if (client->nref_updates != -1)
385 ae7c1b78 2023-01-10 stsp return got_error(GOT_ERR_PRIVSEP_MSG);
386 ae7c1b78 2023-01-10 stsp
387 ae7c1b78 2023-01-10 stsp datalen = imsg->hdr.len - IMSG_HEADER_SIZE;
388 ae7c1b78 2023-01-10 stsp if (datalen != sizeof(istart))
389 ae7c1b78 2023-01-10 stsp return got_error(GOT_ERR_PRIVSEP_LEN);
390 ae7c1b78 2023-01-10 stsp memcpy(&istart, imsg->data, sizeof(istart));
391 ae7c1b78 2023-01-10 stsp
392 ae7c1b78 2023-01-10 stsp if (istart.nref_updates <= 0)
393 ae7c1b78 2023-01-10 stsp return got_error(GOT_ERR_PRIVSEP_MSG);
394 ae7c1b78 2023-01-10 stsp
395 ae7c1b78 2023-01-10 stsp client->nref_updates = istart.nref_updates;
396 ae7c1b78 2023-01-10 stsp return NULL;
397 ae7c1b78 2023-01-10 stsp }
398 ae7c1b78 2023-01-10 stsp
399 ae7c1b78 2023-01-10 stsp static const struct got_error *
400 0ff2c315 2023-01-18 stsp update_ref(int *shut, struct gotd_session_client *client,
401 0ff2c315 2023-01-18 stsp const char *repo_path, struct imsg *imsg)
402 ae7c1b78 2023-01-10 stsp {
403 ae7c1b78 2023-01-10 stsp const struct got_error *err = NULL;
404 ae7c1b78 2023-01-10 stsp struct got_repository *repo = NULL;
405 ae7c1b78 2023-01-10 stsp struct got_reference *ref = NULL;
406 ae7c1b78 2023-01-10 stsp struct gotd_imsg_ref_update iref;
407 ae7c1b78 2023-01-10 stsp struct got_object_id old_id, new_id;
408 ae7c1b78 2023-01-10 stsp struct got_object_id *id = NULL;
409 ae7c1b78 2023-01-10 stsp char *refname = NULL;
410 ae7c1b78 2023-01-10 stsp size_t datalen;
411 ae7c1b78 2023-01-10 stsp int locked = 0;
412 1df1761f 2023-06-16 stsp char hex1[SHA1_DIGEST_STRING_LENGTH];
413 1df1761f 2023-06-16 stsp char hex2[SHA1_DIGEST_STRING_LENGTH];
414 ae7c1b78 2023-01-10 stsp
415 ae7c1b78 2023-01-10 stsp log_debug("update-ref from uid %d", client->euid);
416 ae7c1b78 2023-01-10 stsp
417 ae7c1b78 2023-01-10 stsp if (client->nref_updates <= 0)
418 ae7c1b78 2023-01-10 stsp return got_error(GOT_ERR_PRIVSEP_MSG);
419 ae7c1b78 2023-01-10 stsp
420 ae7c1b78 2023-01-10 stsp datalen = imsg->hdr.len - IMSG_HEADER_SIZE;
421 ae7c1b78 2023-01-10 stsp if (datalen < sizeof(iref))
422 ae7c1b78 2023-01-10 stsp return got_error(GOT_ERR_PRIVSEP_LEN);
423 ae7c1b78 2023-01-10 stsp memcpy(&iref, imsg->data, sizeof(iref));
424 ae7c1b78 2023-01-10 stsp if (datalen != sizeof(iref) + iref.name_len)
425 ae7c1b78 2023-01-10 stsp return got_error(GOT_ERR_PRIVSEP_LEN);
426 00b3e9ae 2023-01-11 op refname = strndup(imsg->data + sizeof(iref), iref.name_len);
427 ae7c1b78 2023-01-10 stsp if (refname == NULL)
428 00b3e9ae 2023-01-11 op return got_error_from_errno("strndup");
429 ae7c1b78 2023-01-10 stsp
430 ae7c1b78 2023-01-10 stsp log_debug("updating ref %s for uid %d", refname, client->euid);
431 ae7c1b78 2023-01-10 stsp
432 ae7c1b78 2023-01-10 stsp err = got_repo_open(&repo, repo_path, NULL, NULL);
433 ae7c1b78 2023-01-10 stsp if (err)
434 ae7c1b78 2023-01-10 stsp goto done;
435 ae7c1b78 2023-01-10 stsp
436 ae7c1b78 2023-01-10 stsp memcpy(old_id.sha1, iref.old_id, SHA1_DIGEST_LENGTH);
437 ae7c1b78 2023-01-10 stsp memcpy(new_id.sha1, iref.new_id, SHA1_DIGEST_LENGTH);
438 510b4555 2023-12-31 stsp err = got_repo_find_object_id(iref.delete_ref ? &old_id : &new_id,
439 510b4555 2023-12-31 stsp repo);
440 ae7c1b78 2023-01-10 stsp if (err)
441 ae7c1b78 2023-01-10 stsp goto done;
442 ae7c1b78 2023-01-10 stsp
443 ae7c1b78 2023-01-10 stsp if (iref.ref_is_new) {
444 ae7c1b78 2023-01-10 stsp err = got_ref_open(&ref, repo, refname, 0);
445 ae7c1b78 2023-01-10 stsp if (err) {
446 ae7c1b78 2023-01-10 stsp if (err->code != GOT_ERR_NOT_REF)
447 ae7c1b78 2023-01-10 stsp goto done;
448 ae7c1b78 2023-01-10 stsp err = got_ref_alloc(&ref, refname, &new_id);
449 ae7c1b78 2023-01-10 stsp if (err)
450 ae7c1b78 2023-01-10 stsp goto done;
451 ae7c1b78 2023-01-10 stsp err = got_ref_write(ref, repo); /* will lock/unlock */
452 ae7c1b78 2023-01-10 stsp if (err)
453 ae7c1b78 2023-01-10 stsp goto done;
454 ae7c1b78 2023-01-10 stsp } else {
455 1df1761f 2023-06-16 stsp err = got_ref_resolve(&id, repo, ref);
456 1df1761f 2023-06-16 stsp if (err)
457 1df1761f 2023-06-16 stsp goto done;
458 1df1761f 2023-06-16 stsp got_object_id_hex(&new_id, hex1, sizeof(hex1));
459 1df1761f 2023-06-16 stsp got_object_id_hex(id, hex2, sizeof(hex2));
460 ae7c1b78 2023-01-10 stsp err = got_error_fmt(GOT_ERR_REF_BUSY,
461 1df1761f 2023-06-16 stsp "Addition %s: %s failed; %s: %s has been "
462 1df1761f 2023-06-16 stsp "created by someone else while transaction "
463 1df1761f 2023-06-16 stsp "was in progress",
464 1df1761f 2023-06-16 stsp got_ref_get_name(ref), hex1,
465 1df1761f 2023-06-16 stsp got_ref_get_name(ref), hex2);
466 ae7c1b78 2023-01-10 stsp goto done;
467 ae7c1b78 2023-01-10 stsp }
468 9a8e357c 2023-01-28 op } else if (iref.delete_ref) {
469 9a8e357c 2023-01-28 op err = got_ref_open(&ref, repo, refname, 1 /* lock */);
470 9a8e357c 2023-01-28 op if (err)
471 9a8e357c 2023-01-28 op goto done;
472 9a8e357c 2023-01-28 op locked = 1;
473 9a8e357c 2023-01-28 op
474 9a8e357c 2023-01-28 op err = got_ref_resolve(&id, repo, ref);
475 9a8e357c 2023-01-28 op if (err)
476 9a8e357c 2023-01-28 op goto done;
477 9a8e357c 2023-01-28 op
478 9a8e357c 2023-01-28 op if (got_object_id_cmp(id, &old_id) != 0) {
479 1df1761f 2023-06-16 stsp got_object_id_hex(&old_id, hex1, sizeof(hex1));
480 1df1761f 2023-06-16 stsp got_object_id_hex(id, hex2, sizeof(hex2));
481 9a8e357c 2023-01-28 op err = got_error_fmt(GOT_ERR_REF_BUSY,
482 1df1761f 2023-06-16 stsp "Deletion %s: %s failed; %s: %s has been "
483 1df1761f 2023-06-16 stsp "created by someone else while transaction "
484 1df1761f 2023-06-16 stsp "was in progress",
485 1df1761f 2023-06-16 stsp got_ref_get_name(ref), hex1,
486 1df1761f 2023-06-16 stsp got_ref_get_name(ref), hex2);
487 9a8e357c 2023-01-28 op goto done;
488 9a8e357c 2023-01-28 op }
489 9a8e357c 2023-01-28 op
490 9a8e357c 2023-01-28 op err = got_ref_delete(ref, repo);
491 9a8e357c 2023-01-28 op if (err)
492 9a8e357c 2023-01-28 op goto done;
493 9a8e357c 2023-01-28 op
494 9a8e357c 2023-01-28 op free(id);
495 9a8e357c 2023-01-28 op id = NULL;
496 ae7c1b78 2023-01-10 stsp } else {
497 ae7c1b78 2023-01-10 stsp err = got_ref_open(&ref, repo, refname, 1 /* lock */);
498 ae7c1b78 2023-01-10 stsp if (err)
499 ae7c1b78 2023-01-10 stsp goto done;
500 ae7c1b78 2023-01-10 stsp locked = 1;
501 ae7c1b78 2023-01-10 stsp
502 ae7c1b78 2023-01-10 stsp err = got_ref_resolve(&id, repo, ref);
503 ae7c1b78 2023-01-10 stsp if (err)
504 ae7c1b78 2023-01-10 stsp goto done;
505 ae7c1b78 2023-01-10 stsp
506 ae7c1b78 2023-01-10 stsp if (got_object_id_cmp(id, &old_id) != 0) {
507 1df1761f 2023-06-16 stsp got_object_id_hex(&old_id, hex1, sizeof(hex1));
508 1df1761f 2023-06-16 stsp got_object_id_hex(id, hex2, sizeof(hex2));
509 ae7c1b78 2023-01-10 stsp err = got_error_fmt(GOT_ERR_REF_BUSY,
510 1df1761f 2023-06-16 stsp "Update %s: %s failed; %s: %s has been "
511 1df1761f 2023-06-16 stsp "created by someone else while transaction "
512 1df1761f 2023-06-16 stsp "was in progress",
513 1df1761f 2023-06-16 stsp got_ref_get_name(ref), hex1,
514 1df1761f 2023-06-16 stsp got_ref_get_name(ref), hex2);
515 ae7c1b78 2023-01-10 stsp goto done;
516 ae7c1b78 2023-01-10 stsp }
517 ae7c1b78 2023-01-10 stsp
518 f8780fee 2023-06-16 stsp if (got_object_id_cmp(&new_id, &old_id) != 0) {
519 f8780fee 2023-06-16 stsp err = got_ref_change_ref(ref, &new_id);
520 f8780fee 2023-06-16 stsp if (err)
521 f8780fee 2023-06-16 stsp goto done;
522 ae7c1b78 2023-01-10 stsp
523 f8780fee 2023-06-16 stsp err = got_ref_write(ref, repo);
524 f8780fee 2023-06-16 stsp if (err)
525 f8780fee 2023-06-16 stsp goto done;
526 f8780fee 2023-06-16 stsp }
527 ae7c1b78 2023-01-10 stsp
528 ae7c1b78 2023-01-10 stsp free(id);
529 ae7c1b78 2023-01-10 stsp id = NULL;
530 ae7c1b78 2023-01-10 stsp }
531 ae7c1b78 2023-01-10 stsp done:
532 ae7c1b78 2023-01-10 stsp if (err) {
533 ae7c1b78 2023-01-10 stsp if (err->code == GOT_ERR_LOCKFILE_TIMEOUT) {
534 ae7c1b78 2023-01-10 stsp err = got_error_fmt(GOT_ERR_LOCKFILE_TIMEOUT,
535 ae7c1b78 2023-01-10 stsp "could not acquire exclusive file lock for %s",
536 ae7c1b78 2023-01-10 stsp refname);
537 ae7c1b78 2023-01-10 stsp }
538 ae7c1b78 2023-01-10 stsp send_ref_update_ng(client, &iref, refname, err->msg);
539 ae7c1b78 2023-01-10 stsp } else
540 ae7c1b78 2023-01-10 stsp send_ref_update_ok(client, &iref, refname);
541 ae7c1b78 2023-01-10 stsp
542 ae7c1b78 2023-01-10 stsp if (client->nref_updates > 0) {
543 ae7c1b78 2023-01-10 stsp client->nref_updates--;
544 0ff2c315 2023-01-18 stsp if (client->nref_updates == 0) {
545 ae7c1b78 2023-01-10 stsp send_refs_updated(client);
546 808264b2 2023-08-22 stsp client->flush_disconnect = 1;
547 0ff2c315 2023-01-18 stsp }
548 ae7c1b78 2023-01-10 stsp
549 ae7c1b78 2023-01-10 stsp }
550 ae7c1b78 2023-01-10 stsp if (locked) {
551 ae7c1b78 2023-01-10 stsp const struct got_error *unlock_err;
552 ae7c1b78 2023-01-10 stsp unlock_err = got_ref_unlock(ref);
553 ae7c1b78 2023-01-10 stsp if (unlock_err && err == NULL)
554 ae7c1b78 2023-01-10 stsp err = unlock_err;
555 ae7c1b78 2023-01-10 stsp }
556 ae7c1b78 2023-01-10 stsp if (ref)
557 ae7c1b78 2023-01-10 stsp got_ref_close(ref);
558 ae7c1b78 2023-01-10 stsp if (repo)
559 ae7c1b78 2023-01-10 stsp got_repo_close(repo);
560 ae7c1b78 2023-01-10 stsp free(refname);
561 ae7c1b78 2023-01-10 stsp free(id);
562 ae7c1b78 2023-01-10 stsp return err;
563 ae7c1b78 2023-01-10 stsp }
564 ae7c1b78 2023-01-10 stsp
565 ae7c1b78 2023-01-10 stsp static void
566 ae7c1b78 2023-01-10 stsp session_dispatch_repo_child(int fd, short event, void *arg)
567 ae7c1b78 2023-01-10 stsp {
568 ae7c1b78 2023-01-10 stsp struct gotd_imsgev *iev = arg;
569 ae7c1b78 2023-01-10 stsp struct imsgbuf *ibuf = &iev->ibuf;
570 ae7c1b78 2023-01-10 stsp struct gotd_session_client *client = &gotd_session_client;
571 ae7c1b78 2023-01-10 stsp ssize_t n;
572 ae7c1b78 2023-01-10 stsp int shut = 0;
573 ae7c1b78 2023-01-10 stsp struct imsg imsg;
574 ae7c1b78 2023-01-10 stsp
575 ae7c1b78 2023-01-10 stsp if (event & EV_READ) {
576 ae7c1b78 2023-01-10 stsp if ((n = imsg_read(ibuf)) == -1 && errno != EAGAIN)
577 ae7c1b78 2023-01-10 stsp fatal("imsg_read error");
578 ae7c1b78 2023-01-10 stsp if (n == 0) {
579 ae7c1b78 2023-01-10 stsp /* Connection closed. */
580 ae7c1b78 2023-01-10 stsp shut = 1;
581 ae7c1b78 2023-01-10 stsp goto done;
582 ae7c1b78 2023-01-10 stsp }
583 ae7c1b78 2023-01-10 stsp }
584 ae7c1b78 2023-01-10 stsp
585 ae7c1b78 2023-01-10 stsp if (event & EV_WRITE) {
586 ae7c1b78 2023-01-10 stsp n = msgbuf_write(&ibuf->w);
587 ae7c1b78 2023-01-10 stsp if (n == -1 && errno != EAGAIN)
588 ae7c1b78 2023-01-10 stsp fatal("msgbuf_write");
589 ae7c1b78 2023-01-10 stsp if (n == 0) {
590 ae7c1b78 2023-01-10 stsp /* Connection closed. */
591 ae7c1b78 2023-01-10 stsp shut = 1;
592 ae7c1b78 2023-01-10 stsp goto done;
593 ae7c1b78 2023-01-10 stsp }
594 ae7c1b78 2023-01-10 stsp }
595 ae7c1b78 2023-01-10 stsp
596 ae7c1b78 2023-01-10 stsp for (;;) {
597 ae7c1b78 2023-01-10 stsp const struct got_error *err = NULL;
598 ae7c1b78 2023-01-10 stsp uint32_t client_id = 0;
599 ae7c1b78 2023-01-10 stsp int do_disconnect = 0;
600 ae7c1b78 2023-01-10 stsp int do_ref_updates = 0, do_ref_update = 0;
601 ae7c1b78 2023-01-10 stsp int do_packfile_install = 0;
602 ae7c1b78 2023-01-10 stsp
603 ae7c1b78 2023-01-10 stsp if ((n = imsg_get(ibuf, &imsg)) == -1)
604 ae7c1b78 2023-01-10 stsp fatal("%s: imsg_get error", __func__);
605 ae7c1b78 2023-01-10 stsp if (n == 0) /* No more messages. */
606 ae7c1b78 2023-01-10 stsp break;
607 ae7c1b78 2023-01-10 stsp
608 ae7c1b78 2023-01-10 stsp switch (imsg.hdr.type) {
609 ae7c1b78 2023-01-10 stsp case GOTD_IMSG_ERROR:
610 ae7c1b78 2023-01-10 stsp do_disconnect = 1;
611 ae7c1b78 2023-01-10 stsp err = gotd_imsg_recv_error(&client_id, &imsg);
612 ae7c1b78 2023-01-10 stsp break;
613 ae7c1b78 2023-01-10 stsp case GOTD_IMSG_PACKFILE_DONE:
614 ae7c1b78 2023-01-10 stsp do_disconnect = 1;
615 ae7c1b78 2023-01-10 stsp err = recv_packfile_done(&client_id, &imsg);
616 ae7c1b78 2023-01-10 stsp break;
617 ae7c1b78 2023-01-10 stsp case GOTD_IMSG_PACKFILE_INSTALL:
618 ae7c1b78 2023-01-10 stsp err = recv_packfile_install(&client_id, &imsg);
619 ae7c1b78 2023-01-10 stsp if (err == NULL)
620 ae7c1b78 2023-01-10 stsp do_packfile_install = 1;
621 ae7c1b78 2023-01-10 stsp break;
622 ae7c1b78 2023-01-10 stsp case GOTD_IMSG_REF_UPDATES_START:
623 ae7c1b78 2023-01-10 stsp err = recv_ref_updates_start(&client_id, &imsg);
624 ae7c1b78 2023-01-10 stsp if (err == NULL)
625 ae7c1b78 2023-01-10 stsp do_ref_updates = 1;
626 ae7c1b78 2023-01-10 stsp break;
627 ae7c1b78 2023-01-10 stsp case GOTD_IMSG_REF_UPDATE:
628 ae7c1b78 2023-01-10 stsp err = recv_ref_update(&client_id, &imsg);
629 ae7c1b78 2023-01-10 stsp if (err == NULL)
630 ae7c1b78 2023-01-10 stsp do_ref_update = 1;
631 ae7c1b78 2023-01-10 stsp break;
632 ae7c1b78 2023-01-10 stsp default:
633 ae7c1b78 2023-01-10 stsp log_debug("unexpected imsg %d", imsg.hdr.type);
634 ae7c1b78 2023-01-10 stsp break;
635 ae7c1b78 2023-01-10 stsp }
636 ae7c1b78 2023-01-10 stsp
637 ae7c1b78 2023-01-10 stsp if (do_disconnect) {
638 ae7c1b78 2023-01-10 stsp if (err)
639 ae7c1b78 2023-01-10 stsp disconnect_on_error(client, err);
640 ae7c1b78 2023-01-10 stsp else
641 ae7c1b78 2023-01-10 stsp disconnect(client);
642 ae7c1b78 2023-01-10 stsp } else {
643 ae7c1b78 2023-01-10 stsp if (do_packfile_install)
644 ae7c1b78 2023-01-10 stsp err = install_pack(client,
645 ae7c1b78 2023-01-10 stsp gotd_session.repo->path, &imsg);
646 ae7c1b78 2023-01-10 stsp else if (do_ref_updates)
647 ae7c1b78 2023-01-10 stsp err = begin_ref_updates(client, &imsg);
648 ae7c1b78 2023-01-10 stsp else if (do_ref_update)
649 0ff2c315 2023-01-18 stsp err = update_ref(&shut, client,
650 ae7c1b78 2023-01-10 stsp gotd_session.repo->path, &imsg);
651 ae7c1b78 2023-01-10 stsp if (err)
652 ae7c1b78 2023-01-10 stsp log_warnx("uid %d: %s", client->euid, err->msg);
653 ae7c1b78 2023-01-10 stsp }
654 ae7c1b78 2023-01-10 stsp imsg_free(&imsg);
655 ae7c1b78 2023-01-10 stsp }
656 ae7c1b78 2023-01-10 stsp done:
657 ae7c1b78 2023-01-10 stsp if (!shut) {
658 ae7c1b78 2023-01-10 stsp gotd_imsg_event_add(iev);
659 ae7c1b78 2023-01-10 stsp } else {
660 ae7c1b78 2023-01-10 stsp /* This pipe is dead. Remove its event handler */
661 ae7c1b78 2023-01-10 stsp event_del(&iev->ev);
662 ae7c1b78 2023-01-10 stsp event_loopexit(NULL);
663 ae7c1b78 2023-01-10 stsp }
664 ae7c1b78 2023-01-10 stsp }
665 ae7c1b78 2023-01-10 stsp
666 ae7c1b78 2023-01-10 stsp static const struct got_error *
667 ae7c1b78 2023-01-10 stsp recv_capabilities(struct gotd_session_client *client, struct imsg *imsg)
668 ae7c1b78 2023-01-10 stsp {
669 ae7c1b78 2023-01-10 stsp struct gotd_imsg_capabilities icapas;
670 ae7c1b78 2023-01-10 stsp size_t datalen;
671 ae7c1b78 2023-01-10 stsp
672 ae7c1b78 2023-01-10 stsp datalen = imsg->hdr.len - IMSG_HEADER_SIZE;
673 ae7c1b78 2023-01-10 stsp if (datalen != sizeof(icapas))
674 ae7c1b78 2023-01-10 stsp return got_error(GOT_ERR_PRIVSEP_LEN);
675 ae7c1b78 2023-01-10 stsp memcpy(&icapas, imsg->data, sizeof(icapas));
676 ae7c1b78 2023-01-10 stsp
677 ae7c1b78 2023-01-10 stsp client->ncapa_alloc = icapas.ncapabilities;
678 ae7c1b78 2023-01-10 stsp client->capabilities = calloc(client->ncapa_alloc,
679 ae7c1b78 2023-01-10 stsp sizeof(*client->capabilities));
680 ae7c1b78 2023-01-10 stsp if (client->capabilities == NULL) {
681 ae7c1b78 2023-01-10 stsp client->ncapa_alloc = 0;
682 ae7c1b78 2023-01-10 stsp return got_error_from_errno("calloc");
683 ae7c1b78 2023-01-10 stsp }
684 ae7c1b78 2023-01-10 stsp
685 ae7c1b78 2023-01-10 stsp log_debug("expecting %zu capabilities from uid %d",
686 ae7c1b78 2023-01-10 stsp client->ncapa_alloc, client->euid);
687 ae7c1b78 2023-01-10 stsp return NULL;
688 ae7c1b78 2023-01-10 stsp }
689 ae7c1b78 2023-01-10 stsp
690 ae7c1b78 2023-01-10 stsp static const struct got_error *
691 ae7c1b78 2023-01-10 stsp recv_capability(struct gotd_session_client *client, struct imsg *imsg)
692 ae7c1b78 2023-01-10 stsp {
693 ae7c1b78 2023-01-10 stsp struct gotd_imsg_capability icapa;
694 ae7c1b78 2023-01-10 stsp struct gotd_client_capability *capa;
695 ae7c1b78 2023-01-10 stsp size_t datalen;
696 ae7c1b78 2023-01-10 stsp char *key, *value = NULL;
697 ae7c1b78 2023-01-10 stsp
698 ae7c1b78 2023-01-10 stsp if (client->capabilities == NULL ||
699 ae7c1b78 2023-01-10 stsp client->ncapabilities >= client->ncapa_alloc) {
700 ae7c1b78 2023-01-10 stsp return got_error_msg(GOT_ERR_BAD_REQUEST,
701 ae7c1b78 2023-01-10 stsp "unexpected capability received");
702 ae7c1b78 2023-01-10 stsp }
703 ae7c1b78 2023-01-10 stsp
704 ae7c1b78 2023-01-10 stsp memset(&icapa, 0, sizeof(icapa));
705 ae7c1b78 2023-01-10 stsp
706 ae7c1b78 2023-01-10 stsp datalen = imsg->hdr.len - IMSG_HEADER_SIZE;
707 ae7c1b78 2023-01-10 stsp if (datalen < sizeof(icapa))
708 ae7c1b78 2023-01-10 stsp return got_error(GOT_ERR_PRIVSEP_LEN);
709 ae7c1b78 2023-01-10 stsp memcpy(&icapa, imsg->data, sizeof(icapa));
710 ae7c1b78 2023-01-10 stsp
711 ae7c1b78 2023-01-10 stsp if (datalen != sizeof(icapa) + icapa.key_len + icapa.value_len)
712 ae7c1b78 2023-01-10 stsp return got_error(GOT_ERR_PRIVSEP_LEN);
713 ae7c1b78 2023-01-10 stsp
714 00b3e9ae 2023-01-11 op key = strndup(imsg->data + sizeof(icapa), icapa.key_len);
715 ae7c1b78 2023-01-10 stsp if (key == NULL)
716 00b3e9ae 2023-01-11 op return got_error_from_errno("strndup");
717 ae7c1b78 2023-01-10 stsp if (icapa.value_len > 0) {
718 00b3e9ae 2023-01-11 op value = strndup(imsg->data + sizeof(icapa) + icapa.key_len,
719 00b3e9ae 2023-01-11 op icapa.value_len);
720 ae7c1b78 2023-01-10 stsp if (value == NULL) {
721 ae7c1b78 2023-01-10 stsp free(key);
722 00b3e9ae 2023-01-11 op return got_error_from_errno("strndup");
723 ae7c1b78 2023-01-10 stsp }
724 ae7c1b78 2023-01-10 stsp }
725 ae7c1b78 2023-01-10 stsp
726 ae7c1b78 2023-01-10 stsp capa = &client->capabilities[client->ncapabilities++];
727 ae7c1b78 2023-01-10 stsp capa->key = key;
728 ae7c1b78 2023-01-10 stsp capa->value = value;
729 ae7c1b78 2023-01-10 stsp
730 ae7c1b78 2023-01-10 stsp if (value)
731 ae7c1b78 2023-01-10 stsp log_debug("uid %d: capability %s=%s", client->euid, key, value);
732 ae7c1b78 2023-01-10 stsp else
733 ae7c1b78 2023-01-10 stsp log_debug("uid %d: capability %s", client->euid, key);
734 ae7c1b78 2023-01-10 stsp
735 ae7c1b78 2023-01-10 stsp return NULL;
736 ae7c1b78 2023-01-10 stsp }
737 ae7c1b78 2023-01-10 stsp
738 ae7c1b78 2023-01-10 stsp static const struct got_error *
739 ae7c1b78 2023-01-10 stsp ensure_client_is_reading(struct gotd_session_client *client)
740 ae7c1b78 2023-01-10 stsp {
741 ae7c1b78 2023-01-10 stsp if (client->is_writing) {
742 ae7c1b78 2023-01-10 stsp return got_error_fmt(GOT_ERR_BAD_PACKET,
743 ae7c1b78 2023-01-10 stsp "uid %d made a read-request but is not reading from "
744 ae7c1b78 2023-01-10 stsp "a repository", client->euid);
745 ae7c1b78 2023-01-10 stsp }
746 ae7c1b78 2023-01-10 stsp
747 ae7c1b78 2023-01-10 stsp return NULL;
748 ae7c1b78 2023-01-10 stsp }
749 ae7c1b78 2023-01-10 stsp
750 ae7c1b78 2023-01-10 stsp static const struct got_error *
751 ae7c1b78 2023-01-10 stsp ensure_client_is_writing(struct gotd_session_client *client)
752 ae7c1b78 2023-01-10 stsp {
753 ae7c1b78 2023-01-10 stsp if (!client->is_writing) {
754 ae7c1b78 2023-01-10 stsp return got_error_fmt(GOT_ERR_BAD_PACKET,
755 ae7c1b78 2023-01-10 stsp "uid %d made a write-request but is not writing to "
756 ae7c1b78 2023-01-10 stsp "a repository", client->euid);
757 ae7c1b78 2023-01-10 stsp }
758 ae7c1b78 2023-01-10 stsp
759 ae7c1b78 2023-01-10 stsp return NULL;
760 ae7c1b78 2023-01-10 stsp }
761 ae7c1b78 2023-01-10 stsp
762 ae7c1b78 2023-01-10 stsp static const struct got_error *
763 ae7c1b78 2023-01-10 stsp forward_want(struct gotd_session_client *client, struct imsg *imsg)
764 ae7c1b78 2023-01-10 stsp {
765 ae7c1b78 2023-01-10 stsp struct gotd_imsg_want ireq;
766 ae7c1b78 2023-01-10 stsp struct gotd_imsg_want iwant;
767 ae7c1b78 2023-01-10 stsp size_t datalen;
768 ae7c1b78 2023-01-10 stsp
769 ae7c1b78 2023-01-10 stsp datalen = imsg->hdr.len - IMSG_HEADER_SIZE;
770 ae7c1b78 2023-01-10 stsp if (datalen != sizeof(ireq))
771 ae7c1b78 2023-01-10 stsp return got_error(GOT_ERR_PRIVSEP_LEN);
772 ae7c1b78 2023-01-10 stsp
773 ae7c1b78 2023-01-10 stsp memcpy(&ireq, imsg->data, datalen);
774 ae7c1b78 2023-01-10 stsp
775 ae7c1b78 2023-01-10 stsp memset(&iwant, 0, sizeof(iwant));
776 ae7c1b78 2023-01-10 stsp memcpy(iwant.object_id, ireq.object_id, SHA1_DIGEST_LENGTH);
777 ae7c1b78 2023-01-10 stsp iwant.client_id = client->id;
778 ae7c1b78 2023-01-10 stsp
779 ae7c1b78 2023-01-10 stsp if (gotd_imsg_compose_event(&client->repo_child_iev, GOTD_IMSG_WANT,
780 b0614828 2023-06-19 stsp gotd_session.proc_id, -1, &iwant, sizeof(iwant)) == -1)
781 ae7c1b78 2023-01-10 stsp return got_error_from_errno("imsg compose WANT");
782 ae7c1b78 2023-01-10 stsp
783 ae7c1b78 2023-01-10 stsp return NULL;
784 ae7c1b78 2023-01-10 stsp }
785 ae7c1b78 2023-01-10 stsp
786 ae7c1b78 2023-01-10 stsp static const struct got_error *
787 ae7c1b78 2023-01-10 stsp forward_ref_update(struct gotd_session_client *client, struct imsg *imsg)
788 ae7c1b78 2023-01-10 stsp {
789 ae7c1b78 2023-01-10 stsp const struct got_error *err = NULL;
790 ae7c1b78 2023-01-10 stsp struct gotd_imsg_ref_update ireq;
791 ae7c1b78 2023-01-10 stsp struct gotd_imsg_ref_update *iref = NULL;
792 ae7c1b78 2023-01-10 stsp size_t datalen;
793 ae7c1b78 2023-01-10 stsp
794 ae7c1b78 2023-01-10 stsp datalen = imsg->hdr.len - IMSG_HEADER_SIZE;
795 ae7c1b78 2023-01-10 stsp if (datalen < sizeof(ireq))
796 ae7c1b78 2023-01-10 stsp return got_error(GOT_ERR_PRIVSEP_LEN);
797 ae7c1b78 2023-01-10 stsp memcpy(&ireq, imsg->data, sizeof(ireq));
798 ae7c1b78 2023-01-10 stsp if (datalen != sizeof(ireq) + ireq.name_len)
799 ae7c1b78 2023-01-10 stsp return got_error(GOT_ERR_PRIVSEP_LEN);
800 ae7c1b78 2023-01-10 stsp
801 ae7c1b78 2023-01-10 stsp iref = malloc(datalen);
802 ae7c1b78 2023-01-10 stsp if (iref == NULL)
803 ae7c1b78 2023-01-10 stsp return got_error_from_errno("malloc");
804 ae7c1b78 2023-01-10 stsp memcpy(iref, imsg->data, datalen);
805 ae7c1b78 2023-01-10 stsp
806 ae7c1b78 2023-01-10 stsp iref->client_id = client->id;
807 ae7c1b78 2023-01-10 stsp if (gotd_imsg_compose_event(&client->repo_child_iev,
808 b0614828 2023-06-19 stsp GOTD_IMSG_REF_UPDATE, gotd_session.proc_id, -1,
809 b0614828 2023-06-19 stsp iref, datalen) == -1)
810 ae7c1b78 2023-01-10 stsp err = got_error_from_errno("imsg compose REF_UPDATE");
811 ae7c1b78 2023-01-10 stsp free(iref);
812 ae7c1b78 2023-01-10 stsp return err;
813 ae7c1b78 2023-01-10 stsp }
814 ae7c1b78 2023-01-10 stsp
815 ae7c1b78 2023-01-10 stsp static const struct got_error *
816 ae7c1b78 2023-01-10 stsp forward_have(struct gotd_session_client *client, struct imsg *imsg)
817 ae7c1b78 2023-01-10 stsp {
818 ae7c1b78 2023-01-10 stsp struct gotd_imsg_have ireq;
819 ae7c1b78 2023-01-10 stsp struct gotd_imsg_have ihave;
820 ae7c1b78 2023-01-10 stsp size_t datalen;
821 ae7c1b78 2023-01-10 stsp
822 ae7c1b78 2023-01-10 stsp datalen = imsg->hdr.len - IMSG_HEADER_SIZE;
823 ae7c1b78 2023-01-10 stsp if (datalen != sizeof(ireq))
824 ae7c1b78 2023-01-10 stsp return got_error(GOT_ERR_PRIVSEP_LEN);
825 ae7c1b78 2023-01-10 stsp
826 ae7c1b78 2023-01-10 stsp memcpy(&ireq, imsg->data, datalen);
827 ae7c1b78 2023-01-10 stsp
828 ae7c1b78 2023-01-10 stsp memset(&ihave, 0, sizeof(ihave));
829 ae7c1b78 2023-01-10 stsp memcpy(ihave.object_id, ireq.object_id, SHA1_DIGEST_LENGTH);
830 ae7c1b78 2023-01-10 stsp ihave.client_id = client->id;
831 ae7c1b78 2023-01-10 stsp
832 ae7c1b78 2023-01-10 stsp if (gotd_imsg_compose_event(&client->repo_child_iev, GOTD_IMSG_HAVE,
833 b0614828 2023-06-19 stsp gotd_session.proc_id, -1, &ihave, sizeof(ihave)) == -1)
834 ae7c1b78 2023-01-10 stsp return got_error_from_errno("imsg compose HAVE");
835 ae7c1b78 2023-01-10 stsp
836 ae7c1b78 2023-01-10 stsp return NULL;
837 ae7c1b78 2023-01-10 stsp }
838 ae7c1b78 2023-01-10 stsp
839 ae7c1b78 2023-01-10 stsp static int
840 ae7c1b78 2023-01-10 stsp client_has_capability(struct gotd_session_client *client, const char *capastr)
841 ae7c1b78 2023-01-10 stsp {
842 ae7c1b78 2023-01-10 stsp struct gotd_client_capability *capa;
843 ae7c1b78 2023-01-10 stsp size_t i;
844 ae7c1b78 2023-01-10 stsp
845 ae7c1b78 2023-01-10 stsp if (client->ncapabilities == 0)
846 ae7c1b78 2023-01-10 stsp return 0;
847 ae7c1b78 2023-01-10 stsp
848 ae7c1b78 2023-01-10 stsp for (i = 0; i < client->ncapabilities; i++) {
849 ae7c1b78 2023-01-10 stsp capa = &client->capabilities[i];
850 ae7c1b78 2023-01-10 stsp if (strcmp(capa->key, capastr) == 0)
851 ae7c1b78 2023-01-10 stsp return 1;
852 ae7c1b78 2023-01-10 stsp }
853 ae7c1b78 2023-01-10 stsp
854 ae7c1b78 2023-01-10 stsp return 0;
855 ae7c1b78 2023-01-10 stsp }
856 ae7c1b78 2023-01-10 stsp
857 ae7c1b78 2023-01-10 stsp static const struct got_error *
858 ae7c1b78 2023-01-10 stsp recv_packfile(struct gotd_session_client *client)
859 ae7c1b78 2023-01-10 stsp {
860 ae7c1b78 2023-01-10 stsp const struct got_error *err = NULL;
861 ae7c1b78 2023-01-10 stsp struct gotd_imsg_recv_packfile ipack;
862 ae7c1b78 2023-01-10 stsp struct gotd_imsg_packfile_pipe ipipe;
863 ae7c1b78 2023-01-10 stsp struct gotd_imsg_packidx_file ifile;
864 ae7c1b78 2023-01-10 stsp char *basepath = NULL, *pack_path = NULL, *idx_path = NULL;
865 ae7c1b78 2023-01-10 stsp int packfd = -1, idxfd = -1;
866 ae7c1b78 2023-01-10 stsp int pipe[2] = { -1, -1 };
867 ae7c1b78 2023-01-10 stsp
868 ae7c1b78 2023-01-10 stsp if (client->packfile_path) {
869 ae7c1b78 2023-01-10 stsp return got_error_fmt(GOT_ERR_PRIVSEP_MSG,
870 ae7c1b78 2023-01-10 stsp "uid %d already has a pack file", client->euid);
871 ae7c1b78 2023-01-10 stsp }
872 ae7c1b78 2023-01-10 stsp
873 ae7c1b78 2023-01-10 stsp if (socketpair(AF_UNIX, SOCK_STREAM, PF_UNSPEC, pipe) == -1)
874 ae7c1b78 2023-01-10 stsp return got_error_from_errno("socketpair");
875 ae7c1b78 2023-01-10 stsp
876 ae7c1b78 2023-01-10 stsp memset(&ipipe, 0, sizeof(ipipe));
877 ae7c1b78 2023-01-10 stsp ipipe.client_id = client->id;
878 ae7c1b78 2023-01-10 stsp
879 ae7c1b78 2023-01-10 stsp /* Send pack pipe end 0 to repo child process. */
880 ae7c1b78 2023-01-10 stsp if (gotd_imsg_compose_event(&client->repo_child_iev,
881 b0614828 2023-06-19 stsp GOTD_IMSG_PACKFILE_PIPE, gotd_session.proc_id, pipe[0],
882 ae7c1b78 2023-01-10 stsp &ipipe, sizeof(ipipe)) == -1) {
883 ae7c1b78 2023-01-10 stsp err = got_error_from_errno("imsg compose PACKFILE_PIPE");
884 ae7c1b78 2023-01-10 stsp pipe[0] = -1;
885 ae7c1b78 2023-01-10 stsp goto done;
886 ae7c1b78 2023-01-10 stsp }
887 ae7c1b78 2023-01-10 stsp pipe[0] = -1;
888 ae7c1b78 2023-01-10 stsp
889 ae7c1b78 2023-01-10 stsp /* Send pack pipe end 1 to gotsh(1) (expects just an fd, no data). */
890 ae7c1b78 2023-01-10 stsp if (gotd_imsg_compose_event(&client->iev,
891 b0614828 2023-06-19 stsp GOTD_IMSG_PACKFILE_PIPE, gotd_session.proc_id, pipe[1],
892 b0614828 2023-06-19 stsp NULL, 0) == -1)
893 ae7c1b78 2023-01-10 stsp err = got_error_from_errno("imsg compose PACKFILE_PIPE");
894 ae7c1b78 2023-01-10 stsp pipe[1] = -1;
895 ae7c1b78 2023-01-10 stsp
896 ae7c1b78 2023-01-10 stsp if (asprintf(&basepath, "%s/%s/receiving-from-uid-%d.pack",
897 ae7c1b78 2023-01-10 stsp got_repo_get_path(gotd_session.repo), GOT_OBJECTS_PACK_DIR,
898 ae7c1b78 2023-01-10 stsp client->euid) == -1) {
899 ae7c1b78 2023-01-10 stsp err = got_error_from_errno("asprintf");
900 ae7c1b78 2023-01-10 stsp goto done;
901 ae7c1b78 2023-01-10 stsp }
902 ae7c1b78 2023-01-10 stsp
903 ae7c1b78 2023-01-10 stsp err = got_opentemp_named_fd(&pack_path, &packfd, basepath, "");
904 ae7c1b78 2023-01-10 stsp if (err)
905 ae7c1b78 2023-01-10 stsp goto done;
906 839bbaae 2023-02-01 op if (fchmod(packfd, GOT_DEFAULT_PACK_MODE) == -1) {
907 839bbaae 2023-02-01 op err = got_error_from_errno2("fchmod", pack_path);
908 839bbaae 2023-02-01 op goto done;
909 839bbaae 2023-02-01 op }
910 ae7c1b78 2023-01-10 stsp
911 ae7c1b78 2023-01-10 stsp free(basepath);
912 ae7c1b78 2023-01-10 stsp if (asprintf(&basepath, "%s/%s/receiving-from-uid-%d.idx",
913 ae7c1b78 2023-01-10 stsp got_repo_get_path(gotd_session.repo), GOT_OBJECTS_PACK_DIR,
914 ae7c1b78 2023-01-10 stsp client->euid) == -1) {
915 ae7c1b78 2023-01-10 stsp err = got_error_from_errno("asprintf");
916 ae7c1b78 2023-01-10 stsp basepath = NULL;
917 ae7c1b78 2023-01-10 stsp goto done;
918 ae7c1b78 2023-01-10 stsp }
919 ae7c1b78 2023-01-10 stsp err = got_opentemp_named_fd(&idx_path, &idxfd, basepath, "");
920 ae7c1b78 2023-01-10 stsp if (err)
921 ae7c1b78 2023-01-10 stsp goto done;
922 839bbaae 2023-02-01 op if (fchmod(idxfd, GOT_DEFAULT_PACK_MODE) == -1) {
923 839bbaae 2023-02-01 op err = got_error_from_errno2("fchmod", idx_path);
924 839bbaae 2023-02-01 op goto done;
925 839bbaae 2023-02-01 op }
926 ae7c1b78 2023-01-10 stsp
927 ae7c1b78 2023-01-10 stsp memset(&ifile, 0, sizeof(ifile));
928 ae7c1b78 2023-01-10 stsp ifile.client_id = client->id;
929 ae7c1b78 2023-01-10 stsp if (gotd_imsg_compose_event(&client->repo_child_iev,
930 b0614828 2023-06-19 stsp GOTD_IMSG_PACKIDX_FILE, gotd_session.proc_id,
931 ae7c1b78 2023-01-10 stsp idxfd, &ifile, sizeof(ifile)) == -1) {
932 ae7c1b78 2023-01-10 stsp err = got_error_from_errno("imsg compose PACKIDX_FILE");
933 ae7c1b78 2023-01-10 stsp idxfd = -1;
934 ae7c1b78 2023-01-10 stsp goto done;
935 ae7c1b78 2023-01-10 stsp }
936 ae7c1b78 2023-01-10 stsp idxfd = -1;
937 ae7c1b78 2023-01-10 stsp
938 ae7c1b78 2023-01-10 stsp memset(&ipack, 0, sizeof(ipack));
939 ae7c1b78 2023-01-10 stsp ipack.client_id = client->id;
940 ae7c1b78 2023-01-10 stsp if (client_has_capability(client, GOT_CAPA_REPORT_STATUS))
941 ae7c1b78 2023-01-10 stsp ipack.report_status = 1;
942 ae7c1b78 2023-01-10 stsp
943 ae7c1b78 2023-01-10 stsp if (gotd_imsg_compose_event(&client->repo_child_iev,
944 b0614828 2023-06-19 stsp GOTD_IMSG_RECV_PACKFILE, gotd_session.proc_id, packfd,
945 ae7c1b78 2023-01-10 stsp &ipack, sizeof(ipack)) == -1) {
946 ae7c1b78 2023-01-10 stsp err = got_error_from_errno("imsg compose RECV_PACKFILE");
947 ae7c1b78 2023-01-10 stsp packfd = -1;
948 ae7c1b78 2023-01-10 stsp goto done;
949 ae7c1b78 2023-01-10 stsp }
950 ae7c1b78 2023-01-10 stsp packfd = -1;
951 ae7c1b78 2023-01-10 stsp
952 ae7c1b78 2023-01-10 stsp done:
953 ae7c1b78 2023-01-10 stsp free(basepath);
954 ae7c1b78 2023-01-10 stsp if (pipe[0] != -1 && close(pipe[0]) == -1 && err == NULL)
955 ae7c1b78 2023-01-10 stsp err = got_error_from_errno("close");
956 ae7c1b78 2023-01-10 stsp if (pipe[1] != -1 && close(pipe[1]) == -1 && err == NULL)
957 ae7c1b78 2023-01-10 stsp err = got_error_from_errno("close");
958 ae7c1b78 2023-01-10 stsp if (packfd != -1 && close(packfd) == -1 && err == NULL)
959 ae7c1b78 2023-01-10 stsp err = got_error_from_errno("close");
960 ae7c1b78 2023-01-10 stsp if (idxfd != -1 && close(idxfd) == -1 && err == NULL)
961 ae7c1b78 2023-01-10 stsp err = got_error_from_errno("close");
962 ae7c1b78 2023-01-10 stsp if (err) {
963 ae7c1b78 2023-01-10 stsp free(pack_path);
964 ae7c1b78 2023-01-10 stsp free(idx_path);
965 ae7c1b78 2023-01-10 stsp } else {
966 ae7c1b78 2023-01-10 stsp client->packfile_path = pack_path;
967 ae7c1b78 2023-01-10 stsp client->packidx_path = idx_path;
968 ae7c1b78 2023-01-10 stsp }
969 ae7c1b78 2023-01-10 stsp return err;
970 ae7c1b78 2023-01-10 stsp }
971 ae7c1b78 2023-01-10 stsp
972 ae7c1b78 2023-01-10 stsp static const struct got_error *
973 ae7c1b78 2023-01-10 stsp send_packfile(struct gotd_session_client *client)
974 ae7c1b78 2023-01-10 stsp {
975 ae7c1b78 2023-01-10 stsp const struct got_error *err = NULL;
976 ae7c1b78 2023-01-10 stsp struct gotd_imsg_send_packfile ipack;
977 ae7c1b78 2023-01-10 stsp struct gotd_imsg_packfile_pipe ipipe;
978 ae7c1b78 2023-01-10 stsp int pipe[2];
979 ae7c1b78 2023-01-10 stsp
980 ae7c1b78 2023-01-10 stsp if (socketpair(AF_UNIX, SOCK_STREAM, PF_UNSPEC, pipe) == -1)
981 ae7c1b78 2023-01-10 stsp return got_error_from_errno("socketpair");
982 ae7c1b78 2023-01-10 stsp
983 ae7c1b78 2023-01-10 stsp memset(&ipack, 0, sizeof(ipack));
984 ae7c1b78 2023-01-10 stsp memset(&ipipe, 0, sizeof(ipipe));
985 ae7c1b78 2023-01-10 stsp
986 ae7c1b78 2023-01-10 stsp ipack.client_id = client->id;
987 ae7c1b78 2023-01-10 stsp if (client_has_capability(client, GOT_CAPA_SIDE_BAND_64K))
988 ae7c1b78 2023-01-10 stsp ipack.report_progress = 1;
989 ae7c1b78 2023-01-10 stsp
990 ae7c1b78 2023-01-10 stsp client->delta_cache_fd = got_opentempfd();
991 ae7c1b78 2023-01-10 stsp if (client->delta_cache_fd == -1)
992 ae7c1b78 2023-01-10 stsp return got_error_from_errno("got_opentempfd");
993 ae7c1b78 2023-01-10 stsp
994 ae7c1b78 2023-01-10 stsp if (gotd_imsg_compose_event(&client->repo_child_iev,
995 ae7c1b78 2023-01-10 stsp GOTD_IMSG_SEND_PACKFILE, PROC_GOTD, client->delta_cache_fd,
996 ae7c1b78 2023-01-10 stsp &ipack, sizeof(ipack)) == -1) {
997 ae7c1b78 2023-01-10 stsp err = got_error_from_errno("imsg compose SEND_PACKFILE");
998 ae7c1b78 2023-01-10 stsp close(pipe[0]);
999 ae7c1b78 2023-01-10 stsp close(pipe[1]);
1000 ae7c1b78 2023-01-10 stsp return err;
1001 ae7c1b78 2023-01-10 stsp }
1002 ae7c1b78 2023-01-10 stsp
1003 ae7c1b78 2023-01-10 stsp ipipe.client_id = client->id;
1004 ae7c1b78 2023-01-10 stsp
1005 ae7c1b78 2023-01-10 stsp /* Send pack pipe end 0 to repo child process. */
1006 ae7c1b78 2023-01-10 stsp if (gotd_imsg_compose_event(&client->repo_child_iev,
1007 ae7c1b78 2023-01-10 stsp GOTD_IMSG_PACKFILE_PIPE, PROC_GOTD,
1008 ae7c1b78 2023-01-10 stsp pipe[0], &ipipe, sizeof(ipipe)) == -1) {
1009 ae7c1b78 2023-01-10 stsp err = got_error_from_errno("imsg compose PACKFILE_PIPE");
1010 ae7c1b78 2023-01-10 stsp close(pipe[1]);
1011 ae7c1b78 2023-01-10 stsp return err;
1012 ae7c1b78 2023-01-10 stsp }
1013 ae7c1b78 2023-01-10 stsp
1014 ae7c1b78 2023-01-10 stsp /* Send pack pipe end 1 to gotsh(1) (expects just an fd, no data). */
1015 ae7c1b78 2023-01-10 stsp if (gotd_imsg_compose_event(&client->iev,
1016 ae7c1b78 2023-01-10 stsp GOTD_IMSG_PACKFILE_PIPE, PROC_GOTD, pipe[1], NULL, 0) == -1)
1017 ae7c1b78 2023-01-10 stsp err = got_error_from_errno("imsg compose PACKFILE_PIPE");
1018 ae7c1b78 2023-01-10 stsp
1019 ae7c1b78 2023-01-10 stsp return err;
1020 ae7c1b78 2023-01-10 stsp }
1021 ae7c1b78 2023-01-10 stsp
1022 ae7c1b78 2023-01-10 stsp static void
1023 3931a8a4 2023-02-03 stsp session_dispatch_client(int fd, short events, void *arg)
1024 ae7c1b78 2023-01-10 stsp {
1025 ae7c1b78 2023-01-10 stsp struct gotd_imsgev *iev = arg;
1026 ae7c1b78 2023-01-10 stsp struct imsgbuf *ibuf = &iev->ibuf;
1027 ae7c1b78 2023-01-10 stsp struct gotd_session_client *client = &gotd_session_client;
1028 ae7c1b78 2023-01-10 stsp const struct got_error *err = NULL;
1029 ae7c1b78 2023-01-10 stsp struct imsg imsg;
1030 ae7c1b78 2023-01-10 stsp ssize_t n;
1031 ae7c1b78 2023-01-10 stsp
1032 ae7c1b78 2023-01-10 stsp if (events & EV_WRITE) {
1033 ae7c1b78 2023-01-10 stsp while (ibuf->w.queued) {
1034 ae7c1b78 2023-01-10 stsp n = msgbuf_write(&ibuf->w);
1035 ae7c1b78 2023-01-10 stsp if (n == -1 && errno == EPIPE) {
1036 ae7c1b78 2023-01-10 stsp /*
1037 ae7c1b78 2023-01-10 stsp * The client has closed its socket.
1038 ae7c1b78 2023-01-10 stsp * This can happen when Git clients are
1039 ae7c1b78 2023-01-10 stsp * done sending pack file data.
1040 ae7c1b78 2023-01-10 stsp */
1041 ae7c1b78 2023-01-10 stsp msgbuf_clear(&ibuf->w);
1042 ae7c1b78 2023-01-10 stsp continue;
1043 ae7c1b78 2023-01-10 stsp } else if (n == -1 && errno != EAGAIN) {
1044 ae7c1b78 2023-01-10 stsp err = got_error_from_errno("imsg_flush");
1045 ae7c1b78 2023-01-10 stsp disconnect_on_error(client, err);
1046 ae7c1b78 2023-01-10 stsp return;
1047 ae7c1b78 2023-01-10 stsp }
1048 ae7c1b78 2023-01-10 stsp if (n == 0) {
1049 ae7c1b78 2023-01-10 stsp /* Connection closed. */
1050 ae7c1b78 2023-01-10 stsp err = got_error(GOT_ERR_EOF);
1051 ae7c1b78 2023-01-10 stsp disconnect_on_error(client, err);
1052 ae7c1b78 2023-01-10 stsp return;
1053 ae7c1b78 2023-01-10 stsp }
1054 808264b2 2023-08-22 stsp }
1055 808264b2 2023-08-22 stsp
1056 808264b2 2023-08-22 stsp if (client->flush_disconnect) {
1057 808264b2 2023-08-22 stsp disconnect(client);
1058 808264b2 2023-08-22 stsp return;
1059 ae7c1b78 2023-01-10 stsp }
1060 ae7c1b78 2023-01-10 stsp }
1061 ae7c1b78 2023-01-10 stsp
1062 ae7c1b78 2023-01-10 stsp if ((events & EV_READ) == 0)
1063 ae7c1b78 2023-01-10 stsp return;
1064 ae7c1b78 2023-01-10 stsp
1065 ae7c1b78 2023-01-10 stsp memset(&imsg, 0, sizeof(imsg));
1066 ae7c1b78 2023-01-10 stsp
1067 ae7c1b78 2023-01-10 stsp while (err == NULL) {
1068 ae7c1b78 2023-01-10 stsp err = gotd_imsg_recv(&imsg, ibuf, 0);
1069 ae7c1b78 2023-01-10 stsp if (err) {
1070 ae7c1b78 2023-01-10 stsp if (err->code == GOT_ERR_PRIVSEP_READ)
1071 ae7c1b78 2023-01-10 stsp err = NULL;
1072 baaae615 2023-06-07 stsp else if (err->code == GOT_ERR_EOF &&
1073 baaae615 2023-06-07 stsp client->state == GOTD_STATE_EXPECT_CAPABILITIES) {
1074 baaae615 2023-06-07 stsp /*
1075 baaae615 2023-06-07 stsp * The client has closed its socket before
1076 baaae615 2023-06-07 stsp * sending its capability announcement.
1077 baaae615 2023-06-07 stsp * This can happen when Git clients have
1078 baaae615 2023-06-07 stsp * no ref-updates to send.
1079 baaae615 2023-06-07 stsp */
1080 baaae615 2023-06-07 stsp disconnect_on_error(client, err);
1081 baaae615 2023-06-07 stsp return;
1082 baaae615 2023-06-07 stsp }
1083 ae7c1b78 2023-01-10 stsp break;
1084 ae7c1b78 2023-01-10 stsp }
1085 ae7c1b78 2023-01-10 stsp
1086 ae7c1b78 2023-01-10 stsp evtimer_del(&client->tmo);
1087 ae7c1b78 2023-01-10 stsp
1088 ae7c1b78 2023-01-10 stsp switch (imsg.hdr.type) {
1089 ae7c1b78 2023-01-10 stsp case GOTD_IMSG_CAPABILITIES:
1090 ae7c1b78 2023-01-10 stsp if (client->state != GOTD_STATE_EXPECT_CAPABILITIES) {
1091 ae7c1b78 2023-01-10 stsp err = got_error_msg(GOT_ERR_BAD_REQUEST,
1092 ae7c1b78 2023-01-10 stsp "unexpected capabilities received");
1093 ae7c1b78 2023-01-10 stsp break;
1094 ae7c1b78 2023-01-10 stsp }
1095 ae7c1b78 2023-01-10 stsp log_debug("receiving capabilities from uid %d",
1096 ae7c1b78 2023-01-10 stsp client->euid);
1097 ae7c1b78 2023-01-10 stsp err = recv_capabilities(client, &imsg);
1098 ae7c1b78 2023-01-10 stsp break;
1099 ae7c1b78 2023-01-10 stsp case GOTD_IMSG_CAPABILITY:
1100 ae7c1b78 2023-01-10 stsp if (client->state != GOTD_STATE_EXPECT_CAPABILITIES) {
1101 ae7c1b78 2023-01-10 stsp err = got_error_msg(GOT_ERR_BAD_REQUEST,
1102 ae7c1b78 2023-01-10 stsp "unexpected capability received");
1103 ae7c1b78 2023-01-10 stsp break;
1104 ae7c1b78 2023-01-10 stsp }
1105 ae7c1b78 2023-01-10 stsp err = recv_capability(client, &imsg);
1106 ae7c1b78 2023-01-10 stsp if (err || client->ncapabilities < client->ncapa_alloc)
1107 ae7c1b78 2023-01-10 stsp break;
1108 ae7c1b78 2023-01-10 stsp if (!client->is_writing) {
1109 ae7c1b78 2023-01-10 stsp client->state = GOTD_STATE_EXPECT_WANT;
1110 3448a19a 2023-01-21 stsp client->accept_flush_pkt = 1;
1111 ae7c1b78 2023-01-10 stsp log_debug("uid %d: expecting want-lines",
1112 ae7c1b78 2023-01-10 stsp client->euid);
1113 ae7c1b78 2023-01-10 stsp } else if (client->is_writing) {
1114 ae7c1b78 2023-01-10 stsp client->state = GOTD_STATE_EXPECT_REF_UPDATE;
1115 3448a19a 2023-01-21 stsp client->accept_flush_pkt = 1;
1116 ae7c1b78 2023-01-10 stsp log_debug("uid %d: expecting ref-update-lines",
1117 ae7c1b78 2023-01-10 stsp client->euid);
1118 ae7c1b78 2023-01-10 stsp } else
1119 ae7c1b78 2023-01-10 stsp fatalx("client %d is both reading and writing",
1120 ae7c1b78 2023-01-10 stsp client->euid);
1121 ae7c1b78 2023-01-10 stsp break;
1122 ae7c1b78 2023-01-10 stsp case GOTD_IMSG_WANT:
1123 ae7c1b78 2023-01-10 stsp if (client->state != GOTD_STATE_EXPECT_WANT) {
1124 ae7c1b78 2023-01-10 stsp err = got_error_msg(GOT_ERR_BAD_REQUEST,
1125 ae7c1b78 2023-01-10 stsp "unexpected want-line received");
1126 ae7c1b78 2023-01-10 stsp break;
1127 ae7c1b78 2023-01-10 stsp }
1128 ae7c1b78 2023-01-10 stsp log_debug("received want-line from uid %d",
1129 ae7c1b78 2023-01-10 stsp client->euid);
1130 ae7c1b78 2023-01-10 stsp err = ensure_client_is_reading(client);
1131 ae7c1b78 2023-01-10 stsp if (err)
1132 ae7c1b78 2023-01-10 stsp break;
1133 3448a19a 2023-01-21 stsp client->accept_flush_pkt = 1;
1134 ae7c1b78 2023-01-10 stsp err = forward_want(client, &imsg);
1135 ae7c1b78 2023-01-10 stsp break;
1136 ae7c1b78 2023-01-10 stsp case GOTD_IMSG_REF_UPDATE:
1137 6da1c69c 2023-01-18 stsp if (client->state != GOTD_STATE_EXPECT_REF_UPDATE &&
1138 6da1c69c 2023-01-18 stsp client->state !=
1139 6da1c69c 2023-01-18 stsp GOTD_STATE_EXPECT_MORE_REF_UPDATES) {
1140 ae7c1b78 2023-01-10 stsp err = got_error_msg(GOT_ERR_BAD_REQUEST,
1141 ae7c1b78 2023-01-10 stsp "unexpected ref-update-line received");
1142 ae7c1b78 2023-01-10 stsp break;
1143 ae7c1b78 2023-01-10 stsp }
1144 ae7c1b78 2023-01-10 stsp log_debug("received ref-update-line from uid %d",
1145 ae7c1b78 2023-01-10 stsp client->euid);
1146 ae7c1b78 2023-01-10 stsp err = ensure_client_is_writing(client);
1147 ae7c1b78 2023-01-10 stsp if (err)
1148 ae7c1b78 2023-01-10 stsp break;
1149 ae7c1b78 2023-01-10 stsp err = forward_ref_update(client, &imsg);
1150 ae7c1b78 2023-01-10 stsp if (err)
1151 ae7c1b78 2023-01-10 stsp break;
1152 ae7c1b78 2023-01-10 stsp client->state = GOTD_STATE_EXPECT_MORE_REF_UPDATES;
1153 3448a19a 2023-01-21 stsp client->accept_flush_pkt = 1;
1154 ae7c1b78 2023-01-10 stsp break;
1155 ae7c1b78 2023-01-10 stsp case GOTD_IMSG_HAVE:
1156 ae7c1b78 2023-01-10 stsp if (client->state != GOTD_STATE_EXPECT_HAVE) {
1157 ae7c1b78 2023-01-10 stsp err = got_error_msg(GOT_ERR_BAD_REQUEST,
1158 ae7c1b78 2023-01-10 stsp "unexpected have-line received");
1159 ae7c1b78 2023-01-10 stsp break;
1160 ae7c1b78 2023-01-10 stsp }
1161 ae7c1b78 2023-01-10 stsp log_debug("received have-line from uid %d",
1162 ae7c1b78 2023-01-10 stsp client->euid);
1163 ae7c1b78 2023-01-10 stsp err = ensure_client_is_reading(client);
1164 ae7c1b78 2023-01-10 stsp if (err)
1165 ae7c1b78 2023-01-10 stsp break;
1166 ae7c1b78 2023-01-10 stsp err = forward_have(client, &imsg);
1167 ae7c1b78 2023-01-10 stsp if (err)
1168 ae7c1b78 2023-01-10 stsp break;
1169 3448a19a 2023-01-21 stsp client->accept_flush_pkt = 1;
1170 ae7c1b78 2023-01-10 stsp break;
1171 ae7c1b78 2023-01-10 stsp case GOTD_IMSG_FLUSH:
1172 ae7c1b78 2023-01-10 stsp if (client->state == GOTD_STATE_EXPECT_WANT ||
1173 ae7c1b78 2023-01-10 stsp client->state == GOTD_STATE_EXPECT_HAVE) {
1174 ae7c1b78 2023-01-10 stsp err = ensure_client_is_reading(client);
1175 ae7c1b78 2023-01-10 stsp if (err)
1176 ae7c1b78 2023-01-10 stsp break;
1177 ae7c1b78 2023-01-10 stsp } else if (client->state ==
1178 ae7c1b78 2023-01-10 stsp GOTD_STATE_EXPECT_MORE_REF_UPDATES) {
1179 ae7c1b78 2023-01-10 stsp err = ensure_client_is_writing(client);
1180 ae7c1b78 2023-01-10 stsp if (err)
1181 ae7c1b78 2023-01-10 stsp break;
1182 f9550d47 2023-01-18 stsp } else if (client->state != GOTD_STATE_EXPECT_DONE) {
1183 3448a19a 2023-01-21 stsp err = got_error_msg(GOT_ERR_BAD_REQUEST,
1184 3448a19a 2023-01-21 stsp "unexpected flush-pkt received");
1185 3448a19a 2023-01-21 stsp break;
1186 3448a19a 2023-01-21 stsp }
1187 3448a19a 2023-01-21 stsp if (!client->accept_flush_pkt) {
1188 ae7c1b78 2023-01-10 stsp err = got_error_msg(GOT_ERR_BAD_REQUEST,
1189 ae7c1b78 2023-01-10 stsp "unexpected flush-pkt received");
1190 ae7c1b78 2023-01-10 stsp break;
1191 ae7c1b78 2023-01-10 stsp }
1192 3448a19a 2023-01-21 stsp
1193 3448a19a 2023-01-21 stsp /*
1194 3448a19a 2023-01-21 stsp * Accept just one flush packet at a time.
1195 3448a19a 2023-01-21 stsp * Future client state transitions will set this flag
1196 3448a19a 2023-01-21 stsp * again if another flush packet is expected.
1197 3448a19a 2023-01-21 stsp */
1198 3448a19a 2023-01-21 stsp client->accept_flush_pkt = 0;
1199 3448a19a 2023-01-21 stsp
1200 ae7c1b78 2023-01-10 stsp log_debug("received flush-pkt from uid %d",
1201 ae7c1b78 2023-01-10 stsp client->euid);
1202 ae7c1b78 2023-01-10 stsp if (client->state == GOTD_STATE_EXPECT_WANT) {
1203 ae7c1b78 2023-01-10 stsp client->state = GOTD_STATE_EXPECT_HAVE;
1204 ae7c1b78 2023-01-10 stsp log_debug("uid %d: expecting have-lines",
1205 ae7c1b78 2023-01-10 stsp client->euid);
1206 ae7c1b78 2023-01-10 stsp } else if (client->state == GOTD_STATE_EXPECT_HAVE) {
1207 ae7c1b78 2023-01-10 stsp client->state = GOTD_STATE_EXPECT_DONE;
1208 3448a19a 2023-01-21 stsp client->accept_flush_pkt = 1;
1209 ae7c1b78 2023-01-10 stsp log_debug("uid %d: expecting 'done'",
1210 ae7c1b78 2023-01-10 stsp client->euid);
1211 ae7c1b78 2023-01-10 stsp } else if (client->state ==
1212 ae7c1b78 2023-01-10 stsp GOTD_STATE_EXPECT_MORE_REF_UPDATES) {
1213 ae7c1b78 2023-01-10 stsp client->state = GOTD_STATE_EXPECT_PACKFILE;
1214 ae7c1b78 2023-01-10 stsp log_debug("uid %d: expecting packfile",
1215 ae7c1b78 2023-01-10 stsp client->euid);
1216 ae7c1b78 2023-01-10 stsp err = recv_packfile(client);
1217 f9550d47 2023-01-18 stsp } else if (client->state != GOTD_STATE_EXPECT_DONE) {
1218 ae7c1b78 2023-01-10 stsp /* should not happen, see above */
1219 ae7c1b78 2023-01-10 stsp err = got_error_msg(GOT_ERR_BAD_REQUEST,
1220 ae7c1b78 2023-01-10 stsp "unexpected client state");
1221 ae7c1b78 2023-01-10 stsp break;
1222 ae7c1b78 2023-01-10 stsp }
1223 ae7c1b78 2023-01-10 stsp break;
1224 ae7c1b78 2023-01-10 stsp case GOTD_IMSG_DONE:
1225 ae7c1b78 2023-01-10 stsp if (client->state != GOTD_STATE_EXPECT_HAVE &&
1226 ae7c1b78 2023-01-10 stsp client->state != GOTD_STATE_EXPECT_DONE) {
1227 ae7c1b78 2023-01-10 stsp err = got_error_msg(GOT_ERR_BAD_REQUEST,
1228 ae7c1b78 2023-01-10 stsp "unexpected flush-pkt received");
1229 ae7c1b78 2023-01-10 stsp break;
1230 ae7c1b78 2023-01-10 stsp }
1231 ae7c1b78 2023-01-10 stsp log_debug("received 'done' from uid %d", client->euid);
1232 ae7c1b78 2023-01-10 stsp err = ensure_client_is_reading(client);
1233 ae7c1b78 2023-01-10 stsp if (err)
1234 ae7c1b78 2023-01-10 stsp break;
1235 ae7c1b78 2023-01-10 stsp client->state = GOTD_STATE_DONE;
1236 3448a19a 2023-01-21 stsp client->accept_flush_pkt = 1;
1237 ae7c1b78 2023-01-10 stsp err = send_packfile(client);
1238 ae7c1b78 2023-01-10 stsp break;
1239 ae7c1b78 2023-01-10 stsp default:
1240 ae7c1b78 2023-01-10 stsp log_debug("unexpected imsg %d", imsg.hdr.type);
1241 ae7c1b78 2023-01-10 stsp err = got_error(GOT_ERR_PRIVSEP_MSG);
1242 ae7c1b78 2023-01-10 stsp break;
1243 ae7c1b78 2023-01-10 stsp }
1244 ae7c1b78 2023-01-10 stsp
1245 ae7c1b78 2023-01-10 stsp imsg_free(&imsg);
1246 ae7c1b78 2023-01-10 stsp }
1247 ae7c1b78 2023-01-10 stsp
1248 ae7c1b78 2023-01-10 stsp if (err) {
1249 ae7c1b78 2023-01-10 stsp if (err->code != GOT_ERR_EOF ||
1250 ae7c1b78 2023-01-10 stsp client->state != GOTD_STATE_EXPECT_PACKFILE)
1251 ae7c1b78 2023-01-10 stsp disconnect_on_error(client, err);
1252 ae7c1b78 2023-01-10 stsp } else {
1253 ae7c1b78 2023-01-10 stsp gotd_imsg_event_add(iev);
1254 ae7c1b78 2023-01-10 stsp evtimer_add(&client->tmo, &gotd_session.request_timeout);
1255 ae7c1b78 2023-01-10 stsp }
1256 ae7c1b78 2023-01-10 stsp }
1257 ae7c1b78 2023-01-10 stsp
1258 ae7c1b78 2023-01-10 stsp static const struct got_error *
1259 ae7c1b78 2023-01-10 stsp list_refs_request(void)
1260 ae7c1b78 2023-01-10 stsp {
1261 ae7c1b78 2023-01-10 stsp static const struct got_error *err;
1262 ae7c1b78 2023-01-10 stsp struct gotd_session_client *client = &gotd_session_client;
1263 ae7c1b78 2023-01-10 stsp struct gotd_imsgev *iev = &client->repo_child_iev;
1264 ae7c1b78 2023-01-10 stsp struct gotd_imsg_list_refs_internal ilref;
1265 ae7c1b78 2023-01-10 stsp int fd;
1266 ae7c1b78 2023-01-10 stsp
1267 ae7c1b78 2023-01-10 stsp if (client->state != GOTD_STATE_EXPECT_LIST_REFS)
1268 ae7c1b78 2023-01-10 stsp return got_error(GOT_ERR_PRIVSEP_MSG);
1269 ae7c1b78 2023-01-10 stsp
1270 ae7c1b78 2023-01-10 stsp memset(&ilref, 0, sizeof(ilref));
1271 ae7c1b78 2023-01-10 stsp ilref.client_id = client->id;
1272 ae7c1b78 2023-01-10 stsp
1273 ae7c1b78 2023-01-10 stsp fd = dup(client->fd);
1274 ae7c1b78 2023-01-10 stsp if (fd == -1)
1275 ae7c1b78 2023-01-10 stsp return got_error_from_errno("dup");
1276 ae7c1b78 2023-01-10 stsp
1277 ae7c1b78 2023-01-10 stsp if (gotd_imsg_compose_event(iev, GOTD_IMSG_LIST_REFS_INTERNAL,
1278 b0614828 2023-06-19 stsp gotd_session.proc_id, fd, &ilref, sizeof(ilref)) == -1) {
1279 ae7c1b78 2023-01-10 stsp err = got_error_from_errno("imsg compose LIST_REFS_INTERNAL");
1280 ae7c1b78 2023-01-10 stsp close(fd);
1281 ae7c1b78 2023-01-10 stsp return err;
1282 ae7c1b78 2023-01-10 stsp }
1283 ae7c1b78 2023-01-10 stsp
1284 ae7c1b78 2023-01-10 stsp client->state = GOTD_STATE_EXPECT_CAPABILITIES;
1285 ae7c1b78 2023-01-10 stsp log_debug("uid %d: expecting capabilities", client->euid);
1286 ae7c1b78 2023-01-10 stsp return NULL;
1287 ae7c1b78 2023-01-10 stsp }
1288 ae7c1b78 2023-01-10 stsp
1289 ae7c1b78 2023-01-10 stsp static const struct got_error *
1290 ae7c1b78 2023-01-10 stsp recv_connect(struct imsg *imsg)
1291 ae7c1b78 2023-01-10 stsp {
1292 ae7c1b78 2023-01-10 stsp struct gotd_session_client *client = &gotd_session_client;
1293 ae7c1b78 2023-01-10 stsp struct gotd_imsg_connect iconnect;
1294 ae7c1b78 2023-01-10 stsp size_t datalen;
1295 ae7c1b78 2023-01-10 stsp
1296 ae7c1b78 2023-01-10 stsp if (client->state != GOTD_STATE_EXPECT_LIST_REFS)
1297 ae7c1b78 2023-01-10 stsp return got_error(GOT_ERR_PRIVSEP_MSG);
1298 ae7c1b78 2023-01-10 stsp
1299 ae7c1b78 2023-01-10 stsp datalen = imsg->hdr.len - IMSG_HEADER_SIZE;
1300 ae7c1b78 2023-01-10 stsp if (datalen != sizeof(iconnect))
1301 ae7c1b78 2023-01-10 stsp return got_error(GOT_ERR_PRIVSEP_LEN);
1302 ae7c1b78 2023-01-10 stsp memcpy(&iconnect, imsg->data, sizeof(iconnect));
1303 ae7c1b78 2023-01-10 stsp
1304 ae7c1b78 2023-01-10 stsp client->euid = iconnect.euid;
1305 ae7c1b78 2023-01-10 stsp client->egid = iconnect.egid;
1306 2c52c623 2024-01-30 op client->fd = imsg_get_fd(imsg);
1307 2c52c623 2024-01-30 op if (client->fd == -1)
1308 2c52c623 2024-01-30 op return got_error(GOT_ERR_PRIVSEP_NO_FD);
1309 ae7c1b78 2023-01-10 stsp
1310 ae7c1b78 2023-01-10 stsp imsg_init(&client->iev.ibuf, client->fd);
1311 3931a8a4 2023-02-03 stsp client->iev.handler = session_dispatch_client;
1312 ae7c1b78 2023-01-10 stsp client->iev.events = EV_READ;
1313 ae7c1b78 2023-01-10 stsp client->iev.handler_arg = NULL;
1314 ae7c1b78 2023-01-10 stsp event_set(&client->iev.ev, client->iev.ibuf.fd, EV_READ,
1315 3931a8a4 2023-02-03 stsp session_dispatch_client, &client->iev);
1316 ae7c1b78 2023-01-10 stsp gotd_imsg_event_add(&client->iev);
1317 ae7c1b78 2023-01-10 stsp evtimer_set(&client->tmo, gotd_request_timeout, client);
1318 ae7c1b78 2023-01-10 stsp
1319 ae7c1b78 2023-01-10 stsp return NULL;
1320 ae7c1b78 2023-01-10 stsp }
1321 ae7c1b78 2023-01-10 stsp
1322 ae7c1b78 2023-01-10 stsp static const struct got_error *
1323 ae7c1b78 2023-01-10 stsp recv_repo_child(struct imsg *imsg)
1324 ae7c1b78 2023-01-10 stsp {
1325 ae7c1b78 2023-01-10 stsp struct gotd_imsg_connect_repo_child ichild;
1326 ae7c1b78 2023-01-10 stsp struct gotd_session_client *client = &gotd_session_client;
1327 ae7c1b78 2023-01-10 stsp size_t datalen;
1328 2c52c623 2024-01-30 op int fd;
1329 ae7c1b78 2023-01-10 stsp
1330 ae7c1b78 2023-01-10 stsp if (client->state != GOTD_STATE_EXPECT_LIST_REFS)
1331 ae7c1b78 2023-01-10 stsp return got_error(GOT_ERR_PRIVSEP_MSG);
1332 ae7c1b78 2023-01-10 stsp
1333 ae7c1b78 2023-01-10 stsp /* We should already have received a pipe to the listener. */
1334 ae7c1b78 2023-01-10 stsp if (client->fd == -1)
1335 ae7c1b78 2023-01-10 stsp return got_error(GOT_ERR_PRIVSEP_MSG);
1336 ae7c1b78 2023-01-10 stsp
1337 ae7c1b78 2023-01-10 stsp datalen = imsg->hdr.len - IMSG_HEADER_SIZE;
1338 ae7c1b78 2023-01-10 stsp if (datalen != sizeof(ichild))
1339 ae7c1b78 2023-01-10 stsp return got_error(GOT_ERR_PRIVSEP_LEN);
1340 ae7c1b78 2023-01-10 stsp
1341 ae7c1b78 2023-01-10 stsp memcpy(&ichild, imsg->data, sizeof(ichild));
1342 ae7c1b78 2023-01-10 stsp
1343 ae7c1b78 2023-01-10 stsp client->id = ichild.client_id;
1344 ae7c1b78 2023-01-10 stsp if (ichild.proc_id == PROC_REPO_WRITE)
1345 ae7c1b78 2023-01-10 stsp client->is_writing = 1;
1346 ae7c1b78 2023-01-10 stsp else if (ichild.proc_id == PROC_REPO_READ)
1347 ae7c1b78 2023-01-10 stsp client->is_writing = 0;
1348 ae7c1b78 2023-01-10 stsp else
1349 ae7c1b78 2023-01-10 stsp return got_error_msg(GOT_ERR_PRIVSEP_MSG,
1350 ae7c1b78 2023-01-10 stsp "bad child process type");
1351 da76b651 2023-02-03 mark
1352 2c52c623 2024-01-30 op fd = imsg_get_fd(imsg);
1353 2c52c623 2024-01-30 op if (fd == -1)
1354 ae7c1b78 2023-01-10 stsp return got_error(GOT_ERR_PRIVSEP_NO_FD);
1355 ae7c1b78 2023-01-10 stsp
1356 2c52c623 2024-01-30 op imsg_init(&client->repo_child_iev.ibuf, fd);
1357 ae7c1b78 2023-01-10 stsp client->repo_child_iev.handler = session_dispatch_repo_child;
1358 ae7c1b78 2023-01-10 stsp client->repo_child_iev.events = EV_READ;
1359 ae7c1b78 2023-01-10 stsp client->repo_child_iev.handler_arg = NULL;
1360 ae7c1b78 2023-01-10 stsp event_set(&client->repo_child_iev.ev, client->repo_child_iev.ibuf.fd,
1361 ae7c1b78 2023-01-10 stsp EV_READ, session_dispatch_repo_child, &client->repo_child_iev);
1362 ae7c1b78 2023-01-10 stsp gotd_imsg_event_add(&client->repo_child_iev);
1363 ae7c1b78 2023-01-10 stsp
1364 ae7c1b78 2023-01-10 stsp /* The "recvfd" pledge promise is no longer needed. */
1365 ae7c1b78 2023-01-10 stsp if (pledge("stdio rpath wpath cpath sendfd fattr flock", NULL) == -1)
1366 ae7c1b78 2023-01-10 stsp fatal("pledge");
1367 ae7c1b78 2023-01-10 stsp
1368 ae7c1b78 2023-01-10 stsp return NULL;
1369 ae7c1b78 2023-01-10 stsp }
1370 ae7c1b78 2023-01-10 stsp
1371 ae7c1b78 2023-01-10 stsp static void
1372 ae7c1b78 2023-01-10 stsp session_dispatch(int fd, short event, void *arg)
1373 ae7c1b78 2023-01-10 stsp {
1374 ae7c1b78 2023-01-10 stsp struct gotd_imsgev *iev = arg;
1375 ae7c1b78 2023-01-10 stsp struct imsgbuf *ibuf = &iev->ibuf;
1376 ae7c1b78 2023-01-10 stsp struct gotd_session_client *client = &gotd_session_client;
1377 ae7c1b78 2023-01-10 stsp ssize_t n;
1378 ae7c1b78 2023-01-10 stsp int shut = 0;
1379 ae7c1b78 2023-01-10 stsp struct imsg imsg;
1380 ae7c1b78 2023-01-10 stsp
1381 ae7c1b78 2023-01-10 stsp if (event & EV_READ) {
1382 ae7c1b78 2023-01-10 stsp if ((n = imsg_read(ibuf)) == -1 && errno != EAGAIN)
1383 ae7c1b78 2023-01-10 stsp fatal("imsg_read error");
1384 ae7c1b78 2023-01-10 stsp if (n == 0) {
1385 ae7c1b78 2023-01-10 stsp /* Connection closed. */
1386 ae7c1b78 2023-01-10 stsp shut = 1;
1387 ae7c1b78 2023-01-10 stsp goto done;
1388 ae7c1b78 2023-01-10 stsp }
1389 ae7c1b78 2023-01-10 stsp }
1390 ae7c1b78 2023-01-10 stsp
1391 ae7c1b78 2023-01-10 stsp if (event & EV_WRITE) {
1392 ae7c1b78 2023-01-10 stsp n = msgbuf_write(&ibuf->w);
1393 ae7c1b78 2023-01-10 stsp if (n == -1 && errno != EAGAIN)
1394 ae7c1b78 2023-01-10 stsp fatal("msgbuf_write");
1395 ae7c1b78 2023-01-10 stsp if (n == 0) {
1396 ae7c1b78 2023-01-10 stsp /* Connection closed. */
1397 ae7c1b78 2023-01-10 stsp shut = 1;
1398 ae7c1b78 2023-01-10 stsp goto done;
1399 ae7c1b78 2023-01-10 stsp }
1400 ae7c1b78 2023-01-10 stsp }
1401 ae7c1b78 2023-01-10 stsp
1402 ae7c1b78 2023-01-10 stsp for (;;) {
1403 ae7c1b78 2023-01-10 stsp const struct got_error *err = NULL;
1404 ae7c1b78 2023-01-10 stsp uint32_t client_id = 0;
1405 ae7c1b78 2023-01-10 stsp int do_disconnect = 0, do_list_refs = 0;
1406 ae7c1b78 2023-01-10 stsp
1407 ae7c1b78 2023-01-10 stsp if ((n = imsg_get(ibuf, &imsg)) == -1)
1408 ae7c1b78 2023-01-10 stsp fatal("%s: imsg_get error", __func__);
1409 ae7c1b78 2023-01-10 stsp if (n == 0) /* No more messages. */
1410 ae7c1b78 2023-01-10 stsp break;
1411 ae7c1b78 2023-01-10 stsp
1412 ae7c1b78 2023-01-10 stsp switch (imsg.hdr.type) {
1413 ae7c1b78 2023-01-10 stsp case GOTD_IMSG_ERROR:
1414 ae7c1b78 2023-01-10 stsp do_disconnect = 1;
1415 ae7c1b78 2023-01-10 stsp err = gotd_imsg_recv_error(&client_id, &imsg);
1416 ae7c1b78 2023-01-10 stsp break;
1417 ae7c1b78 2023-01-10 stsp case GOTD_IMSG_CONNECT:
1418 ae7c1b78 2023-01-10 stsp err = recv_connect(&imsg);
1419 ae7c1b78 2023-01-10 stsp break;
1420 ae7c1b78 2023-01-10 stsp case GOTD_IMSG_DISCONNECT:
1421 ae7c1b78 2023-01-10 stsp do_disconnect = 1;
1422 ae7c1b78 2023-01-10 stsp break;
1423 ae7c1b78 2023-01-10 stsp case GOTD_IMSG_CONNECT_REPO_CHILD:
1424 ae7c1b78 2023-01-10 stsp err = recv_repo_child(&imsg);
1425 ae7c1b78 2023-01-10 stsp if (err)
1426 ae7c1b78 2023-01-10 stsp break;
1427 ae7c1b78 2023-01-10 stsp do_list_refs = 1;
1428 ae7c1b78 2023-01-10 stsp break;
1429 ae7c1b78 2023-01-10 stsp default:
1430 ae7c1b78 2023-01-10 stsp log_debug("unexpected imsg %d", imsg.hdr.type);
1431 ae7c1b78 2023-01-10 stsp break;
1432 ae7c1b78 2023-01-10 stsp }
1433 ae7c1b78 2023-01-10 stsp imsg_free(&imsg);
1434 ae7c1b78 2023-01-10 stsp
1435 ae7c1b78 2023-01-10 stsp if (do_disconnect) {
1436 ae7c1b78 2023-01-10 stsp if (err)
1437 ae7c1b78 2023-01-10 stsp disconnect_on_error(client, err);
1438 ae7c1b78 2023-01-10 stsp else
1439 ae7c1b78 2023-01-10 stsp disconnect(client);
1440 ae7c1b78 2023-01-10 stsp } else if (do_list_refs)
1441 ae7c1b78 2023-01-10 stsp err = list_refs_request();
1442 ae7c1b78 2023-01-10 stsp
1443 ae7c1b78 2023-01-10 stsp if (err)
1444 ae7c1b78 2023-01-10 stsp log_warnx("uid %d: %s", client->euid, err->msg);
1445 ae7c1b78 2023-01-10 stsp }
1446 ae7c1b78 2023-01-10 stsp done:
1447 ae7c1b78 2023-01-10 stsp if (!shut) {
1448 ae7c1b78 2023-01-10 stsp gotd_imsg_event_add(iev);
1449 ae7c1b78 2023-01-10 stsp } else {
1450 ae7c1b78 2023-01-10 stsp /* This pipe is dead. Remove its event handler */
1451 ae7c1b78 2023-01-10 stsp event_del(&iev->ev);
1452 ae7c1b78 2023-01-10 stsp event_loopexit(NULL);
1453 da76b651 2023-02-03 mark }
1454 ae7c1b78 2023-01-10 stsp }
1455 ae7c1b78 2023-01-10 stsp
1456 ae7c1b78 2023-01-10 stsp void
1457 ae7c1b78 2023-01-10 stsp session_main(const char *title, const char *repo_path,
1458 b0614828 2023-06-19 stsp int *pack_fds, int *temp_fds, struct timeval *request_timeout,
1459 b0614828 2023-06-19 stsp enum gotd_procid proc_id)
1460 ae7c1b78 2023-01-10 stsp {
1461 ae7c1b78 2023-01-10 stsp const struct got_error *err = NULL;
1462 ae7c1b78 2023-01-10 stsp struct event evsigint, evsigterm, evsighup, evsigusr1;
1463 ae7c1b78 2023-01-10 stsp
1464 ae7c1b78 2023-01-10 stsp gotd_session.title = title;
1465 ae7c1b78 2023-01-10 stsp gotd_session.pid = getpid();
1466 ae7c1b78 2023-01-10 stsp gotd_session.pack_fds = pack_fds;
1467 ae7c1b78 2023-01-10 stsp gotd_session.temp_fds = temp_fds;
1468 ae7c1b78 2023-01-10 stsp memcpy(&gotd_session.request_timeout, request_timeout,
1469 ae7c1b78 2023-01-10 stsp sizeof(gotd_session.request_timeout));
1470 b0614828 2023-06-19 stsp gotd_session.proc_id = proc_id;
1471 ae7c1b78 2023-01-10 stsp
1472 ae7c1b78 2023-01-10 stsp err = got_repo_open(&gotd_session.repo, repo_path, NULL, pack_fds);
1473 ae7c1b78 2023-01-10 stsp if (err)
1474 ae7c1b78 2023-01-10 stsp goto done;
1475 ae7c1b78 2023-01-10 stsp if (!got_repo_is_bare(gotd_session.repo)) {
1476 ae7c1b78 2023-01-10 stsp err = got_error_msg(GOT_ERR_NOT_GIT_REPO,
1477 ae7c1b78 2023-01-10 stsp "bare git repository required");
1478 ae7c1b78 2023-01-10 stsp goto done;
1479 ae7c1b78 2023-01-10 stsp }
1480 ae7c1b78 2023-01-10 stsp
1481 ae7c1b78 2023-01-10 stsp got_repo_temp_fds_set(gotd_session.repo, temp_fds);
1482 ae7c1b78 2023-01-10 stsp
1483 ae7c1b78 2023-01-10 stsp signal_set(&evsigint, SIGINT, gotd_session_sighdlr, NULL);
1484 ae7c1b78 2023-01-10 stsp signal_set(&evsigterm, SIGTERM, gotd_session_sighdlr, NULL);
1485 ae7c1b78 2023-01-10 stsp signal_set(&evsighup, SIGHUP, gotd_session_sighdlr, NULL);
1486 ae7c1b78 2023-01-10 stsp signal_set(&evsigusr1, SIGUSR1, gotd_session_sighdlr, NULL);
1487 ae7c1b78 2023-01-10 stsp signal(SIGPIPE, SIG_IGN);
1488 ae7c1b78 2023-01-10 stsp
1489 ae7c1b78 2023-01-10 stsp signal_add(&evsigint, NULL);
1490 ae7c1b78 2023-01-10 stsp signal_add(&evsigterm, NULL);
1491 ae7c1b78 2023-01-10 stsp signal_add(&evsighup, NULL);
1492 ae7c1b78 2023-01-10 stsp signal_add(&evsigusr1, NULL);
1493 ae7c1b78 2023-01-10 stsp
1494 ae7c1b78 2023-01-10 stsp gotd_session_client.state = GOTD_STATE_EXPECT_LIST_REFS;
1495 ae7c1b78 2023-01-10 stsp gotd_session_client.fd = -1;
1496 ae7c1b78 2023-01-10 stsp gotd_session_client.nref_updates = -1;
1497 2fc51af0 2023-01-10 stsp gotd_session_client.delta_cache_fd = -1;
1498 3448a19a 2023-01-21 stsp gotd_session_client.accept_flush_pkt = 1;
1499 ae7c1b78 2023-01-10 stsp
1500 ae7c1b78 2023-01-10 stsp imsg_init(&gotd_session.parent_iev.ibuf, GOTD_FILENO_MSG_PIPE);
1501 ae7c1b78 2023-01-10 stsp gotd_session.parent_iev.handler = session_dispatch;
1502 ae7c1b78 2023-01-10 stsp gotd_session.parent_iev.events = EV_READ;
1503 ae7c1b78 2023-01-10 stsp gotd_session.parent_iev.handler_arg = NULL;
1504 ae7c1b78 2023-01-10 stsp event_set(&gotd_session.parent_iev.ev, gotd_session.parent_iev.ibuf.fd,
1505 ae7c1b78 2023-01-10 stsp EV_READ, session_dispatch, &gotd_session.parent_iev);
1506 ae7c1b78 2023-01-10 stsp if (gotd_imsg_compose_event(&gotd_session.parent_iev,
1507 b0614828 2023-06-19 stsp GOTD_IMSG_CLIENT_SESSION_READY, gotd_session.proc_id,
1508 b0614828 2023-06-19 stsp -1, NULL, 0) == -1) {
1509 ae7c1b78 2023-01-10 stsp err = got_error_from_errno("imsg compose CLIENT_SESSION_READY");
1510 ae7c1b78 2023-01-10 stsp goto done;
1511 ae7c1b78 2023-01-10 stsp }
1512 ae7c1b78 2023-01-10 stsp
1513 ae7c1b78 2023-01-10 stsp event_dispatch();
1514 ae7c1b78 2023-01-10 stsp done:
1515 ae7c1b78 2023-01-10 stsp if (err)
1516 ae7c1b78 2023-01-10 stsp log_warnx("%s: %s", title, err->msg);
1517 ae7c1b78 2023-01-10 stsp gotd_session_shutdown();
1518 ae7c1b78 2023-01-10 stsp }
1519 ae7c1b78 2023-01-10 stsp
1520 ae7c1b78 2023-01-10 stsp void
1521 ae7c1b78 2023-01-10 stsp gotd_session_shutdown(void)
1522 ae7c1b78 2023-01-10 stsp {
1523 2ec74a9e 2023-02-08 op log_debug("shutting down");
1524 ae7c1b78 2023-01-10 stsp if (gotd_session.repo)
1525 ae7c1b78 2023-01-10 stsp got_repo_close(gotd_session.repo);
1526 ae7c1b78 2023-01-10 stsp got_repo_pack_fds_close(gotd_session.pack_fds);
1527 ae7c1b78 2023-01-10 stsp got_repo_temp_fds_close(gotd_session.temp_fds);
1528 ae7c1b78 2023-01-10 stsp exit(0);
1529 ae7c1b78 2023-01-10 stsp }