Blame


1 d93ecf7d 2022-12-14 stsp /*
2 d93ecf7d 2022-12-14 stsp * Copyright (c) 2022 Stefan Sperling <stsp@openbsd.org>
3 d93ecf7d 2022-12-14 stsp *
4 d93ecf7d 2022-12-14 stsp * Permission to use, copy, modify, and distribute this software for any
5 d93ecf7d 2022-12-14 stsp * purpose with or without fee is hereby granted, provided that the above
6 d93ecf7d 2022-12-14 stsp * copyright notice and this permission notice appear in all copies.
7 d93ecf7d 2022-12-14 stsp *
8 d93ecf7d 2022-12-14 stsp * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 d93ecf7d 2022-12-14 stsp * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 d93ecf7d 2022-12-14 stsp * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 d93ecf7d 2022-12-14 stsp * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 d93ecf7d 2022-12-14 stsp * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 d93ecf7d 2022-12-14 stsp * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 d93ecf7d 2022-12-14 stsp * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 d93ecf7d 2022-12-14 stsp */
16 d93ecf7d 2022-12-14 stsp
17 d93ecf7d 2022-12-14 stsp #include <sys/types.h>
18 d93ecf7d 2022-12-14 stsp #include <sys/queue.h>
19 d93ecf7d 2022-12-14 stsp #include <sys/socket.h>
20 d93ecf7d 2022-12-14 stsp #include <sys/uio.h>
21 d93ecf7d 2022-12-14 stsp
22 d93ecf7d 2022-12-14 stsp #include <errno.h>
23 d93ecf7d 2022-12-14 stsp #include <event.h>
24 d93ecf7d 2022-12-14 stsp #include <siphash.h>
25 d93ecf7d 2022-12-14 stsp #include <stdint.h>
26 d93ecf7d 2022-12-14 stsp #include <stdio.h>
27 d93ecf7d 2022-12-14 stsp #include <stdlib.h>
28 d93ecf7d 2022-12-14 stsp #include <string.h>
29 d93ecf7d 2022-12-14 stsp #include <imsg.h>
30 d93ecf7d 2022-12-14 stsp #include <limits.h>
31 d93ecf7d 2022-12-14 stsp #include <sha1.h>
32 5822e79e 2023-02-23 op #include <sha2.h>
33 d93ecf7d 2022-12-14 stsp #include <signal.h>
34 d93ecf7d 2022-12-14 stsp #include <unistd.h>
35 d93ecf7d 2022-12-14 stsp
36 d93ecf7d 2022-12-14 stsp #include "got_error.h"
37 9afa3de2 2023-04-04 stsp #include "got_path.h"
38 d93ecf7d 2022-12-14 stsp
39 d93ecf7d 2022-12-14 stsp #include "gotd.h"
40 d93ecf7d 2022-12-14 stsp #include "log.h"
41 d93ecf7d 2022-12-14 stsp #include "listen.h"
42 d93ecf7d 2022-12-14 stsp
43 d93ecf7d 2022-12-14 stsp #ifndef nitems
44 d93ecf7d 2022-12-14 stsp #define nitems(_a) (sizeof((_a)) / sizeof((_a)[0]))
45 d93ecf7d 2022-12-14 stsp #endif
46 d93ecf7d 2022-12-14 stsp
47 d93ecf7d 2022-12-14 stsp struct gotd_listen_client {
48 d93ecf7d 2022-12-14 stsp STAILQ_ENTRY(gotd_listen_client) entry;
49 d93ecf7d 2022-12-14 stsp uint32_t id;
50 d93ecf7d 2022-12-14 stsp int fd;
51 7a0564e3 2022-12-30 stsp uid_t euid;
52 d93ecf7d 2022-12-14 stsp };
53 d93ecf7d 2022-12-14 stsp STAILQ_HEAD(gotd_listen_clients, gotd_listen_client);
54 d93ecf7d 2022-12-14 stsp
55 d93ecf7d 2022-12-14 stsp static struct gotd_listen_clients gotd_listen_clients[GOTD_CLIENT_TABLE_SIZE];
56 d93ecf7d 2022-12-14 stsp static SIPHASH_KEY clients_hash_key;
57 d93ecf7d 2022-12-14 stsp static volatile int listen_client_cnt;
58 d93ecf7d 2022-12-14 stsp static int inflight;
59 d93ecf7d 2022-12-14 stsp
60 7a0564e3 2022-12-30 stsp struct gotd_uid_connection_counter {
61 7a0564e3 2022-12-30 stsp STAILQ_ENTRY(gotd_uid_connection_counter) entry;
62 7a0564e3 2022-12-30 stsp uid_t euid;
63 7a0564e3 2022-12-30 stsp int nconnections;
64 7a0564e3 2022-12-30 stsp };
65 7a0564e3 2022-12-30 stsp STAILQ_HEAD(gotd_client_uids, gotd_uid_connection_counter);
66 7a0564e3 2022-12-30 stsp static struct gotd_client_uids gotd_client_uids[GOTD_CLIENT_TABLE_SIZE];
67 7a0564e3 2022-12-30 stsp static SIPHASH_KEY uid_hash_key;
68 7a0564e3 2022-12-30 stsp
69 d93ecf7d 2022-12-14 stsp static struct {
70 d93ecf7d 2022-12-14 stsp pid_t pid;
71 d93ecf7d 2022-12-14 stsp const char *title;
72 d93ecf7d 2022-12-14 stsp int fd;
73 d93ecf7d 2022-12-14 stsp struct gotd_imsgev iev;
74 d93ecf7d 2022-12-14 stsp struct gotd_imsgev pause;
75 40b85cca 2023-01-03 stsp struct gotd_uid_connection_limit *connection_limits;
76 40b85cca 2023-01-03 stsp size_t nconnection_limits;
77 d93ecf7d 2022-12-14 stsp } gotd_listen;
78 d93ecf7d 2022-12-14 stsp
79 d93ecf7d 2022-12-14 stsp static int inflight;
80 d93ecf7d 2022-12-14 stsp
81 d93ecf7d 2022-12-14 stsp static void listen_shutdown(void);
82 d93ecf7d 2022-12-14 stsp
83 d93ecf7d 2022-12-14 stsp static void
84 d93ecf7d 2022-12-14 stsp listen_sighdlr(int sig, short event, void *arg)
85 d93ecf7d 2022-12-14 stsp {
86 d93ecf7d 2022-12-14 stsp /*
87 d93ecf7d 2022-12-14 stsp * Normal signal handler rules don't apply because libevent
88 d93ecf7d 2022-12-14 stsp * decouples for us.
89 d93ecf7d 2022-12-14 stsp */
90 d93ecf7d 2022-12-14 stsp
91 d93ecf7d 2022-12-14 stsp switch (sig) {
92 d93ecf7d 2022-12-14 stsp case SIGHUP:
93 d93ecf7d 2022-12-14 stsp break;
94 d93ecf7d 2022-12-14 stsp case SIGUSR1:
95 d93ecf7d 2022-12-14 stsp break;
96 d93ecf7d 2022-12-14 stsp case SIGTERM:
97 d93ecf7d 2022-12-14 stsp case SIGINT:
98 d93ecf7d 2022-12-14 stsp listen_shutdown();
99 d93ecf7d 2022-12-14 stsp /* NOTREACHED */
100 d93ecf7d 2022-12-14 stsp break;
101 d93ecf7d 2022-12-14 stsp default:
102 d93ecf7d 2022-12-14 stsp fatalx("unexpected signal");
103 d93ecf7d 2022-12-14 stsp }
104 d93ecf7d 2022-12-14 stsp }
105 d93ecf7d 2022-12-14 stsp
106 d93ecf7d 2022-12-14 stsp static uint64_t
107 d93ecf7d 2022-12-14 stsp client_hash(uint32_t client_id)
108 d93ecf7d 2022-12-14 stsp {
109 d93ecf7d 2022-12-14 stsp return SipHash24(&clients_hash_key, &client_id, sizeof(client_id));
110 d93ecf7d 2022-12-14 stsp }
111 d93ecf7d 2022-12-14 stsp
112 d93ecf7d 2022-12-14 stsp static void
113 d93ecf7d 2022-12-14 stsp add_client(struct gotd_listen_client *client)
114 d93ecf7d 2022-12-14 stsp {
115 d93ecf7d 2022-12-14 stsp uint64_t slot = client_hash(client->id) % nitems(gotd_listen_clients);
116 d93ecf7d 2022-12-14 stsp STAILQ_INSERT_HEAD(&gotd_listen_clients[slot], client, entry);
117 d93ecf7d 2022-12-14 stsp listen_client_cnt++;
118 d93ecf7d 2022-12-14 stsp }
119 d93ecf7d 2022-12-14 stsp
120 d93ecf7d 2022-12-14 stsp static struct gotd_listen_client *
121 d93ecf7d 2022-12-14 stsp find_client(uint32_t client_id)
122 d93ecf7d 2022-12-14 stsp {
123 d93ecf7d 2022-12-14 stsp uint64_t slot;
124 d93ecf7d 2022-12-14 stsp struct gotd_listen_client *c;
125 d93ecf7d 2022-12-14 stsp
126 d93ecf7d 2022-12-14 stsp slot = client_hash(client_id) % nitems(gotd_listen_clients);
127 d93ecf7d 2022-12-14 stsp STAILQ_FOREACH(c, &gotd_listen_clients[slot], entry) {
128 d93ecf7d 2022-12-14 stsp if (c->id == client_id)
129 d93ecf7d 2022-12-14 stsp return c;
130 d93ecf7d 2022-12-14 stsp }
131 d93ecf7d 2022-12-14 stsp
132 d93ecf7d 2022-12-14 stsp return NULL;
133 d93ecf7d 2022-12-14 stsp }
134 d93ecf7d 2022-12-14 stsp
135 d93ecf7d 2022-12-14 stsp static uint32_t
136 d93ecf7d 2022-12-14 stsp get_client_id(void)
137 d93ecf7d 2022-12-14 stsp {
138 d93ecf7d 2022-12-14 stsp int duplicate = 0;
139 d93ecf7d 2022-12-14 stsp uint32_t id;
140 d93ecf7d 2022-12-14 stsp
141 d93ecf7d 2022-12-14 stsp do {
142 d93ecf7d 2022-12-14 stsp id = arc4random();
143 d93ecf7d 2022-12-14 stsp duplicate = (find_client(id) != NULL);
144 d93ecf7d 2022-12-14 stsp } while (duplicate || id == 0);
145 d93ecf7d 2022-12-14 stsp
146 d93ecf7d 2022-12-14 stsp return id;
147 7a0564e3 2022-12-30 stsp }
148 7a0564e3 2022-12-30 stsp
149 7a0564e3 2022-12-30 stsp static uint64_t
150 7a0564e3 2022-12-30 stsp uid_hash(uid_t euid)
151 7a0564e3 2022-12-30 stsp {
152 7a0564e3 2022-12-30 stsp return SipHash24(&uid_hash_key, &euid, sizeof(euid));
153 7a0564e3 2022-12-30 stsp }
154 7a0564e3 2022-12-30 stsp
155 7a0564e3 2022-12-30 stsp static void
156 7a0564e3 2022-12-30 stsp add_uid_connection_counter(struct gotd_uid_connection_counter *counter)
157 7a0564e3 2022-12-30 stsp {
158 7a0564e3 2022-12-30 stsp uint64_t slot = uid_hash(counter->euid) % nitems(gotd_client_uids);
159 7a0564e3 2022-12-30 stsp STAILQ_INSERT_HEAD(&gotd_client_uids[slot], counter, entry);
160 7a0564e3 2022-12-30 stsp }
161 7a0564e3 2022-12-30 stsp
162 7a0564e3 2022-12-30 stsp static void
163 7a0564e3 2022-12-30 stsp remove_uid_connection_counter(struct gotd_uid_connection_counter *counter)
164 7a0564e3 2022-12-30 stsp {
165 7a0564e3 2022-12-30 stsp uint64_t slot = uid_hash(counter->euid) % nitems(gotd_client_uids);
166 7a0564e3 2022-12-30 stsp STAILQ_REMOVE(&gotd_client_uids[slot], counter,
167 7a0564e3 2022-12-30 stsp gotd_uid_connection_counter, entry);
168 7a0564e3 2022-12-30 stsp }
169 7a0564e3 2022-12-30 stsp
170 7a0564e3 2022-12-30 stsp static struct gotd_uid_connection_counter *
171 7a0564e3 2022-12-30 stsp find_uid_connection_counter(uid_t euid)
172 7a0564e3 2022-12-30 stsp {
173 7a0564e3 2022-12-30 stsp uint64_t slot;
174 7a0564e3 2022-12-30 stsp struct gotd_uid_connection_counter *c;
175 7a0564e3 2022-12-30 stsp
176 7a0564e3 2022-12-30 stsp slot = uid_hash(euid) % nitems(gotd_client_uids);
177 7a0564e3 2022-12-30 stsp STAILQ_FOREACH(c, &gotd_client_uids[slot], entry) {
178 7a0564e3 2022-12-30 stsp if (c->euid == euid)
179 7a0564e3 2022-12-30 stsp return c;
180 40b85cca 2023-01-03 stsp }
181 40b85cca 2023-01-03 stsp
182 40b85cca 2023-01-03 stsp return NULL;
183 40b85cca 2023-01-03 stsp }
184 40b85cca 2023-01-03 stsp
185 40b85cca 2023-01-03 stsp struct gotd_uid_connection_limit *
186 40b85cca 2023-01-03 stsp gotd_find_uid_connection_limit(struct gotd_uid_connection_limit *limits,
187 40b85cca 2023-01-03 stsp size_t nlimits, uid_t uid)
188 40b85cca 2023-01-03 stsp {
189 40b85cca 2023-01-03 stsp /* This array is always sorted to allow for binary search. */
190 40b85cca 2023-01-03 stsp int i, left = 0, right = nlimits - 1;
191 40b85cca 2023-01-03 stsp
192 40b85cca 2023-01-03 stsp while (left <= right) {
193 40b85cca 2023-01-03 stsp i = ((left + right) / 2);
194 40b85cca 2023-01-03 stsp if (limits[i].uid == uid)
195 40b85cca 2023-01-03 stsp return &limits[i];
196 40b85cca 2023-01-03 stsp if (limits[i].uid > uid)
197 40b85cca 2023-01-03 stsp left = i + 1;
198 40b85cca 2023-01-03 stsp else
199 40b85cca 2023-01-03 stsp right = i - 1;
200 7a0564e3 2022-12-30 stsp }
201 7a0564e3 2022-12-30 stsp
202 7a0564e3 2022-12-30 stsp return NULL;
203 d93ecf7d 2022-12-14 stsp }
204 d93ecf7d 2022-12-14 stsp
205 d93ecf7d 2022-12-14 stsp static const struct got_error *
206 d93ecf7d 2022-12-14 stsp disconnect(struct gotd_listen_client *client)
207 d93ecf7d 2022-12-14 stsp {
208 7a0564e3 2022-12-30 stsp struct gotd_uid_connection_counter *counter;
209 d93ecf7d 2022-12-14 stsp uint64_t slot;
210 d93ecf7d 2022-12-14 stsp int client_fd;
211 d93ecf7d 2022-12-14 stsp
212 d93ecf7d 2022-12-14 stsp log_debug("client on fd %d disconnecting", client->fd);
213 d93ecf7d 2022-12-14 stsp
214 d93ecf7d 2022-12-14 stsp slot = client_hash(client->id) % nitems(gotd_listen_clients);
215 d93ecf7d 2022-12-14 stsp STAILQ_REMOVE(&gotd_listen_clients[slot], client,
216 d93ecf7d 2022-12-14 stsp gotd_listen_client, entry);
217 7a0564e3 2022-12-30 stsp
218 7a0564e3 2022-12-30 stsp counter = find_uid_connection_counter(client->euid);
219 7a0564e3 2022-12-30 stsp if (counter) {
220 7a0564e3 2022-12-30 stsp if (counter->nconnections > 0)
221 7a0564e3 2022-12-30 stsp counter->nconnections--;
222 7a0564e3 2022-12-30 stsp if (counter->nconnections == 0) {
223 7a0564e3 2022-12-30 stsp remove_uid_connection_counter(counter);
224 7a0564e3 2022-12-30 stsp free(counter);
225 7a0564e3 2022-12-30 stsp }
226 7a0564e3 2022-12-30 stsp }
227 7a0564e3 2022-12-30 stsp
228 d93ecf7d 2022-12-14 stsp client_fd = client->fd;
229 d93ecf7d 2022-12-14 stsp free(client);
230 d93ecf7d 2022-12-14 stsp inflight--;
231 d93ecf7d 2022-12-14 stsp listen_client_cnt--;
232 d93ecf7d 2022-12-14 stsp if (close(client_fd) == -1)
233 d93ecf7d 2022-12-14 stsp return got_error_from_errno("close");
234 d93ecf7d 2022-12-14 stsp
235 d93ecf7d 2022-12-14 stsp return NULL;
236 d93ecf7d 2022-12-14 stsp }
237 d93ecf7d 2022-12-14 stsp
238 d93ecf7d 2022-12-14 stsp static int
239 d93ecf7d 2022-12-14 stsp accept_reserve(int fd, struct sockaddr *addr, socklen_t *addrlen,
240 d93ecf7d 2022-12-14 stsp int reserve, volatile int *counter)
241 d93ecf7d 2022-12-14 stsp {
242 d93ecf7d 2022-12-14 stsp int ret;
243 d93ecf7d 2022-12-14 stsp
244 d93ecf7d 2022-12-14 stsp if (getdtablecount() + reserve +
245 d93ecf7d 2022-12-14 stsp ((*counter + 1) * GOTD_FD_NEEDED) >= getdtablesize()) {
246 d93ecf7d 2022-12-14 stsp log_debug("inflight fds exceeded");
247 d93ecf7d 2022-12-14 stsp errno = EMFILE;
248 d93ecf7d 2022-12-14 stsp return -1;
249 d93ecf7d 2022-12-14 stsp }
250 d93ecf7d 2022-12-14 stsp
251 d93ecf7d 2022-12-14 stsp if ((ret = accept4(fd, addr, addrlen,
252 d93ecf7d 2022-12-14 stsp SOCK_NONBLOCK | SOCK_CLOEXEC)) > -1) {
253 d93ecf7d 2022-12-14 stsp (*counter)++;
254 d93ecf7d 2022-12-14 stsp }
255 d93ecf7d 2022-12-14 stsp
256 d93ecf7d 2022-12-14 stsp return ret;
257 d93ecf7d 2022-12-14 stsp }
258 d93ecf7d 2022-12-14 stsp
259 d93ecf7d 2022-12-14 stsp static void
260 d93ecf7d 2022-12-14 stsp gotd_accept_paused(int fd, short event, void *arg)
261 d93ecf7d 2022-12-14 stsp {
262 d93ecf7d 2022-12-14 stsp event_add(&gotd_listen.iev.ev, NULL);
263 d93ecf7d 2022-12-14 stsp }
264 d93ecf7d 2022-12-14 stsp
265 d93ecf7d 2022-12-14 stsp static void
266 d93ecf7d 2022-12-14 stsp gotd_accept(int fd, short event, void *arg)
267 d93ecf7d 2022-12-14 stsp {
268 d93ecf7d 2022-12-14 stsp struct gotd_imsgev *iev = arg;
269 d93ecf7d 2022-12-14 stsp struct sockaddr_storage ss;
270 d93ecf7d 2022-12-14 stsp struct timeval backoff;
271 d93ecf7d 2022-12-14 stsp socklen_t len;
272 d93ecf7d 2022-12-14 stsp int s = -1;
273 d93ecf7d 2022-12-14 stsp struct gotd_listen_client *client = NULL;
274 7a0564e3 2022-12-30 stsp struct gotd_uid_connection_counter *counter = NULL;
275 d93ecf7d 2022-12-14 stsp struct gotd_imsg_connect iconn;
276 365cf0f3 2022-12-29 stsp uid_t euid;
277 365cf0f3 2022-12-29 stsp gid_t egid;
278 d93ecf7d 2022-12-14 stsp
279 d93ecf7d 2022-12-14 stsp backoff.tv_sec = 1;
280 d93ecf7d 2022-12-14 stsp backoff.tv_usec = 0;
281 d93ecf7d 2022-12-14 stsp
282 d93ecf7d 2022-12-14 stsp if (event_add(&gotd_listen.iev.ev, NULL) == -1) {
283 d93ecf7d 2022-12-14 stsp log_warn("event_add");
284 d93ecf7d 2022-12-14 stsp return;
285 d93ecf7d 2022-12-14 stsp }
286 d93ecf7d 2022-12-14 stsp if (event & EV_TIMEOUT)
287 d93ecf7d 2022-12-14 stsp return;
288 d93ecf7d 2022-12-14 stsp
289 d93ecf7d 2022-12-14 stsp len = sizeof(ss);
290 d93ecf7d 2022-12-14 stsp
291 d93ecf7d 2022-12-14 stsp /* Other backoff conditions apart from EMFILE/ENFILE? */
292 d93ecf7d 2022-12-14 stsp s = accept_reserve(fd, (struct sockaddr *)&ss, &len, GOTD_FD_RESERVE,
293 d93ecf7d 2022-12-14 stsp &inflight);
294 d93ecf7d 2022-12-14 stsp if (s == -1) {
295 d93ecf7d 2022-12-14 stsp switch (errno) {
296 d93ecf7d 2022-12-14 stsp case EINTR:
297 d93ecf7d 2022-12-14 stsp case EWOULDBLOCK:
298 d93ecf7d 2022-12-14 stsp case ECONNABORTED:
299 d93ecf7d 2022-12-14 stsp return;
300 d93ecf7d 2022-12-14 stsp case EMFILE:
301 d93ecf7d 2022-12-14 stsp case ENFILE:
302 d93ecf7d 2022-12-14 stsp event_del(&gotd_listen.iev.ev);
303 d93ecf7d 2022-12-14 stsp evtimer_add(&gotd_listen.pause.ev, &backoff);
304 d93ecf7d 2022-12-14 stsp return;
305 d93ecf7d 2022-12-14 stsp default:
306 d93ecf7d 2022-12-14 stsp log_warn("accept");
307 d93ecf7d 2022-12-14 stsp return;
308 d93ecf7d 2022-12-14 stsp }
309 d93ecf7d 2022-12-14 stsp }
310 d93ecf7d 2022-12-14 stsp
311 d93ecf7d 2022-12-14 stsp if (listen_client_cnt >= GOTD_MAXCLIENTS)
312 365cf0f3 2022-12-29 stsp goto err;
313 365cf0f3 2022-12-29 stsp
314 365cf0f3 2022-12-29 stsp if (getpeereid(s, &euid, &egid) == -1) {
315 365cf0f3 2022-12-29 stsp log_warn("getpeerid");
316 d93ecf7d 2022-12-14 stsp goto err;
317 365cf0f3 2022-12-29 stsp }
318 d93ecf7d 2022-12-14 stsp
319 7a0564e3 2022-12-30 stsp counter = find_uid_connection_counter(euid);
320 7a0564e3 2022-12-30 stsp if (counter == NULL) {
321 7a0564e3 2022-12-30 stsp counter = calloc(1, sizeof(*counter));
322 7a0564e3 2022-12-30 stsp if (counter == NULL) {
323 7a0564e3 2022-12-30 stsp log_warn("%s: calloc", __func__);
324 7a0564e3 2022-12-30 stsp goto err;
325 7a0564e3 2022-12-30 stsp }
326 7a0564e3 2022-12-30 stsp counter->euid = euid;
327 7a0564e3 2022-12-30 stsp counter->nconnections = 1;
328 7a0564e3 2022-12-30 stsp add_uid_connection_counter(counter);
329 7a0564e3 2022-12-30 stsp } else {
330 40b85cca 2023-01-03 stsp int max_connections = GOTD_MAX_CONN_PER_UID;
331 40b85cca 2023-01-03 stsp struct gotd_uid_connection_limit *limit;
332 40b85cca 2023-01-03 stsp
333 40b85cca 2023-01-03 stsp limit = gotd_find_uid_connection_limit(
334 40b85cca 2023-01-03 stsp gotd_listen.connection_limits,
335 40b85cca 2023-01-03 stsp gotd_listen.nconnection_limits, euid);
336 40b85cca 2023-01-03 stsp if (limit)
337 40b85cca 2023-01-03 stsp max_connections = limit->max_connections;
338 40b85cca 2023-01-03 stsp
339 40b85cca 2023-01-03 stsp if (counter->nconnections >= max_connections) {
340 7a0564e3 2022-12-30 stsp log_warnx("maximum connections exceeded for uid %d",
341 7a0564e3 2022-12-30 stsp euid);
342 7a0564e3 2022-12-30 stsp goto err;
343 7a0564e3 2022-12-30 stsp }
344 7a0564e3 2022-12-30 stsp counter->nconnections++;
345 7a0564e3 2022-12-30 stsp }
346 7a0564e3 2022-12-30 stsp
347 d93ecf7d 2022-12-14 stsp client = calloc(1, sizeof(*client));
348 d93ecf7d 2022-12-14 stsp if (client == NULL) {
349 d93ecf7d 2022-12-14 stsp log_warn("%s: calloc", __func__);
350 d93ecf7d 2022-12-14 stsp goto err;
351 d93ecf7d 2022-12-14 stsp }
352 d93ecf7d 2022-12-14 stsp client->id = get_client_id();
353 d93ecf7d 2022-12-14 stsp client->fd = s;
354 7a0564e3 2022-12-30 stsp client->euid = euid;
355 d93ecf7d 2022-12-14 stsp s = -1;
356 d93ecf7d 2022-12-14 stsp add_client(client);
357 365cf0f3 2022-12-29 stsp log_debug("%s: new client connected on fd %d uid %d gid %d", __func__,
358 365cf0f3 2022-12-29 stsp client->fd, euid, egid);
359 d93ecf7d 2022-12-14 stsp
360 d93ecf7d 2022-12-14 stsp memset(&iconn, 0, sizeof(iconn));
361 d93ecf7d 2022-12-14 stsp iconn.client_id = client->id;
362 365cf0f3 2022-12-29 stsp iconn.euid = euid;
363 365cf0f3 2022-12-29 stsp iconn.egid = egid;
364 d93ecf7d 2022-12-14 stsp s = dup(client->fd);
365 d93ecf7d 2022-12-14 stsp if (s == -1) {
366 d93ecf7d 2022-12-14 stsp log_warn("%s: dup", __func__);
367 d93ecf7d 2022-12-14 stsp goto err;
368 d93ecf7d 2022-12-14 stsp }
369 d93ecf7d 2022-12-14 stsp if (gotd_imsg_compose_event(iev, GOTD_IMSG_CONNECT, PROC_LISTEN, s,
370 d93ecf7d 2022-12-14 stsp &iconn, sizeof(iconn)) == -1) {
371 d93ecf7d 2022-12-14 stsp log_warn("imsg compose CONNECT");
372 d93ecf7d 2022-12-14 stsp goto err;
373 d93ecf7d 2022-12-14 stsp }
374 d93ecf7d 2022-12-14 stsp
375 d93ecf7d 2022-12-14 stsp return;
376 d93ecf7d 2022-12-14 stsp err:
377 d93ecf7d 2022-12-14 stsp inflight--;
378 d93ecf7d 2022-12-14 stsp if (client)
379 d93ecf7d 2022-12-14 stsp disconnect(client);
380 d93ecf7d 2022-12-14 stsp if (s != -1)
381 d93ecf7d 2022-12-14 stsp close(s);
382 d93ecf7d 2022-12-14 stsp }
383 d93ecf7d 2022-12-14 stsp
384 d93ecf7d 2022-12-14 stsp static const struct got_error *
385 d93ecf7d 2022-12-14 stsp recv_disconnect(struct imsg *imsg)
386 d93ecf7d 2022-12-14 stsp {
387 d93ecf7d 2022-12-14 stsp struct gotd_imsg_disconnect idisconnect;
388 d93ecf7d 2022-12-14 stsp size_t datalen;
389 d93ecf7d 2022-12-14 stsp struct gotd_listen_client *client = NULL;
390 d93ecf7d 2022-12-14 stsp
391 d93ecf7d 2022-12-14 stsp datalen = imsg->hdr.len - IMSG_HEADER_SIZE;
392 d93ecf7d 2022-12-14 stsp if (datalen != sizeof(idisconnect))
393 d93ecf7d 2022-12-14 stsp return got_error(GOT_ERR_PRIVSEP_LEN);
394 d93ecf7d 2022-12-14 stsp memcpy(&idisconnect, imsg->data, sizeof(idisconnect));
395 d93ecf7d 2022-12-14 stsp
396 d93ecf7d 2022-12-14 stsp log_debug("client disconnecting");
397 d93ecf7d 2022-12-14 stsp
398 d93ecf7d 2022-12-14 stsp client = find_client(idisconnect.client_id);
399 d93ecf7d 2022-12-14 stsp if (client == NULL)
400 d93ecf7d 2022-12-14 stsp return got_error(GOT_ERR_CLIENT_ID);
401 d93ecf7d 2022-12-14 stsp
402 d93ecf7d 2022-12-14 stsp return disconnect(client);
403 d93ecf7d 2022-12-14 stsp }
404 d93ecf7d 2022-12-14 stsp
405 d93ecf7d 2022-12-14 stsp static void
406 d93ecf7d 2022-12-14 stsp listen_dispatch(int fd, short event, void *arg)
407 d93ecf7d 2022-12-14 stsp {
408 d93ecf7d 2022-12-14 stsp const struct got_error *err = NULL;
409 d93ecf7d 2022-12-14 stsp struct gotd_imsgev *iev = arg;
410 d93ecf7d 2022-12-14 stsp struct imsgbuf *ibuf = &iev->ibuf;
411 d93ecf7d 2022-12-14 stsp struct imsg imsg;
412 d93ecf7d 2022-12-14 stsp ssize_t n;
413 d93ecf7d 2022-12-14 stsp int shut = 0;
414 d93ecf7d 2022-12-14 stsp
415 d93ecf7d 2022-12-14 stsp if (event & EV_READ) {
416 d93ecf7d 2022-12-14 stsp if ((n = imsg_read(ibuf)) == -1 && errno != EAGAIN)
417 d93ecf7d 2022-12-14 stsp fatal("imsg_read error");
418 d93ecf7d 2022-12-14 stsp if (n == 0) /* Connection closed. */
419 d93ecf7d 2022-12-14 stsp shut = 1;
420 d93ecf7d 2022-12-14 stsp }
421 d93ecf7d 2022-12-14 stsp
422 d93ecf7d 2022-12-14 stsp if (event & EV_WRITE) {
423 d93ecf7d 2022-12-14 stsp n = msgbuf_write(&ibuf->w);
424 d93ecf7d 2022-12-14 stsp if (n == -1 && errno != EAGAIN)
425 d93ecf7d 2022-12-14 stsp fatal("msgbuf_write");
426 d93ecf7d 2022-12-14 stsp if (n == 0) /* Connection closed. */
427 d93ecf7d 2022-12-14 stsp shut = 1;
428 d93ecf7d 2022-12-14 stsp }
429 d93ecf7d 2022-12-14 stsp
430 d93ecf7d 2022-12-14 stsp for (;;) {
431 d93ecf7d 2022-12-14 stsp if ((n = imsg_get(ibuf, &imsg)) == -1)
432 d93ecf7d 2022-12-14 stsp fatal("%s: imsg_get", __func__);
433 d93ecf7d 2022-12-14 stsp if (n == 0) /* No more messages. */
434 d93ecf7d 2022-12-14 stsp break;
435 d93ecf7d 2022-12-14 stsp
436 d93ecf7d 2022-12-14 stsp switch (imsg.hdr.type) {
437 d93ecf7d 2022-12-14 stsp case GOTD_IMSG_DISCONNECT:
438 d93ecf7d 2022-12-14 stsp err = recv_disconnect(&imsg);
439 d93ecf7d 2022-12-14 stsp if (err)
440 2ec74a9e 2023-02-08 op log_warnx("disconnect: %s", err->msg);
441 d93ecf7d 2022-12-14 stsp break;
442 d93ecf7d 2022-12-14 stsp default:
443 2ec74a9e 2023-02-08 op log_debug("unexpected imsg %d", imsg.hdr.type);
444 d93ecf7d 2022-12-14 stsp break;
445 d93ecf7d 2022-12-14 stsp }
446 d93ecf7d 2022-12-14 stsp
447 d93ecf7d 2022-12-14 stsp imsg_free(&imsg);
448 d93ecf7d 2022-12-14 stsp }
449 d93ecf7d 2022-12-14 stsp
450 d93ecf7d 2022-12-14 stsp if (!shut) {
451 d93ecf7d 2022-12-14 stsp gotd_imsg_event_add(iev);
452 d93ecf7d 2022-12-14 stsp } else {
453 d93ecf7d 2022-12-14 stsp /* This pipe is dead. Remove its event handler */
454 d93ecf7d 2022-12-14 stsp event_del(&iev->ev);
455 d93ecf7d 2022-12-14 stsp event_loopexit(NULL);
456 d93ecf7d 2022-12-14 stsp }
457 d93ecf7d 2022-12-14 stsp }
458 d93ecf7d 2022-12-14 stsp
459 d93ecf7d 2022-12-14 stsp void
460 40b85cca 2023-01-03 stsp listen_main(const char *title, int gotd_socket,
461 40b85cca 2023-01-03 stsp struct gotd_uid_connection_limit *connection_limits,
462 40b85cca 2023-01-03 stsp size_t nconnection_limits)
463 d93ecf7d 2022-12-14 stsp {
464 d93ecf7d 2022-12-14 stsp struct gotd_imsgev iev;
465 d93ecf7d 2022-12-14 stsp struct event evsigint, evsigterm, evsighup, evsigusr1;
466 c602198a 2022-12-30 stsp
467 c602198a 2022-12-30 stsp arc4random_buf(&clients_hash_key, sizeof(clients_hash_key));
468 7a0564e3 2022-12-30 stsp arc4random_buf(&uid_hash_key, sizeof(uid_hash_key));
469 d93ecf7d 2022-12-14 stsp
470 d93ecf7d 2022-12-14 stsp gotd_listen.title = title;
471 d93ecf7d 2022-12-14 stsp gotd_listen.pid = getpid();
472 d93ecf7d 2022-12-14 stsp gotd_listen.fd = gotd_socket;
473 40b85cca 2023-01-03 stsp gotd_listen.connection_limits = connection_limits;
474 40b85cca 2023-01-03 stsp gotd_listen.nconnection_limits = nconnection_limits;
475 d93ecf7d 2022-12-14 stsp
476 d93ecf7d 2022-12-14 stsp signal_set(&evsigint, SIGINT, listen_sighdlr, NULL);
477 d93ecf7d 2022-12-14 stsp signal_set(&evsigterm, SIGTERM, listen_sighdlr, NULL);
478 d93ecf7d 2022-12-14 stsp signal_set(&evsighup, SIGHUP, listen_sighdlr, NULL);
479 d93ecf7d 2022-12-14 stsp signal_set(&evsigusr1, SIGUSR1, listen_sighdlr, NULL);
480 d93ecf7d 2022-12-14 stsp signal(SIGPIPE, SIG_IGN);
481 d93ecf7d 2022-12-14 stsp
482 d93ecf7d 2022-12-14 stsp signal_add(&evsigint, NULL);
483 d93ecf7d 2022-12-14 stsp signal_add(&evsigterm, NULL);
484 d93ecf7d 2022-12-14 stsp signal_add(&evsighup, NULL);
485 d93ecf7d 2022-12-14 stsp signal_add(&evsigusr1, NULL);
486 d93ecf7d 2022-12-14 stsp
487 d93ecf7d 2022-12-14 stsp imsg_init(&iev.ibuf, GOTD_FILENO_MSG_PIPE);
488 d93ecf7d 2022-12-14 stsp iev.handler = listen_dispatch;
489 d93ecf7d 2022-12-14 stsp iev.events = EV_READ;
490 d93ecf7d 2022-12-14 stsp iev.handler_arg = NULL;
491 d93ecf7d 2022-12-14 stsp event_set(&iev.ev, iev.ibuf.fd, EV_READ, listen_dispatch, &iev);
492 d93ecf7d 2022-12-14 stsp if (event_add(&iev.ev, NULL) == -1)
493 d93ecf7d 2022-12-14 stsp fatalx("event add");
494 d93ecf7d 2022-12-14 stsp
495 d93ecf7d 2022-12-14 stsp event_set(&gotd_listen.iev.ev, gotd_listen.fd, EV_READ | EV_PERSIST,
496 d93ecf7d 2022-12-14 stsp gotd_accept, &iev);
497 d93ecf7d 2022-12-14 stsp if (event_add(&gotd_listen.iev.ev, NULL))
498 d93ecf7d 2022-12-14 stsp fatalx("event add");
499 d93ecf7d 2022-12-14 stsp evtimer_set(&gotd_listen.pause.ev, gotd_accept_paused, NULL);
500 d93ecf7d 2022-12-14 stsp
501 d93ecf7d 2022-12-14 stsp event_dispatch();
502 d93ecf7d 2022-12-14 stsp
503 d93ecf7d 2022-12-14 stsp listen_shutdown();
504 d93ecf7d 2022-12-14 stsp }
505 d93ecf7d 2022-12-14 stsp
506 d93ecf7d 2022-12-14 stsp static void
507 d93ecf7d 2022-12-14 stsp listen_shutdown(void)
508 d93ecf7d 2022-12-14 stsp {
509 2ec74a9e 2023-02-08 op log_debug("shutting down");
510 d93ecf7d 2022-12-14 stsp
511 40b85cca 2023-01-03 stsp free(gotd_listen.connection_limits);
512 d93ecf7d 2022-12-14 stsp if (gotd_listen.fd != -1)
513 d93ecf7d 2022-12-14 stsp close(gotd_listen.fd);
514 d93ecf7d 2022-12-14 stsp
515 d93ecf7d 2022-12-14 stsp exit(0);
516 d93ecf7d 2022-12-14 stsp }