djm@openbsd.org | 8f57495 | 2017-06-24 06:34:38 +0000 | [diff] [blame] | 1 | /* $OpenBSD: auth2-gss.c,v 1.26 2017/06/24 06:34:38 djm Exp $ */ |
Darren Tucker | 0efd155 | 2003-08-26 11:49:55 +1000 | [diff] [blame] | 2 | |
| 3 | /* |
| 4 | * Copyright (c) 2001-2003 Simon Wilkinson. All rights reserved. |
| 5 | * |
| 6 | * Redistribution and use in source and binary forms, with or without |
| 7 | * modification, are permitted provided that the following conditions |
| 8 | * are met: |
| 9 | * 1. Redistributions of source code must retain the above copyright |
| 10 | * notice, this list of conditions and the following disclaimer. |
| 11 | * 2. Redistributions in binary form must reproduce the above copyright |
| 12 | * notice, this list of conditions and the following disclaimer in the |
| 13 | * documentation and/or other materials provided with the distribution. |
| 14 | * |
| 15 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AS IS'' AND ANY EXPRESS OR |
| 16 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
| 17 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 18 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 19 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
| 20 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 21 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 22 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 23 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 24 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 25 | */ |
| 26 | |
| 27 | #include "includes.h" |
| 28 | |
Darren Tucker | 8c6feda | 2006-08-05 15:24:59 +1000 | [diff] [blame] | 29 | #ifdef GSSAPI |
| 30 | |
Damien Miller | d783435 | 2006-08-05 12:39:39 +1000 | [diff] [blame] | 31 | #include <sys/types.h> |
Darren Tucker | 0efd155 | 2003-08-26 11:49:55 +1000 | [diff] [blame] | 32 | |
Damien Miller | ded319c | 2006-09-01 15:38:36 +1000 | [diff] [blame] | 33 | #include <stdarg.h> |
| 34 | |
Damien Miller | d783435 | 2006-08-05 12:39:39 +1000 | [diff] [blame] | 35 | #include "xmalloc.h" |
| 36 | #include "key.h" |
| 37 | #include "hostfile.h" |
Darren Tucker | 0efd155 | 2003-08-26 11:49:55 +1000 | [diff] [blame] | 38 | #include "auth.h" |
| 39 | #include "ssh2.h" |
Darren Tucker | 0efd155 | 2003-08-26 11:49:55 +1000 | [diff] [blame] | 40 | #include "log.h" |
| 41 | #include "dispatch.h" |
Damien Miller | d783435 | 2006-08-05 12:39:39 +1000 | [diff] [blame] | 42 | #include "buffer.h" |
Darren Tucker | 450bc11 | 2014-07-19 06:23:18 +1000 | [diff] [blame] | 43 | #include "misc.h" |
Darren Tucker | 0efd155 | 2003-08-26 11:49:55 +1000 | [diff] [blame] | 44 | #include "servconf.h" |
Darren Tucker | 0efd155 | 2003-08-26 11:49:55 +1000 | [diff] [blame] | 45 | #include "packet.h" |
Darren Tucker | 0efd155 | 2003-08-26 11:49:55 +1000 | [diff] [blame] | 46 | #include "ssh-gss.h" |
Damien Miller | d783435 | 2006-08-05 12:39:39 +1000 | [diff] [blame] | 47 | #include "monitor_wrap.h" |
Darren Tucker | 0efd155 | 2003-08-26 11:49:55 +1000 | [diff] [blame] | 48 | |
| 49 | extern ServerOptions options; |
| 50 | |
markus@openbsd.org | 2ae666a | 2017-05-30 14:23:52 +0000 | [diff] [blame] | 51 | static int input_gssapi_token(int type, u_int32_t plen, struct ssh *ssh); |
| 52 | static int input_gssapi_mic(int type, u_int32_t plen, struct ssh *ssh); |
| 53 | static int input_gssapi_exchange_complete(int type, u_int32_t plen, struct ssh *ssh); |
| 54 | static int input_gssapi_errtok(int, u_int32_t, struct ssh *); |
Darren Tucker | 0efd155 | 2003-08-26 11:49:55 +1000 | [diff] [blame] | 55 | |
| 56 | /* |
| 57 | * We only support those mechanisms that we know about (ie ones that we know |
Damien Miller | 6fd6def | 2005-11-05 15:07:05 +1100 | [diff] [blame] | 58 | * how to check local user kuserok and the like) |
Darren Tucker | 0efd155 | 2003-08-26 11:49:55 +1000 | [diff] [blame] | 59 | */ |
| 60 | static int |
markus@openbsd.org | eb272ea | 2017-05-30 14:29:59 +0000 | [diff] [blame] | 61 | userauth_gssapi(struct ssh *ssh) |
Darren Tucker | 0efd155 | 2003-08-26 11:49:55 +1000 | [diff] [blame] | 62 | { |
markus@openbsd.org | eb272ea | 2017-05-30 14:29:59 +0000 | [diff] [blame] | 63 | Authctxt *authctxt = ssh->authctxt; |
Darren Tucker | 3f9fdc7 | 2004-06-22 12:56:01 +1000 | [diff] [blame] | 64 | gss_OID_desc goid = {0, NULL}; |
Darren Tucker | 0efd155 | 2003-08-26 11:49:55 +1000 | [diff] [blame] | 65 | Gssctxt *ctxt = NULL; |
| 66 | int mechs; |
Darren Tucker | 0efd155 | 2003-08-26 11:49:55 +1000 | [diff] [blame] | 67 | int present; |
| 68 | OM_uint32 ms; |
| 69 | u_int len; |
Damien Miller | eccb9de | 2005-06-17 12:59:34 +1000 | [diff] [blame] | 70 | u_char *doid = NULL; |
Darren Tucker | 0efd155 | 2003-08-26 11:49:55 +1000 | [diff] [blame] | 71 | |
| 72 | if (!authctxt->valid || authctxt->user == NULL) |
| 73 | return (0); |
| 74 | |
| 75 | mechs = packet_get_int(); |
| 76 | if (mechs == 0) { |
| 77 | debug("Mechanism negotiation is not supported"); |
| 78 | return (0); |
| 79 | } |
| 80 | |
Darren Tucker | 0efd155 | 2003-08-26 11:49:55 +1000 | [diff] [blame] | 81 | do { |
| 82 | mechs--; |
| 83 | |
Darren Tucker | a627d42 | 2013-06-02 07:31:17 +1000 | [diff] [blame] | 84 | free(doid); |
Darren Tucker | 0efd155 | 2003-08-26 11:49:55 +1000 | [diff] [blame] | 85 | |
Darren Tucker | 655a5e0 | 2003-11-03 20:09:03 +1100 | [diff] [blame] | 86 | present = 0; |
Darren Tucker | 0efd155 | 2003-08-26 11:49:55 +1000 | [diff] [blame] | 87 | doid = packet_get_string(&len); |
| 88 | |
Damien Miller | 0dc1bef | 2005-07-17 17:22:45 +1000 | [diff] [blame] | 89 | if (len > 2 && doid[0] == SSH_GSS_OIDTYPE && |
| 90 | doid[1] == len - 2) { |
Darren Tucker | 3f9fdc7 | 2004-06-22 12:56:01 +1000 | [diff] [blame] | 91 | goid.elements = doid + 2; |
| 92 | goid.length = len - 2; |
Damien Miller | e6a74ae | 2014-02-27 10:17:49 +1100 | [diff] [blame] | 93 | ssh_gssapi_test_oid_supported(&ms, &goid, &present); |
Darren Tucker | 0efd155 | 2003-08-26 11:49:55 +1000 | [diff] [blame] | 94 | } else { |
Darren Tucker | 655a5e0 | 2003-11-03 20:09:03 +1100 | [diff] [blame] | 95 | logit("Badly formed OID received"); |
Darren Tucker | 0efd155 | 2003-08-26 11:49:55 +1000 | [diff] [blame] | 96 | } |
Darren Tucker | 0efd155 | 2003-08-26 11:49:55 +1000 | [diff] [blame] | 97 | } while (mechs > 0 && !present); |
| 98 | |
Darren Tucker | 0efd155 | 2003-08-26 11:49:55 +1000 | [diff] [blame] | 99 | if (!present) { |
Darren Tucker | a627d42 | 2013-06-02 07:31:17 +1000 | [diff] [blame] | 100 | free(doid); |
Damien Miller | 3fcdfd5 | 2011-05-05 14:04:11 +1000 | [diff] [blame] | 101 | authctxt->server_caused_failure = 1; |
Darren Tucker | 0efd155 | 2003-08-26 11:49:55 +1000 | [diff] [blame] | 102 | return (0); |
| 103 | } |
| 104 | |
Darren Tucker | 3f9fdc7 | 2004-06-22 12:56:01 +1000 | [diff] [blame] | 105 | if (GSS_ERROR(PRIVSEP(ssh_gssapi_server_ctx(&ctxt, &goid)))) { |
Damien Miller | f23c096 | 2006-03-26 00:04:53 +1100 | [diff] [blame] | 106 | if (ctxt != NULL) |
| 107 | ssh_gssapi_delete_ctx(&ctxt); |
Darren Tucker | a627d42 | 2013-06-02 07:31:17 +1000 | [diff] [blame] | 108 | free(doid); |
Damien Miller | 3fcdfd5 | 2011-05-05 14:04:11 +1000 | [diff] [blame] | 109 | authctxt->server_caused_failure = 1; |
Darren Tucker | 0efd155 | 2003-08-26 11:49:55 +1000 | [diff] [blame] | 110 | return (0); |
Damien Miller | 982d326 | 2003-09-02 22:59:01 +1000 | [diff] [blame] | 111 | } |
Darren Tucker | 0efd155 | 2003-08-26 11:49:55 +1000 | [diff] [blame] | 112 | |
Damien Miller | 6fd6def | 2005-11-05 15:07:05 +1100 | [diff] [blame] | 113 | authctxt->methoddata = (void *)ctxt; |
Darren Tucker | 0efd155 | 2003-08-26 11:49:55 +1000 | [diff] [blame] | 114 | |
| 115 | packet_start(SSH2_MSG_USERAUTH_GSSAPI_RESPONSE); |
| 116 | |
Darren Tucker | 655a5e0 | 2003-11-03 20:09:03 +1100 | [diff] [blame] | 117 | /* Return the OID that we received */ |
Darren Tucker | 0efd155 | 2003-08-26 11:49:55 +1000 | [diff] [blame] | 118 | packet_put_string(doid, len); |
| 119 | |
| 120 | packet_send(); |
Darren Tucker | a627d42 | 2013-06-02 07:31:17 +1000 | [diff] [blame] | 121 | free(doid); |
Darren Tucker | 0efd155 | 2003-08-26 11:49:55 +1000 | [diff] [blame] | 122 | |
markus@openbsd.org | eb272ea | 2017-05-30 14:29:59 +0000 | [diff] [blame] | 123 | ssh_dispatch_set(ssh, SSH2_MSG_USERAUTH_GSSAPI_TOKEN, &input_gssapi_token); |
| 124 | ssh_dispatch_set(ssh, SSH2_MSG_USERAUTH_GSSAPI_ERRTOK, &input_gssapi_errtok); |
Darren Tucker | 0efd155 | 2003-08-26 11:49:55 +1000 | [diff] [blame] | 125 | authctxt->postponed = 1; |
| 126 | |
| 127 | return (0); |
| 128 | } |
| 129 | |
markus@openbsd.org | 3fdc88a | 2015-01-19 20:07:45 +0000 | [diff] [blame] | 130 | static int |
markus@openbsd.org | 2ae666a | 2017-05-30 14:23:52 +0000 | [diff] [blame] | 131 | input_gssapi_token(int type, u_int32_t plen, struct ssh *ssh) |
Darren Tucker | 0efd155 | 2003-08-26 11:49:55 +1000 | [diff] [blame] | 132 | { |
markus@openbsd.org | 5f4082d | 2017-05-30 14:18:15 +0000 | [diff] [blame] | 133 | Authctxt *authctxt = ssh->authctxt; |
Darren Tucker | 0efd155 | 2003-08-26 11:49:55 +1000 | [diff] [blame] | 134 | Gssctxt *gssctxt; |
| 135 | gss_buffer_desc send_tok = GSS_C_EMPTY_BUFFER; |
| 136 | gss_buffer_desc recv_tok; |
Damien Miller | 0425d40 | 2003-11-17 22:18:21 +1100 | [diff] [blame] | 137 | OM_uint32 maj_status, min_status, flags; |
Darren Tucker | 0efd155 | 2003-08-26 11:49:55 +1000 | [diff] [blame] | 138 | u_int len; |
| 139 | |
| 140 | if (authctxt == NULL || (authctxt->methoddata == NULL && !use_privsep)) |
| 141 | fatal("No authentication or GSSAPI context"); |
| 142 | |
| 143 | gssctxt = authctxt->methoddata; |
| 144 | recv_tok.value = packet_get_string(&len); |
| 145 | recv_tok.length = len; /* u_int vs. size_t */ |
| 146 | |
| 147 | packet_check_eom(); |
| 148 | |
| 149 | maj_status = PRIVSEP(ssh_gssapi_accept_ctx(gssctxt, &recv_tok, |
Damien Miller | 0425d40 | 2003-11-17 22:18:21 +1100 | [diff] [blame] | 150 | &send_tok, &flags)); |
Darren Tucker | 0efd155 | 2003-08-26 11:49:55 +1000 | [diff] [blame] | 151 | |
Darren Tucker | a627d42 | 2013-06-02 07:31:17 +1000 | [diff] [blame] | 152 | free(recv_tok.value); |
Darren Tucker | 0efd155 | 2003-08-26 11:49:55 +1000 | [diff] [blame] | 153 | |
| 154 | if (GSS_ERROR(maj_status)) { |
| 155 | if (send_tok.length != 0) { |
| 156 | packet_start(SSH2_MSG_USERAUTH_GSSAPI_ERRTOK); |
| 157 | packet_put_string(send_tok.value, send_tok.length); |
| 158 | packet_send(); |
| 159 | } |
| 160 | authctxt->postponed = 0; |
markus@openbsd.org | eb272ea | 2017-05-30 14:29:59 +0000 | [diff] [blame] | 161 | ssh_dispatch_set(ssh, SSH2_MSG_USERAUTH_GSSAPI_TOKEN, NULL); |
| 162 | userauth_finish(ssh, 0, "gssapi-with-mic", NULL); |
Darren Tucker | 0efd155 | 2003-08-26 11:49:55 +1000 | [diff] [blame] | 163 | } else { |
| 164 | if (send_tok.length != 0) { |
| 165 | packet_start(SSH2_MSG_USERAUTH_GSSAPI_TOKEN); |
| 166 | packet_put_string(send_tok.value, send_tok.length); |
| 167 | packet_send(); |
| 168 | } |
| 169 | if (maj_status == GSS_S_COMPLETE) { |
markus@openbsd.org | eb272ea | 2017-05-30 14:29:59 +0000 | [diff] [blame] | 170 | ssh_dispatch_set(ssh, SSH2_MSG_USERAUTH_GSSAPI_TOKEN, NULL); |
Damien Miller | 0425d40 | 2003-11-17 22:18:21 +1100 | [diff] [blame] | 171 | if (flags & GSS_C_INTEG_FLAG) |
markus@openbsd.org | eb272ea | 2017-05-30 14:29:59 +0000 | [diff] [blame] | 172 | ssh_dispatch_set(ssh, SSH2_MSG_USERAUTH_GSSAPI_MIC, |
Damien Miller | 0425d40 | 2003-11-17 22:18:21 +1100 | [diff] [blame] | 173 | &input_gssapi_mic); |
| 174 | else |
markus@openbsd.org | eb272ea | 2017-05-30 14:29:59 +0000 | [diff] [blame] | 175 | ssh_dispatch_set(ssh, |
Damien Miller | 0425d40 | 2003-11-17 22:18:21 +1100 | [diff] [blame] | 176 | SSH2_MSG_USERAUTH_GSSAPI_EXCHANGE_COMPLETE, |
| 177 | &input_gssapi_exchange_complete); |
Darren Tucker | 0efd155 | 2003-08-26 11:49:55 +1000 | [diff] [blame] | 178 | } |
| 179 | } |
| 180 | |
| 181 | gss_release_buffer(&min_status, &send_tok); |
markus@openbsd.org | 3fdc88a | 2015-01-19 20:07:45 +0000 | [diff] [blame] | 182 | return 0; |
Darren Tucker | 0efd155 | 2003-08-26 11:49:55 +1000 | [diff] [blame] | 183 | } |
| 184 | |
markus@openbsd.org | 3fdc88a | 2015-01-19 20:07:45 +0000 | [diff] [blame] | 185 | static int |
markus@openbsd.org | 2ae666a | 2017-05-30 14:23:52 +0000 | [diff] [blame] | 186 | input_gssapi_errtok(int type, u_int32_t plen, struct ssh *ssh) |
Darren Tucker | 0efd155 | 2003-08-26 11:49:55 +1000 | [diff] [blame] | 187 | { |
markus@openbsd.org | 5f4082d | 2017-05-30 14:18:15 +0000 | [diff] [blame] | 188 | Authctxt *authctxt = ssh->authctxt; |
Darren Tucker | 0efd155 | 2003-08-26 11:49:55 +1000 | [diff] [blame] | 189 | Gssctxt *gssctxt; |
| 190 | gss_buffer_desc send_tok = GSS_C_EMPTY_BUFFER; |
| 191 | gss_buffer_desc recv_tok; |
| 192 | OM_uint32 maj_status; |
Damien Miller | 55c47ed | 2003-09-02 22:14:07 +1000 | [diff] [blame] | 193 | u_int len; |
Darren Tucker | 0efd155 | 2003-08-26 11:49:55 +1000 | [diff] [blame] | 194 | |
| 195 | if (authctxt == NULL || (authctxt->methoddata == NULL && !use_privsep)) |
| 196 | fatal("No authentication or GSSAPI context"); |
| 197 | |
| 198 | gssctxt = authctxt->methoddata; |
Damien Miller | 55c47ed | 2003-09-02 22:14:07 +1000 | [diff] [blame] | 199 | recv_tok.value = packet_get_string(&len); |
| 200 | recv_tok.length = len; |
Darren Tucker | 0efd155 | 2003-08-26 11:49:55 +1000 | [diff] [blame] | 201 | |
| 202 | packet_check_eom(); |
| 203 | |
| 204 | /* Push the error token into GSSAPI to see what it says */ |
| 205 | maj_status = PRIVSEP(ssh_gssapi_accept_ctx(gssctxt, &recv_tok, |
| 206 | &send_tok, NULL)); |
| 207 | |
Darren Tucker | a627d42 | 2013-06-02 07:31:17 +1000 | [diff] [blame] | 208 | free(recv_tok.value); |
Darren Tucker | 0efd155 | 2003-08-26 11:49:55 +1000 | [diff] [blame] | 209 | |
| 210 | /* We can't return anything to the client, even if we wanted to */ |
markus@openbsd.org | eb272ea | 2017-05-30 14:29:59 +0000 | [diff] [blame] | 211 | ssh_dispatch_set(ssh, SSH2_MSG_USERAUTH_GSSAPI_TOKEN, NULL); |
| 212 | ssh_dispatch_set(ssh, SSH2_MSG_USERAUTH_GSSAPI_ERRTOK, NULL); |
Darren Tucker | 0efd155 | 2003-08-26 11:49:55 +1000 | [diff] [blame] | 213 | |
| 214 | /* The client will have already moved on to the next auth */ |
| 215 | |
| 216 | gss_release_buffer(&maj_status, &send_tok); |
markus@openbsd.org | 3fdc88a | 2015-01-19 20:07:45 +0000 | [diff] [blame] | 217 | return 0; |
Darren Tucker | 0efd155 | 2003-08-26 11:49:55 +1000 | [diff] [blame] | 218 | } |
| 219 | |
| 220 | /* |
| 221 | * This is called when the client thinks we've completed authentication. |
| 222 | * It should only be enabled in the dispatch handler by the function above, |
| 223 | * which only enables it once the GSSAPI exchange is complete. |
| 224 | */ |
| 225 | |
markus@openbsd.org | 3fdc88a | 2015-01-19 20:07:45 +0000 | [diff] [blame] | 226 | static int |
markus@openbsd.org | 2ae666a | 2017-05-30 14:23:52 +0000 | [diff] [blame] | 227 | input_gssapi_exchange_complete(int type, u_int32_t plen, struct ssh *ssh) |
Darren Tucker | 0efd155 | 2003-08-26 11:49:55 +1000 | [diff] [blame] | 228 | { |
markus@openbsd.org | 5f4082d | 2017-05-30 14:18:15 +0000 | [diff] [blame] | 229 | Authctxt *authctxt = ssh->authctxt; |
Darren Tucker | 0efd155 | 2003-08-26 11:49:55 +1000 | [diff] [blame] | 230 | int authenticated; |
djm@openbsd.org | 8f57495 | 2017-06-24 06:34:38 +0000 | [diff] [blame] | 231 | const char *displayname; |
Darren Tucker | 0efd155 | 2003-08-26 11:49:55 +1000 | [diff] [blame] | 232 | |
| 233 | if (authctxt == NULL || (authctxt->methoddata == NULL && !use_privsep)) |
| 234 | fatal("No authentication or GSSAPI context"); |
| 235 | |
Darren Tucker | 0efd155 | 2003-08-26 11:49:55 +1000 | [diff] [blame] | 236 | /* |
Damien Miller | 0425d40 | 2003-11-17 22:18:21 +1100 | [diff] [blame] | 237 | * We don't need to check the status, because we're only enabled in |
| 238 | * the dispatcher once the exchange is complete |
Darren Tucker | 0efd155 | 2003-08-26 11:49:55 +1000 | [diff] [blame] | 239 | */ |
| 240 | |
| 241 | packet_check_eom(); |
| 242 | |
| 243 | authenticated = PRIVSEP(ssh_gssapi_userok(authctxt->user)); |
| 244 | |
djm@openbsd.org | 8f57495 | 2017-06-24 06:34:38 +0000 | [diff] [blame] | 245 | if ((!use_privsep || mm_is_monitor()) && |
| 246 | (displayname = ssh_gssapi_displayname()) != NULL) |
| 247 | auth2_record_info(authctxt, "%s", displayname); |
| 248 | |
Darren Tucker | 0efd155 | 2003-08-26 11:49:55 +1000 | [diff] [blame] | 249 | authctxt->postponed = 0; |
markus@openbsd.org | eb272ea | 2017-05-30 14:29:59 +0000 | [diff] [blame] | 250 | ssh_dispatch_set(ssh, SSH2_MSG_USERAUTH_GSSAPI_TOKEN, NULL); |
| 251 | ssh_dispatch_set(ssh, SSH2_MSG_USERAUTH_GSSAPI_ERRTOK, NULL); |
| 252 | ssh_dispatch_set(ssh, SSH2_MSG_USERAUTH_GSSAPI_MIC, NULL); |
| 253 | ssh_dispatch_set(ssh, SSH2_MSG_USERAUTH_GSSAPI_EXCHANGE_COMPLETE, NULL); |
| 254 | userauth_finish(ssh, authenticated, "gssapi-with-mic", NULL); |
markus@openbsd.org | 3fdc88a | 2015-01-19 20:07:45 +0000 | [diff] [blame] | 255 | return 0; |
Damien Miller | 0425d40 | 2003-11-17 22:18:21 +1100 | [diff] [blame] | 256 | } |
| 257 | |
markus@openbsd.org | 3fdc88a | 2015-01-19 20:07:45 +0000 | [diff] [blame] | 258 | static int |
markus@openbsd.org | 2ae666a | 2017-05-30 14:23:52 +0000 | [diff] [blame] | 259 | input_gssapi_mic(int type, u_int32_t plen, struct ssh *ssh) |
Damien Miller | 0425d40 | 2003-11-17 22:18:21 +1100 | [diff] [blame] | 260 | { |
markus@openbsd.org | 5f4082d | 2017-05-30 14:18:15 +0000 | [diff] [blame] | 261 | Authctxt *authctxt = ssh->authctxt; |
Damien Miller | 0425d40 | 2003-11-17 22:18:21 +1100 | [diff] [blame] | 262 | Gssctxt *gssctxt; |
| 263 | int authenticated = 0; |
| 264 | Buffer b; |
| 265 | gss_buffer_desc mic, gssbuf; |
| 266 | u_int len; |
djm@openbsd.org | 8f57495 | 2017-06-24 06:34:38 +0000 | [diff] [blame] | 267 | const char *displayname; |
Damien Miller | 787b2ec | 2003-11-21 23:56:47 +1100 | [diff] [blame] | 268 | |
Damien Miller | 0425d40 | 2003-11-17 22:18:21 +1100 | [diff] [blame] | 269 | if (authctxt == NULL || (authctxt->methoddata == NULL && !use_privsep)) |
| 270 | fatal("No authentication or GSSAPI context"); |
Damien Miller | 787b2ec | 2003-11-21 23:56:47 +1100 | [diff] [blame] | 271 | |
Damien Miller | 0425d40 | 2003-11-17 22:18:21 +1100 | [diff] [blame] | 272 | gssctxt = authctxt->methoddata; |
Damien Miller | 787b2ec | 2003-11-21 23:56:47 +1100 | [diff] [blame] | 273 | |
Damien Miller | 0425d40 | 2003-11-17 22:18:21 +1100 | [diff] [blame] | 274 | mic.value = packet_get_string(&len); |
| 275 | mic.length = len; |
Damien Miller | 787b2ec | 2003-11-21 23:56:47 +1100 | [diff] [blame] | 276 | |
Damien Miller | 0425d40 | 2003-11-17 22:18:21 +1100 | [diff] [blame] | 277 | ssh_gssapi_buildmic(&b, authctxt->user, authctxt->service, |
| 278 | "gssapi-with-mic"); |
Damien Miller | 787b2ec | 2003-11-21 23:56:47 +1100 | [diff] [blame] | 279 | |
Damien Miller | 0425d40 | 2003-11-17 22:18:21 +1100 | [diff] [blame] | 280 | gssbuf.value = buffer_ptr(&b); |
| 281 | gssbuf.length = buffer_len(&b); |
Damien Miller | 787b2ec | 2003-11-21 23:56:47 +1100 | [diff] [blame] | 282 | |
Damien Miller | 0425d40 | 2003-11-17 22:18:21 +1100 | [diff] [blame] | 283 | if (!GSS_ERROR(PRIVSEP(ssh_gssapi_checkmic(gssctxt, &gssbuf, &mic)))) |
| 284 | authenticated = PRIVSEP(ssh_gssapi_userok(authctxt->user)); |
| 285 | else |
| 286 | logit("GSSAPI MIC check failed"); |
| 287 | |
| 288 | buffer_free(&b); |
Darren Tucker | a627d42 | 2013-06-02 07:31:17 +1000 | [diff] [blame] | 289 | free(mic.value); |
Damien Miller | 787b2ec | 2003-11-21 23:56:47 +1100 | [diff] [blame] | 290 | |
djm@openbsd.org | 8f57495 | 2017-06-24 06:34:38 +0000 | [diff] [blame] | 291 | if ((!use_privsep || mm_is_monitor()) && |
| 292 | (displayname = ssh_gssapi_displayname()) != NULL) |
| 293 | auth2_record_info(authctxt, "%s", displayname); |
| 294 | |
Damien Miller | 0425d40 | 2003-11-17 22:18:21 +1100 | [diff] [blame] | 295 | authctxt->postponed = 0; |
markus@openbsd.org | eb272ea | 2017-05-30 14:29:59 +0000 | [diff] [blame] | 296 | ssh_dispatch_set(ssh, SSH2_MSG_USERAUTH_GSSAPI_TOKEN, NULL); |
| 297 | ssh_dispatch_set(ssh, SSH2_MSG_USERAUTH_GSSAPI_ERRTOK, NULL); |
| 298 | ssh_dispatch_set(ssh, SSH2_MSG_USERAUTH_GSSAPI_MIC, NULL); |
| 299 | ssh_dispatch_set(ssh, SSH2_MSG_USERAUTH_GSSAPI_EXCHANGE_COMPLETE, NULL); |
| 300 | userauth_finish(ssh, authenticated, "gssapi-with-mic", NULL); |
markus@openbsd.org | 3fdc88a | 2015-01-19 20:07:45 +0000 | [diff] [blame] | 301 | return 0; |
Darren Tucker | 0efd155 | 2003-08-26 11:49:55 +1000 | [diff] [blame] | 302 | } |
| 303 | |
| 304 | Authmethod method_gssapi = { |
Damien Miller | 0425d40 | 2003-11-17 22:18:21 +1100 | [diff] [blame] | 305 | "gssapi-with-mic", |
Darren Tucker | 0efd155 | 2003-08-26 11:49:55 +1000 | [diff] [blame] | 306 | userauth_gssapi, |
| 307 | &options.gss_authentication |
| 308 | }; |
Darren Tucker | 8c6feda | 2006-08-05 15:24:59 +1000 | [diff] [blame] | 309 | |
| 310 | #endif /* GSSAPI */ |