blob: 58f589a4745d53eabaa3fa0b5327a2edbae21d05 [file] [log] [blame]
markus@openbsd.org16db0a72015-07-09 09:49:46 +00001/* $OpenBSD: authfile.c,v 1.116 2015/07/09 09:49:46 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;
Damien Miller86687062014-07-02 15:28:02 +1000103 int r;
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;
Damien Miller2ce12ef2011-05-05 14:17:18 +1000110 for (;;) {
111 if ((len = atomicio(read, fd, buf, sizeof(buf))) == 0) {
112 if (errno == EPIPE)
113 break;
Damien Miller86687062014-07-02 15:28:02 +1000114 r = SSH_ERR_SYSTEM_ERROR;
115 goto out;
Damien Miller2ce12ef2011-05-05 14:17:18 +1000116 }
Damien Miller86687062014-07-02 15:28:02 +1000117 if ((r = sshbuf_put(blob, buf, len)) != 0)
118 goto out;
119 if (sshbuf_len(blob) > MAX_KEY_FILE_SIZE) {
120 r = SSH_ERR_INVALID_FORMAT;
121 goto out;
Damien Miller2ce12ef2011-05-05 14:17:18 +1000122 }
123 }
Damien Miller2ce12ef2011-05-05 14:17:18 +1000124 if ((st.st_mode & (S_IFSOCK|S_IFCHR|S_IFIFO)) == 0 &&
Damien Miller86687062014-07-02 15:28:02 +1000125 st.st_size != (off_t)sshbuf_len(blob)) {
126 r = SSH_ERR_FILE_CHANGED;
127 goto out;
Damien Millera2327922010-12-01 12:01:21 +1100128 }
Damien Miller86687062014-07-02 15:28:02 +1000129 r = 0;
Damien Miller2ce12ef2011-05-05 14:17:18 +1000130
Damien Miller86687062014-07-02 15:28:02 +1000131 out:
132 explicit_bzero(buf, sizeof(buf));
133 if (r != 0)
134 sshbuf_reset(blob);
135 return r;
Damien Millereba71ba2000-04-29 23:57:08 +1000136}
137
Damien Miller1f0311c2014-05-15 14:24:09 +1000138#ifdef WITH_SSH1
Damien Miller5428f641999-11-25 11:54:57 +1100139/*
Ben Lindstromd0fca422001-03-26 13:44:06 +0000140 * Loads the public part of the ssh v1 key file. Returns NULL if an error was
141 * encountered (the file does not exist or is not readable), and the key
Damien Miller5428f641999-11-25 11:54:57 +1100142 * otherwise.
143 */
Damien Miller86687062014-07-02 15:28:02 +1000144static int
djm@openbsd.org1195f4c2015-01-08 10:14:08 +0000145sshkey_load_public_rsa1(int fd, struct sshkey **keyp, char **commentp)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000146{
Damien Miller86687062014-07-02 15:28:02 +1000147 struct sshbuf *b = NULL;
148 int r;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000149
Damien Miller86687062014-07-02 15:28:02 +1000150 *keyp = NULL;
Darren Tuckera627d422013-06-02 07:31:17 +1000151 if (commentp != NULL)
Damien Miller86687062014-07-02 15:28:02 +1000152 *commentp = NULL;
153
154 if ((b = sshbuf_new()) == NULL)
155 return SSH_ERR_ALLOC_FAIL;
djm@openbsd.org1195f4c2015-01-08 10:14:08 +0000156 if ((r = sshkey_load_file(fd, b)) != 0)
Damien Miller86687062014-07-02 15:28:02 +1000157 goto out;
158 if ((r = sshkey_parse_public_rsa1_fileblob(b, keyp, commentp)) != 0)
159 goto out;
160 r = 0;
161 out:
162 sshbuf_free(b);
163 return r;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000164}
Damien Miller86687062014-07-02 15:28:02 +1000165#endif /* WITH_SSH1 */
Damien Millereba71ba2000-04-29 23:57:08 +1000166
Damien Miller86687062014-07-02 15:28:02 +1000167/* XXX remove error() calls from here? */
168int
169sshkey_perm_ok(int fd, const char *filename)
Damien Millereba71ba2000-04-29 23:57:08 +1000170{
Damien Millereba71ba2000-04-29 23:57:08 +1000171 struct stat st;
172
Ben Lindstrom7aff2612001-09-23 13:53:22 +0000173 if (fstat(fd, &st) < 0)
Damien Miller86687062014-07-02 15:28:02 +1000174 return SSH_ERR_SYSTEM_ERROR;
Ben Lindstrom7aff2612001-09-23 13:53:22 +0000175 /*
176 * if a key owned by the user is accessed, then we check the
177 * permissions of the file. if the key owned by a different user,
178 * then we don't care.
179 */
Damien Millerb70b61f2000-09-16 16:25:12 +1100180#ifdef HAVE_CYGWIN
Damien Millercb5e44a2000-09-29 12:12:36 +1100181 if (check_ntsec(filename))
Damien Millerb70b61f2000-09-16 16:25:12 +1100182#endif
Ben Lindstrom7aff2612001-09-23 13:53:22 +0000183 if ((st.st_uid == getuid()) && (st.st_mode & 077) != 0) {
Damien Millereba71ba2000-04-29 23:57:08 +1000184 error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
185 error("@ WARNING: UNPROTECTED PRIVATE KEY FILE! @");
186 error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
Ben Lindstrom7aff2612001-09-23 13:53:22 +0000187 error("Permissions 0%3.3o for '%s' are too open.",
Damien Miller04bd8b02003-05-25 14:38:33 +1000188 (u_int)st.st_mode & 0777, filename);
djm@openbsd.org6b0d5762015-04-17 13:32:09 +0000189 error("It is required that your private key files are NOT accessible by others.");
Ben Lindstromd0fca422001-03-26 13:44:06 +0000190 error("This private key will be ignored.");
Damien Miller86687062014-07-02 15:28:02 +1000191 return SSH_ERR_KEY_BAD_PERMISSIONS;
Damien Millere4340be2000-09-16 13:29:08 +1100192 }
193 return 0;
194}
195
Damien Miller86687062014-07-02 15:28:02 +1000196/* XXX kill perm_ok now that we have SSH_ERR_KEY_BAD_PERMISSIONS? */
197int
198sshkey_load_private_type(int type, const char *filename, const char *passphrase,
199 struct sshkey **keyp, char **commentp, int *perm_ok)
Damien Millere4340be2000-09-16 13:29:08 +1100200{
Damien Miller86687062014-07-02 15:28:02 +1000201 int fd, r;
Damien Millere4340be2000-09-16 13:29:08 +1100202
Damien Miller86687062014-07-02 15:28:02 +1000203 *keyp = NULL;
204 if (commentp != NULL)
205 *commentp = NULL;
206
207 if ((fd = open(filename, O_RDONLY)) < 0) {
208 if (perm_ok != NULL)
209 *perm_ok = 0;
210 return SSH_ERR_SYSTEM_ERROR;
211 }
212 if (sshkey_perm_ok(fd, filename) != 0) {
213 if (perm_ok != NULL)
214 *perm_ok = 0;
215 r = SSH_ERR_KEY_BAD_PERMISSIONS;
216 goto out;
217 }
218 if (perm_ok != NULL)
219 *perm_ok = 1;
220
djm@openbsd.org1195f4c2015-01-08 10:14:08 +0000221 r = sshkey_load_private_type_fd(fd, type, passphrase, keyp, commentp);
222 out:
223 close(fd);
224 return r;
225}
226
227int
228sshkey_load_private_type_fd(int fd, int type, const char *passphrase,
229 struct sshkey **keyp, char **commentp)
230{
231 struct sshbuf *buffer = NULL;
232 int r;
233
Damien Miller86687062014-07-02 15:28:02 +1000234 if ((buffer = sshbuf_new()) == NULL) {
235 r = SSH_ERR_ALLOC_FAIL;
236 goto out;
237 }
djm@openbsd.org1195f4c2015-01-08 10:14:08 +0000238 if ((r = sshkey_load_file(fd, buffer)) != 0 ||
239 (r = sshkey_parse_private_fileblob_type(buffer, type,
240 passphrase, keyp, commentp)) != 0)
Damien Miller86687062014-07-02 15:28:02 +1000241 goto out;
djm@openbsd.org1195f4c2015-01-08 10:14:08 +0000242
243 /* success */
Damien Miller86687062014-07-02 15:28:02 +1000244 r = 0;
245 out:
Damien Miller86687062014-07-02 15:28:02 +1000246 if (buffer != NULL)
247 sshbuf_free(buffer);
248 return r;
249}
250
251/* XXX this is almost identical to sshkey_load_private_type() */
252int
253sshkey_load_private(const char *filename, const char *passphrase,
254 struct sshkey **keyp, char **commentp)
255{
256 struct sshbuf *buffer = NULL;
257 int r, fd;
258
259 *keyp = NULL;
260 if (commentp != NULL)
261 *commentp = NULL;
262
263 if ((fd = open(filename, O_RDONLY)) < 0)
264 return SSH_ERR_SYSTEM_ERROR;
265 if (sshkey_perm_ok(fd, filename) != 0) {
266 r = SSH_ERR_KEY_BAD_PERMISSIONS;
267 goto out;
268 }
269
270 if ((buffer = sshbuf_new()) == NULL) {
271 r = SSH_ERR_ALLOC_FAIL;
272 goto out;
273 }
djm@openbsd.org1195f4c2015-01-08 10:14:08 +0000274 if ((r = sshkey_load_file(fd, buffer)) != 0 ||
Damien Miller86687062014-07-02 15:28:02 +1000275 (r = sshkey_parse_private_fileblob(buffer, passphrase, filename,
276 keyp, commentp)) != 0)
277 goto out;
278 r = 0;
279 out:
280 close(fd);
281 if (buffer != NULL)
282 sshbuf_free(buffer);
283 return r;
284}
285
286static int
287sshkey_try_load_public(struct sshkey *k, const char *filename, char **commentp)
288{
289 FILE *f;
290 char line[SSH_MAX_PUBKEY_BYTES];
291 char *cp;
292 u_long linenum = 0;
293 int r;
294
295 if (commentp != NULL)
296 *commentp = NULL;
297 if ((f = fopen(filename, "r")) == NULL)
298 return SSH_ERR_SYSTEM_ERROR;
299 while (read_keyfile_line(f, filename, line, sizeof(line),
300 &linenum) != -1) {
301 cp = line;
302 switch (*cp) {
303 case '#':
304 case '\n':
305 case '\0':
306 continue;
307 }
308 /* Abort loading if this looks like a private key */
309 if (strncmp(cp, "-----BEGIN", 10) == 0 ||
310 strcmp(cp, "SSH PRIVATE KEY FILE") == 0)
311 break;
312 /* Skip leading whitespace. */
313 for (; *cp && (*cp == ' ' || *cp == '\t'); cp++)
314 ;
315 if (*cp) {
316 if ((r = sshkey_read(k, &cp)) == 0) {
317 cp[strcspn(cp, "\r\n")] = '\0';
318 if (commentp) {
319 *commentp = strdup(*cp ?
320 cp : filename);
321 if (*commentp == NULL)
322 r = SSH_ERR_ALLOC_FAIL;
323 }
324 fclose(f);
325 return r;
326 }
327 }
328 }
329 fclose(f);
330 return SSH_ERR_INVALID_FORMAT;
331}
332
333/* load public key from ssh v1 private or any pubkey file */
334int
335sshkey_load_public(const char *filename, struct sshkey **keyp, char **commentp)
336{
337 struct sshkey *pub = NULL;
deraadt@openbsd.org087266e2015-01-20 23:14:00 +0000338 char file[PATH_MAX];
Damien Miller86687062014-07-02 15:28:02 +1000339 int r, fd;
340
341 if (keyp != NULL)
342 *keyp = NULL;
343 if (commentp != NULL)
344 *commentp = NULL;
345
djm@openbsd.org52484292015-02-23 16:55:51 +0000346 /* XXX should load file once and attempt to parse each format */
347
Damien Miller86687062014-07-02 15:28:02 +1000348 if ((fd = open(filename, O_RDONLY)) < 0)
349 goto skip;
Damien Miller1f0311c2014-05-15 14:24:09 +1000350#ifdef WITH_SSH1
Damien Millerdb274722003-05-14 13:45:22 +1000351 /* try rsa1 private key */
djm@openbsd.org1195f4c2015-01-08 10:14:08 +0000352 r = sshkey_load_public_rsa1(fd, keyp, commentp);
Damien Miller86687062014-07-02 15:28:02 +1000353 close(fd);
354 switch (r) {
355 case SSH_ERR_INTERNAL_ERROR:
356 case SSH_ERR_ALLOC_FAIL:
357 case SSH_ERR_INVALID_ARGUMENT:
358 case SSH_ERR_SYSTEM_ERROR:
359 case 0:
360 return r;
361 }
djm@openbsd.org9a47ab82015-03-31 22:55:50 +0000362#else /* WITH_SSH1 */
363 close(fd);
Damien Miller86687062014-07-02 15:28:02 +1000364#endif /* WITH_SSH1 */
Damien Millerdb274722003-05-14 13:45:22 +1000365
366 /* try ssh2 public key */
Damien Miller86687062014-07-02 15:28:02 +1000367 if ((pub = sshkey_new(KEY_UNSPEC)) == NULL)
368 return SSH_ERR_ALLOC_FAIL;
369 if ((r = sshkey_try_load_public(pub, filename, commentp)) == 0) {
370 if (keyp != NULL)
371 *keyp = pub;
372 return 0;
373 }
374 sshkey_free(pub);
375
376#ifdef WITH_SSH1
377 /* try rsa1 public key */
378 if ((pub = sshkey_new(KEY_RSA1)) == NULL)
379 return SSH_ERR_ALLOC_FAIL;
380 if ((r = sshkey_try_load_public(pub, filename, commentp)) == 0) {
381 if (keyp != NULL)
382 *keyp = pub;
383 return 0;
384 }
385 sshkey_free(pub);
386#endif /* WITH_SSH1 */
387
388 skip:
389 /* try .pub suffix */
390 if ((pub = sshkey_new(KEY_UNSPEC)) == NULL)
391 return SSH_ERR_ALLOC_FAIL;
392 r = SSH_ERR_ALLOC_FAIL; /* in case strlcpy or strlcat fail */
Ben Lindstromd0fca422001-03-26 13:44:06 +0000393 if ((strlcpy(file, filename, sizeof file) < sizeof(file)) &&
394 (strlcat(file, ".pub", sizeof file) < sizeof(file)) &&
Damien Miller86687062014-07-02 15:28:02 +1000395 (r = sshkey_try_load_public(pub, file, commentp)) == 0) {
396 if (keyp != NULL)
397 *keyp = pub;
398 return 0;
399 }
400 sshkey_free(pub);
djm@openbsd.org52484292015-02-23 16:55:51 +0000401
Damien Miller86687062014-07-02 15:28:02 +1000402 return r;
Damien Millere4340be2000-09-16 13:29:08 +1100403}
Damien Miller1aed65e2010-03-04 21:53:35 +1100404
Damien Millerc1583312010-08-05 13:04:50 +1000405/* Load the certificate associated with the named private key */
Damien Miller86687062014-07-02 15:28:02 +1000406int
407sshkey_load_cert(const char *filename, struct sshkey **keyp)
Damien Millerc1583312010-08-05 13:04:50 +1000408{
Damien Miller86687062014-07-02 15:28:02 +1000409 struct sshkey *pub = NULL;
410 char *file = NULL;
411 int r = SSH_ERR_INTERNAL_ERROR;
Damien Millerc1583312010-08-05 13:04:50 +1000412
Damien Miller86687062014-07-02 15:28:02 +1000413 *keyp = NULL;
414
415 if (asprintf(&file, "%s-cert.pub", filename) == -1)
416 return SSH_ERR_ALLOC_FAIL;
417
418 if ((pub = sshkey_new(KEY_UNSPEC)) == NULL) {
419 goto out;
Damien Miller5458c4d2010-08-05 13:05:15 +1000420 }
Damien Miller86687062014-07-02 15:28:02 +1000421 if ((r = sshkey_try_load_public(pub, file, NULL)) != 0)
422 goto out;
423
424 *keyp = pub;
425 pub = NULL;
426 r = 0;
427
428 out:
429 if (file != NULL)
430 free(file);
431 if (pub != NULL)
432 sshkey_free(pub);
433 return r;
Damien Millerc1583312010-08-05 13:04:50 +1000434}
435
436/* Load private key and certificate */
Damien Miller86687062014-07-02 15:28:02 +1000437int
438sshkey_load_private_cert(int type, const char *filename, const char *passphrase,
439 struct sshkey **keyp, int *perm_ok)
Damien Millerc1583312010-08-05 13:04:50 +1000440{
Damien Miller86687062014-07-02 15:28:02 +1000441 struct sshkey *key = NULL, *cert = NULL;
442 int r;
443
444 *keyp = NULL;
Damien Millerc1583312010-08-05 13:04:50 +1000445
446 switch (type) {
Damien Miller1f0311c2014-05-15 14:24:09 +1000447#ifdef WITH_OPENSSL
Damien Millerc1583312010-08-05 13:04:50 +1000448 case KEY_RSA:
449 case KEY_DSA:
Damien Millereb8b60e2010-08-31 22:41:14 +1000450 case KEY_ECDSA:
Damien Miller86687062014-07-02 15:28:02 +1000451#endif /* WITH_OPENSSL */
markus@openbsd.org16db0a72015-07-09 09:49:46 +0000452 case KEY_ED25519:
Damien Miller86687062014-07-02 15:28:02 +1000453 case KEY_UNSPEC:
Damien Millerc1583312010-08-05 13:04:50 +1000454 break;
455 default:
Damien Miller86687062014-07-02 15:28:02 +1000456 return SSH_ERR_KEY_TYPE_UNKNOWN;
Damien Millerc1583312010-08-05 13:04:50 +1000457 }
458
Damien Miller86687062014-07-02 15:28:02 +1000459 if ((r = sshkey_load_private_type(type, filename,
460 passphrase, &key, NULL, perm_ok)) != 0 ||
461 (r = sshkey_load_cert(filename, &cert)) != 0)
462 goto out;
Damien Millerc1583312010-08-05 13:04:50 +1000463
464 /* Make sure the private key matches the certificate */
Damien Miller86687062014-07-02 15:28:02 +1000465 if (sshkey_equal_public(key, cert) == 0) {
466 r = SSH_ERR_KEY_CERT_MISMATCH;
467 goto out;
Damien Millerc1583312010-08-05 13:04:50 +1000468 }
469
djm@openbsd.orgc28fc622015-07-03 03:43:18 +0000470 if ((r = sshkey_to_certified(key)) != 0 ||
Damien Miller86687062014-07-02 15:28:02 +1000471 (r = sshkey_cert_copy(cert, key)) != 0)
472 goto out;
473 r = 0;
474 *keyp = key;
475 key = NULL;
476 out:
477 if (key != NULL)
478 sshkey_free(key);
479 if (cert != NULL)
480 sshkey_free(cert);
481 return r;
Damien Millerc1583312010-08-05 13:04:50 +1000482}
483
Damien Miller1aed65e2010-03-04 21:53:35 +1100484/*
Damien Miller86687062014-07-02 15:28:02 +1000485 * Returns success if the specified "key" is listed in the file "filename",
486 * SSH_ERR_KEY_NOT_FOUND: if the key is not listed or another error.
djm@openbsd.org5e39a492014-12-04 02:24:32 +0000487 * If "strict_type" is set then the key type must match exactly,
Damien Miller1aed65e2010-03-04 21:53:35 +1100488 * otherwise a comparison that ignores certficiate data is performed.
djm@openbsd.org5e39a492014-12-04 02:24:32 +0000489 * If "check_ca" is set and "key" is a certificate, then its CA key is
490 * also checked and sshkey_in_file() will return success if either is found.
Damien Miller1aed65e2010-03-04 21:53:35 +1100491 */
492int
djm@openbsd.org5e39a492014-12-04 02:24:32 +0000493sshkey_in_file(struct sshkey *key, const char *filename, int strict_type,
494 int check_ca)
Damien Miller1aed65e2010-03-04 21:53:35 +1100495{
496 FILE *f;
497 char line[SSH_MAX_PUBKEY_BYTES];
498 char *cp;
499 u_long linenum = 0;
Damien Miller86687062014-07-02 15:28:02 +1000500 int r = 0;
501 struct sshkey *pub = NULL;
502 int (*sshkey_compare)(const struct sshkey *, const struct sshkey *) =
503 strict_type ? sshkey_equal : sshkey_equal_public;
Damien Miller1aed65e2010-03-04 21:53:35 +1100504
djm@openbsd.org5e39a492014-12-04 02:24:32 +0000505 if ((f = fopen(filename, "r")) == NULL)
506 return SSH_ERR_SYSTEM_ERROR;
Damien Miller1aed65e2010-03-04 21:53:35 +1100507
508 while (read_keyfile_line(f, filename, line, sizeof(line),
Damien Miller86687062014-07-02 15:28:02 +1000509 &linenum) != -1) {
Damien Miller1aed65e2010-03-04 21:53:35 +1100510 cp = line;
511
512 /* Skip leading whitespace. */
513 for (; *cp && (*cp == ' ' || *cp == '\t'); cp++)
514 ;
515
516 /* Skip comments and empty lines */
517 switch (*cp) {
518 case '#':
519 case '\n':
520 case '\0':
521 continue;
522 }
523
Damien Miller86687062014-07-02 15:28:02 +1000524 if ((pub = sshkey_new(KEY_UNSPEC)) == NULL) {
525 r = SSH_ERR_ALLOC_FAIL;
526 goto out;
Damien Miller1aed65e2010-03-04 21:53:35 +1100527 }
Damien Miller86687062014-07-02 15:28:02 +1000528 if ((r = sshkey_read(pub, &cp)) != 0)
529 goto out;
djm@openbsd.org5e39a492014-12-04 02:24:32 +0000530 if (sshkey_compare(key, pub) ||
531 (check_ca && sshkey_is_cert(key) &&
532 sshkey_compare(key->cert->signature_key, pub))) {
Damien Miller86687062014-07-02 15:28:02 +1000533 r = 0;
534 goto out;
Damien Miller1aed65e2010-03-04 21:53:35 +1100535 }
Damien Miller86687062014-07-02 15:28:02 +1000536 sshkey_free(pub);
537 pub = NULL;
Damien Miller1aed65e2010-03-04 21:53:35 +1100538 }
Damien Miller86687062014-07-02 15:28:02 +1000539 r = SSH_ERR_KEY_NOT_FOUND;
540 out:
541 if (pub != NULL)
542 sshkey_free(pub);
Damien Miller1aed65e2010-03-04 21:53:35 +1100543 fclose(f);
Damien Miller86687062014-07-02 15:28:02 +1000544 return r;
Damien Miller1aed65e2010-03-04 21:53:35 +1100545}
Damien Miller86687062014-07-02 15:28:02 +1000546
djm@openbsd.org5e39a492014-12-04 02:24:32 +0000547/*
548 * Checks whether the specified key is revoked, returning 0 if not,
549 * SSH_ERR_KEY_REVOKED if it is or another error code if something
550 * unexpected happened.
551 * This will check both the key and, if it is a certificate, its CA key too.
552 * "revoked_keys_file" may be a KRL or a one-per-line list of public keys.
553 */
554int
555sshkey_check_revoked(struct sshkey *key, const char *revoked_keys_file)
556{
557 int r;
558
djm@openbsd.org5e39a492014-12-04 02:24:32 +0000559 r = ssh_krl_file_contains_key(revoked_keys_file, key);
560 /* If this was not a KRL to begin with then continue below */
561 if (r != SSH_ERR_KRL_BAD_MAGIC)
562 return r;
djm@openbsd.org5e39a492014-12-04 02:24:32 +0000563
564 /*
565 * If the file is not a KRL or we can't handle KRLs then attempt to
566 * parse the file as a flat list of keys.
567 */
568 switch ((r = sshkey_in_file(key, revoked_keys_file, 0, 1))) {
569 case 0:
570 /* Key found => revoked */
571 return SSH_ERR_KEY_REVOKED;
572 case SSH_ERR_KEY_NOT_FOUND:
573 /* Key not found => not revoked */
574 return 0;
575 default:
576 /* Some other error occurred */
577 return r;
578 }
579}
580