Blame


1 0ccf3acb 2022-11-16 stsp /*
2 0ccf3acb 2022-11-16 stsp * Copyright (c) 2022 Stefan Sperling <stsp@openbsd.org>
3 0ccf3acb 2022-11-16 stsp * Copyright (c) 2015 Ted Unangst <tedu@openbsd.org>
4 0ccf3acb 2022-11-16 stsp *
5 0ccf3acb 2022-11-16 stsp * Permission to use, copy, modify, and distribute this software for any
6 0ccf3acb 2022-11-16 stsp * purpose with or without fee is hereby granted, provided that the above
7 0ccf3acb 2022-11-16 stsp * copyright notice and this permission notice appear in all copies.
8 0ccf3acb 2022-11-16 stsp *
9 0ccf3acb 2022-11-16 stsp * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10 0ccf3acb 2022-11-16 stsp * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11 0ccf3acb 2022-11-16 stsp * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12 0ccf3acb 2022-11-16 stsp * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13 0ccf3acb 2022-11-16 stsp * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14 0ccf3acb 2022-11-16 stsp * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15 0ccf3acb 2022-11-16 stsp * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16 0ccf3acb 2022-11-16 stsp */
17 0ccf3acb 2022-11-16 stsp
18 0ccf3acb 2022-11-16 stsp #include <sys/types.h>
19 365cf0f3 2022-12-29 stsp #include <sys/socket.h>
20 0ccf3acb 2022-11-16 stsp #include <sys/queue.h>
21 0ccf3acb 2022-11-16 stsp #include <sys/uio.h>
22 0ccf3acb 2022-11-16 stsp
23 0ccf3acb 2022-11-16 stsp #include <errno.h>
24 0ccf3acb 2022-11-16 stsp #include <event.h>
25 0ccf3acb 2022-11-16 stsp #include <limits.h>
26 0ccf3acb 2022-11-16 stsp #include <pwd.h>
27 0ccf3acb 2022-11-16 stsp #include <grp.h>
28 0ccf3acb 2022-11-16 stsp #include <sha1.h>
29 69c6accf 2023-02-04 op #include <sha2.h>
30 5e25db14 2022-12-29 stsp #include <signal.h>
31 0ccf3acb 2022-11-16 stsp #include <stdint.h>
32 0ccf3acb 2022-11-16 stsp #include <stdio.h>
33 0ccf3acb 2022-11-16 stsp #include <stdlib.h>
34 5e25db14 2022-12-29 stsp #include <string.h>
35 0ccf3acb 2022-11-16 stsp #include <imsg.h>
36 ddbe612c 2022-11-17 stsp #include <unistd.h>
37 0ccf3acb 2022-11-16 stsp
38 0ccf3acb 2022-11-16 stsp #include "got_error.h"
39 5e25db14 2022-12-29 stsp #include "got_path.h"
40 0ccf3acb 2022-11-16 stsp
41 0ccf3acb 2022-11-16 stsp #include "gotd.h"
42 ddbe612c 2022-11-17 stsp #include "log.h"
43 0ccf3acb 2022-11-16 stsp #include "auth.h"
44 0ccf3acb 2022-11-16 stsp
45 5e25db14 2022-12-29 stsp static struct gotd_auth {
46 5e25db14 2022-12-29 stsp pid_t pid;
47 5e25db14 2022-12-29 stsp const char *title;
48 5e25db14 2022-12-29 stsp struct gotd_repo *repo;
49 5e25db14 2022-12-29 stsp } gotd_auth;
50 5e25db14 2022-12-29 stsp
51 5e25db14 2022-12-29 stsp static void auth_shutdown(void);
52 5e25db14 2022-12-29 stsp
53 5e25db14 2022-12-29 stsp static void
54 5e25db14 2022-12-29 stsp auth_sighdlr(int sig, short event, void *arg)
55 5e25db14 2022-12-29 stsp {
56 5e25db14 2022-12-29 stsp /*
57 5e25db14 2022-12-29 stsp * Normal signal handler rules don't apply because libevent
58 5e25db14 2022-12-29 stsp * decouples for us.
59 5e25db14 2022-12-29 stsp */
60 5e25db14 2022-12-29 stsp
61 5e25db14 2022-12-29 stsp switch (sig) {
62 5e25db14 2022-12-29 stsp case SIGHUP:
63 5e25db14 2022-12-29 stsp break;
64 5e25db14 2022-12-29 stsp case SIGUSR1:
65 5e25db14 2022-12-29 stsp break;
66 5e25db14 2022-12-29 stsp case SIGTERM:
67 5e25db14 2022-12-29 stsp case SIGINT:
68 5e25db14 2022-12-29 stsp auth_shutdown();
69 5e25db14 2022-12-29 stsp /* NOTREACHED */
70 5e25db14 2022-12-29 stsp break;
71 5e25db14 2022-12-29 stsp default:
72 5e25db14 2022-12-29 stsp fatalx("unexpected signal");
73 5e25db14 2022-12-29 stsp }
74 5e25db14 2022-12-29 stsp }
75 5e25db14 2022-12-29 stsp
76 40b85cca 2023-01-03 stsp int
77 40b85cca 2023-01-03 stsp gotd_auth_parseuid(const char *s, uid_t *uid)
78 0ccf3acb 2022-11-16 stsp {
79 0ccf3acb 2022-11-16 stsp struct passwd *pw;
80 0ccf3acb 2022-11-16 stsp const char *errstr;
81 0ccf3acb 2022-11-16 stsp
82 0ccf3acb 2022-11-16 stsp if ((pw = getpwnam(s)) != NULL) {
83 0ccf3acb 2022-11-16 stsp *uid = pw->pw_uid;
84 0ccf3acb 2022-11-16 stsp if (*uid == UID_MAX)
85 0ccf3acb 2022-11-16 stsp return -1;
86 0ccf3acb 2022-11-16 stsp return 0;
87 0ccf3acb 2022-11-16 stsp }
88 0ccf3acb 2022-11-16 stsp *uid = strtonum(s, 0, UID_MAX - 1, &errstr);
89 0ccf3acb 2022-11-16 stsp if (errstr)
90 0ccf3acb 2022-11-16 stsp return -1;
91 0ccf3acb 2022-11-16 stsp return 0;
92 0ccf3acb 2022-11-16 stsp }
93 0ccf3acb 2022-11-16 stsp
94 0ccf3acb 2022-11-16 stsp static int
95 0ccf3acb 2022-11-16 stsp uidcheck(const char *s, uid_t desired)
96 0ccf3acb 2022-11-16 stsp {
97 0ccf3acb 2022-11-16 stsp uid_t uid;
98 0ccf3acb 2022-11-16 stsp
99 40b85cca 2023-01-03 stsp if (gotd_auth_parseuid(s, &uid) != 0)
100 0ccf3acb 2022-11-16 stsp return -1;
101 0ccf3acb 2022-11-16 stsp if (uid != desired)
102 0ccf3acb 2022-11-16 stsp return -1;
103 0ccf3acb 2022-11-16 stsp return 0;
104 0ccf3acb 2022-11-16 stsp }
105 0ccf3acb 2022-11-16 stsp
106 0ccf3acb 2022-11-16 stsp static int
107 0ccf3acb 2022-11-16 stsp parsegid(const char *s, gid_t *gid)
108 0ccf3acb 2022-11-16 stsp {
109 0ccf3acb 2022-11-16 stsp struct group *gr;
110 0ccf3acb 2022-11-16 stsp const char *errstr;
111 0ccf3acb 2022-11-16 stsp
112 0ccf3acb 2022-11-16 stsp if ((gr = getgrnam(s)) != NULL) {
113 0ccf3acb 2022-11-16 stsp *gid = gr->gr_gid;
114 0ccf3acb 2022-11-16 stsp if (*gid == GID_MAX)
115 0ccf3acb 2022-11-16 stsp return -1;
116 0ccf3acb 2022-11-16 stsp return 0;
117 0ccf3acb 2022-11-16 stsp }
118 0ccf3acb 2022-11-16 stsp *gid = strtonum(s, 0, GID_MAX - 1, &errstr);
119 0ccf3acb 2022-11-16 stsp if (errstr)
120 0ccf3acb 2022-11-16 stsp return -1;
121 0ccf3acb 2022-11-16 stsp return 0;
122 0ccf3acb 2022-11-16 stsp }
123 0ccf3acb 2022-11-16 stsp
124 0ccf3acb 2022-11-16 stsp static int
125 0ccf3acb 2022-11-16 stsp match_identifier(const char *identifier, gid_t *groups, int ngroups,
126 0ccf3acb 2022-11-16 stsp uid_t euid, gid_t egid)
127 0ccf3acb 2022-11-16 stsp {
128 0ccf3acb 2022-11-16 stsp int i;
129 0ccf3acb 2022-11-16 stsp
130 0ccf3acb 2022-11-16 stsp if (identifier[0] == ':') {
131 0ccf3acb 2022-11-16 stsp gid_t rgid;
132 0ccf3acb 2022-11-16 stsp if (parsegid(identifier + 1, &rgid) == -1)
133 0ccf3acb 2022-11-16 stsp return 0;
134 ddbe612c 2022-11-17 stsp if (rgid == egid)
135 ddbe612c 2022-11-17 stsp return 1;
136 0ccf3acb 2022-11-16 stsp for (i = 0; i < ngroups; i++) {
137 ddbe612c 2022-11-17 stsp if (rgid == groups[i])
138 0ccf3acb 2022-11-16 stsp break;
139 0ccf3acb 2022-11-16 stsp }
140 0ccf3acb 2022-11-16 stsp if (i == ngroups)
141 0ccf3acb 2022-11-16 stsp return 0;
142 0ccf3acb 2022-11-16 stsp } else if (uidcheck(identifier, euid) != 0)
143 0ccf3acb 2022-11-16 stsp return 0;
144 0ccf3acb 2022-11-16 stsp
145 0ccf3acb 2022-11-16 stsp return 1;
146 0ccf3acb 2022-11-16 stsp }
147 0ccf3acb 2022-11-16 stsp
148 5e25db14 2022-12-29 stsp static const struct got_error *
149 5e25db14 2022-12-29 stsp auth_check(struct gotd_access_rule_list *rules, const char *repo_name,
150 ddbe612c 2022-11-17 stsp uid_t euid, gid_t egid, int required_auth)
151 0ccf3acb 2022-11-16 stsp {
152 0ccf3acb 2022-11-16 stsp struct gotd_access_rule *rule;
153 0ccf3acb 2022-11-16 stsp enum gotd_access access = GOTD_ACCESS_DENIED;
154 ddbe612c 2022-11-17 stsp struct passwd *pw;
155 ddbe612c 2022-11-17 stsp gid_t groups[NGROUPS_MAX];
156 ddbe612c 2022-11-17 stsp int ngroups = NGROUPS_MAX;
157 0ccf3acb 2022-11-16 stsp
158 ddbe612c 2022-11-17 stsp pw = getpwuid(euid);
159 e18d071f 2022-11-20 stsp if (pw == NULL) {
160 e18d071f 2022-11-20 stsp if (errno)
161 e18d071f 2022-11-20 stsp return got_error_from_errno("getpwuid");
162 e18d071f 2022-11-20 stsp else
163 e18d071f 2022-11-20 stsp return got_error_set_errno(EACCES, repo_name);
164 e18d071f 2022-11-20 stsp }
165 ddbe612c 2022-11-17 stsp
166 ddbe612c 2022-11-17 stsp if (getgrouplist(pw->pw_name, pw->pw_gid, groups, &ngroups) == -1)
167 ddbe612c 2022-11-17 stsp log_warnx("group membership list truncated");
168 ddbe612c 2022-11-17 stsp
169 0ccf3acb 2022-11-16 stsp STAILQ_FOREACH(rule, rules, entry) {
170 0ccf3acb 2022-11-16 stsp if (!match_identifier(rule->identifier, groups, ngroups,
171 0ccf3acb 2022-11-16 stsp euid, egid))
172 0ccf3acb 2022-11-16 stsp continue;
173 0ccf3acb 2022-11-16 stsp
174 0ccf3acb 2022-11-16 stsp access = rule->access;
175 0ccf3acb 2022-11-16 stsp if (rule->access == GOTD_ACCESS_PERMITTED &&
176 0ccf3acb 2022-11-16 stsp (rule->authorization & required_auth) != required_auth)
177 0ccf3acb 2022-11-16 stsp access = GOTD_ACCESS_DENIED;
178 0ccf3acb 2022-11-16 stsp }
179 0ccf3acb 2022-11-16 stsp
180 0ccf3acb 2022-11-16 stsp if (access == GOTD_ACCESS_DENIED)
181 0ccf3acb 2022-11-16 stsp return got_error_set_errno(EACCES, repo_name);
182 0ccf3acb 2022-11-16 stsp
183 0ccf3acb 2022-11-16 stsp if (access == GOTD_ACCESS_PERMITTED)
184 0ccf3acb 2022-11-16 stsp return NULL;
185 0ccf3acb 2022-11-16 stsp
186 0ccf3acb 2022-11-16 stsp /* should not happen, this would be a bug */
187 0ccf3acb 2022-11-16 stsp return got_error_msg(GOT_ERR_NOT_IMPL, "bad access rule");
188 0ccf3acb 2022-11-16 stsp }
189 5e25db14 2022-12-29 stsp
190 5e25db14 2022-12-29 stsp static const struct got_error *
191 5e25db14 2022-12-29 stsp recv_authreq(struct imsg *imsg, struct gotd_imsgev *iev)
192 5e25db14 2022-12-29 stsp {
193 5e25db14 2022-12-29 stsp const struct got_error *err;
194 5e25db14 2022-12-29 stsp struct imsgbuf *ibuf = &iev->ibuf;
195 5e25db14 2022-12-29 stsp struct gotd_imsg_auth iauth;
196 5e25db14 2022-12-29 stsp size_t datalen;
197 365cf0f3 2022-12-29 stsp uid_t euid;
198 365cf0f3 2022-12-29 stsp gid_t egid;
199 5e25db14 2022-12-29 stsp
200 5e25db14 2022-12-29 stsp log_debug("authentication request received");
201 5e25db14 2022-12-29 stsp
202 5e25db14 2022-12-29 stsp datalen = imsg->hdr.len - IMSG_HEADER_SIZE;
203 5e25db14 2022-12-29 stsp if (datalen != sizeof(iauth))
204 5e25db14 2022-12-29 stsp return got_error(GOT_ERR_PRIVSEP_LEN);
205 5e25db14 2022-12-29 stsp
206 5e25db14 2022-12-29 stsp memcpy(&iauth, imsg->data, datalen);
207 365cf0f3 2022-12-29 stsp
208 365cf0f3 2022-12-29 stsp if (imsg->fd == -1)
209 365cf0f3 2022-12-29 stsp return got_error(GOT_ERR_PRIVSEP_NO_FD);
210 365cf0f3 2022-12-29 stsp
211 365cf0f3 2022-12-29 stsp if (getpeereid(imsg->fd, &euid, &egid) == -1)
212 365cf0f3 2022-12-29 stsp return got_error_from_errno("getpeerid");
213 5e25db14 2022-12-29 stsp
214 365cf0f3 2022-12-29 stsp if (iauth.euid != euid)
215 365cf0f3 2022-12-29 stsp return got_error(GOT_ERR_UID);
216 365cf0f3 2022-12-29 stsp if (iauth.egid != egid)
217 365cf0f3 2022-12-29 stsp return got_error(GOT_ERR_GID);
218 365cf0f3 2022-12-29 stsp
219 365cf0f3 2022-12-29 stsp log_debug("authenticating uid %d gid %d", euid, egid);
220 365cf0f3 2022-12-29 stsp
221 5e25db14 2022-12-29 stsp err = auth_check(&gotd_auth.repo->rules, gotd_auth.repo->name,
222 5e25db14 2022-12-29 stsp iauth.euid, iauth.egid, iauth.required_auth);
223 5e25db14 2022-12-29 stsp if (err) {
224 5e25db14 2022-12-29 stsp gotd_imsg_send_error(ibuf, PROC_AUTH, iauth.client_id, err);
225 5e25db14 2022-12-29 stsp return err;
226 5e25db14 2022-12-29 stsp }
227 5e25db14 2022-12-29 stsp
228 5e25db14 2022-12-29 stsp if (gotd_imsg_compose_event(iev, GOTD_IMSG_ACCESS_GRANTED,
229 5e25db14 2022-12-29 stsp PROC_AUTH, -1, NULL, 0) == -1)
230 5e25db14 2022-12-29 stsp return got_error_from_errno("imsg compose ACCESS_GRANTED");
231 5e25db14 2022-12-29 stsp
232 5e25db14 2022-12-29 stsp return NULL;
233 5e25db14 2022-12-29 stsp }
234 5e25db14 2022-12-29 stsp
235 5e25db14 2022-12-29 stsp static void
236 5e25db14 2022-12-29 stsp auth_dispatch(int fd, short event, void *arg)
237 5e25db14 2022-12-29 stsp {
238 5e25db14 2022-12-29 stsp const struct got_error *err = NULL;
239 5e25db14 2022-12-29 stsp struct gotd_imsgev *iev = arg;
240 5e25db14 2022-12-29 stsp struct imsgbuf *ibuf = &iev->ibuf;
241 5e25db14 2022-12-29 stsp struct imsg imsg;
242 5e25db14 2022-12-29 stsp ssize_t n;
243 5e25db14 2022-12-29 stsp int shut = 0;
244 5e25db14 2022-12-29 stsp
245 5e25db14 2022-12-29 stsp if (event & EV_READ) {
246 5e25db14 2022-12-29 stsp if ((n = imsg_read(ibuf)) == -1 && errno != EAGAIN)
247 5e25db14 2022-12-29 stsp fatal("imsg_read error");
248 5e25db14 2022-12-29 stsp if (n == 0) /* Connection closed. */
249 5e25db14 2022-12-29 stsp shut = 1;
250 5e25db14 2022-12-29 stsp }
251 5e25db14 2022-12-29 stsp
252 5e25db14 2022-12-29 stsp if (event & EV_WRITE) {
253 5e25db14 2022-12-29 stsp n = msgbuf_write(&ibuf->w);
254 5e25db14 2022-12-29 stsp if (n == -1 && errno != EAGAIN)
255 5e25db14 2022-12-29 stsp fatal("msgbuf_write");
256 5e25db14 2022-12-29 stsp if (n == 0) /* Connection closed. */
257 5e25db14 2022-12-29 stsp shut = 1;
258 5e25db14 2022-12-29 stsp }
259 5e25db14 2022-12-29 stsp
260 5e25db14 2022-12-29 stsp for (;;) {
261 5e25db14 2022-12-29 stsp if ((n = imsg_get(ibuf, &imsg)) == -1)
262 5e25db14 2022-12-29 stsp fatal("%s: imsg_get", __func__);
263 5e25db14 2022-12-29 stsp if (n == 0) /* No more messages. */
264 5e25db14 2022-12-29 stsp break;
265 5e25db14 2022-12-29 stsp
266 5e25db14 2022-12-29 stsp switch (imsg.hdr.type) {
267 5e25db14 2022-12-29 stsp case GOTD_IMSG_AUTHENTICATE:
268 5e25db14 2022-12-29 stsp err = recv_authreq(&imsg, iev);
269 5e25db14 2022-12-29 stsp if (err)
270 5e25db14 2022-12-29 stsp log_warnx("%s: %s", gotd_auth.title, err->msg);
271 5e25db14 2022-12-29 stsp break;
272 5e25db14 2022-12-29 stsp default:
273 5e25db14 2022-12-29 stsp log_debug("%s: unexpected imsg %d", gotd_auth.title,
274 5e25db14 2022-12-29 stsp imsg.hdr.type);
275 5e25db14 2022-12-29 stsp break;
276 5e25db14 2022-12-29 stsp }
277 5e25db14 2022-12-29 stsp
278 5e25db14 2022-12-29 stsp imsg_free(&imsg);
279 5e25db14 2022-12-29 stsp }
280 5e25db14 2022-12-29 stsp
281 5e25db14 2022-12-29 stsp if (!shut) {
282 5e25db14 2022-12-29 stsp gotd_imsg_event_add(iev);
283 5e25db14 2022-12-29 stsp } else {
284 5e25db14 2022-12-29 stsp /* This pipe is dead. Remove its event handler */
285 5e25db14 2022-12-29 stsp event_del(&iev->ev);
286 5e25db14 2022-12-29 stsp event_loopexit(NULL);
287 5e25db14 2022-12-29 stsp }
288 5e25db14 2022-12-29 stsp }
289 5e25db14 2022-12-29 stsp
290 5e25db14 2022-12-29 stsp void
291 5e25db14 2022-12-29 stsp auth_main(const char *title, struct gotd_repolist *repos,
292 5e25db14 2022-12-29 stsp const char *repo_path)
293 5e25db14 2022-12-29 stsp {
294 5e25db14 2022-12-29 stsp struct gotd_repo *repo = NULL;
295 5e25db14 2022-12-29 stsp struct gotd_imsgev iev;
296 5e25db14 2022-12-29 stsp struct event evsigint, evsigterm, evsighup, evsigusr1;
297 5e25db14 2022-12-29 stsp
298 5e25db14 2022-12-29 stsp gotd_auth.title = title;
299 5e25db14 2022-12-29 stsp gotd_auth.pid = getpid();
300 5e25db14 2022-12-29 stsp TAILQ_FOREACH(repo, repos, entry) {
301 5e25db14 2022-12-29 stsp if (got_path_cmp(repo->path, repo_path,
302 5e25db14 2022-12-29 stsp strlen(repo->path), strlen(repo_path)) == 0)
303 5e25db14 2022-12-29 stsp break;
304 5e25db14 2022-12-29 stsp }
305 5e25db14 2022-12-29 stsp if (repo == NULL)
306 5e25db14 2022-12-29 stsp fatalx("repository %s not found in config", repo_path);
307 5e25db14 2022-12-29 stsp gotd_auth.repo = repo;
308 5e25db14 2022-12-29 stsp
309 5e25db14 2022-12-29 stsp signal_set(&evsigint, SIGINT, auth_sighdlr, NULL);
310 5e25db14 2022-12-29 stsp signal_set(&evsigterm, SIGTERM, auth_sighdlr, NULL);
311 5e25db14 2022-12-29 stsp signal_set(&evsighup, SIGHUP, auth_sighdlr, NULL);
312 5e25db14 2022-12-29 stsp signal_set(&evsigusr1, SIGUSR1, auth_sighdlr, NULL);
313 5e25db14 2022-12-29 stsp signal(SIGPIPE, SIG_IGN);
314 5e25db14 2022-12-29 stsp
315 5e25db14 2022-12-29 stsp signal_add(&evsigint, NULL);
316 5e25db14 2022-12-29 stsp signal_add(&evsigterm, NULL);
317 5e25db14 2022-12-29 stsp signal_add(&evsighup, NULL);
318 5e25db14 2022-12-29 stsp signal_add(&evsigusr1, NULL);
319 5e25db14 2022-12-29 stsp
320 5e25db14 2022-12-29 stsp imsg_init(&iev.ibuf, GOTD_FILENO_MSG_PIPE);
321 5e25db14 2022-12-29 stsp iev.handler = auth_dispatch;
322 5e25db14 2022-12-29 stsp iev.events = EV_READ;
323 5e25db14 2022-12-29 stsp iev.handler_arg = NULL;
324 5e25db14 2022-12-29 stsp event_set(&iev.ev, iev.ibuf.fd, EV_READ, auth_dispatch, &iev);
325 5e25db14 2022-12-29 stsp if (event_add(&iev.ev, NULL) == -1)
326 5e25db14 2022-12-29 stsp fatalx("event add");
327 5e25db14 2022-12-29 stsp
328 5e25db14 2022-12-29 stsp event_dispatch();
329 5e25db14 2022-12-29 stsp
330 5e25db14 2022-12-29 stsp auth_shutdown();
331 5e25db14 2022-12-29 stsp }
332 5e25db14 2022-12-29 stsp
333 5e25db14 2022-12-29 stsp static void
334 5e25db14 2022-12-29 stsp auth_shutdown(void)
335 5e25db14 2022-12-29 stsp {
336 5e25db14 2022-12-29 stsp log_debug("%s: shutting down", gotd_auth.title);
337 5e25db14 2022-12-29 stsp exit(0);
338 5e25db14 2022-12-29 stsp }