forked from openssh/openssh-portable
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
revert stricter key type / signature type checking in userauth path; too much software generates inconsistent messages, so we need a better plan. OpenBSD-Commit-ID: 4a44ddc991c803c4ecc8f1ad40e0ab4d22e1c519
- Loading branch information
Showing
3 changed files
with
12 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
/* $OpenBSD: monitor.c,v 1.176 2017/12/18 02:25:15 djm Exp $ */ | ||
/* $OpenBSD: monitor.c,v 1.177 2017/12/21 00:00:28 djm Exp $ */ | ||
/* | ||
* Copyright 2002 Niels Provos <[email protected]> | ||
* Copyright 2002 Markus Friedl <[email protected]> | ||
|
@@ -1353,6 +1353,12 @@ mm_answer_keyverify(int sock, struct sshbuf *m) | |
!monitor_allowed_key(blob, bloblen)) | ||
fatal("%s: bad key, not previously allowed", __func__); | ||
|
||
/* Empty signature algorithm means NULL. */ | ||
if (*sigalg == '\0') { | ||
free(sigalg); | ||
sigalg = NULL; | ||
} | ||
|
||
/* XXX use sshkey_froms here; need to change key_blob, etc. */ | ||
if ((r = sshkey_from_blob(blob, bloblen, &key)) != 0) | ||
fatal("%s: bad public key blob: %s", __func__, ssh_err(r)); | ||
|
@@ -1383,6 +1389,7 @@ mm_answer_keyverify(int sock, struct sshbuf *m) | |
free(blob); | ||
free(signature); | ||
free(data); | ||
free(sigalg); | ||
|
||
monitor_reset_key_state(); | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
/* $OpenBSD: monitor_wrap.c,v 1.96 2017/12/18 02:25:15 djm Exp $ */ | ||
/* $OpenBSD: monitor_wrap.c,v 1.97 2017/12/21 00:00:28 djm Exp $ */ | ||
/* | ||
* Copyright 2002 Niels Provos <[email protected]> | ||
* Copyright 2002 Markus Friedl <[email protected]> | ||
|
@@ -458,7 +458,7 @@ mm_sshkey_verify(const struct sshkey *key, const u_char *sig, size_t siglen, | |
buffer_put_string(&m, blob, len); | ||
buffer_put_string(&m, sig, siglen); | ||
buffer_put_string(&m, data, datalen); | ||
buffer_put_cstring(&m, sigalg); | ||
buffer_put_cstring(&m, sigalg == NULL ? "" : sigalg); | ||
free(blob); | ||
|
||
mm_request_send(pmonitor->m_recvfd, MONITOR_REQ_KEYVERIFY, &m); | ||
|