blob: c28bef7a2f316ebbb4a4207b2dca478c04f14aec [file] [log] [blame]
Damien Miller4ce189d2013-04-23 15:17:52 +10001/* $OpenBSD: auth2-pubkey.c,v 1.35 2013/03/07 00:19:59 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"
51#include "servconf.h"
52#include "compat.h"
Ben Lindstrom855bf3a2002-06-06 20:27:55 +000053#include "key.h"
Damien Millerd7834352006-08-05 12:39:39 +100054#include "hostfile.h"
55#include "auth.h"
Ben Lindstrom855bf3a2002-06-06 20:27:55 +000056#include "pathnames.h"
57#include "uidswap.h"
58#include "auth-options.h"
59#include "canohost.h"
Damien Millerd7834352006-08-05 12:39:39 +100060#ifdef GSSAPI
61#include "ssh-gss.h"
62#endif
Ben Lindstrom855bf3a2002-06-06 20:27:55 +000063#include "monitor_wrap.h"
Darren Tuckerf0f90982004-12-11 13:39:50 +110064#include "misc.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 }
119 if (have_sig) {
120 sig = packet_get_string(&slen);
121 packet_check_eom();
122 buffer_init(&b);
123 if (datafellows & SSH_OLD_SESSIONID) {
124 buffer_append(&b, session_id2, session_id2_len);
125 } else {
126 buffer_put_string(&b, session_id2, session_id2_len);
127 }
128 /* reconstruct packet */
129 buffer_put_char(&b, SSH2_MSG_USERAUTH_REQUEST);
Damien Miller4ce189d2013-04-23 15:17:52 +1000130 xasprintf(&userstyle, "%s%s%s", authctxt->user,
131 authctxt->style ? ":" : "",
132 authctxt->style ? authctxt->style : "");
133 buffer_put_cstring(&b, userstyle);
134 free(userstyle);
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000135 buffer_put_cstring(&b,
136 datafellows & SSH_BUG_PKSERVICE ?
137 "ssh-userauth" :
138 authctxt->service);
139 if (datafellows & SSH_BUG_PKAUTH) {
140 buffer_put_char(&b, have_sig);
141 } else {
142 buffer_put_cstring(&b, "publickey");
143 buffer_put_char(&b, have_sig);
144 buffer_put_cstring(&b, pkalg);
145 }
146 buffer_put_string(&b, pkblob, blen);
147#ifdef DEBUG_PK
148 buffer_dump(&b);
149#endif
150 /* test for correct signature */
151 authenticated = 0;
152 if (PRIVSEP(user_key_allowed(authctxt->pw, key)) &&
153 PRIVSEP(key_verify(key, sig, slen, buffer_ptr(&b),
Damien Millerfb1310e2004-01-21 11:02:50 +1100154 buffer_len(&b))) == 1)
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000155 authenticated = 1;
Damien Millerfb1310e2004-01-21 11:02:50 +1100156 buffer_free(&b);
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000157 xfree(sig);
158 } else {
159 debug("test whether pkalg/pkblob are acceptable");
160 packet_check_eom();
161
162 /* XXX fake reply and always send PK_OK ? */
163 /*
164 * XXX this allows testing whether a user is allowed
165 * to login: if you happen to have a valid pubkey this
166 * message is sent. the message is NEVER sent at all
167 * if a user is not allowed to login. is this an
168 * issue? -markus
169 */
170 if (PRIVSEP(user_key_allowed(authctxt->pw, key))) {
171 packet_start(SSH2_MSG_USERAUTH_PK_OK);
172 packet_put_string(pkalg, alen);
173 packet_put_string(pkblob, blen);
174 packet_send();
175 packet_write_wait();
176 authctxt->postponed = 1;
177 }
178 }
179 if (authenticated != 1)
180 auth_clear_options();
181done:
182 debug2("userauth_pubkey: authenticated %d pkalg %s", authenticated, pkalg);
183 if (key != NULL)
184 key_free(key);
185 xfree(pkalg);
186 xfree(pkblob);
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000187 return authenticated;
188}
189
Damien Miller30da3442010-05-10 11:58:03 +1000190static int
191match_principals_option(const char *principal_list, struct KeyCert *cert)
192{
193 char *result;
194 u_int i;
195
196 /* XXX percent_expand() sequences for authorized_principals? */
197
198 for (i = 0; i < cert->nprincipals; i++) {
199 if ((result = match_list(cert->principals[i],
200 principal_list, NULL)) != NULL) {
201 debug3("matched principal from key options \"%.100s\"",
202 result);
203 xfree(result);
204 return 1;
205 }
206 }
207 return 0;
208}
209
210static int
Damien Miller6018a362010-07-02 13:35:19 +1000211match_principals_file(char *file, struct passwd *pw, struct KeyCert *cert)
Damien Miller30da3442010-05-10 11:58:03 +1000212{
213 FILE *f;
Damien Miller6018a362010-07-02 13:35:19 +1000214 char line[SSH_MAX_PUBKEY_BYTES], *cp, *ep, *line_opts;
Damien Miller30da3442010-05-10 11:58:03 +1000215 u_long linenum = 0;
216 u_int i;
217
218 temporarily_use_uid(pw);
219 debug("trying authorized principals file %s", file);
220 if ((f = auth_openprincipals(file, pw, options.strict_modes)) == NULL) {
221 restore_uid();
222 return 0;
223 }
224 while (read_keyfile_line(f, file, line, sizeof(line), &linenum) != -1) {
Damien Miller6018a362010-07-02 13:35:19 +1000225 /* Skip leading whitespace. */
Damien Miller30da3442010-05-10 11:58:03 +1000226 for (cp = line; *cp == ' ' || *cp == '\t'; cp++)
227 ;
Damien Miller6018a362010-07-02 13:35:19 +1000228 /* Skip blank and comment lines. */
229 if ((ep = strchr(cp, '#')) != NULL)
230 *ep = '\0';
231 if (!*cp || *cp == '\n')
Damien Miller30da3442010-05-10 11:58:03 +1000232 continue;
Damien Miller6018a362010-07-02 13:35:19 +1000233 /* Trim trailing whitespace. */
234 ep = cp + strlen(cp) - 1;
235 while (ep > cp && (*ep == '\n' || *ep == ' ' || *ep == '\t'))
236 *ep-- = '\0';
237 /*
238 * If the line has internal whitespace then assume it has
239 * key options.
240 */
241 line_opts = NULL;
242 if ((ep = strrchr(cp, ' ')) != NULL ||
243 (ep = strrchr(cp, '\t')) != NULL) {
244 for (; *ep == ' ' || *ep == '\t'; ep++)
Damien Miller188ea812010-12-01 11:50:14 +1100245 ;
Damien Miller6018a362010-07-02 13:35:19 +1000246 line_opts = cp;
247 cp = ep;
248 }
Damien Miller30da3442010-05-10 11:58:03 +1000249 for (i = 0; i < cert->nprincipals; i++) {
250 if (strcmp(cp, cert->principals[i]) == 0) {
Darren Tuckeraf1a60e2011-10-02 18:59:59 +1100251 debug3("matched principal \"%.100s\" "
252 "from file \"%s\" on line %lu",
Damien Miller09d3e122012-10-31 08:58:58 +1100253 cert->principals[i], file, linenum);
Damien Miller6018a362010-07-02 13:35:19 +1000254 if (auth_parse_options(pw, line_opts,
255 file, linenum) != 1)
256 continue;
Damien Miller30da3442010-05-10 11:58:03 +1000257 fclose(f);
258 restore_uid();
259 return 1;
260 }
261 }
262 }
263 fclose(f);
264 restore_uid();
265 return 0;
Damien Miller09d3e122012-10-31 08:58:58 +1100266}
Damien Miller30da3442010-05-10 11:58:03 +1000267
Damien Miller09d3e122012-10-31 08:58:58 +1100268/*
269 * Checks whether key is allowed in authorized_keys-format file,
270 * returns 1 if the key is allowed or 0 otherwise.
271 */
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000272static int
Damien Miller09d3e122012-10-31 08:58:58 +1100273check_authkeys_file(FILE *f, char *file, Key* key, struct passwd *pw)
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000274{
Darren Tucker22cc7412004-12-06 22:47:41 +1100275 char line[SSH_MAX_PUBKEY_BYTES];
Damien Miller0a80ca12010-02-27 07:55:05 +1100276 const char *reason;
Darren Tucker33c787f2008-07-02 22:37:30 +1000277 int found_key = 0;
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000278 u_long linenum = 0;
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000279 Key *found;
280 char *fp;
281
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000282 found_key = 0;
Damien Miller0a80ca12010-02-27 07:55:05 +1100283 found = key_new(key_is_cert(key) ? KEY_UNSPEC : key->type);
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000284
Darren Tucker22cc7412004-12-06 22:47:41 +1100285 while (read_keyfile_line(f, file, line, sizeof(line), &linenum) != -1) {
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000286 char *cp, *key_options = NULL;
Darren Tucker22cc7412004-12-06 22:47:41 +1100287
Damien Miller0a80ca12010-02-27 07:55:05 +1100288 auth_clear_options();
289
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000290 /* Skip leading whitespace, empty and comment lines. */
291 for (cp = line; *cp == ' ' || *cp == '\t'; cp++)
292 ;
293 if (!*cp || *cp == '\n' || *cp == '#')
294 continue;
295
296 if (key_read(found, &cp) != 1) {
297 /* no key? check if there are options for this key */
298 int quoted = 0;
299 debug2("user_key_allowed: check options: '%s'", cp);
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000300 key_options = cp;
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000301 for (; *cp && (quoted || (*cp != ' ' && *cp != '\t')); cp++) {
302 if (*cp == '\\' && cp[1] == '"')
303 cp++; /* Skip both */
304 else if (*cp == '"')
305 quoted = !quoted;
306 }
307 /* Skip remaining whitespace. */
308 for (; *cp == ' ' || *cp == '\t'; cp++)
309 ;
310 if (key_read(found, &cp) != 1) {
311 debug2("user_key_allowed: advance: '%s'", cp);
312 /* still no key? advance to next line*/
313 continue;
314 }
315 }
Damien Miller4e270b02010-04-16 15:56:21 +1000316 if (key_is_cert(key)) {
Damien Miller0a80ca12010-02-27 07:55:05 +1100317 if (!key_equal(found, key->cert->signature_key))
318 continue;
Damien Miller84399552010-05-21 14:58:12 +1000319 if (auth_parse_options(pw, key_options, file,
320 linenum) != 1)
321 continue;
322 if (!key_is_cert_authority)
323 continue;
Damien Miller0a80ca12010-02-27 07:55:05 +1100324 fp = key_fingerprint(found, SSH_FP_MD5,
325 SSH_FP_HEX);
Damien Millere513a912010-03-22 05:51:21 +1100326 debug("matching CA found: file %s, line %lu, %s %s",
327 file, linenum, key_type(found), fp);
Damien Miller30da3442010-05-10 11:58:03 +1000328 /*
329 * If the user has specified a list of principals as
330 * a key option, then prefer that list to matching
331 * their username in the certificate principals list.
332 */
333 if (authorized_principals != NULL &&
334 !match_principals_option(authorized_principals,
335 key->cert)) {
336 reason = "Certificate does not contain an "
337 "authorized principal";
338 fail_reason:
Damien Millere513a912010-03-22 05:51:21 +1100339 xfree(fp);
Damien Miller0a80ca12010-02-27 07:55:05 +1100340 error("%s", reason);
341 auth_debug_add("%s", reason);
342 continue;
343 }
Damien Miller30da3442010-05-10 11:58:03 +1000344 if (key_cert_check_authority(key, 0, 0,
345 authorized_principals == NULL ? pw->pw_name : NULL,
346 &reason) != 0)
347 goto fail_reason;
Damien Miller4e270b02010-04-16 15:56:21 +1000348 if (auth_cert_options(key, pw) != 0) {
Damien Millere513a912010-03-22 05:51:21 +1100349 xfree(fp);
Damien Miller0a80ca12010-02-27 07:55:05 +1100350 continue;
Damien Millere513a912010-03-22 05:51:21 +1100351 }
352 verbose("Accepted certificate ID \"%s\" "
353 "signed by %s CA %s via %s", key->cert->key_id,
354 key_type(found), fp, file);
355 xfree(fp);
Damien Miller0a80ca12010-02-27 07:55:05 +1100356 found_key = 1;
357 break;
Damien Miller84399552010-05-21 14:58:12 +1000358 } else if (key_equal(found, key)) {
359 if (auth_parse_options(pw, key_options, file,
360 linenum) != 1)
361 continue;
362 if (key_is_cert_authority)
363 continue;
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000364 found_key = 1;
365 debug("matching key found: file %s, line %lu",
366 file, linenum);
367 fp = key_fingerprint(found, SSH_FP_MD5, SSH_FP_HEX);
368 verbose("Found matching %s key: %s",
369 key_type(found), fp);
370 xfree(fp);
371 break;
372 }
373 }
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000374 key_free(found);
375 if (!found_key)
376 debug2("key not found");
377 return found_key;
378}
379
Damien Miller1aed65e2010-03-04 21:53:35 +1100380/* Authenticate a certificate key against TrustedUserCAKeys */
381static int
382user_cert_trusted_ca(struct passwd *pw, Key *key)
383{
Damien Miller30da3442010-05-10 11:58:03 +1000384 char *ca_fp, *principals_file = NULL;
Damien Miller1aed65e2010-03-04 21:53:35 +1100385 const char *reason;
386 int ret = 0;
387
388 if (!key_is_cert(key) || options.trusted_user_ca_keys == NULL)
389 return 0;
390
Damien Millere513a912010-03-22 05:51:21 +1100391 ca_fp = key_fingerprint(key->cert->signature_key,
392 SSH_FP_MD5, SSH_FP_HEX);
Damien Miller1aed65e2010-03-04 21:53:35 +1100393
394 if (key_in_file(key->cert->signature_key,
395 options.trusted_user_ca_keys, 1) != 1) {
396 debug2("%s: CA %s %s is not listed in %s", __func__,
397 key_type(key->cert->signature_key), ca_fp,
398 options.trusted_user_ca_keys);
399 goto out;
400 }
Damien Miller30da3442010-05-10 11:58:03 +1000401 /*
402 * If AuthorizedPrincipals is in use, then compare the certificate
403 * principals against the names in that file rather than matching
404 * against the username.
405 */
406 if ((principals_file = authorized_principals_file(pw)) != NULL) {
407 if (!match_principals_file(principals_file, pw, key->cert)) {
408 reason = "Certificate does not contain an "
409 "authorized principal";
410 fail_reason:
411 error("%s", reason);
412 auth_debug_add("%s", reason);
413 goto out;
414 }
Damien Miller1aed65e2010-03-04 21:53:35 +1100415 }
Damien Miller30da3442010-05-10 11:58:03 +1000416 if (key_cert_check_authority(key, 0, 1,
417 principals_file == NULL ? pw->pw_name : NULL, &reason) != 0)
418 goto fail_reason;
Damien Miller4e270b02010-04-16 15:56:21 +1000419 if (auth_cert_options(key, pw) != 0)
Damien Miller1aed65e2010-03-04 21:53:35 +1100420 goto out;
421
Damien Millere513a912010-03-22 05:51:21 +1100422 verbose("Accepted certificate ID \"%s\" signed by %s CA %s via %s",
423 key->cert->key_id, key_type(key->cert->signature_key), ca_fp,
424 options.trusted_user_ca_keys);
Damien Miller1aed65e2010-03-04 21:53:35 +1100425 ret = 1;
426
427 out:
Damien Miller30da3442010-05-10 11:58:03 +1000428 if (principals_file != NULL)
429 xfree(principals_file);
Damien Miller1aed65e2010-03-04 21:53:35 +1100430 if (ca_fp != NULL)
431 xfree(ca_fp);
432 return ret;
433}
434
Damien Miller09d3e122012-10-31 08:58:58 +1100435/*
436 * Checks whether key is allowed in file.
437 * returns 1 if the key is allowed or 0 otherwise.
438 */
439static int
440user_key_allowed2(struct passwd *pw, Key *key, char *file)
441{
442 FILE *f;
443 int found_key = 0;
444
445 /* Temporarily use the user's uid. */
446 temporarily_use_uid(pw);
447
448 debug("trying public key file %s", file);
449 if ((f = auth_openkeyfile(file, pw, options.strict_modes)) != NULL) {
450 found_key = check_authkeys_file(f, file, key, pw);
451 fclose(f);
452 }
453
454 restore_uid();
455 return found_key;
456}
457
458/*
459 * Checks whether key is allowed in output of command.
460 * returns 1 if the key is allowed or 0 otherwise.
461 */
462static int
463user_key_command_allowed2(struct passwd *user_pw, Key *key)
464{
465 FILE *f;
466 int ok, found_key = 0;
467 struct passwd *pw;
468 struct stat st;
469 int status, devnull, p[2], i;
470 pid_t pid;
Damien Millerd0d10992012-11-04 22:23:14 +1100471 char *username, errmsg[512];
Damien Miller09d3e122012-10-31 08:58:58 +1100472
473 if (options.authorized_keys_command == NULL ||
474 options.authorized_keys_command[0] != '/')
475 return 0;
476
Damien Millerd0d10992012-11-04 22:23:14 +1100477 if (options.authorized_keys_command_user == NULL) {
478 error("No user for AuthorizedKeysCommand specified, skipping");
479 return 0;
Damien Miller09d3e122012-10-31 08:58:58 +1100480 }
481
Damien Millerd0d10992012-11-04 22:23:14 +1100482 username = percent_expand(options.authorized_keys_command_user,
483 "u", user_pw->pw_name, (char *)NULL);
484 pw = getpwnam(username);
485 if (pw == NULL) {
Damien Miller4018dc02013-02-15 10:28:55 +1100486 error("AuthorizedKeysCommandUser \"%s\" not found: %s",
487 username, strerror(errno));
Damien Millerd0d10992012-11-04 22:23:14 +1100488 free(username);
489 return 0;
490 }
491 free(username);
492
Damien Miller09d3e122012-10-31 08:58:58 +1100493 temporarily_use_uid(pw);
494
495 if (stat(options.authorized_keys_command, &st) < 0) {
496 error("Could not stat AuthorizedKeysCommand \"%s\": %s",
497 options.authorized_keys_command, strerror(errno));
498 goto out;
499 }
500 if (auth_secure_path(options.authorized_keys_command, &st, NULL, 0,
501 errmsg, sizeof(errmsg)) != 0) {
502 error("Unsafe AuthorizedKeysCommand: %s", errmsg);
503 goto out;
504 }
505
506 if (pipe(p) != 0) {
507 error("%s: pipe: %s", __func__, strerror(errno));
508 goto out;
509 }
510
Damien Miller1e854692012-11-14 19:04:02 +1100511 debug3("Running AuthorizedKeysCommand: \"%s %s\" as \"%s\"",
512 options.authorized_keys_command, user_pw->pw_name, pw->pw_name);
Damien Miller09d3e122012-10-31 08:58:58 +1100513
514 /*
515 * Don't want to call this in the child, where it can fatal() and
516 * run cleanup_exit() code.
517 */
518 restore_uid();
519
520 switch ((pid = fork())) {
521 case -1: /* error */
522 error("%s: fork: %s", __func__, strerror(errno));
523 close(p[0]);
524 close(p[1]);
525 return 0;
526 case 0: /* child */
527 for (i = 0; i < NSIG; i++)
528 signal(i, SIG_DFL);
529
Damien Miller1e854692012-11-14 19:04:02 +1100530 if ((devnull = open(_PATH_DEVNULL, O_RDWR)) == -1) {
531 error("%s: open %s: %s", __func__, _PATH_DEVNULL,
532 strerror(errno));
533 _exit(1);
534 }
535 /* Keep stderr around a while longer to catch errors */
536 if (dup2(devnull, STDIN_FILENO) == -1 ||
537 dup2(p[1], STDOUT_FILENO) == -1) {
538 error("%s: dup2: %s", __func__, strerror(errno));
539 _exit(1);
540 }
Damien Millerd0d10992012-11-04 22:23:14 +1100541 closefrom(STDERR_FILENO + 1);
Damien Miller1e854692012-11-14 19:04:02 +1100542
Damien Miller09d3e122012-10-31 08:58:58 +1100543 /* Don't use permanently_set_uid() here to avoid fatal() */
544 if (setresgid(pw->pw_gid, pw->pw_gid, pw->pw_gid) != 0) {
545 error("setresgid %u: %s", (u_int)pw->pw_gid,
546 strerror(errno));
547 _exit(1);
548 }
549 if (setresuid(pw->pw_uid, pw->pw_uid, pw->pw_uid) != 0) {
550 error("setresuid %u: %s", (u_int)pw->pw_uid,
551 strerror(errno));
552 _exit(1);
553 }
Damien Miller1e854692012-11-14 19:04:02 +1100554 /* stdin is pointed to /dev/null at this point */
555 if (dup2(STDIN_FILENO, STDERR_FILENO) == -1) {
Damien Miller09d3e122012-10-31 08:58:58 +1100556 error("%s: dup2: %s", __func__, strerror(errno));
557 _exit(1);
558 }
Damien Miller09d3e122012-10-31 08:58:58 +1100559
560 execl(options.authorized_keys_command,
Damien Miller1e854692012-11-14 19:04:02 +1100561 options.authorized_keys_command, user_pw->pw_name, NULL);
Damien Miller09d3e122012-10-31 08:58:58 +1100562
563 error("AuthorizedKeysCommand %s exec failed: %s",
564 options.authorized_keys_command, strerror(errno));
565 _exit(127);
566 default: /* parent */
567 break;
568 }
569
570 temporarily_use_uid(pw);
571
572 close(p[1]);
573 if ((f = fdopen(p[0], "r")) == NULL) {
574 error("%s: fdopen: %s", __func__, strerror(errno));
575 close(p[0]);
576 /* Don't leave zombie child */
577 kill(pid, SIGTERM);
578 while (waitpid(pid, NULL, 0) == -1 && errno == EINTR)
579 ;
580 goto out;
581 }
582 ok = check_authkeys_file(f, options.authorized_keys_command, key, pw);
583 fclose(f);
584
585 while (waitpid(pid, &status, 0) == -1) {
586 if (errno != EINTR) {
587 error("%s: waitpid: %s", __func__, strerror(errno));
588 goto out;
589 }
590 }
591 if (WIFSIGNALED(status)) {
592 error("AuthorizedKeysCommand %s exited on signal %d",
593 options.authorized_keys_command, WTERMSIG(status));
594 goto out;
595 } else if (WEXITSTATUS(status) != 0) {
596 error("AuthorizedKeysCommand %s returned status %d",
597 options.authorized_keys_command, WEXITSTATUS(status));
598 goto out;
599 }
600 found_key = ok;
601 out:
602 restore_uid();
603 return found_key;
604}
605
606/*
607 * Check whether key authenticates and authorises the user.
608 */
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000609int
610user_key_allowed(struct passwd *pw, Key *key)
611{
Damien Millerd8478b62011-05-29 21:39:36 +1000612 u_int success, i;
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000613 char *file;
614
Damien Miller1aed65e2010-03-04 21:53:35 +1100615 if (auth_key_is_revoked(key))
616 return 0;
617 if (key_is_cert(key) && auth_key_is_revoked(key->cert->signature_key))
618 return 0;
619
620 success = user_cert_trusted_ca(pw, key);
621 if (success)
622 return success;
623
Damien Miller09d3e122012-10-31 08:58:58 +1100624 success = user_key_command_allowed2(pw, key);
625 if (success > 0)
626 return success;
627
Damien Millerd8478b62011-05-29 21:39:36 +1000628 for (i = 0; !success && i < options.num_authkeys_files; i++) {
Damien Miller09d3e122012-10-31 08:58:58 +1100629
630 if (strcasecmp(options.authorized_keys_files[i], "none") == 0)
631 continue;
Damien Millerd8478b62011-05-29 21:39:36 +1000632 file = expand_authorized_keys(
633 options.authorized_keys_files[i], pw);
Damien Miller09d3e122012-10-31 08:58:58 +1100634
Damien Millerd8478b62011-05-29 21:39:36 +1000635 success = user_key_allowed2(pw, key, file);
636 xfree(file);
637 }
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000638
Ben Lindstrom855bf3a2002-06-06 20:27:55 +0000639 return success;
640}
641
642Authmethod method_pubkey = {
643 "publickey",
644 userauth_pubkey,
645 &options.pubkey_authentication
646};