blob: 815ea0f25ebb831b0d542866e8e0d8a23712b859 [file] [log] [blame]
naddy@openbsd.orga47f6a62020-02-06 22:30:54 +00001/* $OpenBSD: auth2-pubkey.c,v 1.99 2020/02/06 22:30:54 naddy Exp $ */
Ben Lindstrom855bf3a2002-06-06 20:27:55 +00002/*
3 * Copyright (c) 2000 Markus Friedl. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 *
14 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
15 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
16 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
17 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
18 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
19 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
20 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
21 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
23 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24 */
25
26#include "includes.h"
Damien Millerf17883e2006-03-15 11:45:54 +110027
28#include <sys/types.h>
29#include <sys/stat.h>
Ben Lindstrom855bf3a2002-06-06 20:27:55 +000030
djm@openbsd.orgbe02d7c2019-09-06 04:53:27 +000031#include <stdlib.h>
Damien Miller09d3e122012-10-31 08:58:58 +110032#include <errno.h>
Darren Tucker06db5842008-06-13 14:51:28 +100033#include <fcntl.h>
Darren Tucker737f7af2012-11-05 17:07:43 +110034#ifdef HAVE_PATHS_H
35# include <paths.h>
36#endif
Damien Miller9f2abc42006-07-10 20:53:08 +100037#include <pwd.h>
Damien Miller09d3e122012-10-31 08:58:58 +110038#include <signal.h>
Damien Millera7a73ee2006-08-05 11:37:59 +100039#include <stdio.h>
Damien Millerd7834352006-08-05 12:39:39 +100040#include <stdarg.h>
Damien Miller0a80ca12010-02-27 07:55:05 +110041#include <string.h>
42#include <time.h>
Darren Tuckerd9526a52008-06-14 09:01:24 +100043#include <unistd.h>
djm@openbsd.orgf69b69b2014-12-22 07:51:30 +000044#include <limits.h>
Damien Miller9f2abc42006-07-10 20:53:08 +100045
Damien Millerd7834352006-08-05 12:39:39 +100046#include "xmalloc.h"
Darren Tucker22cc7412004-12-06 22:47:41 +110047#include "ssh.h"
Ben Lindstrom855bf3a2002-06-06 20:27:55 +000048#include "ssh2.h"
Ben Lindstrom855bf3a2002-06-06 20:27:55 +000049#include "packet.h"
markus@openbsd.orgc7d39ac2018-07-09 21:35:50 +000050#include "sshbuf.h"
Ben Lindstrom855bf3a2002-06-06 20:27:55 +000051#include "log.h"
Damien Miller7acefbb2014-07-18 14:11:24 +100052#include "misc.h"
Ben Lindstrom855bf3a2002-06-06 20:27:55 +000053#include "servconf.h"
54#include "compat.h"
markus@openbsd.org00ed75c2017-05-30 14:10:53 +000055#include "sshkey.h"
Damien Millerd7834352006-08-05 12:39:39 +100056#include "hostfile.h"
57#include "auth.h"
Ben Lindstrom855bf3a2002-06-06 20:27:55 +000058#include "pathnames.h"
59#include "uidswap.h"
60#include "auth-options.h"
61#include "canohost.h"
Damien Millerd7834352006-08-05 12:39:39 +100062#ifdef GSSAPI
63#include "ssh-gss.h"
64#endif
Ben Lindstrom855bf3a2002-06-06 20:27:55 +000065#include "monitor_wrap.h"
Damien Miller1aed65e2010-03-04 21:53:35 +110066#include "authfile.h"
Damien Miller30da3442010-05-10 11:58:03 +100067#include "match.h"
djm@openbsd.org24232a32015-05-21 06:38:35 +000068#include "ssherr.h"
69#include "channels.h" /* XXX for session.h */
70#include "session.h" /* XXX for child_set_env(); refactor? */
djm@openbsd.org0fddf292019-11-25 00:52:46 +000071#include "sk-api.h"
Ben Lindstrom855bf3a2002-06-06 20:27:55 +000072
73/* import */
74extern ServerOptions options;
75extern u_char *session_id2;
Darren Tucker502d3842003-06-28 12:38:01 +100076extern u_int session_id2_len;
Ben Lindstrom855bf3a2002-06-06 20:27:55 +000077
djm@openbsd.org27885632017-12-19 00:24:34 +000078static char *
79format_key(const struct sshkey *key)
80{
81 char *ret, *fp = sshkey_fingerprint(key,
82 options.fingerprint_hash, SSH_FP_DEFAULT);
83
84 xasprintf(&ret, "%s %s", sshkey_type(key), fp);
85 free(fp);
86 return ret;
87}
88
Ben Lindstrom855bf3a2002-06-06 20:27:55 +000089static int
markus@openbsd.orgeb272ea2017-05-30 14:29:59 +000090userauth_pubkey(struct ssh *ssh)
Ben Lindstrom855bf3a2002-06-06 20:27:55 +000091{
markus@openbsd.orgeb272ea2017-05-30 14:29:59 +000092 Authctxt *authctxt = ssh->authctxt;
djm@openbsd.org7c856852018-03-03 03:15:51 +000093 struct passwd *pw = authctxt->pw;
djm@openbsd.org74287f52018-07-31 03:10:27 +000094 struct sshbuf *b = NULL;
markus@openbsd.org54d90ac2017-05-30 08:52:19 +000095 struct sshkey *key = NULL;
djm@openbsd.org74287f52018-07-31 03:10:27 +000096 char *pkalg = NULL, *userstyle = NULL, *key_s = NULL, *ca_s = NULL;
97 u_char *pkblob = NULL, *sig = NULL, have_sig;
markus@openbsd.org00ed75c2017-05-30 14:10:53 +000098 size_t blen, slen;
99 int r, pktype;
djm@openbsd.org0fddf292019-11-25 00:52:46 +0000100 int req_presence = 0, authenticated = 0;
djm@openbsd.org7c856852018-03-03 03:15:51 +0000101 struct sshauthopt *authopts = NULL;
djm@openbsd.orgb7e74ea2019-11-25 00:51:37 +0000102 struct sshkey_sig_details *sig_details = NULL;
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000103
djm@openbsd.org14b5c632018-01-23 05:27:21 +0000104 if ((r = sshpkt_get_u8(ssh, &have_sig)) != 0 ||
105 (r = sshpkt_get_cstring(ssh, &pkalg, NULL)) != 0 ||
106 (r = sshpkt_get_string(ssh, &pkblob, &blen)) != 0)
107 fatal("%s: parse request failed: %s", __func__, ssh_err(r));
djm@openbsd.orgff5d2cf2019-01-22 11:26:16 +0000108
109 if (log_level_get() >= SYSLOG_LEVEL_DEBUG2) {
110 char *keystring;
111 struct sshbuf *pkbuf;
112
113 if ((pkbuf = sshbuf_from(pkblob, blen)) == NULL)
114 fatal("%s: sshbuf_from failed", __func__);
djm@openbsd.org16dd8b22019-07-16 13:18:39 +0000115 if ((keystring = sshbuf_dtob64_string(pkbuf, 0)) == NULL)
djm@openbsd.orgff5d2cf2019-01-22 11:26:16 +0000116 fatal("%s: sshbuf_dtob64 failed", __func__);
117 debug2("%s: %s user %s %s public key %s %s", __func__,
118 authctxt->valid ? "valid" : "invalid", authctxt->user,
119 have_sig ? "attempting" : "querying", pkalg, keystring);
120 sshbuf_free(pkbuf);
121 free(keystring);
122 }
123
markus@openbsd.org00ed75c2017-05-30 14:10:53 +0000124 pktype = sshkey_type_from_name(pkalg);
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000125 if (pktype == KEY_UNSPEC) {
126 /* this is perfectly legal */
djm@openbsd.org4ba0d542018-07-03 11:39:54 +0000127 verbose("%s: unsupported public key algorithm: %s",
djm@openbsd.orgebacd372016-01-27 00:53:12 +0000128 __func__, pkalg);
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000129 goto done;
130 }
markus@openbsd.org00ed75c2017-05-30 14:10:53 +0000131 if ((r = sshkey_from_blob(pkblob, blen, &key)) != 0) {
132 error("%s: could not parse key: %s", __func__, ssh_err(r));
133 goto done;
134 }
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000135 if (key == NULL) {
djm@openbsd.orgebacd372016-01-27 00:53:12 +0000136 error("%s: cannot decode key: %s", __func__, pkalg);
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000137 goto done;
138 }
139 if (key->type != pktype) {
djm@openbsd.orgebacd372016-01-27 00:53:12 +0000140 error("%s: type mismatch for decoded key "
141 "(received %d, expected %d)", __func__, key->type, pktype);
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000142 goto done;
143 }
markus@openbsd.org00ed75c2017-05-30 14:10:53 +0000144 if (sshkey_type_plain(key->type) == KEY_RSA &&
145 (ssh->compat & SSH_BUG_RSASIGMD5) != 0) {
Damien Miller324541e2013-12-31 12:25:40 +1100146 logit("Refusing RSA key because client uses unsafe "
147 "signature scheme");
148 goto done;
149 }
djm@openbsd.org8f574952017-06-24 06:34:38 +0000150 if (auth2_key_already_used(authctxt, key)) {
markus@openbsd.org00ed75c2017-05-30 14:10:53 +0000151 logit("refusing previously-used %s key", sshkey_type(key));
djm@openbsd.orgf69b69b2014-12-22 07:51:30 +0000152 goto done;
153 }
djm@openbsd.org4ba0d542018-07-03 11:39:54 +0000154 if (match_pattern_list(pkalg, options.pubkey_key_types, 0) != 1) {
djm@openbsd.org1f729f02015-01-13 07:39:19 +0000155 logit("%s: key type %s not in PubkeyAcceptedKeyTypes",
156 __func__, sshkey_ssh_name(key));
157 goto done;
158 }
djm@openbsd.org86e57372018-09-20 03:28:06 +0000159 if ((r = sshkey_check_cert_sigtype(key,
160 options.ca_sign_algorithms)) != 0) {
161 logit("%s: certificate signature algorithm %s: %s", __func__,
162 (key->cert == NULL || key->cert->signature_type == NULL) ?
163 "(null)" : key->cert->signature_type, ssh_err(r));
164 goto done;
165 }
djm@openbsd.org27885632017-12-19 00:24:34 +0000166 key_s = format_key(key);
167 if (sshkey_is_cert(key))
168 ca_s = format_key(key->cert->signature_key);
169
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000170 if (have_sig) {
djm@openbsd.org27885632017-12-19 00:24:34 +0000171 debug3("%s: have %s signature for %s%s%s",
172 __func__, pkalg, key_s,
173 ca_s == NULL ? "" : " CA ",
174 ca_s == NULL ? "" : ca_s);
markus@openbsd.org00ed75c2017-05-30 14:10:53 +0000175 if ((r = sshpkt_get_string(ssh, &sig, &slen)) != 0 ||
176 (r = sshpkt_get_end(ssh)) != 0)
177 fatal("%s: %s", __func__, ssh_err(r));
178 if ((b = sshbuf_new()) == NULL)
179 fatal("%s: sshbuf_new failed", __func__);
180 if (ssh->compat & SSH_OLD_SESSIONID) {
181 if ((r = sshbuf_put(b, session_id2,
182 session_id2_len)) != 0)
183 fatal("%s: sshbuf_put session id: %s",
184 __func__, ssh_err(r));
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000185 } else {
markus@openbsd.org00ed75c2017-05-30 14:10:53 +0000186 if ((r = sshbuf_put_string(b, session_id2,
187 session_id2_len)) != 0)
188 fatal("%s: sshbuf_put_string session id: %s",
189 __func__, ssh_err(r));
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000190 }
djm@openbsd.org74287f52018-07-31 03:10:27 +0000191 if (!authctxt->valid || authctxt->user == NULL) {
192 debug2("%s: disabled because of invalid user",
193 __func__);
194 goto done;
195 }
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000196 /* reconstruct packet */
Damien Miller4ce189d2013-04-23 15:17:52 +1000197 xasprintf(&userstyle, "%s%s%s", authctxt->user,
198 authctxt->style ? ":" : "",
199 authctxt->style ? authctxt->style : "");
markus@openbsd.org00ed75c2017-05-30 14:10:53 +0000200 if ((r = sshbuf_put_u8(b, SSH2_MSG_USERAUTH_REQUEST)) != 0 ||
201 (r = sshbuf_put_cstring(b, userstyle)) != 0 ||
djm@openbsd.org14b5c632018-01-23 05:27:21 +0000202 (r = sshbuf_put_cstring(b, authctxt->service)) != 0 ||
203 (r = sshbuf_put_cstring(b, "publickey")) != 0 ||
204 (r = sshbuf_put_u8(b, have_sig)) != 0 ||
mestre@openbsd.orgdb8bb802018-08-28 12:25:53 +0000205 (r = sshbuf_put_cstring(b, pkalg)) != 0 ||
djm@openbsd.org14b5c632018-01-23 05:27:21 +0000206 (r = sshbuf_put_string(b, pkblob, blen)) != 0)
markus@openbsd.org00ed75c2017-05-30 14:10:53 +0000207 fatal("%s: build packet failed: %s",
208 __func__, ssh_err(r));
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000209#ifdef DEBUG_PK
markus@openbsd.org00ed75c2017-05-30 14:10:53 +0000210 sshbuf_dump(b, stderr);
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000211#endif
212 /* test for correct signature */
213 authenticated = 0;
djm@openbsd.org7c856852018-03-03 03:15:51 +0000214 if (PRIVSEP(user_key_allowed(ssh, pw, key, 1, &authopts)) &&
djm@openbsd.org4ba0d542018-07-03 11:39:54 +0000215 PRIVSEP(sshkey_verify(key, sig, slen,
216 sshbuf_ptr(b), sshbuf_len(b),
217 (ssh->compat & SSH_BUG_SIGTYPE) == 0 ? pkalg : NULL,
djm@openbsd.orgb7e74ea2019-11-25 00:51:37 +0000218 ssh->compat, &sig_details)) == 0) {
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000219 authenticated = 1;
djm@openbsd.orgf69b69b2014-12-22 07:51:30 +0000220 }
djm@openbsd.org0fddf292019-11-25 00:52:46 +0000221 if (authenticated == 1 && sig_details != NULL) {
222 auth2_record_info(authctxt, "signature count = %u",
223 sig_details->sk_counter);
djm@openbsd.orgb7e74ea2019-11-25 00:51:37 +0000224 debug("%s: sk_counter = %u, sk_flags = 0x%02x",
225 __func__, sig_details->sk_counter,
226 sig_details->sk_flags);
djm@openbsd.org0fddf292019-11-25 00:52:46 +0000227 req_presence = (options.pubkey_auth_options &
djm@openbsd.org2e712632019-11-25 00:54:23 +0000228 PUBKEYAUTH_TOUCH_REQUIRED) ||
229 !authopts->no_require_user_presence;
djm@openbsd.org0fddf292019-11-25 00:52:46 +0000230 if (req_presence && (sig_details->sk_flags &
231 SSH_SK_USER_PRESENCE_REQD) == 0) {
232 error("public key %s signature for %s%s from "
233 "%.128s port %d rejected: user presence "
naddy@openbsd.orga47f6a62020-02-06 22:30:54 +0000234 "(authenticator touch) requirement "
235 "not met ", key_s,
djm@openbsd.org0fddf292019-11-25 00:52:46 +0000236 authctxt->valid ? "" : "invalid user ",
237 authctxt->user, ssh_remote_ipaddr(ssh),
238 ssh_remote_port(ssh));
239 authenticated = 0;
240 goto done;
241 }
djm@openbsd.orgb7e74ea2019-11-25 00:51:37 +0000242 }
djm@openbsd.org8f574952017-06-24 06:34:38 +0000243 auth2_record_key(authctxt, authenticated, key);
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000244 } else {
djm@openbsd.org27885632017-12-19 00:24:34 +0000245 debug("%s: test pkalg %s pkblob %s%s%s",
246 __func__, pkalg, key_s,
247 ca_s == NULL ? "" : " CA ",
248 ca_s == NULL ? "" : ca_s);
249
markus@openbsd.org00ed75c2017-05-30 14:10:53 +0000250 if ((r = sshpkt_get_end(ssh)) != 0)
251 fatal("%s: %s", __func__, ssh_err(r));
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000252
djm@openbsd.org74287f52018-07-31 03:10:27 +0000253 if (!authctxt->valid || authctxt->user == NULL) {
254 debug2("%s: disabled because of invalid user",
255 __func__);
256 goto done;
257 }
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000258 /* XXX fake reply and always send PK_OK ? */
259 /*
260 * XXX this allows testing whether a user is allowed
261 * to login: if you happen to have a valid pubkey this
262 * message is sent. the message is NEVER sent at all
263 * if a user is not allowed to login. is this an
264 * issue? -markus
265 */
djm@openbsd.org7c856852018-03-03 03:15:51 +0000266 if (PRIVSEP(user_key_allowed(ssh, pw, key, 0, NULL))) {
markus@openbsd.org00ed75c2017-05-30 14:10:53 +0000267 if ((r = sshpkt_start(ssh, SSH2_MSG_USERAUTH_PK_OK))
268 != 0 ||
269 (r = sshpkt_put_cstring(ssh, pkalg)) != 0 ||
270 (r = sshpkt_put_string(ssh, pkblob, blen)) != 0 ||
markus@openbsd.org394a8422018-07-11 18:55:11 +0000271 (r = sshpkt_send(ssh)) != 0 ||
272 (r = ssh_packet_write_wait(ssh)) != 0)
markus@openbsd.org00ed75c2017-05-30 14:10:53 +0000273 fatal("%s: %s", __func__, ssh_err(r));
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000274 authctxt->postponed = 1;
275 }
276 }
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000277done:
djm@openbsd.org7c856852018-03-03 03:15:51 +0000278 if (authenticated == 1 && auth_activate_options(ssh, authopts) != 0) {
279 debug("%s: key options inconsistent with existing", __func__);
280 authenticated = 0;
281 }
djm@openbsd.orgebacd372016-01-27 00:53:12 +0000282 debug2("%s: authenticated %d pkalg %s", __func__, authenticated, pkalg);
djm@openbsd.org7c856852018-03-03 03:15:51 +0000283
djm@openbsd.org7fef1732018-08-23 03:01:08 +0000284 sshbuf_free(b);
djm@openbsd.org7c856852018-03-03 03:15:51 +0000285 sshauthopt_free(authopts);
djm@openbsd.org8f574952017-06-24 06:34:38 +0000286 sshkey_free(key);
markus@openbsd.org00ed75c2017-05-30 14:10:53 +0000287 free(userstyle);
Darren Tuckera627d422013-06-02 07:31:17 +1000288 free(pkalg);
289 free(pkblob);
djm@openbsd.org27885632017-12-19 00:24:34 +0000290 free(key_s);
291 free(ca_s);
djm@openbsd.org74287f52018-07-31 03:10:27 +0000292 free(sig);
djm@openbsd.orgb7e74ea2019-11-25 00:51:37 +0000293 sshkey_sig_details_free(sig_details);
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000294 return authenticated;
295}
296
Damien Miller30da3442010-05-10 11:58:03 +1000297static int
Damien Miller86687062014-07-02 15:28:02 +1000298match_principals_option(const char *principal_list, struct sshkey_cert *cert)
Damien Miller30da3442010-05-10 11:58:03 +1000299{
300 char *result;
301 u_int i;
302
303 /* XXX percent_expand() sequences for authorized_principals? */
304
305 for (i = 0; i < cert->nprincipals; i++) {
306 if ((result = match_list(cert->principals[i],
307 principal_list, NULL)) != NULL) {
308 debug3("matched principal from key options \"%.100s\"",
309 result);
Darren Tuckera627d422013-06-02 07:31:17 +1000310 free(result);
Damien Miller30da3442010-05-10 11:58:03 +1000311 return 1;
312 }
313 }
314 return 0;
315}
316
djm@openbsd.org7c856852018-03-03 03:15:51 +0000317/*
318 * Process a single authorized_principals format line. Returns 0 and sets
319 * authoptsp is principal is authorised, -1 otherwise. "loc" is used as a
320 * log preamble for file/line information.
321 */
Damien Miller30da3442010-05-10 11:58:03 +1000322static int
djm@openbsd.org7c856852018-03-03 03:15:51 +0000323check_principals_line(struct ssh *ssh, char *cp, const struct sshkey_cert *cert,
324 const char *loc, struct sshauthopt **authoptsp)
Damien Miller30da3442010-05-10 11:58:03 +1000325{
djm@openbsd.org7c856852018-03-03 03:15:51 +0000326 u_int i, found = 0;
327 char *ep, *line_opts;
328 const char *reason = NULL;
329 struct sshauthopt *opts = NULL;
330
331 if (authoptsp != NULL)
332 *authoptsp = NULL;
333
334 /* Trim trailing whitespace. */
335 ep = cp + strlen(cp) - 1;
336 while (ep > cp && (*ep == '\n' || *ep == ' ' || *ep == '\t'))
337 *ep-- = '\0';
338
339 /*
340 * If the line has internal whitespace then assume it has
341 * key options.
342 */
343 line_opts = NULL;
344 if ((ep = strrchr(cp, ' ')) != NULL ||
345 (ep = strrchr(cp, '\t')) != NULL) {
346 for (; *ep == ' ' || *ep == '\t'; ep++)
347 ;
348 line_opts = cp;
349 cp = ep;
350 }
351 if ((opts = sshauthopt_parse(line_opts, &reason)) == NULL) {
352 debug("%s: bad principals options: %s", loc, reason);
353 auth_debug_add("%s: bad principals options: %s", loc, reason);
354 return -1;
355 }
356 /* Check principals in cert against those on line */
357 for (i = 0; i < cert->nprincipals; i++) {
358 if (strcmp(cp, cert->principals[i]) != 0)
359 continue;
360 debug3("%s: matched principal \"%.100s\"",
361 loc, cert->principals[i]);
362 found = 1;
363 }
364 if (found && authoptsp != NULL) {
365 *authoptsp = opts;
366 opts = NULL;
367 }
368 sshauthopt_free(opts);
369 return found ? 0 : -1;
370}
371
372static int
373process_principals(struct ssh *ssh, FILE *f, const char *file,
374 const struct sshkey_cert *cert, struct sshauthopt **authoptsp)
375{
markus@openbsd.org7f906352018-06-06 18:29:18 +0000376 char loc[256], *line = NULL, *cp, *ep;
377 size_t linesize = 0;
Damien Miller30da3442010-05-10 11:58:03 +1000378 u_long linenum = 0;
djm@openbsd.org7c856852018-03-03 03:15:51 +0000379 u_int found_principal = 0;
380
381 if (authoptsp != NULL)
382 *authoptsp = NULL;
Damien Miller30da3442010-05-10 11:58:03 +1000383
markus@openbsd.org7f906352018-06-06 18:29:18 +0000384 while (getline(&line, &linesize, f) != -1) {
385 linenum++;
djm@openbsd.org52763dd2017-01-30 01:03:00 +0000386 /* Always consume entire input */
387 if (found_principal)
388 continue;
djm@openbsd.org7c856852018-03-03 03:15:51 +0000389
Damien Miller6018a362010-07-02 13:35:19 +1000390 /* Skip leading whitespace. */
Damien Miller30da3442010-05-10 11:58:03 +1000391 for (cp = line; *cp == ' ' || *cp == '\t'; cp++)
392 ;
Damien Miller6018a362010-07-02 13:35:19 +1000393 /* Skip blank and comment lines. */
394 if ((ep = strchr(cp, '#')) != NULL)
395 *ep = '\0';
396 if (!*cp || *cp == '\n')
Damien Miller30da3442010-05-10 11:58:03 +1000397 continue;
djm@openbsd.org7c856852018-03-03 03:15:51 +0000398
399 snprintf(loc, sizeof(loc), "%.200s:%lu", file, linenum);
400 if (check_principals_line(ssh, cp, cert, loc, authoptsp) == 0)
401 found_principal = 1;
Damien Miller30da3442010-05-10 11:58:03 +1000402 }
markus@openbsd.org7f906352018-06-06 18:29:18 +0000403 free(line);
djm@openbsd.org52763dd2017-01-30 01:03:00 +0000404 return found_principal;
Damien Miller09d3e122012-10-31 08:58:58 +1100405}
Damien Miller30da3442010-05-10 11:58:03 +1000406
djm@openbsd.org7c856852018-03-03 03:15:51 +0000407/* XXX remove pw args here and elsewhere once ssh->authctxt is guaranteed */
408
djm@openbsd.orgbcc50d82015-05-21 06:43:30 +0000409static int
djm@openbsd.org7c856852018-03-03 03:15:51 +0000410match_principals_file(struct ssh *ssh, struct passwd *pw, char *file,
411 struct sshkey_cert *cert, struct sshauthopt **authoptsp)
djm@openbsd.orgbcc50d82015-05-21 06:43:30 +0000412{
413 FILE *f;
414 int success;
415
djm@openbsd.org7c856852018-03-03 03:15:51 +0000416 if (authoptsp != NULL)
417 *authoptsp = NULL;
418
djm@openbsd.orgbcc50d82015-05-21 06:43:30 +0000419 temporarily_use_uid(pw);
420 debug("trying authorized principals file %s", file);
421 if ((f = auth_openprincipals(file, pw, options.strict_modes)) == NULL) {
422 restore_uid();
423 return 0;
424 }
djm@openbsd.org7c856852018-03-03 03:15:51 +0000425 success = process_principals(ssh, f, file, cert, authoptsp);
djm@openbsd.orgbcc50d82015-05-21 06:43:30 +0000426 fclose(f);
427 restore_uid();
428 return success;
429}
430
431/*
432 * Checks whether principal is allowed in output of command.
433 * returns 1 if the principal is allowed or 0 otherwise.
434 */
435static int
djm@openbsd.org7c856852018-03-03 03:15:51 +0000436match_principals_command(struct ssh *ssh, struct passwd *user_pw,
437 const struct sshkey *key, struct sshauthopt **authoptsp)
djm@openbsd.orgbcc50d82015-05-21 06:43:30 +0000438{
djm@openbsd.org7c856852018-03-03 03:15:51 +0000439 struct passwd *runas_pw = NULL;
djm@openbsd.orge7907c12016-09-14 05:42:25 +0000440 const struct sshkey_cert *cert = key->cert;
djm@openbsd.orgbcc50d82015-05-21 06:43:30 +0000441 FILE *f = NULL;
djm@openbsd.orge7907c12016-09-14 05:42:25 +0000442 int r, ok, found_principal = 0;
djm@openbsd.orgbcc50d82015-05-21 06:43:30 +0000443 int i, ac = 0, uid_swapped = 0;
444 pid_t pid;
445 char *tmp, *username = NULL, *command = NULL, **av = NULL;
djm@openbsd.orge7907c12016-09-14 05:42:25 +0000446 char *ca_fp = NULL, *key_fp = NULL, *catext = NULL, *keytext = NULL;
djm@openbsd.org30615292019-05-20 00:25:55 +0000447 char serial_s[32], uidstr[32];
djm@openbsd.orgbcc50d82015-05-21 06:43:30 +0000448 void (*osigchld)(int);
449
djm@openbsd.org7c856852018-03-03 03:15:51 +0000450 if (authoptsp != NULL)
451 *authoptsp = NULL;
djm@openbsd.orgbcc50d82015-05-21 06:43:30 +0000452 if (options.authorized_principals_command == NULL)
453 return 0;
454 if (options.authorized_principals_command_user == NULL) {
455 error("No user for AuthorizedPrincipalsCommand specified, "
456 "skipping");
457 return 0;
458 }
459
460 /*
461 * NB. all returns later this function should go via "out" to
462 * ensure the original SIGCHLD handler is restored properly.
463 */
dtucker@openbsd.org3bf2a6a2020-01-23 07:10:22 +0000464 osigchld = ssh_signal(SIGCHLD, SIG_DFL);
djm@openbsd.orgbcc50d82015-05-21 06:43:30 +0000465
466 /* Prepare and verify the user for the command */
467 username = percent_expand(options.authorized_principals_command_user,
468 "u", user_pw->pw_name, (char *)NULL);
djm@openbsd.org7c856852018-03-03 03:15:51 +0000469 runas_pw = getpwnam(username);
470 if (runas_pw == NULL) {
djm@openbsd.orgbcc50d82015-05-21 06:43:30 +0000471 error("AuthorizedPrincipalsCommandUser \"%s\" not found: %s",
472 username, strerror(errno));
473 goto out;
474 }
475
476 /* Turn the command into an argument vector */
djm@openbsd.orgde4ae072017-08-18 05:36:45 +0000477 if (argv_split(options.authorized_principals_command, &ac, &av) != 0) {
djm@openbsd.orgbcc50d82015-05-21 06:43:30 +0000478 error("AuthorizedPrincipalsCommand \"%s\" contains "
djm@openbsd.org4cd6b122019-06-21 03:19:59 +0000479 "invalid quotes", options.authorized_principals_command);
djm@openbsd.orgbcc50d82015-05-21 06:43:30 +0000480 goto out;
481 }
482 if (ac == 0) {
483 error("AuthorizedPrincipalsCommand \"%s\" yielded no arguments",
djm@openbsd.org4cd6b122019-06-21 03:19:59 +0000484 options.authorized_principals_command);
djm@openbsd.orgbcc50d82015-05-21 06:43:30 +0000485 goto out;
486 }
djm@openbsd.orge7907c12016-09-14 05:42:25 +0000487 if ((ca_fp = sshkey_fingerprint(cert->signature_key,
488 options.fingerprint_hash, SSH_FP_DEFAULT)) == NULL) {
489 error("%s: sshkey_fingerprint failed", __func__);
490 goto out;
491 }
djm@openbsd.org00df97f2016-09-14 20:11:26 +0000492 if ((key_fp = sshkey_fingerprint(key,
djm@openbsd.orge7907c12016-09-14 05:42:25 +0000493 options.fingerprint_hash, SSH_FP_DEFAULT)) == NULL) {
494 error("%s: sshkey_fingerprint failed", __func__);
495 goto out;
496 }
497 if ((r = sshkey_to_base64(cert->signature_key, &catext)) != 0) {
498 error("%s: sshkey_to_base64 failed: %s", __func__, ssh_err(r));
499 goto out;
500 }
501 if ((r = sshkey_to_base64(key, &keytext)) != 0) {
502 error("%s: sshkey_to_base64 failed: %s", __func__, ssh_err(r));
503 goto out;
504 }
djm@openbsd.orgf83a0cf2016-09-21 17:44:20 +0000505 snprintf(serial_s, sizeof(serial_s), "%llu",
506 (unsigned long long)cert->serial);
djm@openbsd.org9c935dd2018-06-01 03:33:53 +0000507 snprintf(uidstr, sizeof(uidstr), "%llu",
508 (unsigned long long)user_pw->pw_uid);
djm@openbsd.orgbcc50d82015-05-21 06:43:30 +0000509 for (i = 1; i < ac; i++) {
510 tmp = percent_expand(av[i],
djm@openbsd.org9c935dd2018-06-01 03:33:53 +0000511 "U", uidstr,
djm@openbsd.orgbcc50d82015-05-21 06:43:30 +0000512 "u", user_pw->pw_name,
513 "h", user_pw->pw_dir,
djm@openbsd.orge7907c12016-09-14 05:42:25 +0000514 "t", sshkey_ssh_name(key),
515 "T", sshkey_ssh_name(cert->signature_key),
516 "f", key_fp,
517 "F", ca_fp,
518 "k", keytext,
519 "K", catext,
djm@openbsd.orgbfa9d962016-09-21 01:34:45 +0000520 "i", cert->key_id,
521 "s", serial_s,
djm@openbsd.orgbcc50d82015-05-21 06:43:30 +0000522 (char *)NULL);
523 if (tmp == NULL)
524 fatal("%s: percent_expand failed", __func__);
525 free(av[i]);
526 av[i] = tmp;
527 }
528 /* Prepare a printable command for logs, etc. */
djm@openbsd.orgde4ae072017-08-18 05:36:45 +0000529 command = argv_assemble(ac, av);
djm@openbsd.orgbcc50d82015-05-21 06:43:30 +0000530
djm@openbsd.org7c856852018-03-03 03:15:51 +0000531 if ((pid = subprocess("AuthorizedPrincipalsCommand", runas_pw, command,
djm@openbsd.orgde4ae072017-08-18 05:36:45 +0000532 ac, av, &f,
533 SSH_SUBPROCESS_STDOUT_CAPTURE|SSH_SUBPROCESS_STDERR_DISCARD)) == 0)
djm@openbsd.orgbcc50d82015-05-21 06:43:30 +0000534 goto out;
535
536 uid_swapped = 1;
djm@openbsd.org7c856852018-03-03 03:15:51 +0000537 temporarily_use_uid(runas_pw);
djm@openbsd.orgbcc50d82015-05-21 06:43:30 +0000538
djm@openbsd.org7c856852018-03-03 03:15:51 +0000539 ok = process_principals(ssh, f, "(command)", cert, authoptsp);
djm@openbsd.orgbcc50d82015-05-21 06:43:30 +0000540
djm@openbsd.orgddd3d342016-12-30 22:08:02 +0000541 fclose(f);
542 f = NULL;
543
djm@openbsd.orgb074c3c2017-08-18 05:48:04 +0000544 if (exited_cleanly(pid, "AuthorizedPrincipalsCommand", command, 0) != 0)
djm@openbsd.orgbcc50d82015-05-21 06:43:30 +0000545 goto out;
546
547 /* Read completed successfully */
548 found_principal = ok;
549 out:
550 if (f != NULL)
551 fclose(f);
dtucker@openbsd.org3bf2a6a2020-01-23 07:10:22 +0000552 ssh_signal(SIGCHLD, osigchld);
djm@openbsd.orgbcc50d82015-05-21 06:43:30 +0000553 for (i = 0; i < ac; i++)
554 free(av[i]);
555 free(av);
556 if (uid_swapped)
557 restore_uid();
558 free(command);
559 free(username);
djm@openbsd.orge7907c12016-09-14 05:42:25 +0000560 free(ca_fp);
561 free(key_fp);
562 free(catext);
563 free(keytext);
djm@openbsd.orgbcc50d82015-05-21 06:43:30 +0000564 return found_principal;
565}
djm@openbsd.org7c856852018-03-03 03:15:51 +0000566
djm@openbsd.org7c856852018-03-03 03:15:51 +0000567/*
djm@openbsd.org7c856852018-03-03 03:15:51 +0000568 * Check a single line of an authorized_keys-format file. Returns 0 if key
569 * matches, -1 otherwise. Will return key/cert options via *authoptsp
570 * on success. "loc" is used as file/line location in log messages.
571 */
572static int
573check_authkey_line(struct ssh *ssh, struct passwd *pw, struct sshkey *key,
574 char *cp, const char *loc, struct sshauthopt **authoptsp)
575{
576 int want_keytype = sshkey_is_cert(key) ? KEY_UNSPEC : key->type;
577 struct sshkey *found = NULL;
578 struct sshauthopt *keyopts = NULL, *certopts = NULL, *finalopts = NULL;
579 char *key_options = NULL, *fp = NULL;
580 const char *reason = NULL;
581 int ret = -1;
582
583 if (authoptsp != NULL)
584 *authoptsp = NULL;
585
586 if ((found = sshkey_new(want_keytype)) == NULL) {
587 debug3("%s: keytype %d failed", __func__, want_keytype);
588 goto out;
589 }
590
591 /* XXX djm: peek at key type in line and skip if unwanted */
592
593 if (sshkey_read(found, &cp) != 0) {
594 /* no key? check for options */
595 debug2("%s: check options: '%s'", loc, cp);
596 key_options = cp;
djm@openbsd.orgdd8002f2019-09-03 08:30:47 +0000597 if (sshkey_advance_past_options(&cp) != 0) {
djm@openbsd.org7c856852018-03-03 03:15:51 +0000598 reason = "invalid key option string";
599 goto fail_reason;
600 }
601 skip_space(&cp);
602 if (sshkey_read(found, &cp) != 0) {
603 /* still no key? advance to next line*/
604 debug2("%s: advance: '%s'", loc, cp);
605 goto out;
606 }
607 }
608 /* Parse key options now; we need to know if this is a CA key */
609 if ((keyopts = sshauthopt_parse(key_options, &reason)) == NULL) {
610 debug("%s: bad key options: %s", loc, reason);
611 auth_debug_add("%s: bad key options: %s", loc, reason);
612 goto out;
613 }
614 /* Ignore keys that don't match or incorrectly marked as CAs */
615 if (sshkey_is_cert(key)) {
616 /* Certificate; check signature key against CA */
617 if (!sshkey_equal(found, key->cert->signature_key) ||
618 !keyopts->cert_authority)
619 goto out;
620 } else {
621 /* Plain key: check it against key found in file */
622 if (!sshkey_equal(found, key) || keyopts->cert_authority)
623 goto out;
624 }
625
626 /* We have a candidate key, perform authorisation checks */
627 if ((fp = sshkey_fingerprint(found,
628 options.fingerprint_hash, SSH_FP_DEFAULT)) == NULL)
629 fatal("%s: fingerprint failed", __func__);
630
631 debug("%s: matching %s found: %s %s", loc,
632 sshkey_is_cert(key) ? "CA" : "key", sshkey_type(found), fp);
633
634 if (auth_authorise_keyopts(ssh, pw, keyopts,
635 sshkey_is_cert(key), loc) != 0) {
636 reason = "Refused by key options";
637 goto fail_reason;
638 }
639 /* That's all we need for plain keys. */
640 if (!sshkey_is_cert(key)) {
641 verbose("Accepted key %s %s found at %s",
642 sshkey_type(found), fp, loc);
643 finalopts = keyopts;
644 keyopts = NULL;
645 goto success;
646 }
647
648 /*
649 * Additional authorisation for certificates.
650 */
651
652 /* Parse and check options present in certificate */
653 if ((certopts = sshauthopt_from_cert(key)) == NULL) {
654 reason = "Invalid certificate options";
655 goto fail_reason;
656 }
657 if (auth_authorise_keyopts(ssh, pw, certopts, 0, loc) != 0) {
658 reason = "Refused by certificate options";
659 goto fail_reason;
660 }
661 if ((finalopts = sshauthopt_merge(keyopts, certopts, &reason)) == NULL)
662 goto fail_reason;
663
664 /*
665 * If the user has specified a list of principals as
666 * a key option, then prefer that list to matching
667 * their username in the certificate principals list.
668 */
669 if (keyopts->cert_principals != NULL &&
670 !match_principals_option(keyopts->cert_principals, key->cert)) {
671 reason = "Certificate does not contain an authorized principal";
672 goto fail_reason;
673 }
674 if (sshkey_cert_check_authority(key, 0, 0,
675 keyopts->cert_principals == NULL ? pw->pw_name : NULL, &reason) != 0)
676 goto fail_reason;
677
678 verbose("Accepted certificate ID \"%s\" (serial %llu) "
679 "signed by CA %s %s found at %s",
680 key->cert->key_id,
681 (unsigned long long)key->cert->serial,
682 sshkey_type(found), fp, loc);
683
684 success:
685 if (finalopts == NULL)
686 fatal("%s: internal error: missing options", __func__);
687 if (authoptsp != NULL) {
688 *authoptsp = finalopts;
689 finalopts = NULL;
690 }
691 /* success */
692 ret = 0;
693 goto out;
694
695 fail_reason:
696 error("%s", reason);
697 auth_debug_add("%s", reason);
698 out:
699 free(fp);
700 sshauthopt_free(keyopts);
701 sshauthopt_free(certopts);
702 sshauthopt_free(finalopts);
703 sshkey_free(found);
704 return ret;
705}
706
Damien Miller09d3e122012-10-31 08:58:58 +1100707/*
708 * Checks whether key is allowed in authorized_keys-format file,
709 * returns 1 if the key is allowed or 0 otherwise.
710 */
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000711static int
djm@openbsd.org7c856852018-03-03 03:15:51 +0000712check_authkeys_file(struct ssh *ssh, struct passwd *pw, FILE *f,
713 char *file, struct sshkey *key, struct sshauthopt **authoptsp)
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000714{
markus@openbsd.org7f906352018-06-06 18:29:18 +0000715 char *cp, *line = NULL, loc[256];
716 size_t linesize = 0;
Darren Tucker33c787f2008-07-02 22:37:30 +1000717 int found_key = 0;
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000718 u_long linenum = 0;
djm@openbsd.org7c856852018-03-03 03:15:51 +0000719
720 if (authoptsp != NULL)
721 *authoptsp = NULL;
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000722
markus@openbsd.org7f906352018-06-06 18:29:18 +0000723 while (getline(&line, &linesize, f) != -1) {
724 linenum++;
djm@openbsd.orgabd59662017-09-07 23:48:09 +0000725 /* Always consume entire file */
djm@openbsd.org52763dd2017-01-30 01:03:00 +0000726 if (found_key)
727 continue;
Damien Miller0a80ca12010-02-27 07:55:05 +1100728
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000729 /* Skip leading whitespace, empty and comment lines. */
djm@openbsd.org7c856852018-03-03 03:15:51 +0000730 cp = line;
731 skip_space(&cp);
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000732 if (!*cp || *cp == '\n' || *cp == '#')
733 continue;
djm@openbsd.org7c856852018-03-03 03:15:51 +0000734 snprintf(loc, sizeof(loc), "%.200s:%lu", file, linenum);
735 if (check_authkey_line(ssh, pw, key, cp, loc, authoptsp) == 0)
Damien Miller0a80ca12010-02-27 07:55:05 +1100736 found_key = 1;
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000737 }
markus@openbsd.org7f906352018-06-06 18:29:18 +0000738 free(line);
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000739 return found_key;
740}
741
Damien Miller1aed65e2010-03-04 21:53:35 +1100742/* Authenticate a certificate key against TrustedUserCAKeys */
743static int
djm@openbsd.org7c856852018-03-03 03:15:51 +0000744user_cert_trusted_ca(struct ssh *ssh, struct passwd *pw, struct sshkey *key,
745 struct sshauthopt **authoptsp)
Damien Miller1aed65e2010-03-04 21:53:35 +1100746{
Damien Miller30da3442010-05-10 11:58:03 +1000747 char *ca_fp, *principals_file = NULL;
Damien Miller1aed65e2010-03-04 21:53:35 +1100748 const char *reason;
djm@openbsd.org7c856852018-03-03 03:15:51 +0000749 struct sshauthopt *principals_opts = NULL, *cert_opts = NULL;
750 struct sshauthopt *final_opts = NULL;
markus@openbsd.org00ed75c2017-05-30 14:10:53 +0000751 int r, ret = 0, found_principal = 0, use_authorized_principals;
Damien Miller1aed65e2010-03-04 21:53:35 +1100752
djm@openbsd.org7c856852018-03-03 03:15:51 +0000753 if (authoptsp != NULL)
754 *authoptsp = NULL;
755
markus@openbsd.org00ed75c2017-05-30 14:10:53 +0000756 if (!sshkey_is_cert(key) || options.trusted_user_ca_keys == NULL)
Damien Miller1aed65e2010-03-04 21:53:35 +1100757 return 0;
758
djm@openbsd.org9ce86c92015-01-28 22:36:00 +0000759 if ((ca_fp = sshkey_fingerprint(key->cert->signature_key,
760 options.fingerprint_hash, SSH_FP_DEFAULT)) == NULL)
761 return 0;
Damien Miller1aed65e2010-03-04 21:53:35 +1100762
markus@openbsd.org00ed75c2017-05-30 14:10:53 +0000763 if ((r = sshkey_in_file(key->cert->signature_key,
764 options.trusted_user_ca_keys, 1, 0)) != 0) {
765 debug2("%s: CA %s %s is not listed in %s: %s", __func__,
766 sshkey_type(key->cert->signature_key), ca_fp,
767 options.trusted_user_ca_keys, ssh_err(r));
Damien Miller1aed65e2010-03-04 21:53:35 +1100768 goto out;
769 }
Damien Miller30da3442010-05-10 11:58:03 +1000770 /*
771 * If AuthorizedPrincipals is in use, then compare the certificate
772 * principals against the names in that file rather than matching
773 * against the username.
774 */
775 if ((principals_file = authorized_principals_file(pw)) != NULL) {
djm@openbsd.org7c856852018-03-03 03:15:51 +0000776 if (match_principals_file(ssh, pw, principals_file,
777 key->cert, &principals_opts))
djm@openbsd.orgbcc50d82015-05-21 06:43:30 +0000778 found_principal = 1;
779 }
780 /* Try querying command if specified */
djm@openbsd.org7c856852018-03-03 03:15:51 +0000781 if (!found_principal && match_principals_command(ssh, pw, key,
782 &principals_opts))
djm@openbsd.orgbcc50d82015-05-21 06:43:30 +0000783 found_principal = 1;
jsing@openbsd.org596dbca2015-06-15 18:44:22 +0000784 /* If principals file or command is specified, then require a match */
785 use_authorized_principals = principals_file != NULL ||
786 options.authorized_principals_command != NULL;
787 if (!found_principal && use_authorized_principals) {
djm@openbsd.orgbcc50d82015-05-21 06:43:30 +0000788 reason = "Certificate does not contain an authorized principal";
djm@openbsd.org7c856852018-03-03 03:15:51 +0000789 goto fail_reason;
Damien Miller1aed65e2010-03-04 21:53:35 +1100790 }
djm@openbsd.org7c856852018-03-03 03:15:51 +0000791 if (use_authorized_principals && principals_opts == NULL)
792 fatal("%s: internal error: missing principals_opts", __func__);
markus@openbsd.org00ed75c2017-05-30 14:10:53 +0000793 if (sshkey_cert_check_authority(key, 0, 1,
jsing@openbsd.org596dbca2015-06-15 18:44:22 +0000794 use_authorized_principals ? NULL : pw->pw_name, &reason) != 0)
Damien Miller30da3442010-05-10 11:58:03 +1000795 goto fail_reason;
Damien Miller1aed65e2010-03-04 21:53:35 +1100796
djm@openbsd.org7c856852018-03-03 03:15:51 +0000797 /* Check authority from options in key and from principals file/cmd */
798 if ((cert_opts = sshauthopt_from_cert(key)) == NULL) {
799 reason = "Invalid certificate options";
800 goto fail_reason;
801 }
802 if (auth_authorise_keyopts(ssh, pw, cert_opts, 0, "cert") != 0) {
803 reason = "Refused by certificate options";
804 goto fail_reason;
805 }
806 if (principals_opts == NULL) {
807 final_opts = cert_opts;
808 cert_opts = NULL;
809 } else {
810 if (auth_authorise_keyopts(ssh, pw, principals_opts, 0,
811 "principals") != 0) {
812 reason = "Refused by certificate principals options";
813 goto fail_reason;
814 }
815 if ((final_opts = sshauthopt_merge(principals_opts,
816 cert_opts, &reason)) == NULL) {
817 fail_reason:
818 error("%s", reason);
819 auth_debug_add("%s", reason);
820 goto out;
821 }
822 }
823
824 /* Success */
djm@openbsd.org63d18812015-10-27 01:44:45 +0000825 verbose("Accepted certificate ID \"%s\" (serial %llu) signed by "
826 "%s CA %s via %s", key->cert->key_id,
827 (unsigned long long)key->cert->serial,
markus@openbsd.org00ed75c2017-05-30 14:10:53 +0000828 sshkey_type(key->cert->signature_key), ca_fp,
Damien Millere513a912010-03-22 05:51:21 +1100829 options.trusted_user_ca_keys);
djm@openbsd.org7c856852018-03-03 03:15:51 +0000830 if (authoptsp != NULL) {
831 *authoptsp = final_opts;
832 final_opts = NULL;
833 }
Damien Miller1aed65e2010-03-04 21:53:35 +1100834 ret = 1;
Damien Miller1aed65e2010-03-04 21:53:35 +1100835 out:
djm@openbsd.org7c856852018-03-03 03:15:51 +0000836 sshauthopt_free(principals_opts);
837 sshauthopt_free(cert_opts);
838 sshauthopt_free(final_opts);
Darren Tuckera627d422013-06-02 07:31:17 +1000839 free(principals_file);
840 free(ca_fp);
Damien Miller1aed65e2010-03-04 21:53:35 +1100841 return ret;
842}
843
Damien Miller09d3e122012-10-31 08:58:58 +1100844/*
845 * Checks whether key is allowed in file.
846 * returns 1 if the key is allowed or 0 otherwise.
847 */
848static int
djm@openbsd.org7c856852018-03-03 03:15:51 +0000849user_key_allowed2(struct ssh *ssh, struct passwd *pw, struct sshkey *key,
850 char *file, struct sshauthopt **authoptsp)
Damien Miller09d3e122012-10-31 08:58:58 +1100851{
852 FILE *f;
853 int found_key = 0;
854
djm@openbsd.org7c856852018-03-03 03:15:51 +0000855 if (authoptsp != NULL)
856 *authoptsp = NULL;
857
Damien Miller09d3e122012-10-31 08:58:58 +1100858 /* Temporarily use the user's uid. */
859 temporarily_use_uid(pw);
860
861 debug("trying public key file %s", file);
862 if ((f = auth_openkeyfile(file, pw, options.strict_modes)) != NULL) {
djm@openbsd.org7c856852018-03-03 03:15:51 +0000863 found_key = check_authkeys_file(ssh, pw, f, file,
864 key, authoptsp);
Damien Miller09d3e122012-10-31 08:58:58 +1100865 fclose(f);
866 }
867
868 restore_uid();
869 return found_key;
870}
871
872/*
873 * Checks whether key is allowed in output of command.
874 * returns 1 if the key is allowed or 0 otherwise.
875 */
876static int
djm@openbsd.org7c856852018-03-03 03:15:51 +0000877user_key_command_allowed2(struct ssh *ssh, struct passwd *user_pw,
878 struct sshkey *key, struct sshauthopt **authoptsp)
Damien Miller09d3e122012-10-31 08:58:58 +1100879{
djm@openbsd.org7c856852018-03-03 03:15:51 +0000880 struct passwd *runas_pw = NULL;
djm@openbsd.org24232a32015-05-21 06:38:35 +0000881 FILE *f = NULL;
882 int r, ok, found_key = 0;
djm@openbsd.org24232a32015-05-21 06:38:35 +0000883 int i, uid_swapped = 0, ac = 0;
Damien Miller09d3e122012-10-31 08:58:58 +1100884 pid_t pid;
djm@openbsd.org24232a32015-05-21 06:38:35 +0000885 char *username = NULL, *key_fp = NULL, *keytext = NULL;
djm@openbsd.org9c935dd2018-06-01 03:33:53 +0000886 char uidstr[32], *tmp, *command = NULL, **av = NULL;
djm@openbsd.org24232a32015-05-21 06:38:35 +0000887 void (*osigchld)(int);
Damien Miller09d3e122012-10-31 08:58:58 +1100888
djm@openbsd.org7c856852018-03-03 03:15:51 +0000889 if (authoptsp != NULL)
890 *authoptsp = NULL;
djm@openbsd.org24232a32015-05-21 06:38:35 +0000891 if (options.authorized_keys_command == NULL)
Damien Miller09d3e122012-10-31 08:58:58 +1100892 return 0;
Damien Millerd0d10992012-11-04 22:23:14 +1100893 if (options.authorized_keys_command_user == NULL) {
894 error("No user for AuthorizedKeysCommand specified, skipping");
895 return 0;
Damien Miller09d3e122012-10-31 08:58:58 +1100896 }
897
djm@openbsd.org24232a32015-05-21 06:38:35 +0000898 /*
899 * NB. all returns later this function should go via "out" to
900 * ensure the original SIGCHLD handler is restored properly.
901 */
dtucker@openbsd.org3bf2a6a2020-01-23 07:10:22 +0000902 osigchld = ssh_signal(SIGCHLD, SIG_DFL);
djm@openbsd.org24232a32015-05-21 06:38:35 +0000903
904 /* Prepare and verify the user for the command */
Damien Millerd0d10992012-11-04 22:23:14 +1100905 username = percent_expand(options.authorized_keys_command_user,
906 "u", user_pw->pw_name, (char *)NULL);
djm@openbsd.org7c856852018-03-03 03:15:51 +0000907 runas_pw = getpwnam(username);
908 if (runas_pw == NULL) {
Damien Miller4018dc02013-02-15 10:28:55 +1100909 error("AuthorizedKeysCommandUser \"%s\" not found: %s",
910 username, strerror(errno));
Damien Miller09d3e122012-10-31 08:58:58 +1100911 goto out;
912 }
913
djm@openbsd.org24232a32015-05-21 06:38:35 +0000914 /* Prepare AuthorizedKeysCommand */
915 if ((key_fp = sshkey_fingerprint(key, options.fingerprint_hash,
916 SSH_FP_DEFAULT)) == NULL) {
917 error("%s: sshkey_fingerprint failed", __func__);
918 goto out;
919 }
920 if ((r = sshkey_to_base64(key, &keytext)) != 0) {
921 error("%s: sshkey_to_base64 failed: %s", __func__, ssh_err(r));
Damien Miller09d3e122012-10-31 08:58:58 +1100922 goto out;
923 }
924
djm@openbsd.org24232a32015-05-21 06:38:35 +0000925 /* Turn the command into an argument vector */
djm@openbsd.orgde4ae072017-08-18 05:36:45 +0000926 if (argv_split(options.authorized_keys_command, &ac, &av) != 0) {
djm@openbsd.org24232a32015-05-21 06:38:35 +0000927 error("AuthorizedKeysCommand \"%s\" contains invalid quotes",
928 command);
929 goto out;
930 }
931 if (ac == 0) {
932 error("AuthorizedKeysCommand \"%s\" yielded no arguments",
933 command);
934 goto out;
935 }
djm@openbsd.org9c935dd2018-06-01 03:33:53 +0000936 snprintf(uidstr, sizeof(uidstr), "%llu",
937 (unsigned long long)user_pw->pw_uid);
djm@openbsd.org24232a32015-05-21 06:38:35 +0000938 for (i = 1; i < ac; i++) {
939 tmp = percent_expand(av[i],
djm@openbsd.org9c935dd2018-06-01 03:33:53 +0000940 "U", uidstr,
djm@openbsd.org24232a32015-05-21 06:38:35 +0000941 "u", user_pw->pw_name,
942 "h", user_pw->pw_dir,
943 "t", sshkey_ssh_name(key),
944 "f", key_fp,
945 "k", keytext,
946 (char *)NULL);
947 if (tmp == NULL)
948 fatal("%s: percent_expand failed", __func__);
949 free(av[i]);
950 av[i] = tmp;
951 }
952 /* Prepare a printable command for logs, etc. */
djm@openbsd.orgde4ae072017-08-18 05:36:45 +0000953 command = argv_assemble(ac, av);
Damien Miller09d3e122012-10-31 08:58:58 +1100954
955 /*
djm@openbsd.org24232a32015-05-21 06:38:35 +0000956 * If AuthorizedKeysCommand was run without arguments
957 * then fall back to the old behaviour of passing the
958 * target username as a single argument.
Damien Miller09d3e122012-10-31 08:58:58 +1100959 */
djm@openbsd.org24232a32015-05-21 06:38:35 +0000960 if (ac == 1) {
961 av = xreallocarray(av, ac + 2, sizeof(*av));
962 av[1] = xstrdup(user_pw->pw_name);
963 av[2] = NULL;
964 /* Fix up command too, since it is used in log messages */
965 free(command);
966 xasprintf(&command, "%s %s", av[0], av[1]);
Damien Miller09d3e122012-10-31 08:58:58 +1100967 }
968
djm@openbsd.org7c856852018-03-03 03:15:51 +0000969 if ((pid = subprocess("AuthorizedKeysCommand", runas_pw, command,
djm@openbsd.orgde4ae072017-08-18 05:36:45 +0000970 ac, av, &f,
971 SSH_SUBPROCESS_STDOUT_CAPTURE|SSH_SUBPROCESS_STDERR_DISCARD)) == 0)
djm@openbsd.org24232a32015-05-21 06:38:35 +0000972 goto out;
973
974 uid_swapped = 1;
djm@openbsd.org7c856852018-03-03 03:15:51 +0000975 temporarily_use_uid(runas_pw);
Damien Miller09d3e122012-10-31 08:58:58 +1100976
djm@openbsd.org7c856852018-03-03 03:15:51 +0000977 ok = check_authkeys_file(ssh, user_pw, f,
978 options.authorized_keys_command, key, authoptsp);
Damien Miller09d3e122012-10-31 08:58:58 +1100979
djm@openbsd.orgddd3d342016-12-30 22:08:02 +0000980 fclose(f);
981 f = NULL;
982
djm@openbsd.orgb074c3c2017-08-18 05:48:04 +0000983 if (exited_cleanly(pid, "AuthorizedKeysCommand", command, 0) != 0)
Damien Miller09d3e122012-10-31 08:58:58 +1100984 goto out;
djm@openbsd.org24232a32015-05-21 06:38:35 +0000985
986 /* Read completed successfully */
Damien Miller09d3e122012-10-31 08:58:58 +1100987 found_key = ok;
988 out:
djm@openbsd.org24232a32015-05-21 06:38:35 +0000989 if (f != NULL)
990 fclose(f);
dtucker@openbsd.org3bf2a6a2020-01-23 07:10:22 +0000991 ssh_signal(SIGCHLD, osigchld);
djm@openbsd.org24232a32015-05-21 06:38:35 +0000992 for (i = 0; i < ac; i++)
993 free(av[i]);
994 free(av);
995 if (uid_swapped)
996 restore_uid();
997 free(command);
998 free(username);
999 free(key_fp);
1000 free(keytext);
Damien Miller09d3e122012-10-31 08:58:58 +11001001 return found_key;
1002}
1003
1004/*
1005 * Check whether key authenticates and authorises the user.
1006 */
Ben Lindstrom855bf3a2002-06-06 20:27:55 +00001007int
djm@openbsd.org7c856852018-03-03 03:15:51 +00001008user_key_allowed(struct ssh *ssh, struct passwd *pw, struct sshkey *key,
1009 int auth_attempt, struct sshauthopt **authoptsp)
Ben Lindstrom855bf3a2002-06-06 20:27:55 +00001010{
djm@openbsd.orgc95b90d2019-06-14 03:39:59 +00001011 u_int success = 0, i;
Ben Lindstrom855bf3a2002-06-06 20:27:55 +00001012 char *file;
djm@openbsd.org7c856852018-03-03 03:15:51 +00001013 struct sshauthopt *opts = NULL;
djm@openbsd.orgc95b90d2019-06-14 03:39:59 +00001014
djm@openbsd.org7c856852018-03-03 03:15:51 +00001015 if (authoptsp != NULL)
1016 *authoptsp = NULL;
Ben Lindstrom855bf3a2002-06-06 20:27:55 +00001017
Damien Miller1aed65e2010-03-04 21:53:35 +11001018 if (auth_key_is_revoked(key))
1019 return 0;
markus@openbsd.org00ed75c2017-05-30 14:10:53 +00001020 if (sshkey_is_cert(key) &&
1021 auth_key_is_revoked(key->cert->signature_key))
Damien Miller1aed65e2010-03-04 21:53:35 +11001022 return 0;
1023
djm@openbsd.orgc95b90d2019-06-14 03:39:59 +00001024 for (i = 0; !success && i < options.num_authkeys_files; i++) {
1025 if (strcasecmp(options.authorized_keys_files[i], "none") == 0)
1026 continue;
1027 file = expand_authorized_keys(
1028 options.authorized_keys_files[i], pw);
1029 success = user_key_allowed2(ssh, pw, key, file, &opts);
1030 free(file);
1031 if (!success) {
1032 sshauthopt_free(opts);
1033 opts = NULL;
1034 }
1035 }
1036 if (success)
1037 goto out;
1038
djm@openbsd.org7c856852018-03-03 03:15:51 +00001039 if ((success = user_cert_trusted_ca(ssh, pw, key, &opts)) != 0)
1040 goto out;
1041 sshauthopt_free(opts);
1042 opts = NULL;
Damien Miller1aed65e2010-03-04 21:53:35 +11001043
djm@openbsd.org7c856852018-03-03 03:15:51 +00001044 if ((success = user_key_command_allowed2(ssh, pw, key, &opts)) != 0)
1045 goto out;
1046 sshauthopt_free(opts);
1047 opts = NULL;
Damien Miller09d3e122012-10-31 08:58:58 +11001048
djm@openbsd.org7c856852018-03-03 03:15:51 +00001049 out:
1050 if (success && authoptsp != NULL) {
1051 *authoptsp = opts;
1052 opts = NULL;
1053 }
1054 sshauthopt_free(opts);
Ben Lindstrom855bf3a2002-06-06 20:27:55 +00001055 return success;
1056}
1057
Ben Lindstrom855bf3a2002-06-06 20:27:55 +00001058Authmethod method_pubkey = {
1059 "publickey",
1060 userauth_pubkey,
1061 &options.pubkey_authentication
1062};