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