]> andersk Git - gssapi-openssh.git/blame - openssh/gss-serv.c
20070215
[gssapi-openssh.git] / openssh / gss-serv.c
CommitLineData
30460aeb 1/* $OpenBSD: gss-serv.c,v 1.20 2006/08/03 03:34:42 deraadt Exp $ */
7cac2b65 2
5598e598 3/*
f713db99 4 * Copyright (c) 2001-2006 Simon Wilkinson. All rights reserved.
5598e598 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
29#ifdef GSSAPI
30
30460aeb 31#include <sys/types.h>
32
33#include <stdarg.h>
34#include <string.h>
35#include <unistd.h>
36
37#include "xmalloc.h"
38#include "buffer.h"
39#include "key.h"
40#include "hostfile.h"
5598e598 41#include "auth.h"
42#include "log.h"
e5affddc 43#include "channels.h"
5598e598 44#include "session.h"
f713db99 45#include "misc.h"
5598e598 46#include "servconf.h"
f713db99 47
7cac2b65 48#include "xmalloc.h"
5598e598 49#include "ssh-gss.h"
30460aeb 50#include "monitor_wrap.h"
5598e598 51
bd3336ab 52extern ServerOptions options;
ae82558b 53extern Authctxt *the_authctxt;
bd3336ab 54
23987cb8 55static ssh_gssapi_client gssapi_client =
7cac2b65 56 { GSS_C_EMPTY_BUFFER, GSS_C_EMPTY_BUFFER,
57 GSS_C_NO_CREDENTIAL, NULL, {NULL, NULL, NULL}};
5598e598 58
7cac2b65 59ssh_gssapi_mech gssapi_null_mech =
60 { NULL, NULL, {0, NULL}, NULL, NULL, NULL, NULL};
44a053a3 61
5598e598 62#ifdef KRB5
23987cb8 63extern ssh_gssapi_mech gssapi_kerberos_mech;
54425c7a 64#endif
5598e598 65#ifdef GSI
23987cb8 66extern ssh_gssapi_mech gssapi_gsi_mech;
b311f64e 67#endif
68
23987cb8 69ssh_gssapi_mech* supported_mechs[]= {
5598e598 70#ifdef KRB5
7cac2b65 71 &gssapi_kerberos_mech,
5598e598 72#endif
73#ifdef GSI
7cac2b65 74 &gssapi_gsi_mech,
7b5a625b 75#endif
7cac2b65 76 &gssapi_null_mech,
23987cb8 77};
5598e598 78
b4cfa386 79#ifdef GSS_C_GLOBUS_LIMITED_PROXY_FLAG
80static int limited = 0;
81#endif
82
c06c9ae8 83/* Unprivileged */
fe4ad273 84char *
85ssh_gssapi_server_mechanisms() {
86 gss_OID_set supported;
87
88 ssh_gssapi_supported_oids(&supported);
89 return (ssh_gssapi_kex_mechs(supported, &ssh_gssapi_server_check_mech,
90 NULL));
91}
92
c06c9ae8 93/* Unprivileged */
fe4ad273 94int
f713db99 95ssh_gssapi_server_check_mech(Gssctxt **dum, gss_OID oid, const char *data) {
96 Gssctxt *ctx = NULL;
fe4ad273 97 int res;
c06c9ae8 98
f713db99 99 res = !GSS_ERROR(PRIVSEP(ssh_gssapi_server_ctx(&ctx, oid)));
100 ssh_gssapi_delete_ctx(&ctx);
fe4ad273 101
102 return (res);
103}
104
c06c9ae8 105/* Unprivileged */
7cac2b65 106void
107ssh_gssapi_supported_oids(gss_OID_set *oidset)
108{
109 int i = 0;
110 OM_uint32 min_status;
111 int present;
112 gss_OID_set supported;
113
114 gss_create_empty_oid_set(&min_status, oidset);
186e1568 115 /* Ask priviledged process what mechanisms it supports. */
116 PRIVSEP(gss_indicate_mechs(&min_status, &supported));
7cac2b65 117
118 while (supported_mechs[i]->name != NULL) {
119 if (GSS_ERROR(gss_test_oid_set_member(&min_status,
120 &supported_mechs[i]->oid, supported, &present)))
121 present = 0;
122 if (present)
123 gss_add_oid_set_member(&min_status,
124 &supported_mechs[i]->oid, oidset);
125 i++;
126 }
30460aeb 127
128 gss_release_oid_set(&min_status, &supported);
7cac2b65 129}
130
f713db99 131OM_uint32
132ssh_gssapi_server_ctx(Gssctxt **ctx, gss_OID oid)
133{
134 if (*ctx)
135 ssh_gssapi_delete_ctx(ctx);
136 ssh_gssapi_build_ctx(ctx);
137 ssh_gssapi_set_oid(*ctx, oid);
138 return (ssh_gssapi_acquire_cred(*ctx));
139}
140
141/* Acquire credentials for a server running on the current host.
142 * Requires that the context structure contains a valid OID
143 */
144
145/* Returns a GSSAPI error code */
146OM_uint32
147ssh_gssapi_acquire_cred(Gssctxt *ctx)
148{
149 OM_uint32 status;
150 char lname[MAXHOSTNAMELEN];
151 gss_OID_set oidset;
152
153 if (options.gss_strict_acceptor) {
154 gss_create_empty_oid_set(&status, &oidset);
155 gss_add_oid_set_member(&status, ctx->oid, &oidset);
156
157 if (gethostname(lname, MAXHOSTNAMELEN)) {
158 gss_release_oid_set(&status, &oidset);
159 return (-1);
160 }
161
162 if (GSS_ERROR(ssh_gssapi_import_name(ctx, lname))) {
163 gss_release_oid_set(&status, &oidset);
164 return (ctx->major);
165 }
166
167 if ((ctx->major = gss_acquire_cred(&ctx->minor,
168 ctx->name, 0, oidset, GSS_C_ACCEPT, &ctx->creds,
169 NULL, NULL)))
170 ssh_gssapi_error(ctx);
171
172 gss_release_oid_set(&status, &oidset);
173 return (ctx->major);
174 } else {
175 ctx->name = GSS_C_NO_NAME;
176 ctx->creds = GSS_C_NO_CREDENTIAL;
177 }
178 return GSS_S_COMPLETE;
179}
180
7cac2b65 181
182/* Wrapper around accept_sec_context
183 * Requires that the context contains:
184 * oid
185 * credentials (from ssh_gssapi_acquire_cred)
186 */
08822d99 187/* Privileged */
7cac2b65 188OM_uint32
189ssh_gssapi_accept_ctx(Gssctxt *ctx, gss_buffer_desc *recv_tok,
190 gss_buffer_desc *send_tok, OM_uint32 *flags)
191{
192 OM_uint32 status;
193 gss_OID mech;
194
195 ctx->major = gss_accept_sec_context(&ctx->minor,
196 &ctx->context, ctx->creds, recv_tok,
197 GSS_C_NO_CHANNEL_BINDINGS, &ctx->client, &mech,
198 send_tok, flags, NULL, &ctx->client_creds);
199
200 if (GSS_ERROR(ctx->major))
201 ssh_gssapi_error(ctx);
202
203 if (ctx->client_creds)
204 debug("Received some client credentials");
205 else
206 debug("Got no client credentials");
207
208 status = ctx->major;
209
210 /* Now, if we're complete and we have the right flags, then
211 * we flag the user as also having been authenticated
212 */
213
214 if (((flags == NULL) || ((*flags & GSS_C_MUTUAL_FLAG) &&
215 (*flags & GSS_C_INTEG_FLAG))) && (ctx->major == GSS_S_COMPLETE)) {
216 if (ssh_gssapi_getclient(ctx, &gssapi_client))
217 fatal("Couldn't convert client name");
b4cfa386 218#ifdef GSS_C_GLOBUS_LIMITED_PROXY_FLAG
219 if (flags && (*flags & GSS_C_GLOBUS_LIMITED_PROXY_FLAG))
220 limited=1;
221#endif
7cac2b65 222 }
223
224 return (status);
225}
226
227/*
228 * This parses an exported name, extracting the mechanism specific portion
229 * to use for ACL checking. It verifies that the name belongs the mechanism
230 * originally selected.
231 */
232static OM_uint32
233ssh_gssapi_parse_ename(Gssctxt *ctx, gss_buffer_t ename, gss_buffer_t name)
234{
2ce0bfe4 235 u_char *tok;
7cac2b65 236 OM_uint32 offset;
237 OM_uint32 oidl;
238
08822d99 239 tok = ename->value;
7cac2b65 240
241#ifdef GSI /* GSI gss_export_name() is broken. */
242 if ((ctx->oid->length == gssapi_gsi_mech.oid.length) &&
243 (memcmp(ctx->oid->elements, gssapi_gsi_mech.oid.elements,
244 gssapi_gsi_mech.oid.length) == 0)) {
245 name->length = ename->length;
246 name->value = xmalloc(ename->length+1);
247 memcpy(name->value, ename->value, ename->length);
248 return GSS_S_COMPLETE;
249 }
250#endif
251
252 /*
253 * Check that ename is long enough for all of the fixed length
254 * header, and that the initial ID bytes are correct
255 */
256
08822d99 257 if (ename->length < 6 || memcmp(tok, "\x04\x01", 2) != 0)
7cac2b65 258 return GSS_S_FAILURE;
259
260 /*
261 * Extract the OID, and check it. Here GSSAPI breaks with tradition
262 * and does use the OID type and length bytes. To confuse things
263 * there are two lengths - the first including these, and the
264 * second without.
265 */
266
30460aeb 267 oidl = get_u16(tok+2); /* length including next two bytes */
7cac2b65 268 oidl = oidl-2; /* turn it into the _real_ length of the variable OID */
269
270 /*
271 * Check the BER encoding for correct type and length, that the
272 * string is long enough and that the OID matches that in our context
273 */
274 if (tok[4] != 0x06 || tok[5] != oidl ||
275 ename->length < oidl+6 ||
08822d99 276 !ssh_gssapi_check_oid(ctx, tok+6, oidl))
7cac2b65 277 return GSS_S_FAILURE;
278
279 offset = oidl+6;
280
281 if (ename->length < offset+4)
282 return GSS_S_FAILURE;
283
30460aeb 284 name->length = get_u32(tok+offset);
7cac2b65 285 offset += 4;
286
287 if (ename->length < offset+name->length)
288 return GSS_S_FAILURE;
289
290 name->value = xmalloc(name->length+1);
30460aeb 291 memcpy(name->value, tok+offset, name->length);
7cac2b65 292 ((char *)name->value)[name->length] = 0;
293
294 return GSS_S_COMPLETE;
295}
296
297/* Extract the client details from a given context. This can only reliably
298 * be called once for a context */
299
08822d99 300/* Privileged (called from accept_secure_ctx) */
7cac2b65 301OM_uint32
302ssh_gssapi_getclient(Gssctxt *ctx, ssh_gssapi_client *client)
303{
304 int i = 0;
305
306 gss_buffer_desc ename;
307
308 client->mech = NULL;
309
310 while (supported_mechs[i]->name != NULL) {
311 if (supported_mechs[i]->oid.length == ctx->oid->length &&
312 (memcmp(supported_mechs[i]->oid.elements,
313 ctx->oid->elements, ctx->oid->length) == 0))
314 client->mech = supported_mechs[i];
315 i++;
316 }
317
318 if (client->mech == NULL)
319 return GSS_S_FAILURE;
320
321 if ((ctx->major = gss_display_name(&ctx->minor, ctx->client,
322 &client->displayname, NULL))) {
323 ssh_gssapi_error(ctx);
324 return (ctx->major);
325 }
326
327 if ((ctx->major = gss_export_name(&ctx->minor, ctx->client,
328 &ename))) {
329 ssh_gssapi_error(ctx);
330 return (ctx->major);
331 }
332
333 if ((ctx->major = ssh_gssapi_parse_ename(ctx,&ename,
334 &client->exportedname))) {
335 return (ctx->major);
336 }
337
338 /* We can't copy this structure, so we just move the pointer to it */
339 client->creds = ctx->client_creds;
340 ctx->client_creds = GSS_C_NO_CREDENTIAL;
682b256d 341
342 /* needed for globus_gss_assist_map_and_authorize() */
343 client->context = ctx->context;
344
7cac2b65 345 return (ctx->major);
346}
347
540d72c3 348/* As user - called on fatal/exit */
7cac2b65 349void
540d72c3 350ssh_gssapi_cleanup_creds(void)
7cac2b65 351{
352 if (gssapi_client.store.filename != NULL) {
353 /* Unlink probably isn't sufficient */
30460aeb 354 debug("removing gssapi cred file\"%s\"",
355 gssapi_client.store.filename);
7cac2b65 356 unlink(gssapi_client.store.filename);
357 }
358}
359
360/* As user */
361void
362ssh_gssapi_storecreds(void)
363{
364 if (gssapi_client.mech && gssapi_client.mech->storecreds) {
ae82558b 365 if (options.gss_creds_path) {
366 gssapi_client.store.filename =
367 expand_authorized_keys(options.gss_creds_path,
368 the_authctxt->pw);
369 }
7cac2b65 370 (*gssapi_client.mech->storecreds)(&gssapi_client);
7cac2b65 371 } else
372 debug("ssh_gssapi_storecreds: Not a GSSAPI mechanism");
373}
374
375/* This allows GSSAPI methods to do things to the childs environment based
376 * on the passed authentication process and credentials.
377 */
378/* As user */
379void
380ssh_gssapi_do_child(char ***envp, u_int *envsizep)
381{
382
383 if (gssapi_client.store.envvar != NULL &&
384 gssapi_client.store.envval != NULL) {
7cac2b65 385 debug("Setting %s to %s", gssapi_client.store.envvar,
08822d99 386 gssapi_client.store.envval);
7cac2b65 387 child_set_env(envp, envsizep, gssapi_client.store.envvar,
2ce0bfe4 388 gssapi_client.store.envval);
7cac2b65 389 }
390}
391
08822d99 392/* Privileged */
7cac2b65 393int
394ssh_gssapi_userok(char *user)
395{
2ce0bfe4 396 OM_uint32 lmin;
397
7cac2b65 398 if (gssapi_client.exportedname.length == 0 ||
399 gssapi_client.exportedname.value == NULL) {
400 debug("No suitable client data");
401 return 0;
402 }
b4cfa386 403#ifdef GSS_C_GLOBUS_LIMITED_PROXY_FLAG
826a9049 404 if (limited && options.gsi_allow_limited_proxy != 1) {
b4cfa386 405 debug("limited proxy not acceptable for remote login");
406 return 0;
407 }
408#endif
7cac2b65 409 if (gssapi_client.mech && gssapi_client.mech->userok)
2ce0bfe4 410 if ((*gssapi_client.mech->userok)(&gssapi_client, user))
411 return 1;
412 else {
413 /* Destroy delegated credentials if userok fails */
414 gss_release_buffer(&lmin, &gssapi_client.displayname);
415 gss_release_buffer(&lmin, &gssapi_client.exportedname);
416 gss_release_cred(&lmin, &gssapi_client.creds);
417 memset(&gssapi_client, 0, sizeof(ssh_gssapi_client));
418 return 0;
419 }
7cac2b65 420 else
421 debug("ssh_gssapi_userok: Unknown GSSAPI mechanism");
422 return (0);
423}
424
e23e524c 425/* Priviledged */
23987cb8 426int
427ssh_gssapi_localname(char **user)
428{
429 *user = NULL;
7cac2b65 430 if (gssapi_client.displayname.length==0 ||
431 gssapi_client.displayname.value==NULL) {
23987cb8 432 debug("No suitable client data");
433 return(0);;
434 }
435 if (gssapi_client.mech && gssapi_client.mech->localname) {
436 return((*gssapi_client.mech->localname)(&gssapi_client,user));
437 } else {
438 debug("Unknown client authentication type");
439 }
440 return(0);
441}
540d72c3 442
23987cb8 443#endif
This page took 0.818016 seconds and 5 git commands to generate.