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 4efc8dcb 2023-08-29 thomas
17 4efc8dcb 2023-08-29 thomas #include "got_compat.h"
18 62ee7d94 2023-01-10 thomas
19 62ee7d94 2023-01-10 thomas #include <sys/types.h>
20 62ee7d94 2023-01-10 thomas #include <sys/queue.h>
21 62ee7d94 2023-01-10 thomas #include <sys/socket.h>
22 851a5b48 2023-02-03 thomas #include <sys/stat.h>
23 62ee7d94 2023-01-10 thomas #include <sys/uio.h>
24 62ee7d94 2023-01-10 thomas
25 62ee7d94 2023-01-10 thomas #include <errno.h>
26 62ee7d94 2023-01-10 thomas #include <event.h>
27 62ee7d94 2023-01-10 thomas #include <limits.h>
28 62ee7d94 2023-01-10 thomas #include <signal.h>
29 62ee7d94 2023-01-10 thomas #include <stdint.h>
30 62ee7d94 2023-01-10 thomas #include <stdio.h>
31 62ee7d94 2023-01-10 thomas #include <stdlib.h>
32 62ee7d94 2023-01-10 thomas #include <string.h>
33 62ee7d94 2023-01-10 thomas #include <imsg.h>
34 62ee7d94 2023-01-10 thomas #include <unistd.h>
35 febe25b7 2023-08-29 thomas
36 febe25b7 2023-08-29 thomas #include "got_compat.h"
37 62ee7d94 2023-01-10 thomas
38 62ee7d94 2023-01-10 thomas #include "got_error.h"
39 62ee7d94 2023-01-10 thomas #include "got_repository.h"
40 62ee7d94 2023-01-10 thomas #include "got_object.h"
41 62ee7d94 2023-01-10 thomas #include "got_path.h"
42 62ee7d94 2023-01-10 thomas #include "got_reference.h"
43 62ee7d94 2023-01-10 thomas #include "got_opentemp.h"
44 62ee7d94 2023-01-10 thomas
45 be288a59 2023-02-23 thomas #include "got_lib_hash.h"
46 62ee7d94 2023-01-10 thomas #include "got_lib_delta.h"
47 62ee7d94 2023-01-10 thomas #include "got_lib_object.h"
48 62ee7d94 2023-01-10 thomas #include "got_lib_object_cache.h"
49 62ee7d94 2023-01-10 thomas #include "got_lib_pack.h"
50 62ee7d94 2023-01-10 thomas #include "got_lib_repository.h"
51 62ee7d94 2023-01-10 thomas #include "got_lib_gitproto.h"
52 62ee7d94 2023-01-10 thomas
53 62ee7d94 2023-01-10 thomas #include "gotd.h"
54 62ee7d94 2023-01-10 thomas #include "log.h"
55 62ee7d94 2023-01-10 thomas #include "session.h"
56 62ee7d94 2023-01-10 thomas
57 ce1bfad9 2024-03-30 thomas struct gotd_session_notif {
58 ce1bfad9 2024-03-30 thomas STAILQ_ENTRY(gotd_session_notif) entry;
59 ce1bfad9 2024-03-30 thomas int fd;
60 ce1bfad9 2024-03-30 thomas enum gotd_notification_action action;
61 ce1bfad9 2024-03-30 thomas char *refname;
62 ce1bfad9 2024-03-30 thomas struct got_object_id old_id;
63 ce1bfad9 2024-03-30 thomas struct got_object_id new_id;
64 ce1bfad9 2024-03-30 thomas };
65 ce1bfad9 2024-03-30 thomas STAILQ_HEAD(gotd_session_notifications, gotd_session_notif) notifications;
66 62ee7d94 2023-01-10 thomas
67 62ee7d94 2023-01-10 thomas static struct gotd_session {
68 62ee7d94 2023-01-10 thomas pid_t pid;
69 62ee7d94 2023-01-10 thomas const char *title;
70 62ee7d94 2023-01-10 thomas struct got_repository *repo;
71 ce1bfad9 2024-03-30 thomas struct gotd_repo *repo_cfg;
72 62ee7d94 2023-01-10 thomas int *pack_fds;
73 62ee7d94 2023-01-10 thomas int *temp_fds;
74 62ee7d94 2023-01-10 thomas struct gotd_imsgev parent_iev;
75 ce1bfad9 2024-03-30 thomas struct gotd_imsgev notifier_iev;
76 62ee7d94 2023-01-10 thomas struct timeval request_timeout;
77 7fed8fa4 2023-06-22 thomas enum gotd_procid proc_id;
78 62ee7d94 2023-01-10 thomas } gotd_session;
79 62ee7d94 2023-01-10 thomas
80 62ee7d94 2023-01-10 thomas static struct gotd_session_client {
81 7b1db75e 2023-01-14 thomas enum gotd_session_state state;
82 62ee7d94 2023-01-10 thomas int is_writing;
83 62ee7d94 2023-01-10 thomas struct gotd_client_capability *capabilities;
84 62ee7d94 2023-01-10 thomas size_t ncapa_alloc;
85 62ee7d94 2023-01-10 thomas size_t ncapabilities;
86 62ee7d94 2023-01-10 thomas uint32_t id;
87 62ee7d94 2023-01-10 thomas int fd;
88 62ee7d94 2023-01-10 thomas int delta_cache_fd;
89 62ee7d94 2023-01-10 thomas struct gotd_imsgev iev;
90 62ee7d94 2023-01-10 thomas struct gotd_imsgev repo_child_iev;
91 62ee7d94 2023-01-10 thomas struct event tmo;
92 62ee7d94 2023-01-10 thomas uid_t euid;
93 62ee7d94 2023-01-10 thomas gid_t egid;
94 ce1bfad9 2024-03-30 thomas char *username;
95 62ee7d94 2023-01-10 thomas char *packfile_path;
96 62ee7d94 2023-01-10 thomas char *packidx_path;
97 62ee7d94 2023-01-10 thomas int nref_updates;
98 98c7fd82 2023-01-23 thomas int accept_flush_pkt;
99 c8b73ac1 2023-08-23 thomas int flush_disconnect;
100 62ee7d94 2023-01-10 thomas } gotd_session_client;
101 62ee7d94 2023-01-10 thomas
102 62ee7d94 2023-01-10 thomas void gotd_session_sighdlr(int sig, short event, void *arg);
103 62ee7d94 2023-01-10 thomas static void gotd_session_shutdown(void);
104 62ee7d94 2023-01-10 thomas
105 62ee7d94 2023-01-10 thomas static void
106 62ee7d94 2023-01-10 thomas disconnect(struct gotd_session_client *client)
107 62ee7d94 2023-01-10 thomas {
108 62ee7d94 2023-01-10 thomas log_debug("uid %d: disconnecting", client->euid);
109 62ee7d94 2023-01-10 thomas
110 62ee7d94 2023-01-10 thomas if (gotd_imsg_compose_event(&gotd_session.parent_iev,
111 7fed8fa4 2023-06-22 thomas GOTD_IMSG_DISCONNECT, gotd_session.proc_id, -1, NULL, 0) == -1)
112 62ee7d94 2023-01-10 thomas log_warn("imsg compose DISCONNECT");
113 62ee7d94 2023-01-10 thomas
114 62ee7d94 2023-01-10 thomas imsg_clear(&client->repo_child_iev.ibuf);
115 62ee7d94 2023-01-10 thomas event_del(&client->repo_child_iev.ev);
116 62ee7d94 2023-01-10 thomas evtimer_del(&client->tmo);
117 62ee7d94 2023-01-10 thomas close(client->fd);
118 62ee7d94 2023-01-10 thomas if (client->delta_cache_fd != -1)
119 62ee7d94 2023-01-10 thomas close(client->delta_cache_fd);
120 62ee7d94 2023-01-10 thomas if (client->packfile_path) {
121 62ee7d94 2023-01-10 thomas if (unlink(client->packfile_path) == -1 && errno != ENOENT)
122 62ee7d94 2023-01-10 thomas log_warn("unlink %s: ", client->packfile_path);
123 62ee7d94 2023-01-10 thomas free(client->packfile_path);
124 62ee7d94 2023-01-10 thomas }
125 62ee7d94 2023-01-10 thomas if (client->packidx_path) {
126 62ee7d94 2023-01-10 thomas if (unlink(client->packidx_path) == -1 && errno != ENOENT)
127 62ee7d94 2023-01-10 thomas log_warn("unlink %s: ", client->packidx_path);
128 62ee7d94 2023-01-10 thomas free(client->packidx_path);
129 62ee7d94 2023-01-10 thomas }
130 62ee7d94 2023-01-10 thomas free(client->capabilities);
131 62ee7d94 2023-01-10 thomas
132 62ee7d94 2023-01-10 thomas gotd_session_shutdown();
133 62ee7d94 2023-01-10 thomas }
134 62ee7d94 2023-01-10 thomas
135 62ee7d94 2023-01-10 thomas static void
136 62ee7d94 2023-01-10 thomas disconnect_on_error(struct gotd_session_client *client,
137 62ee7d94 2023-01-10 thomas const struct got_error *err)
138 62ee7d94 2023-01-10 thomas {
139 62ee7d94 2023-01-10 thomas struct imsgbuf ibuf;
140 62ee7d94 2023-01-10 thomas
141 62ee7d94 2023-01-10 thomas if (err->code != GOT_ERR_EOF) {
142 a6153ffb 2023-08-12 thomas log_warnx("uid %d: %s", client->euid, err->msg);
143 62ee7d94 2023-01-10 thomas imsg_init(&ibuf, client->fd);
144 7fed8fa4 2023-06-22 thomas gotd_imsg_send_error(&ibuf, 0, gotd_session.proc_id, err);
145 62ee7d94 2023-01-10 thomas imsg_clear(&ibuf);
146 62ee7d94 2023-01-10 thomas }
147 62ee7d94 2023-01-10 thomas
148 62ee7d94 2023-01-10 thomas disconnect(client);
149 62ee7d94 2023-01-10 thomas }
150 62ee7d94 2023-01-10 thomas
151 62ee7d94 2023-01-10 thomas static void
152 62ee7d94 2023-01-10 thomas gotd_request_timeout(int fd, short events, void *arg)
153 62ee7d94 2023-01-10 thomas {
154 62ee7d94 2023-01-10 thomas struct gotd_session_client *client = arg;
155 62ee7d94 2023-01-10 thomas
156 62ee7d94 2023-01-10 thomas log_debug("disconnecting uid %d due to timeout", client->euid);
157 62ee7d94 2023-01-10 thomas disconnect(client);
158 62ee7d94 2023-01-10 thomas }
159 62ee7d94 2023-01-10 thomas
160 62ee7d94 2023-01-10 thomas void
161 62ee7d94 2023-01-10 thomas gotd_session_sighdlr(int sig, short event, void *arg)
162 62ee7d94 2023-01-10 thomas {
163 62ee7d94 2023-01-10 thomas /*
164 62ee7d94 2023-01-10 thomas * Normal signal handler rules don't apply because libevent
165 62ee7d94 2023-01-10 thomas * decouples for us.
166 62ee7d94 2023-01-10 thomas */
167 62ee7d94 2023-01-10 thomas
168 62ee7d94 2023-01-10 thomas switch (sig) {
169 62ee7d94 2023-01-10 thomas case SIGHUP:
170 62ee7d94 2023-01-10 thomas log_info("%s: ignoring SIGHUP", __func__);
171 62ee7d94 2023-01-10 thomas break;
172 62ee7d94 2023-01-10 thomas case SIGUSR1:
173 62ee7d94 2023-01-10 thomas log_info("%s: ignoring SIGUSR1", __func__);
174 62ee7d94 2023-01-10 thomas break;
175 62ee7d94 2023-01-10 thomas case SIGTERM:
176 62ee7d94 2023-01-10 thomas case SIGINT:
177 62ee7d94 2023-01-10 thomas gotd_session_shutdown();
178 62ee7d94 2023-01-10 thomas /* NOTREACHED */
179 62ee7d94 2023-01-10 thomas break;
180 62ee7d94 2023-01-10 thomas default:
181 62ee7d94 2023-01-10 thomas fatalx("unexpected signal");
182 62ee7d94 2023-01-10 thomas }
183 62ee7d94 2023-01-10 thomas }
184 62ee7d94 2023-01-10 thomas
185 62ee7d94 2023-01-10 thomas static const struct got_error *
186 62ee7d94 2023-01-10 thomas recv_packfile_done(uint32_t *client_id, struct imsg *imsg)
187 62ee7d94 2023-01-10 thomas {
188 62ee7d94 2023-01-10 thomas struct gotd_imsg_packfile_done idone;
189 62ee7d94 2023-01-10 thomas size_t datalen;
190 62ee7d94 2023-01-10 thomas
191 62ee7d94 2023-01-10 thomas log_debug("packfile-done received");
192 62ee7d94 2023-01-10 thomas
193 62ee7d94 2023-01-10 thomas datalen = imsg->hdr.len - IMSG_HEADER_SIZE;
194 62ee7d94 2023-01-10 thomas if (datalen != sizeof(idone))
195 62ee7d94 2023-01-10 thomas return got_error(GOT_ERR_PRIVSEP_LEN);
196 62ee7d94 2023-01-10 thomas memcpy(&idone, imsg->data, sizeof(idone));
197 62ee7d94 2023-01-10 thomas
198 62ee7d94 2023-01-10 thomas *client_id = idone.client_id;
199 62ee7d94 2023-01-10 thomas return NULL;
200 62ee7d94 2023-01-10 thomas }
201 62ee7d94 2023-01-10 thomas
202 62ee7d94 2023-01-10 thomas static const struct got_error *
203 62ee7d94 2023-01-10 thomas recv_packfile_install(uint32_t *client_id, struct imsg *imsg)
204 62ee7d94 2023-01-10 thomas {
205 62ee7d94 2023-01-10 thomas struct gotd_imsg_packfile_install inst;
206 62ee7d94 2023-01-10 thomas size_t datalen;
207 62ee7d94 2023-01-10 thomas
208 62ee7d94 2023-01-10 thomas log_debug("packfile-install received");
209 62ee7d94 2023-01-10 thomas
210 62ee7d94 2023-01-10 thomas datalen = imsg->hdr.len - IMSG_HEADER_SIZE;
211 62ee7d94 2023-01-10 thomas if (datalen != sizeof(inst))
212 62ee7d94 2023-01-10 thomas return got_error(GOT_ERR_PRIVSEP_LEN);
213 62ee7d94 2023-01-10 thomas memcpy(&inst, imsg->data, sizeof(inst));
214 62ee7d94 2023-01-10 thomas
215 62ee7d94 2023-01-10 thomas *client_id = inst.client_id;
216 62ee7d94 2023-01-10 thomas return NULL;
217 62ee7d94 2023-01-10 thomas }
218 62ee7d94 2023-01-10 thomas
219 62ee7d94 2023-01-10 thomas static const struct got_error *
220 62ee7d94 2023-01-10 thomas recv_ref_updates_start(uint32_t *client_id, struct imsg *imsg)
221 62ee7d94 2023-01-10 thomas {
222 62ee7d94 2023-01-10 thomas struct gotd_imsg_ref_updates_start istart;
223 62ee7d94 2023-01-10 thomas size_t datalen;
224 62ee7d94 2023-01-10 thomas
225 62ee7d94 2023-01-10 thomas log_debug("ref-updates-start received");
226 62ee7d94 2023-01-10 thomas
227 62ee7d94 2023-01-10 thomas datalen = imsg->hdr.len - IMSG_HEADER_SIZE;
228 62ee7d94 2023-01-10 thomas if (datalen != sizeof(istart))
229 62ee7d94 2023-01-10 thomas return got_error(GOT_ERR_PRIVSEP_LEN);
230 62ee7d94 2023-01-10 thomas memcpy(&istart, imsg->data, sizeof(istart));
231 62ee7d94 2023-01-10 thomas
232 62ee7d94 2023-01-10 thomas *client_id = istart.client_id;
233 62ee7d94 2023-01-10 thomas return NULL;
234 62ee7d94 2023-01-10 thomas }
235 62ee7d94 2023-01-10 thomas
236 62ee7d94 2023-01-10 thomas static const struct got_error *
237 62ee7d94 2023-01-10 thomas recv_ref_update(uint32_t *client_id, struct imsg *imsg)
238 62ee7d94 2023-01-10 thomas {
239 62ee7d94 2023-01-10 thomas struct gotd_imsg_ref_update iref;
240 62ee7d94 2023-01-10 thomas size_t datalen;
241 62ee7d94 2023-01-10 thomas
242 62ee7d94 2023-01-10 thomas log_debug("ref-update received");
243 62ee7d94 2023-01-10 thomas
244 62ee7d94 2023-01-10 thomas datalen = imsg->hdr.len - IMSG_HEADER_SIZE;
245 62ee7d94 2023-01-10 thomas if (datalen < sizeof(iref))
246 62ee7d94 2023-01-10 thomas return got_error(GOT_ERR_PRIVSEP_LEN);
247 62ee7d94 2023-01-10 thomas memcpy(&iref, imsg->data, sizeof(iref));
248 62ee7d94 2023-01-10 thomas
249 62ee7d94 2023-01-10 thomas *client_id = iref.client_id;
250 62ee7d94 2023-01-10 thomas return NULL;
251 62ee7d94 2023-01-10 thomas }
252 62ee7d94 2023-01-10 thomas
253 62ee7d94 2023-01-10 thomas static const struct got_error *
254 62ee7d94 2023-01-10 thomas send_ref_update_ok(struct gotd_session_client *client,
255 62ee7d94 2023-01-10 thomas struct gotd_imsg_ref_update *iref, const char *refname)
256 62ee7d94 2023-01-10 thomas {
257 62ee7d94 2023-01-10 thomas struct gotd_imsg_ref_update_ok iok;
258 62ee7d94 2023-01-10 thomas struct gotd_imsgev *iev = &client->iev;
259 62ee7d94 2023-01-10 thomas struct ibuf *wbuf;
260 62ee7d94 2023-01-10 thomas size_t len;
261 62ee7d94 2023-01-10 thomas
262 62ee7d94 2023-01-10 thomas memset(&iok, 0, sizeof(iok));
263 62ee7d94 2023-01-10 thomas iok.client_id = client->id;
264 62ee7d94 2023-01-10 thomas memcpy(iok.old_id, iref->old_id, SHA1_DIGEST_LENGTH);
265 62ee7d94 2023-01-10 thomas memcpy(iok.new_id, iref->new_id, SHA1_DIGEST_LENGTH);
266 62ee7d94 2023-01-10 thomas iok.name_len = strlen(refname);
267 62ee7d94 2023-01-10 thomas
268 62ee7d94 2023-01-10 thomas len = sizeof(iok) + iok.name_len;
269 62ee7d94 2023-01-10 thomas wbuf = imsg_create(&iev->ibuf, GOTD_IMSG_REF_UPDATE_OK,
270 7fed8fa4 2023-06-22 thomas gotd_session.proc_id, gotd_session.pid, len);
271 62ee7d94 2023-01-10 thomas if (wbuf == NULL)
272 62ee7d94 2023-01-10 thomas return got_error_from_errno("imsg_create REF_UPDATE_OK");
273 62ee7d94 2023-01-10 thomas
274 62ee7d94 2023-01-10 thomas if (imsg_add(wbuf, &iok, sizeof(iok)) == -1)
275 62ee7d94 2023-01-10 thomas return got_error_from_errno("imsg_add REF_UPDATE_OK");
276 62ee7d94 2023-01-10 thomas if (imsg_add(wbuf, refname, iok.name_len) == -1)
277 62ee7d94 2023-01-10 thomas return got_error_from_errno("imsg_add REF_UPDATE_OK");
278 62ee7d94 2023-01-10 thomas
279 62ee7d94 2023-01-10 thomas imsg_close(&iev->ibuf, wbuf);
280 62ee7d94 2023-01-10 thomas gotd_imsg_event_add(iev);
281 62ee7d94 2023-01-10 thomas return NULL;
282 62ee7d94 2023-01-10 thomas }
283 62ee7d94 2023-01-10 thomas
284 62ee7d94 2023-01-10 thomas static void
285 62ee7d94 2023-01-10 thomas send_refs_updated(struct gotd_session_client *client)
286 62ee7d94 2023-01-10 thomas {
287 62ee7d94 2023-01-10 thomas if (gotd_imsg_compose_event(&client->iev, GOTD_IMSG_REFS_UPDATED,
288 7fed8fa4 2023-06-22 thomas gotd_session.proc_id, -1, NULL, 0) == -1)
289 62ee7d94 2023-01-10 thomas log_warn("imsg compose REFS_UPDATED");
290 62ee7d94 2023-01-10 thomas }
291 62ee7d94 2023-01-10 thomas
292 62ee7d94 2023-01-10 thomas static const struct got_error *
293 62ee7d94 2023-01-10 thomas send_ref_update_ng(struct gotd_session_client *client,
294 62ee7d94 2023-01-10 thomas struct gotd_imsg_ref_update *iref, const char *refname,
295 62ee7d94 2023-01-10 thomas const char *reason)
296 62ee7d94 2023-01-10 thomas {
297 62ee7d94 2023-01-10 thomas const struct got_error *ng_err;
298 62ee7d94 2023-01-10 thomas struct gotd_imsg_ref_update_ng ing;
299 62ee7d94 2023-01-10 thomas struct gotd_imsgev *iev = &client->iev;
300 62ee7d94 2023-01-10 thomas struct ibuf *wbuf;
301 62ee7d94 2023-01-10 thomas size_t len;
302 62ee7d94 2023-01-10 thomas
303 62ee7d94 2023-01-10 thomas memset(&ing, 0, sizeof(ing));
304 62ee7d94 2023-01-10 thomas ing.client_id = client->id;
305 62ee7d94 2023-01-10 thomas memcpy(ing.old_id, iref->old_id, SHA1_DIGEST_LENGTH);
306 62ee7d94 2023-01-10 thomas memcpy(ing.new_id, iref->new_id, SHA1_DIGEST_LENGTH);
307 62ee7d94 2023-01-10 thomas ing.name_len = strlen(refname);
308 62ee7d94 2023-01-10 thomas
309 62ee7d94 2023-01-10 thomas ng_err = got_error_fmt(GOT_ERR_REF_BUSY, "%s", reason);
310 62ee7d94 2023-01-10 thomas ing.reason_len = strlen(ng_err->msg);
311 62ee7d94 2023-01-10 thomas
312 62ee7d94 2023-01-10 thomas len = sizeof(ing) + ing.name_len + ing.reason_len;
313 62ee7d94 2023-01-10 thomas wbuf = imsg_create(&iev->ibuf, GOTD_IMSG_REF_UPDATE_NG,
314 7fed8fa4 2023-06-22 thomas gotd_session.proc_id, gotd_session.pid, len);
315 62ee7d94 2023-01-10 thomas if (wbuf == NULL)
316 62ee7d94 2023-01-10 thomas return got_error_from_errno("imsg_create REF_UPDATE_NG");
317 62ee7d94 2023-01-10 thomas
318 62ee7d94 2023-01-10 thomas if (imsg_add(wbuf, &ing, sizeof(ing)) == -1)
319 62ee7d94 2023-01-10 thomas return got_error_from_errno("imsg_add REF_UPDATE_NG");
320 62ee7d94 2023-01-10 thomas if (imsg_add(wbuf, refname, ing.name_len) == -1)
321 62ee7d94 2023-01-10 thomas return got_error_from_errno("imsg_add REF_UPDATE_NG");
322 62ee7d94 2023-01-10 thomas if (imsg_add(wbuf, ng_err->msg, ing.reason_len) == -1)
323 62ee7d94 2023-01-10 thomas return got_error_from_errno("imsg_add REF_UPDATE_NG");
324 62ee7d94 2023-01-10 thomas
325 62ee7d94 2023-01-10 thomas imsg_close(&iev->ibuf, wbuf);
326 62ee7d94 2023-01-10 thomas gotd_imsg_event_add(iev);
327 62ee7d94 2023-01-10 thomas return NULL;
328 62ee7d94 2023-01-10 thomas }
329 62ee7d94 2023-01-10 thomas
330 62ee7d94 2023-01-10 thomas static const struct got_error *
331 62ee7d94 2023-01-10 thomas install_pack(struct gotd_session_client *client, const char *repo_path,
332 62ee7d94 2023-01-10 thomas struct imsg *imsg)
333 62ee7d94 2023-01-10 thomas {
334 62ee7d94 2023-01-10 thomas const struct got_error *err = NULL;
335 62ee7d94 2023-01-10 thomas struct gotd_imsg_packfile_install inst;
336 62ee7d94 2023-01-10 thomas char hex[SHA1_DIGEST_STRING_LENGTH];
337 62ee7d94 2023-01-10 thomas size_t datalen;
338 62ee7d94 2023-01-10 thomas char *packfile_path = NULL, *packidx_path = NULL;
339 62ee7d94 2023-01-10 thomas
340 62ee7d94 2023-01-10 thomas datalen = imsg->hdr.len - IMSG_HEADER_SIZE;
341 62ee7d94 2023-01-10 thomas if (datalen != sizeof(inst))
342 62ee7d94 2023-01-10 thomas return got_error(GOT_ERR_PRIVSEP_LEN);
343 62ee7d94 2023-01-10 thomas memcpy(&inst, imsg->data, sizeof(inst));
344 62ee7d94 2023-01-10 thomas
345 62ee7d94 2023-01-10 thomas if (client->packfile_path == NULL)
346 62ee7d94 2023-01-10 thomas return got_error_msg(GOT_ERR_BAD_REQUEST,
347 62ee7d94 2023-01-10 thomas "client has no pack file");
348 62ee7d94 2023-01-10 thomas if (client->packidx_path == NULL)
349 62ee7d94 2023-01-10 thomas return got_error_msg(GOT_ERR_BAD_REQUEST,
350 62ee7d94 2023-01-10 thomas "client has no pack file index");
351 62ee7d94 2023-01-10 thomas
352 62ee7d94 2023-01-10 thomas if (got_sha1_digest_to_str(inst.pack_sha1, hex, sizeof(hex)) == NULL)
353 62ee7d94 2023-01-10 thomas return got_error_msg(GOT_ERR_NO_SPACE,
354 62ee7d94 2023-01-10 thomas "could not convert pack file SHA1 to hex");
355 62ee7d94 2023-01-10 thomas
356 62ee7d94 2023-01-10 thomas if (asprintf(&packfile_path, "/%s/%s/pack-%s.pack",
357 62ee7d94 2023-01-10 thomas repo_path, GOT_OBJECTS_PACK_DIR, hex) == -1) {
358 62ee7d94 2023-01-10 thomas err = got_error_from_errno("asprintf");
359 62ee7d94 2023-01-10 thomas goto done;
360 62ee7d94 2023-01-10 thomas }
361 62ee7d94 2023-01-10 thomas
362 62ee7d94 2023-01-10 thomas if (asprintf(&packidx_path, "/%s/%s/pack-%s.idx",
363 62ee7d94 2023-01-10 thomas repo_path, GOT_OBJECTS_PACK_DIR, hex) == -1) {
364 62ee7d94 2023-01-10 thomas err = got_error_from_errno("asprintf");
365 62ee7d94 2023-01-10 thomas goto done;
366 62ee7d94 2023-01-10 thomas }
367 62ee7d94 2023-01-10 thomas
368 62ee7d94 2023-01-10 thomas if (rename(client->packfile_path, packfile_path) == -1) {
369 62ee7d94 2023-01-10 thomas err = got_error_from_errno3("rename", client->packfile_path,
370 62ee7d94 2023-01-10 thomas packfile_path);
371 62ee7d94 2023-01-10 thomas goto done;
372 62ee7d94 2023-01-10 thomas }
373 62ee7d94 2023-01-10 thomas
374 62ee7d94 2023-01-10 thomas free(client->packfile_path);
375 62ee7d94 2023-01-10 thomas client->packfile_path = NULL;
376 62ee7d94 2023-01-10 thomas
377 62ee7d94 2023-01-10 thomas if (rename(client->packidx_path, packidx_path) == -1) {
378 62ee7d94 2023-01-10 thomas err = got_error_from_errno3("rename", client->packidx_path,
379 62ee7d94 2023-01-10 thomas packidx_path);
380 62ee7d94 2023-01-10 thomas goto done;
381 62ee7d94 2023-01-10 thomas }
382 342fdad2 2024-03-19 thomas
383 342fdad2 2024-03-19 thomas /* Ensure we re-read the pack index list upon next access. */
384 342fdad2 2024-03-19 thomas gotd_session.repo->pack_path_mtime.tv_sec = 0;
385 342fdad2 2024-03-19 thomas gotd_session.repo->pack_path_mtime.tv_nsec = 0;
386 62ee7d94 2023-01-10 thomas
387 62ee7d94 2023-01-10 thomas free(client->packidx_path);
388 62ee7d94 2023-01-10 thomas client->packidx_path = NULL;
389 62ee7d94 2023-01-10 thomas done:
390 62ee7d94 2023-01-10 thomas free(packfile_path);
391 62ee7d94 2023-01-10 thomas free(packidx_path);
392 62ee7d94 2023-01-10 thomas return err;
393 62ee7d94 2023-01-10 thomas }
394 62ee7d94 2023-01-10 thomas
395 62ee7d94 2023-01-10 thomas static const struct got_error *
396 62ee7d94 2023-01-10 thomas begin_ref_updates(struct gotd_session_client *client, struct imsg *imsg)
397 62ee7d94 2023-01-10 thomas {
398 62ee7d94 2023-01-10 thomas struct gotd_imsg_ref_updates_start istart;
399 62ee7d94 2023-01-10 thomas size_t datalen;
400 62ee7d94 2023-01-10 thomas
401 62ee7d94 2023-01-10 thomas if (client->nref_updates != -1)
402 62ee7d94 2023-01-10 thomas return got_error(GOT_ERR_PRIVSEP_MSG);
403 62ee7d94 2023-01-10 thomas
404 62ee7d94 2023-01-10 thomas datalen = imsg->hdr.len - IMSG_HEADER_SIZE;
405 62ee7d94 2023-01-10 thomas if (datalen != sizeof(istart))
406 62ee7d94 2023-01-10 thomas return got_error(GOT_ERR_PRIVSEP_LEN);
407 62ee7d94 2023-01-10 thomas memcpy(&istart, imsg->data, sizeof(istart));
408 62ee7d94 2023-01-10 thomas
409 62ee7d94 2023-01-10 thomas if (istart.nref_updates <= 0)
410 62ee7d94 2023-01-10 thomas return got_error(GOT_ERR_PRIVSEP_MSG);
411 62ee7d94 2023-01-10 thomas
412 62ee7d94 2023-01-10 thomas client->nref_updates = istart.nref_updates;
413 ce1bfad9 2024-03-30 thomas return NULL;
414 ce1bfad9 2024-03-30 thomas }
415 ce1bfad9 2024-03-30 thomas
416 ce1bfad9 2024-03-30 thomas static const struct got_error *
417 ce1bfad9 2024-03-30 thomas validate_namespace(const char *namespace)
418 ce1bfad9 2024-03-30 thomas {
419 ce1bfad9 2024-03-30 thomas size_t len = strlen(namespace);
420 ce1bfad9 2024-03-30 thomas
421 ce1bfad9 2024-03-30 thomas if (len < 5 || strncmp("refs/", namespace, 5) != 0 ||
422 ce1bfad9 2024-03-30 thomas namespace[len - 1] != '/') {
423 ce1bfad9 2024-03-30 thomas return got_error_fmt(GOT_ERR_BAD_REF_NAME,
424 ce1bfad9 2024-03-30 thomas "reference namespace '%s'", namespace);
425 ce1bfad9 2024-03-30 thomas }
426 ce1bfad9 2024-03-30 thomas
427 62ee7d94 2023-01-10 thomas return NULL;
428 62ee7d94 2023-01-10 thomas }
429 62ee7d94 2023-01-10 thomas
430 62ee7d94 2023-01-10 thomas static const struct got_error *
431 ce1bfad9 2024-03-30 thomas queue_notification(struct got_object_id *old_id, struct got_object_id *new_id,
432 ce1bfad9 2024-03-30 thomas struct got_repository *repo, struct got_reference *ref)
433 ce1bfad9 2024-03-30 thomas {
434 ce1bfad9 2024-03-30 thomas const struct got_error *err = NULL;
435 ce1bfad9 2024-03-30 thomas struct gotd_session_client *client = &gotd_session_client;
436 ce1bfad9 2024-03-30 thomas struct gotd_repo *repo_cfg = gotd_session.repo_cfg;
437 ce1bfad9 2024-03-30 thomas struct gotd_imsgev *iev = &client->repo_child_iev;
438 ce1bfad9 2024-03-30 thomas struct got_pathlist_entry *pe;
439 ce1bfad9 2024-03-30 thomas struct gotd_session_notif *notif;
440 ce1bfad9 2024-03-30 thomas
441 ce1bfad9 2024-03-30 thomas if (iev->ibuf.fd == -1 ||
442 ce1bfad9 2024-03-30 thomas STAILQ_EMPTY(&repo_cfg->notification_targets))
443 ce1bfad9 2024-03-30 thomas return NULL; /* notifications unused */
444 ce1bfad9 2024-03-30 thomas
445 ce1bfad9 2024-03-30 thomas TAILQ_FOREACH(pe, &repo_cfg->notification_refs, entry) {
446 ce1bfad9 2024-03-30 thomas const char *refname = pe->path;
447 ce1bfad9 2024-03-30 thomas if (strcmp(got_ref_get_name(ref), refname) == 0)
448 ce1bfad9 2024-03-30 thomas break;
449 ce1bfad9 2024-03-30 thomas }
450 ce1bfad9 2024-03-30 thomas if (pe == NULL) {
451 ce1bfad9 2024-03-30 thomas TAILQ_FOREACH(pe, &repo_cfg->notification_ref_namespaces,
452 ce1bfad9 2024-03-30 thomas entry) {
453 ce1bfad9 2024-03-30 thomas const char *namespace = pe->path;
454 ce1bfad9 2024-03-30 thomas
455 ce1bfad9 2024-03-30 thomas err = validate_namespace(namespace);
456 ce1bfad9 2024-03-30 thomas if (err)
457 ce1bfad9 2024-03-30 thomas return err;
458 ce1bfad9 2024-03-30 thomas if (strncmp(namespace, got_ref_get_name(ref),
459 ce1bfad9 2024-03-30 thomas strlen(namespace)) == 0)
460 ce1bfad9 2024-03-30 thomas break;
461 ce1bfad9 2024-03-30 thomas }
462 ce1bfad9 2024-03-30 thomas }
463 ce1bfad9 2024-03-30 thomas
464 ce1bfad9 2024-03-30 thomas /*
465 ce1bfad9 2024-03-30 thomas * If a branch or a reference namespace was specified in the
466 ce1bfad9 2024-03-30 thomas * configuration file then only send notifications if a match
467 ce1bfad9 2024-03-30 thomas * was found.
468 ce1bfad9 2024-03-30 thomas */
469 ce1bfad9 2024-03-30 thomas if (pe == NULL && (!TAILQ_EMPTY(&repo_cfg->notification_refs) ||
470 ce1bfad9 2024-03-30 thomas !TAILQ_EMPTY(&repo_cfg->notification_ref_namespaces)))
471 ce1bfad9 2024-03-30 thomas return NULL;
472 ce1bfad9 2024-03-30 thomas
473 ce1bfad9 2024-03-30 thomas notif = calloc(1, sizeof(*notif));
474 ce1bfad9 2024-03-30 thomas if (notif == NULL)
475 ce1bfad9 2024-03-30 thomas return got_error_from_errno("calloc");
476 ce1bfad9 2024-03-30 thomas
477 ce1bfad9 2024-03-30 thomas notif->fd = -1;
478 ce1bfad9 2024-03-30 thomas
479 ce1bfad9 2024-03-30 thomas if (old_id == NULL)
480 ce1bfad9 2024-03-30 thomas notif->action = GOTD_NOTIF_ACTION_CREATED;
481 ce1bfad9 2024-03-30 thomas else if (new_id == NULL)
482 ce1bfad9 2024-03-30 thomas notif->action = GOTD_NOTIF_ACTION_REMOVED;
483 ce1bfad9 2024-03-30 thomas else
484 ce1bfad9 2024-03-30 thomas notif->action = GOTD_NOTIF_ACTION_CHANGED;
485 ce1bfad9 2024-03-30 thomas
486 ce1bfad9 2024-03-30 thomas if (old_id != NULL)
487 ce1bfad9 2024-03-30 thomas memcpy(&notif->old_id, old_id, sizeof(notif->old_id));
488 ce1bfad9 2024-03-30 thomas if (new_id != NULL)
489 ce1bfad9 2024-03-30 thomas memcpy(&notif->new_id, new_id, sizeof(notif->new_id));
490 ce1bfad9 2024-03-30 thomas
491 ce1bfad9 2024-03-30 thomas notif->refname = strdup(got_ref_get_name(ref));
492 ce1bfad9 2024-03-30 thomas if (notif->refname == NULL) {
493 ce1bfad9 2024-03-30 thomas err = got_error_from_errno("strdup");
494 ce1bfad9 2024-03-30 thomas goto done;
495 ce1bfad9 2024-03-30 thomas }
496 ce1bfad9 2024-03-30 thomas
497 ce1bfad9 2024-03-30 thomas STAILQ_INSERT_TAIL(&notifications, notif, entry);
498 ce1bfad9 2024-03-30 thomas done:
499 ce1bfad9 2024-03-30 thomas if (err && notif) {
500 ce1bfad9 2024-03-30 thomas free(notif->refname);
501 ce1bfad9 2024-03-30 thomas free(notif);
502 ce1bfad9 2024-03-30 thomas }
503 ce1bfad9 2024-03-30 thomas return err;
504 ce1bfad9 2024-03-30 thomas }
505 ce1bfad9 2024-03-30 thomas
506 ce1bfad9 2024-03-30 thomas /* Forward notification content to the NOTIFY process. */
507 ce1bfad9 2024-03-30 thomas static const struct got_error *
508 ce1bfad9 2024-03-30 thomas forward_notification(struct gotd_session_client *client, struct imsg *imsg)
509 ce1bfad9 2024-03-30 thomas {
510 ce1bfad9 2024-03-30 thomas const struct got_error *err = NULL;
511 ce1bfad9 2024-03-30 thomas struct gotd_imsgev *iev = &gotd_session.notifier_iev;
512 ce1bfad9 2024-03-30 thomas struct gotd_session_notif *notif;
513 ce1bfad9 2024-03-30 thomas struct gotd_imsg_notification_content icontent;
514 ce1bfad9 2024-03-30 thomas char *refname = NULL;
515 ce1bfad9 2024-03-30 thomas size_t datalen;
516 ce1bfad9 2024-03-30 thomas struct gotd_imsg_notify inotify;
517 ce1bfad9 2024-03-30 thomas const char *action;
518 ce1bfad9 2024-03-30 thomas
519 ce1bfad9 2024-03-30 thomas memset(&inotify, 0, sizeof(inotify));
520 ce1bfad9 2024-03-30 thomas
521 ce1bfad9 2024-03-30 thomas datalen = imsg->hdr.len - IMSG_HEADER_SIZE;
522 ce1bfad9 2024-03-30 thomas if (datalen < sizeof(icontent))
523 ce1bfad9 2024-03-30 thomas return got_error(GOT_ERR_PRIVSEP_LEN);
524 ce1bfad9 2024-03-30 thomas memcpy(&icontent, imsg->data, sizeof(icontent));
525 ce1bfad9 2024-03-30 thomas if (datalen != sizeof(icontent) + icontent.refname_len)
526 ce1bfad9 2024-03-30 thomas return got_error(GOT_ERR_PRIVSEP_LEN);
527 ce1bfad9 2024-03-30 thomas refname = strndup(imsg->data + sizeof(icontent), icontent.refname_len);
528 ce1bfad9 2024-03-30 thomas if (refname == NULL)
529 ce1bfad9 2024-03-30 thomas return got_error_from_errno("strndup");
530 ce1bfad9 2024-03-30 thomas
531 ce1bfad9 2024-03-30 thomas notif = STAILQ_FIRST(&notifications);
532 ce1bfad9 2024-03-30 thomas if (notif == NULL)
533 ce1bfad9 2024-03-30 thomas return got_error(GOT_ERR_PRIVSEP_MSG);
534 ce1bfad9 2024-03-30 thomas
535 ce1bfad9 2024-03-30 thomas STAILQ_REMOVE(&notifications, notif, gotd_session_notif, entry);
536 ce1bfad9 2024-03-30 thomas
537 ce1bfad9 2024-03-30 thomas if (notif->action != icontent.action || notif->fd == -1 ||
538 ce1bfad9 2024-03-30 thomas strcmp(notif->refname, refname) != 0) {
539 ce1bfad9 2024-03-30 thomas err = got_error(GOT_ERR_PRIVSEP_MSG);
540 ce1bfad9 2024-03-30 thomas goto done;
541 ce1bfad9 2024-03-30 thomas }
542 ce1bfad9 2024-03-30 thomas if (notif->action == GOTD_NOTIF_ACTION_CREATED) {
543 ce1bfad9 2024-03-30 thomas if (memcmp(notif->new_id.sha1, icontent.new_id,
544 ce1bfad9 2024-03-30 thomas SHA1_DIGEST_LENGTH) != 0) {
545 ce1bfad9 2024-03-30 thomas err = got_error_msg(GOT_ERR_PRIVSEP_MSG,
546 ce1bfad9 2024-03-30 thomas "received notification content for unknown event");
547 ce1bfad9 2024-03-30 thomas goto done;
548 ce1bfad9 2024-03-30 thomas }
549 ce1bfad9 2024-03-30 thomas } else if (notif->action == GOTD_NOTIF_ACTION_REMOVED) {
550 ce1bfad9 2024-03-30 thomas if (memcmp(notif->old_id.sha1, icontent.old_id,
551 ce1bfad9 2024-03-30 thomas SHA1_DIGEST_LENGTH) != 0) {
552 ce1bfad9 2024-03-30 thomas err = got_error_msg(GOT_ERR_PRIVSEP_MSG,
553 ce1bfad9 2024-03-30 thomas "received notification content for unknown event");
554 ce1bfad9 2024-03-30 thomas goto done;
555 ce1bfad9 2024-03-30 thomas }
556 ce1bfad9 2024-03-30 thomas } else if (memcmp(notif->old_id.sha1, icontent.old_id,
557 ce1bfad9 2024-03-30 thomas SHA1_DIGEST_LENGTH) != 0 ||
558 ce1bfad9 2024-03-30 thomas memcmp(notif->new_id.sha1, icontent.new_id,
559 ce1bfad9 2024-03-30 thomas SHA1_DIGEST_LENGTH) != 0) {
560 ce1bfad9 2024-03-30 thomas err = got_error_msg(GOT_ERR_PRIVSEP_MSG,
561 ce1bfad9 2024-03-30 thomas "received notification content for unknown event");
562 ce1bfad9 2024-03-30 thomas goto done;
563 ce1bfad9 2024-03-30 thomas }
564 ce1bfad9 2024-03-30 thomas
565 ce1bfad9 2024-03-30 thomas switch (notif->action) {
566 ce1bfad9 2024-03-30 thomas case GOTD_NOTIF_ACTION_CREATED:
567 ce1bfad9 2024-03-30 thomas action = "created";
568 ce1bfad9 2024-03-30 thomas break;
569 ce1bfad9 2024-03-30 thomas case GOTD_NOTIF_ACTION_REMOVED:
570 ce1bfad9 2024-03-30 thomas action = "removed";
571 ce1bfad9 2024-03-30 thomas break;
572 ce1bfad9 2024-03-30 thomas case GOTD_NOTIF_ACTION_CHANGED:
573 ce1bfad9 2024-03-30 thomas action = "changed";
574 ce1bfad9 2024-03-30 thomas break;
575 ce1bfad9 2024-03-30 thomas default:
576 ce1bfad9 2024-03-30 thomas err = got_error(GOT_ERR_PRIVSEP_MSG);
577 ce1bfad9 2024-03-30 thomas goto done;
578 ce1bfad9 2024-03-30 thomas }
579 ce1bfad9 2024-03-30 thomas
580 ce1bfad9 2024-03-30 thomas strlcpy(inotify.repo_name, gotd_session.repo_cfg->name,
581 ce1bfad9 2024-03-30 thomas sizeof(inotify.repo_name));
582 ce1bfad9 2024-03-30 thomas
583 ce1bfad9 2024-03-30 thomas snprintf(inotify.subject_line, sizeof(inotify.subject_line),
584 ce1bfad9 2024-03-30 thomas "%s: %s %s %s", gotd_session.repo_cfg->name,
585 ce1bfad9 2024-03-30 thomas client->username, action, notif->refname);
586 ce1bfad9 2024-03-30 thomas
587 ce1bfad9 2024-03-30 thomas if (gotd_imsg_compose_event(iev, GOTD_IMSG_NOTIFY,
588 ce1bfad9 2024-03-30 thomas PROC_SESSION_WRITE, notif->fd, &inotify, sizeof(inotify))
589 ce1bfad9 2024-03-30 thomas == -1) {
590 ce1bfad9 2024-03-30 thomas err = got_error_from_errno("imsg compose NOTIFY");
591 ce1bfad9 2024-03-30 thomas goto done;
592 ce1bfad9 2024-03-30 thomas }
593 ce1bfad9 2024-03-30 thomas notif->fd = -1;
594 ce1bfad9 2024-03-30 thomas done:
595 ce1bfad9 2024-03-30 thomas if (notif->fd != -1)
596 ce1bfad9 2024-03-30 thomas close(notif->fd);
597 ce1bfad9 2024-03-30 thomas free(notif);
598 ce1bfad9 2024-03-30 thomas free(refname);
599 ce1bfad9 2024-03-30 thomas return err;
600 ce1bfad9 2024-03-30 thomas }
601 ce1bfad9 2024-03-30 thomas
602 ce1bfad9 2024-03-30 thomas /* Request notification content from REPO_WRITE process. */
603 ce1bfad9 2024-03-30 thomas static const struct got_error *
604 ce1bfad9 2024-03-30 thomas request_notification(struct gotd_session_notif *notif)
605 ce1bfad9 2024-03-30 thomas {
606 ce1bfad9 2024-03-30 thomas const struct got_error *err = NULL;
607 ce1bfad9 2024-03-30 thomas struct gotd_session_client *client = &gotd_session_client;
608 ce1bfad9 2024-03-30 thomas struct gotd_imsgev *iev = &client->repo_child_iev;
609 ce1bfad9 2024-03-30 thomas struct gotd_imsg_notification_content icontent;
610 ce1bfad9 2024-03-30 thomas struct ibuf *wbuf;
611 ce1bfad9 2024-03-30 thomas size_t len;
612 ce1bfad9 2024-03-30 thomas int fd;
613 ce1bfad9 2024-03-30 thomas
614 ce1bfad9 2024-03-30 thomas fd = got_opentempfd();
615 ce1bfad9 2024-03-30 thomas if (fd == -1)
616 ce1bfad9 2024-03-30 thomas return got_error_from_errno("got_opentemp");
617 ce1bfad9 2024-03-30 thomas
618 ce1bfad9 2024-03-30 thomas memset(&icontent, 0, sizeof(icontent));
619 ce1bfad9 2024-03-30 thomas icontent.client_id = client->id;
620 ce1bfad9 2024-03-30 thomas
621 ce1bfad9 2024-03-30 thomas icontent.action = notif->action;
622 ce1bfad9 2024-03-30 thomas memcpy(&icontent.old_id, &notif->old_id, sizeof(notif->old_id));
623 ce1bfad9 2024-03-30 thomas memcpy(&icontent.new_id, &notif->new_id, sizeof(notif->new_id));
624 ce1bfad9 2024-03-30 thomas icontent.refname_len = strlen(notif->refname);
625 ce1bfad9 2024-03-30 thomas
626 ce1bfad9 2024-03-30 thomas len = sizeof(icontent) + icontent.refname_len;
627 ce1bfad9 2024-03-30 thomas wbuf = imsg_create(&iev->ibuf, GOTD_IMSG_NOTIFY,
628 ce1bfad9 2024-03-30 thomas gotd_session.proc_id, gotd_session.pid, len);
629 ce1bfad9 2024-03-30 thomas if (wbuf == NULL) {
630 ce1bfad9 2024-03-30 thomas err = got_error_from_errno("imsg_create NOTIFY");
631 ce1bfad9 2024-03-30 thomas goto done;
632 ce1bfad9 2024-03-30 thomas }
633 ce1bfad9 2024-03-30 thomas if (imsg_add(wbuf, &icontent, sizeof(icontent)) == -1) {
634 ce1bfad9 2024-03-30 thomas err = got_error_from_errno("imsg_add NOTIFY");
635 ce1bfad9 2024-03-30 thomas goto done;
636 ce1bfad9 2024-03-30 thomas }
637 ce1bfad9 2024-03-30 thomas if (imsg_add(wbuf, notif->refname, icontent.refname_len) == -1) {
638 ce1bfad9 2024-03-30 thomas err = got_error_from_errno("imsg_add NOTIFY");
639 ce1bfad9 2024-03-30 thomas goto done;
640 ce1bfad9 2024-03-30 thomas }
641 ce1bfad9 2024-03-30 thomas
642 ce1bfad9 2024-03-30 thomas notif->fd = dup(fd);
643 ce1bfad9 2024-03-30 thomas if (notif->fd == -1) {
644 ce1bfad9 2024-03-30 thomas err = got_error_from_errno("dup");
645 ce1bfad9 2024-03-30 thomas goto done;
646 ce1bfad9 2024-03-30 thomas }
647 ce1bfad9 2024-03-30 thomas
648 ce1bfad9 2024-03-30 thomas ibuf_fd_set(wbuf, fd);
649 ce1bfad9 2024-03-30 thomas fd = -1;
650 ce1bfad9 2024-03-30 thomas
651 ce1bfad9 2024-03-30 thomas imsg_close(&iev->ibuf, wbuf);
652 ce1bfad9 2024-03-30 thomas gotd_imsg_event_add(iev);
653 ce1bfad9 2024-03-30 thomas done:
654 ce1bfad9 2024-03-30 thomas if (err && fd != -1)
655 ce1bfad9 2024-03-30 thomas close(fd);
656 ce1bfad9 2024-03-30 thomas return err;
657 ce1bfad9 2024-03-30 thomas }
658 ce1bfad9 2024-03-30 thomas
659 ce1bfad9 2024-03-30 thomas static const struct got_error *
660 d98779cd 2023-01-19 thomas update_ref(int *shut, struct gotd_session_client *client,
661 d98779cd 2023-01-19 thomas const char *repo_path, struct imsg *imsg)
662 62ee7d94 2023-01-10 thomas {
663 62ee7d94 2023-01-10 thomas const struct got_error *err = NULL;
664 e8c5d4f8 2024-03-19 thomas struct got_repository *repo = gotd_session.repo;
665 62ee7d94 2023-01-10 thomas struct got_reference *ref = NULL;
666 62ee7d94 2023-01-10 thomas struct gotd_imsg_ref_update iref;
667 62ee7d94 2023-01-10 thomas struct got_object_id old_id, new_id;
668 ce1bfad9 2024-03-30 thomas struct gotd_session_notif *notif;
669 62ee7d94 2023-01-10 thomas struct got_object_id *id = NULL;
670 62ee7d94 2023-01-10 thomas char *refname = NULL;
671 62ee7d94 2023-01-10 thomas size_t datalen;
672 62ee7d94 2023-01-10 thomas int locked = 0;
673 8a9c582b 2023-06-22 thomas char hex1[SHA1_DIGEST_STRING_LENGTH];
674 8a9c582b 2023-06-22 thomas char hex2[SHA1_DIGEST_STRING_LENGTH];
675 62ee7d94 2023-01-10 thomas
676 62ee7d94 2023-01-10 thomas log_debug("update-ref from uid %d", client->euid);
677 62ee7d94 2023-01-10 thomas
678 62ee7d94 2023-01-10 thomas if (client->nref_updates <= 0)
679 62ee7d94 2023-01-10 thomas return got_error(GOT_ERR_PRIVSEP_MSG);
680 62ee7d94 2023-01-10 thomas
681 62ee7d94 2023-01-10 thomas datalen = imsg->hdr.len - IMSG_HEADER_SIZE;
682 62ee7d94 2023-01-10 thomas if (datalen < sizeof(iref))
683 62ee7d94 2023-01-10 thomas return got_error(GOT_ERR_PRIVSEP_LEN);
684 62ee7d94 2023-01-10 thomas memcpy(&iref, imsg->data, sizeof(iref));
685 62ee7d94 2023-01-10 thomas if (datalen != sizeof(iref) + iref.name_len)
686 62ee7d94 2023-01-10 thomas return got_error(GOT_ERR_PRIVSEP_LEN);
687 fcbb06bf 2023-01-14 thomas refname = strndup(imsg->data + sizeof(iref), iref.name_len);
688 62ee7d94 2023-01-10 thomas if (refname == NULL)
689 fcbb06bf 2023-01-14 thomas return got_error_from_errno("strndup");
690 62ee7d94 2023-01-10 thomas
691 62ee7d94 2023-01-10 thomas log_debug("updating ref %s for uid %d", refname, client->euid);
692 62ee7d94 2023-01-10 thomas
693 62ee7d94 2023-01-10 thomas memcpy(old_id.sha1, iref.old_id, SHA1_DIGEST_LENGTH);
694 62ee7d94 2023-01-10 thomas memcpy(new_id.sha1, iref.new_id, SHA1_DIGEST_LENGTH);
695 44f875ad 2024-01-18 thomas err = got_repo_find_object_id(iref.delete_ref ? &old_id : &new_id,
696 44f875ad 2024-01-18 thomas repo);
697 62ee7d94 2023-01-10 thomas if (err)
698 62ee7d94 2023-01-10 thomas goto done;
699 62ee7d94 2023-01-10 thomas
700 62ee7d94 2023-01-10 thomas if (iref.ref_is_new) {
701 62ee7d94 2023-01-10 thomas err = got_ref_open(&ref, repo, refname, 0);
702 62ee7d94 2023-01-10 thomas if (err) {
703 62ee7d94 2023-01-10 thomas if (err->code != GOT_ERR_NOT_REF)
704 62ee7d94 2023-01-10 thomas goto done;
705 62ee7d94 2023-01-10 thomas err = got_ref_alloc(&ref, refname, &new_id);
706 62ee7d94 2023-01-10 thomas if (err)
707 62ee7d94 2023-01-10 thomas goto done;
708 62ee7d94 2023-01-10 thomas err = got_ref_write(ref, repo); /* will lock/unlock */
709 62ee7d94 2023-01-10 thomas if (err)
710 62ee7d94 2023-01-10 thomas goto done;
711 ce1bfad9 2024-03-30 thomas err = queue_notification(NULL, &new_id, repo, ref);
712 ce1bfad9 2024-03-30 thomas if (err)
713 ce1bfad9 2024-03-30 thomas goto done;
714 62ee7d94 2023-01-10 thomas } else {
715 8a9c582b 2023-06-22 thomas err = got_ref_resolve(&id, repo, ref);
716 8a9c582b 2023-06-22 thomas if (err)
717 8a9c582b 2023-06-22 thomas goto done;
718 8a9c582b 2023-06-22 thomas got_object_id_hex(&new_id, hex1, sizeof(hex1));
719 8a9c582b 2023-06-22 thomas got_object_id_hex(id, hex2, sizeof(hex2));
720 62ee7d94 2023-01-10 thomas err = got_error_fmt(GOT_ERR_REF_BUSY,
721 8a9c582b 2023-06-22 thomas "Addition %s: %s failed; %s: %s has been "
722 8a9c582b 2023-06-22 thomas "created by someone else while transaction "
723 8a9c582b 2023-06-22 thomas "was in progress",
724 8a9c582b 2023-06-22 thomas got_ref_get_name(ref), hex1,
725 8a9c582b 2023-06-22 thomas got_ref_get_name(ref), hex2);
726 62ee7d94 2023-01-10 thomas goto done;
727 62ee7d94 2023-01-10 thomas }
728 49563dfb 2023-01-28 thomas } else if (iref.delete_ref) {
729 49563dfb 2023-01-28 thomas err = got_ref_open(&ref, repo, refname, 1 /* lock */);
730 49563dfb 2023-01-28 thomas if (err)
731 49563dfb 2023-01-28 thomas goto done;
732 49563dfb 2023-01-28 thomas locked = 1;
733 49563dfb 2023-01-28 thomas
734 49563dfb 2023-01-28 thomas err = got_ref_resolve(&id, repo, ref);
735 49563dfb 2023-01-28 thomas if (err)
736 49563dfb 2023-01-28 thomas goto done;
737 49563dfb 2023-01-28 thomas
738 49563dfb 2023-01-28 thomas if (got_object_id_cmp(id, &old_id) != 0) {
739 8a9c582b 2023-06-22 thomas got_object_id_hex(&old_id, hex1, sizeof(hex1));
740 8a9c582b 2023-06-22 thomas got_object_id_hex(id, hex2, sizeof(hex2));
741 49563dfb 2023-01-28 thomas err = got_error_fmt(GOT_ERR_REF_BUSY,
742 8a9c582b 2023-06-22 thomas "Deletion %s: %s failed; %s: %s has been "
743 8a9c582b 2023-06-22 thomas "created by someone else while transaction "
744 8a9c582b 2023-06-22 thomas "was in progress",
745 8a9c582b 2023-06-22 thomas got_ref_get_name(ref), hex1,
746 8a9c582b 2023-06-22 thomas got_ref_get_name(ref), hex2);
747 49563dfb 2023-01-28 thomas goto done;
748 49563dfb 2023-01-28 thomas }
749 49563dfb 2023-01-28 thomas
750 49563dfb 2023-01-28 thomas err = got_ref_delete(ref, repo);
751 49563dfb 2023-01-28 thomas if (err)
752 49563dfb 2023-01-28 thomas goto done;
753 ce1bfad9 2024-03-30 thomas err = queue_notification(&old_id, NULL, repo, ref);
754 ce1bfad9 2024-03-30 thomas if (err)
755 ce1bfad9 2024-03-30 thomas goto done;
756 49563dfb 2023-01-28 thomas free(id);
757 49563dfb 2023-01-28 thomas id = NULL;
758 62ee7d94 2023-01-10 thomas } else {
759 62ee7d94 2023-01-10 thomas err = got_ref_open(&ref, repo, refname, 1 /* lock */);
760 62ee7d94 2023-01-10 thomas if (err)
761 62ee7d94 2023-01-10 thomas goto done;
762 62ee7d94 2023-01-10 thomas locked = 1;
763 62ee7d94 2023-01-10 thomas
764 62ee7d94 2023-01-10 thomas err = got_ref_resolve(&id, repo, ref);
765 62ee7d94 2023-01-10 thomas if (err)
766 62ee7d94 2023-01-10 thomas goto done;
767 62ee7d94 2023-01-10 thomas
768 62ee7d94 2023-01-10 thomas if (got_object_id_cmp(id, &old_id) != 0) {
769 8a9c582b 2023-06-22 thomas got_object_id_hex(&old_id, hex1, sizeof(hex1));
770 8a9c582b 2023-06-22 thomas got_object_id_hex(id, hex2, sizeof(hex2));
771 62ee7d94 2023-01-10 thomas err = got_error_fmt(GOT_ERR_REF_BUSY,
772 8a9c582b 2023-06-22 thomas "Update %s: %s failed; %s: %s has been "
773 8a9c582b 2023-06-22 thomas "created by someone else while transaction "
774 8a9c582b 2023-06-22 thomas "was in progress",
775 8a9c582b 2023-06-22 thomas got_ref_get_name(ref), hex1,
776 8a9c582b 2023-06-22 thomas got_ref_get_name(ref), hex2);
777 62ee7d94 2023-01-10 thomas goto done;
778 62ee7d94 2023-01-10 thomas }
779 62ee7d94 2023-01-10 thomas
780 169def41 2023-06-22 thomas if (got_object_id_cmp(&new_id, &old_id) != 0) {
781 169def41 2023-06-22 thomas err = got_ref_change_ref(ref, &new_id);
782 169def41 2023-06-22 thomas if (err)
783 169def41 2023-06-22 thomas goto done;
784 169def41 2023-06-22 thomas err = got_ref_write(ref, repo);
785 169def41 2023-06-22 thomas if (err)
786 169def41 2023-06-22 thomas goto done;
787 ce1bfad9 2024-03-30 thomas err = queue_notification(&old_id, &new_id, repo, ref);
788 ce1bfad9 2024-03-30 thomas if (err)
789 ce1bfad9 2024-03-30 thomas goto done;
790 169def41 2023-06-22 thomas }
791 62ee7d94 2023-01-10 thomas
792 62ee7d94 2023-01-10 thomas free(id);
793 62ee7d94 2023-01-10 thomas id = NULL;
794 62ee7d94 2023-01-10 thomas }
795 62ee7d94 2023-01-10 thomas done:
796 62ee7d94 2023-01-10 thomas if (err) {
797 62ee7d94 2023-01-10 thomas if (err->code == GOT_ERR_LOCKFILE_TIMEOUT) {
798 62ee7d94 2023-01-10 thomas err = got_error_fmt(GOT_ERR_LOCKFILE_TIMEOUT,
799 62ee7d94 2023-01-10 thomas "could not acquire exclusive file lock for %s",
800 62ee7d94 2023-01-10 thomas refname);
801 62ee7d94 2023-01-10 thomas }
802 62ee7d94 2023-01-10 thomas send_ref_update_ng(client, &iref, refname, err->msg);
803 62ee7d94 2023-01-10 thomas } else
804 62ee7d94 2023-01-10 thomas send_ref_update_ok(client, &iref, refname);
805 62ee7d94 2023-01-10 thomas
806 62ee7d94 2023-01-10 thomas if (client->nref_updates > 0) {
807 62ee7d94 2023-01-10 thomas client->nref_updates--;
808 d98779cd 2023-01-19 thomas if (client->nref_updates == 0) {
809 62ee7d94 2023-01-10 thomas send_refs_updated(client);
810 ce1bfad9 2024-03-30 thomas notif = STAILQ_FIRST(&notifications);
811 ce1bfad9 2024-03-30 thomas if (notif) {
812 ce1bfad9 2024-03-30 thomas client->state = GOTD_STATE_NOTIFY;
813 ce1bfad9 2024-03-30 thomas err = request_notification(notif);
814 ce1bfad9 2024-03-30 thomas if (err) {
815 ce1bfad9 2024-03-30 thomas log_warn("could not send notification: "
816 ce1bfad9 2024-03-30 thomas "%s", err->msg);
817 ce1bfad9 2024-03-30 thomas client->flush_disconnect = 1;
818 ce1bfad9 2024-03-30 thomas }
819 ce1bfad9 2024-03-30 thomas } else
820 ce1bfad9 2024-03-30 thomas client->flush_disconnect = 1;
821 d98779cd 2023-01-19 thomas }
822 62ee7d94 2023-01-10 thomas
823 62ee7d94 2023-01-10 thomas }
824 62ee7d94 2023-01-10 thomas if (locked) {
825 62ee7d94 2023-01-10 thomas const struct got_error *unlock_err;
826 62ee7d94 2023-01-10 thomas unlock_err = got_ref_unlock(ref);
827 62ee7d94 2023-01-10 thomas if (unlock_err && err == NULL)
828 62ee7d94 2023-01-10 thomas err = unlock_err;
829 62ee7d94 2023-01-10 thomas }
830 62ee7d94 2023-01-10 thomas if (ref)
831 62ee7d94 2023-01-10 thomas got_ref_close(ref);
832 62ee7d94 2023-01-10 thomas free(refname);
833 62ee7d94 2023-01-10 thomas free(id);
834 62ee7d94 2023-01-10 thomas return err;
835 62ee7d94 2023-01-10 thomas }
836 62ee7d94 2023-01-10 thomas
837 ce1bfad9 2024-03-30 thomas static const struct got_error *
838 ce1bfad9 2024-03-30 thomas recv_notification_content(uint32_t *client_id, struct imsg *imsg)
839 ce1bfad9 2024-03-30 thomas {
840 ce1bfad9 2024-03-30 thomas struct gotd_imsg_notification_content inotif;
841 ce1bfad9 2024-03-30 thomas size_t datalen;
842 ce1bfad9 2024-03-30 thomas
843 ce1bfad9 2024-03-30 thomas datalen = imsg->hdr.len - IMSG_HEADER_SIZE;
844 ce1bfad9 2024-03-30 thomas if (datalen < sizeof(inotif))
845 ce1bfad9 2024-03-30 thomas return got_error(GOT_ERR_PRIVSEP_LEN);
846 ce1bfad9 2024-03-30 thomas memcpy(&inotif, imsg->data, sizeof(inotif));
847 ce1bfad9 2024-03-30 thomas
848 ce1bfad9 2024-03-30 thomas *client_id = inotif.client_id;
849 ce1bfad9 2024-03-30 thomas return NULL;
850 ce1bfad9 2024-03-30 thomas }
851 ce1bfad9 2024-03-30 thomas
852 62ee7d94 2023-01-10 thomas static void
853 62ee7d94 2023-01-10 thomas session_dispatch_repo_child(int fd, short event, void *arg)
854 62ee7d94 2023-01-10 thomas {
855 62ee7d94 2023-01-10 thomas struct gotd_imsgev *iev = arg;
856 62ee7d94 2023-01-10 thomas struct imsgbuf *ibuf = &iev->ibuf;
857 62ee7d94 2023-01-10 thomas struct gotd_session_client *client = &gotd_session_client;
858 62ee7d94 2023-01-10 thomas ssize_t n;
859 62ee7d94 2023-01-10 thomas int shut = 0;
860 62ee7d94 2023-01-10 thomas struct imsg imsg;
861 62ee7d94 2023-01-10 thomas
862 62ee7d94 2023-01-10 thomas if (event & EV_READ) {
863 62ee7d94 2023-01-10 thomas if ((n = imsg_read(ibuf)) == -1 && errno != EAGAIN)
864 62ee7d94 2023-01-10 thomas fatal("imsg_read error");
865 62ee7d94 2023-01-10 thomas if (n == 0) {
866 62ee7d94 2023-01-10 thomas /* Connection closed. */
867 62ee7d94 2023-01-10 thomas shut = 1;
868 62ee7d94 2023-01-10 thomas goto done;
869 62ee7d94 2023-01-10 thomas }
870 62ee7d94 2023-01-10 thomas }
871 62ee7d94 2023-01-10 thomas
872 62ee7d94 2023-01-10 thomas if (event & EV_WRITE) {
873 62ee7d94 2023-01-10 thomas n = msgbuf_write(&ibuf->w);
874 62ee7d94 2023-01-10 thomas if (n == -1 && errno != EAGAIN)
875 62ee7d94 2023-01-10 thomas fatal("msgbuf_write");
876 62ee7d94 2023-01-10 thomas if (n == 0) {
877 62ee7d94 2023-01-10 thomas /* Connection closed. */
878 62ee7d94 2023-01-10 thomas shut = 1;
879 62ee7d94 2023-01-10 thomas goto done;
880 62ee7d94 2023-01-10 thomas }
881 62ee7d94 2023-01-10 thomas }
882 62ee7d94 2023-01-10 thomas
883 62ee7d94 2023-01-10 thomas for (;;) {
884 62ee7d94 2023-01-10 thomas const struct got_error *err = NULL;
885 62ee7d94 2023-01-10 thomas uint32_t client_id = 0;
886 62ee7d94 2023-01-10 thomas int do_disconnect = 0;
887 62ee7d94 2023-01-10 thomas int do_ref_updates = 0, do_ref_update = 0;
888 ce1bfad9 2024-03-30 thomas int do_packfile_install = 0, do_notify = 0;
889 62ee7d94 2023-01-10 thomas
890 62ee7d94 2023-01-10 thomas if ((n = imsg_get(ibuf, &imsg)) == -1)
891 62ee7d94 2023-01-10 thomas fatal("%s: imsg_get error", __func__);
892 62ee7d94 2023-01-10 thomas if (n == 0) /* No more messages. */
893 62ee7d94 2023-01-10 thomas break;
894 62ee7d94 2023-01-10 thomas
895 62ee7d94 2023-01-10 thomas switch (imsg.hdr.type) {
896 62ee7d94 2023-01-10 thomas case GOTD_IMSG_ERROR:
897 62ee7d94 2023-01-10 thomas do_disconnect = 1;
898 62ee7d94 2023-01-10 thomas err = gotd_imsg_recv_error(&client_id, &imsg);
899 62ee7d94 2023-01-10 thomas break;
900 62ee7d94 2023-01-10 thomas case GOTD_IMSG_PACKFILE_DONE:
901 62ee7d94 2023-01-10 thomas do_disconnect = 1;
902 62ee7d94 2023-01-10 thomas err = recv_packfile_done(&client_id, &imsg);
903 62ee7d94 2023-01-10 thomas break;
904 62ee7d94 2023-01-10 thomas case GOTD_IMSG_PACKFILE_INSTALL:
905 62ee7d94 2023-01-10 thomas err = recv_packfile_install(&client_id, &imsg);
906 62ee7d94 2023-01-10 thomas if (err == NULL)
907 62ee7d94 2023-01-10 thomas do_packfile_install = 1;
908 62ee7d94 2023-01-10 thomas break;
909 62ee7d94 2023-01-10 thomas case GOTD_IMSG_REF_UPDATES_START:
910 62ee7d94 2023-01-10 thomas err = recv_ref_updates_start(&client_id, &imsg);
911 62ee7d94 2023-01-10 thomas if (err == NULL)
912 62ee7d94 2023-01-10 thomas do_ref_updates = 1;
913 62ee7d94 2023-01-10 thomas break;
914 62ee7d94 2023-01-10 thomas case GOTD_IMSG_REF_UPDATE:
915 62ee7d94 2023-01-10 thomas err = recv_ref_update(&client_id, &imsg);
916 62ee7d94 2023-01-10 thomas if (err == NULL)
917 62ee7d94 2023-01-10 thomas do_ref_update = 1;
918 62ee7d94 2023-01-10 thomas break;
919 ce1bfad9 2024-03-30 thomas case GOTD_IMSG_NOTIFY:
920 ce1bfad9 2024-03-30 thomas err = recv_notification_content(&client_id, &imsg);
921 ce1bfad9 2024-03-30 thomas if (err == NULL)
922 ce1bfad9 2024-03-30 thomas do_notify = 1;
923 ce1bfad9 2024-03-30 thomas break;
924 62ee7d94 2023-01-10 thomas default:
925 62ee7d94 2023-01-10 thomas log_debug("unexpected imsg %d", imsg.hdr.type);
926 62ee7d94 2023-01-10 thomas break;
927 62ee7d94 2023-01-10 thomas }
928 62ee7d94 2023-01-10 thomas
929 62ee7d94 2023-01-10 thomas if (do_disconnect) {
930 62ee7d94 2023-01-10 thomas if (err)
931 62ee7d94 2023-01-10 thomas disconnect_on_error(client, err);
932 62ee7d94 2023-01-10 thomas else
933 62ee7d94 2023-01-10 thomas disconnect(client);
934 62ee7d94 2023-01-10 thomas } else {
935 ce1bfad9 2024-03-30 thomas struct gotd_session_notif *notif;
936 ce1bfad9 2024-03-30 thomas
937 62ee7d94 2023-01-10 thomas if (do_packfile_install)
938 62ee7d94 2023-01-10 thomas err = install_pack(client,
939 62ee7d94 2023-01-10 thomas gotd_session.repo->path, &imsg);
940 62ee7d94 2023-01-10 thomas else if (do_ref_updates)
941 62ee7d94 2023-01-10 thomas err = begin_ref_updates(client, &imsg);
942 62ee7d94 2023-01-10 thomas else if (do_ref_update)
943 d98779cd 2023-01-19 thomas err = update_ref(&shut, client,
944 62ee7d94 2023-01-10 thomas gotd_session.repo->path, &imsg);
945 ce1bfad9 2024-03-30 thomas else if (do_notify)
946 ce1bfad9 2024-03-30 thomas err = forward_notification(client, &imsg);
947 62ee7d94 2023-01-10 thomas if (err)
948 62ee7d94 2023-01-10 thomas log_warnx("uid %d: %s", client->euid, err->msg);
949 ce1bfad9 2024-03-30 thomas
950 ce1bfad9 2024-03-30 thomas notif = STAILQ_FIRST(&notifications);
951 ce1bfad9 2024-03-30 thomas if (notif && do_notify) {
952 ce1bfad9 2024-03-30 thomas /* Request content for next notification. */
953 ce1bfad9 2024-03-30 thomas err = request_notification(notif);
954 ce1bfad9 2024-03-30 thomas if (err) {
955 ce1bfad9 2024-03-30 thomas log_warn("could not send notification: "
956 ce1bfad9 2024-03-30 thomas "%s", err->msg);
957 ce1bfad9 2024-03-30 thomas shut = 1;
958 ce1bfad9 2024-03-30 thomas }
959 ce1bfad9 2024-03-30 thomas }
960 62ee7d94 2023-01-10 thomas }
961 62ee7d94 2023-01-10 thomas imsg_free(&imsg);
962 62ee7d94 2023-01-10 thomas }
963 62ee7d94 2023-01-10 thomas done:
964 62ee7d94 2023-01-10 thomas if (!shut) {
965 62ee7d94 2023-01-10 thomas gotd_imsg_event_add(iev);
966 62ee7d94 2023-01-10 thomas } else {
967 62ee7d94 2023-01-10 thomas /* This pipe is dead. Remove its event handler */
968 62ee7d94 2023-01-10 thomas event_del(&iev->ev);
969 62ee7d94 2023-01-10 thomas event_loopexit(NULL);
970 62ee7d94 2023-01-10 thomas }
971 62ee7d94 2023-01-10 thomas }
972 62ee7d94 2023-01-10 thomas
973 62ee7d94 2023-01-10 thomas static const struct got_error *
974 62ee7d94 2023-01-10 thomas recv_capabilities(struct gotd_session_client *client, struct imsg *imsg)
975 62ee7d94 2023-01-10 thomas {
976 62ee7d94 2023-01-10 thomas struct gotd_imsg_capabilities icapas;
977 62ee7d94 2023-01-10 thomas size_t datalen;
978 62ee7d94 2023-01-10 thomas
979 62ee7d94 2023-01-10 thomas datalen = imsg->hdr.len - IMSG_HEADER_SIZE;
980 62ee7d94 2023-01-10 thomas if (datalen != sizeof(icapas))
981 62ee7d94 2023-01-10 thomas return got_error(GOT_ERR_PRIVSEP_LEN);
982 62ee7d94 2023-01-10 thomas memcpy(&icapas, imsg->data, sizeof(icapas));
983 62ee7d94 2023-01-10 thomas
984 62ee7d94 2023-01-10 thomas client->ncapa_alloc = icapas.ncapabilities;
985 62ee7d94 2023-01-10 thomas client->capabilities = calloc(client->ncapa_alloc,
986 62ee7d94 2023-01-10 thomas sizeof(*client->capabilities));
987 62ee7d94 2023-01-10 thomas if (client->capabilities == NULL) {
988 62ee7d94 2023-01-10 thomas client->ncapa_alloc = 0;
989 62ee7d94 2023-01-10 thomas return got_error_from_errno("calloc");
990 62ee7d94 2023-01-10 thomas }
991 62ee7d94 2023-01-10 thomas
992 62ee7d94 2023-01-10 thomas log_debug("expecting %zu capabilities from uid %d",
993 62ee7d94 2023-01-10 thomas client->ncapa_alloc, client->euid);
994 62ee7d94 2023-01-10 thomas return NULL;
995 62ee7d94 2023-01-10 thomas }
996 62ee7d94 2023-01-10 thomas
997 62ee7d94 2023-01-10 thomas static const struct got_error *
998 62ee7d94 2023-01-10 thomas recv_capability(struct gotd_session_client *client, struct imsg *imsg)
999 62ee7d94 2023-01-10 thomas {
1000 62ee7d94 2023-01-10 thomas struct gotd_imsg_capability icapa;
1001 62ee7d94 2023-01-10 thomas struct gotd_client_capability *capa;
1002 62ee7d94 2023-01-10 thomas size_t datalen;
1003 62ee7d94 2023-01-10 thomas char *key, *value = NULL;
1004 62ee7d94 2023-01-10 thomas
1005 62ee7d94 2023-01-10 thomas if (client->capabilities == NULL ||
1006 62ee7d94 2023-01-10 thomas client->ncapabilities >= client->ncapa_alloc) {
1007 62ee7d94 2023-01-10 thomas return got_error_msg(GOT_ERR_BAD_REQUEST,
1008 62ee7d94 2023-01-10 thomas "unexpected capability received");
1009 62ee7d94 2023-01-10 thomas }
1010 62ee7d94 2023-01-10 thomas
1011 62ee7d94 2023-01-10 thomas memset(&icapa, 0, sizeof(icapa));
1012 62ee7d94 2023-01-10 thomas
1013 62ee7d94 2023-01-10 thomas datalen = imsg->hdr.len - IMSG_HEADER_SIZE;
1014 62ee7d94 2023-01-10 thomas if (datalen < sizeof(icapa))
1015 62ee7d94 2023-01-10 thomas return got_error(GOT_ERR_PRIVSEP_LEN);
1016 62ee7d94 2023-01-10 thomas memcpy(&icapa, imsg->data, sizeof(icapa));
1017 62ee7d94 2023-01-10 thomas
1018 62ee7d94 2023-01-10 thomas if (datalen != sizeof(icapa) + icapa.key_len + icapa.value_len)
1019 62ee7d94 2023-01-10 thomas return got_error(GOT_ERR_PRIVSEP_LEN);
1020 62ee7d94 2023-01-10 thomas
1021 fcbb06bf 2023-01-14 thomas key = strndup(imsg->data + sizeof(icapa), icapa.key_len);
1022 62ee7d94 2023-01-10 thomas if (key == NULL)
1023 fcbb06bf 2023-01-14 thomas return got_error_from_errno("strndup");
1024 62ee7d94 2023-01-10 thomas if (icapa.value_len > 0) {
1025 fcbb06bf 2023-01-14 thomas value = strndup(imsg->data + sizeof(icapa) + icapa.key_len,
1026 fcbb06bf 2023-01-14 thomas icapa.value_len);
1027 62ee7d94 2023-01-10 thomas if (value == NULL) {
1028 62ee7d94 2023-01-10 thomas free(key);
1029 fcbb06bf 2023-01-14 thomas return got_error_from_errno("strndup");
1030 62ee7d94 2023-01-10 thomas }
1031 62ee7d94 2023-01-10 thomas }
1032 62ee7d94 2023-01-10 thomas
1033 62ee7d94 2023-01-10 thomas capa = &client->capabilities[client->ncapabilities++];
1034 62ee7d94 2023-01-10 thomas capa->key = key;
1035 62ee7d94 2023-01-10 thomas capa->value = value;
1036 62ee7d94 2023-01-10 thomas
1037 62ee7d94 2023-01-10 thomas if (value)
1038 62ee7d94 2023-01-10 thomas log_debug("uid %d: capability %s=%s", client->euid, key, value);
1039 62ee7d94 2023-01-10 thomas else
1040 62ee7d94 2023-01-10 thomas log_debug("uid %d: capability %s", client->euid, key);
1041 62ee7d94 2023-01-10 thomas
1042 62ee7d94 2023-01-10 thomas return NULL;
1043 62ee7d94 2023-01-10 thomas }
1044 62ee7d94 2023-01-10 thomas
1045 62ee7d94 2023-01-10 thomas static const struct got_error *
1046 62ee7d94 2023-01-10 thomas ensure_client_is_reading(struct gotd_session_client *client)
1047 62ee7d94 2023-01-10 thomas {
1048 62ee7d94 2023-01-10 thomas if (client->is_writing) {
1049 62ee7d94 2023-01-10 thomas return got_error_fmt(GOT_ERR_BAD_PACKET,
1050 62ee7d94 2023-01-10 thomas "uid %d made a read-request but is not reading from "
1051 62ee7d94 2023-01-10 thomas "a repository", client->euid);
1052 62ee7d94 2023-01-10 thomas }
1053 62ee7d94 2023-01-10 thomas
1054 62ee7d94 2023-01-10 thomas return NULL;
1055 62ee7d94 2023-01-10 thomas }
1056 62ee7d94 2023-01-10 thomas
1057 62ee7d94 2023-01-10 thomas static const struct got_error *
1058 62ee7d94 2023-01-10 thomas ensure_client_is_writing(struct gotd_session_client *client)
1059 62ee7d94 2023-01-10 thomas {
1060 62ee7d94 2023-01-10 thomas if (!client->is_writing) {
1061 62ee7d94 2023-01-10 thomas return got_error_fmt(GOT_ERR_BAD_PACKET,
1062 62ee7d94 2023-01-10 thomas "uid %d made a write-request but is not writing to "
1063 62ee7d94 2023-01-10 thomas "a repository", client->euid);
1064 62ee7d94 2023-01-10 thomas }
1065 62ee7d94 2023-01-10 thomas
1066 62ee7d94 2023-01-10 thomas return NULL;
1067 62ee7d94 2023-01-10 thomas }
1068 62ee7d94 2023-01-10 thomas
1069 62ee7d94 2023-01-10 thomas static const struct got_error *
1070 62ee7d94 2023-01-10 thomas forward_want(struct gotd_session_client *client, struct imsg *imsg)
1071 62ee7d94 2023-01-10 thomas {
1072 62ee7d94 2023-01-10 thomas struct gotd_imsg_want ireq;
1073 62ee7d94 2023-01-10 thomas struct gotd_imsg_want iwant;
1074 62ee7d94 2023-01-10 thomas size_t datalen;
1075 62ee7d94 2023-01-10 thomas
1076 62ee7d94 2023-01-10 thomas datalen = imsg->hdr.len - IMSG_HEADER_SIZE;
1077 62ee7d94 2023-01-10 thomas if (datalen != sizeof(ireq))
1078 62ee7d94 2023-01-10 thomas return got_error(GOT_ERR_PRIVSEP_LEN);
1079 62ee7d94 2023-01-10 thomas
1080 62ee7d94 2023-01-10 thomas memcpy(&ireq, imsg->data, datalen);
1081 62ee7d94 2023-01-10 thomas
1082 62ee7d94 2023-01-10 thomas memset(&iwant, 0, sizeof(iwant));
1083 62ee7d94 2023-01-10 thomas memcpy(iwant.object_id, ireq.object_id, SHA1_DIGEST_LENGTH);
1084 62ee7d94 2023-01-10 thomas iwant.client_id = client->id;
1085 62ee7d94 2023-01-10 thomas
1086 62ee7d94 2023-01-10 thomas if (gotd_imsg_compose_event(&client->repo_child_iev, GOTD_IMSG_WANT,
1087 7fed8fa4 2023-06-22 thomas gotd_session.proc_id, -1, &iwant, sizeof(iwant)) == -1)
1088 62ee7d94 2023-01-10 thomas return got_error_from_errno("imsg compose WANT");
1089 62ee7d94 2023-01-10 thomas
1090 62ee7d94 2023-01-10 thomas return NULL;
1091 62ee7d94 2023-01-10 thomas }
1092 62ee7d94 2023-01-10 thomas
1093 62ee7d94 2023-01-10 thomas static const struct got_error *
1094 62ee7d94 2023-01-10 thomas forward_ref_update(struct gotd_session_client *client, struct imsg *imsg)
1095 62ee7d94 2023-01-10 thomas {
1096 62ee7d94 2023-01-10 thomas const struct got_error *err = NULL;
1097 62ee7d94 2023-01-10 thomas struct gotd_imsg_ref_update ireq;
1098 62ee7d94 2023-01-10 thomas struct gotd_imsg_ref_update *iref = NULL;
1099 62ee7d94 2023-01-10 thomas size_t datalen;
1100 62ee7d94 2023-01-10 thomas
1101 62ee7d94 2023-01-10 thomas datalen = imsg->hdr.len - IMSG_HEADER_SIZE;
1102 62ee7d94 2023-01-10 thomas if (datalen < sizeof(ireq))
1103 62ee7d94 2023-01-10 thomas return got_error(GOT_ERR_PRIVSEP_LEN);
1104 62ee7d94 2023-01-10 thomas memcpy(&ireq, imsg->data, sizeof(ireq));
1105 62ee7d94 2023-01-10 thomas if (datalen != sizeof(ireq) + ireq.name_len)
1106 62ee7d94 2023-01-10 thomas return got_error(GOT_ERR_PRIVSEP_LEN);
1107 62ee7d94 2023-01-10 thomas
1108 62ee7d94 2023-01-10 thomas iref = malloc(datalen);
1109 62ee7d94 2023-01-10 thomas if (iref == NULL)
1110 62ee7d94 2023-01-10 thomas return got_error_from_errno("malloc");
1111 62ee7d94 2023-01-10 thomas memcpy(iref, imsg->data, datalen);
1112 62ee7d94 2023-01-10 thomas
1113 62ee7d94 2023-01-10 thomas iref->client_id = client->id;
1114 62ee7d94 2023-01-10 thomas if (gotd_imsg_compose_event(&client->repo_child_iev,
1115 7fed8fa4 2023-06-22 thomas GOTD_IMSG_REF_UPDATE, gotd_session.proc_id, -1,
1116 7fed8fa4 2023-06-22 thomas iref, datalen) == -1)
1117 62ee7d94 2023-01-10 thomas err = got_error_from_errno("imsg compose REF_UPDATE");
1118 62ee7d94 2023-01-10 thomas free(iref);
1119 62ee7d94 2023-01-10 thomas return err;
1120 62ee7d94 2023-01-10 thomas }
1121 62ee7d94 2023-01-10 thomas
1122 62ee7d94 2023-01-10 thomas static const struct got_error *
1123 62ee7d94 2023-01-10 thomas forward_have(struct gotd_session_client *client, struct imsg *imsg)
1124 62ee7d94 2023-01-10 thomas {
1125 62ee7d94 2023-01-10 thomas struct gotd_imsg_have ireq;
1126 62ee7d94 2023-01-10 thomas struct gotd_imsg_have ihave;
1127 62ee7d94 2023-01-10 thomas size_t datalen;
1128 62ee7d94 2023-01-10 thomas
1129 62ee7d94 2023-01-10 thomas datalen = imsg->hdr.len - IMSG_HEADER_SIZE;
1130 62ee7d94 2023-01-10 thomas if (datalen != sizeof(ireq))
1131 62ee7d94 2023-01-10 thomas return got_error(GOT_ERR_PRIVSEP_LEN);
1132 62ee7d94 2023-01-10 thomas
1133 62ee7d94 2023-01-10 thomas memcpy(&ireq, imsg->data, datalen);
1134 62ee7d94 2023-01-10 thomas
1135 62ee7d94 2023-01-10 thomas memset(&ihave, 0, sizeof(ihave));
1136 62ee7d94 2023-01-10 thomas memcpy(ihave.object_id, ireq.object_id, SHA1_DIGEST_LENGTH);
1137 62ee7d94 2023-01-10 thomas ihave.client_id = client->id;
1138 62ee7d94 2023-01-10 thomas
1139 62ee7d94 2023-01-10 thomas if (gotd_imsg_compose_event(&client->repo_child_iev, GOTD_IMSG_HAVE,
1140 7fed8fa4 2023-06-22 thomas gotd_session.proc_id, -1, &ihave, sizeof(ihave)) == -1)
1141 62ee7d94 2023-01-10 thomas return got_error_from_errno("imsg compose HAVE");
1142 62ee7d94 2023-01-10 thomas
1143 62ee7d94 2023-01-10 thomas return NULL;
1144 62ee7d94 2023-01-10 thomas }
1145 62ee7d94 2023-01-10 thomas
1146 62ee7d94 2023-01-10 thomas static int
1147 62ee7d94 2023-01-10 thomas client_has_capability(struct gotd_session_client *client, const char *capastr)
1148 62ee7d94 2023-01-10 thomas {
1149 62ee7d94 2023-01-10 thomas struct gotd_client_capability *capa;
1150 62ee7d94 2023-01-10 thomas size_t i;
1151 62ee7d94 2023-01-10 thomas
1152 62ee7d94 2023-01-10 thomas if (client->ncapabilities == 0)
1153 62ee7d94 2023-01-10 thomas return 0;
1154 62ee7d94 2023-01-10 thomas
1155 62ee7d94 2023-01-10 thomas for (i = 0; i < client->ncapabilities; i++) {
1156 62ee7d94 2023-01-10 thomas capa = &client->capabilities[i];
1157 62ee7d94 2023-01-10 thomas if (strcmp(capa->key, capastr) == 0)
1158 62ee7d94 2023-01-10 thomas return 1;
1159 62ee7d94 2023-01-10 thomas }
1160 62ee7d94 2023-01-10 thomas
1161 62ee7d94 2023-01-10 thomas return 0;
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 recv_packfile(struct gotd_session_client *client)
1166 62ee7d94 2023-01-10 thomas {
1167 62ee7d94 2023-01-10 thomas const struct got_error *err = NULL;
1168 62ee7d94 2023-01-10 thomas struct gotd_imsg_recv_packfile ipack;
1169 62ee7d94 2023-01-10 thomas struct gotd_imsg_packfile_pipe ipipe;
1170 62ee7d94 2023-01-10 thomas struct gotd_imsg_packidx_file ifile;
1171 62ee7d94 2023-01-10 thomas char *basepath = NULL, *pack_path = NULL, *idx_path = NULL;
1172 62ee7d94 2023-01-10 thomas int packfd = -1, idxfd = -1;
1173 62ee7d94 2023-01-10 thomas int pipe[2] = { -1, -1 };
1174 62ee7d94 2023-01-10 thomas
1175 62ee7d94 2023-01-10 thomas if (client->packfile_path) {
1176 62ee7d94 2023-01-10 thomas return got_error_fmt(GOT_ERR_PRIVSEP_MSG,
1177 62ee7d94 2023-01-10 thomas "uid %d already has a pack file", client->euid);
1178 62ee7d94 2023-01-10 thomas }
1179 62ee7d94 2023-01-10 thomas
1180 62ee7d94 2023-01-10 thomas if (socketpair(AF_UNIX, SOCK_STREAM, PF_UNSPEC, pipe) == -1)
1181 62ee7d94 2023-01-10 thomas return got_error_from_errno("socketpair");
1182 62ee7d94 2023-01-10 thomas
1183 62ee7d94 2023-01-10 thomas memset(&ipipe, 0, sizeof(ipipe));
1184 62ee7d94 2023-01-10 thomas ipipe.client_id = client->id;
1185 62ee7d94 2023-01-10 thomas
1186 62ee7d94 2023-01-10 thomas /* Send pack pipe end 0 to repo child process. */
1187 62ee7d94 2023-01-10 thomas if (gotd_imsg_compose_event(&client->repo_child_iev,
1188 7fed8fa4 2023-06-22 thomas GOTD_IMSG_PACKFILE_PIPE, gotd_session.proc_id, pipe[0],
1189 62ee7d94 2023-01-10 thomas &ipipe, sizeof(ipipe)) == -1) {
1190 62ee7d94 2023-01-10 thomas err = got_error_from_errno("imsg compose PACKFILE_PIPE");
1191 62ee7d94 2023-01-10 thomas pipe[0] = -1;
1192 62ee7d94 2023-01-10 thomas goto done;
1193 62ee7d94 2023-01-10 thomas }
1194 62ee7d94 2023-01-10 thomas pipe[0] = -1;
1195 62ee7d94 2023-01-10 thomas
1196 62ee7d94 2023-01-10 thomas /* Send pack pipe end 1 to gotsh(1) (expects just an fd, no data). */
1197 62ee7d94 2023-01-10 thomas if (gotd_imsg_compose_event(&client->iev,
1198 7fed8fa4 2023-06-22 thomas GOTD_IMSG_PACKFILE_PIPE, gotd_session.proc_id, pipe[1],
1199 7fed8fa4 2023-06-22 thomas NULL, 0) == -1)
1200 62ee7d94 2023-01-10 thomas err = got_error_from_errno("imsg compose PACKFILE_PIPE");
1201 62ee7d94 2023-01-10 thomas pipe[1] = -1;
1202 62ee7d94 2023-01-10 thomas
1203 62ee7d94 2023-01-10 thomas if (asprintf(&basepath, "%s/%s/receiving-from-uid-%d.pack",
1204 62ee7d94 2023-01-10 thomas got_repo_get_path(gotd_session.repo), GOT_OBJECTS_PACK_DIR,
1205 62ee7d94 2023-01-10 thomas client->euid) == -1) {
1206 62ee7d94 2023-01-10 thomas err = got_error_from_errno("asprintf");
1207 62ee7d94 2023-01-10 thomas goto done;
1208 62ee7d94 2023-01-10 thomas }
1209 62ee7d94 2023-01-10 thomas
1210 62ee7d94 2023-01-10 thomas err = got_opentemp_named_fd(&pack_path, &packfd, basepath, "");
1211 62ee7d94 2023-01-10 thomas if (err)
1212 62ee7d94 2023-01-10 thomas goto done;
1213 851a5b48 2023-02-03 thomas if (fchmod(packfd, GOT_DEFAULT_PACK_MODE) == -1) {
1214 851a5b48 2023-02-03 thomas err = got_error_from_errno2("fchmod", pack_path);
1215 851a5b48 2023-02-03 thomas goto done;
1216 851a5b48 2023-02-03 thomas }
1217 62ee7d94 2023-01-10 thomas
1218 62ee7d94 2023-01-10 thomas free(basepath);
1219 62ee7d94 2023-01-10 thomas if (asprintf(&basepath, "%s/%s/receiving-from-uid-%d.idx",
1220 62ee7d94 2023-01-10 thomas got_repo_get_path(gotd_session.repo), GOT_OBJECTS_PACK_DIR,
1221 62ee7d94 2023-01-10 thomas client->euid) == -1) {
1222 62ee7d94 2023-01-10 thomas err = got_error_from_errno("asprintf");
1223 62ee7d94 2023-01-10 thomas basepath = NULL;
1224 62ee7d94 2023-01-10 thomas goto done;
1225 62ee7d94 2023-01-10 thomas }
1226 62ee7d94 2023-01-10 thomas err = got_opentemp_named_fd(&idx_path, &idxfd, basepath, "");
1227 62ee7d94 2023-01-10 thomas if (err)
1228 62ee7d94 2023-01-10 thomas goto done;
1229 851a5b48 2023-02-03 thomas if (fchmod(idxfd, GOT_DEFAULT_PACK_MODE) == -1) {
1230 851a5b48 2023-02-03 thomas err = got_error_from_errno2("fchmod", idx_path);
1231 851a5b48 2023-02-03 thomas goto done;
1232 851a5b48 2023-02-03 thomas }
1233 62ee7d94 2023-01-10 thomas
1234 62ee7d94 2023-01-10 thomas memset(&ifile, 0, sizeof(ifile));
1235 62ee7d94 2023-01-10 thomas ifile.client_id = client->id;
1236 62ee7d94 2023-01-10 thomas if (gotd_imsg_compose_event(&client->repo_child_iev,
1237 7fed8fa4 2023-06-22 thomas GOTD_IMSG_PACKIDX_FILE, gotd_session.proc_id,
1238 62ee7d94 2023-01-10 thomas idxfd, &ifile, sizeof(ifile)) == -1) {
1239 62ee7d94 2023-01-10 thomas err = got_error_from_errno("imsg compose PACKIDX_FILE");
1240 62ee7d94 2023-01-10 thomas idxfd = -1;
1241 62ee7d94 2023-01-10 thomas goto done;
1242 62ee7d94 2023-01-10 thomas }
1243 62ee7d94 2023-01-10 thomas idxfd = -1;
1244 62ee7d94 2023-01-10 thomas
1245 62ee7d94 2023-01-10 thomas memset(&ipack, 0, sizeof(ipack));
1246 62ee7d94 2023-01-10 thomas ipack.client_id = client->id;
1247 62ee7d94 2023-01-10 thomas if (client_has_capability(client, GOT_CAPA_REPORT_STATUS))
1248 62ee7d94 2023-01-10 thomas ipack.report_status = 1;
1249 62ee7d94 2023-01-10 thomas
1250 62ee7d94 2023-01-10 thomas if (gotd_imsg_compose_event(&client->repo_child_iev,
1251 7fed8fa4 2023-06-22 thomas GOTD_IMSG_RECV_PACKFILE, gotd_session.proc_id, packfd,
1252 62ee7d94 2023-01-10 thomas &ipack, sizeof(ipack)) == -1) {
1253 62ee7d94 2023-01-10 thomas err = got_error_from_errno("imsg compose RECV_PACKFILE");
1254 62ee7d94 2023-01-10 thomas packfd = -1;
1255 62ee7d94 2023-01-10 thomas goto done;
1256 62ee7d94 2023-01-10 thomas }
1257 62ee7d94 2023-01-10 thomas packfd = -1;
1258 62ee7d94 2023-01-10 thomas
1259 62ee7d94 2023-01-10 thomas done:
1260 62ee7d94 2023-01-10 thomas free(basepath);
1261 62ee7d94 2023-01-10 thomas if (pipe[0] != -1 && close(pipe[0]) == -1 && err == NULL)
1262 62ee7d94 2023-01-10 thomas err = got_error_from_errno("close");
1263 62ee7d94 2023-01-10 thomas if (pipe[1] != -1 && close(pipe[1]) == -1 && err == NULL)
1264 62ee7d94 2023-01-10 thomas err = got_error_from_errno("close");
1265 62ee7d94 2023-01-10 thomas if (packfd != -1 && close(packfd) == -1 && err == NULL)
1266 62ee7d94 2023-01-10 thomas err = got_error_from_errno("close");
1267 62ee7d94 2023-01-10 thomas if (idxfd != -1 && close(idxfd) == -1 && err == NULL)
1268 62ee7d94 2023-01-10 thomas err = got_error_from_errno("close");
1269 62ee7d94 2023-01-10 thomas if (err) {
1270 62ee7d94 2023-01-10 thomas free(pack_path);
1271 62ee7d94 2023-01-10 thomas free(idx_path);
1272 62ee7d94 2023-01-10 thomas } else {
1273 62ee7d94 2023-01-10 thomas client->packfile_path = pack_path;
1274 62ee7d94 2023-01-10 thomas client->packidx_path = idx_path;
1275 62ee7d94 2023-01-10 thomas }
1276 62ee7d94 2023-01-10 thomas return err;
1277 62ee7d94 2023-01-10 thomas }
1278 62ee7d94 2023-01-10 thomas
1279 62ee7d94 2023-01-10 thomas static const struct got_error *
1280 62ee7d94 2023-01-10 thomas send_packfile(struct gotd_session_client *client)
1281 62ee7d94 2023-01-10 thomas {
1282 62ee7d94 2023-01-10 thomas const struct got_error *err = NULL;
1283 62ee7d94 2023-01-10 thomas struct gotd_imsg_send_packfile ipack;
1284 62ee7d94 2023-01-10 thomas struct gotd_imsg_packfile_pipe ipipe;
1285 62ee7d94 2023-01-10 thomas int pipe[2];
1286 62ee7d94 2023-01-10 thomas
1287 62ee7d94 2023-01-10 thomas if (socketpair(AF_UNIX, SOCK_STREAM, PF_UNSPEC, pipe) == -1)
1288 62ee7d94 2023-01-10 thomas return got_error_from_errno("socketpair");
1289 62ee7d94 2023-01-10 thomas
1290 62ee7d94 2023-01-10 thomas memset(&ipack, 0, sizeof(ipack));
1291 62ee7d94 2023-01-10 thomas memset(&ipipe, 0, sizeof(ipipe));
1292 62ee7d94 2023-01-10 thomas
1293 62ee7d94 2023-01-10 thomas ipack.client_id = client->id;
1294 62ee7d94 2023-01-10 thomas if (client_has_capability(client, GOT_CAPA_SIDE_BAND_64K))
1295 62ee7d94 2023-01-10 thomas ipack.report_progress = 1;
1296 62ee7d94 2023-01-10 thomas
1297 62ee7d94 2023-01-10 thomas client->delta_cache_fd = got_opentempfd();
1298 62ee7d94 2023-01-10 thomas if (client->delta_cache_fd == -1)
1299 62ee7d94 2023-01-10 thomas return got_error_from_errno("got_opentempfd");
1300 62ee7d94 2023-01-10 thomas
1301 62ee7d94 2023-01-10 thomas if (gotd_imsg_compose_event(&client->repo_child_iev,
1302 62ee7d94 2023-01-10 thomas GOTD_IMSG_SEND_PACKFILE, PROC_GOTD, client->delta_cache_fd,
1303 62ee7d94 2023-01-10 thomas &ipack, sizeof(ipack)) == -1) {
1304 62ee7d94 2023-01-10 thomas err = got_error_from_errno("imsg compose SEND_PACKFILE");
1305 62ee7d94 2023-01-10 thomas close(pipe[0]);
1306 62ee7d94 2023-01-10 thomas close(pipe[1]);
1307 62ee7d94 2023-01-10 thomas return err;
1308 62ee7d94 2023-01-10 thomas }
1309 62ee7d94 2023-01-10 thomas
1310 62ee7d94 2023-01-10 thomas ipipe.client_id = client->id;
1311 62ee7d94 2023-01-10 thomas
1312 62ee7d94 2023-01-10 thomas /* Send pack pipe end 0 to repo child process. */
1313 62ee7d94 2023-01-10 thomas if (gotd_imsg_compose_event(&client->repo_child_iev,
1314 62ee7d94 2023-01-10 thomas GOTD_IMSG_PACKFILE_PIPE, PROC_GOTD,
1315 62ee7d94 2023-01-10 thomas pipe[0], &ipipe, sizeof(ipipe)) == -1) {
1316 62ee7d94 2023-01-10 thomas err = got_error_from_errno("imsg compose PACKFILE_PIPE");
1317 62ee7d94 2023-01-10 thomas close(pipe[1]);
1318 62ee7d94 2023-01-10 thomas return err;
1319 62ee7d94 2023-01-10 thomas }
1320 62ee7d94 2023-01-10 thomas
1321 62ee7d94 2023-01-10 thomas /* Send pack pipe end 1 to gotsh(1) (expects just an fd, no data). */
1322 62ee7d94 2023-01-10 thomas if (gotd_imsg_compose_event(&client->iev,
1323 62ee7d94 2023-01-10 thomas GOTD_IMSG_PACKFILE_PIPE, PROC_GOTD, pipe[1], NULL, 0) == -1)
1324 62ee7d94 2023-01-10 thomas err = got_error_from_errno("imsg compose PACKFILE_PIPE");
1325 62ee7d94 2023-01-10 thomas
1326 62ee7d94 2023-01-10 thomas return err;
1327 62ee7d94 2023-01-10 thomas }
1328 62ee7d94 2023-01-10 thomas
1329 62ee7d94 2023-01-10 thomas static void
1330 8cb46987 2023-02-07 thomas session_dispatch_client(int fd, short events, void *arg)
1331 62ee7d94 2023-01-10 thomas {
1332 62ee7d94 2023-01-10 thomas struct gotd_imsgev *iev = arg;
1333 62ee7d94 2023-01-10 thomas struct imsgbuf *ibuf = &iev->ibuf;
1334 62ee7d94 2023-01-10 thomas struct gotd_session_client *client = &gotd_session_client;
1335 62ee7d94 2023-01-10 thomas const struct got_error *err = NULL;
1336 62ee7d94 2023-01-10 thomas struct imsg imsg;
1337 62ee7d94 2023-01-10 thomas ssize_t n;
1338 62ee7d94 2023-01-10 thomas
1339 62ee7d94 2023-01-10 thomas if (events & EV_WRITE) {
1340 62ee7d94 2023-01-10 thomas while (ibuf->w.queued) {
1341 62ee7d94 2023-01-10 thomas n = msgbuf_write(&ibuf->w);
1342 62ee7d94 2023-01-10 thomas if (n == -1 && errno == EPIPE) {
1343 62ee7d94 2023-01-10 thomas /*
1344 62ee7d94 2023-01-10 thomas * The client has closed its socket.
1345 62ee7d94 2023-01-10 thomas * This can happen when Git clients are
1346 62ee7d94 2023-01-10 thomas * done sending pack file data.
1347 62ee7d94 2023-01-10 thomas */
1348 62ee7d94 2023-01-10 thomas msgbuf_clear(&ibuf->w);
1349 62ee7d94 2023-01-10 thomas continue;
1350 62ee7d94 2023-01-10 thomas } else if (n == -1 && errno != EAGAIN) {
1351 62ee7d94 2023-01-10 thomas err = got_error_from_errno("imsg_flush");
1352 62ee7d94 2023-01-10 thomas disconnect_on_error(client, err);
1353 62ee7d94 2023-01-10 thomas return;
1354 62ee7d94 2023-01-10 thomas }
1355 62ee7d94 2023-01-10 thomas if (n == 0) {
1356 62ee7d94 2023-01-10 thomas /* Connection closed. */
1357 62ee7d94 2023-01-10 thomas err = got_error(GOT_ERR_EOF);
1358 62ee7d94 2023-01-10 thomas disconnect_on_error(client, err);
1359 62ee7d94 2023-01-10 thomas return;
1360 62ee7d94 2023-01-10 thomas }
1361 c8b73ac1 2023-08-23 thomas }
1362 c8b73ac1 2023-08-23 thomas
1363 c8b73ac1 2023-08-23 thomas if (client->flush_disconnect) {
1364 c8b73ac1 2023-08-23 thomas disconnect(client);
1365 c8b73ac1 2023-08-23 thomas return;
1366 62ee7d94 2023-01-10 thomas }
1367 62ee7d94 2023-01-10 thomas }
1368 62ee7d94 2023-01-10 thomas
1369 62ee7d94 2023-01-10 thomas if ((events & EV_READ) == 0)
1370 62ee7d94 2023-01-10 thomas return;
1371 62ee7d94 2023-01-10 thomas
1372 62ee7d94 2023-01-10 thomas memset(&imsg, 0, sizeof(imsg));
1373 62ee7d94 2023-01-10 thomas
1374 62ee7d94 2023-01-10 thomas while (err == NULL) {
1375 62ee7d94 2023-01-10 thomas err = gotd_imsg_recv(&imsg, ibuf, 0);
1376 62ee7d94 2023-01-10 thomas if (err) {
1377 62ee7d94 2023-01-10 thomas if (err->code == GOT_ERR_PRIVSEP_READ)
1378 62ee7d94 2023-01-10 thomas err = NULL;
1379 8e92c55c 2023-06-08 thomas else if (err->code == GOT_ERR_EOF &&
1380 8e92c55c 2023-06-08 thomas client->state == GOTD_STATE_EXPECT_CAPABILITIES) {
1381 8e92c55c 2023-06-08 thomas /*
1382 8e92c55c 2023-06-08 thomas * The client has closed its socket before
1383 8e92c55c 2023-06-08 thomas * sending its capability announcement.
1384 8e92c55c 2023-06-08 thomas * This can happen when Git clients have
1385 8e92c55c 2023-06-08 thomas * no ref-updates to send.
1386 8e92c55c 2023-06-08 thomas */
1387 8e92c55c 2023-06-08 thomas disconnect_on_error(client, err);
1388 8e92c55c 2023-06-08 thomas return;
1389 8e92c55c 2023-06-08 thomas }
1390 62ee7d94 2023-01-10 thomas break;
1391 62ee7d94 2023-01-10 thomas }
1392 62ee7d94 2023-01-10 thomas
1393 62ee7d94 2023-01-10 thomas evtimer_del(&client->tmo);
1394 62ee7d94 2023-01-10 thomas
1395 62ee7d94 2023-01-10 thomas switch (imsg.hdr.type) {
1396 62ee7d94 2023-01-10 thomas case GOTD_IMSG_CAPABILITIES:
1397 62ee7d94 2023-01-10 thomas if (client->state != GOTD_STATE_EXPECT_CAPABILITIES) {
1398 62ee7d94 2023-01-10 thomas err = got_error_msg(GOT_ERR_BAD_REQUEST,
1399 62ee7d94 2023-01-10 thomas "unexpected capabilities received");
1400 62ee7d94 2023-01-10 thomas break;
1401 62ee7d94 2023-01-10 thomas }
1402 62ee7d94 2023-01-10 thomas log_debug("receiving capabilities from uid %d",
1403 62ee7d94 2023-01-10 thomas client->euid);
1404 62ee7d94 2023-01-10 thomas err = recv_capabilities(client, &imsg);
1405 62ee7d94 2023-01-10 thomas break;
1406 62ee7d94 2023-01-10 thomas case GOTD_IMSG_CAPABILITY:
1407 62ee7d94 2023-01-10 thomas if (client->state != GOTD_STATE_EXPECT_CAPABILITIES) {
1408 62ee7d94 2023-01-10 thomas err = got_error_msg(GOT_ERR_BAD_REQUEST,
1409 62ee7d94 2023-01-10 thomas "unexpected capability received");
1410 62ee7d94 2023-01-10 thomas break;
1411 62ee7d94 2023-01-10 thomas }
1412 62ee7d94 2023-01-10 thomas err = recv_capability(client, &imsg);
1413 62ee7d94 2023-01-10 thomas if (err || client->ncapabilities < client->ncapa_alloc)
1414 62ee7d94 2023-01-10 thomas break;
1415 62ee7d94 2023-01-10 thomas if (!client->is_writing) {
1416 62ee7d94 2023-01-10 thomas client->state = GOTD_STATE_EXPECT_WANT;
1417 98c7fd82 2023-01-23 thomas client->accept_flush_pkt = 1;
1418 62ee7d94 2023-01-10 thomas log_debug("uid %d: expecting want-lines",
1419 62ee7d94 2023-01-10 thomas client->euid);
1420 62ee7d94 2023-01-10 thomas } else if (client->is_writing) {
1421 62ee7d94 2023-01-10 thomas client->state = GOTD_STATE_EXPECT_REF_UPDATE;
1422 98c7fd82 2023-01-23 thomas client->accept_flush_pkt = 1;
1423 62ee7d94 2023-01-10 thomas log_debug("uid %d: expecting ref-update-lines",
1424 62ee7d94 2023-01-10 thomas client->euid);
1425 62ee7d94 2023-01-10 thomas } else
1426 62ee7d94 2023-01-10 thomas fatalx("client %d is both reading and writing",
1427 62ee7d94 2023-01-10 thomas client->euid);
1428 62ee7d94 2023-01-10 thomas break;
1429 62ee7d94 2023-01-10 thomas case GOTD_IMSG_WANT:
1430 62ee7d94 2023-01-10 thomas if (client->state != GOTD_STATE_EXPECT_WANT) {
1431 62ee7d94 2023-01-10 thomas err = got_error_msg(GOT_ERR_BAD_REQUEST,
1432 62ee7d94 2023-01-10 thomas "unexpected want-line received");
1433 62ee7d94 2023-01-10 thomas break;
1434 62ee7d94 2023-01-10 thomas }
1435 62ee7d94 2023-01-10 thomas log_debug("received want-line from uid %d",
1436 62ee7d94 2023-01-10 thomas client->euid);
1437 62ee7d94 2023-01-10 thomas err = ensure_client_is_reading(client);
1438 62ee7d94 2023-01-10 thomas if (err)
1439 62ee7d94 2023-01-10 thomas break;
1440 98c7fd82 2023-01-23 thomas client->accept_flush_pkt = 1;
1441 62ee7d94 2023-01-10 thomas err = forward_want(client, &imsg);
1442 62ee7d94 2023-01-10 thomas break;
1443 62ee7d94 2023-01-10 thomas case GOTD_IMSG_REF_UPDATE:
1444 0445d8ec 2023-01-19 thomas if (client->state != GOTD_STATE_EXPECT_REF_UPDATE &&
1445 0445d8ec 2023-01-19 thomas client->state !=
1446 0445d8ec 2023-01-19 thomas GOTD_STATE_EXPECT_MORE_REF_UPDATES) {
1447 62ee7d94 2023-01-10 thomas err = got_error_msg(GOT_ERR_BAD_REQUEST,
1448 62ee7d94 2023-01-10 thomas "unexpected ref-update-line received");
1449 62ee7d94 2023-01-10 thomas break;
1450 62ee7d94 2023-01-10 thomas }
1451 62ee7d94 2023-01-10 thomas log_debug("received ref-update-line from uid %d",
1452 62ee7d94 2023-01-10 thomas client->euid);
1453 62ee7d94 2023-01-10 thomas err = ensure_client_is_writing(client);
1454 62ee7d94 2023-01-10 thomas if (err)
1455 62ee7d94 2023-01-10 thomas break;
1456 62ee7d94 2023-01-10 thomas err = forward_ref_update(client, &imsg);
1457 62ee7d94 2023-01-10 thomas if (err)
1458 62ee7d94 2023-01-10 thomas break;
1459 62ee7d94 2023-01-10 thomas client->state = GOTD_STATE_EXPECT_MORE_REF_UPDATES;
1460 98c7fd82 2023-01-23 thomas client->accept_flush_pkt = 1;
1461 62ee7d94 2023-01-10 thomas break;
1462 62ee7d94 2023-01-10 thomas case GOTD_IMSG_HAVE:
1463 62ee7d94 2023-01-10 thomas if (client->state != GOTD_STATE_EXPECT_HAVE) {
1464 62ee7d94 2023-01-10 thomas err = got_error_msg(GOT_ERR_BAD_REQUEST,
1465 62ee7d94 2023-01-10 thomas "unexpected have-line received");
1466 62ee7d94 2023-01-10 thomas break;
1467 62ee7d94 2023-01-10 thomas }
1468 62ee7d94 2023-01-10 thomas log_debug("received have-line from uid %d",
1469 62ee7d94 2023-01-10 thomas client->euid);
1470 62ee7d94 2023-01-10 thomas err = ensure_client_is_reading(client);
1471 62ee7d94 2023-01-10 thomas if (err)
1472 62ee7d94 2023-01-10 thomas break;
1473 62ee7d94 2023-01-10 thomas err = forward_have(client, &imsg);
1474 62ee7d94 2023-01-10 thomas if (err)
1475 62ee7d94 2023-01-10 thomas break;
1476 98c7fd82 2023-01-23 thomas client->accept_flush_pkt = 1;
1477 62ee7d94 2023-01-10 thomas break;
1478 62ee7d94 2023-01-10 thomas case GOTD_IMSG_FLUSH:
1479 62ee7d94 2023-01-10 thomas if (client->state == GOTD_STATE_EXPECT_WANT ||
1480 62ee7d94 2023-01-10 thomas client->state == GOTD_STATE_EXPECT_HAVE) {
1481 62ee7d94 2023-01-10 thomas err = ensure_client_is_reading(client);
1482 62ee7d94 2023-01-10 thomas if (err)
1483 62ee7d94 2023-01-10 thomas break;
1484 62ee7d94 2023-01-10 thomas } else if (client->state ==
1485 62ee7d94 2023-01-10 thomas GOTD_STATE_EXPECT_MORE_REF_UPDATES) {
1486 62ee7d94 2023-01-10 thomas err = ensure_client_is_writing(client);
1487 62ee7d94 2023-01-10 thomas if (err)
1488 62ee7d94 2023-01-10 thomas break;
1489 6110f5ef 2023-01-19 thomas } else if (client->state != GOTD_STATE_EXPECT_DONE) {
1490 98c7fd82 2023-01-23 thomas err = got_error_msg(GOT_ERR_BAD_REQUEST,
1491 98c7fd82 2023-01-23 thomas "unexpected flush-pkt received");
1492 98c7fd82 2023-01-23 thomas break;
1493 98c7fd82 2023-01-23 thomas }
1494 98c7fd82 2023-01-23 thomas if (!client->accept_flush_pkt) {
1495 62ee7d94 2023-01-10 thomas err = got_error_msg(GOT_ERR_BAD_REQUEST,
1496 62ee7d94 2023-01-10 thomas "unexpected flush-pkt received");
1497 62ee7d94 2023-01-10 thomas break;
1498 62ee7d94 2023-01-10 thomas }
1499 98c7fd82 2023-01-23 thomas
1500 98c7fd82 2023-01-23 thomas /*
1501 98c7fd82 2023-01-23 thomas * Accept just one flush packet at a time.
1502 98c7fd82 2023-01-23 thomas * Future client state transitions will set this flag
1503 98c7fd82 2023-01-23 thomas * again if another flush packet is expected.
1504 98c7fd82 2023-01-23 thomas */
1505 98c7fd82 2023-01-23 thomas client->accept_flush_pkt = 0;
1506 98c7fd82 2023-01-23 thomas
1507 62ee7d94 2023-01-10 thomas log_debug("received flush-pkt from uid %d",
1508 62ee7d94 2023-01-10 thomas client->euid);
1509 62ee7d94 2023-01-10 thomas if (client->state == GOTD_STATE_EXPECT_WANT) {
1510 62ee7d94 2023-01-10 thomas client->state = GOTD_STATE_EXPECT_HAVE;
1511 62ee7d94 2023-01-10 thomas log_debug("uid %d: expecting have-lines",
1512 62ee7d94 2023-01-10 thomas client->euid);
1513 62ee7d94 2023-01-10 thomas } else if (client->state == GOTD_STATE_EXPECT_HAVE) {
1514 62ee7d94 2023-01-10 thomas client->state = GOTD_STATE_EXPECT_DONE;
1515 98c7fd82 2023-01-23 thomas client->accept_flush_pkt = 1;
1516 62ee7d94 2023-01-10 thomas log_debug("uid %d: expecting 'done'",
1517 62ee7d94 2023-01-10 thomas client->euid);
1518 62ee7d94 2023-01-10 thomas } else if (client->state ==
1519 62ee7d94 2023-01-10 thomas GOTD_STATE_EXPECT_MORE_REF_UPDATES) {
1520 62ee7d94 2023-01-10 thomas client->state = GOTD_STATE_EXPECT_PACKFILE;
1521 62ee7d94 2023-01-10 thomas log_debug("uid %d: expecting packfile",
1522 62ee7d94 2023-01-10 thomas client->euid);
1523 62ee7d94 2023-01-10 thomas err = recv_packfile(client);
1524 6110f5ef 2023-01-19 thomas } else if (client->state != GOTD_STATE_EXPECT_DONE) {
1525 62ee7d94 2023-01-10 thomas /* should not happen, see above */
1526 62ee7d94 2023-01-10 thomas err = got_error_msg(GOT_ERR_BAD_REQUEST,
1527 62ee7d94 2023-01-10 thomas "unexpected client state");
1528 62ee7d94 2023-01-10 thomas break;
1529 62ee7d94 2023-01-10 thomas }
1530 62ee7d94 2023-01-10 thomas break;
1531 62ee7d94 2023-01-10 thomas case GOTD_IMSG_DONE:
1532 62ee7d94 2023-01-10 thomas if (client->state != GOTD_STATE_EXPECT_HAVE &&
1533 62ee7d94 2023-01-10 thomas client->state != GOTD_STATE_EXPECT_DONE) {
1534 62ee7d94 2023-01-10 thomas err = got_error_msg(GOT_ERR_BAD_REQUEST,
1535 62ee7d94 2023-01-10 thomas "unexpected flush-pkt received");
1536 62ee7d94 2023-01-10 thomas break;
1537 62ee7d94 2023-01-10 thomas }
1538 62ee7d94 2023-01-10 thomas log_debug("received 'done' from uid %d", client->euid);
1539 62ee7d94 2023-01-10 thomas err = ensure_client_is_reading(client);
1540 62ee7d94 2023-01-10 thomas if (err)
1541 62ee7d94 2023-01-10 thomas break;
1542 62ee7d94 2023-01-10 thomas client->state = GOTD_STATE_DONE;
1543 98c7fd82 2023-01-23 thomas client->accept_flush_pkt = 1;
1544 62ee7d94 2023-01-10 thomas err = send_packfile(client);
1545 62ee7d94 2023-01-10 thomas break;
1546 62ee7d94 2023-01-10 thomas default:
1547 62ee7d94 2023-01-10 thomas log_debug("unexpected imsg %d", imsg.hdr.type);
1548 62ee7d94 2023-01-10 thomas err = got_error(GOT_ERR_PRIVSEP_MSG);
1549 62ee7d94 2023-01-10 thomas break;
1550 62ee7d94 2023-01-10 thomas }
1551 62ee7d94 2023-01-10 thomas
1552 62ee7d94 2023-01-10 thomas imsg_free(&imsg);
1553 62ee7d94 2023-01-10 thomas }
1554 62ee7d94 2023-01-10 thomas
1555 62ee7d94 2023-01-10 thomas if (err) {
1556 62ee7d94 2023-01-10 thomas if (err->code != GOT_ERR_EOF ||
1557 62ee7d94 2023-01-10 thomas client->state != GOTD_STATE_EXPECT_PACKFILE)
1558 62ee7d94 2023-01-10 thomas disconnect_on_error(client, err);
1559 62ee7d94 2023-01-10 thomas } else {
1560 62ee7d94 2023-01-10 thomas gotd_imsg_event_add(iev);
1561 62ee7d94 2023-01-10 thomas evtimer_add(&client->tmo, &gotd_session.request_timeout);
1562 62ee7d94 2023-01-10 thomas }
1563 62ee7d94 2023-01-10 thomas }
1564 62ee7d94 2023-01-10 thomas
1565 62ee7d94 2023-01-10 thomas static const struct got_error *
1566 62ee7d94 2023-01-10 thomas list_refs_request(void)
1567 62ee7d94 2023-01-10 thomas {
1568 62ee7d94 2023-01-10 thomas static const struct got_error *err;
1569 62ee7d94 2023-01-10 thomas struct gotd_session_client *client = &gotd_session_client;
1570 62ee7d94 2023-01-10 thomas struct gotd_imsgev *iev = &client->repo_child_iev;
1571 62ee7d94 2023-01-10 thomas struct gotd_imsg_list_refs_internal ilref;
1572 62ee7d94 2023-01-10 thomas int fd;
1573 62ee7d94 2023-01-10 thomas
1574 62ee7d94 2023-01-10 thomas if (client->state != GOTD_STATE_EXPECT_LIST_REFS)
1575 62ee7d94 2023-01-10 thomas return got_error(GOT_ERR_PRIVSEP_MSG);
1576 62ee7d94 2023-01-10 thomas
1577 62ee7d94 2023-01-10 thomas memset(&ilref, 0, sizeof(ilref));
1578 62ee7d94 2023-01-10 thomas ilref.client_id = client->id;
1579 62ee7d94 2023-01-10 thomas
1580 62ee7d94 2023-01-10 thomas fd = dup(client->fd);
1581 62ee7d94 2023-01-10 thomas if (fd == -1)
1582 62ee7d94 2023-01-10 thomas return got_error_from_errno("dup");
1583 62ee7d94 2023-01-10 thomas
1584 62ee7d94 2023-01-10 thomas if (gotd_imsg_compose_event(iev, GOTD_IMSG_LIST_REFS_INTERNAL,
1585 7fed8fa4 2023-06-22 thomas gotd_session.proc_id, fd, &ilref, sizeof(ilref)) == -1) {
1586 62ee7d94 2023-01-10 thomas err = got_error_from_errno("imsg compose LIST_REFS_INTERNAL");
1587 62ee7d94 2023-01-10 thomas close(fd);
1588 62ee7d94 2023-01-10 thomas return err;
1589 62ee7d94 2023-01-10 thomas }
1590 62ee7d94 2023-01-10 thomas
1591 62ee7d94 2023-01-10 thomas client->state = GOTD_STATE_EXPECT_CAPABILITIES;
1592 62ee7d94 2023-01-10 thomas log_debug("uid %d: expecting capabilities", client->euid);
1593 62ee7d94 2023-01-10 thomas return NULL;
1594 62ee7d94 2023-01-10 thomas }
1595 62ee7d94 2023-01-10 thomas
1596 62ee7d94 2023-01-10 thomas static const struct got_error *
1597 62ee7d94 2023-01-10 thomas recv_connect(struct imsg *imsg)
1598 62ee7d94 2023-01-10 thomas {
1599 62ee7d94 2023-01-10 thomas struct gotd_session_client *client = &gotd_session_client;
1600 62ee7d94 2023-01-10 thomas struct gotd_imsg_connect iconnect;
1601 62ee7d94 2023-01-10 thomas size_t datalen;
1602 62ee7d94 2023-01-10 thomas
1603 62ee7d94 2023-01-10 thomas if (client->state != GOTD_STATE_EXPECT_LIST_REFS)
1604 62ee7d94 2023-01-10 thomas return got_error(GOT_ERR_PRIVSEP_MSG);
1605 62ee7d94 2023-01-10 thomas
1606 62ee7d94 2023-01-10 thomas datalen = imsg->hdr.len - IMSG_HEADER_SIZE;
1607 ce1bfad9 2024-03-30 thomas if (datalen < sizeof(iconnect))
1608 62ee7d94 2023-01-10 thomas return got_error(GOT_ERR_PRIVSEP_LEN);
1609 62ee7d94 2023-01-10 thomas memcpy(&iconnect, imsg->data, sizeof(iconnect));
1610 ce1bfad9 2024-03-30 thomas if (iconnect.username_len == 0 ||
1611 ce1bfad9 2024-03-30 thomas datalen != sizeof(iconnect) + iconnect.username_len)
1612 ce1bfad9 2024-03-30 thomas return got_error(GOT_ERR_PRIVSEP_LEN);
1613 62ee7d94 2023-01-10 thomas
1614 62ee7d94 2023-01-10 thomas client->euid = iconnect.euid;
1615 62ee7d94 2023-01-10 thomas client->egid = iconnect.egid;
1616 3d97effa 2024-01-31 thomas client->fd = imsg_get_fd(imsg);
1617 3d97effa 2024-01-31 thomas if (client->fd == -1)
1618 3d97effa 2024-01-31 thomas return got_error(GOT_ERR_PRIVSEP_NO_FD);
1619 62ee7d94 2023-01-10 thomas
1620 ce1bfad9 2024-03-30 thomas client->username = strndup(imsg->data + sizeof(iconnect),
1621 ce1bfad9 2024-03-30 thomas iconnect.username_len);
1622 ce1bfad9 2024-03-30 thomas if (client->username == NULL)
1623 ce1bfad9 2024-03-30 thomas return got_error_from_errno("strndup");
1624 ce1bfad9 2024-03-30 thomas
1625 62ee7d94 2023-01-10 thomas imsg_init(&client->iev.ibuf, client->fd);
1626 8cb46987 2023-02-07 thomas client->iev.handler = session_dispatch_client;
1627 62ee7d94 2023-01-10 thomas client->iev.events = EV_READ;
1628 62ee7d94 2023-01-10 thomas client->iev.handler_arg = NULL;
1629 62ee7d94 2023-01-10 thomas event_set(&client->iev.ev, client->iev.ibuf.fd, EV_READ,
1630 8cb46987 2023-02-07 thomas session_dispatch_client, &client->iev);
1631 62ee7d94 2023-01-10 thomas gotd_imsg_event_add(&client->iev);
1632 62ee7d94 2023-01-10 thomas evtimer_set(&client->tmo, gotd_request_timeout, client);
1633 62ee7d94 2023-01-10 thomas
1634 62ee7d94 2023-01-10 thomas return NULL;
1635 62ee7d94 2023-01-10 thomas }
1636 62ee7d94 2023-01-10 thomas
1637 ce1bfad9 2024-03-30 thomas static void
1638 ce1bfad9 2024-03-30 thomas session_dispatch_notifier(int fd, short event, void *arg)
1639 ce1bfad9 2024-03-30 thomas {
1640 ce1bfad9 2024-03-30 thomas const struct got_error *err;
1641 ce1bfad9 2024-03-30 thomas struct gotd_session_client *client = &gotd_session_client;
1642 ce1bfad9 2024-03-30 thomas struct gotd_imsgev *iev = arg;
1643 ce1bfad9 2024-03-30 thomas struct imsgbuf *ibuf = &iev->ibuf;
1644 ce1bfad9 2024-03-30 thomas ssize_t n;
1645 ce1bfad9 2024-03-30 thomas int shut = 0;
1646 ce1bfad9 2024-03-30 thomas struct imsg imsg;
1647 ce1bfad9 2024-03-30 thomas struct gotd_session_notif *notif;
1648 ce1bfad9 2024-03-30 thomas
1649 ce1bfad9 2024-03-30 thomas if (event & EV_READ) {
1650 ce1bfad9 2024-03-30 thomas if ((n = imsg_read(ibuf)) == -1 && errno != EAGAIN)
1651 ce1bfad9 2024-03-30 thomas fatal("imsg_read error");
1652 ce1bfad9 2024-03-30 thomas if (n == 0) {
1653 ce1bfad9 2024-03-30 thomas /* Connection closed. */
1654 ce1bfad9 2024-03-30 thomas shut = 1;
1655 ce1bfad9 2024-03-30 thomas goto done;
1656 ce1bfad9 2024-03-30 thomas }
1657 ce1bfad9 2024-03-30 thomas }
1658 ce1bfad9 2024-03-30 thomas
1659 ce1bfad9 2024-03-30 thomas if (event & EV_WRITE) {
1660 ce1bfad9 2024-03-30 thomas n = msgbuf_write(&ibuf->w);
1661 ce1bfad9 2024-03-30 thomas if (n == -1 && errno != EAGAIN)
1662 ce1bfad9 2024-03-30 thomas fatal("msgbuf_write");
1663 ce1bfad9 2024-03-30 thomas if (n == 0) {
1664 ce1bfad9 2024-03-30 thomas /* Connection closed. */
1665 ce1bfad9 2024-03-30 thomas shut = 1;
1666 ce1bfad9 2024-03-30 thomas goto done;
1667 ce1bfad9 2024-03-30 thomas }
1668 ce1bfad9 2024-03-30 thomas }
1669 ce1bfad9 2024-03-30 thomas
1670 ce1bfad9 2024-03-30 thomas for (;;) {
1671 ce1bfad9 2024-03-30 thomas if ((n = imsg_get(ibuf, &imsg)) == -1)
1672 ce1bfad9 2024-03-30 thomas fatal("%s: imsg_get error", __func__);
1673 ce1bfad9 2024-03-30 thomas if (n == 0) /* No more messages. */
1674 ce1bfad9 2024-03-30 thomas break;
1675 ce1bfad9 2024-03-30 thomas
1676 ce1bfad9 2024-03-30 thomas switch (imsg.hdr.type) {
1677 ce1bfad9 2024-03-30 thomas case GOTD_IMSG_NOTIFICATION_SENT:
1678 ce1bfad9 2024-03-30 thomas if (client->state != GOTD_STATE_NOTIFY) {
1679 ce1bfad9 2024-03-30 thomas log_warn("unexpected imsg %d", imsg.hdr.type);
1680 ce1bfad9 2024-03-30 thomas break;
1681 ce1bfad9 2024-03-30 thomas }
1682 ce1bfad9 2024-03-30 thomas notif = STAILQ_FIRST(&notifications);
1683 ce1bfad9 2024-03-30 thomas if (notif == NULL) {
1684 ce1bfad9 2024-03-30 thomas disconnect(client);
1685 ce1bfad9 2024-03-30 thomas break; /* NOTREACHED */
1686 ce1bfad9 2024-03-30 thomas }
1687 ce1bfad9 2024-03-30 thomas /* Request content for the next notification. */
1688 ce1bfad9 2024-03-30 thomas err = request_notification(notif);
1689 ce1bfad9 2024-03-30 thomas if (err) {
1690 ce1bfad9 2024-03-30 thomas log_warn("could not send notification: %s",
1691 ce1bfad9 2024-03-30 thomas err->msg);
1692 ce1bfad9 2024-03-30 thomas disconnect(client);
1693 ce1bfad9 2024-03-30 thomas }
1694 ce1bfad9 2024-03-30 thomas break;
1695 ce1bfad9 2024-03-30 thomas default:
1696 ce1bfad9 2024-03-30 thomas log_debug("unexpected imsg %d", imsg.hdr.type);
1697 ce1bfad9 2024-03-30 thomas break;
1698 ce1bfad9 2024-03-30 thomas }
1699 ce1bfad9 2024-03-30 thomas
1700 ce1bfad9 2024-03-30 thomas imsg_free(&imsg);
1701 ce1bfad9 2024-03-30 thomas }
1702 ce1bfad9 2024-03-30 thomas done:
1703 ce1bfad9 2024-03-30 thomas if (!shut) {
1704 ce1bfad9 2024-03-30 thomas gotd_imsg_event_add(iev);
1705 ce1bfad9 2024-03-30 thomas } else {
1706 ce1bfad9 2024-03-30 thomas /* This pipe is dead. Remove its event handler */
1707 ce1bfad9 2024-03-30 thomas event_del(&iev->ev);
1708 ce1bfad9 2024-03-30 thomas imsg_clear(&iev->ibuf);
1709 ce1bfad9 2024-03-30 thomas imsg_init(&iev->ibuf, -1);
1710 ce1bfad9 2024-03-30 thomas }
1711 ce1bfad9 2024-03-30 thomas }
1712 ce1bfad9 2024-03-30 thomas
1713 62ee7d94 2023-01-10 thomas static const struct got_error *
1714 ce1bfad9 2024-03-30 thomas recv_notifier(struct imsg *imsg)
1715 ce1bfad9 2024-03-30 thomas {
1716 ce1bfad9 2024-03-30 thomas struct gotd_imsgev *iev = &gotd_session.notifier_iev;
1717 ce1bfad9 2024-03-30 thomas struct gotd_session_client *client = &gotd_session_client;
1718 ce1bfad9 2024-03-30 thomas size_t datalen;
1719 ce1bfad9 2024-03-30 thomas int fd;
1720 ce1bfad9 2024-03-30 thomas
1721 ce1bfad9 2024-03-30 thomas if (client->state != GOTD_STATE_EXPECT_LIST_REFS)
1722 ce1bfad9 2024-03-30 thomas return got_error(GOT_ERR_PRIVSEP_MSG);
1723 ce1bfad9 2024-03-30 thomas
1724 ce1bfad9 2024-03-30 thomas /* We should already have received a pipe to the listener. */
1725 ce1bfad9 2024-03-30 thomas if (client->fd == -1)
1726 ce1bfad9 2024-03-30 thomas return got_error(GOT_ERR_PRIVSEP_MSG);
1727 ce1bfad9 2024-03-30 thomas
1728 ce1bfad9 2024-03-30 thomas datalen = imsg->hdr.len - IMSG_HEADER_SIZE;
1729 ce1bfad9 2024-03-30 thomas if (datalen != 0)
1730 ce1bfad9 2024-03-30 thomas return got_error(GOT_ERR_PRIVSEP_LEN);
1731 ce1bfad9 2024-03-30 thomas
1732 ce1bfad9 2024-03-30 thomas fd = imsg_get_fd(imsg);
1733 ce1bfad9 2024-03-30 thomas if (fd == -1)
1734 ce1bfad9 2024-03-30 thomas return NULL; /* notifications unused */
1735 ce1bfad9 2024-03-30 thomas
1736 ce1bfad9 2024-03-30 thomas imsg_init(&iev->ibuf, fd);
1737 ce1bfad9 2024-03-30 thomas iev->handler = session_dispatch_notifier;
1738 ce1bfad9 2024-03-30 thomas iev->events = EV_READ;
1739 ce1bfad9 2024-03-30 thomas iev->handler_arg = NULL;
1740 ce1bfad9 2024-03-30 thomas event_set(&iev->ev, iev->ibuf.fd, EV_READ,
1741 ce1bfad9 2024-03-30 thomas session_dispatch_notifier, iev);
1742 ce1bfad9 2024-03-30 thomas gotd_imsg_event_add(iev);
1743 ce1bfad9 2024-03-30 thomas
1744 ce1bfad9 2024-03-30 thomas return NULL;
1745 ce1bfad9 2024-03-30 thomas }
1746 ce1bfad9 2024-03-30 thomas
1747 ce1bfad9 2024-03-30 thomas static const struct got_error *
1748 62ee7d94 2023-01-10 thomas recv_repo_child(struct imsg *imsg)
1749 62ee7d94 2023-01-10 thomas {
1750 62ee7d94 2023-01-10 thomas struct gotd_imsg_connect_repo_child ichild;
1751 62ee7d94 2023-01-10 thomas struct gotd_session_client *client = &gotd_session_client;
1752 62ee7d94 2023-01-10 thomas size_t datalen;
1753 3d97effa 2024-01-31 thomas int fd;
1754 62ee7d94 2023-01-10 thomas
1755 62ee7d94 2023-01-10 thomas if (client->state != GOTD_STATE_EXPECT_LIST_REFS)
1756 62ee7d94 2023-01-10 thomas return got_error(GOT_ERR_PRIVSEP_MSG);
1757 62ee7d94 2023-01-10 thomas
1758 62ee7d94 2023-01-10 thomas /* We should already have received a pipe to the listener. */
1759 62ee7d94 2023-01-10 thomas if (client->fd == -1)
1760 62ee7d94 2023-01-10 thomas return got_error(GOT_ERR_PRIVSEP_MSG);
1761 62ee7d94 2023-01-10 thomas
1762 62ee7d94 2023-01-10 thomas datalen = imsg->hdr.len - IMSG_HEADER_SIZE;
1763 62ee7d94 2023-01-10 thomas if (datalen != sizeof(ichild))
1764 62ee7d94 2023-01-10 thomas return got_error(GOT_ERR_PRIVSEP_LEN);
1765 62ee7d94 2023-01-10 thomas
1766 62ee7d94 2023-01-10 thomas memcpy(&ichild, imsg->data, sizeof(ichild));
1767 62ee7d94 2023-01-10 thomas
1768 62ee7d94 2023-01-10 thomas client->id = ichild.client_id;
1769 62ee7d94 2023-01-10 thomas if (ichild.proc_id == PROC_REPO_WRITE)
1770 62ee7d94 2023-01-10 thomas client->is_writing = 1;
1771 62ee7d94 2023-01-10 thomas else if (ichild.proc_id == PROC_REPO_READ)
1772 62ee7d94 2023-01-10 thomas client->is_writing = 0;
1773 62ee7d94 2023-01-10 thomas else
1774 62ee7d94 2023-01-10 thomas return got_error_msg(GOT_ERR_PRIVSEP_MSG,
1775 62ee7d94 2023-01-10 thomas "bad child process type");
1776 d4628c48 2023-02-03 thomas
1777 3d97effa 2024-01-31 thomas fd = imsg_get_fd(imsg);
1778 3d97effa 2024-01-31 thomas if (fd == -1)
1779 62ee7d94 2023-01-10 thomas return got_error(GOT_ERR_PRIVSEP_NO_FD);
1780 62ee7d94 2023-01-10 thomas
1781 3d97effa 2024-01-31 thomas imsg_init(&client->repo_child_iev.ibuf, fd);
1782 62ee7d94 2023-01-10 thomas client->repo_child_iev.handler = session_dispatch_repo_child;
1783 62ee7d94 2023-01-10 thomas client->repo_child_iev.events = EV_READ;
1784 62ee7d94 2023-01-10 thomas client->repo_child_iev.handler_arg = NULL;
1785 62ee7d94 2023-01-10 thomas event_set(&client->repo_child_iev.ev, client->repo_child_iev.ibuf.fd,
1786 62ee7d94 2023-01-10 thomas EV_READ, session_dispatch_repo_child, &client->repo_child_iev);
1787 62ee7d94 2023-01-10 thomas gotd_imsg_event_add(&client->repo_child_iev);
1788 62ee7d94 2023-01-10 thomas
1789 62ee7d94 2023-01-10 thomas /* The "recvfd" pledge promise is no longer needed. */
1790 62ee7d94 2023-01-10 thomas if (pledge("stdio rpath wpath cpath sendfd fattr flock", NULL) == -1)
1791 62ee7d94 2023-01-10 thomas fatal("pledge");
1792 62ee7d94 2023-01-10 thomas
1793 62ee7d94 2023-01-10 thomas return NULL;
1794 62ee7d94 2023-01-10 thomas }
1795 62ee7d94 2023-01-10 thomas
1796 62ee7d94 2023-01-10 thomas static void
1797 62ee7d94 2023-01-10 thomas session_dispatch(int fd, short event, void *arg)
1798 62ee7d94 2023-01-10 thomas {
1799 62ee7d94 2023-01-10 thomas struct gotd_imsgev *iev = arg;
1800 62ee7d94 2023-01-10 thomas struct imsgbuf *ibuf = &iev->ibuf;
1801 62ee7d94 2023-01-10 thomas struct gotd_session_client *client = &gotd_session_client;
1802 62ee7d94 2023-01-10 thomas ssize_t n;
1803 62ee7d94 2023-01-10 thomas int shut = 0;
1804 62ee7d94 2023-01-10 thomas struct imsg imsg;
1805 62ee7d94 2023-01-10 thomas
1806 62ee7d94 2023-01-10 thomas if (event & EV_READ) {
1807 62ee7d94 2023-01-10 thomas if ((n = imsg_read(ibuf)) == -1 && errno != EAGAIN)
1808 62ee7d94 2023-01-10 thomas fatal("imsg_read error");
1809 62ee7d94 2023-01-10 thomas if (n == 0) {
1810 62ee7d94 2023-01-10 thomas /* Connection closed. */
1811 62ee7d94 2023-01-10 thomas shut = 1;
1812 62ee7d94 2023-01-10 thomas goto done;
1813 62ee7d94 2023-01-10 thomas }
1814 62ee7d94 2023-01-10 thomas }
1815 62ee7d94 2023-01-10 thomas
1816 62ee7d94 2023-01-10 thomas if (event & EV_WRITE) {
1817 62ee7d94 2023-01-10 thomas n = msgbuf_write(&ibuf->w);
1818 62ee7d94 2023-01-10 thomas if (n == -1 && errno != EAGAIN)
1819 62ee7d94 2023-01-10 thomas fatal("msgbuf_write");
1820 62ee7d94 2023-01-10 thomas if (n == 0) {
1821 62ee7d94 2023-01-10 thomas /* Connection closed. */
1822 62ee7d94 2023-01-10 thomas shut = 1;
1823 62ee7d94 2023-01-10 thomas goto done;
1824 62ee7d94 2023-01-10 thomas }
1825 62ee7d94 2023-01-10 thomas }
1826 62ee7d94 2023-01-10 thomas
1827 62ee7d94 2023-01-10 thomas for (;;) {
1828 62ee7d94 2023-01-10 thomas const struct got_error *err = NULL;
1829 62ee7d94 2023-01-10 thomas uint32_t client_id = 0;
1830 62ee7d94 2023-01-10 thomas int do_disconnect = 0, do_list_refs = 0;
1831 62ee7d94 2023-01-10 thomas
1832 62ee7d94 2023-01-10 thomas if ((n = imsg_get(ibuf, &imsg)) == -1)
1833 62ee7d94 2023-01-10 thomas fatal("%s: imsg_get error", __func__);
1834 62ee7d94 2023-01-10 thomas if (n == 0) /* No more messages. */
1835 62ee7d94 2023-01-10 thomas break;
1836 62ee7d94 2023-01-10 thomas
1837 62ee7d94 2023-01-10 thomas switch (imsg.hdr.type) {
1838 62ee7d94 2023-01-10 thomas case GOTD_IMSG_ERROR:
1839 62ee7d94 2023-01-10 thomas do_disconnect = 1;
1840 62ee7d94 2023-01-10 thomas err = gotd_imsg_recv_error(&client_id, &imsg);
1841 62ee7d94 2023-01-10 thomas break;
1842 62ee7d94 2023-01-10 thomas case GOTD_IMSG_CONNECT:
1843 62ee7d94 2023-01-10 thomas err = recv_connect(&imsg);
1844 62ee7d94 2023-01-10 thomas break;
1845 62ee7d94 2023-01-10 thomas case GOTD_IMSG_DISCONNECT:
1846 62ee7d94 2023-01-10 thomas do_disconnect = 1;
1847 62ee7d94 2023-01-10 thomas break;
1848 ce1bfad9 2024-03-30 thomas case GOTD_IMSG_CONNECT_NOTIFIER:
1849 ce1bfad9 2024-03-30 thomas err = recv_notifier(&imsg);
1850 ce1bfad9 2024-03-30 thomas break;
1851 62ee7d94 2023-01-10 thomas case GOTD_IMSG_CONNECT_REPO_CHILD:
1852 62ee7d94 2023-01-10 thomas err = recv_repo_child(&imsg);
1853 62ee7d94 2023-01-10 thomas if (err)
1854 62ee7d94 2023-01-10 thomas break;
1855 62ee7d94 2023-01-10 thomas do_list_refs = 1;
1856 62ee7d94 2023-01-10 thomas break;
1857 62ee7d94 2023-01-10 thomas default:
1858 62ee7d94 2023-01-10 thomas log_debug("unexpected imsg %d", imsg.hdr.type);
1859 62ee7d94 2023-01-10 thomas break;
1860 62ee7d94 2023-01-10 thomas }
1861 62ee7d94 2023-01-10 thomas imsg_free(&imsg);
1862 62ee7d94 2023-01-10 thomas
1863 62ee7d94 2023-01-10 thomas if (do_disconnect) {
1864 62ee7d94 2023-01-10 thomas if (err)
1865 62ee7d94 2023-01-10 thomas disconnect_on_error(client, err);
1866 62ee7d94 2023-01-10 thomas else
1867 62ee7d94 2023-01-10 thomas disconnect(client);
1868 62ee7d94 2023-01-10 thomas } else if (do_list_refs)
1869 62ee7d94 2023-01-10 thomas err = list_refs_request();
1870 62ee7d94 2023-01-10 thomas
1871 62ee7d94 2023-01-10 thomas if (err)
1872 62ee7d94 2023-01-10 thomas log_warnx("uid %d: %s", client->euid, err->msg);
1873 62ee7d94 2023-01-10 thomas }
1874 62ee7d94 2023-01-10 thomas done:
1875 62ee7d94 2023-01-10 thomas if (!shut) {
1876 62ee7d94 2023-01-10 thomas gotd_imsg_event_add(iev);
1877 62ee7d94 2023-01-10 thomas } else {
1878 62ee7d94 2023-01-10 thomas /* This pipe is dead. Remove its event handler */
1879 62ee7d94 2023-01-10 thomas event_del(&iev->ev);
1880 62ee7d94 2023-01-10 thomas event_loopexit(NULL);
1881 d4628c48 2023-02-03 thomas }
1882 62ee7d94 2023-01-10 thomas }
1883 62ee7d94 2023-01-10 thomas
1884 62ee7d94 2023-01-10 thomas void
1885 62ee7d94 2023-01-10 thomas session_main(const char *title, const char *repo_path,
1886 7fed8fa4 2023-06-22 thomas int *pack_fds, int *temp_fds, struct timeval *request_timeout,
1887 ce1bfad9 2024-03-30 thomas struct gotd_repo *repo_cfg, enum gotd_procid proc_id)
1888 62ee7d94 2023-01-10 thomas {
1889 62ee7d94 2023-01-10 thomas const struct got_error *err = NULL;
1890 62ee7d94 2023-01-10 thomas struct event evsigint, evsigterm, evsighup, evsigusr1;
1891 62ee7d94 2023-01-10 thomas
1892 ce1bfad9 2024-03-30 thomas STAILQ_INIT(&notifications);
1893 ce1bfad9 2024-03-30 thomas
1894 62ee7d94 2023-01-10 thomas gotd_session.title = title;
1895 62ee7d94 2023-01-10 thomas gotd_session.pid = getpid();
1896 62ee7d94 2023-01-10 thomas gotd_session.pack_fds = pack_fds;
1897 62ee7d94 2023-01-10 thomas gotd_session.temp_fds = temp_fds;
1898 62ee7d94 2023-01-10 thomas memcpy(&gotd_session.request_timeout, request_timeout,
1899 62ee7d94 2023-01-10 thomas sizeof(gotd_session.request_timeout));
1900 ce1bfad9 2024-03-30 thomas gotd_session.repo_cfg = repo_cfg;
1901 7fed8fa4 2023-06-22 thomas gotd_session.proc_id = proc_id;
1902 62ee7d94 2023-01-10 thomas
1903 ce1bfad9 2024-03-30 thomas imsg_init(&gotd_session.notifier_iev.ibuf, -1);
1904 ce1bfad9 2024-03-30 thomas
1905 62ee7d94 2023-01-10 thomas err = got_repo_open(&gotd_session.repo, repo_path, NULL, pack_fds);
1906 62ee7d94 2023-01-10 thomas if (err)
1907 62ee7d94 2023-01-10 thomas goto done;
1908 62ee7d94 2023-01-10 thomas if (!got_repo_is_bare(gotd_session.repo)) {
1909 62ee7d94 2023-01-10 thomas err = got_error_msg(GOT_ERR_NOT_GIT_REPO,
1910 62ee7d94 2023-01-10 thomas "bare git repository required");
1911 62ee7d94 2023-01-10 thomas goto done;
1912 62ee7d94 2023-01-10 thomas }
1913 62ee7d94 2023-01-10 thomas
1914 62ee7d94 2023-01-10 thomas got_repo_temp_fds_set(gotd_session.repo, temp_fds);
1915 62ee7d94 2023-01-10 thomas
1916 62ee7d94 2023-01-10 thomas signal_set(&evsigint, SIGINT, gotd_session_sighdlr, NULL);
1917 62ee7d94 2023-01-10 thomas signal_set(&evsigterm, SIGTERM, gotd_session_sighdlr, NULL);
1918 62ee7d94 2023-01-10 thomas signal_set(&evsighup, SIGHUP, gotd_session_sighdlr, NULL);
1919 62ee7d94 2023-01-10 thomas signal_set(&evsigusr1, SIGUSR1, gotd_session_sighdlr, NULL);
1920 62ee7d94 2023-01-10 thomas signal(SIGPIPE, SIG_IGN);
1921 62ee7d94 2023-01-10 thomas
1922 62ee7d94 2023-01-10 thomas signal_add(&evsigint, NULL);
1923 62ee7d94 2023-01-10 thomas signal_add(&evsigterm, NULL);
1924 62ee7d94 2023-01-10 thomas signal_add(&evsighup, NULL);
1925 62ee7d94 2023-01-10 thomas signal_add(&evsigusr1, NULL);
1926 62ee7d94 2023-01-10 thomas
1927 62ee7d94 2023-01-10 thomas gotd_session_client.state = GOTD_STATE_EXPECT_LIST_REFS;
1928 62ee7d94 2023-01-10 thomas gotd_session_client.fd = -1;
1929 62ee7d94 2023-01-10 thomas gotd_session_client.nref_updates = -1;
1930 a6f25078 2023-01-10 thomas gotd_session_client.delta_cache_fd = -1;
1931 98c7fd82 2023-01-23 thomas gotd_session_client.accept_flush_pkt = 1;
1932 62ee7d94 2023-01-10 thomas
1933 62ee7d94 2023-01-10 thomas imsg_init(&gotd_session.parent_iev.ibuf, GOTD_FILENO_MSG_PIPE);
1934 62ee7d94 2023-01-10 thomas gotd_session.parent_iev.handler = session_dispatch;
1935 62ee7d94 2023-01-10 thomas gotd_session.parent_iev.events = EV_READ;
1936 62ee7d94 2023-01-10 thomas gotd_session.parent_iev.handler_arg = NULL;
1937 62ee7d94 2023-01-10 thomas event_set(&gotd_session.parent_iev.ev, gotd_session.parent_iev.ibuf.fd,
1938 62ee7d94 2023-01-10 thomas EV_READ, session_dispatch, &gotd_session.parent_iev);
1939 62ee7d94 2023-01-10 thomas if (gotd_imsg_compose_event(&gotd_session.parent_iev,
1940 7fed8fa4 2023-06-22 thomas GOTD_IMSG_CLIENT_SESSION_READY, gotd_session.proc_id,
1941 7fed8fa4 2023-06-22 thomas -1, NULL, 0) == -1) {
1942 62ee7d94 2023-01-10 thomas err = got_error_from_errno("imsg compose CLIENT_SESSION_READY");
1943 62ee7d94 2023-01-10 thomas goto done;
1944 62ee7d94 2023-01-10 thomas }
1945 62ee7d94 2023-01-10 thomas
1946 62ee7d94 2023-01-10 thomas event_dispatch();
1947 62ee7d94 2023-01-10 thomas done:
1948 62ee7d94 2023-01-10 thomas if (err)
1949 62ee7d94 2023-01-10 thomas log_warnx("%s: %s", title, err->msg);
1950 62ee7d94 2023-01-10 thomas gotd_session_shutdown();
1951 62ee7d94 2023-01-10 thomas }
1952 62ee7d94 2023-01-10 thomas
1953 62ee7d94 2023-01-10 thomas void
1954 62ee7d94 2023-01-10 thomas gotd_session_shutdown(void)
1955 62ee7d94 2023-01-10 thomas {
1956 ce1bfad9 2024-03-30 thomas struct gotd_session_notif *notif;
1957 ce1bfad9 2024-03-30 thomas
1958 5330ab76 2023-02-17 thomas log_debug("shutting down");
1959 ce1bfad9 2024-03-30 thomas
1960 ce1bfad9 2024-03-30 thomas while (!STAILQ_EMPTY(&notifications)) {
1961 ce1bfad9 2024-03-30 thomas notif = STAILQ_FIRST(&notifications);
1962 ce1bfad9 2024-03-30 thomas STAILQ_REMOVE_HEAD(&notifications, entry);
1963 ce1bfad9 2024-03-30 thomas if (notif->fd != -1)
1964 ce1bfad9 2024-03-30 thomas close(notif->fd);
1965 ce1bfad9 2024-03-30 thomas free(notif->refname);
1966 ce1bfad9 2024-03-30 thomas free(notif);
1967 ce1bfad9 2024-03-30 thomas }
1968 ce1bfad9 2024-03-30 thomas
1969 62ee7d94 2023-01-10 thomas if (gotd_session.repo)
1970 62ee7d94 2023-01-10 thomas got_repo_close(gotd_session.repo);
1971 62ee7d94 2023-01-10 thomas got_repo_pack_fds_close(gotd_session.pack_fds);
1972 62ee7d94 2023-01-10 thomas got_repo_temp_fds_close(gotd_session.temp_fds);
1973 ce1bfad9 2024-03-30 thomas free(gotd_session_client.username);
1974 62ee7d94 2023-01-10 thomas exit(0);
1975 62ee7d94 2023-01-10 thomas }