[gss-serv.c]
     whitspace KNF
This commit is contained in:
Damien Miller 2003-09-02 22:56:42 +10:00
parent a0c4ad21b6
commit 134350c20c
2 changed files with 26 additions and 23 deletions

View File

@ -29,6 +29,9 @@
- markus@cvs.openbsd.org 2003/08/31 13:30:18 - markus@cvs.openbsd.org 2003/08/31 13:30:18
[gss-serv.c] [gss-serv.c]
correct string termination in parse_ename(); sxw@inf.ed.ac.uk correct string termination in parse_ename(); sxw@inf.ed.ac.uk
- markus@cvs.openbsd.org 2003/08/31 13:31:57
[gss-serv.c]
whitspace KNF
20030829 20030829
- (bal) openbsd-compat/ clean up. Considate headers, add in Id on our - (bal) openbsd-compat/ clean up. Considate headers, add in Id on our
@ -944,4 +947,4 @@
- Fix sshd BindAddress and -b options for systems using fake-getaddrinfo. - Fix sshd BindAddress and -b options for systems using fake-getaddrinfo.
Report from murple@murple.net, diagnosis from dtucker@zip.com.au Report from murple@murple.net, diagnosis from dtucker@zip.com.au
$Id: ChangeLog,v 1.2927 2003/09/02 12:56:18 djm Exp $ $Id: ChangeLog,v 1.2928 2003/09/02 12:56:42 djm Exp $

View File

@ -1,4 +1,4 @@
/* $OpenBSD: gss-serv.c,v 1.2 2003/08/31 13:30:18 markus Exp $ */ /* $OpenBSD: gss-serv.c,v 1.3 2003/08/31 13:31:57 markus Exp $ */
/* /*
* Copyright (c) 2001-2003 Simon Wilkinson. All rights reserved. * Copyright (c) 2001-2003 Simon Wilkinson. All rights reserved.
@ -137,15 +137,15 @@ ssh_gssapi_parse_ename(Gssctxt *ctx, gss_buffer_t ename, gss_buffer_t name)
char *tok; char *tok;
OM_uint32 offset; OM_uint32 offset;
OM_uint32 oidl; OM_uint32 oidl;
tok=ename->value; tok=ename->value;
/* /*
* Check that ename is long enough for all of the fixed length * Check that ename is long enough for all of the fixed length
* header, and that the initial ID bytes are correct * header, and that the initial ID bytes are correct
*/ */
if (ename->length<6 || memcmp(tok,"\x04\x01", 2)!=0) if (ename->length<6 || memcmp(tok,"\x04\x01", 2)!=0)
return GSS_S_FAILURE; return GSS_S_FAILURE;
/* /*
@ -163,27 +163,27 @@ ssh_gssapi_parse_ename(Gssctxt *ctx, gss_buffer_t ename, gss_buffer_t name)
* string is long enough and that the OID matches that in our context * string is long enough and that the OID matches that in our context
*/ */
if (tok[4] != 0x06 || tok[5] != oidl || if (tok[4] != 0x06 || tok[5] != oidl ||
ename->length < oidl+6 || ename->length < oidl+6 ||
!ssh_gssapi_check_oid(ctx,tok+6,oidl)) !ssh_gssapi_check_oid(ctx,tok+6,oidl))
return GSS_S_FAILURE; return GSS_S_FAILURE;
offset = oidl+6; offset = oidl+6;
if (ename->length < offset+4) if (ename->length < offset+4)
return GSS_S_FAILURE; return GSS_S_FAILURE;
name->length = GET_32BIT(tok+offset); name->length = GET_32BIT(tok+offset);
offset += 4; offset += 4;
if (ename->length < offset+name->length) if (ename->length < offset+name->length)
return GSS_S_FAILURE; return GSS_S_FAILURE;
name->value = xmalloc(name->length+1); name->value = xmalloc(name->length+1);
memcpy(name->value,tok+offset,name->length); memcpy(name->value,tok+offset,name->length);
((char *)name->value)[name->length] = 0; ((char *)name->value)[name->length] = 0;
return GSS_S_COMPLETE; return GSS_S_COMPLETE;
} }
/* Extract the client details from a given context. This can only reliably /* Extract the client details from a given context. This can only reliably
* be called once for a context */ * be called once for a context */
@ -195,7 +195,7 @@ ssh_gssapi_getclient(Gssctxt *ctx, ssh_gssapi_client *client)
int i = 0; int i = 0;
gss_buffer_desc ename; gss_buffer_desc ename;
client->mech = NULL; client->mech = NULL;
while (supported_mechs[i]->name != NULL) { while (supported_mechs[i]->name != NULL) {
@ -206,21 +206,21 @@ ssh_gssapi_getclient(Gssctxt *ctx, ssh_gssapi_client *client)
i++; i++;
} }
if (client->mech == NULL) if (client->mech == NULL)
return GSS_S_FAILURE; return GSS_S_FAILURE;
if ((ctx->major = gss_display_name(&ctx->minor, ctx->client, if ((ctx->major = gss_display_name(&ctx->minor, ctx->client,
&client->displayname, NULL))) { &client->displayname, NULL))) {
ssh_gssapi_error(ctx); ssh_gssapi_error(ctx);
return (ctx->major); return (ctx->major);
} }
if ((ctx->major = gss_export_name(&ctx->minor, ctx->client, if ((ctx->major = gss_export_name(&ctx->minor, ctx->client,
&ename))) { &ename))) {
ssh_gssapi_error(ctx); ssh_gssapi_error(ctx);
return (ctx->major); return (ctx->major);
} }
if ((ctx->major = ssh_gssapi_parse_ename(ctx,&ename, if ((ctx->major = ssh_gssapi_parse_ename(ctx,&ename,
&client->exportedname))) { &client->exportedname))) {
return (ctx->major); return (ctx->major);