freebsd-src/crypto/openssh/auth2-gss.c

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

344 lines
9.8 KiB
C
Raw Normal View History

2023-08-10 16:16:53 +00:00
/* $OpenBSD: auth2-gss.c,v 1.34 2023/03/31 04:22:27 djm Exp $ */
2004-01-07 11:10:17 +00:00
/*
* Copyright (c) 2001-2003 Simon Wilkinson. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AS IS'' AND ANY EXPRESS OR
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "includes.h"
#ifdef GSSAPI
2006-09-30 13:29:51 +00:00
#include <sys/types.h>
#include <stdarg.h>
#include "xmalloc.h"
2018-08-28 10:47:58 +00:00
#include "sshkey.h"
2006-09-30 13:29:51 +00:00
#include "hostfile.h"
2004-01-07 11:10:17 +00:00
#include "auth.h"
#include "ssh2.h"
#include "log.h"
#include "dispatch.h"
2018-08-28 10:47:58 +00:00
#include "sshbuf.h"
#include "ssherr.h"
2015-01-05 16:09:55 +00:00
#include "misc.h"
2004-01-07 11:10:17 +00:00
#include "servconf.h"
#include "packet.h"
2021-04-23 19:10:38 +00:00
#include "kex.h"
2004-01-07 11:10:17 +00:00
#include "ssh-gss.h"
2006-09-30 13:29:51 +00:00
#include "monitor_wrap.h"
2004-01-07 11:10:17 +00:00
2023-08-10 16:16:53 +00:00
#define SSH_GSSAPI_MAX_MECHS 2048
2004-01-07 11:10:17 +00:00
extern ServerOptions options;
2018-05-06 12:24:45 +00:00
static int input_gssapi_token(int type, u_int32_t plen, struct ssh *ssh);
static int input_gssapi_mic(int type, u_int32_t plen, struct ssh *ssh);
static int input_gssapi_exchange_complete(int type, u_int32_t plen, struct ssh *ssh);
static int input_gssapi_errtok(int, u_int32_t, struct ssh *);
2004-01-07 11:10:17 +00:00
/*
* We only support those mechanisms that we know about (ie ones that we know
2006-03-22 19:46:12 +00:00
* how to check local user kuserok and the like)
2004-01-07 11:10:17 +00:00
*/
static int
2022-02-23 18:16:45 +00:00
userauth_gssapi(struct ssh *ssh, const char *method)
2004-01-07 11:10:17 +00:00
{
2018-05-06 12:24:45 +00:00
Authctxt *authctxt = ssh->authctxt;
2004-10-28 16:03:53 +00:00
gss_OID_desc goid = {0, NULL};
2004-01-07 11:10:17 +00:00
Gssctxt *ctxt = NULL;
2018-08-28 10:47:58 +00:00
int r, present;
u_int mechs;
2004-01-07 11:10:17 +00:00
OM_uint32 ms;
2018-08-28 10:47:58 +00:00
size_t len;
2005-09-03 06:59:33 +00:00
u_char *doid = NULL;
2004-01-07 11:10:17 +00:00
2018-08-28 10:47:58 +00:00
if ((r = sshpkt_get_u32(ssh, &mechs)) != 0)
2021-04-23 19:10:38 +00:00
fatal_fr(r, "parse packet");
2004-01-07 11:10:17 +00:00
if (mechs == 0) {
2023-08-10 16:16:53 +00:00
logit_f("mechanism negotiation is not supported");
return (0);
} else if (mechs > SSH_GSSAPI_MAX_MECHS) {
logit_f("too many mechanisms requested %u > %u", mechs,
SSH_GSSAPI_MAX_MECHS);
2004-01-07 11:10:17 +00:00
return (0);
}
do {
mechs--;
2013-09-18 17:27:38 +00:00
free(doid);
2004-01-07 11:10:17 +00:00
2004-02-26 10:38:49 +00:00
present = 0;
2018-08-28 10:47:58 +00:00
if ((r = sshpkt_get_string(ssh, &doid, &len)) != 0)
2021-04-23 19:10:38 +00:00
fatal_fr(r, "parse oid");
2004-01-07 11:10:17 +00:00
2005-09-03 06:59:33 +00:00
if (len > 2 && doid[0] == SSH_GSS_OIDTYPE &&
doid[1] == len - 2) {
2004-10-28 16:03:53 +00:00
goid.elements = doid + 2;
goid.length = len - 2;
2014-03-22 15:23:38 +00:00
ssh_gssapi_test_oid_supported(&ms, &goid, &present);
2004-02-26 10:38:49 +00:00
} else {
2023-08-10 16:16:53 +00:00
logit_f("badly formed OID received");
2004-01-07 11:10:17 +00:00
}
} while (mechs > 0 && !present);
if (!present) {
2013-09-18 17:27:38 +00:00
free(doid);
2011-09-28 08:14:41 +00:00
authctxt->server_caused_failure = 1;
2004-01-07 11:10:17 +00:00
return (0);
}
2018-08-28 10:47:58 +00:00
if (!authctxt->valid || authctxt->user == NULL) {
2021-04-23 19:10:38 +00:00
debug2_f("disabled because of invalid user");
2018-08-28 10:47:58 +00:00
free(doid);
return (0);
}
2004-10-28 16:03:53 +00:00
if (GSS_ERROR(PRIVSEP(ssh_gssapi_server_ctx(&ctxt, &goid)))) {
2006-09-30 13:29:51 +00:00
if (ctxt != NULL)
ssh_gssapi_delete_ctx(&ctxt);
2013-09-18 17:27:38 +00:00
free(doid);
2011-09-28 08:14:41 +00:00
authctxt->server_caused_failure = 1;
2004-01-07 11:10:17 +00:00
return (0);
}
2006-03-22 19:46:12 +00:00
authctxt->methoddata = (void *)ctxt;
2004-01-07 11:10:17 +00:00
2004-02-26 10:38:49 +00:00
/* Return the OID that we received */
2018-08-28 10:47:58 +00:00
if ((r = sshpkt_start(ssh, SSH2_MSG_USERAUTH_GSSAPI_RESPONSE)) != 0 ||
(r = sshpkt_put_string(ssh, doid, len)) != 0 ||
(r = sshpkt_send(ssh)) != 0)
2021-04-23 19:10:38 +00:00
fatal_fr(r, "send packet");
2004-01-07 11:10:17 +00:00
2013-09-18 17:27:38 +00:00
free(doid);
2004-01-07 11:10:17 +00:00
2018-05-06 12:24:45 +00:00
ssh_dispatch_set(ssh, SSH2_MSG_USERAUTH_GSSAPI_TOKEN, &input_gssapi_token);
ssh_dispatch_set(ssh, SSH2_MSG_USERAUTH_GSSAPI_ERRTOK, &input_gssapi_errtok);
2004-01-07 11:10:17 +00:00
authctxt->postponed = 1;
return (0);
}
2015-07-02 13:15:34 +00:00
static int
2018-05-06 12:24:45 +00:00
input_gssapi_token(int type, u_int32_t plen, struct ssh *ssh)
2004-01-07 11:10:17 +00:00
{
2018-05-06 12:24:45 +00:00
Authctxt *authctxt = ssh->authctxt;
2004-01-07 11:10:17 +00:00
Gssctxt *gssctxt;
gss_buffer_desc send_tok = GSS_C_EMPTY_BUFFER;
gss_buffer_desc recv_tok;
2004-02-26 10:38:49 +00:00
OM_uint32 maj_status, min_status, flags;
2018-08-28 10:47:58 +00:00
u_char *p;
size_t len;
int r;
2004-01-07 11:10:17 +00:00
if (authctxt == NULL || (authctxt->methoddata == NULL && !use_privsep))
fatal("No authentication or GSSAPI context");
gssctxt = authctxt->methoddata;
2018-08-28 10:47:58 +00:00
if ((r = sshpkt_get_string(ssh, &p, &len)) != 0 ||
(r = sshpkt_get_end(ssh)) != 0)
2021-04-23 19:10:38 +00:00
fatal_fr(r, "parse packet");
2004-01-07 11:10:17 +00:00
2018-08-28 10:47:58 +00:00
recv_tok.value = p;
recv_tok.length = len;
2004-01-07 11:10:17 +00:00
maj_status = PRIVSEP(ssh_gssapi_accept_ctx(gssctxt, &recv_tok,
2004-02-26 10:38:49 +00:00
&send_tok, &flags));
2004-01-07 11:10:17 +00:00
2018-08-28 10:47:58 +00:00
free(p);
2004-01-07 11:10:17 +00:00
if (GSS_ERROR(maj_status)) {
if (send_tok.length != 0) {
2018-08-28 10:47:58 +00:00
if ((r = sshpkt_start(ssh,
SSH2_MSG_USERAUTH_GSSAPI_ERRTOK)) != 0 ||
(r = sshpkt_put_string(ssh, send_tok.value,
send_tok.length)) != 0 ||
(r = sshpkt_send(ssh)) != 0)
2021-04-23 19:10:38 +00:00
fatal_fr(r, "send ERRTOK packet");
2004-01-07 11:10:17 +00:00
}
authctxt->postponed = 0;
2018-05-06 12:24:45 +00:00
ssh_dispatch_set(ssh, SSH2_MSG_USERAUTH_GSSAPI_TOKEN, NULL);
userauth_finish(ssh, 0, "gssapi-with-mic", NULL);
2004-01-07 11:10:17 +00:00
} else {
if (send_tok.length != 0) {
2018-08-28 10:47:58 +00:00
if ((r = sshpkt_start(ssh,
SSH2_MSG_USERAUTH_GSSAPI_TOKEN)) != 0 ||
(r = sshpkt_put_string(ssh, send_tok.value,
send_tok.length)) != 0 ||
(r = sshpkt_send(ssh)) != 0)
2021-04-23 19:10:38 +00:00
fatal_fr(r, "send TOKEN packet");
2004-01-07 11:10:17 +00:00
}
if (maj_status == GSS_S_COMPLETE) {
2018-05-06 12:24:45 +00:00
ssh_dispatch_set(ssh, SSH2_MSG_USERAUTH_GSSAPI_TOKEN, NULL);
2004-02-26 10:38:49 +00:00
if (flags & GSS_C_INTEG_FLAG)
2018-05-06 12:24:45 +00:00
ssh_dispatch_set(ssh, SSH2_MSG_USERAUTH_GSSAPI_MIC,
2004-02-26 10:38:49 +00:00
&input_gssapi_mic);
else
2018-05-06 12:24:45 +00:00
ssh_dispatch_set(ssh,
2004-02-26 10:38:49 +00:00
SSH2_MSG_USERAUTH_GSSAPI_EXCHANGE_COMPLETE,
&input_gssapi_exchange_complete);
2004-01-07 11:10:17 +00:00
}
}
gss_release_buffer(&min_status, &send_tok);
2015-07-02 13:15:34 +00:00
return 0;
2004-01-07 11:10:17 +00:00
}
2015-07-02 13:15:34 +00:00
static int
2018-05-06 12:24:45 +00:00
input_gssapi_errtok(int type, u_int32_t plen, struct ssh *ssh)
2004-01-07 11:10:17 +00:00
{
2018-05-06 12:24:45 +00:00
Authctxt *authctxt = ssh->authctxt;
2004-01-07 11:10:17 +00:00
Gssctxt *gssctxt;
gss_buffer_desc send_tok = GSS_C_EMPTY_BUFFER;
gss_buffer_desc recv_tok;
OM_uint32 maj_status;
2018-08-28 10:47:58 +00:00
int r;
u_char *p;
size_t len;
2004-01-07 11:10:17 +00:00
if (authctxt == NULL || (authctxt->methoddata == NULL && !use_privsep))
fatal("No authentication or GSSAPI context");
gssctxt = authctxt->methoddata;
2018-08-28 10:47:58 +00:00
if ((r = sshpkt_get_string(ssh, &p, &len)) != 0 ||
(r = sshpkt_get_end(ssh)) != 0)
2021-04-23 19:10:38 +00:00
fatal_fr(r, "parse packet");
2018-08-28 10:47:58 +00:00
recv_tok.value = p;
2004-01-07 11:10:17 +00:00
recv_tok.length = len;
/* Push the error token into GSSAPI to see what it says */
maj_status = PRIVSEP(ssh_gssapi_accept_ctx(gssctxt, &recv_tok,
&send_tok, NULL));
2013-09-18 17:27:38 +00:00
free(recv_tok.value);
2004-01-07 11:10:17 +00:00
/* We can't return anything to the client, even if we wanted to */
2018-05-06 12:24:45 +00:00
ssh_dispatch_set(ssh, SSH2_MSG_USERAUTH_GSSAPI_TOKEN, NULL);
ssh_dispatch_set(ssh, SSH2_MSG_USERAUTH_GSSAPI_ERRTOK, NULL);
2004-01-07 11:10:17 +00:00
/* The client will have already moved on to the next auth */
gss_release_buffer(&maj_status, &send_tok);
2015-07-02 13:15:34 +00:00
return 0;
2004-01-07 11:10:17 +00:00
}
/*
* This is called when the client thinks we've completed authentication.
* It should only be enabled in the dispatch handler by the function above,
* which only enables it once the GSSAPI exchange is complete.
*/
2015-07-02 13:15:34 +00:00
static int
2018-05-06 12:24:45 +00:00
input_gssapi_exchange_complete(int type, u_int32_t plen, struct ssh *ssh)
2004-01-07 11:10:17 +00:00
{
2018-05-06 12:24:45 +00:00
Authctxt *authctxt = ssh->authctxt;
2018-08-28 10:47:58 +00:00
int r, authenticated;
2018-05-06 12:24:45 +00:00
const char *displayname;
2004-01-07 11:10:17 +00:00
if (authctxt == NULL || (authctxt->methoddata == NULL && !use_privsep))
fatal("No authentication or GSSAPI context");
/*
2004-02-26 10:38:49 +00:00
* We don't need to check the status, because we're only enabled in
* the dispatcher once the exchange is complete
2004-01-07 11:10:17 +00:00
*/
2018-08-28 10:47:58 +00:00
if ((r = sshpkt_get_end(ssh)) != 0)
2021-04-23 19:10:38 +00:00
fatal_fr(r, "parse packet");
2004-01-07 11:10:17 +00:00
authenticated = PRIVSEP(ssh_gssapi_userok(authctxt->user));
2018-05-06 12:24:45 +00:00
if ((!use_privsep || mm_is_monitor()) &&
(displayname = ssh_gssapi_displayname()) != NULL)
auth2_record_info(authctxt, "%s", displayname);
2004-01-07 11:10:17 +00:00
authctxt->postponed = 0;
2018-05-06 12:24:45 +00:00
ssh_dispatch_set(ssh, SSH2_MSG_USERAUTH_GSSAPI_TOKEN, NULL);
ssh_dispatch_set(ssh, SSH2_MSG_USERAUTH_GSSAPI_ERRTOK, NULL);
ssh_dispatch_set(ssh, SSH2_MSG_USERAUTH_GSSAPI_MIC, NULL);
ssh_dispatch_set(ssh, SSH2_MSG_USERAUTH_GSSAPI_EXCHANGE_COMPLETE, NULL);
userauth_finish(ssh, authenticated, "gssapi-with-mic", NULL);
2015-07-02 13:15:34 +00:00
return 0;
2004-02-26 10:38:49 +00:00
}
2015-07-02 13:15:34 +00:00
static int
2018-05-06 12:24:45 +00:00
input_gssapi_mic(int type, u_int32_t plen, struct ssh *ssh)
2004-02-26 10:38:49 +00:00
{
2018-05-06 12:24:45 +00:00
Authctxt *authctxt = ssh->authctxt;
2004-02-26 10:38:49 +00:00
Gssctxt *gssctxt;
2018-08-28 10:47:58 +00:00
int r, authenticated = 0;
struct sshbuf *b;
2004-02-26 10:38:49 +00:00
gss_buffer_desc mic, gssbuf;
2018-05-06 12:24:45 +00:00
const char *displayname;
2018-08-28 10:47:58 +00:00
u_char *p;
size_t len;
2004-02-26 10:38:49 +00:00
if (authctxt == NULL || (authctxt->methoddata == NULL && !use_privsep))
fatal("No authentication or GSSAPI context");
gssctxt = authctxt->methoddata;
2018-08-28 10:47:58 +00:00
if ((r = sshpkt_get_string(ssh, &p, &len)) != 0)
2021-04-23 19:10:38 +00:00
fatal_fr(r, "parse packet");
2018-08-28 10:47:58 +00:00
if ((b = sshbuf_new()) == NULL)
2021-04-23 19:10:38 +00:00
fatal_f("sshbuf_new failed");
2018-08-28 10:47:58 +00:00
mic.value = p;
2004-02-26 10:38:49 +00:00
mic.length = len;
2018-08-28 10:47:58 +00:00
ssh_gssapi_buildmic(b, authctxt->user, authctxt->service,
2021-04-23 19:10:38 +00:00
"gssapi-with-mic", ssh->kex->session_id);
2004-02-26 10:38:49 +00:00
2018-08-28 10:47:58 +00:00
if ((gssbuf.value = sshbuf_mutable_ptr(b)) == NULL)
2021-04-23 19:10:38 +00:00
fatal_f("sshbuf_mutable_ptr failed");
2018-08-28 10:47:58 +00:00
gssbuf.length = sshbuf_len(b);
2004-02-26 10:38:49 +00:00
if (!GSS_ERROR(PRIVSEP(ssh_gssapi_checkmic(gssctxt, &gssbuf, &mic))))
authenticated = PRIVSEP(ssh_gssapi_userok(authctxt->user));
else
logit("GSSAPI MIC check failed");
2018-08-28 10:47:58 +00:00
sshbuf_free(b);
2013-09-18 17:27:38 +00:00
free(mic.value);
2004-02-26 10:38:49 +00:00
2018-05-06 12:24:45 +00:00
if ((!use_privsep || mm_is_monitor()) &&
(displayname = ssh_gssapi_displayname()) != NULL)
auth2_record_info(authctxt, "%s", displayname);
2004-02-26 10:38:49 +00:00
authctxt->postponed = 0;
2018-05-06 12:24:45 +00:00
ssh_dispatch_set(ssh, SSH2_MSG_USERAUTH_GSSAPI_TOKEN, NULL);
ssh_dispatch_set(ssh, SSH2_MSG_USERAUTH_GSSAPI_ERRTOK, NULL);
ssh_dispatch_set(ssh, SSH2_MSG_USERAUTH_GSSAPI_MIC, NULL);
ssh_dispatch_set(ssh, SSH2_MSG_USERAUTH_GSSAPI_EXCHANGE_COMPLETE, NULL);
userauth_finish(ssh, authenticated, "gssapi-with-mic", NULL);
2015-07-02 13:15:34 +00:00
return 0;
2004-01-07 11:10:17 +00:00
}
Authmethod method_gssapi = {
2004-02-26 10:38:49 +00:00
"gssapi-with-mic",
2022-02-23 18:16:45 +00:00
NULL,
2004-01-07 11:10:17 +00:00
userauth_gssapi,
&options.gss_authentication
};
#endif /* GSSAPI */