blob: 1ca8357731ca9651846a2b39a0827c4220193a47 [file] [log] [blame]
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00001/* $OpenBSD: auth2-gss.c,v 1.22 2015/01/19 20:07:45 markus Exp $ */
Darren Tucker0efd1552003-08-26 11:49:55 +10002
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 Tucker8c6feda2006-08-05 15:24:59 +100029#ifdef GSSAPI
30
Damien Millerd7834352006-08-05 12:39:39 +100031#include <sys/types.h>
Darren Tucker0efd1552003-08-26 11:49:55 +100032
Damien Millerded319c2006-09-01 15:38:36 +100033#include <stdarg.h>
34
Damien Millerd7834352006-08-05 12:39:39 +100035#include "xmalloc.h"
36#include "key.h"
37#include "hostfile.h"
Darren Tucker0efd1552003-08-26 11:49:55 +100038#include "auth.h"
39#include "ssh2.h"
Darren Tucker0efd1552003-08-26 11:49:55 +100040#include "log.h"
41#include "dispatch.h"
Damien Millerd7834352006-08-05 12:39:39 +100042#include "buffer.h"
Darren Tucker450bc112014-07-19 06:23:18 +100043#include "misc.h"
Darren Tucker0efd1552003-08-26 11:49:55 +100044#include "servconf.h"
Darren Tucker0efd1552003-08-26 11:49:55 +100045#include "packet.h"
Darren Tucker0efd1552003-08-26 11:49:55 +100046#include "ssh-gss.h"
Damien Millerd7834352006-08-05 12:39:39 +100047#include "monitor_wrap.h"
Darren Tucker0efd1552003-08-26 11:49:55 +100048
49extern ServerOptions options;
50
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +000051static int input_gssapi_token(int type, u_int32_t plen, void *ctxt);
52static int input_gssapi_mic(int type, u_int32_t plen, void *ctxt);
53static int input_gssapi_exchange_complete(int type, u_int32_t plen, void *ctxt);
54static int input_gssapi_errtok(int, u_int32_t, void *);
Darren Tucker0efd1552003-08-26 11:49:55 +100055
56/*
57 * We only support those mechanisms that we know about (ie ones that we know
Damien Miller6fd6def2005-11-05 15:07:05 +110058 * how to check local user kuserok and the like)
Darren Tucker0efd1552003-08-26 11:49:55 +100059 */
60static int
61userauth_gssapi(Authctxt *authctxt)
62{
Darren Tucker3f9fdc72004-06-22 12:56:01 +100063 gss_OID_desc goid = {0, NULL};
Darren Tucker0efd1552003-08-26 11:49:55 +100064 Gssctxt *ctxt = NULL;
65 int mechs;
Darren Tucker0efd1552003-08-26 11:49:55 +100066 int present;
67 OM_uint32 ms;
68 u_int len;
Damien Millereccb9de2005-06-17 12:59:34 +100069 u_char *doid = NULL;
Darren Tucker0efd1552003-08-26 11:49:55 +100070
71 if (!authctxt->valid || authctxt->user == NULL)
72 return (0);
73
74 mechs = packet_get_int();
75 if (mechs == 0) {
76 debug("Mechanism negotiation is not supported");
77 return (0);
78 }
79
Darren Tucker0efd1552003-08-26 11:49:55 +100080 do {
81 mechs--;
82
Darren Tuckera627d422013-06-02 07:31:17 +100083 free(doid);
Darren Tucker0efd1552003-08-26 11:49:55 +100084
Darren Tucker655a5e02003-11-03 20:09:03 +110085 present = 0;
Darren Tucker0efd1552003-08-26 11:49:55 +100086 doid = packet_get_string(&len);
87
Damien Miller0dc1bef2005-07-17 17:22:45 +100088 if (len > 2 && doid[0] == SSH_GSS_OIDTYPE &&
89 doid[1] == len - 2) {
Darren Tucker3f9fdc72004-06-22 12:56:01 +100090 goid.elements = doid + 2;
91 goid.length = len - 2;
Damien Millere6a74ae2014-02-27 10:17:49 +110092 ssh_gssapi_test_oid_supported(&ms, &goid, &present);
Darren Tucker0efd1552003-08-26 11:49:55 +100093 } else {
Darren Tucker655a5e02003-11-03 20:09:03 +110094 logit("Badly formed OID received");
Darren Tucker0efd1552003-08-26 11:49:55 +100095 }
Darren Tucker0efd1552003-08-26 11:49:55 +100096 } while (mechs > 0 && !present);
97
Darren Tucker0efd1552003-08-26 11:49:55 +100098 if (!present) {
Darren Tuckera627d422013-06-02 07:31:17 +100099 free(doid);
Damien Miller3fcdfd52011-05-05 14:04:11 +1000100 authctxt->server_caused_failure = 1;
Darren Tucker0efd1552003-08-26 11:49:55 +1000101 return (0);
102 }
103
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000104 if (GSS_ERROR(PRIVSEP(ssh_gssapi_server_ctx(&ctxt, &goid)))) {
Damien Millerf23c0962006-03-26 00:04:53 +1100105 if (ctxt != NULL)
106 ssh_gssapi_delete_ctx(&ctxt);
Darren Tuckera627d422013-06-02 07:31:17 +1000107 free(doid);
Damien Miller3fcdfd52011-05-05 14:04:11 +1000108 authctxt->server_caused_failure = 1;
Darren Tucker0efd1552003-08-26 11:49:55 +1000109 return (0);
Damien Miller982d3262003-09-02 22:59:01 +1000110 }
Darren Tucker0efd1552003-08-26 11:49:55 +1000111
Damien Miller6fd6def2005-11-05 15:07:05 +1100112 authctxt->methoddata = (void *)ctxt;
Darren Tucker0efd1552003-08-26 11:49:55 +1000113
114 packet_start(SSH2_MSG_USERAUTH_GSSAPI_RESPONSE);
115
Darren Tucker655a5e02003-11-03 20:09:03 +1100116 /* Return the OID that we received */
Darren Tucker0efd1552003-08-26 11:49:55 +1000117 packet_put_string(doid, len);
118
119 packet_send();
Darren Tuckera627d422013-06-02 07:31:17 +1000120 free(doid);
Darren Tucker0efd1552003-08-26 11:49:55 +1000121
122 dispatch_set(SSH2_MSG_USERAUTH_GSSAPI_TOKEN, &input_gssapi_token);
123 dispatch_set(SSH2_MSG_USERAUTH_GSSAPI_ERRTOK, &input_gssapi_errtok);
124 authctxt->postponed = 1;
125
126 return (0);
127}
128
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +0000129static int
Darren Tucker0efd1552003-08-26 11:49:55 +1000130input_gssapi_token(int type, u_int32_t plen, void *ctxt)
131{
132 Authctxt *authctxt = ctxt;
133 Gssctxt *gssctxt;
134 gss_buffer_desc send_tok = GSS_C_EMPTY_BUFFER;
135 gss_buffer_desc recv_tok;
Damien Miller0425d402003-11-17 22:18:21 +1100136 OM_uint32 maj_status, min_status, flags;
Darren Tucker0efd1552003-08-26 11:49:55 +1000137 u_int len;
138
139 if (authctxt == NULL || (authctxt->methoddata == NULL && !use_privsep))
140 fatal("No authentication or GSSAPI context");
141
142 gssctxt = authctxt->methoddata;
143 recv_tok.value = packet_get_string(&len);
144 recv_tok.length = len; /* u_int vs. size_t */
145
146 packet_check_eom();
147
148 maj_status = PRIVSEP(ssh_gssapi_accept_ctx(gssctxt, &recv_tok,
Damien Miller0425d402003-11-17 22:18:21 +1100149 &send_tok, &flags));
Darren Tucker0efd1552003-08-26 11:49:55 +1000150
Darren Tuckera627d422013-06-02 07:31:17 +1000151 free(recv_tok.value);
Darren Tucker0efd1552003-08-26 11:49:55 +1000152
153 if (GSS_ERROR(maj_status)) {
154 if (send_tok.length != 0) {
155 packet_start(SSH2_MSG_USERAUTH_GSSAPI_ERRTOK);
156 packet_put_string(send_tok.value, send_tok.length);
157 packet_send();
158 }
159 authctxt->postponed = 0;
160 dispatch_set(SSH2_MSG_USERAUTH_GSSAPI_TOKEN, NULL);
Damien Miller15b05cf2012-12-03 09:53:20 +1100161 userauth_finish(authctxt, 0, "gssapi-with-mic", NULL);
Darren Tucker0efd1552003-08-26 11:49:55 +1000162 } else {
163 if (send_tok.length != 0) {
164 packet_start(SSH2_MSG_USERAUTH_GSSAPI_TOKEN);
165 packet_put_string(send_tok.value, send_tok.length);
166 packet_send();
167 }
168 if (maj_status == GSS_S_COMPLETE) {
169 dispatch_set(SSH2_MSG_USERAUTH_GSSAPI_TOKEN, NULL);
Damien Miller0425d402003-11-17 22:18:21 +1100170 if (flags & GSS_C_INTEG_FLAG)
171 dispatch_set(SSH2_MSG_USERAUTH_GSSAPI_MIC,
172 &input_gssapi_mic);
173 else
174 dispatch_set(
175 SSH2_MSG_USERAUTH_GSSAPI_EXCHANGE_COMPLETE,
176 &input_gssapi_exchange_complete);
Darren Tucker0efd1552003-08-26 11:49:55 +1000177 }
178 }
179
180 gss_release_buffer(&min_status, &send_tok);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +0000181 return 0;
Darren Tucker0efd1552003-08-26 11:49:55 +1000182}
183
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +0000184static int
Darren Tucker0efd1552003-08-26 11:49:55 +1000185input_gssapi_errtok(int type, u_int32_t plen, void *ctxt)
186{
187 Authctxt *authctxt = ctxt;
188 Gssctxt *gssctxt;
189 gss_buffer_desc send_tok = GSS_C_EMPTY_BUFFER;
190 gss_buffer_desc recv_tok;
191 OM_uint32 maj_status;
Damien Miller55c47ed2003-09-02 22:14:07 +1000192 u_int len;
Darren Tucker0efd1552003-08-26 11:49:55 +1000193
194 if (authctxt == NULL || (authctxt->methoddata == NULL && !use_privsep))
195 fatal("No authentication or GSSAPI context");
196
197 gssctxt = authctxt->methoddata;
Damien Miller55c47ed2003-09-02 22:14:07 +1000198 recv_tok.value = packet_get_string(&len);
199 recv_tok.length = len;
Darren Tucker0efd1552003-08-26 11:49:55 +1000200
201 packet_check_eom();
202
203 /* Push the error token into GSSAPI to see what it says */
204 maj_status = PRIVSEP(ssh_gssapi_accept_ctx(gssctxt, &recv_tok,
205 &send_tok, NULL));
206
Darren Tuckera627d422013-06-02 07:31:17 +1000207 free(recv_tok.value);
Darren Tucker0efd1552003-08-26 11:49:55 +1000208
209 /* We can't return anything to the client, even if we wanted to */
210 dispatch_set(SSH2_MSG_USERAUTH_GSSAPI_TOKEN, NULL);
211 dispatch_set(SSH2_MSG_USERAUTH_GSSAPI_ERRTOK, NULL);
212
213 /* The client will have already moved on to the next auth */
214
215 gss_release_buffer(&maj_status, &send_tok);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +0000216 return 0;
Darren Tucker0efd1552003-08-26 11:49:55 +1000217}
218
219/*
220 * This is called when the client thinks we've completed authentication.
221 * It should only be enabled in the dispatch handler by the function above,
222 * which only enables it once the GSSAPI exchange is complete.
223 */
224
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +0000225static int
Darren Tucker0efd1552003-08-26 11:49:55 +1000226input_gssapi_exchange_complete(int type, u_int32_t plen, void *ctxt)
227{
228 Authctxt *authctxt = ctxt;
Darren Tucker0efd1552003-08-26 11:49:55 +1000229 int authenticated;
230
231 if (authctxt == NULL || (authctxt->methoddata == NULL && !use_privsep))
232 fatal("No authentication or GSSAPI context");
233
Darren Tucker0efd1552003-08-26 11:49:55 +1000234 /*
Damien Miller0425d402003-11-17 22:18:21 +1100235 * We don't need to check the status, because we're only enabled in
236 * the dispatcher once the exchange is complete
Darren Tucker0efd1552003-08-26 11:49:55 +1000237 */
238
239 packet_check_eom();
240
241 authenticated = PRIVSEP(ssh_gssapi_userok(authctxt->user));
242
243 authctxt->postponed = 0;
244 dispatch_set(SSH2_MSG_USERAUTH_GSSAPI_TOKEN, NULL);
245 dispatch_set(SSH2_MSG_USERAUTH_GSSAPI_ERRTOK, NULL);
Damien Miller0425d402003-11-17 22:18:21 +1100246 dispatch_set(SSH2_MSG_USERAUTH_GSSAPI_MIC, NULL);
Darren Tucker0efd1552003-08-26 11:49:55 +1000247 dispatch_set(SSH2_MSG_USERAUTH_GSSAPI_EXCHANGE_COMPLETE, NULL);
Damien Miller15b05cf2012-12-03 09:53:20 +1100248 userauth_finish(authctxt, authenticated, "gssapi-with-mic", NULL);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +0000249 return 0;
Damien Miller0425d402003-11-17 22:18:21 +1100250}
251
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +0000252static int
Damien Miller0425d402003-11-17 22:18:21 +1100253input_gssapi_mic(int type, u_int32_t plen, void *ctxt)
254{
255 Authctxt *authctxt = ctxt;
256 Gssctxt *gssctxt;
257 int authenticated = 0;
258 Buffer b;
259 gss_buffer_desc mic, gssbuf;
260 u_int len;
Damien Miller787b2ec2003-11-21 23:56:47 +1100261
Damien Miller0425d402003-11-17 22:18:21 +1100262 if (authctxt == NULL || (authctxt->methoddata == NULL && !use_privsep))
263 fatal("No authentication or GSSAPI context");
Damien Miller787b2ec2003-11-21 23:56:47 +1100264
Damien Miller0425d402003-11-17 22:18:21 +1100265 gssctxt = authctxt->methoddata;
Damien Miller787b2ec2003-11-21 23:56:47 +1100266
Damien Miller0425d402003-11-17 22:18:21 +1100267 mic.value = packet_get_string(&len);
268 mic.length = len;
Damien Miller787b2ec2003-11-21 23:56:47 +1100269
Damien Miller0425d402003-11-17 22:18:21 +1100270 ssh_gssapi_buildmic(&b, authctxt->user, authctxt->service,
271 "gssapi-with-mic");
Damien Miller787b2ec2003-11-21 23:56:47 +1100272
Damien Miller0425d402003-11-17 22:18:21 +1100273 gssbuf.value = buffer_ptr(&b);
274 gssbuf.length = buffer_len(&b);
Damien Miller787b2ec2003-11-21 23:56:47 +1100275
Damien Miller0425d402003-11-17 22:18:21 +1100276 if (!GSS_ERROR(PRIVSEP(ssh_gssapi_checkmic(gssctxt, &gssbuf, &mic))))
277 authenticated = PRIVSEP(ssh_gssapi_userok(authctxt->user));
278 else
279 logit("GSSAPI MIC check failed");
280
281 buffer_free(&b);
Darren Tuckera627d422013-06-02 07:31:17 +1000282 free(mic.value);
Damien Miller787b2ec2003-11-21 23:56:47 +1100283
Damien Miller0425d402003-11-17 22:18:21 +1100284 authctxt->postponed = 0;
285 dispatch_set(SSH2_MSG_USERAUTH_GSSAPI_TOKEN, NULL);
286 dispatch_set(SSH2_MSG_USERAUTH_GSSAPI_ERRTOK, NULL);
287 dispatch_set(SSH2_MSG_USERAUTH_GSSAPI_MIC, NULL);
288 dispatch_set(SSH2_MSG_USERAUTH_GSSAPI_EXCHANGE_COMPLETE, NULL);
Damien Miller15b05cf2012-12-03 09:53:20 +1100289 userauth_finish(authctxt, authenticated, "gssapi-with-mic", NULL);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +0000290 return 0;
Darren Tucker0efd1552003-08-26 11:49:55 +1000291}
292
293Authmethod method_gssapi = {
Damien Miller0425d402003-11-17 22:18:21 +1100294 "gssapi-with-mic",
Darren Tucker0efd1552003-08-26 11:49:55 +1000295 userauth_gssapi,
296 &options.gss_authentication
297};
Darren Tucker8c6feda2006-08-05 15:24:59 +1000298
299#endif /* GSSAPI */