blob: 04b70e3629cc14abe2eef9d67de2b79b5334f45c [file] [log] [blame]
djm@openbsd.org56d1c832014-12-21 22:27:55 +00001/* $OpenBSD: auth2-pubkey.c,v 1.43 2014/12/21 22:27:56 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>
Damien Miller9f2abc42006-07-10 20:53:08 +100044
Damien Millerd7834352006-08-05 12:39:39 +100045#include "xmalloc.h"
Darren Tucker22cc7412004-12-06 22:47:41 +110046#include "ssh.h"
Ben Lindstrom855bf3a2002-06-06 20:27:55 +000047#include "ssh2.h"
Ben Lindstrom855bf3a2002-06-06 20:27:55 +000048#include "packet.h"
49#include "buffer.h"
50#include "log.h"
Damien Miller7acefbb2014-07-18 14:11:24 +100051#include "misc.h"
Ben Lindstrom855bf3a2002-06-06 20:27:55 +000052#include "servconf.h"
53#include "compat.h"
Ben Lindstrom855bf3a2002-06-06 20:27:55 +000054#include "key.h"
Damien Millerd7834352006-08-05 12:39:39 +100055#include "hostfile.h"
56#include "auth.h"
Ben Lindstrom855bf3a2002-06-06 20:27:55 +000057#include "pathnames.h"
58#include "uidswap.h"
59#include "auth-options.h"
60#include "canohost.h"
Damien Millerd7834352006-08-05 12:39:39 +100061#ifdef GSSAPI
62#include "ssh-gss.h"
63#endif
Ben Lindstrom855bf3a2002-06-06 20:27:55 +000064#include "monitor_wrap.h"
Damien Miller1aed65e2010-03-04 21:53:35 +110065#include "authfile.h"
Damien Miller30da3442010-05-10 11:58:03 +100066#include "match.h"
Ben Lindstrom855bf3a2002-06-06 20:27:55 +000067
68/* import */
69extern ServerOptions options;
70extern u_char *session_id2;
Darren Tucker502d3842003-06-28 12:38:01 +100071extern u_int session_id2_len;
Ben Lindstrom855bf3a2002-06-06 20:27:55 +000072
73static int
74userauth_pubkey(Authctxt *authctxt)
75{
76 Buffer b;
77 Key *key = NULL;
Damien Miller4ce189d2013-04-23 15:17:52 +100078 char *pkalg, *userstyle;
Ben Lindstrom855bf3a2002-06-06 20:27:55 +000079 u_char *pkblob, *sig;
80 u_int alen, blen, slen;
81 int have_sig, pktype;
82 int authenticated = 0;
83
84 if (!authctxt->valid) {
85 debug2("userauth_pubkey: disabled because of invalid user");
86 return 0;
87 }
88 have_sig = packet_get_char();
89 if (datafellows & SSH_BUG_PKAUTH) {
90 debug2("userauth_pubkey: SSH_BUG_PKAUTH");
91 /* no explicit pkalg given */
92 pkblob = packet_get_string(&blen);
93 buffer_init(&b);
94 buffer_append(&b, pkblob, blen);
95 /* so we have to extract the pkalg from the pkblob */
96 pkalg = buffer_get_string(&b, &alen);
97 buffer_free(&b);
98 } else {
99 pkalg = packet_get_string(&alen);
100 pkblob = packet_get_string(&blen);
101 }
102 pktype = key_type_from_name(pkalg);
103 if (pktype == KEY_UNSPEC) {
104 /* this is perfectly legal */
Damien Miller996acd22003-04-09 20:59:48 +1000105 logit("userauth_pubkey: unsupported public key algorithm: %s",
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000106 pkalg);
107 goto done;
108 }
109 key = key_from_blob(pkblob, blen);
110 if (key == NULL) {
111 error("userauth_pubkey: cannot decode key: %s", pkalg);
112 goto done;
113 }
114 if (key->type != pktype) {
115 error("userauth_pubkey: type mismatch for decoded key "
116 "(received %d, expected %d)", key->type, pktype);
117 goto done;
118 }
Damien Miller324541e2013-12-31 12:25:40 +1100119 if (key_type_plain(key->type) == KEY_RSA &&
120 (datafellows & SSH_BUG_RSASIGMD5) != 0) {
121 logit("Refusing RSA key because client uses unsafe "
122 "signature scheme");
123 goto done;
124 }
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000125 if (have_sig) {
126 sig = packet_get_string(&slen);
127 packet_check_eom();
128 buffer_init(&b);
129 if (datafellows & SSH_OLD_SESSIONID) {
130 buffer_append(&b, session_id2, session_id2_len);
131 } else {
132 buffer_put_string(&b, session_id2, session_id2_len);
133 }
134 /* reconstruct packet */
135 buffer_put_char(&b, SSH2_MSG_USERAUTH_REQUEST);
Damien Miller4ce189d2013-04-23 15:17:52 +1000136 xasprintf(&userstyle, "%s%s%s", authctxt->user,
137 authctxt->style ? ":" : "",
138 authctxt->style ? authctxt->style : "");
139 buffer_put_cstring(&b, userstyle);
140 free(userstyle);
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000141 buffer_put_cstring(&b,
142 datafellows & SSH_BUG_PKSERVICE ?
143 "ssh-userauth" :
144 authctxt->service);
145 if (datafellows & SSH_BUG_PKAUTH) {
146 buffer_put_char(&b, have_sig);
147 } else {
148 buffer_put_cstring(&b, "publickey");
149 buffer_put_char(&b, have_sig);
150 buffer_put_cstring(&b, pkalg);
151 }
152 buffer_put_string(&b, pkblob, blen);
153#ifdef DEBUG_PK
154 buffer_dump(&b);
155#endif
Damien Miller20bdcd72013-07-18 16:10:09 +1000156 pubkey_auth_info(authctxt, key, NULL);
Darren Tucker74836ae2013-06-02 07:32:00 +1000157
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000158 /* test for correct signature */
159 authenticated = 0;
160 if (PRIVSEP(user_key_allowed(authctxt->pw, key)) &&
161 PRIVSEP(key_verify(key, sig, slen, buffer_ptr(&b),
Damien Millerfb1310e2004-01-21 11:02:50 +1100162 buffer_len(&b))) == 1)
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000163 authenticated = 1;
Damien Millerfb1310e2004-01-21 11:02:50 +1100164 buffer_free(&b);
Darren Tuckera627d422013-06-02 07:31:17 +1000165 free(sig);
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000166 } else {
167 debug("test whether pkalg/pkblob are acceptable");
168 packet_check_eom();
169
170 /* XXX fake reply and always send PK_OK ? */
171 /*
172 * XXX this allows testing whether a user is allowed
173 * to login: if you happen to have a valid pubkey this
174 * message is sent. the message is NEVER sent at all
175 * if a user is not allowed to login. is this an
176 * issue? -markus
177 */
178 if (PRIVSEP(user_key_allowed(authctxt->pw, key))) {
179 packet_start(SSH2_MSG_USERAUTH_PK_OK);
180 packet_put_string(pkalg, alen);
181 packet_put_string(pkblob, blen);
182 packet_send();
183 packet_write_wait();
184 authctxt->postponed = 1;
185 }
186 }
187 if (authenticated != 1)
188 auth_clear_options();
189done:
190 debug2("userauth_pubkey: authenticated %d pkalg %s", authenticated, pkalg);
191 if (key != NULL)
192 key_free(key);
Darren Tuckera627d422013-06-02 07:31:17 +1000193 free(pkalg);
194 free(pkblob);
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000195 return authenticated;
196}
197
Darren Tucker74836ae2013-06-02 07:32:00 +1000198void
Damien Miller20bdcd72013-07-18 16:10:09 +1000199pubkey_auth_info(Authctxt *authctxt, const Key *key, const char *fmt, ...)
Darren Tucker74836ae2013-06-02 07:32:00 +1000200{
Damien Miller20bdcd72013-07-18 16:10:09 +1000201 char *fp, *extra;
202 va_list ap;
203 int i;
204
205 extra = NULL;
206 if (fmt != NULL) {
207 va_start(ap, fmt);
208 i = vasprintf(&extra, fmt, ap);
209 va_end(ap);
210 if (i < 0 || extra == NULL)
211 fatal("%s: vasprintf failed", __func__);
212 }
Darren Tucker74836ae2013-06-02 07:32:00 +1000213
214 if (key_is_cert(key)) {
215 fp = key_fingerprint(key->cert->signature_key,
djm@openbsd.org56d1c832014-12-21 22:27:55 +0000216 options.fingerprint_hash, SSH_FP_DEFAULT);
Damien Miller20bdcd72013-07-18 16:10:09 +1000217 auth_info(authctxt, "%s ID %s (serial %llu) CA %s %s%s%s",
Darren Tucker74836ae2013-06-02 07:32:00 +1000218 key_type(key), key->cert->key_id,
219 (unsigned long long)key->cert->serial,
Damien Miller20bdcd72013-07-18 16:10:09 +1000220 key_type(key->cert->signature_key), fp,
221 extra == NULL ? "" : ", ", extra == NULL ? "" : extra);
Darren Tucker74836ae2013-06-02 07:32:00 +1000222 free(fp);
223 } else {
djm@openbsd.org56d1c832014-12-21 22:27:55 +0000224 fp = key_fingerprint(key, options.fingerprint_hash,
225 SSH_FP_DEFAULT);
Damien Miller20bdcd72013-07-18 16:10:09 +1000226 auth_info(authctxt, "%s %s%s%s", key_type(key), fp,
227 extra == NULL ? "" : ", ", extra == NULL ? "" : extra);
Darren Tucker74836ae2013-06-02 07:32:00 +1000228 free(fp);
229 }
Damien Miller20bdcd72013-07-18 16:10:09 +1000230 free(extra);
Darren Tucker74836ae2013-06-02 07:32:00 +1000231}
232
Damien Miller30da3442010-05-10 11:58:03 +1000233static int
Damien Miller86687062014-07-02 15:28:02 +1000234match_principals_option(const char *principal_list, struct sshkey_cert *cert)
Damien Miller30da3442010-05-10 11:58:03 +1000235{
236 char *result;
237 u_int i;
238
239 /* XXX percent_expand() sequences for authorized_principals? */
240
241 for (i = 0; i < cert->nprincipals; i++) {
242 if ((result = match_list(cert->principals[i],
243 principal_list, NULL)) != NULL) {
244 debug3("matched principal from key options \"%.100s\"",
245 result);
Darren Tuckera627d422013-06-02 07:31:17 +1000246 free(result);
Damien Miller30da3442010-05-10 11:58:03 +1000247 return 1;
248 }
249 }
250 return 0;
251}
252
253static int
Damien Miller86687062014-07-02 15:28:02 +1000254match_principals_file(char *file, struct passwd *pw, struct sshkey_cert *cert)
Damien Miller30da3442010-05-10 11:58:03 +1000255{
256 FILE *f;
Damien Miller6018a362010-07-02 13:35:19 +1000257 char line[SSH_MAX_PUBKEY_BYTES], *cp, *ep, *line_opts;
Damien Miller30da3442010-05-10 11:58:03 +1000258 u_long linenum = 0;
259 u_int i;
260
261 temporarily_use_uid(pw);
262 debug("trying authorized principals file %s", file);
263 if ((f = auth_openprincipals(file, pw, options.strict_modes)) == NULL) {
264 restore_uid();
265 return 0;
266 }
267 while (read_keyfile_line(f, file, line, sizeof(line), &linenum) != -1) {
Damien Miller6018a362010-07-02 13:35:19 +1000268 /* Skip leading whitespace. */
Damien Miller30da3442010-05-10 11:58:03 +1000269 for (cp = line; *cp == ' ' || *cp == '\t'; cp++)
270 ;
Damien Miller6018a362010-07-02 13:35:19 +1000271 /* Skip blank and comment lines. */
272 if ((ep = strchr(cp, '#')) != NULL)
273 *ep = '\0';
274 if (!*cp || *cp == '\n')
Damien Miller30da3442010-05-10 11:58:03 +1000275 continue;
Damien Miller6018a362010-07-02 13:35:19 +1000276 /* Trim trailing whitespace. */
277 ep = cp + strlen(cp) - 1;
278 while (ep > cp && (*ep == '\n' || *ep == ' ' || *ep == '\t'))
279 *ep-- = '\0';
280 /*
281 * If the line has internal whitespace then assume it has
282 * key options.
283 */
284 line_opts = NULL;
285 if ((ep = strrchr(cp, ' ')) != NULL ||
286 (ep = strrchr(cp, '\t')) != NULL) {
287 for (; *ep == ' ' || *ep == '\t'; ep++)
Damien Miller188ea812010-12-01 11:50:14 +1100288 ;
Damien Miller6018a362010-07-02 13:35:19 +1000289 line_opts = cp;
290 cp = ep;
291 }
Damien Miller30da3442010-05-10 11:58:03 +1000292 for (i = 0; i < cert->nprincipals; i++) {
293 if (strcmp(cp, cert->principals[i]) == 0) {
Darren Tuckeraf1a60e2011-10-02 18:59:59 +1100294 debug3("matched principal \"%.100s\" "
295 "from file \"%s\" on line %lu",
Damien Miller09d3e122012-10-31 08:58:58 +1100296 cert->principals[i], file, linenum);
Damien Miller6018a362010-07-02 13:35:19 +1000297 if (auth_parse_options(pw, line_opts,
298 file, linenum) != 1)
299 continue;
Damien Miller30da3442010-05-10 11:58:03 +1000300 fclose(f);
301 restore_uid();
302 return 1;
303 }
304 }
305 }
306 fclose(f);
307 restore_uid();
308 return 0;
Damien Miller09d3e122012-10-31 08:58:58 +1100309}
Damien Miller30da3442010-05-10 11:58:03 +1000310
Damien Miller09d3e122012-10-31 08:58:58 +1100311/*
312 * Checks whether key is allowed in authorized_keys-format file,
313 * returns 1 if the key is allowed or 0 otherwise.
314 */
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000315static int
Damien Miller09d3e122012-10-31 08:58:58 +1100316check_authkeys_file(FILE *f, char *file, Key* key, struct passwd *pw)
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000317{
Darren Tucker22cc7412004-12-06 22:47:41 +1100318 char line[SSH_MAX_PUBKEY_BYTES];
Damien Miller0a80ca12010-02-27 07:55:05 +1100319 const char *reason;
Darren Tucker33c787f2008-07-02 22:37:30 +1000320 int found_key = 0;
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000321 u_long linenum = 0;
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000322 Key *found;
323 char *fp;
324
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000325 found_key = 0;
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000326
Darren Tucker74836ae2013-06-02 07:32:00 +1000327 found = NULL;
Darren Tucker22cc7412004-12-06 22:47:41 +1100328 while (read_keyfile_line(f, file, line, sizeof(line), &linenum) != -1) {
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000329 char *cp, *key_options = NULL;
Darren Tucker74836ae2013-06-02 07:32:00 +1000330 if (found != NULL)
331 key_free(found);
332 found = key_new(key_is_cert(key) ? KEY_UNSPEC : key->type);
Damien Miller0a80ca12010-02-27 07:55:05 +1100333 auth_clear_options();
334
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000335 /* Skip leading whitespace, empty and comment lines. */
336 for (cp = line; *cp == ' ' || *cp == '\t'; cp++)
337 ;
338 if (!*cp || *cp == '\n' || *cp == '#')
339 continue;
340
341 if (key_read(found, &cp) != 1) {
342 /* no key? check if there are options for this key */
343 int quoted = 0;
344 debug2("user_key_allowed: check options: '%s'", cp);
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000345 key_options = cp;
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000346 for (; *cp && (quoted || (*cp != ' ' && *cp != '\t')); cp++) {
347 if (*cp == '\\' && cp[1] == '"')
348 cp++; /* Skip both */
349 else if (*cp == '"')
350 quoted = !quoted;
351 }
352 /* Skip remaining whitespace. */
353 for (; *cp == ' ' || *cp == '\t'; cp++)
354 ;
355 if (key_read(found, &cp) != 1) {
356 debug2("user_key_allowed: advance: '%s'", cp);
357 /* still no key? advance to next line*/
358 continue;
359 }
360 }
Damien Miller4e270b02010-04-16 15:56:21 +1000361 if (key_is_cert(key)) {
Damien Miller0a80ca12010-02-27 07:55:05 +1100362 if (!key_equal(found, key->cert->signature_key))
363 continue;
Damien Miller84399552010-05-21 14:58:12 +1000364 if (auth_parse_options(pw, key_options, file,
365 linenum) != 1)
366 continue;
367 if (!key_is_cert_authority)
368 continue;
djm@openbsd.org56d1c832014-12-21 22:27:55 +0000369 fp = key_fingerprint(found, options.fingerprint_hash,
370 SSH_FP_DEFAULT);
Damien Millere513a912010-03-22 05:51:21 +1100371 debug("matching CA found: file %s, line %lu, %s %s",
372 file, linenum, key_type(found), fp);
Damien Miller30da3442010-05-10 11:58:03 +1000373 /*
374 * If the user has specified a list of principals as
375 * a key option, then prefer that list to matching
376 * their username in the certificate principals list.
377 */
378 if (authorized_principals != NULL &&
379 !match_principals_option(authorized_principals,
380 key->cert)) {
381 reason = "Certificate does not contain an "
382 "authorized principal";
383 fail_reason:
Darren Tuckera627d422013-06-02 07:31:17 +1000384 free(fp);
Damien Miller0a80ca12010-02-27 07:55:05 +1100385 error("%s", reason);
386 auth_debug_add("%s", reason);
387 continue;
388 }
Damien Miller30da3442010-05-10 11:58:03 +1000389 if (key_cert_check_authority(key, 0, 0,
390 authorized_principals == NULL ? pw->pw_name : NULL,
391 &reason) != 0)
392 goto fail_reason;
Damien Miller4e270b02010-04-16 15:56:21 +1000393 if (auth_cert_options(key, pw) != 0) {
Darren Tuckera627d422013-06-02 07:31:17 +1000394 free(fp);
Damien Miller0a80ca12010-02-27 07:55:05 +1100395 continue;
Damien Millere513a912010-03-22 05:51:21 +1100396 }
397 verbose("Accepted certificate ID \"%s\" "
398 "signed by %s CA %s via %s", key->cert->key_id,
399 key_type(found), fp, file);
Darren Tuckera627d422013-06-02 07:31:17 +1000400 free(fp);
Damien Miller0a80ca12010-02-27 07:55:05 +1100401 found_key = 1;
402 break;
Damien Miller84399552010-05-21 14:58:12 +1000403 } else if (key_equal(found, key)) {
404 if (auth_parse_options(pw, key_options, file,
405 linenum) != 1)
406 continue;
407 if (key_is_cert_authority)
408 continue;
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000409 found_key = 1;
djm@openbsd.org56d1c832014-12-21 22:27:55 +0000410 fp = key_fingerprint(found, options.fingerprint_hash,
411 SSH_FP_DEFAULT);
Darren Tucker74836ae2013-06-02 07:32:00 +1000412 debug("matching key found: file %s, line %lu %s %s",
413 file, linenum, key_type(found), fp);
Darren Tuckera627d422013-06-02 07:31:17 +1000414 free(fp);
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000415 break;
416 }
417 }
Darren Tucker74836ae2013-06-02 07:32:00 +1000418 if (found != NULL)
419 key_free(found);
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000420 if (!found_key)
421 debug2("key not found");
422 return found_key;
423}
424
Damien Miller1aed65e2010-03-04 21:53:35 +1100425/* Authenticate a certificate key against TrustedUserCAKeys */
426static int
427user_cert_trusted_ca(struct passwd *pw, Key *key)
428{
Damien Miller30da3442010-05-10 11:58:03 +1000429 char *ca_fp, *principals_file = NULL;
Damien Miller1aed65e2010-03-04 21:53:35 +1100430 const char *reason;
431 int ret = 0;
432
433 if (!key_is_cert(key) || options.trusted_user_ca_keys == NULL)
434 return 0;
435
Damien Millere513a912010-03-22 05:51:21 +1100436 ca_fp = key_fingerprint(key->cert->signature_key,
djm@openbsd.org56d1c832014-12-21 22:27:55 +0000437 options.fingerprint_hash, SSH_FP_DEFAULT);
Damien Miller1aed65e2010-03-04 21:53:35 +1100438
djm@openbsd.org5e39a492014-12-04 02:24:32 +0000439 if (sshkey_in_file(key->cert->signature_key,
440 options.trusted_user_ca_keys, 1, 0) != 0) {
Damien Miller1aed65e2010-03-04 21:53:35 +1100441 debug2("%s: CA %s %s is not listed in %s", __func__,
442 key_type(key->cert->signature_key), ca_fp,
443 options.trusted_user_ca_keys);
444 goto out;
445 }
Damien Miller30da3442010-05-10 11:58:03 +1000446 /*
447 * If AuthorizedPrincipals is in use, then compare the certificate
448 * principals against the names in that file rather than matching
449 * against the username.
450 */
451 if ((principals_file = authorized_principals_file(pw)) != NULL) {
452 if (!match_principals_file(principals_file, pw, key->cert)) {
453 reason = "Certificate does not contain an "
454 "authorized principal";
455 fail_reason:
456 error("%s", reason);
457 auth_debug_add("%s", reason);
458 goto out;
459 }
Damien Miller1aed65e2010-03-04 21:53:35 +1100460 }
Damien Miller30da3442010-05-10 11:58:03 +1000461 if (key_cert_check_authority(key, 0, 1,
462 principals_file == NULL ? pw->pw_name : NULL, &reason) != 0)
463 goto fail_reason;
Damien Miller4e270b02010-04-16 15:56:21 +1000464 if (auth_cert_options(key, pw) != 0)
Damien Miller1aed65e2010-03-04 21:53:35 +1100465 goto out;
466
Damien Millere513a912010-03-22 05:51:21 +1100467 verbose("Accepted certificate ID \"%s\" signed by %s CA %s via %s",
468 key->cert->key_id, key_type(key->cert->signature_key), ca_fp,
469 options.trusted_user_ca_keys);
Damien Miller1aed65e2010-03-04 21:53:35 +1100470 ret = 1;
471
472 out:
Darren Tuckera627d422013-06-02 07:31:17 +1000473 free(principals_file);
474 free(ca_fp);
Damien Miller1aed65e2010-03-04 21:53:35 +1100475 return ret;
476}
477
Damien Miller09d3e122012-10-31 08:58:58 +1100478/*
479 * Checks whether key is allowed in file.
480 * returns 1 if the key is allowed or 0 otherwise.
481 */
482static int
483user_key_allowed2(struct passwd *pw, Key *key, char *file)
484{
485 FILE *f;
486 int found_key = 0;
487
488 /* Temporarily use the user's uid. */
489 temporarily_use_uid(pw);
490
491 debug("trying public key file %s", file);
492 if ((f = auth_openkeyfile(file, pw, options.strict_modes)) != NULL) {
493 found_key = check_authkeys_file(f, file, key, pw);
494 fclose(f);
495 }
496
497 restore_uid();
498 return found_key;
499}
500
501/*
502 * Checks whether key is allowed in output of command.
503 * returns 1 if the key is allowed or 0 otherwise.
504 */
505static int
506user_key_command_allowed2(struct passwd *user_pw, Key *key)
507{
508 FILE *f;
509 int ok, found_key = 0;
510 struct passwd *pw;
511 struct stat st;
512 int status, devnull, p[2], i;
513 pid_t pid;
Damien Millerd0d10992012-11-04 22:23:14 +1100514 char *username, errmsg[512];
Damien Miller09d3e122012-10-31 08:58:58 +1100515
516 if (options.authorized_keys_command == NULL ||
517 options.authorized_keys_command[0] != '/')
518 return 0;
519
Damien Millerd0d10992012-11-04 22:23:14 +1100520 if (options.authorized_keys_command_user == NULL) {
521 error("No user for AuthorizedKeysCommand specified, skipping");
522 return 0;
Damien Miller09d3e122012-10-31 08:58:58 +1100523 }
524
Damien Millerd0d10992012-11-04 22:23:14 +1100525 username = percent_expand(options.authorized_keys_command_user,
526 "u", user_pw->pw_name, (char *)NULL);
527 pw = getpwnam(username);
528 if (pw == NULL) {
Damien Miller4018dc02013-02-15 10:28:55 +1100529 error("AuthorizedKeysCommandUser \"%s\" not found: %s",
530 username, strerror(errno));
Damien Millerd0d10992012-11-04 22:23:14 +1100531 free(username);
532 return 0;
533 }
534 free(username);
535
Damien Miller09d3e122012-10-31 08:58:58 +1100536 temporarily_use_uid(pw);
537
538 if (stat(options.authorized_keys_command, &st) < 0) {
539 error("Could not stat AuthorizedKeysCommand \"%s\": %s",
540 options.authorized_keys_command, strerror(errno));
541 goto out;
542 }
543 if (auth_secure_path(options.authorized_keys_command, &st, NULL, 0,
544 errmsg, sizeof(errmsg)) != 0) {
545 error("Unsafe AuthorizedKeysCommand: %s", errmsg);
546 goto out;
547 }
548
549 if (pipe(p) != 0) {
550 error("%s: pipe: %s", __func__, strerror(errno));
551 goto out;
552 }
553
Damien Miller1e854692012-11-14 19:04:02 +1100554 debug3("Running AuthorizedKeysCommand: \"%s %s\" as \"%s\"",
555 options.authorized_keys_command, user_pw->pw_name, pw->pw_name);
Damien Miller09d3e122012-10-31 08:58:58 +1100556
557 /*
558 * Don't want to call this in the child, where it can fatal() and
559 * run cleanup_exit() code.
560 */
561 restore_uid();
562
563 switch ((pid = fork())) {
564 case -1: /* error */
565 error("%s: fork: %s", __func__, strerror(errno));
566 close(p[0]);
567 close(p[1]);
568 return 0;
569 case 0: /* child */
570 for (i = 0; i < NSIG; i++)
571 signal(i, SIG_DFL);
572
Damien Miller1e854692012-11-14 19:04:02 +1100573 if ((devnull = open(_PATH_DEVNULL, O_RDWR)) == -1) {
574 error("%s: open %s: %s", __func__, _PATH_DEVNULL,
575 strerror(errno));
576 _exit(1);
577 }
578 /* Keep stderr around a while longer to catch errors */
579 if (dup2(devnull, STDIN_FILENO) == -1 ||
580 dup2(p[1], STDOUT_FILENO) == -1) {
581 error("%s: dup2: %s", __func__, strerror(errno));
582 _exit(1);
583 }
Damien Millerd0d10992012-11-04 22:23:14 +1100584 closefrom(STDERR_FILENO + 1);
Damien Miller1e854692012-11-14 19:04:02 +1100585
Damien Miller09d3e122012-10-31 08:58:58 +1100586 /* Don't use permanently_set_uid() here to avoid fatal() */
587 if (setresgid(pw->pw_gid, pw->pw_gid, pw->pw_gid) != 0) {
588 error("setresgid %u: %s", (u_int)pw->pw_gid,
589 strerror(errno));
590 _exit(1);
591 }
592 if (setresuid(pw->pw_uid, pw->pw_uid, pw->pw_uid) != 0) {
593 error("setresuid %u: %s", (u_int)pw->pw_uid,
594 strerror(errno));
595 _exit(1);
596 }
Damien Miller1e854692012-11-14 19:04:02 +1100597 /* stdin is pointed to /dev/null at this point */
598 if (dup2(STDIN_FILENO, STDERR_FILENO) == -1) {
Damien Miller09d3e122012-10-31 08:58:58 +1100599 error("%s: dup2: %s", __func__, strerror(errno));
600 _exit(1);
601 }
Damien Miller09d3e122012-10-31 08:58:58 +1100602
603 execl(options.authorized_keys_command,
Damien Miller1e854692012-11-14 19:04:02 +1100604 options.authorized_keys_command, user_pw->pw_name, NULL);
Damien Miller09d3e122012-10-31 08:58:58 +1100605
606 error("AuthorizedKeysCommand %s exec failed: %s",
607 options.authorized_keys_command, strerror(errno));
608 _exit(127);
609 default: /* parent */
610 break;
611 }
612
613 temporarily_use_uid(pw);
614
615 close(p[1]);
616 if ((f = fdopen(p[0], "r")) == NULL) {
617 error("%s: fdopen: %s", __func__, strerror(errno));
618 close(p[0]);
619 /* Don't leave zombie child */
620 kill(pid, SIGTERM);
621 while (waitpid(pid, NULL, 0) == -1 && errno == EINTR)
622 ;
623 goto out;
624 }
625 ok = check_authkeys_file(f, options.authorized_keys_command, key, pw);
626 fclose(f);
627
628 while (waitpid(pid, &status, 0) == -1) {
629 if (errno != EINTR) {
630 error("%s: waitpid: %s", __func__, strerror(errno));
631 goto out;
632 }
633 }
634 if (WIFSIGNALED(status)) {
635 error("AuthorizedKeysCommand %s exited on signal %d",
636 options.authorized_keys_command, WTERMSIG(status));
637 goto out;
638 } else if (WEXITSTATUS(status) != 0) {
639 error("AuthorizedKeysCommand %s returned status %d",
640 options.authorized_keys_command, WEXITSTATUS(status));
641 goto out;
642 }
643 found_key = ok;
644 out:
645 restore_uid();
646 return found_key;
647}
648
649/*
650 * Check whether key authenticates and authorises the user.
651 */
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000652int
653user_key_allowed(struct passwd *pw, Key *key)
654{
Damien Millerd8478b62011-05-29 21:39:36 +1000655 u_int success, i;
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000656 char *file;
657
Damien Miller1aed65e2010-03-04 21:53:35 +1100658 if (auth_key_is_revoked(key))
659 return 0;
660 if (key_is_cert(key) && auth_key_is_revoked(key->cert->signature_key))
661 return 0;
662
663 success = user_cert_trusted_ca(pw, key);
664 if (success)
665 return success;
666
Damien Miller09d3e122012-10-31 08:58:58 +1100667 success = user_key_command_allowed2(pw, key);
668 if (success > 0)
669 return success;
670
Damien Millerd8478b62011-05-29 21:39:36 +1000671 for (i = 0; !success && i < options.num_authkeys_files; i++) {
Damien Miller09d3e122012-10-31 08:58:58 +1100672
673 if (strcasecmp(options.authorized_keys_files[i], "none") == 0)
674 continue;
Damien Millerd8478b62011-05-29 21:39:36 +1000675 file = expand_authorized_keys(
676 options.authorized_keys_files[i], pw);
Damien Miller09d3e122012-10-31 08:58:58 +1100677
Damien Millerd8478b62011-05-29 21:39:36 +1000678 success = user_key_allowed2(pw, key, file);
Darren Tuckera627d422013-06-02 07:31:17 +1000679 free(file);
Damien Millerd8478b62011-05-29 21:39:36 +1000680 }
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000681
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000682 return success;
683}
684
685Authmethod method_pubkey = {
686 "publickey",
687 userauth_pubkey,
688 &options.pubkey_authentication
689};