Blame


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