blob: d922eea26ebd0d0a94d57a1f31c2b3736a692ee4 [file] [log] [blame]
djm@openbsd.org1f729f02015-01-13 07:39:19 +00001/* $OpenBSD: auth2-pubkey.c,v 1.45 2015/01/13 07:39:19 djm 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>
Damien Miller09d3e122012-10-31 08:58:58 +110030#include <sys/wait.h>
Ben Lindstrom855bf3a2002-06-06 20:27:55 +000031
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"
50#include "buffer.h"
51#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"
Ben Lindstrom855bf3a2002-06-06 20:27:55 +000055#include "key.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"
Ben Lindstrom855bf3a2002-06-06 20:27:55 +000068
69/* import */
70extern ServerOptions options;
71extern u_char *session_id2;
Darren Tucker502d3842003-06-28 12:38:01 +100072extern u_int session_id2_len;
Ben Lindstrom855bf3a2002-06-06 20:27:55 +000073
74static int
75userauth_pubkey(Authctxt *authctxt)
76{
77 Buffer b;
78 Key *key = NULL;
Damien Miller4ce189d2013-04-23 15:17:52 +100079 char *pkalg, *userstyle;
Ben Lindstrom855bf3a2002-06-06 20:27:55 +000080 u_char *pkblob, *sig;
81 u_int alen, blen, slen;
82 int have_sig, pktype;
83 int authenticated = 0;
84
85 if (!authctxt->valid) {
86 debug2("userauth_pubkey: disabled because of invalid user");
87 return 0;
88 }
89 have_sig = packet_get_char();
90 if (datafellows & SSH_BUG_PKAUTH) {
91 debug2("userauth_pubkey: SSH_BUG_PKAUTH");
92 /* no explicit pkalg given */
93 pkblob = packet_get_string(&blen);
94 buffer_init(&b);
95 buffer_append(&b, pkblob, blen);
96 /* so we have to extract the pkalg from the pkblob */
97 pkalg = buffer_get_string(&b, &alen);
98 buffer_free(&b);
99 } else {
100 pkalg = packet_get_string(&alen);
101 pkblob = packet_get_string(&blen);
102 }
103 pktype = key_type_from_name(pkalg);
104 if (pktype == KEY_UNSPEC) {
105 /* this is perfectly legal */
Damien Miller996acd22003-04-09 20:59:48 +1000106 logit("userauth_pubkey: unsupported public key algorithm: %s",
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000107 pkalg);
108 goto done;
109 }
110 key = key_from_blob(pkblob, blen);
111 if (key == NULL) {
112 error("userauth_pubkey: cannot decode key: %s", pkalg);
113 goto done;
114 }
115 if (key->type != pktype) {
116 error("userauth_pubkey: type mismatch for decoded key "
117 "(received %d, expected %d)", key->type, pktype);
118 goto done;
119 }
Damien Miller324541e2013-12-31 12:25:40 +1100120 if (key_type_plain(key->type) == KEY_RSA &&
121 (datafellows & SSH_BUG_RSASIGMD5) != 0) {
122 logit("Refusing RSA key because client uses unsafe "
123 "signature scheme");
124 goto done;
125 }
djm@openbsd.orgf69b69b2014-12-22 07:51:30 +0000126 if (auth2_userkey_already_used(authctxt, key)) {
127 logit("refusing previously-used %s key", key_type(key));
128 goto done;
129 }
djm@openbsd.org1f729f02015-01-13 07:39:19 +0000130 if (match_pattern_list(sshkey_ssh_name(key), options.pubkey_key_types,
131 strlen(options.pubkey_key_types), 0) != 1) {
132 logit("%s: key type %s not in PubkeyAcceptedKeyTypes",
133 __func__, sshkey_ssh_name(key));
134 goto done;
135 }
136
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000137 if (have_sig) {
138 sig = packet_get_string(&slen);
139 packet_check_eom();
140 buffer_init(&b);
141 if (datafellows & SSH_OLD_SESSIONID) {
142 buffer_append(&b, session_id2, session_id2_len);
143 } else {
144 buffer_put_string(&b, session_id2, session_id2_len);
145 }
146 /* reconstruct packet */
147 buffer_put_char(&b, SSH2_MSG_USERAUTH_REQUEST);
Damien Miller4ce189d2013-04-23 15:17:52 +1000148 xasprintf(&userstyle, "%s%s%s", authctxt->user,
149 authctxt->style ? ":" : "",
150 authctxt->style ? authctxt->style : "");
151 buffer_put_cstring(&b, userstyle);
152 free(userstyle);
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000153 buffer_put_cstring(&b,
154 datafellows & SSH_BUG_PKSERVICE ?
155 "ssh-userauth" :
156 authctxt->service);
157 if (datafellows & SSH_BUG_PKAUTH) {
158 buffer_put_char(&b, have_sig);
159 } else {
160 buffer_put_cstring(&b, "publickey");
161 buffer_put_char(&b, have_sig);
162 buffer_put_cstring(&b, pkalg);
163 }
164 buffer_put_string(&b, pkblob, blen);
165#ifdef DEBUG_PK
166 buffer_dump(&b);
167#endif
Damien Miller20bdcd72013-07-18 16:10:09 +1000168 pubkey_auth_info(authctxt, key, NULL);
Darren Tucker74836ae2013-06-02 07:32:00 +1000169
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000170 /* test for correct signature */
171 authenticated = 0;
172 if (PRIVSEP(user_key_allowed(authctxt->pw, key)) &&
173 PRIVSEP(key_verify(key, sig, slen, buffer_ptr(&b),
djm@openbsd.orgf69b69b2014-12-22 07:51:30 +0000174 buffer_len(&b))) == 1) {
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000175 authenticated = 1;
djm@openbsd.orgf69b69b2014-12-22 07:51:30 +0000176 /* Record the successful key to prevent reuse */
177 auth2_record_userkey(authctxt, key);
178 key = NULL; /* Don't free below */
179 }
Damien Millerfb1310e2004-01-21 11:02:50 +1100180 buffer_free(&b);
Darren Tuckera627d422013-06-02 07:31:17 +1000181 free(sig);
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000182 } else {
183 debug("test whether pkalg/pkblob are acceptable");
184 packet_check_eom();
185
186 /* XXX fake reply and always send PK_OK ? */
187 /*
188 * XXX this allows testing whether a user is allowed
189 * to login: if you happen to have a valid pubkey this
190 * message is sent. the message is NEVER sent at all
191 * if a user is not allowed to login. is this an
192 * issue? -markus
193 */
194 if (PRIVSEP(user_key_allowed(authctxt->pw, key))) {
195 packet_start(SSH2_MSG_USERAUTH_PK_OK);
196 packet_put_string(pkalg, alen);
197 packet_put_string(pkblob, blen);
198 packet_send();
199 packet_write_wait();
200 authctxt->postponed = 1;
201 }
202 }
203 if (authenticated != 1)
204 auth_clear_options();
205done:
206 debug2("userauth_pubkey: authenticated %d pkalg %s", authenticated, pkalg);
207 if (key != NULL)
208 key_free(key);
Darren Tuckera627d422013-06-02 07:31:17 +1000209 free(pkalg);
210 free(pkblob);
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000211 return authenticated;
212}
213
Darren Tucker74836ae2013-06-02 07:32:00 +1000214void
Damien Miller20bdcd72013-07-18 16:10:09 +1000215pubkey_auth_info(Authctxt *authctxt, const Key *key, const char *fmt, ...)
Darren Tucker74836ae2013-06-02 07:32:00 +1000216{
Damien Miller20bdcd72013-07-18 16:10:09 +1000217 char *fp, *extra;
218 va_list ap;
219 int i;
220
221 extra = NULL;
222 if (fmt != NULL) {
223 va_start(ap, fmt);
224 i = vasprintf(&extra, fmt, ap);
225 va_end(ap);
226 if (i < 0 || extra == NULL)
227 fatal("%s: vasprintf failed", __func__);
228 }
Darren Tucker74836ae2013-06-02 07:32:00 +1000229
230 if (key_is_cert(key)) {
231 fp = key_fingerprint(key->cert->signature_key,
djm@openbsd.org56d1c832014-12-21 22:27:55 +0000232 options.fingerprint_hash, SSH_FP_DEFAULT);
Damien Miller20bdcd72013-07-18 16:10:09 +1000233 auth_info(authctxt, "%s ID %s (serial %llu) CA %s %s%s%s",
Darren Tucker74836ae2013-06-02 07:32:00 +1000234 key_type(key), key->cert->key_id,
235 (unsigned long long)key->cert->serial,
Damien Miller20bdcd72013-07-18 16:10:09 +1000236 key_type(key->cert->signature_key), fp,
237 extra == NULL ? "" : ", ", extra == NULL ? "" : extra);
Darren Tucker74836ae2013-06-02 07:32:00 +1000238 free(fp);
239 } else {
djm@openbsd.org56d1c832014-12-21 22:27:55 +0000240 fp = key_fingerprint(key, options.fingerprint_hash,
241 SSH_FP_DEFAULT);
Damien Miller20bdcd72013-07-18 16:10:09 +1000242 auth_info(authctxt, "%s %s%s%s", key_type(key), fp,
243 extra == NULL ? "" : ", ", extra == NULL ? "" : extra);
Darren Tucker74836ae2013-06-02 07:32:00 +1000244 free(fp);
245 }
Damien Miller20bdcd72013-07-18 16:10:09 +1000246 free(extra);
Darren Tucker74836ae2013-06-02 07:32:00 +1000247}
248
Damien Miller30da3442010-05-10 11:58:03 +1000249static int
Damien Miller86687062014-07-02 15:28:02 +1000250match_principals_option(const char *principal_list, struct sshkey_cert *cert)
Damien Miller30da3442010-05-10 11:58:03 +1000251{
252 char *result;
253 u_int i;
254
255 /* XXX percent_expand() sequences for authorized_principals? */
256
257 for (i = 0; i < cert->nprincipals; i++) {
258 if ((result = match_list(cert->principals[i],
259 principal_list, NULL)) != NULL) {
260 debug3("matched principal from key options \"%.100s\"",
261 result);
Darren Tuckera627d422013-06-02 07:31:17 +1000262 free(result);
Damien Miller30da3442010-05-10 11:58:03 +1000263 return 1;
264 }
265 }
266 return 0;
267}
268
269static int
Damien Miller86687062014-07-02 15:28:02 +1000270match_principals_file(char *file, struct passwd *pw, struct sshkey_cert *cert)
Damien Miller30da3442010-05-10 11:58:03 +1000271{
272 FILE *f;
Damien Miller6018a362010-07-02 13:35:19 +1000273 char line[SSH_MAX_PUBKEY_BYTES], *cp, *ep, *line_opts;
Damien Miller30da3442010-05-10 11:58:03 +1000274 u_long linenum = 0;
275 u_int i;
276
277 temporarily_use_uid(pw);
278 debug("trying authorized principals file %s", file);
279 if ((f = auth_openprincipals(file, pw, options.strict_modes)) == NULL) {
280 restore_uid();
281 return 0;
282 }
283 while (read_keyfile_line(f, file, line, sizeof(line), &linenum) != -1) {
Damien Miller6018a362010-07-02 13:35:19 +1000284 /* Skip leading whitespace. */
Damien Miller30da3442010-05-10 11:58:03 +1000285 for (cp = line; *cp == ' ' || *cp == '\t'; cp++)
286 ;
Damien Miller6018a362010-07-02 13:35:19 +1000287 /* Skip blank and comment lines. */
288 if ((ep = strchr(cp, '#')) != NULL)
289 *ep = '\0';
290 if (!*cp || *cp == '\n')
Damien Miller30da3442010-05-10 11:58:03 +1000291 continue;
Damien Miller6018a362010-07-02 13:35:19 +1000292 /* Trim trailing whitespace. */
293 ep = cp + strlen(cp) - 1;
294 while (ep > cp && (*ep == '\n' || *ep == ' ' || *ep == '\t'))
295 *ep-- = '\0';
296 /*
297 * If the line has internal whitespace then assume it has
298 * key options.
299 */
300 line_opts = NULL;
301 if ((ep = strrchr(cp, ' ')) != NULL ||
302 (ep = strrchr(cp, '\t')) != NULL) {
303 for (; *ep == ' ' || *ep == '\t'; ep++)
Damien Miller188ea812010-12-01 11:50:14 +1100304 ;
Damien Miller6018a362010-07-02 13:35:19 +1000305 line_opts = cp;
306 cp = ep;
307 }
Damien Miller30da3442010-05-10 11:58:03 +1000308 for (i = 0; i < cert->nprincipals; i++) {
309 if (strcmp(cp, cert->principals[i]) == 0) {
Darren Tuckeraf1a60e2011-10-02 18:59:59 +1100310 debug3("matched principal \"%.100s\" "
311 "from file \"%s\" on line %lu",
Damien Miller09d3e122012-10-31 08:58:58 +1100312 cert->principals[i], file, linenum);
Damien Miller6018a362010-07-02 13:35:19 +1000313 if (auth_parse_options(pw, line_opts,
314 file, linenum) != 1)
315 continue;
Damien Miller30da3442010-05-10 11:58:03 +1000316 fclose(f);
317 restore_uid();
318 return 1;
319 }
320 }
321 }
322 fclose(f);
323 restore_uid();
324 return 0;
Damien Miller09d3e122012-10-31 08:58:58 +1100325}
Damien Miller30da3442010-05-10 11:58:03 +1000326
Damien Miller09d3e122012-10-31 08:58:58 +1100327/*
328 * Checks whether key is allowed in authorized_keys-format file,
329 * returns 1 if the key is allowed or 0 otherwise.
330 */
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000331static int
Damien Miller09d3e122012-10-31 08:58:58 +1100332check_authkeys_file(FILE *f, char *file, Key* key, struct passwd *pw)
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000333{
Darren Tucker22cc7412004-12-06 22:47:41 +1100334 char line[SSH_MAX_PUBKEY_BYTES];
Damien Miller0a80ca12010-02-27 07:55:05 +1100335 const char *reason;
Darren Tucker33c787f2008-07-02 22:37:30 +1000336 int found_key = 0;
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000337 u_long linenum = 0;
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000338 Key *found;
339 char *fp;
340
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000341 found_key = 0;
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000342
Darren Tucker74836ae2013-06-02 07:32:00 +1000343 found = NULL;
Darren Tucker22cc7412004-12-06 22:47:41 +1100344 while (read_keyfile_line(f, file, line, sizeof(line), &linenum) != -1) {
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000345 char *cp, *key_options = NULL;
Darren Tucker74836ae2013-06-02 07:32:00 +1000346 if (found != NULL)
347 key_free(found);
348 found = key_new(key_is_cert(key) ? KEY_UNSPEC : key->type);
Damien Miller0a80ca12010-02-27 07:55:05 +1100349 auth_clear_options();
350
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000351 /* Skip leading whitespace, empty and comment lines. */
352 for (cp = line; *cp == ' ' || *cp == '\t'; cp++)
353 ;
354 if (!*cp || *cp == '\n' || *cp == '#')
355 continue;
356
357 if (key_read(found, &cp) != 1) {
358 /* no key? check if there are options for this key */
359 int quoted = 0;
360 debug2("user_key_allowed: check options: '%s'", cp);
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000361 key_options = cp;
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000362 for (; *cp && (quoted || (*cp != ' ' && *cp != '\t')); cp++) {
363 if (*cp == '\\' && cp[1] == '"')
364 cp++; /* Skip both */
365 else if (*cp == '"')
366 quoted = !quoted;
367 }
368 /* Skip remaining whitespace. */
369 for (; *cp == ' ' || *cp == '\t'; cp++)
370 ;
371 if (key_read(found, &cp) != 1) {
372 debug2("user_key_allowed: advance: '%s'", cp);
373 /* still no key? advance to next line*/
374 continue;
375 }
376 }
Damien Miller4e270b02010-04-16 15:56:21 +1000377 if (key_is_cert(key)) {
Damien Miller0a80ca12010-02-27 07:55:05 +1100378 if (!key_equal(found, key->cert->signature_key))
379 continue;
Damien Miller84399552010-05-21 14:58:12 +1000380 if (auth_parse_options(pw, key_options, file,
381 linenum) != 1)
382 continue;
383 if (!key_is_cert_authority)
384 continue;
djm@openbsd.org56d1c832014-12-21 22:27:55 +0000385 fp = key_fingerprint(found, options.fingerprint_hash,
386 SSH_FP_DEFAULT);
Damien Millere513a912010-03-22 05:51:21 +1100387 debug("matching CA found: file %s, line %lu, %s %s",
388 file, linenum, key_type(found), fp);
Damien Miller30da3442010-05-10 11:58:03 +1000389 /*
390 * If the user has specified a list of principals as
391 * a key option, then prefer that list to matching
392 * their username in the certificate principals list.
393 */
394 if (authorized_principals != NULL &&
395 !match_principals_option(authorized_principals,
396 key->cert)) {
397 reason = "Certificate does not contain an "
398 "authorized principal";
399 fail_reason:
Darren Tuckera627d422013-06-02 07:31:17 +1000400 free(fp);
Damien Miller0a80ca12010-02-27 07:55:05 +1100401 error("%s", reason);
402 auth_debug_add("%s", reason);
403 continue;
404 }
Damien Miller30da3442010-05-10 11:58:03 +1000405 if (key_cert_check_authority(key, 0, 0,
406 authorized_principals == NULL ? pw->pw_name : NULL,
407 &reason) != 0)
408 goto fail_reason;
Damien Miller4e270b02010-04-16 15:56:21 +1000409 if (auth_cert_options(key, pw) != 0) {
Darren Tuckera627d422013-06-02 07:31:17 +1000410 free(fp);
Damien Miller0a80ca12010-02-27 07:55:05 +1100411 continue;
Damien Millere513a912010-03-22 05:51:21 +1100412 }
413 verbose("Accepted certificate ID \"%s\" "
414 "signed by %s CA %s via %s", key->cert->key_id,
415 key_type(found), fp, file);
Darren Tuckera627d422013-06-02 07:31:17 +1000416 free(fp);
Damien Miller0a80ca12010-02-27 07:55:05 +1100417 found_key = 1;
418 break;
Damien Miller84399552010-05-21 14:58:12 +1000419 } else if (key_equal(found, key)) {
420 if (auth_parse_options(pw, key_options, file,
421 linenum) != 1)
422 continue;
423 if (key_is_cert_authority)
424 continue;
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000425 found_key = 1;
djm@openbsd.org56d1c832014-12-21 22:27:55 +0000426 fp = key_fingerprint(found, options.fingerprint_hash,
427 SSH_FP_DEFAULT);
Darren Tucker74836ae2013-06-02 07:32:00 +1000428 debug("matching key found: file %s, line %lu %s %s",
429 file, linenum, key_type(found), fp);
Darren Tuckera627d422013-06-02 07:31:17 +1000430 free(fp);
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000431 break;
432 }
433 }
Darren Tucker74836ae2013-06-02 07:32:00 +1000434 if (found != NULL)
435 key_free(found);
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000436 if (!found_key)
437 debug2("key not found");
438 return found_key;
439}
440
Damien Miller1aed65e2010-03-04 21:53:35 +1100441/* Authenticate a certificate key against TrustedUserCAKeys */
442static int
443user_cert_trusted_ca(struct passwd *pw, Key *key)
444{
Damien Miller30da3442010-05-10 11:58:03 +1000445 char *ca_fp, *principals_file = NULL;
Damien Miller1aed65e2010-03-04 21:53:35 +1100446 const char *reason;
447 int ret = 0;
448
449 if (!key_is_cert(key) || options.trusted_user_ca_keys == NULL)
450 return 0;
451
Damien Millere513a912010-03-22 05:51:21 +1100452 ca_fp = key_fingerprint(key->cert->signature_key,
djm@openbsd.org56d1c832014-12-21 22:27:55 +0000453 options.fingerprint_hash, SSH_FP_DEFAULT);
Damien Miller1aed65e2010-03-04 21:53:35 +1100454
djm@openbsd.org5e39a492014-12-04 02:24:32 +0000455 if (sshkey_in_file(key->cert->signature_key,
456 options.trusted_user_ca_keys, 1, 0) != 0) {
Damien Miller1aed65e2010-03-04 21:53:35 +1100457 debug2("%s: CA %s %s is not listed in %s", __func__,
458 key_type(key->cert->signature_key), ca_fp,
459 options.trusted_user_ca_keys);
460 goto out;
461 }
Damien Miller30da3442010-05-10 11:58:03 +1000462 /*
463 * If AuthorizedPrincipals is in use, then compare the certificate
464 * principals against the names in that file rather than matching
465 * against the username.
466 */
467 if ((principals_file = authorized_principals_file(pw)) != NULL) {
468 if (!match_principals_file(principals_file, pw, key->cert)) {
469 reason = "Certificate does not contain an "
470 "authorized principal";
471 fail_reason:
472 error("%s", reason);
473 auth_debug_add("%s", reason);
474 goto out;
475 }
Damien Miller1aed65e2010-03-04 21:53:35 +1100476 }
Damien Miller30da3442010-05-10 11:58:03 +1000477 if (key_cert_check_authority(key, 0, 1,
478 principals_file == NULL ? pw->pw_name : NULL, &reason) != 0)
479 goto fail_reason;
Damien Miller4e270b02010-04-16 15:56:21 +1000480 if (auth_cert_options(key, pw) != 0)
Damien Miller1aed65e2010-03-04 21:53:35 +1100481 goto out;
482
Damien Millere513a912010-03-22 05:51:21 +1100483 verbose("Accepted certificate ID \"%s\" signed by %s CA %s via %s",
484 key->cert->key_id, key_type(key->cert->signature_key), ca_fp,
485 options.trusted_user_ca_keys);
Damien Miller1aed65e2010-03-04 21:53:35 +1100486 ret = 1;
487
488 out:
Darren Tuckera627d422013-06-02 07:31:17 +1000489 free(principals_file);
490 free(ca_fp);
Damien Miller1aed65e2010-03-04 21:53:35 +1100491 return ret;
492}
493
Damien Miller09d3e122012-10-31 08:58:58 +1100494/*
495 * Checks whether key is allowed in file.
496 * returns 1 if the key is allowed or 0 otherwise.
497 */
498static int
499user_key_allowed2(struct passwd *pw, Key *key, char *file)
500{
501 FILE *f;
502 int found_key = 0;
503
504 /* Temporarily use the user's uid. */
505 temporarily_use_uid(pw);
506
507 debug("trying public key file %s", file);
508 if ((f = auth_openkeyfile(file, pw, options.strict_modes)) != NULL) {
509 found_key = check_authkeys_file(f, file, key, pw);
510 fclose(f);
511 }
512
513 restore_uid();
514 return found_key;
515}
516
517/*
518 * Checks whether key is allowed in output of command.
519 * returns 1 if the key is allowed or 0 otherwise.
520 */
521static int
522user_key_command_allowed2(struct passwd *user_pw, Key *key)
523{
524 FILE *f;
525 int ok, found_key = 0;
526 struct passwd *pw;
527 struct stat st;
528 int status, devnull, p[2], i;
529 pid_t pid;
Damien Millerd0d10992012-11-04 22:23:14 +1100530 char *username, errmsg[512];
Damien Miller09d3e122012-10-31 08:58:58 +1100531
532 if (options.authorized_keys_command == NULL ||
533 options.authorized_keys_command[0] != '/')
534 return 0;
535
Damien Millerd0d10992012-11-04 22:23:14 +1100536 if (options.authorized_keys_command_user == NULL) {
537 error("No user for AuthorizedKeysCommand specified, skipping");
538 return 0;
Damien Miller09d3e122012-10-31 08:58:58 +1100539 }
540
Damien Millerd0d10992012-11-04 22:23:14 +1100541 username = percent_expand(options.authorized_keys_command_user,
542 "u", user_pw->pw_name, (char *)NULL);
543 pw = getpwnam(username);
544 if (pw == NULL) {
Damien Miller4018dc02013-02-15 10:28:55 +1100545 error("AuthorizedKeysCommandUser \"%s\" not found: %s",
546 username, strerror(errno));
Damien Millerd0d10992012-11-04 22:23:14 +1100547 free(username);
548 return 0;
549 }
550 free(username);
551
Damien Miller09d3e122012-10-31 08:58:58 +1100552 temporarily_use_uid(pw);
553
554 if (stat(options.authorized_keys_command, &st) < 0) {
555 error("Could not stat AuthorizedKeysCommand \"%s\": %s",
556 options.authorized_keys_command, strerror(errno));
557 goto out;
558 }
559 if (auth_secure_path(options.authorized_keys_command, &st, NULL, 0,
560 errmsg, sizeof(errmsg)) != 0) {
561 error("Unsafe AuthorizedKeysCommand: %s", errmsg);
562 goto out;
563 }
564
565 if (pipe(p) != 0) {
566 error("%s: pipe: %s", __func__, strerror(errno));
567 goto out;
568 }
569
Damien Miller1e854692012-11-14 19:04:02 +1100570 debug3("Running AuthorizedKeysCommand: \"%s %s\" as \"%s\"",
571 options.authorized_keys_command, user_pw->pw_name, pw->pw_name);
Damien Miller09d3e122012-10-31 08:58:58 +1100572
573 /*
574 * Don't want to call this in the child, where it can fatal() and
575 * run cleanup_exit() code.
576 */
577 restore_uid();
578
579 switch ((pid = fork())) {
580 case -1: /* error */
581 error("%s: fork: %s", __func__, strerror(errno));
582 close(p[0]);
583 close(p[1]);
584 return 0;
585 case 0: /* child */
586 for (i = 0; i < NSIG; i++)
587 signal(i, SIG_DFL);
588
Damien Miller1e854692012-11-14 19:04:02 +1100589 if ((devnull = open(_PATH_DEVNULL, O_RDWR)) == -1) {
590 error("%s: open %s: %s", __func__, _PATH_DEVNULL,
591 strerror(errno));
592 _exit(1);
593 }
594 /* Keep stderr around a while longer to catch errors */
595 if (dup2(devnull, STDIN_FILENO) == -1 ||
596 dup2(p[1], STDOUT_FILENO) == -1) {
597 error("%s: dup2: %s", __func__, strerror(errno));
598 _exit(1);
599 }
Damien Millerd0d10992012-11-04 22:23:14 +1100600 closefrom(STDERR_FILENO + 1);
Damien Miller1e854692012-11-14 19:04:02 +1100601
Damien Miller09d3e122012-10-31 08:58:58 +1100602 /* Don't use permanently_set_uid() here to avoid fatal() */
603 if (setresgid(pw->pw_gid, pw->pw_gid, pw->pw_gid) != 0) {
604 error("setresgid %u: %s", (u_int)pw->pw_gid,
605 strerror(errno));
606 _exit(1);
607 }
608 if (setresuid(pw->pw_uid, pw->pw_uid, pw->pw_uid) != 0) {
609 error("setresuid %u: %s", (u_int)pw->pw_uid,
610 strerror(errno));
611 _exit(1);
612 }
Damien Miller1e854692012-11-14 19:04:02 +1100613 /* stdin is pointed to /dev/null at this point */
614 if (dup2(STDIN_FILENO, STDERR_FILENO) == -1) {
Damien Miller09d3e122012-10-31 08:58:58 +1100615 error("%s: dup2: %s", __func__, strerror(errno));
616 _exit(1);
617 }
Damien Miller09d3e122012-10-31 08:58:58 +1100618
619 execl(options.authorized_keys_command,
Damien Miller1e854692012-11-14 19:04:02 +1100620 options.authorized_keys_command, user_pw->pw_name, NULL);
Damien Miller09d3e122012-10-31 08:58:58 +1100621
622 error("AuthorizedKeysCommand %s exec failed: %s",
623 options.authorized_keys_command, strerror(errno));
624 _exit(127);
625 default: /* parent */
626 break;
627 }
628
629 temporarily_use_uid(pw);
630
631 close(p[1]);
632 if ((f = fdopen(p[0], "r")) == NULL) {
633 error("%s: fdopen: %s", __func__, strerror(errno));
634 close(p[0]);
635 /* Don't leave zombie child */
636 kill(pid, SIGTERM);
637 while (waitpid(pid, NULL, 0) == -1 && errno == EINTR)
638 ;
639 goto out;
640 }
641 ok = check_authkeys_file(f, options.authorized_keys_command, key, pw);
642 fclose(f);
643
644 while (waitpid(pid, &status, 0) == -1) {
645 if (errno != EINTR) {
646 error("%s: waitpid: %s", __func__, strerror(errno));
647 goto out;
648 }
649 }
650 if (WIFSIGNALED(status)) {
651 error("AuthorizedKeysCommand %s exited on signal %d",
652 options.authorized_keys_command, WTERMSIG(status));
653 goto out;
654 } else if (WEXITSTATUS(status) != 0) {
655 error("AuthorizedKeysCommand %s returned status %d",
656 options.authorized_keys_command, WEXITSTATUS(status));
657 goto out;
658 }
659 found_key = ok;
660 out:
661 restore_uid();
662 return found_key;
663}
664
665/*
666 * Check whether key authenticates and authorises the user.
667 */
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000668int
669user_key_allowed(struct passwd *pw, Key *key)
670{
Damien Millerd8478b62011-05-29 21:39:36 +1000671 u_int success, i;
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000672 char *file;
673
Damien Miller1aed65e2010-03-04 21:53:35 +1100674 if (auth_key_is_revoked(key))
675 return 0;
676 if (key_is_cert(key) && auth_key_is_revoked(key->cert->signature_key))
677 return 0;
678
679 success = user_cert_trusted_ca(pw, key);
680 if (success)
681 return success;
682
Damien Miller09d3e122012-10-31 08:58:58 +1100683 success = user_key_command_allowed2(pw, key);
684 if (success > 0)
685 return success;
686
Damien Millerd8478b62011-05-29 21:39:36 +1000687 for (i = 0; !success && i < options.num_authkeys_files; i++) {
Damien Miller09d3e122012-10-31 08:58:58 +1100688
689 if (strcasecmp(options.authorized_keys_files[i], "none") == 0)
690 continue;
Damien Millerd8478b62011-05-29 21:39:36 +1000691 file = expand_authorized_keys(
692 options.authorized_keys_files[i], pw);
Damien Miller09d3e122012-10-31 08:58:58 +1100693
Damien Millerd8478b62011-05-29 21:39:36 +1000694 success = user_key_allowed2(pw, key, file);
Darren Tuckera627d422013-06-02 07:31:17 +1000695 free(file);
Damien Millerd8478b62011-05-29 21:39:36 +1000696 }
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000697
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000698 return success;
699}
700
djm@openbsd.orgf69b69b2014-12-22 07:51:30 +0000701/* Records a public key in the list of previously-successful keys */
702void
703auth2_record_userkey(Authctxt *authctxt, struct sshkey *key)
704{
705 struct sshkey **tmp;
706
707 if (authctxt->nprev_userkeys >= INT_MAX ||
708 (tmp = reallocarray(authctxt->prev_userkeys,
709 authctxt->nprev_userkeys + 1, sizeof(*tmp))) == NULL)
710 fatal("%s: reallocarray failed", __func__);
711 authctxt->prev_userkeys = tmp;
712 authctxt->prev_userkeys[authctxt->nprev_userkeys] = key;
713 authctxt->nprev_userkeys++;
714}
715
716/* Checks whether a key has already been used successfully for authentication */
717int
718auth2_userkey_already_used(Authctxt *authctxt, struct sshkey *key)
719{
720 u_int i;
721
722 for (i = 0; i < authctxt->nprev_userkeys; i++) {
723 if (sshkey_equal_public(key, authctxt->prev_userkeys[i])) {
724 return 1;
725 }
726 }
727 return 0;
728}
729
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000730Authmethod method_pubkey = {
731 "publickey",
732 userauth_pubkey,
733 &options.pubkey_authentication
734};