Blame


1 8a35f56c 2022-07-16 thomas /*
2 8a35f56c 2022-07-16 thomas * Copyright (c) 2010 - 2016 Reyk Floeter <reyk@openbsd.org>
3 8a35f56c 2022-07-16 thomas * Copyright (c) 2008 Pierre-Yves Ritschard <pyr@openbsd.org>
4 8a35f56c 2022-07-16 thomas *
5 8a35f56c 2022-07-16 thomas * Permission to use, copy, modify, and distribute this software for any
6 8a35f56c 2022-07-16 thomas * purpose with or without fee is hereby granted, provided that the above
7 8a35f56c 2022-07-16 thomas * copyright notice and this permission notice appear in all copies.
8 8a35f56c 2022-07-16 thomas *
9 8a35f56c 2022-07-16 thomas * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10 8a35f56c 2022-07-16 thomas * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11 8a35f56c 2022-07-16 thomas * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12 8a35f56c 2022-07-16 thomas * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13 8a35f56c 2022-07-16 thomas * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14 8a35f56c 2022-07-16 thomas * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15 8a35f56c 2022-07-16 thomas * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16 8a35f56c 2022-07-16 thomas */
17 8a35f56c 2022-07-16 thomas
18 8a35f56c 2022-07-16 thomas #include <sys/types.h>
19 8b925c6c 2022-07-16 thomas #include <sys/queue.h>
20 8a35f56c 2022-07-16 thomas #include <sys/socket.h>
21 8a35f56c 2022-07-16 thomas #include <sys/wait.h>
22 8a35f56c 2022-07-16 thomas
23 8a35f56c 2022-07-16 thomas #include <fcntl.h>
24 8a35f56c 2022-07-16 thomas #include <stdio.h>
25 8a35f56c 2022-07-16 thomas #include <stdlib.h>
26 8a35f56c 2022-07-16 thomas #include <unistd.h>
27 8a35f56c 2022-07-16 thomas #include <string.h>
28 8a35f56c 2022-07-16 thomas #include <errno.h>
29 8a35f56c 2022-07-16 thomas #include <signal.h>
30 8a35f56c 2022-07-16 thomas #include <pwd.h>
31 8a35f56c 2022-07-16 thomas #include <event.h>
32 8a35f56c 2022-07-16 thomas
33 8a35f56c 2022-07-16 thomas #include "proc.h"
34 8a35f56c 2022-07-16 thomas
35 ff36aeea 2022-07-16 thomas #include "got_compat.h"
36 ff36aeea 2022-07-16 thomas
37 8a35f56c 2022-07-16 thomas void proc_exec(struct privsep *, struct privsep_proc *, unsigned int,
38 8a35f56c 2022-07-16 thomas int, char **);
39 8a35f56c 2022-07-16 thomas void proc_setup(struct privsep *, struct privsep_proc *, unsigned int);
40 8a35f56c 2022-07-16 thomas void proc_open(struct privsep *, int, int);
41 8a35f56c 2022-07-16 thomas void proc_accept(struct privsep *, int, enum privsep_procid,
42 8a35f56c 2022-07-16 thomas unsigned int);
43 8a35f56c 2022-07-16 thomas void proc_close(struct privsep *);
44 8a35f56c 2022-07-16 thomas int proc_ispeer(struct privsep_proc *, unsigned int, enum privsep_procid);
45 8a35f56c 2022-07-16 thomas void proc_shutdown(struct privsep_proc *);
46 8a35f56c 2022-07-16 thomas void proc_sig_handler(int, short, void *);
47 8a35f56c 2022-07-16 thomas int proc_dispatch_null(int, struct privsep_proc *, struct imsg *);
48 8a35f56c 2022-07-16 thomas
49 8a35f56c 2022-07-16 thomas enum privsep_procid privsep_process;
50 8a35f56c 2022-07-16 thomas
51 8a35f56c 2022-07-16 thomas int
52 8a35f56c 2022-07-16 thomas proc_ispeer(struct privsep_proc *procs, unsigned int nproc,
53 8a35f56c 2022-07-16 thomas enum privsep_procid type)
54 8a35f56c 2022-07-16 thomas {
55 8a35f56c 2022-07-16 thomas unsigned int i;
56 8a35f56c 2022-07-16 thomas
57 8a35f56c 2022-07-16 thomas for (i = 0; i < nproc; i++)
58 8a35f56c 2022-07-16 thomas if (procs[i].p_id == type)
59 8a35f56c 2022-07-16 thomas return (1);
60 8a35f56c 2022-07-16 thomas
61 8a35f56c 2022-07-16 thomas return (0);
62 8a35f56c 2022-07-16 thomas }
63 8a35f56c 2022-07-16 thomas
64 8a35f56c 2022-07-16 thomas enum privsep_procid
65 8a35f56c 2022-07-16 thomas proc_getid(struct privsep_proc *procs, unsigned int nproc,
66 8a35f56c 2022-07-16 thomas const char *proc_name)
67 8a35f56c 2022-07-16 thomas {
68 8a35f56c 2022-07-16 thomas struct privsep_proc *p;
69 8a35f56c 2022-07-16 thomas unsigned int proc;
70 8a35f56c 2022-07-16 thomas
71 8a35f56c 2022-07-16 thomas for (proc = 0; proc < nproc; proc++) {
72 8a35f56c 2022-07-16 thomas p = &procs[proc];
73 8a35f56c 2022-07-16 thomas if (strcmp(p->p_title, proc_name))
74 8a35f56c 2022-07-16 thomas continue;
75 8a35f56c 2022-07-16 thomas
76 8a35f56c 2022-07-16 thomas return (p->p_id);
77 8a35f56c 2022-07-16 thomas }
78 8a35f56c 2022-07-16 thomas
79 8a35f56c 2022-07-16 thomas return (PROC_MAX);
80 8a35f56c 2022-07-16 thomas }
81 8a35f56c 2022-07-16 thomas
82 8a35f56c 2022-07-16 thomas void
83 8a35f56c 2022-07-16 thomas proc_exec(struct privsep *ps, struct privsep_proc *procs, unsigned int nproc,
84 8a35f56c 2022-07-16 thomas int argc, char **argv)
85 8a35f56c 2022-07-16 thomas {
86 8a35f56c 2022-07-16 thomas unsigned int proc, nargc, i, proc_i;
87 8a35f56c 2022-07-16 thomas char **nargv;
88 8a35f56c 2022-07-16 thomas struct privsep_proc *p;
89 8a35f56c 2022-07-16 thomas char num[32];
90 8a35f56c 2022-07-16 thomas int fd;
91 8a35f56c 2022-07-16 thomas
92 8a35f56c 2022-07-16 thomas /* Prepare the new process argv. */
93 8a35f56c 2022-07-16 thomas nargv = calloc(argc + 5, sizeof(char *));
94 8a35f56c 2022-07-16 thomas if (nargv == NULL)
95 8a35f56c 2022-07-16 thomas fatal("%s: calloc", __func__);
96 8a35f56c 2022-07-16 thomas
97 8a35f56c 2022-07-16 thomas /* Copy call argument first. */
98 8a35f56c 2022-07-16 thomas nargc = 0;
99 8a35f56c 2022-07-16 thomas nargv[nargc++] = argv[0];
100 8a35f56c 2022-07-16 thomas
101 8a35f56c 2022-07-16 thomas /* Set process name argument and save the position. */
102 8a35f56c 2022-07-16 thomas nargv[nargc] = strdup("-P");
103 8a35f56c 2022-07-16 thomas if (nargv[nargc] == NULL)
104 8a35f56c 2022-07-16 thomas fatal("%s: strdup", __func__);
105 8a35f56c 2022-07-16 thomas nargc++;
106 8a35f56c 2022-07-16 thomas proc_i = nargc;
107 8a35f56c 2022-07-16 thomas nargc++;
108 8a35f56c 2022-07-16 thomas
109 8a35f56c 2022-07-16 thomas /* Point process instance arg to stack and copy the original args. */
110 8a35f56c 2022-07-16 thomas nargv[nargc] = strdup("-I");
111 8a35f56c 2022-07-16 thomas if (nargv[nargc] == NULL)
112 8a35f56c 2022-07-16 thomas fatal("%s: strdup", __func__);
113 8a35f56c 2022-07-16 thomas nargc++;
114 8a35f56c 2022-07-16 thomas nargv[nargc++] = num;
115 8a35f56c 2022-07-16 thomas for (i = 1; i < (unsigned int) argc; i++)
116 8a35f56c 2022-07-16 thomas nargv[nargc++] = argv[i];
117 8a35f56c 2022-07-16 thomas
118 8a35f56c 2022-07-16 thomas nargv[nargc] = NULL;
119 8a35f56c 2022-07-16 thomas
120 8a35f56c 2022-07-16 thomas for (proc = 0; proc < nproc; proc++) {
121 8a35f56c 2022-07-16 thomas p = &procs[proc];
122 8a35f56c 2022-07-16 thomas
123 8a35f56c 2022-07-16 thomas /* Update args with process title. */
124 8a35f56c 2022-07-16 thomas nargv[proc_i] = (char *)(uintptr_t)p->p_title;
125 8a35f56c 2022-07-16 thomas
126 8a35f56c 2022-07-16 thomas /* Fire children processes. */
127 8a35f56c 2022-07-16 thomas for (i = 0; i < ps->ps_instances[p->p_id]; i++) {
128 8a35f56c 2022-07-16 thomas /* Update the process instance number. */
129 8a35f56c 2022-07-16 thomas snprintf(num, sizeof(num), "%u", i);
130 8a35f56c 2022-07-16 thomas
131 8a35f56c 2022-07-16 thomas fd = ps->ps_pipes[p->p_id][i].pp_pipes[PROC_GOTWEBD][0];
132 8a35f56c 2022-07-16 thomas ps->ps_pipes[p->p_id][i].pp_pipes[PROC_GOTWEBD][0] = -1;
133 8a35f56c 2022-07-16 thomas
134 8a35f56c 2022-07-16 thomas switch (fork()) {
135 8a35f56c 2022-07-16 thomas case -1:
136 8a35f56c 2022-07-16 thomas fatal("%s: fork", __func__);
137 8a35f56c 2022-07-16 thomas break;
138 8a35f56c 2022-07-16 thomas case 0:
139 8a35f56c 2022-07-16 thomas /* First create a new session */
140 8a35f56c 2022-07-16 thomas if (setsid() == -1)
141 8a35f56c 2022-07-16 thomas fatal("setsid");
142 8a35f56c 2022-07-16 thomas
143 8a35f56c 2022-07-16 thomas /* Prepare parent socket. */
144 8a35f56c 2022-07-16 thomas if (fd != PROC_GOTWEBD_SOCK_FILENO) {
145 8a35f56c 2022-07-16 thomas if (dup2(fd, PROC_GOTWEBD_SOCK_FILENO)
146 8a35f56c 2022-07-16 thomas == -1)
147 8a35f56c 2022-07-16 thomas fatal("dup2");
148 8a35f56c 2022-07-16 thomas } else if (fcntl(fd, F_SETFD, 0) == -1)
149 8a35f56c 2022-07-16 thomas fatal("fcntl");
150 8a35f56c 2022-07-16 thomas
151 8a35f56c 2022-07-16 thomas execvp(argv[0], nargv);
152 8a35f56c 2022-07-16 thomas fatal("%s: execvp", __func__);
153 8a35f56c 2022-07-16 thomas break;
154 8a35f56c 2022-07-16 thomas default:
155 8a35f56c 2022-07-16 thomas /* Close child end. */
156 8a35f56c 2022-07-16 thomas close(fd);
157 8a35f56c 2022-07-16 thomas break;
158 8a35f56c 2022-07-16 thomas }
159 8a35f56c 2022-07-16 thomas }
160 8a35f56c 2022-07-16 thomas }
161 8a35f56c 2022-07-16 thomas
162 8a35f56c 2022-07-16 thomas free(nargv);
163 8a35f56c 2022-07-16 thomas }
164 8a35f56c 2022-07-16 thomas
165 8a35f56c 2022-07-16 thomas void
166 8a35f56c 2022-07-16 thomas proc_connect(struct privsep *ps)
167 8a35f56c 2022-07-16 thomas {
168 8a35f56c 2022-07-16 thomas struct imsgev *iev;
169 8a35f56c 2022-07-16 thomas unsigned int src, dst, inst;
170 8a35f56c 2022-07-16 thomas
171 8a35f56c 2022-07-16 thomas /* Don't distribute any sockets if we are not really going to run. */
172 8a35f56c 2022-07-16 thomas if (ps->ps_noaction)
173 8a35f56c 2022-07-16 thomas return;
174 8a35f56c 2022-07-16 thomas
175 8a35f56c 2022-07-16 thomas for (dst = 0; dst < PROC_MAX; dst++) {
176 8a35f56c 2022-07-16 thomas /* We don't communicate with ourselves. */
177 8a35f56c 2022-07-16 thomas if (dst == PROC_GOTWEBD)
178 8a35f56c 2022-07-16 thomas continue;
179 8a35f56c 2022-07-16 thomas
180 8a35f56c 2022-07-16 thomas for (inst = 0; inst < ps->ps_instances[dst]; inst++) {
181 8a35f56c 2022-07-16 thomas iev = &ps->ps_ievs[dst][inst];
182 8a35f56c 2022-07-16 thomas imsg_init(&iev->ibuf, ps->ps_pp->pp_pipes[dst][inst]);
183 8a35f56c 2022-07-16 thomas event_set(&iev->ev, iev->ibuf.fd, iev->events,
184 8a35f56c 2022-07-16 thomas iev->handler, iev->data);
185 8a35f56c 2022-07-16 thomas event_add(&iev->ev, NULL);
186 8a35f56c 2022-07-16 thomas }
187 8a35f56c 2022-07-16 thomas }
188 8a35f56c 2022-07-16 thomas
189 8a35f56c 2022-07-16 thomas /* Distribute the socketpair()s for everyone. */
190 8a35f56c 2022-07-16 thomas for (src = 0; src < PROC_MAX; src++)
191 8a35f56c 2022-07-16 thomas for (dst = src; dst < PROC_MAX; dst++) {
192 8a35f56c 2022-07-16 thomas /* Parent already distributed its fds. */
193 8a35f56c 2022-07-16 thomas if (src == PROC_GOTWEBD || dst == PROC_GOTWEBD)
194 8a35f56c 2022-07-16 thomas continue;
195 8a35f56c 2022-07-16 thomas
196 8a35f56c 2022-07-16 thomas proc_open(ps, src, dst);
197 8a35f56c 2022-07-16 thomas }
198 8a35f56c 2022-07-16 thomas }
199 8a35f56c 2022-07-16 thomas
200 8a35f56c 2022-07-16 thomas void
201 8a35f56c 2022-07-16 thomas proc_init(struct privsep *ps, struct privsep_proc *procs, unsigned int nproc,
202 8a35f56c 2022-07-16 thomas int argc, char **argv, enum privsep_procid proc_id)
203 8a35f56c 2022-07-16 thomas {
204 8a35f56c 2022-07-16 thomas struct privsep_proc *p = NULL;
205 8a35f56c 2022-07-16 thomas struct privsep_pipes *pa, *pb;
206 8a35f56c 2022-07-16 thomas unsigned int proc;
207 8a35f56c 2022-07-16 thomas unsigned int dst;
208 8a35f56c 2022-07-16 thomas int fds[2];
209 8a35f56c 2022-07-16 thomas
210 8a35f56c 2022-07-16 thomas /* Don't initiate anything if we are not really going to run. */
211 8a35f56c 2022-07-16 thomas if (ps->ps_noaction)
212 8a35f56c 2022-07-16 thomas return;
213 8a35f56c 2022-07-16 thomas
214 8a35f56c 2022-07-16 thomas if (proc_id == PROC_GOTWEBD) {
215 8a35f56c 2022-07-16 thomas privsep_process = PROC_GOTWEBD;
216 8a35f56c 2022-07-16 thomas proc_setup(ps, procs, nproc);
217 8a35f56c 2022-07-16 thomas
218 8a35f56c 2022-07-16 thomas /*
219 b6b86fd1 2022-08-30 thomas * Create the children sockets so we can use them
220 8a35f56c 2022-07-16 thomas * to distribute the rest of the socketpair()s using
221 8a35f56c 2022-07-16 thomas * proc_connect() later.
222 8a35f56c 2022-07-16 thomas */
223 8a35f56c 2022-07-16 thomas for (dst = 0; dst < PROC_MAX; dst++) {
224 8a35f56c 2022-07-16 thomas /* Don't create socket for ourselves. */
225 8a35f56c 2022-07-16 thomas if (dst == PROC_GOTWEBD)
226 8a35f56c 2022-07-16 thomas continue;
227 8a35f56c 2022-07-16 thomas
228 8a35f56c 2022-07-16 thomas for (proc = 0; proc < ps->ps_instances[dst]; proc++) {
229 8a35f56c 2022-07-16 thomas pa = &ps->ps_pipes[PROC_GOTWEBD][0];
230 8a35f56c 2022-07-16 thomas pb = &ps->ps_pipes[dst][proc];
231 dd7a7d5b 2022-07-16 thomas int sock_flags = SOCK_STREAM | SOCK_NONBLOCK;
232 dd7a7d5b 2022-07-16 thomas #ifdef SOCK_CLOEXEC
233 dd7a7d5b 2022-07-16 thomas sock_flags |= SOCK_CLOEXEC;
234 dd7a7d5b 2022-07-16 thomas #endif
235 dd7a7d5b 2022-07-16 thomas if (socketpair(AF_UNIX, sock_flags,
236 8a35f56c 2022-07-16 thomas PF_UNSPEC, fds) == -1)
237 8a35f56c 2022-07-16 thomas fatal("%s: socketpair", __func__);
238 8a35f56c 2022-07-16 thomas
239 8a35f56c 2022-07-16 thomas pa->pp_pipes[dst][proc] = fds[0];
240 8a35f56c 2022-07-16 thomas pb->pp_pipes[PROC_GOTWEBD][0] = fds[1];
241 8a35f56c 2022-07-16 thomas }
242 8a35f56c 2022-07-16 thomas }
243 8a35f56c 2022-07-16 thomas
244 8a35f56c 2022-07-16 thomas /* Engage! */
245 8a35f56c 2022-07-16 thomas proc_exec(ps, procs, nproc, argc, argv);
246 8a35f56c 2022-07-16 thomas return;
247 8a35f56c 2022-07-16 thomas }
248 8a35f56c 2022-07-16 thomas
249 8a35f56c 2022-07-16 thomas /* Initialize a child */
250 8a35f56c 2022-07-16 thomas for (proc = 0; proc < nproc; proc++) {
251 8a35f56c 2022-07-16 thomas if (procs[proc].p_id != proc_id)
252 8a35f56c 2022-07-16 thomas continue;
253 8a35f56c 2022-07-16 thomas p = &procs[proc];
254 8a35f56c 2022-07-16 thomas break;
255 8a35f56c 2022-07-16 thomas }
256 8a35f56c 2022-07-16 thomas if (p == NULL || p->p_init == NULL)
257 8a35f56c 2022-07-16 thomas fatalx("%s: process %d missing process initialization",
258 8a35f56c 2022-07-16 thomas __func__, proc_id);
259 8a35f56c 2022-07-16 thomas
260 8a35f56c 2022-07-16 thomas p->p_init(ps, p);
261 8a35f56c 2022-07-16 thomas
262 8a35f56c 2022-07-16 thomas fatalx("failed to initiate child process");
263 8a35f56c 2022-07-16 thomas }
264 8a35f56c 2022-07-16 thomas
265 8a35f56c 2022-07-16 thomas void
266 8a35f56c 2022-07-16 thomas proc_accept(struct privsep *ps, int fd, enum privsep_procid dst,
267 8a35f56c 2022-07-16 thomas unsigned int n)
268 8a35f56c 2022-07-16 thomas {
269 8a35f56c 2022-07-16 thomas struct privsep_pipes *pp = ps->ps_pp;
270 8a35f56c 2022-07-16 thomas struct imsgev *iev;
271 8a35f56c 2022-07-16 thomas
272 8a35f56c 2022-07-16 thomas if (ps->ps_ievs[dst] == NULL) {
273 8a35f56c 2022-07-16 thomas #if DEBUG > 1
274 8a35f56c 2022-07-16 thomas log_debug("%s: %s src %d %d to dst %d %d not connected",
275 8a35f56c 2022-07-16 thomas __func__, ps->ps_title[privsep_process],
276 8a35f56c 2022-07-16 thomas privsep_process, ps->ps_instance + 1,
277 8a35f56c 2022-07-16 thomas dst, n + 1);
278 8a35f56c 2022-07-16 thomas #endif
279 8a35f56c 2022-07-16 thomas close(fd);
280 8a35f56c 2022-07-16 thomas return;
281 8a35f56c 2022-07-16 thomas }
282 8a35f56c 2022-07-16 thomas
283 8a35f56c 2022-07-16 thomas if (pp->pp_pipes[dst][n] != -1) {
284 8a35f56c 2022-07-16 thomas log_warnx("%s: duplicated descriptor", __func__);
285 8a35f56c 2022-07-16 thomas close(fd);
286 8a35f56c 2022-07-16 thomas return;
287 8a35f56c 2022-07-16 thomas } else
288 8a35f56c 2022-07-16 thomas pp->pp_pipes[dst][n] = fd;
289 8a35f56c 2022-07-16 thomas
290 8a35f56c 2022-07-16 thomas iev = &ps->ps_ievs[dst][n];
291 8a35f56c 2022-07-16 thomas imsg_init(&iev->ibuf, fd);
292 8a35f56c 2022-07-16 thomas event_set(&iev->ev, iev->ibuf.fd, iev->events, iev->handler, iev->data);
293 8a35f56c 2022-07-16 thomas event_add(&iev->ev, NULL);
294 8a35f56c 2022-07-16 thomas }
295 8a35f56c 2022-07-16 thomas
296 8a35f56c 2022-07-16 thomas void
297 8a35f56c 2022-07-16 thomas proc_setup(struct privsep *ps, struct privsep_proc *procs, unsigned int nproc)
298 8a35f56c 2022-07-16 thomas {
299 8a35f56c 2022-07-16 thomas unsigned int i, j, src, dst, id;
300 8a35f56c 2022-07-16 thomas struct privsep_pipes *pp;
301 8a35f56c 2022-07-16 thomas
302 8a35f56c 2022-07-16 thomas /* Initialize parent title, ps_instances and procs. */
303 8a35f56c 2022-07-16 thomas ps->ps_title[PROC_GOTWEBD] = "parent";
304 8a35f56c 2022-07-16 thomas
305 8a35f56c 2022-07-16 thomas for (src = 0; src < PROC_MAX; src++)
306 8a35f56c 2022-07-16 thomas /* Default to 1 process instance */
307 8a35f56c 2022-07-16 thomas if (ps->ps_instances[src] < 1)
308 8a35f56c 2022-07-16 thomas ps->ps_instances[src] = 1;
309 8a35f56c 2022-07-16 thomas
310 8a35f56c 2022-07-16 thomas for (src = 0; src < nproc; src++) {
311 8a35f56c 2022-07-16 thomas procs[src].p_ps = ps;
312 8a35f56c 2022-07-16 thomas if (procs[src].p_cb == NULL)
313 8a35f56c 2022-07-16 thomas procs[src].p_cb = proc_dispatch_null;
314 8a35f56c 2022-07-16 thomas
315 8a35f56c 2022-07-16 thomas id = procs[src].p_id;
316 8a35f56c 2022-07-16 thomas ps->ps_title[id] = procs[src].p_title;
317 8a35f56c 2022-07-16 thomas ps->ps_ievs[id] = calloc(ps->ps_instances[id],
318 8a35f56c 2022-07-16 thomas sizeof(struct imsgev));
319 8a35f56c 2022-07-16 thomas if (ps->ps_ievs[id] == NULL)
320 8a35f56c 2022-07-16 thomas fatal("%s: calloc", __func__);
321 8a35f56c 2022-07-16 thomas
322 8a35f56c 2022-07-16 thomas /* With this set up, we are ready to call imsg_init(). */
323 8a35f56c 2022-07-16 thomas for (i = 0; i < ps->ps_instances[id]; i++) {
324 8a35f56c 2022-07-16 thomas ps->ps_ievs[id][i].handler = proc_dispatch;
325 8a35f56c 2022-07-16 thomas ps->ps_ievs[id][i].events = EV_READ;
326 8a35f56c 2022-07-16 thomas ps->ps_ievs[id][i].proc = &procs[src];
327 8a35f56c 2022-07-16 thomas ps->ps_ievs[id][i].data = &ps->ps_ievs[id][i];
328 8a35f56c 2022-07-16 thomas }
329 8a35f56c 2022-07-16 thomas }
330 8a35f56c 2022-07-16 thomas
331 8a35f56c 2022-07-16 thomas /*
332 8a35f56c 2022-07-16 thomas * Allocate pipes for all process instances (incl. parent)
333 8a35f56c 2022-07-16 thomas *
334 8a35f56c 2022-07-16 thomas * - ps->ps_pipes: N:M mapping
335 8a35f56c 2022-07-16 thomas * N source processes connected to M destination processes:
336 8a35f56c 2022-07-16 thomas * [src][instances][dst][instances], for example
337 8a35f56c 2022-07-16 thomas * [PROC_RELAY][3][PROC_CA][3]
338 8a35f56c 2022-07-16 thomas *
339 8a35f56c 2022-07-16 thomas * - ps->ps_pp: per-process 1:M part of ps->ps_pipes
340 8a35f56c 2022-07-16 thomas * Each process instance has a destination array of socketpair fds:
341 8a35f56c 2022-07-16 thomas * [dst][instances], for example
342 8a35f56c 2022-07-16 thomas * [PROC_GOTWEBD][0]
343 8a35f56c 2022-07-16 thomas */
344 8a35f56c 2022-07-16 thomas for (src = 0; src < PROC_MAX; src++) {
345 8a35f56c 2022-07-16 thomas /* Allocate destination array for each process */
346 8a35f56c 2022-07-16 thomas ps->ps_pipes[src] = calloc(ps->ps_instances[src],
347 8a35f56c 2022-07-16 thomas sizeof(struct privsep_pipes));
348 8a35f56c 2022-07-16 thomas if (ps->ps_pipes[src] == NULL)
349 8a35f56c 2022-07-16 thomas fatal("%s: calloc", __func__);
350 8a35f56c 2022-07-16 thomas
351 8a35f56c 2022-07-16 thomas for (i = 0; i < ps->ps_instances[src]; i++) {
352 8a35f56c 2022-07-16 thomas pp = &ps->ps_pipes[src][i];
353 8a35f56c 2022-07-16 thomas
354 8a35f56c 2022-07-16 thomas for (dst = 0; dst < PROC_MAX; dst++) {
355 8a35f56c 2022-07-16 thomas /* Allocate maximum fd integers */
356 8a35f56c 2022-07-16 thomas pp->pp_pipes[dst] =
357 8a35f56c 2022-07-16 thomas calloc(ps->ps_instances[dst],
358 8a35f56c 2022-07-16 thomas sizeof(int));
359 8a35f56c 2022-07-16 thomas if (pp->pp_pipes[dst] == NULL)
360 8a35f56c 2022-07-16 thomas fatal("%s: calloc", __func__);
361 8a35f56c 2022-07-16 thomas
362 8a35f56c 2022-07-16 thomas /* Mark fd as unused */
363 8a35f56c 2022-07-16 thomas for (j = 0; j < ps->ps_instances[dst]; j++)
364 8a35f56c 2022-07-16 thomas pp->pp_pipes[dst][j] = -1;
365 8a35f56c 2022-07-16 thomas }
366 8a35f56c 2022-07-16 thomas }
367 8a35f56c 2022-07-16 thomas }
368 8a35f56c 2022-07-16 thomas
369 8a35f56c 2022-07-16 thomas ps->ps_pp = &ps->ps_pipes[privsep_process][ps->ps_instance];
370 8a35f56c 2022-07-16 thomas }
371 8a35f56c 2022-07-16 thomas
372 8a35f56c 2022-07-16 thomas void
373 8a35f56c 2022-07-16 thomas proc_kill(struct privsep *ps)
374 8a35f56c 2022-07-16 thomas {
375 8a35f56c 2022-07-16 thomas char *cause;
376 8a35f56c 2022-07-16 thomas pid_t pid;
377 8a35f56c 2022-07-16 thomas int len, status;
378 8a35f56c 2022-07-16 thomas
379 8a35f56c 2022-07-16 thomas if (privsep_process != PROC_GOTWEBD)
380 8a35f56c 2022-07-16 thomas return;
381 8a35f56c 2022-07-16 thomas
382 8a35f56c 2022-07-16 thomas proc_close(ps);
383 8a35f56c 2022-07-16 thomas
384 8a35f56c 2022-07-16 thomas do {
385 8a35f56c 2022-07-16 thomas pid = waitpid(WAIT_ANY, &status, 0);
386 8a35f56c 2022-07-16 thomas if (pid <= 0)
387 8a35f56c 2022-07-16 thomas continue;
388 8a35f56c 2022-07-16 thomas
389 8a35f56c 2022-07-16 thomas if (WIFSIGNALED(status)) {
390 8a35f56c 2022-07-16 thomas len = asprintf(&cause, "terminated; signal %d",
391 8a35f56c 2022-07-16 thomas WTERMSIG(status));
392 8a35f56c 2022-07-16 thomas } else if (WIFEXITED(status)) {
393 8a35f56c 2022-07-16 thomas if (WEXITSTATUS(status) != 0)
394 8a35f56c 2022-07-16 thomas len = asprintf(&cause, "exited abnormally");
395 8a35f56c 2022-07-16 thomas else
396 8a35f56c 2022-07-16 thomas len = 0;
397 8a35f56c 2022-07-16 thomas } else
398 8a35f56c 2022-07-16 thomas len = -1;
399 8a35f56c 2022-07-16 thomas
400 8a35f56c 2022-07-16 thomas if (len == 0) {
401 8a35f56c 2022-07-16 thomas /* child exited OK, don't print a warning message */
402 8a35f56c 2022-07-16 thomas } else if (len != -1) {
403 8a35f56c 2022-07-16 thomas log_warnx("lost child: pid %u %s", pid, cause);
404 8a35f56c 2022-07-16 thomas free(cause);
405 8a35f56c 2022-07-16 thomas } else
406 8a35f56c 2022-07-16 thomas log_warnx("lost child: pid %u", pid);
407 8a35f56c 2022-07-16 thomas } while (pid != -1 || (pid == -1 && errno == EINTR));
408 8a35f56c 2022-07-16 thomas }
409 8a35f56c 2022-07-16 thomas
410 8a35f56c 2022-07-16 thomas void
411 8a35f56c 2022-07-16 thomas proc_open(struct privsep *ps, int src, int dst)
412 8a35f56c 2022-07-16 thomas {
413 8a35f56c 2022-07-16 thomas struct privsep_pipes *pa, *pb;
414 8a35f56c 2022-07-16 thomas struct privsep_fd pf;
415 8a35f56c 2022-07-16 thomas int fds[2];
416 8a35f56c 2022-07-16 thomas unsigned int i, j;
417 8a35f56c 2022-07-16 thomas
418 8a35f56c 2022-07-16 thomas /* Exchange pipes between process. */
419 8a35f56c 2022-07-16 thomas for (i = 0; i < ps->ps_instances[src]; i++) {
420 8a35f56c 2022-07-16 thomas for (j = 0; j < ps->ps_instances[dst]; j++) {
421 8a35f56c 2022-07-16 thomas /* Don't create sockets for ourself. */
422 8a35f56c 2022-07-16 thomas if (src == dst && i == j)
423 8a35f56c 2022-07-16 thomas continue;
424 8a35f56c 2022-07-16 thomas
425 8a35f56c 2022-07-16 thomas pa = &ps->ps_pipes[src][i];
426 8a35f56c 2022-07-16 thomas pb = &ps->ps_pipes[dst][j];
427 dd7a7d5b 2022-07-16 thomas int sock_flags = SOCK_STREAM | SOCK_NONBLOCK;
428 dd7a7d5b 2022-07-16 thomas #ifdef SOCK_CLOEXEC
429 dd7a7d5b 2022-07-16 thomas sock_flags |= SOCK_CLOEXEC;
430 dd7a7d5b 2022-07-16 thomas #endif
431 dd7a7d5b 2022-07-16 thomas if (socketpair(AF_UNIX, sock_flags,
432 8a35f56c 2022-07-16 thomas PF_UNSPEC, fds) == -1)
433 8a35f56c 2022-07-16 thomas fatal("%s: socketpair", __func__);
434 8a35f56c 2022-07-16 thomas
435 8a35f56c 2022-07-16 thomas pa->pp_pipes[dst][j] = fds[0];
436 8a35f56c 2022-07-16 thomas pb->pp_pipes[src][i] = fds[1];
437 8a35f56c 2022-07-16 thomas
438 8a35f56c 2022-07-16 thomas pf.pf_procid = src;
439 8a35f56c 2022-07-16 thomas pf.pf_instance = i;
440 8a35f56c 2022-07-16 thomas if (proc_compose_imsg(ps, dst, j, IMSG_CTL_PROCFD,
441 8a35f56c 2022-07-16 thomas -1, pb->pp_pipes[src][i], &pf, sizeof(pf)) == -1)
442 8a35f56c 2022-07-16 thomas fatal("%s: proc_compose_imsg", __func__);
443 8a35f56c 2022-07-16 thomas
444 8a35f56c 2022-07-16 thomas pf.pf_procid = dst;
445 8a35f56c 2022-07-16 thomas pf.pf_instance = j;
446 8a35f56c 2022-07-16 thomas if (proc_compose_imsg(ps, src, i, IMSG_CTL_PROCFD,
447 8a35f56c 2022-07-16 thomas -1, pa->pp_pipes[dst][j], &pf, sizeof(pf)) == -1)
448 8a35f56c 2022-07-16 thomas fatal("%s: proc_compose_imsg", __func__);
449 8a35f56c 2022-07-16 thomas
450 8a35f56c 2022-07-16 thomas /*
451 8a35f56c 2022-07-16 thomas * We have to flush to send the descriptors and close
452 8a35f56c 2022-07-16 thomas * them to avoid the fd ramp on startup.
453 8a35f56c 2022-07-16 thomas */
454 8a35f56c 2022-07-16 thomas if (proc_flush_imsg(ps, src, i) == -1 ||
455 8a35f56c 2022-07-16 thomas proc_flush_imsg(ps, dst, j) == -1)
456 8a35f56c 2022-07-16 thomas fatal("%s: imsg_flush", __func__);
457 8a35f56c 2022-07-16 thomas }
458 8a35f56c 2022-07-16 thomas }
459 8a35f56c 2022-07-16 thomas }
460 8a35f56c 2022-07-16 thomas
461 8a35f56c 2022-07-16 thomas void
462 8a35f56c 2022-07-16 thomas proc_close(struct privsep *ps)
463 8a35f56c 2022-07-16 thomas {
464 8a35f56c 2022-07-16 thomas unsigned int dst, n;
465 8a35f56c 2022-07-16 thomas struct privsep_pipes *pp;
466 8a35f56c 2022-07-16 thomas
467 8a35f56c 2022-07-16 thomas if (ps == NULL)
468 8a35f56c 2022-07-16 thomas return;
469 8a35f56c 2022-07-16 thomas
470 8a35f56c 2022-07-16 thomas pp = ps->ps_pp;
471 8a35f56c 2022-07-16 thomas
472 8a35f56c 2022-07-16 thomas for (dst = 0; dst < PROC_MAX; dst++) {
473 8a35f56c 2022-07-16 thomas if (ps->ps_ievs[dst] == NULL)
474 8a35f56c 2022-07-16 thomas continue;
475 8a35f56c 2022-07-16 thomas
476 8a35f56c 2022-07-16 thomas for (n = 0; n < ps->ps_instances[dst]; n++) {
477 8a35f56c 2022-07-16 thomas if (pp->pp_pipes[dst][n] == -1)
478 8a35f56c 2022-07-16 thomas continue;
479 8a35f56c 2022-07-16 thomas
480 8a35f56c 2022-07-16 thomas /* Cancel the fd, close and invalidate the fd */
481 8a35f56c 2022-07-16 thomas event_del(&(ps->ps_ievs[dst][n].ev));
482 8a35f56c 2022-07-16 thomas imsg_clear(&(ps->ps_ievs[dst][n].ibuf));
483 8a35f56c 2022-07-16 thomas close(pp->pp_pipes[dst][n]);
484 8a35f56c 2022-07-16 thomas pp->pp_pipes[dst][n] = -1;
485 8a35f56c 2022-07-16 thomas }
486 8a35f56c 2022-07-16 thomas free(ps->ps_ievs[dst]);
487 8a35f56c 2022-07-16 thomas }
488 8a35f56c 2022-07-16 thomas }
489 8a35f56c 2022-07-16 thomas
490 8a35f56c 2022-07-16 thomas void
491 8a35f56c 2022-07-16 thomas proc_shutdown(struct privsep_proc *p)
492 8a35f56c 2022-07-16 thomas {
493 8a35f56c 2022-07-16 thomas struct privsep *ps = p->p_ps;
494 8a35f56c 2022-07-16 thomas
495 8a35f56c 2022-07-16 thomas if (p->p_shutdown != NULL)
496 8a35f56c 2022-07-16 thomas (*p->p_shutdown)();
497 8a35f56c 2022-07-16 thomas
498 8a35f56c 2022-07-16 thomas proc_close(ps);
499 8a35f56c 2022-07-16 thomas
500 8a35f56c 2022-07-16 thomas log_info("%s, %s exiting, pid %d", getprogname(), p->p_title, getpid());
501 8a35f56c 2022-07-16 thomas
502 8a35f56c 2022-07-16 thomas exit(0);
503 8a35f56c 2022-07-16 thomas }
504 8a35f56c 2022-07-16 thomas
505 8a35f56c 2022-07-16 thomas void
506 8a35f56c 2022-07-16 thomas proc_sig_handler(int sig, short event, void *arg)
507 8a35f56c 2022-07-16 thomas {
508 8a35f56c 2022-07-16 thomas struct privsep_proc *p = arg;
509 8a35f56c 2022-07-16 thomas
510 8a35f56c 2022-07-16 thomas switch (sig) {
511 8a35f56c 2022-07-16 thomas case SIGINT:
512 8a35f56c 2022-07-16 thomas case SIGTERM:
513 8a35f56c 2022-07-16 thomas proc_shutdown(p);
514 8a35f56c 2022-07-16 thomas break;
515 8a35f56c 2022-07-16 thomas case SIGCHLD:
516 8a35f56c 2022-07-16 thomas case SIGHUP:
517 8a35f56c 2022-07-16 thomas case SIGPIPE:
518 8a35f56c 2022-07-16 thomas case SIGUSR1:
519 8a35f56c 2022-07-16 thomas /* ignore */
520 8a35f56c 2022-07-16 thomas break;
521 8a35f56c 2022-07-16 thomas default:
522 8a35f56c 2022-07-16 thomas fatalx("proc_sig_handler: unexpected signal");
523 8a35f56c 2022-07-16 thomas /* NOTREACHED */
524 8a35f56c 2022-07-16 thomas }
525 8a35f56c 2022-07-16 thomas }
526 8a35f56c 2022-07-16 thomas
527 8a35f56c 2022-07-16 thomas void
528 8a35f56c 2022-07-16 thomas proc_run(struct privsep *ps, struct privsep_proc *p,
529 8a35f56c 2022-07-16 thomas struct privsep_proc *procs, unsigned int nproc,
530 8a35f56c 2022-07-16 thomas void (*run)(struct privsep *, struct privsep_proc *, void *), void *arg)
531 8a35f56c 2022-07-16 thomas {
532 8a35f56c 2022-07-16 thomas struct passwd *pw;
533 8a35f56c 2022-07-16 thomas const char *root;
534 8a35f56c 2022-07-16 thomas
535 8a35f56c 2022-07-16 thomas log_procinit(p->p_title);
536 8a35f56c 2022-07-16 thomas
537 8a35f56c 2022-07-16 thomas /* Set the process group of the current process */
538 8a35f56c 2022-07-16 thomas setpgid(0, 0);
539 8a35f56c 2022-07-16 thomas
540 8a35f56c 2022-07-16 thomas /* Use non-standard user */
541 8a35f56c 2022-07-16 thomas if (p->p_pw != NULL)
542 8a35f56c 2022-07-16 thomas pw = p->p_pw;
543 8a35f56c 2022-07-16 thomas else
544 8a35f56c 2022-07-16 thomas pw = ps->ps_pw;
545 8a35f56c 2022-07-16 thomas
546 8a35f56c 2022-07-16 thomas /* Change root directory */
547 8a35f56c 2022-07-16 thomas if (p->p_chroot != NULL)
548 8a35f56c 2022-07-16 thomas root = p->p_chroot;
549 8a35f56c 2022-07-16 thomas else
550 8a35f56c 2022-07-16 thomas root = pw->pw_dir;
551 8a35f56c 2022-07-16 thomas
552 8a35f56c 2022-07-16 thomas if (chroot(root) == -1)
553 8a35f56c 2022-07-16 thomas fatal("proc_run: chroot");
554 8a35f56c 2022-07-16 thomas if (chdir("/") == -1)
555 8a35f56c 2022-07-16 thomas fatal("proc_run: chdir(\"/\")");
556 8a35f56c 2022-07-16 thomas
557 8a35f56c 2022-07-16 thomas privsep_process = p->p_id;
558 8a35f56c 2022-07-16 thomas
559 8a35f56c 2022-07-16 thomas setproctitle("%s", p->p_title);
560 8a35f56c 2022-07-16 thomas
561 8a35f56c 2022-07-16 thomas if (setgroups(1, &pw->pw_gid) ||
562 8a35f56c 2022-07-16 thomas setresgid(pw->pw_gid, pw->pw_gid, pw->pw_gid) ||
563 8a35f56c 2022-07-16 thomas setresuid(pw->pw_uid, pw->pw_uid, pw->pw_uid))
564 8a35f56c 2022-07-16 thomas fatal("proc_run: cannot drop privileges");
565 8a35f56c 2022-07-16 thomas
566 8a35f56c 2022-07-16 thomas event_init();
567 8a35f56c 2022-07-16 thomas
568 8a35f56c 2022-07-16 thomas signal_set(&ps->ps_evsigint, SIGINT, proc_sig_handler, p);
569 8a35f56c 2022-07-16 thomas signal_set(&ps->ps_evsigterm, SIGTERM, proc_sig_handler, p);
570 8a35f56c 2022-07-16 thomas signal_set(&ps->ps_evsigchld, SIGCHLD, proc_sig_handler, p);
571 8a35f56c 2022-07-16 thomas signal_set(&ps->ps_evsighup, SIGHUP, proc_sig_handler, p);
572 8a35f56c 2022-07-16 thomas signal_set(&ps->ps_evsigpipe, SIGPIPE, proc_sig_handler, p);
573 8a35f56c 2022-07-16 thomas signal_set(&ps->ps_evsigusr1, SIGUSR1, proc_sig_handler, p);
574 8a35f56c 2022-07-16 thomas
575 8a35f56c 2022-07-16 thomas signal_add(&ps->ps_evsigint, NULL);
576 8a35f56c 2022-07-16 thomas signal_add(&ps->ps_evsigterm, NULL);
577 8a35f56c 2022-07-16 thomas signal_add(&ps->ps_evsigchld, NULL);
578 8a35f56c 2022-07-16 thomas signal_add(&ps->ps_evsighup, NULL);
579 8a35f56c 2022-07-16 thomas signal_add(&ps->ps_evsigpipe, NULL);
580 8a35f56c 2022-07-16 thomas signal_add(&ps->ps_evsigusr1, NULL);
581 8a35f56c 2022-07-16 thomas
582 8a35f56c 2022-07-16 thomas proc_setup(ps, procs, nproc);
583 8a35f56c 2022-07-16 thomas proc_accept(ps, PROC_GOTWEBD_SOCK_FILENO, PROC_GOTWEBD, 0);
584 8a35f56c 2022-07-16 thomas
585 8a35f56c 2022-07-16 thomas DPRINTF("%s: %s %d/%d, pid %d", __func__, p->p_title,
586 8a35f56c 2022-07-16 thomas ps->ps_instance + 1, ps->ps_instances[p->p_id], getpid());
587 8a35f56c 2022-07-16 thomas
588 8a35f56c 2022-07-16 thomas if (run != NULL)
589 8a35f56c 2022-07-16 thomas run(ps, p, arg);
590 8a35f56c 2022-07-16 thomas
591 8a35f56c 2022-07-16 thomas event_dispatch();
592 8a35f56c 2022-07-16 thomas
593 8a35f56c 2022-07-16 thomas proc_shutdown(p);
594 8a35f56c 2022-07-16 thomas }
595 8a35f56c 2022-07-16 thomas
596 8a35f56c 2022-07-16 thomas void
597 8a35f56c 2022-07-16 thomas proc_dispatch(int fd, short event, void *arg)
598 8a35f56c 2022-07-16 thomas {
599 8a35f56c 2022-07-16 thomas struct imsgev *iev = arg;
600 8a35f56c 2022-07-16 thomas struct privsep_proc *p = iev->proc;
601 8a35f56c 2022-07-16 thomas struct privsep *ps = p->p_ps;
602 8a35f56c 2022-07-16 thomas struct imsgbuf *ibuf;
603 8a35f56c 2022-07-16 thomas struct imsg imsg;
604 8a35f56c 2022-07-16 thomas ssize_t n;
605 8a35f56c 2022-07-16 thomas int verbose;
606 8a35f56c 2022-07-16 thomas const char *title;
607 8a35f56c 2022-07-16 thomas struct privsep_fd pf;
608 8a35f56c 2022-07-16 thomas
609 8a35f56c 2022-07-16 thomas title = ps->ps_title[privsep_process];
610 8a35f56c 2022-07-16 thomas ibuf = &iev->ibuf;
611 8a35f56c 2022-07-16 thomas
612 8a35f56c 2022-07-16 thomas if (event & EV_READ) {
613 8a35f56c 2022-07-16 thomas n = imsg_read(ibuf);
614 8a35f56c 2022-07-16 thomas if (n == -1 && errno != EAGAIN)
615 8a35f56c 2022-07-16 thomas fatal("%s: imsg_read", __func__);
616 8a35f56c 2022-07-16 thomas if (n == 0) {
617 8a35f56c 2022-07-16 thomas /* this pipe is dead, so remove the event handler */
618 8a35f56c 2022-07-16 thomas event_del(&iev->ev);
619 8a35f56c 2022-07-16 thomas event_loopexit(NULL);
620 8a35f56c 2022-07-16 thomas return;
621 8a35f56c 2022-07-16 thomas }
622 8a35f56c 2022-07-16 thomas }
623 8a35f56c 2022-07-16 thomas
624 8a35f56c 2022-07-16 thomas if (event & EV_WRITE) {
625 8a35f56c 2022-07-16 thomas n = msgbuf_write(&ibuf->w);
626 8a35f56c 2022-07-16 thomas if (n == -1 && errno != EAGAIN)
627 8a35f56c 2022-07-16 thomas fatal("%s: msgbuf_write", __func__);
628 8a35f56c 2022-07-16 thomas if (n == 0) {
629 8a35f56c 2022-07-16 thomas /* this pipe is dead, so remove the event handler */
630 8a35f56c 2022-07-16 thomas event_del(&iev->ev);
631 8a35f56c 2022-07-16 thomas event_loopexit(NULL);
632 8a35f56c 2022-07-16 thomas return;
633 8a35f56c 2022-07-16 thomas }
634 8a35f56c 2022-07-16 thomas }
635 8a35f56c 2022-07-16 thomas
636 8a35f56c 2022-07-16 thomas for (;;) {
637 8a35f56c 2022-07-16 thomas n = imsg_get(ibuf, &imsg);
638 8a35f56c 2022-07-16 thomas if (n == -1)
639 8a35f56c 2022-07-16 thomas fatal("%s: imsg_get", __func__);
640 8a35f56c 2022-07-16 thomas if (n == 0)
641 8a35f56c 2022-07-16 thomas break;
642 8a35f56c 2022-07-16 thomas
643 8a35f56c 2022-07-16 thomas #if DEBUG > 1
644 8a35f56c 2022-07-16 thomas log_debug("%s: %s %d got imsg %d peerid %d from %s %d",
645 8a35f56c 2022-07-16 thomas __func__, title, ps->ps_instance + 1,
646 8a35f56c 2022-07-16 thomas imsg.hdr.type, imsg.hdr.peerid, p->p_title, imsg.hdr.pid);
647 8a35f56c 2022-07-16 thomas #endif
648 8a35f56c 2022-07-16 thomas
649 8a35f56c 2022-07-16 thomas /*
650 8a35f56c 2022-07-16 thomas * Check the message with the program callback
651 8a35f56c 2022-07-16 thomas */
652 8a35f56c 2022-07-16 thomas if ((p->p_cb)(fd, p, &imsg) == 0) {
653 8a35f56c 2022-07-16 thomas /* Message was handled by the callback, continue */
654 8a35f56c 2022-07-16 thomas imsg_free(&imsg);
655 8a35f56c 2022-07-16 thomas continue;
656 8a35f56c 2022-07-16 thomas }
657 8a35f56c 2022-07-16 thomas
658 8a35f56c 2022-07-16 thomas /*
659 8a35f56c 2022-07-16 thomas * Generic message handling
660 8a35f56c 2022-07-16 thomas */
661 8a35f56c 2022-07-16 thomas switch (imsg.hdr.type) {
662 8a35f56c 2022-07-16 thomas case IMSG_CTL_VERBOSE:
663 8a35f56c 2022-07-16 thomas log_info("%s", __func__);
664 8a35f56c 2022-07-16 thomas IMSG_SIZE_CHECK(&imsg, &verbose);
665 8a35f56c 2022-07-16 thomas memcpy(&verbose, imsg.data, sizeof(verbose));
666 8a35f56c 2022-07-16 thomas log_setverbose(verbose);
667 8a35f56c 2022-07-16 thomas break;
668 8a35f56c 2022-07-16 thomas case IMSG_CTL_PROCFD:
669 8a35f56c 2022-07-16 thomas IMSG_SIZE_CHECK(&imsg, &pf);
670 8a35f56c 2022-07-16 thomas memcpy(&pf, imsg.data, sizeof(pf));
671 8a35f56c 2022-07-16 thomas proc_accept(ps, imsg.fd, pf.pf_procid,
672 8a35f56c 2022-07-16 thomas pf.pf_instance);
673 8a35f56c 2022-07-16 thomas break;
674 8a35f56c 2022-07-16 thomas default:
675 8a35f56c 2022-07-16 thomas log_warnx("%s: %s %d got invalid imsg %d peerid %d "
676 8a35f56c 2022-07-16 thomas "from %s %d",
677 8a35f56c 2022-07-16 thomas __func__, title, ps->ps_instance + 1,
678 8a35f56c 2022-07-16 thomas imsg.hdr.type, imsg.hdr.peerid,
679 8a35f56c 2022-07-16 thomas p->p_title, imsg.hdr.pid);
680 8a35f56c 2022-07-16 thomas }
681 8a35f56c 2022-07-16 thomas imsg_free(&imsg);
682 8a35f56c 2022-07-16 thomas }
683 8a35f56c 2022-07-16 thomas imsg_event_add(iev);
684 8a35f56c 2022-07-16 thomas }
685 8a35f56c 2022-07-16 thomas
686 8a35f56c 2022-07-16 thomas int
687 8a35f56c 2022-07-16 thomas proc_dispatch_null(int fd, struct privsep_proc *p, struct imsg *imsg)
688 8a35f56c 2022-07-16 thomas {
689 8a35f56c 2022-07-16 thomas return (-1);
690 8a35f56c 2022-07-16 thomas }
691 8a35f56c 2022-07-16 thomas
692 8a35f56c 2022-07-16 thomas /*
693 8a35f56c 2022-07-16 thomas * imsg helper functions
694 8a35f56c 2022-07-16 thomas */
695 8a35f56c 2022-07-16 thomas
696 8a35f56c 2022-07-16 thomas void
697 8a35f56c 2022-07-16 thomas imsg_event_add(struct imsgev *iev)
698 8a35f56c 2022-07-16 thomas {
699 8a35f56c 2022-07-16 thomas if (iev->handler == NULL) {
700 8a35f56c 2022-07-16 thomas imsg_flush(&iev->ibuf);
701 8a35f56c 2022-07-16 thomas return;
702 8a35f56c 2022-07-16 thomas }
703 8a35f56c 2022-07-16 thomas
704 8a35f56c 2022-07-16 thomas iev->events = EV_READ;
705 8a35f56c 2022-07-16 thomas if (iev->ibuf.w.queued)
706 8a35f56c 2022-07-16 thomas iev->events |= EV_WRITE;
707 8a35f56c 2022-07-16 thomas
708 8a35f56c 2022-07-16 thomas event_del(&iev->ev);
709 8a35f56c 2022-07-16 thomas event_set(&iev->ev, iev->ibuf.fd, iev->events, iev->handler, iev->data);
710 8a35f56c 2022-07-16 thomas event_add(&iev->ev, NULL);
711 8a35f56c 2022-07-16 thomas }
712 8a35f56c 2022-07-16 thomas
713 8a35f56c 2022-07-16 thomas int
714 8a35f56c 2022-07-16 thomas imsg_compose_event(struct imsgev *iev, uint16_t type, uint32_t peerid,
715 8a35f56c 2022-07-16 thomas pid_t pid, int fd, void *data, uint16_t datalen)
716 8a35f56c 2022-07-16 thomas {
717 8a35f56c 2022-07-16 thomas int ret;
718 8a35f56c 2022-07-16 thomas
719 8a35f56c 2022-07-16 thomas ret = imsg_compose(&iev->ibuf, type, peerid, pid, fd, data, datalen);
720 8a35f56c 2022-07-16 thomas if (ret == -1)
721 8a35f56c 2022-07-16 thomas return (ret);
722 8a35f56c 2022-07-16 thomas imsg_event_add(iev);
723 8a35f56c 2022-07-16 thomas return (ret);
724 8a35f56c 2022-07-16 thomas }
725 8a35f56c 2022-07-16 thomas
726 8a35f56c 2022-07-16 thomas int
727 8a35f56c 2022-07-16 thomas imsg_composev_event(struct imsgev *iev, uint16_t type, uint32_t peerid,
728 8a35f56c 2022-07-16 thomas pid_t pid, int fd, const struct iovec *iov, int iovcnt)
729 8a35f56c 2022-07-16 thomas {
730 8a35f56c 2022-07-16 thomas int ret;
731 8a35f56c 2022-07-16 thomas
732 8a35f56c 2022-07-16 thomas ret = imsg_composev(&iev->ibuf, type, peerid, pid, fd, iov, iovcnt);
733 8a35f56c 2022-07-16 thomas if (ret == -1)
734 8a35f56c 2022-07-16 thomas return (ret);
735 8a35f56c 2022-07-16 thomas imsg_event_add(iev);
736 8a35f56c 2022-07-16 thomas return (ret);
737 8a35f56c 2022-07-16 thomas }
738 8a35f56c 2022-07-16 thomas
739 8a35f56c 2022-07-16 thomas void
740 8a35f56c 2022-07-16 thomas proc_range(struct privsep *ps, enum privsep_procid id, int *n, int *m)
741 8a35f56c 2022-07-16 thomas {
742 8a35f56c 2022-07-16 thomas if (*n == -1) {
743 8a35f56c 2022-07-16 thomas /* Use a range of all target instances */
744 8a35f56c 2022-07-16 thomas *n = 0;
745 8a35f56c 2022-07-16 thomas *m = ps->ps_instances[id];
746 8a35f56c 2022-07-16 thomas } else {
747 8a35f56c 2022-07-16 thomas /* Use only a single slot of the specified peer process */
748 8a35f56c 2022-07-16 thomas *m = *n + 1;
749 8a35f56c 2022-07-16 thomas }
750 8a35f56c 2022-07-16 thomas }
751 8a35f56c 2022-07-16 thomas
752 8a35f56c 2022-07-16 thomas int
753 8a35f56c 2022-07-16 thomas proc_compose_imsg(struct privsep *ps, enum privsep_procid id, int n,
754 8a35f56c 2022-07-16 thomas uint16_t type, uint32_t peerid, int fd, void *data, uint16_t datalen)
755 8a35f56c 2022-07-16 thomas {
756 8a35f56c 2022-07-16 thomas int m;
757 8a35f56c 2022-07-16 thomas
758 8a35f56c 2022-07-16 thomas proc_range(ps, id, &n, &m);
759 8a35f56c 2022-07-16 thomas for (; n < m; n++) {
760 8a35f56c 2022-07-16 thomas if (imsg_compose_event(&ps->ps_ievs[id][n],
761 8a35f56c 2022-07-16 thomas type, peerid, ps->ps_instance + 1, fd, data, datalen) == -1)
762 8a35f56c 2022-07-16 thomas return (-1);
763 8a35f56c 2022-07-16 thomas }
764 8a35f56c 2022-07-16 thomas
765 8a35f56c 2022-07-16 thomas return (0);
766 8a35f56c 2022-07-16 thomas }
767 8a35f56c 2022-07-16 thomas
768 8a35f56c 2022-07-16 thomas int
769 8a35f56c 2022-07-16 thomas proc_compose(struct privsep *ps, enum privsep_procid id,
770 8a35f56c 2022-07-16 thomas uint16_t type, void *data, uint16_t datalen)
771 8a35f56c 2022-07-16 thomas {
772 8a35f56c 2022-07-16 thomas return (proc_compose_imsg(ps, id, -1, type, -1, -1, data, datalen));
773 8a35f56c 2022-07-16 thomas }
774 8a35f56c 2022-07-16 thomas
775 8a35f56c 2022-07-16 thomas int
776 8a35f56c 2022-07-16 thomas proc_composev_imsg(struct privsep *ps, enum privsep_procid id, int n,
777 8a35f56c 2022-07-16 thomas uint16_t type, uint32_t peerid, int fd, const struct iovec *iov, int iovcnt)
778 8a35f56c 2022-07-16 thomas {
779 8a35f56c 2022-07-16 thomas int m;
780 8a35f56c 2022-07-16 thomas
781 8a35f56c 2022-07-16 thomas proc_range(ps, id, &n, &m);
782 8a35f56c 2022-07-16 thomas for (; n < m; n++)
783 8a35f56c 2022-07-16 thomas if (imsg_composev_event(&ps->ps_ievs[id][n],
784 8a35f56c 2022-07-16 thomas type, peerid, ps->ps_instance + 1, fd, iov, iovcnt) == -1)
785 8a35f56c 2022-07-16 thomas return (-1);
786 8a35f56c 2022-07-16 thomas
787 8a35f56c 2022-07-16 thomas return (0);
788 8a35f56c 2022-07-16 thomas }
789 8a35f56c 2022-07-16 thomas
790 8a35f56c 2022-07-16 thomas int
791 8a35f56c 2022-07-16 thomas proc_composev(struct privsep *ps, enum privsep_procid id,
792 8a35f56c 2022-07-16 thomas uint16_t type, const struct iovec *iov, int iovcnt)
793 8a35f56c 2022-07-16 thomas {
794 8a35f56c 2022-07-16 thomas return (proc_composev_imsg(ps, id, -1, type, -1, -1, iov, iovcnt));
795 8a35f56c 2022-07-16 thomas }
796 8a35f56c 2022-07-16 thomas
797 8a35f56c 2022-07-16 thomas int
798 8a35f56c 2022-07-16 thomas proc_forward_imsg(struct privsep *ps, struct imsg *imsg,
799 8a35f56c 2022-07-16 thomas enum privsep_procid id, int n)
800 8a35f56c 2022-07-16 thomas {
801 8a35f56c 2022-07-16 thomas return (proc_compose_imsg(ps, id, n, imsg->hdr.type,
802 8a35f56c 2022-07-16 thomas imsg->hdr.peerid, imsg->fd, imsg->data, IMSG_DATA_SIZE(imsg)));
803 8a35f56c 2022-07-16 thomas }
804 8a35f56c 2022-07-16 thomas
805 8a35f56c 2022-07-16 thomas struct imsgbuf *
806 8a35f56c 2022-07-16 thomas proc_ibuf(struct privsep *ps, enum privsep_procid id, int n)
807 8a35f56c 2022-07-16 thomas {
808 8a35f56c 2022-07-16 thomas int m;
809 8a35f56c 2022-07-16 thomas
810 8a35f56c 2022-07-16 thomas proc_range(ps, id, &n, &m);
811 8a35f56c 2022-07-16 thomas return (&ps->ps_ievs[id][n].ibuf);
812 8a35f56c 2022-07-16 thomas }
813 8a35f56c 2022-07-16 thomas
814 8a35f56c 2022-07-16 thomas struct imsgev *
815 8a35f56c 2022-07-16 thomas proc_iev(struct privsep *ps, enum privsep_procid id, int n)
816 8a35f56c 2022-07-16 thomas {
817 8a35f56c 2022-07-16 thomas int m;
818 8a35f56c 2022-07-16 thomas
819 8a35f56c 2022-07-16 thomas proc_range(ps, id, &n, &m);
820 8a35f56c 2022-07-16 thomas return (&ps->ps_ievs[id][n]);
821 8a35f56c 2022-07-16 thomas }
822 8a35f56c 2022-07-16 thomas
823 8a35f56c 2022-07-16 thomas /* This function should only be called with care as it breaks async I/O */
824 8a35f56c 2022-07-16 thomas int
825 8a35f56c 2022-07-16 thomas proc_flush_imsg(struct privsep *ps, enum privsep_procid id, int n)
826 8a35f56c 2022-07-16 thomas {
827 8a35f56c 2022-07-16 thomas struct imsgbuf *ibuf;
828 8a35f56c 2022-07-16 thomas int m, ret = 0;
829 8a35f56c 2022-07-16 thomas
830 8a35f56c 2022-07-16 thomas proc_range(ps, id, &n, &m);
831 8a35f56c 2022-07-16 thomas for (; n < m; n++) {
832 8a35f56c 2022-07-16 thomas ibuf = proc_ibuf(ps, id, n);
833 8a35f56c 2022-07-16 thomas if (ibuf == NULL)
834 8a35f56c 2022-07-16 thomas return (-1);
835 8a35f56c 2022-07-16 thomas do {
836 8a35f56c 2022-07-16 thomas ret = imsg_flush(ibuf);
837 8a35f56c 2022-07-16 thomas } while (ret == -1 && errno == EAGAIN);
838 8a35f56c 2022-07-16 thomas if (ret == -1)
839 8a35f56c 2022-07-16 thomas break;
840 8a35f56c 2022-07-16 thomas imsg_event_add(&ps->ps_ievs[id][n]);
841 8a35f56c 2022-07-16 thomas }
842 8a35f56c 2022-07-16 thomas
843 8a35f56c 2022-07-16 thomas return (ret);
844 8a35f56c 2022-07-16 thomas }