blob: c28a705cb6c9cb93c1dc4f04b3044902b1735903 [file] [log] [blame]
Damien Millere6a74ae2014-02-27 10:17:49 +11001/* $OpenBSD: auth2-gss.c,v 1.21 2014/02/26 20:28:44 djm 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 Tucker0efd1552003-08-26 11:49:55 +100043#include "servconf.h"
Darren Tucker0efd1552003-08-26 11:49:55 +100044#include "packet.h"
Darren Tucker0efd1552003-08-26 11:49:55 +100045#include "ssh-gss.h"
Damien Millerd7834352006-08-05 12:39:39 +100046#include "monitor_wrap.h"
Darren Tucker0efd1552003-08-26 11:49:55 +100047
48extern ServerOptions options;
49
50static void input_gssapi_token(int type, u_int32_t plen, void *ctxt);
Damien Miller0425d402003-11-17 22:18:21 +110051static void input_gssapi_mic(int type, u_int32_t plen, void *ctxt);
Darren Tucker0efd1552003-08-26 11:49:55 +100052static void input_gssapi_exchange_complete(int type, u_int32_t plen, void *ctxt);
53static void input_gssapi_errtok(int, u_int32_t, void *);
54
55/*
56 * We only support those mechanisms that we know about (ie ones that we know
Damien Miller6fd6def2005-11-05 15:07:05 +110057 * how to check local user kuserok and the like)
Darren Tucker0efd1552003-08-26 11:49:55 +100058 */
59static int
60userauth_gssapi(Authctxt *authctxt)
61{
Darren Tucker3f9fdc72004-06-22 12:56:01 +100062 gss_OID_desc goid = {0, NULL};
Darren Tucker0efd1552003-08-26 11:49:55 +100063 Gssctxt *ctxt = NULL;
64 int mechs;
Darren Tucker0efd1552003-08-26 11:49:55 +100065 int present;
66 OM_uint32 ms;
67 u_int len;
Damien Millereccb9de2005-06-17 12:59:34 +100068 u_char *doid = NULL;
Darren Tucker0efd1552003-08-26 11:49:55 +100069
70 if (!authctxt->valid || authctxt->user == NULL)
71 return (0);
72
73 mechs = packet_get_int();
74 if (mechs == 0) {
75 debug("Mechanism negotiation is not supported");
76 return (0);
77 }
78
Darren Tucker0efd1552003-08-26 11:49:55 +100079 do {
80 mechs--;
81
Darren Tuckera627d422013-06-02 07:31:17 +100082 free(doid);
Darren Tucker0efd1552003-08-26 11:49:55 +100083
Darren Tucker655a5e02003-11-03 20:09:03 +110084 present = 0;
Darren Tucker0efd1552003-08-26 11:49:55 +100085 doid = packet_get_string(&len);
86
Damien Miller0dc1bef2005-07-17 17:22:45 +100087 if (len > 2 && doid[0] == SSH_GSS_OIDTYPE &&
88 doid[1] == len - 2) {
Darren Tucker3f9fdc72004-06-22 12:56:01 +100089 goid.elements = doid + 2;
90 goid.length = len - 2;
Damien Millere6a74ae2014-02-27 10:17:49 +110091 ssh_gssapi_test_oid_supported(&ms, &goid, &present);
Darren Tucker0efd1552003-08-26 11:49:55 +100092 } else {
Darren Tucker655a5e02003-11-03 20:09:03 +110093 logit("Badly formed OID received");
Darren Tucker0efd1552003-08-26 11:49:55 +100094 }
Darren Tucker0efd1552003-08-26 11:49:55 +100095 } while (mechs > 0 && !present);
96
Darren Tucker0efd1552003-08-26 11:49:55 +100097 if (!present) {
Darren Tuckera627d422013-06-02 07:31:17 +100098 free(doid);
Damien Miller3fcdfd52011-05-05 14:04:11 +100099 authctxt->server_caused_failure = 1;
Darren Tucker0efd1552003-08-26 11:49:55 +1000100 return (0);
101 }
102
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000103 if (GSS_ERROR(PRIVSEP(ssh_gssapi_server_ctx(&ctxt, &goid)))) {
Damien Millerf23c0962006-03-26 00:04:53 +1100104 if (ctxt != NULL)
105 ssh_gssapi_delete_ctx(&ctxt);
Darren Tuckera627d422013-06-02 07:31:17 +1000106 free(doid);
Damien Miller3fcdfd52011-05-05 14:04:11 +1000107 authctxt->server_caused_failure = 1;
Darren Tucker0efd1552003-08-26 11:49:55 +1000108 return (0);
Damien Miller982d3262003-09-02 22:59:01 +1000109 }
Darren Tucker0efd1552003-08-26 11:49:55 +1000110
Damien Miller6fd6def2005-11-05 15:07:05 +1100111 authctxt->methoddata = (void *)ctxt;
Darren Tucker0efd1552003-08-26 11:49:55 +1000112
113 packet_start(SSH2_MSG_USERAUTH_GSSAPI_RESPONSE);
114
Darren Tucker655a5e02003-11-03 20:09:03 +1100115 /* Return the OID that we received */
Darren Tucker0efd1552003-08-26 11:49:55 +1000116 packet_put_string(doid, len);
117
118 packet_send();
Darren Tuckera627d422013-06-02 07:31:17 +1000119 free(doid);
Darren Tucker0efd1552003-08-26 11:49:55 +1000120
121 dispatch_set(SSH2_MSG_USERAUTH_GSSAPI_TOKEN, &input_gssapi_token);
122 dispatch_set(SSH2_MSG_USERAUTH_GSSAPI_ERRTOK, &input_gssapi_errtok);
123 authctxt->postponed = 1;
124
125 return (0);
126}
127
128static void
129input_gssapi_token(int type, u_int32_t plen, void *ctxt)
130{
131 Authctxt *authctxt = ctxt;
132 Gssctxt *gssctxt;
133 gss_buffer_desc send_tok = GSS_C_EMPTY_BUFFER;
134 gss_buffer_desc recv_tok;
Damien Miller0425d402003-11-17 22:18:21 +1100135 OM_uint32 maj_status, min_status, flags;
Darren Tucker0efd1552003-08-26 11:49:55 +1000136 u_int len;
137
138 if (authctxt == NULL || (authctxt->methoddata == NULL && !use_privsep))
139 fatal("No authentication or GSSAPI context");
140
141 gssctxt = authctxt->methoddata;
142 recv_tok.value = packet_get_string(&len);
143 recv_tok.length = len; /* u_int vs. size_t */
144
145 packet_check_eom();
146
147 maj_status = PRIVSEP(ssh_gssapi_accept_ctx(gssctxt, &recv_tok,
Damien Miller0425d402003-11-17 22:18:21 +1100148 &send_tok, &flags));
Darren Tucker0efd1552003-08-26 11:49:55 +1000149
Darren Tuckera627d422013-06-02 07:31:17 +1000150 free(recv_tok.value);
Darren Tucker0efd1552003-08-26 11:49:55 +1000151
152 if (GSS_ERROR(maj_status)) {
153 if (send_tok.length != 0) {
154 packet_start(SSH2_MSG_USERAUTH_GSSAPI_ERRTOK);
155 packet_put_string(send_tok.value, send_tok.length);
156 packet_send();
157 }
158 authctxt->postponed = 0;
159 dispatch_set(SSH2_MSG_USERAUTH_GSSAPI_TOKEN, NULL);
Damien Miller15b05cf2012-12-03 09:53:20 +1100160 userauth_finish(authctxt, 0, "gssapi-with-mic", NULL);
Darren Tucker0efd1552003-08-26 11:49:55 +1000161 } else {
162 if (send_tok.length != 0) {
163 packet_start(SSH2_MSG_USERAUTH_GSSAPI_TOKEN);
164 packet_put_string(send_tok.value, send_tok.length);
165 packet_send();
166 }
167 if (maj_status == GSS_S_COMPLETE) {
168 dispatch_set(SSH2_MSG_USERAUTH_GSSAPI_TOKEN, NULL);
Damien Miller0425d402003-11-17 22:18:21 +1100169 if (flags & GSS_C_INTEG_FLAG)
170 dispatch_set(SSH2_MSG_USERAUTH_GSSAPI_MIC,
171 &input_gssapi_mic);
172 else
173 dispatch_set(
174 SSH2_MSG_USERAUTH_GSSAPI_EXCHANGE_COMPLETE,
175 &input_gssapi_exchange_complete);
Darren Tucker0efd1552003-08-26 11:49:55 +1000176 }
177 }
178
179 gss_release_buffer(&min_status, &send_tok);
180}
181
182static void
183input_gssapi_errtok(int type, u_int32_t plen, void *ctxt)
184{
185 Authctxt *authctxt = ctxt;
186 Gssctxt *gssctxt;
187 gss_buffer_desc send_tok = GSS_C_EMPTY_BUFFER;
188 gss_buffer_desc recv_tok;
189 OM_uint32 maj_status;
Damien Miller55c47ed2003-09-02 22:14:07 +1000190 u_int len;
Darren Tucker0efd1552003-08-26 11:49:55 +1000191
192 if (authctxt == NULL || (authctxt->methoddata == NULL && !use_privsep))
193 fatal("No authentication or GSSAPI context");
194
195 gssctxt = authctxt->methoddata;
Damien Miller55c47ed2003-09-02 22:14:07 +1000196 recv_tok.value = packet_get_string(&len);
197 recv_tok.length = len;
Darren Tucker0efd1552003-08-26 11:49:55 +1000198
199 packet_check_eom();
200
201 /* Push the error token into GSSAPI to see what it says */
202 maj_status = PRIVSEP(ssh_gssapi_accept_ctx(gssctxt, &recv_tok,
203 &send_tok, NULL));
204
Darren Tuckera627d422013-06-02 07:31:17 +1000205 free(recv_tok.value);
Darren Tucker0efd1552003-08-26 11:49:55 +1000206
207 /* We can't return anything to the client, even if we wanted to */
208 dispatch_set(SSH2_MSG_USERAUTH_GSSAPI_TOKEN, NULL);
209 dispatch_set(SSH2_MSG_USERAUTH_GSSAPI_ERRTOK, NULL);
210
211 /* The client will have already moved on to the next auth */
212
213 gss_release_buffer(&maj_status, &send_tok);
214}
215
216/*
217 * This is called when the client thinks we've completed authentication.
218 * It should only be enabled in the dispatch handler by the function above,
219 * which only enables it once the GSSAPI exchange is complete.
220 */
221
222static void
223input_gssapi_exchange_complete(int type, u_int32_t plen, void *ctxt)
224{
225 Authctxt *authctxt = ctxt;
Darren Tucker0efd1552003-08-26 11:49:55 +1000226 int authenticated;
227
228 if (authctxt == NULL || (authctxt->methoddata == NULL && !use_privsep))
229 fatal("No authentication or GSSAPI context");
230
Darren Tucker0efd1552003-08-26 11:49:55 +1000231 /*
Damien Miller0425d402003-11-17 22:18:21 +1100232 * We don't need to check the status, because we're only enabled in
233 * the dispatcher once the exchange is complete
Darren Tucker0efd1552003-08-26 11:49:55 +1000234 */
235
236 packet_check_eom();
237
238 authenticated = PRIVSEP(ssh_gssapi_userok(authctxt->user));
239
240 authctxt->postponed = 0;
241 dispatch_set(SSH2_MSG_USERAUTH_GSSAPI_TOKEN, NULL);
242 dispatch_set(SSH2_MSG_USERAUTH_GSSAPI_ERRTOK, NULL);
Damien Miller0425d402003-11-17 22:18:21 +1100243 dispatch_set(SSH2_MSG_USERAUTH_GSSAPI_MIC, NULL);
Darren Tucker0efd1552003-08-26 11:49:55 +1000244 dispatch_set(SSH2_MSG_USERAUTH_GSSAPI_EXCHANGE_COMPLETE, NULL);
Damien Miller15b05cf2012-12-03 09:53:20 +1100245 userauth_finish(authctxt, authenticated, "gssapi-with-mic", NULL);
Damien Miller0425d402003-11-17 22:18:21 +1100246}
247
248static void
249input_gssapi_mic(int type, u_int32_t plen, void *ctxt)
250{
251 Authctxt *authctxt = ctxt;
252 Gssctxt *gssctxt;
253 int authenticated = 0;
254 Buffer b;
255 gss_buffer_desc mic, gssbuf;
256 u_int len;
Damien Miller787b2ec2003-11-21 23:56:47 +1100257
Damien Miller0425d402003-11-17 22:18:21 +1100258 if (authctxt == NULL || (authctxt->methoddata == NULL && !use_privsep))
259 fatal("No authentication or GSSAPI context");
Damien Miller787b2ec2003-11-21 23:56:47 +1100260
Damien Miller0425d402003-11-17 22:18:21 +1100261 gssctxt = authctxt->methoddata;
Damien Miller787b2ec2003-11-21 23:56:47 +1100262
Damien Miller0425d402003-11-17 22:18:21 +1100263 mic.value = packet_get_string(&len);
264 mic.length = len;
Damien Miller787b2ec2003-11-21 23:56:47 +1100265
Damien Miller0425d402003-11-17 22:18:21 +1100266 ssh_gssapi_buildmic(&b, authctxt->user, authctxt->service,
267 "gssapi-with-mic");
Damien Miller787b2ec2003-11-21 23:56:47 +1100268
Damien Miller0425d402003-11-17 22:18:21 +1100269 gssbuf.value = buffer_ptr(&b);
270 gssbuf.length = buffer_len(&b);
Damien Miller787b2ec2003-11-21 23:56:47 +1100271
Damien Miller0425d402003-11-17 22:18:21 +1100272 if (!GSS_ERROR(PRIVSEP(ssh_gssapi_checkmic(gssctxt, &gssbuf, &mic))))
273 authenticated = PRIVSEP(ssh_gssapi_userok(authctxt->user));
274 else
275 logit("GSSAPI MIC check failed");
276
277 buffer_free(&b);
Darren Tuckera627d422013-06-02 07:31:17 +1000278 free(mic.value);
Damien Miller787b2ec2003-11-21 23:56:47 +1100279
Damien Miller0425d402003-11-17 22:18:21 +1100280 authctxt->postponed = 0;
281 dispatch_set(SSH2_MSG_USERAUTH_GSSAPI_TOKEN, NULL);
282 dispatch_set(SSH2_MSG_USERAUTH_GSSAPI_ERRTOK, NULL);
283 dispatch_set(SSH2_MSG_USERAUTH_GSSAPI_MIC, NULL);
284 dispatch_set(SSH2_MSG_USERAUTH_GSSAPI_EXCHANGE_COMPLETE, NULL);
Damien Miller15b05cf2012-12-03 09:53:20 +1100285 userauth_finish(authctxt, authenticated, "gssapi-with-mic", NULL);
Darren Tucker0efd1552003-08-26 11:49:55 +1000286}
287
288Authmethod method_gssapi = {
Damien Miller0425d402003-11-17 22:18:21 +1100289 "gssapi-with-mic",
Darren Tucker0efd1552003-08-26 11:49:55 +1000290 userauth_gssapi,
291 &options.gss_authentication
292};
Darren Tucker8c6feda2006-08-05 15:24:59 +1000293
294#endif /* GSSAPI */