Blame


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