blob: af4190eeb7100457f67bccb4cc7be71017c4f8aa [file] [log] [blame]
markus@openbsd.orgafbfa682017-05-30 08:49:32 +00001/* $OpenBSD: authfile.c,v 1.125 2017/05/30 08:49:32 markus Exp $ */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002/*
Damien Millerbcd00ab2013-12-07 10:41:55 +11003 * Copyright (c) 2000, 2013 Markus Friedl. All rights reserved.
Damien Millere4340be2000-09-16 13:29:08 +11004 *
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.
Damien Miller95def091999-11-25 00:26:21 +110024 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100025
26#include "includes.h"
Damien Millerf17883e2006-03-15 11:45:54 +110027
28#include <sys/types.h>
29#include <sys/stat.h>
Damien Millerd7834352006-08-05 12:39:39 +100030#include <sys/uio.h>
Damien Millerd4a8b7e1999-10-27 13:42:43 +100031
Darren Tuckerba724052006-07-12 22:24:22 +100032#include <errno.h>
Damien Miller57cf6382006-07-10 21:13:46 +100033#include <fcntl.h>
Damien Millera7a73ee2006-08-05 11:37:59 +100034#include <stdio.h>
Damien Miller86687062014-07-02 15:28:02 +100035#include <stdarg.h>
Damien Millere7a1e5c2006-08-05 11:34:19 +100036#include <stdlib.h>
Damien Millere3476ed2006-07-24 14:13:33 +100037#include <string.h>
Damien Millere6b3b612006-07-24 14:01:23 +100038#include <unistd.h>
deraadt@openbsd.org087266e2015-01-20 23:14:00 +000039#include <limits.h>
Damien Miller57cf6382006-07-10 21:13:46 +100040
Damien Millerd7834352006-08-05 12:39:39 +100041#include "cipher.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000042#include "ssh.h"
43#include "log.h"
Ben Lindstrom31ca54a2001-02-09 02:11:24 +000044#include "authfile.h"
Damien Miller040b64f2002-01-22 23:10:04 +110045#include "rsa.h"
Darren Tuckerf0f90982004-12-11 13:39:50 +110046#include "misc.h"
Damien Millereccb9de2005-06-17 12:59:34 +100047#include "atomicio.h"
markus@openbsd.org16db0a72015-07-09 09:49:46 +000048#include "sshkey.h"
Damien Miller86687062014-07-02 15:28:02 +100049#include "sshbuf.h"
50#include "ssherr.h"
djm@openbsd.org5e39a492014-12-04 02:24:32 +000051#include "krl.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100052
Damien Miller2ce12ef2011-05-05 14:17:18 +100053#define MAX_KEY_FILE_SIZE (1024 * 1024)
54
Damien Millera2327922010-12-01 12:01:21 +110055/* Save a key blob to a file */
56static int
Damien Miller86687062014-07-02 15:28:02 +100057sshkey_save_private_blob(struct sshbuf *keybuf, const char *filename)
Damien Millera2327922010-12-01 12:01:21 +110058{
Damien Miller86687062014-07-02 15:28:02 +100059 int fd, oerrno;
Damien Millera2327922010-12-01 12:01:21 +110060
Damien Miller86687062014-07-02 15:28:02 +100061 if ((fd = open(filename, O_WRONLY | O_CREAT | O_TRUNC, 0600)) < 0)
62 return SSH_ERR_SYSTEM_ERROR;
63 if (atomicio(vwrite, fd, (u_char *)sshbuf_ptr(keybuf),
64 sshbuf_len(keybuf)) != sshbuf_len(keybuf)) {
65 oerrno = errno;
Damien Millera2327922010-12-01 12:01:21 +110066 close(fd);
67 unlink(filename);
Damien Miller86687062014-07-02 15:28:02 +100068 errno = oerrno;
69 return SSH_ERR_SYSTEM_ERROR;
Damien Millera2327922010-12-01 12:01:21 +110070 }
71 close(fd);
Damien Miller86687062014-07-02 15:28:02 +100072 return 0;
Damien Millera2327922010-12-01 12:01:21 +110073}
74
Damien Millereba71ba2000-04-29 23:57:08 +100075int
Damien Miller86687062014-07-02 15:28:02 +100076sshkey_save_private(struct sshkey *key, const char *filename,
77 const char *passphrase, const char *comment,
78 int force_new_format, const char *new_format_cipher, int new_format_rounds)
Damien Millereba71ba2000-04-29 23:57:08 +100079{
Damien Miller86687062014-07-02 15:28:02 +100080 struct sshbuf *keyblob = NULL;
81 int r;
Damien Millera2327922010-12-01 12:01:21 +110082
Damien Miller86687062014-07-02 15:28:02 +100083 if ((keyblob = sshbuf_new()) == NULL)
84 return SSH_ERR_ALLOC_FAIL;
85 if ((r = sshkey_private_to_fileblob(key, keyblob, passphrase, comment,
86 force_new_format, new_format_cipher, new_format_rounds)) != 0)
Damien Millera2327922010-12-01 12:01:21 +110087 goto out;
Damien Miller86687062014-07-02 15:28:02 +100088 if ((r = sshkey_save_private_blob(keyblob, filename)) != 0)
Damien Millera2327922010-12-01 12:01:21 +110089 goto out;
Damien Miller86687062014-07-02 15:28:02 +100090 r = 0;
Damien Millera2327922010-12-01 12:01:21 +110091 out:
Damien Miller86687062014-07-02 15:28:02 +100092 sshbuf_free(keyblob);
93 return r;
Damien Millera2327922010-12-01 12:01:21 +110094}
95
Damien Miller2ce12ef2011-05-05 14:17:18 +100096/* Load a key from a fd into a buffer */
97int
djm@openbsd.org1195f4c2015-01-08 10:14:08 +000098sshkey_load_file(int fd, struct sshbuf *blob)
Damien Millera2327922010-12-01 12:01:21 +110099{
Damien Miller2ce12ef2011-05-05 14:17:18 +1000100 u_char buf[1024];
Damien Millera2327922010-12-01 12:01:21 +1100101 size_t len;
Damien Millera2327922010-12-01 12:01:21 +1100102 struct stat st;
djm@openbsd.org54d02202016-11-25 23:24:45 +0000103 int r, dontmax = 0;
Damien Millera2327922010-12-01 12:01:21 +1100104
Damien Miller86687062014-07-02 15:28:02 +1000105 if (fstat(fd, &st) < 0)
106 return SSH_ERR_SYSTEM_ERROR;
Damien Miller2ce12ef2011-05-05 14:17:18 +1000107 if ((st.st_mode & (S_IFSOCK|S_IFCHR|S_IFIFO)) == 0 &&
Damien Miller86687062014-07-02 15:28:02 +1000108 st.st_size > MAX_KEY_FILE_SIZE)
109 return SSH_ERR_INVALID_FORMAT;
djm@openbsd.org54d02202016-11-25 23:24:45 +0000110 /*
111 * Pre-allocate the buffer used for the key contents and clamp its
112 * maximum size. This ensures that key contents are never leaked via
113 * implicit realloc() in the sshbuf code.
114 */
115 if ((st.st_mode & S_IFREG) == 0 || st.st_size <= 0) {
deraadt@openbsd.orgef478432017-03-26 00:18:52 +0000116 st.st_size = 64*1024; /* 64k ought to be enough for anybody. :) */
djm@openbsd.org54d02202016-11-25 23:24:45 +0000117 dontmax = 1;
118 }
119 if ((r = sshbuf_allocate(blob, st.st_size)) != 0 ||
120 (dontmax && (r = sshbuf_set_max_size(blob, st.st_size)) != 0))
121 return r;
Damien Miller2ce12ef2011-05-05 14:17:18 +1000122 for (;;) {
123 if ((len = atomicio(read, fd, buf, sizeof(buf))) == 0) {
124 if (errno == EPIPE)
125 break;
Damien Miller86687062014-07-02 15:28:02 +1000126 r = SSH_ERR_SYSTEM_ERROR;
127 goto out;
Damien Miller2ce12ef2011-05-05 14:17:18 +1000128 }
Damien Miller86687062014-07-02 15:28:02 +1000129 if ((r = sshbuf_put(blob, buf, len)) != 0)
130 goto out;
131 if (sshbuf_len(blob) > MAX_KEY_FILE_SIZE) {
132 r = SSH_ERR_INVALID_FORMAT;
133 goto out;
Damien Miller2ce12ef2011-05-05 14:17:18 +1000134 }
135 }
Damien Miller2ce12ef2011-05-05 14:17:18 +1000136 if ((st.st_mode & (S_IFSOCK|S_IFCHR|S_IFIFO)) == 0 &&
Damien Miller86687062014-07-02 15:28:02 +1000137 st.st_size != (off_t)sshbuf_len(blob)) {
138 r = SSH_ERR_FILE_CHANGED;
139 goto out;
Damien Millera2327922010-12-01 12:01:21 +1100140 }
Damien Miller86687062014-07-02 15:28:02 +1000141 r = 0;
Damien Miller2ce12ef2011-05-05 14:17:18 +1000142
Damien Miller86687062014-07-02 15:28:02 +1000143 out:
144 explicit_bzero(buf, sizeof(buf));
145 if (r != 0)
146 sshbuf_reset(blob);
147 return r;
Damien Millereba71ba2000-04-29 23:57:08 +1000148}
149
Damien Millereba71ba2000-04-29 23:57:08 +1000150
Damien Miller86687062014-07-02 15:28:02 +1000151/* XXX remove error() calls from here? */
152int
153sshkey_perm_ok(int fd, const char *filename)
Damien Millereba71ba2000-04-29 23:57:08 +1000154{
Damien Millereba71ba2000-04-29 23:57:08 +1000155 struct stat st;
156
Ben Lindstrom7aff2612001-09-23 13:53:22 +0000157 if (fstat(fd, &st) < 0)
Damien Miller86687062014-07-02 15:28:02 +1000158 return SSH_ERR_SYSTEM_ERROR;
Ben Lindstrom7aff2612001-09-23 13:53:22 +0000159 /*
160 * if a key owned by the user is accessed, then we check the
161 * permissions of the file. if the key owned by a different user,
162 * then we don't care.
163 */
Damien Millerb70b61f2000-09-16 16:25:12 +1100164#ifdef HAVE_CYGWIN
Damien Millercb5e44a2000-09-29 12:12:36 +1100165 if (check_ntsec(filename))
Damien Millerb70b61f2000-09-16 16:25:12 +1100166#endif
Ben Lindstrom7aff2612001-09-23 13:53:22 +0000167 if ((st.st_uid == getuid()) && (st.st_mode & 077) != 0) {
Damien Millereba71ba2000-04-29 23:57:08 +1000168 error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
169 error("@ WARNING: UNPROTECTED PRIVATE KEY FILE! @");
170 error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
Ben Lindstrom7aff2612001-09-23 13:53:22 +0000171 error("Permissions 0%3.3o for '%s' are too open.",
Damien Miller04bd8b02003-05-25 14:38:33 +1000172 (u_int)st.st_mode & 0777, filename);
djm@openbsd.org6b0d5762015-04-17 13:32:09 +0000173 error("It is required that your private key files are NOT accessible by others.");
Ben Lindstromd0fca422001-03-26 13:44:06 +0000174 error("This private key will be ignored.");
Damien Miller86687062014-07-02 15:28:02 +1000175 return SSH_ERR_KEY_BAD_PERMISSIONS;
Damien Millere4340be2000-09-16 13:29:08 +1100176 }
177 return 0;
178}
179
Damien Miller86687062014-07-02 15:28:02 +1000180/* XXX kill perm_ok now that we have SSH_ERR_KEY_BAD_PERMISSIONS? */
181int
182sshkey_load_private_type(int type, const char *filename, const char *passphrase,
183 struct sshkey **keyp, char **commentp, int *perm_ok)
Damien Millere4340be2000-09-16 13:29:08 +1100184{
Damien Miller86687062014-07-02 15:28:02 +1000185 int fd, r;
Damien Millere4340be2000-09-16 13:29:08 +1100186
djm@openbsd.orgdce19bf2016-04-09 12:39:30 +0000187 if (keyp != NULL)
188 *keyp = NULL;
Damien Miller86687062014-07-02 15:28:02 +1000189 if (commentp != NULL)
190 *commentp = NULL;
191
192 if ((fd = open(filename, O_RDONLY)) < 0) {
193 if (perm_ok != NULL)
194 *perm_ok = 0;
195 return SSH_ERR_SYSTEM_ERROR;
196 }
197 if (sshkey_perm_ok(fd, filename) != 0) {
198 if (perm_ok != NULL)
199 *perm_ok = 0;
200 r = SSH_ERR_KEY_BAD_PERMISSIONS;
201 goto out;
202 }
203 if (perm_ok != NULL)
204 *perm_ok = 1;
205
djm@openbsd.org1195f4c2015-01-08 10:14:08 +0000206 r = sshkey_load_private_type_fd(fd, type, passphrase, keyp, commentp);
207 out:
208 close(fd);
209 return r;
210}
211
212int
213sshkey_load_private_type_fd(int fd, int type, const char *passphrase,
214 struct sshkey **keyp, char **commentp)
215{
216 struct sshbuf *buffer = NULL;
217 int r;
218
djm@openbsd.orgdce19bf2016-04-09 12:39:30 +0000219 if (keyp != NULL)
220 *keyp = NULL;
Damien Miller86687062014-07-02 15:28:02 +1000221 if ((buffer = sshbuf_new()) == NULL) {
222 r = SSH_ERR_ALLOC_FAIL;
223 goto out;
224 }
djm@openbsd.org1195f4c2015-01-08 10:14:08 +0000225 if ((r = sshkey_load_file(fd, buffer)) != 0 ||
226 (r = sshkey_parse_private_fileblob_type(buffer, type,
227 passphrase, keyp, commentp)) != 0)
Damien Miller86687062014-07-02 15:28:02 +1000228 goto out;
djm@openbsd.org1195f4c2015-01-08 10:14:08 +0000229
230 /* success */
Damien Miller86687062014-07-02 15:28:02 +1000231 r = 0;
232 out:
mmcc@openbsd.org52d70782015-12-11 04:21:11 +0000233 sshbuf_free(buffer);
Damien Miller86687062014-07-02 15:28:02 +1000234 return r;
235}
236
237/* XXX this is almost identical to sshkey_load_private_type() */
238int
239sshkey_load_private(const char *filename, const char *passphrase,
240 struct sshkey **keyp, char **commentp)
241{
242 struct sshbuf *buffer = NULL;
243 int r, fd;
244
djm@openbsd.orgdce19bf2016-04-09 12:39:30 +0000245 if (keyp != NULL)
246 *keyp = NULL;
Damien Miller86687062014-07-02 15:28:02 +1000247 if (commentp != NULL)
248 *commentp = NULL;
249
250 if ((fd = open(filename, O_RDONLY)) < 0)
251 return SSH_ERR_SYSTEM_ERROR;
252 if (sshkey_perm_ok(fd, filename) != 0) {
253 r = SSH_ERR_KEY_BAD_PERMISSIONS;
254 goto out;
255 }
256
257 if ((buffer = sshbuf_new()) == NULL) {
258 r = SSH_ERR_ALLOC_FAIL;
259 goto out;
260 }
djm@openbsd.org1195f4c2015-01-08 10:14:08 +0000261 if ((r = sshkey_load_file(fd, buffer)) != 0 ||
tim@openbsd.org3c019a92015-09-13 14:39:16 +0000262 (r = sshkey_parse_private_fileblob(buffer, passphrase, keyp,
263 commentp)) != 0)
Damien Miller86687062014-07-02 15:28:02 +1000264 goto out;
265 r = 0;
266 out:
267 close(fd);
mmcc@openbsd.org52d70782015-12-11 04:21:11 +0000268 sshbuf_free(buffer);
Damien Miller86687062014-07-02 15:28:02 +1000269 return r;
270}
271
272static int
273sshkey_try_load_public(struct sshkey *k, const char *filename, char **commentp)
274{
275 FILE *f;
276 char line[SSH_MAX_PUBKEY_BYTES];
277 char *cp;
278 u_long linenum = 0;
279 int r;
280
281 if (commentp != NULL)
282 *commentp = NULL;
283 if ((f = fopen(filename, "r")) == NULL)
284 return SSH_ERR_SYSTEM_ERROR;
285 while (read_keyfile_line(f, filename, line, sizeof(line),
286 &linenum) != -1) {
287 cp = line;
288 switch (*cp) {
289 case '#':
290 case '\n':
291 case '\0':
292 continue;
293 }
294 /* Abort loading if this looks like a private key */
295 if (strncmp(cp, "-----BEGIN", 10) == 0 ||
296 strcmp(cp, "SSH PRIVATE KEY FILE") == 0)
297 break;
298 /* Skip leading whitespace. */
299 for (; *cp && (*cp == ' ' || *cp == '\t'); cp++)
300 ;
301 if (*cp) {
302 if ((r = sshkey_read(k, &cp)) == 0) {
303 cp[strcspn(cp, "\r\n")] = '\0';
304 if (commentp) {
305 *commentp = strdup(*cp ?
306 cp : filename);
307 if (*commentp == NULL)
308 r = SSH_ERR_ALLOC_FAIL;
309 }
310 fclose(f);
311 return r;
312 }
313 }
314 }
315 fclose(f);
316 return SSH_ERR_INVALID_FORMAT;
317}
318
markus@openbsd.orgafbfa682017-05-30 08:49:32 +0000319/* load public key from any pubkey file */
Damien Miller86687062014-07-02 15:28:02 +1000320int
321sshkey_load_public(const char *filename, struct sshkey **keyp, char **commentp)
322{
323 struct sshkey *pub = NULL;
markus@openbsd.orgafbfa682017-05-30 08:49:32 +0000324 char *file = NULL;
325 int r;
Damien Miller86687062014-07-02 15:28:02 +1000326
327 if (keyp != NULL)
328 *keyp = NULL;
329 if (commentp != NULL)
330 *commentp = NULL;
331
Damien Miller86687062014-07-02 15:28:02 +1000332 if ((pub = sshkey_new(KEY_UNSPEC)) == NULL)
333 return SSH_ERR_ALLOC_FAIL;
334 if ((r = sshkey_try_load_public(pub, filename, commentp)) == 0) {
markus@openbsd.orgafbfa682017-05-30 08:49:32 +0000335 if (keyp != NULL) {
Damien Miller86687062014-07-02 15:28:02 +1000336 *keyp = pub;
markus@openbsd.orgafbfa682017-05-30 08:49:32 +0000337 pub = NULL;
338 }
339 r = 0;
340 goto out;
Damien Miller86687062014-07-02 15:28:02 +1000341 }
342 sshkey_free(pub);
343
Damien Miller86687062014-07-02 15:28:02 +1000344 /* try .pub suffix */
markus@openbsd.orgafbfa682017-05-30 08:49:32 +0000345 if (asprintf(&file, "%s.pub", filename) == -1)
Damien Miller86687062014-07-02 15:28:02 +1000346 return SSH_ERR_ALLOC_FAIL;
markus@openbsd.orgafbfa682017-05-30 08:49:32 +0000347 if ((pub = sshkey_new(KEY_UNSPEC)) == NULL) {
348 r = SSH_ERR_ALLOC_FAIL;
349 goto out;
Damien Miller86687062014-07-02 15:28:02 +1000350 }
markus@openbsd.orgafbfa682017-05-30 08:49:32 +0000351 if ((r = sshkey_try_load_public(pub, file, commentp)) == 0) {
352 if (keyp != NULL) {
353 *keyp = pub;
354 pub = NULL;
355 }
356 r = 0;
357 }
358 out:
359 free(file);
Damien Miller86687062014-07-02 15:28:02 +1000360 sshkey_free(pub);
361 return r;
Damien Millere4340be2000-09-16 13:29:08 +1100362}
Damien Miller1aed65e2010-03-04 21:53:35 +1100363
Damien Millerc1583312010-08-05 13:04:50 +1000364/* Load the certificate associated with the named private key */
Damien Miller86687062014-07-02 15:28:02 +1000365int
366sshkey_load_cert(const char *filename, struct sshkey **keyp)
Damien Millerc1583312010-08-05 13:04:50 +1000367{
Damien Miller86687062014-07-02 15:28:02 +1000368 struct sshkey *pub = NULL;
369 char *file = NULL;
370 int r = SSH_ERR_INTERNAL_ERROR;
Damien Millerc1583312010-08-05 13:04:50 +1000371
djm@openbsd.orgdce19bf2016-04-09 12:39:30 +0000372 if (keyp != NULL)
373 *keyp = NULL;
Damien Miller86687062014-07-02 15:28:02 +1000374
375 if (asprintf(&file, "%s-cert.pub", filename) == -1)
376 return SSH_ERR_ALLOC_FAIL;
377
378 if ((pub = sshkey_new(KEY_UNSPEC)) == NULL) {
379 goto out;
Damien Miller5458c4d2010-08-05 13:05:15 +1000380 }
Damien Miller86687062014-07-02 15:28:02 +1000381 if ((r = sshkey_try_load_public(pub, file, NULL)) != 0)
382 goto out;
djm@openbsd.orgdce19bf2016-04-09 12:39:30 +0000383 /* success */
384 if (keyp != NULL) {
385 *keyp = pub;
386 pub = NULL;
387 }
Damien Miller86687062014-07-02 15:28:02 +1000388 r = 0;
Damien Miller86687062014-07-02 15:28:02 +1000389 out:
mmcc@openbsd.orgd59ce082015-12-10 17:08:40 +0000390 free(file);
mmcc@openbsd.org89540b62015-12-11 02:31:47 +0000391 sshkey_free(pub);
Damien Miller86687062014-07-02 15:28:02 +1000392 return r;
Damien Millerc1583312010-08-05 13:04:50 +1000393}
394
395/* Load private key and certificate */
Damien Miller86687062014-07-02 15:28:02 +1000396int
397sshkey_load_private_cert(int type, const char *filename, const char *passphrase,
398 struct sshkey **keyp, int *perm_ok)
Damien Millerc1583312010-08-05 13:04:50 +1000399{
Damien Miller86687062014-07-02 15:28:02 +1000400 struct sshkey *key = NULL, *cert = NULL;
401 int r;
402
djm@openbsd.orgdce19bf2016-04-09 12:39:30 +0000403 if (keyp != NULL)
404 *keyp = NULL;
Damien Millerc1583312010-08-05 13:04:50 +1000405
406 switch (type) {
Damien Miller1f0311c2014-05-15 14:24:09 +1000407#ifdef WITH_OPENSSL
Damien Millerc1583312010-08-05 13:04:50 +1000408 case KEY_RSA:
409 case KEY_DSA:
Damien Millereb8b60e2010-08-31 22:41:14 +1000410 case KEY_ECDSA:
Damien Miller86687062014-07-02 15:28:02 +1000411#endif /* WITH_OPENSSL */
markus@openbsd.org16db0a72015-07-09 09:49:46 +0000412 case KEY_ED25519:
Damien Miller86687062014-07-02 15:28:02 +1000413 case KEY_UNSPEC:
Damien Millerc1583312010-08-05 13:04:50 +1000414 break;
415 default:
Damien Miller86687062014-07-02 15:28:02 +1000416 return SSH_ERR_KEY_TYPE_UNKNOWN;
Damien Millerc1583312010-08-05 13:04:50 +1000417 }
418
Damien Miller86687062014-07-02 15:28:02 +1000419 if ((r = sshkey_load_private_type(type, filename,
420 passphrase, &key, NULL, perm_ok)) != 0 ||
421 (r = sshkey_load_cert(filename, &cert)) != 0)
422 goto out;
Damien Millerc1583312010-08-05 13:04:50 +1000423
424 /* Make sure the private key matches the certificate */
Damien Miller86687062014-07-02 15:28:02 +1000425 if (sshkey_equal_public(key, cert) == 0) {
426 r = SSH_ERR_KEY_CERT_MISMATCH;
427 goto out;
Damien Millerc1583312010-08-05 13:04:50 +1000428 }
429
djm@openbsd.orgc28fc622015-07-03 03:43:18 +0000430 if ((r = sshkey_to_certified(key)) != 0 ||
Damien Miller86687062014-07-02 15:28:02 +1000431 (r = sshkey_cert_copy(cert, key)) != 0)
432 goto out;
433 r = 0;
djm@openbsd.orgdce19bf2016-04-09 12:39:30 +0000434 if (keyp != NULL) {
435 *keyp = key;
436 key = NULL;
437 }
Damien Miller86687062014-07-02 15:28:02 +1000438 out:
mmcc@openbsd.org89540b62015-12-11 02:31:47 +0000439 sshkey_free(key);
440 sshkey_free(cert);
Damien Miller86687062014-07-02 15:28:02 +1000441 return r;
Damien Millerc1583312010-08-05 13:04:50 +1000442}
443
Damien Miller1aed65e2010-03-04 21:53:35 +1100444/*
Damien Miller86687062014-07-02 15:28:02 +1000445 * Returns success if the specified "key" is listed in the file "filename",
446 * SSH_ERR_KEY_NOT_FOUND: if the key is not listed or another error.
djm@openbsd.org5e39a492014-12-04 02:24:32 +0000447 * If "strict_type" is set then the key type must match exactly,
Damien Miller1aed65e2010-03-04 21:53:35 +1100448 * otherwise a comparison that ignores certficiate data is performed.
djm@openbsd.org5e39a492014-12-04 02:24:32 +0000449 * If "check_ca" is set and "key" is a certificate, then its CA key is
450 * also checked and sshkey_in_file() will return success if either is found.
Damien Miller1aed65e2010-03-04 21:53:35 +1100451 */
452int
djm@openbsd.org5e39a492014-12-04 02:24:32 +0000453sshkey_in_file(struct sshkey *key, const char *filename, int strict_type,
454 int check_ca)
Damien Miller1aed65e2010-03-04 21:53:35 +1100455{
456 FILE *f;
457 char line[SSH_MAX_PUBKEY_BYTES];
458 char *cp;
459 u_long linenum = 0;
Damien Miller86687062014-07-02 15:28:02 +1000460 int r = 0;
461 struct sshkey *pub = NULL;
462 int (*sshkey_compare)(const struct sshkey *, const struct sshkey *) =
463 strict_type ? sshkey_equal : sshkey_equal_public;
Damien Miller1aed65e2010-03-04 21:53:35 +1100464
djm@openbsd.org5e39a492014-12-04 02:24:32 +0000465 if ((f = fopen(filename, "r")) == NULL)
466 return SSH_ERR_SYSTEM_ERROR;
Damien Miller1aed65e2010-03-04 21:53:35 +1100467
468 while (read_keyfile_line(f, filename, line, sizeof(line),
Damien Miller86687062014-07-02 15:28:02 +1000469 &linenum) != -1) {
Damien Miller1aed65e2010-03-04 21:53:35 +1100470 cp = line;
471
472 /* Skip leading whitespace. */
473 for (; *cp && (*cp == ' ' || *cp == '\t'); cp++)
474 ;
475
476 /* Skip comments and empty lines */
477 switch (*cp) {
478 case '#':
479 case '\n':
480 case '\0':
481 continue;
482 }
483
Damien Miller86687062014-07-02 15:28:02 +1000484 if ((pub = sshkey_new(KEY_UNSPEC)) == NULL) {
485 r = SSH_ERR_ALLOC_FAIL;
486 goto out;
Damien Miller1aed65e2010-03-04 21:53:35 +1100487 }
Damien Miller86687062014-07-02 15:28:02 +1000488 if ((r = sshkey_read(pub, &cp)) != 0)
489 goto out;
djm@openbsd.org5e39a492014-12-04 02:24:32 +0000490 if (sshkey_compare(key, pub) ||
491 (check_ca && sshkey_is_cert(key) &&
492 sshkey_compare(key->cert->signature_key, pub))) {
Damien Miller86687062014-07-02 15:28:02 +1000493 r = 0;
494 goto out;
Damien Miller1aed65e2010-03-04 21:53:35 +1100495 }
Damien Miller86687062014-07-02 15:28:02 +1000496 sshkey_free(pub);
497 pub = NULL;
Damien Miller1aed65e2010-03-04 21:53:35 +1100498 }
Damien Miller86687062014-07-02 15:28:02 +1000499 r = SSH_ERR_KEY_NOT_FOUND;
500 out:
mmcc@openbsd.org89540b62015-12-11 02:31:47 +0000501 sshkey_free(pub);
Damien Miller1aed65e2010-03-04 21:53:35 +1100502 fclose(f);
Damien Miller86687062014-07-02 15:28:02 +1000503 return r;
Damien Miller1aed65e2010-03-04 21:53:35 +1100504}
Damien Miller86687062014-07-02 15:28:02 +1000505
djm@openbsd.org5e39a492014-12-04 02:24:32 +0000506/*
507 * Checks whether the specified key is revoked, returning 0 if not,
508 * SSH_ERR_KEY_REVOKED if it is or another error code if something
509 * unexpected happened.
510 * This will check both the key and, if it is a certificate, its CA key too.
511 * "revoked_keys_file" may be a KRL or a one-per-line list of public keys.
512 */
513int
514sshkey_check_revoked(struct sshkey *key, const char *revoked_keys_file)
515{
516 int r;
517
djm@openbsd.org5e39a492014-12-04 02:24:32 +0000518 r = ssh_krl_file_contains_key(revoked_keys_file, key);
519 /* If this was not a KRL to begin with then continue below */
520 if (r != SSH_ERR_KRL_BAD_MAGIC)
521 return r;
djm@openbsd.org5e39a492014-12-04 02:24:32 +0000522
523 /*
524 * If the file is not a KRL or we can't handle KRLs then attempt to
525 * parse the file as a flat list of keys.
526 */
527 switch ((r = sshkey_in_file(key, revoked_keys_file, 0, 1))) {
528 case 0:
529 /* Key found => revoked */
530 return SSH_ERR_KEY_REVOKED;
531 case SSH_ERR_KEY_NOT_FOUND:
532 /* Key not found => not revoked */
533 return 0;
534 default:
535 /* Some other error occurred */
536 return r;
537 }
538}
539