Remove windows/gss from build
authorSam Hartman <hartmans@mit.edu>
Wed, 28 Sep 2011 21:01:17 +0000 (21:01 +0000)
committerSam Hartman <hartmans@mit.edu>
Wed, 28 Sep 2011 21:01:17 +0000 (21:01 +0000)
It is both broken and redundant with appl/gss-sample

Signed-off-by: Kevin Wasserman <kevin.wasserman@painless-security.com>
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@25276 dc483132-0cff-0310-8789-dd5450dbe970

12 files changed:
src/windows/Makefile.in
src/windows/gss/Makefile.in [deleted file]
src/windows/gss/gss-client.c [deleted file]
src/windows/gss/gss-misc.c [deleted file]
src/windows/gss/gss-misc.h [deleted file]
src/windows/gss/gss.c [deleted file]
src/windows/gss/gss.def [deleted file]
src/windows/gss/gss.h [deleted file]
src/windows/gss/gss.ico [deleted file]
src/windows/gss/gss.rc [deleted file]
src/windows/gss/resource.h [deleted file]
src/windows/gss/ver_serv.txt [deleted file]

index ed3d1cffcdea339aa783a2f89ffcce10b5d37900..79fe8160cb9a400e6701cabfb02f8ddb58054ee7 100644 (file)
@@ -1,3 +1,3 @@
 BUILDTOP=..
 NO_OUTPRE=1
-SUBDIRS= lib leashdll cns gss gina ms2mit kfwlogon
+SUBDIRS= lib leashdll cns gina ms2mit kfwlogon
diff --git a/src/windows/gss/Makefile.in b/src/windows/gss/Makefile.in
deleted file mode 100644 (file)
index 5413a27..0000000
+++ /dev/null
@@ -1,52 +0,0 @@
-# makefile: Constructs the Kerberos for Windows ticket manager
-# Works for both k4 and k5 releases.
-#
-OBJS   = $(OUTPRE)gss.obj $(OUTPRE)gss-client.obj $(OUTPRE)gss-misc.obj
-RESFILE = $(OUTPRE)gss.res
-XOBJS  = $(RESFILE)
-
-##### Options
-# Set NODEBUG if building release instead of debug
-BUILDTOP=..\..
-
-!if defined(KRB5_KFW_COMPILE)
-KFWINC= /I$(BUILDTOP)\..\..\krbcc\include
-!if ( "$(CPU)" == "i386" )
-KFWLIB= $(BUILDTOP)\..\..\..\..\target\lib\$(CPU)\$(OUTPRE_DBG)\krbcc32.lib
-!else
-KFWLIB= $(BUILDTOP)\..\..\..\..\target\lib\$(CPU)\$(OUTPRE_DBG)\krbcc64.lib
-!endif
-!endif
-LOCALINCLUDES= /I$(BUILDTOP) /I$(BUILDTOP)\include /I$(BUILDTOP)\include\krb5 $(KFWINC)
-
-##### RC Compiler
-RFLAGS = $(LOCALINCLUDES)
-RCFLAGS        = $(RFLAGS) -D_WIN32 -DGSS_APP
-
-##### Linker
-LINK   = link
-LIBS   = $(GLIB) $(CLIB) $(WLIB)
-SYSLIBS        = kernel32.lib ws2_32.lib user32.lib gdi32.lib comdlg32.lib comctl32.lib
-LFLAGS = /nologo $(LOPTS)
-
-all:: Makefile $(OUTPRE)gss.exe
-
-$(OUTPRE)gss.exe: gss.def $(OBJS) $(XOBJS) $(LIBS)
-       $(LINK) $(LFLAGS) /map:$*.map /out:$@ $(OBJS) $(XOBJS) \
-         $(LIBS) $(SYSLIBS) $(KFWLIB) $(SCLIB)
-
-$(OBJS) $(XOBJS): gss.h
-
-$(RESFILE): ..\version.rc
-
-install::
-       copy $(OUTPRE)gss.exe ..\floppy
-
-clean:: 
-       if exist $(OUTPRE)*.exe del $(OUTPRE)*.exe
-       if exist ..\floppy\gss.exe del ..\floppy\gss.exe
-       if exist $(OUTPRE)*.obj del $(OUTPRE)*.obj
-       if exist $(OUTPRE)*.res del $(OUTPRE)*.res
-       if exist $(OUTPRE)*.map del $(OUTPRE)*.map
-       if exist $(OUTPRE)*.pdb del $(OUTPRE)*.pdb
-       if exist *.err del *.err
diff --git a/src/windows/gss/gss-client.c b/src/windows/gss/gss-client.c
deleted file mode 100644 (file)
index ae8868f..0000000
+++ /dev/null
@@ -1,615 +0,0 @@
-/*
- * Copyright 1994 by OpenVision Technologies, Inc.
- *
- * Permission to use, copy, modify, distribute, and sell this software
- * and its documentation for any purpose is hereby granted without fee,
- * provided that the above copyright notice appears in all copies and
- * that both that copyright notice and this permission notice appear in
- * supporting documentation, and that the name of OpenVision not be used
- * in advertising or publicity pertaining to distribution of the software
- * without specific, written prior permission. OpenVision makes no
- * representations about the suitability of this software for any
- * purpose.  It is provided "as is" without express or implied warranty.
- *
- * OPENVISION DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
- * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
- * EVENT SHALL OPENVISION BE LIABLE FOR ANY SPECIAL, INDIRECT OR
- * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF
- * USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
- * OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
- * PERFORMANCE OF THIS SOFTWARE.
- */
-/*
- * Copyright (C) 2004 by the Massachusetts Institute of Technology.
- * All rights reserved.
- *
- * Export of this software from the United States of America may
- *   require a specific license from the United States Government.
- *   It is the responsibility of any person or organization contemplating
- *   export to obtain such a license before exporting.
- *
- * WITHIN THAT CONSTRAINT, permission to use, copy, modify, and
- * distribute this software and its documentation for any purpose and
- * without fee is hereby granted, provided that the above copyright
- * notice appear in all copies and that both that copyright notice and
- * this permission notice appear in supporting documentation, and that
- * the name of M.I.T. not be used in advertising or publicity pertaining
- * to distribution of the software without specific, written prior
- * permission.  Furthermore if you modify this software you must label
- * your software as modified software and not distribute it in such a
- * fashion that it might be confused with the original M.I.T. software.
- * M.I.T. makes no representations about the suitability of
- * this software for any purpose.  It is provided "as is" without express
- * or implied warranty.
- */
-
-#include <stdio.h>
-#include <stdlib.h>
-#include <string.h>
-#include <windows.h>
-#include <winsock.h>
-
-#include <gssapi/gssapi_generic.h>
-#include <gssapi\gssapi_krb5.h>
-#include "gss.h"
-#include "gss-misc.h"
-
-static int verbose = 1;
-
-/*
- * Function: connect_to_server
- *
- * Purpose: Opens a TCP connection to the name host and port.
- *
- * Arguments:
- *
- *     host            (r) the target host name
- *     port            (r) the target port, in host byte order
- *
- * Returns: the established socket file desciptor, or -1 on failure
- *
- * Effects:
- *
- * The host name is resolved with gethostbyname(), and the socket is
- * opened and connected.  If an error occurs, an error message is
- * displayed and -1 is returned.
- */
-static int connect_to_server(host, port)
-     char *host;
-     u_short port;
-{
-     struct sockaddr_in saddr;
-     struct hostent *hp;
-     int s;
-
-     if ((hp = gethostbyname(host)) == NULL) {
-         printf("Unknown host: %s\r\n", host);
-         return -1;
-     }
-
-     saddr.sin_family = hp->h_addrtype;
-     memcpy((char *)&saddr.sin_addr, hp->h_addr, sizeof(saddr.sin_addr));
-     saddr.sin_port = htons(port);
-
-     if ((s = socket(AF_INET, SOCK_STREAM, 0)) < 0) {
-         perror("creating socket");
-         return -1;
-     }
-     if (connect(s, (struct sockaddr *)&saddr, sizeof(saddr)) < 0) {
-         perror("connecting to server");
-         (void) closesocket(s);
-         return -1;
-     }
-     return s;
-}
-
-/*
- * Function: client_establish_context
- *
- * Purpose: establishes a GSS-API context with a specified service and
- * returns the context handle
- *
- * Arguments:
- *
- *     s               (r) an established TCP connection to the service
- *     service_name    (r) the ASCII service name of the service
- *     gss_flags       (r) GSS-API delegation flag (if any)
- *     auth_flag       (r) whether to actually do authentication
- *     oid             (r) OID of the mechanism to use
- *     context         (w) the established GSS-API context
- *     ret_flags       (w) the returned flags from init_sec_context
- *
- * Returns: 0 on success, -1 on failure
- *
- * Effects:
- *
- * service_name is imported as a GSS-API name and a GSS-API context is
- * established with the corresponding service; the service should be
- * listening on the TCP connection s.  The default GSS-API mechanism
- * is used, and mutual authentication and replay detection are
- * requested.
- *
- * If successful, the context handle is returned in context.  If
- * unsuccessful, the GSS-API error messages are displayed on stderr
- * and -1 is returned.
- */
-int client_establish_context( int s,
-                              char *service_name,
-                              OM_uint32 gss_flags,
-                              int auth_flag,
-                              int v1_format,
-                              gss_OID oid,
-                              gss_ctx_id_t *gss_context,
-                              OM_uint32 *ret_flags)
-{
-    if (auth_flag) {
-        gss_buffer_desc send_tok, recv_tok, *token_ptr;
-        gss_name_t target_name;
-        OM_uint32 maj_stat, min_stat, init_sec_min_stat;
-        int token_flags;
-
-       /*
-        * Import the name into target_name.  Use send_tok to save
-        * local variable space.
-        */
-        send_tok.value = service_name;
-        send_tok.length = strlen(service_name) ;
-        maj_stat = gss_import_name(&min_stat, &send_tok,
-                                    (gss_OID) gss_nt_service_name, &target_name);
-        if (maj_stat != GSS_S_COMPLETE) {
-            display_status("parsing name", maj_stat, min_stat);
-            return -1;
-        }
-
-        if (!v1_format) {
-            if (send_token(s, TOKEN_NOOP|TOKEN_CONTEXT_NEXT, empty_token) < 0) {
-                (void) gss_release_name(&min_stat, &target_name);
-                return -1;
-            }
-        }
-
-       /*
-        * Perform the context-establishement loop.
-        *
-        * On each pass through the loop, token_ptr points to the token
-        * to send to the server (or GSS_C_NO_BUFFER on the first pass).
-        * Every generated token is stored in send_tok which is then
-        * transmitted to the server; every received token is stored in
-        * recv_tok, which token_ptr is then set to, to be processed by
-        * the next call to gss_init_sec_context.
-        *
-        * GSS-API guarantees that send_tok's length will be non-zero
-        * if and only if the server is expecting another token from us,
-        * and that gss_init_sec_context returns GSS_S_CONTINUE_NEEDED if
-        * and only if the server has another token to send us.
-        */
-
-        token_ptr = GSS_C_NO_BUFFER;
-        *gss_context = GSS_C_NO_CONTEXT;
-
-        do {
-            maj_stat =
-                gss_init_sec_context(&init_sec_min_stat,
-                                      GSS_C_NO_CREDENTIAL,
-                                      gss_context,
-                                      target_name,
-                                      oid,
-                                      gss_flags,
-                                      0,
-                                      NULL,    /* no channel bindings */
-                                      token_ptr,
-                                      NULL,    /* ignore mech type */
-                                      &send_tok,
-                                      ret_flags,
-                                      NULL);   /* ignore time_rec */
-
-            if (token_ptr != GSS_C_NO_BUFFER)
-                free (recv_tok.value);
-
-            if (send_tok.length != 0) {
-                if (verbose)
-                    printf("Sending init_sec_context token (size=%d)...",
-                            (int) send_tok.length);
-                if (send_token(s, v1_format?0:TOKEN_CONTEXT, &send_tok) < 0) {
-                    (void) gss_release_buffer(&min_stat, &send_tok);
-                    (void) gss_release_name(&min_stat, &target_name);
-                    return -1;
-                }
-            }
-            (void) gss_release_buffer(&min_stat, &send_tok);
-
-            if (maj_stat!=GSS_S_COMPLETE && maj_stat!=GSS_S_CONTINUE_NEEDED) {
-                display_status("initializing context", maj_stat,
-                                init_sec_min_stat);
-                (void) gss_release_name(&min_stat, &target_name);
-                if (*gss_context != GSS_C_NO_CONTEXT)
-                    gss_delete_sec_context(&min_stat, gss_context,
-                                            GSS_C_NO_BUFFER);
-                return -1;
-            }
-
-            if (maj_stat == GSS_S_CONTINUE_NEEDED) {
-                if (verbose)
-                    printf("continue needed...");
-                if (recv_token(s, &token_flags, &recv_tok) < 0) {
-                    (void) gss_release_name(&min_stat, &target_name);
-                    return -1;
-                }
-                token_ptr = &recv_tok;
-            }
-            if (verbose)
-                printf("\r\n");
-        } while (maj_stat == GSS_S_CONTINUE_NEEDED);
-
-        (void) gss_release_name(&min_stat, &target_name);
-    }
-    else {
-        if (send_token(s, TOKEN_NOOP, empty_token) < 0)
-            return -1;
-    }
-
-    return 0;
-}
-
-static void read_file(file_name, in_buf)
-    char               *file_name;
-    gss_buffer_t       in_buf;
-{
-    int fd, count;
-    struct stat stat_buf;
-
-    if ((fd = open(file_name, O_RDONLY, 0)) < 0) {
-       perror("open");
-       printf("Couldn't open file %s\r\n", file_name);
-       exit(1);
-    }
-    if (fstat(fd, &stat_buf) < 0) {
-       perror("fstat");
-       exit(1);
-    }
-    in_buf->length = stat_buf.st_size;
-
-    if (in_buf->length == 0) {
-       in_buf->value = NULL;
-       return;
-    }
-
-    if ((in_buf->value = malloc(in_buf->length)) == 0) {
-       printf("Couldn't allocate %d byte buffer for reading file\r\n",
-               (int) in_buf->length);
-       exit(1);
-    }
-
-    /* this code used to check for incomplete reads, but you can't get
-       an incomplete read on any file for which fstat() is meaningful */
-
-    count = read(fd, in_buf->value, in_buf->length);
-    if (count < 0) {
-       perror("read");
-       exit(1);
-    }
-    if (count < (int)in_buf->length)
-       printf("Warning, only read in %d bytes, expected %d\r\n",
-               count, (int) in_buf->length);
-}
-
-/*
- * Function: call_server
- *
- * Purpose: Call the "sign" service.
- *
- * Arguments:
- *
- *     host            (r) the host providing the service
- *     port            (r) the port to connect to on host
- *     service_name    (r) the GSS-API service name to authenticate to
- *     gss_flags       (r) GSS-API delegation flag (if any)
- *     auth_flag       (r) whether to do authentication
- *     wrap_flag       (r) whether to do message wrapping at all
- *     encrypt_flag    (r) whether to do encryption while wrapping
- *     mic_flag        (r) whether to request a MIC from the server
- *     msg             (r) the message to have "signed"
- *     use_file        (r) whether to treat msg as an input file name
- *     mcount          (r) the number of times to send the message
- *
- * Returns: 0 on success, -1 on failure
- *
- * Effects:
- *
- * call_server opens a TCP connection to <host:port> and establishes a
- * GSS-API context with service_name over the connection.  It then
- * seals msg in a GSS-API token with gss_wrap, sends it to the server,
- * reads back a GSS-API signature block for msg from the server, and
- * verifies it with gss_verify.  -1 is returned if any step fails,
- * otherwise 0 is returned.  */
-int call_server(char *host, u_short port, gss_OID oid, char *service_name,
-                OM_uint32 gss_flags, int auth_flag,
-                       int wrap_flag, int encrypt_flag, int mic_flag, int v1_format,
-                char *msg, int use_file, int mcount)
-{
-     gss_ctx_id_t context;
-     gss_buffer_desc in_buf, out_buf;
-     int s, state;
-     OM_uint32 ret_flags;
-     OM_uint32 maj_stat, min_stat;
-     gss_name_t                src_name, targ_name;
-     gss_buffer_desc   sname, tname;
-     OM_uint32         lifetime;
-     gss_OID           mechanism, name_type;
-     int               is_local;
-     OM_uint32         context_flags;
-     int               is_open;
-     gss_qop_t         qop_state;
-     gss_OID_set       mech_names;
-     gss_buffer_desc   oid_name;
-     size_t    i;
-     int token_flags;
-
-     /* Open connection */
-     if ((s = connect_to_server(host, port)) < 0)
-         return -1;
-
-     /* Establish context */
-     if (client_establish_context(s, service_name, gss_flags, auth_flag,
-                                 v1_format, oid, &context,
-                                 &ret_flags) < 0) {
-         (void) closesocket(s);
-         return -1;
-     }
-
-     if (auth_flag) {
-         if (verbose) {
-             /* display the flags */
-             /* display_ctx_flags(ret_flags); */
-
-             /* Get context information */
-             maj_stat = gss_inquire_context(&min_stat, context,
-                                       &src_name, &targ_name, &lifetime,
-                                       &mechanism, &context_flags,
-                                       &is_local,
-                                       &is_open);
-             if (maj_stat != GSS_S_COMPLETE) {
-                 display_status("inquiring context", maj_stat, min_stat);
-                 return -1;
-             }
-
-             maj_stat = gss_display_name(&min_stat, src_name, &sname,
-                                          &name_type);
-             if (maj_stat != GSS_S_COMPLETE) {
-                 display_status("displaying source name", maj_stat, min_stat);
-                 return -1;
-             }
-             maj_stat = gss_display_name(&min_stat, targ_name, &tname,
-                                          (gss_OID *) NULL);
-             if (maj_stat != GSS_S_COMPLETE) {
-                 display_status("displaying target name", maj_stat, min_stat);
-                 return -1;
-             }
-             printf("\"%.*s\" to \"%.*s\", lifetime %d, flags %x, %s, %s\r\n",
-                     (int) sname.length, (char *) sname.value,
-                     (int) tname.length, (char *) tname.value, lifetime,
-                     context_flags,
-                     (is_local) ? "locally initiated" : "remotely initiated",
-                     (is_open) ? "open" : "closed");
-
-             (void) gss_release_name(&min_stat, &src_name);
-             (void) gss_release_name(&min_stat, &targ_name);
-             (void) gss_release_buffer(&min_stat, &sname);
-             (void) gss_release_buffer(&min_stat, &tname);
-
-             maj_stat = gss_oid_to_str(&min_stat,
-                                        name_type,
-                                        &oid_name);
-             if (maj_stat != GSS_S_COMPLETE) {
-                 display_status("converting oid->string", maj_stat, min_stat);
-                 return -1;
-             }
-             printf("Name type of source name is %.*s.\r\n",
-                     (int) oid_name.length, (char *) oid_name.value);
-             (void) gss_release_buffer(&min_stat, &oid_name);
-
-             /* Now get the names supported by the mechanism */
-             maj_stat = gss_inquire_names_for_mech(&min_stat,
-                                                    mechanism,
-                                                    &mech_names);
-             if (maj_stat != GSS_S_COMPLETE) {
-                 display_status("inquiring mech names", maj_stat, min_stat);
-                 return -1;
-             }
-
-             maj_stat = gss_oid_to_str(&min_stat,
-                                        mechanism,
-                                        &oid_name);
-             if (maj_stat != GSS_S_COMPLETE) {
-                 display_status("converting oid->string", maj_stat, min_stat);
-                 return -1;
-             }
-             printf("Mechanism %.*s supports %d names\r\n",
-                     (int) oid_name.length, (char *) oid_name.value,
-                     (int) mech_names->count);
-             (void) gss_release_buffer(&min_stat, &oid_name);
-
-             for (i=0; i<mech_names->count; i++) {
-                 maj_stat = gss_oid_to_str(&min_stat,
-                                            &mech_names->elements[i],
-                                            &oid_name);
-                 if (maj_stat != GSS_S_COMPLETE) {
-                     display_status("converting oid->string", maj_stat, min_stat);
-                     return -1;
-                 }
-                 printf("  %d: %.*s\r\n", (int) i,
-                         (int) oid_name.length, (char *) oid_name.value);
-
-                 (void) gss_release_buffer(&min_stat, &oid_name);
-             }
-             (void) gss_release_oid_set(&min_stat, &mech_names);
-         }
-     }
-
-     if (use_file) {
-         read_file(msg, &in_buf);
-     } else {
-        /* Seal the message */
-        in_buf.value = msg;
-        in_buf.length = strlen(msg);
-     }
-
-     for (i = 0; i < (size_t)mcount; i++) {
-       if (wrap_flag) {
-        maj_stat = gss_wrap(&min_stat, context, encrypt_flag, GSS_C_QOP_DEFAULT,
-                            &in_buf, &state, &out_buf);
-        if (maj_stat != GSS_S_COMPLETE) {
-          display_status("wrapping message", maj_stat, min_stat);
-          (void) closesocket(s);
-          (void) gss_delete_sec_context(&min_stat, &context, GSS_C_NO_BUFFER);
-          return -1;
-        } else if (encrypt_flag && ! state) {
-          fprintf(stderr, "Warning!  Message not encrypted.\r\n");
-        }
-       }
-       else {
-        out_buf = in_buf;
-       }
-
-       /* Send to server */
-       if (send_token(s, (v1_format?0
-                         :(TOKEN_DATA |
-                         (wrap_flag ? TOKEN_WRAPPED : 0) |
-                         (encrypt_flag ? TOKEN_ENCRYPTED : 0) |
-                         (mic_flag ? TOKEN_SEND_MIC : 0))), &out_buf) < 0) {
-        (void) closesocket(s);
-        (void) gss_delete_sec_context(&min_stat, &context, GSS_C_NO_BUFFER);
-        return -1;
-       }
-       if (out_buf.value != in_buf.value)
-        (void) gss_release_buffer(&min_stat, &out_buf);
-
-       /* Read signature block into out_buf */
-       if (recv_token(s, &token_flags, &out_buf) < 0) {
-        (void) closesocket(s);
-        (void) gss_delete_sec_context(&min_stat, &context, GSS_C_NO_BUFFER);
-        return -1;
-       }
-
-       if (mic_flag) {
-        /* Verify signature block */
-        maj_stat = gss_verify_mic(&min_stat, context, &in_buf,
-                                  &out_buf, &qop_state);
-        if (maj_stat != GSS_S_COMPLETE) {
-          display_status("verifying signature", maj_stat, min_stat);
-          (void) closesocket(s);
-          (void) gss_delete_sec_context(&min_stat, &context, GSS_C_NO_BUFFER);
-          return -1;
-        }
-
-        if (verbose)
-          printf("Signature verified.\r\n");
-       }
-       else {
-        if (verbose)
-          printf("Response received.\r\n");
-       }
-
-       free (out_buf.value);
-     }
-
-     if (use_file)
-       free(in_buf.value);
-
-     /* Send NOOP */
-     if (!v1_format)
-     (void) send_token(s, TOKEN_NOOP, empty_token);
-
-     if (auth_flag) {
-       /* Delete context */
-       maj_stat = gss_delete_sec_context(&min_stat, &context, &out_buf);
-       if (maj_stat != GSS_S_COMPLETE) {
-        display_status("deleting context", maj_stat, min_stat);
-        (void) closesocket(s);
-        (void) gss_delete_sec_context(&min_stat, &context, GSS_C_NO_BUFFER);
-        return -1;
-       }
-
-       (void) gss_release_buffer(&min_stat, &out_buf);
-     }
-
-     (void) closesocket(s);
-     return 0;
-}
-
-static void parse_oid(char *mechanism, gss_OID *oid)
-{
-    char       *mechstr = 0, *cp;
-    gss_buffer_desc tok;
-    OM_uint32 maj_stat, min_stat;
-
-    if (isdigit((int) mechanism[0])) {
-       mechstr = malloc(strlen(mechanism)+5);
-       if (!mechstr) {
-           printf("Couldn't allocate mechanism scratch!\r\n");
-           return;
-       }
-       sprintf(mechstr, "{ %s }", mechanism);
-       for (cp = mechstr; *cp; cp++)
-           if (*cp == '.')
-               *cp = ' ';
-       tok.value = mechstr;
-    } else
-       tok.value = mechanism;
-    tok.length = strlen(tok.value);
-    maj_stat = gss_str_to_oid(&min_stat, &tok, oid);
-    if (maj_stat != GSS_S_COMPLETE) {
-       display_status("str_to_oid", maj_stat, min_stat);
-       return;
-    }
-    if (mechstr)
-       free(mechstr);
-}
-
-int
-gss (char *server_host, char *service_name, char *mechanism, char *msg, int port,
-     int verbose, int delegate, int mutual, int replay, int sequence,
-     int v1_format, int auth_flag, int wrap_flag,
-     int encrypt_flag, int mic_flag, int ccount, int mcount, char *ccache)
-{
-    int use_file = 0;
-    OM_uint32 gss_flags = 0, min_stat;
-    gss_OID oid = GSS_C_NULL_OID;
-    OM_uint32     minor_status;
-    int i;
-    int rc = 0;
-
-    if (ccount <= 0)  ccount = 1;
-    if (mcount <= 0)  mcount = 1;
-
-    if (mechanism && mechanism[0])
-        parse_oid(mechanism, &oid);
-
-    if ( delegate )
-        gss_flags |= GSS_C_DELEG_FLAG;
-    if ( mutual )
-        gss_flags |= GSS_C_MUTUAL_FLAG;
-    if ( replay )
-        gss_flags |= GSS_C_REPLAY_FLAG;
-    if ( sequence )
-        gss_flags |= GSS_C_SEQUENCE_FLAG;
-
-    /* By using this function the independence between the application and
-     * the underlying authentication system is broken
-     */
-    if ( ccache && ccache[0] )
-        gss_krb5_ccache_name(&minor_status, ccache, NULL);
-
-    for (i = 0; i < ccount; i++) {
-        if (call_server(server_host, port, oid, service_name,
-                         gss_flags, auth_flag, wrap_flag, encrypt_flag, mic_flag,
-                         v1_format, msg, use_file, mcount) < 0)
-            rc = -1;
-        break;
-    }
-
-    if (oid != GSS_C_NULL_OID)
-        (void) gss_release_oid(&min_stat, &oid);
-
-    return rc;
-}
diff --git a/src/windows/gss/gss-misc.c b/src/windows/gss/gss-misc.c
deleted file mode 100644 (file)
index bf25eaa..0000000
+++ /dev/null
@@ -1,428 +0,0 @@
-/*
- * Copyright 1994 by OpenVision Technologies, Inc.
- *
- * Permission to use, copy, modify, distribute, and sell this software
- * and its documentation for any purpose is hereby granted without fee,
- * provided that the above copyright notice appears in all copies and
- * that both that copyright notice and this permission notice appear in
- * supporting documentation, and that the name of OpenVision not be used
- * in advertising or publicity pertaining to distribution of the software
- * without specific, written prior permission. OpenVision makes no
- * representations about the suitability of this software for any
- * purpose.  It is provided "as is" without express or implied warranty.
- *
- * OPENVISION DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
- * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
- * EVENT SHALL OPENVISION BE LIABLE FOR ANY SPECIAL, INDIRECT OR
- * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF
- * USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
- * OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
- * PERFORMANCE OF THIS SOFTWARE.
- */
-/*
- * Copyright (C) 2004 by the Massachusetts Institute of Technology.
- * All rights reserved.
- *
- * Export of this software from the United States of America may
- *   require a specific license from the United States Government.
- *   It is the responsibility of any person or organization contemplating
- *   export to obtain such a license before exporting.
- *
- * WITHIN THAT CONSTRAINT, permission to use, copy, modify, and
- * distribute this software and its documentation for any purpose and
- * without fee is hereby granted, provided that the above copyright
- * notice appear in all copies and that both that copyright notice and
- * this permission notice appear in supporting documentation, and that
- * the name of M.I.T. not be used in advertising or publicity pertaining
- * to distribution of the software without specific, written prior
- * permission.  Furthermore if you modify this software you must label
- * your software as modified software and not distribute it in such a
- * fashion that it might be confused with the original M.I.T. software.
- * M.I.T. makes no representations about the suitability of
- * this software for any purpose.  It is provided "as is" without express
- * or implied warranty.
- */
-#include "gss.h"
-#include <stdio.h>
-#include <string.h>
-#include <errno.h>
-#include <stdlib.h>
-#include <sys\timeb.h>
-#include <time.h>
-
-FILE *display_file;
-DWORD ws_err;
-
-gss_buffer_desc empty_token_buf = { 0, (void *) "" };
-gss_buffer_t empty_token = &empty_token_buf;
-
-static void display_status_1
-       (char *m, OM_uint32 code, int type);
-
-static int write_all(int fildes, char *buf, unsigned int nbyte)
-{
-    int ret;
-    char *ptr;
-
-    for (ptr = buf; nbyte; ptr += ret, nbyte -= ret) {
-        ret = send(fildes, ptr, nbyte, 0);
-        if (ret < 0) {
-            ws_err = WSAGetLastError();
-            errno = ws_err;
-            return(ret);
-        } else if (ret == 0) {
-            return(ptr-buf);
-        }
-    }
-
-    return(ptr-buf);
-}
-
-static int read_all(int s, char *buf, unsigned int nbyte)
-{
-    int ret;
-    char *ptr;
-    fd_set rfds;
-    struct timeval tv;
-
-    FD_ZERO(&rfds);
-    FD_SET(s, &rfds);
-    tv.tv_sec = 10;
-    tv.tv_usec = 0;
-
-    for (ptr = buf; nbyte; ptr += ret, nbyte -= ret) {
-        if ( select(FD_SETSIZE, &rfds, NULL, NULL, &tv) <= 0 || !FD_ISSET(s, &rfds) )
-            return(ptr-buf);
-        ret = recv(s, ptr, nbyte, 0);
-        if (ret < 0) {
-            ws_err = WSAGetLastError();
-            errno = ws_err;
-            return(ret);
-        } else if (ret == 0) {
-            return(ptr-buf);
-        }
-    }
-
-    return(ptr-buf);
-}
-
-/*
- * Function: send_token
- *
- * Purpose: Writes a token to a file descriptor.
- *
- * Arguments:
- *
- *     s               (r) an open file descriptor
- *     flags           (r) the flags to write
- *     tok             (r) the token to write
- *
- * Returns: 0 on success, -1 on failure
- *
- * Effects:
- *
- * If the flags are non-null, send_token writes the token flags (a
- * single byte, even though they're passed in in an integer). Next,
- * the token length (as a network long) and then the token data are
- * written to the file descriptor s.  It returns 0 on success, and -1
- * if an error occurs or if it could not write all the data.
- */
-int send_token(int s, int flags, gss_buffer_t tok)
-{
-     int ret;
-     unsigned char char_flags = (unsigned char) flags;
-     unsigned char lenbuf[4];
-
-     if (char_flags) {
-         ret = write_all(s, (char *)&char_flags, 1);
-         if (ret != 1) {
-             my_perror("sending token flags");
-             OkMsgBox ("Winsock error  %d \n", ws_err);
-             return -1;
-         }
-     }
-    if (tok->length > 0xffffffffUL)
-        abort();
-    lenbuf[0] = (tok->length >> 24) & 0xff;
-    lenbuf[1] = (tok->length >> 16) & 0xff;
-    lenbuf[2] = (tok->length >> 8) & 0xff;
-    lenbuf[3] = tok->length & 0xff;
-
-    ret = write_all(s, lenbuf, 4);
-    if (ret < 0) {
-        my_perror("sending token length");
-               OkMsgBox ("Winsock error  %d \n", ws_err);
-        return -1;
-    } else if (ret != 4) {
-        if (verbose)
-            printf("sending token length: %d of %d bytes written\r\n",
-                     ret, 4);
-        return -1;
-    }
-
-    ret = write_all(s, tok->value, tok->length);
-    if (ret < 0) {
-        my_perror("sending token data");
-               OkMsgBox ("Winsock error  %d \n", ws_err);
-        return -1;
-    } else if (ret != tok->length) {
-        if (verbose)
-            printf("sending token data: %d of %d bytes written\r\n",
-                     ret, (int) tok->length);
-        return -1;
-    }
-
-    return 0;
-}
-
-/*
- * Function: recv_token
- *
- * Purpose: Reads a token from a file descriptor.
- *
- * Arguments:
- *
- *     s               (r) an open file descriptor
- *     flags           (w) the read flags
- *     tok             (w) the read token
- *
- * Returns: 0 on success, -1 on failure
- *
- * Effects:
- *
- * recv_token reads the token flags (a single byte, even though
- * they're stored into an integer, then reads the token length (as a
- * network long), allocates memory to hold the data, and then reads
- * the token data from the file descriptor s.  It blocks to read the
- * length and data, if necessary.  On a successful return, the token
- * should be freed with gss_release_buffer.  It returns 0 on success,
- * and -1 if an error occurs or if it could not read all the data.
- */
-int recv_token(int s, int * flags, gss_buffer_t tok)
-{
-    int ret;
-    unsigned char char_flags;
-    unsigned char lenbuf[4];
-
-    ret = read_all(s, (char *) &char_flags, 1);
-    if (ret < 0) {
-        my_perror("reading token flags");
-               OkMsgBox ("Winsock error  %d \n", ws_err);
-        return -1;
-    } else if (! ret) {
-        if (display_file)
-            printf("reading token flags: 0 bytes read\r\n", display_file);
-        return -1;
-    } else {
-        *flags = (int) char_flags;
-    }
-
-    if (char_flags == 0 ) {
-        lenbuf[0] = 0;
-        ret = read_all(s, &lenbuf[1], 3);
-        if (ret < 0) {
-            my_perror("reading token length");
-            OkMsgBox ("Winsock error  %d \n", ws_err);
-            return -1;
-        } else if (ret != 3) {
-            if (verbose)
-                printf("reading token length: %d of %d bytes read\r\n",
-                         ret, 3);
-            return -1;
-        }
-    }
-    else {
-        ret = read_all(s, lenbuf, 4);
-        if (ret < 0) {
-            my_perror("reading token length");
-            OkMsgBox ("Winsock error  %d \n", ws_err);
-            return -1;
-        } else if (ret != 4) {
-            if (verbose)
-                printf("reading token length: %d of %d bytes read\r\n",
-                         ret, 4);
-            return -1;
-        }
-    }
-
-    tok->length = ((lenbuf[0] << 24)
-                    | (lenbuf[1] << 16)
-                    | (lenbuf[2] << 8)
-                    | lenbuf[3]);
-    tok->value = (char *) malloc(tok->length ? tok->length : 1);
-    if (tok->length && tok->value == NULL) {
-        if (verbose)
-            printf("Out of memory allocating token data\r\n");
-        return -1;
-    }
-
-    ret = read_all(s, (char *) tok->value, tok->length);
-    if (ret < 0) {
-        my_perror("reading token data");
-               OkMsgBox ("Winsock error  %d \n", ws_err);
-        free(tok->value);
-        return -1;
-    } else if (ret != tok->length) {
-        printf("sending token data: %d of %d bytes written\r\n",
-                 ret, (int) tok->length);
-        free(tok->value);
-        return -1;
-    }
-
-    return 0;
-}
-
-void
-free_token(gss_buffer_t tok)
-{
-    if (tok->length <= 0 || tok->value == NULL)
-        return;
-
-    free(tok->value);
-    tok->value = NULL;
-    tok->length = 0;
-}
-
-/*+
- * Function: display_status
- *
- * Purpose: displays GSS-API messages
- *
- * Arguments:
- *
- *     msg             a string to be displayed with the message
- *     maj_stat        the GSS-API major status code
- *     min_stat        the GSS-API minor status code
- *
- * Effects:
- *
- * The GSS-API messages associated with maj_stat and min_stat are
- * displayed on stderr, each preceeded by "GSS-API error <msg>: " and
- * followed by a newline.
- */
-void
-display_status (char *msg, OM_uint32 maj_stat, OM_uint32 min_stat) {
-    display_status_1(msg, maj_stat, GSS_C_GSS_CODE);
-    display_status_1(msg, min_stat, GSS_C_MECH_CODE);
-}
-
-static void
-display_status_1(char *m, OM_uint32 code, int type) {
-    OM_uint32 maj_stat, min_stat;
-    gss_buffer_desc msg;
-    OM_uint32 msg_ctx;
-
-    msg_ctx = 0;
-    while (1) {
-        maj_stat = gss_display_status(&min_stat, code,
-                                      type, GSS_C_NULL_OID,
-                                      &msg_ctx, &msg);
-        if (verbose)
-            printf("GSS-API error %s: %s\r\n", m,
-                     (char *)msg.value);
-        OkMsgBox ("GSS-API error %s: %s\n", m,
-            (char *)msg.value);
-        (void) gss_release_buffer(&min_stat, &msg);
-
-        if (!msg_ctx)
-            break;
-    }
-}
-
-/*
- * Function: display_ctx_flags
- *
- * Purpose: displays the flags returned by context initation in
- *         a human-readable form
- *
- * Arguments:
- *
- *     int             ret_flags
- *
- * Effects:
- *
- * Strings corresponding to the context flags are printed on
- * stdout, preceded by "context flag: " and followed by a newline
- */
-
-void display_ctx_flags(flags)
-     OM_uint32 flags;
-{
-     if (flags & GSS_C_DELEG_FLAG)
-         printf("context flag: GSS_C_DELEG_FLAG\r\n");
-     if (flags & GSS_C_MUTUAL_FLAG)
-         printf("context flag: GSS_C_MUTUAL_FLAG\r\n");
-     if (flags & GSS_C_REPLAY_FLAG)
-         printf("context flag: GSS_C_REPLAY_FLAG\r\n");
-     if (flags & GSS_C_SEQUENCE_FLAG)
-         printf("context flag: GSS_C_SEQUENCE_FLAG\r\n");
-     if (flags & GSS_C_CONF_FLAG )
-         printf("context flag: GSS_C_CONF_FLAG \r\n");
-     if (flags & GSS_C_INTEG_FLAG )
-         printf("context flag: GSS_C_INTEG_FLAG \r\n");
-}
-
-void print_token(tok)
-     gss_buffer_t tok;
-{
-    size_t i;
-    unsigned char *p = tok->value;
-
-    if (!verbose)
-       return;
-    for (i=0; i < tok->length; i++, p++) {
-       printf("%02x ", *p);
-       if ((i % 16) == 15) {
-           printf("\r\n");
-       }
-    }
-    printf("\r\n");
-}
-
-
-int gettimeofday (struct timeval *tv, void *ignore_tz)
-{
-    struct _timeb tb;
-    _tzset();
-    _ftime(&tb);
-    if (tv) {
-       tv->tv_sec = tb.time;
-       tv->tv_usec = tb.millitm * 1000;
-    }
-    return 0;
-}
-
-/*+*************************************************************************
-**
-** OkMsgBox
-**
-** A MessageBox version of printf
-**
-***************************************************************************/
-void
-OkMsgBox (char *format, ...) {
-    char buf[256];                                                             // Message goes into here
-    char *args;                                 // Args for printf
-
-    args = (char *) &format + sizeof(format);
-    vsprintf (buf, format, args);
-    MessageBox(NULL, buf, "", MB_OK);
-}
-/*+*************************************************************************
-**
-** My_perror
-**
-** A windows conversion of perror displaying the output into a MessageBox.
-**
-***************************************************************************/
-void
-my_perror (char *msg) {
-    char *err;
-
-    err = strerror (errno);
-
-    if (msg && *msg != '\0')
-        OkMsgBox ("%s: %s", msg, err);
-    else
-        MessageBox (NULL, err, "", MB_OK);
-}
diff --git a/src/windows/gss/gss-misc.h b/src/windows/gss/gss-misc.h
deleted file mode 100644 (file)
index 77d8190..0000000
+++ /dev/null
@@ -1,60 +0,0 @@
-/*
- * Copyright 1994 by OpenVision Technologies, Inc.
- *
- * Permission to use, copy, modify, distribute, and sell this software
- * and its documentation for any purpose is hereby granted without fee,
- * provided that the above copyright notice appears in all copies and
- * that both that copyright notice and this permission notice appear in
- * supporting documentation, and that the name of OpenVision not be used
- * in advertising or publicity pertaining to distribution of the software
- * without specific, written prior permission. OpenVision makes no
- * representations about the suitability of this software for any
- * purpose.  It is provided "as is" without express or implied warranty.
- *
- * OPENVISION DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
- * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
- * EVENT SHALL OPENVISION BE LIABLE FOR ANY SPECIAL, INDIRECT OR
- * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF
- * USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
- * OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
- * PERFORMANCE OF THIS SOFTWARE.
- */
-
-/*
- * $Id$
- */
-
-#ifndef _GSSMISC_H_
-#define _GSSMISC_H_
-
-#include <gssapi/gssapi_generic.h>
-#include <stdio.h>
-
-extern FILE *display_file;
-
-int send_token
-       (int s, int flags, gss_buffer_t tok);
-int recv_token
-       (int s, int *flags, gss_buffer_t tok);
-void display_status
-       (char *msg, OM_uint32 maj_stat, OM_uint32 min_stat);
-void display_ctx_flags
-       (OM_uint32 flags);
-void print_token
-       (gss_buffer_t tok);
-
-/* Token types */
-#define TOKEN_NOOP             (1<<0)
-#define TOKEN_CONTEXT          (1<<1)
-#define TOKEN_DATA             (1<<2)
-#define TOKEN_MIC              (1<<3)
-
-/* Token flags */
-#define TOKEN_CONTEXT_NEXT     (1<<4)
-#define TOKEN_WRAPPED          (1<<5)
-#define TOKEN_ENCRYPTED                (1<<6)
-#define TOKEN_SEND_MIC         (1<<7)
-
-extern gss_buffer_t empty_token;
-
-#endif
diff --git a/src/windows/gss/gss.c b/src/windows/gss/gss.c
deleted file mode 100644 (file)
index 68d266f..0000000
+++ /dev/null
@@ -1,721 +0,0 @@
-/*
- * Copyright (C) 2003, 2004 by the Massachusetts Institute of Technology.
- * All rights reserved.
- *
- * Export of this software from the United States of America may
- *   require a specific license from the United States Government.
- *   It is the responsibility of any person or organization contemplating
- *   export to obtain such a license before exporting.
- *
- * WITHIN THAT CONSTRAINT, permission to use, copy, modify, and
- * distribute this software and its documentation for any purpose and
- * without fee is hereby granted, provided that the above copyright
- * notice appear in all copies and that both that copyright notice and
- * this permission notice appear in supporting documentation, and that
- * the name of M.I.T. not be used in advertising or publicity pertaining
- * to distribution of the software without specific, written prior
- * permission.  Furthermore if you modify this software you must label
- * your software as modified software and not distribute it in such a
- * fashion that it might be confused with the original M.I.T. software.
- * M.I.T. makes no representations about the suitability of
- * this software for any purpose.  It is provided "as is" without express
- * or implied warranty.
- */
-/*+*************************************************************************
-**
-** GSS test    - Windows scaffolding to test the gssapi dll
-**
-** Given a hostname it does the equivalent of the Unix command
-** ./gss-client [-port <port>] <hostname> host@<hostname> "msg"
-**
-***************************************************************************/
-#include <windows.h>
-#include <stdio.h>
-#include <stdlib.h>
-#include <commctrl.h>
-#include "gss.h"
-#include <krb5.h>
-#ifdef USE_LEASH
-#include <cacheapi.h>
-#endif
-
-#include "resource.h"
-
-#define GSSAPI_INI     "gsstest.ini"                           // Which INI file
-#define INI_HOSTS      "GSSAPI Hosts"                          // INI file section
-#define INI_HOST       "Host"                                          // INI file line label
-#define INI_SVCS       "GSSAPI Services"                       // INI file section
-#define INI_SVC            "Service"                                   // INI file line label
-#define INI_MSGS       "GSSAPI Messages"                       // INI file section
-#define INI_MSG            "Message"                                   // INI file line label
-#define INI_MECHS      "GSSAPI Mechanisms"                     // INI file section
-#define INI_MECH       "Mech"                                          // INI file line label
-#define INI_LAST    "GSSAPI Most Recent"
-#define INI_LAST_HOST "Host"
-#define INI_LAST_PORT "Port"
-#define INI_LAST_SVC  "Service"
-#define INI_LAST_MECH "Mechanism"
-#define INI_LAST_MSG  "Message"
-#define INI_LAST_DELEGATE  "Delegation"
-#define INI_LAST_SEQUENCE  "Sequence"
-#define INI_LAST_MUTUAL    "Mutual"
-#define INI_LAST_REPLAY    "Replay"
-#define INI_LAST_VERBOSE   "Verbose"
-#define INI_LAST_CCOUNT    "Call Count"
-#define INI_LAST_MCOUNT    "Message Count"
-#define INI_LAST_VER1      "Version One"
-#define INI_LAST_NOAUTH    "No Auth"
-#define INI_LAST_NOWRAP    "No Wrap"
-#define INI_LAST_NOCRYPT   "No Encrypt"
-#define INI_LAST_NOMIC     "No Mic"
-#define INI_LAST_CCACHE    "CCache"
-
-#define MAX_SAVED 9
-char hosts[MAX_SAVED][256];
-char svcs[MAX_SAVED][256];
-char msgs[MAX_SAVED][256];
-char mechs[MAX_SAVED][256];
-char szHost[256];                      // GSSAPI Host to connect to
-char szService[256];           // Service to do
-char szMessage[256];        // Message to send
-char szMech[256];                      // OID to use
-char szCCache[256];         // CCache to use
-int port = 0;                          // Which port to use
-int delegate = 0;           // Delegate?
-int replay = 1;             // Replay?
-int mutual = 1;             // Mutual?
-int sequence = 0;           // Sequence?
-int verbose = 1;            // Verbose?
-int ccount = 1;             // Call Count
-int mcount = 1;             // Message Count
-int gssv1 = 0;              // Version 1?
-int noauth = 0;             // No Auth?
-int nowrap = 0;             // No Wrap?
-int nocrypt = 0;            // No Crypt?
-int nomic = 0;              // No Mic?
-
-HWND hDialog = 0;
-
-static void do_gssapi_test (void);
-static void parse_name (char *name);
-static void read_saved(void);
-static void write_saved (void);
-static void    update_saved (void);
-static void fill_combo (HWND hDlg);
-
-/*+*************************************************************************
-**
-** WinMain
-**
-** Sets up the Dialog that drives our program
-**
-***************************************************************************/
-int __stdcall
-WinMain (HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpszCmdLine, int nCmdShow)
-{
-       WSADATA wsadata;
-       WORD versionrequested;
-       int rc;
-
-       InitCommonControls();
-
-       versionrequested = 0x0101;              /* Version 1.1 */
-       rc = WSAStartup(versionrequested, &wsadata);
-       if (rc) {
-           MessageBox(NULL, "Couldn't initialize Winsock library", "",
-                      MB_OK | MB_ICONSTOP);
-           return FALSE;
-       }
-       if (versionrequested != wsadata.wVersion) {
-           WSACleanup();
-           MessageBox(NULL, "Winsock version 1.1 not available", "",
-                      MB_OK | MB_ICONSTOP);
-           return FALSE;
-       }
-
-       rc = DialogBoxParam (hInstance, "GSSAPIDLG", HWND_DESKTOP, OpenGssapiDlg, 0L);
-       rc = GetLastError();
-
-       WSACleanup();
-       return 0;
-}
-/*+*************************************************************************
-**
-** Do_gssapi_test
-**
-** Does the actual call to GSS-client
-**
-***************************************************************************/
-void
-do_gssapi_test (void) {
-       int n;                                                                          // Return value
-       HCURSOR hcursor;                                                        // For the hourglass cursor
-
-       hcursor = SetCursor(LoadCursor(NULL, IDC_WAIT));
-       n = gss (szHost, szService, szMech, szMessage[0] ? szMessage : "Test Gssapi Message", port,
-             verbose, delegate, mutual, replay, sequence,
-             gssv1, !noauth, !nowrap, !nocrypt, !nomic, ccount, mcount,
-             szCCache);
-       SetCursor(hcursor);
-
-       if (n)
-               MessageBox (NULL, "gss failed", "", IDOK | MB_ICONINFORMATION);
-}
-
-/*+*************************************************************************
-**
-** OpenGssapiDlg(HWND, unsigned, WORD, LONG)
-**
-** Processes messages for "Open Gssapi Connection" dialog box
-**
-** Messages:
-**     WM_INITDIALOG - initialize dialog box
-**     WM_COMMAND    - Input received
-**
-***************************************************************************/
-INT_PTR CALLBACK
-OpenGssapiDlg(
-       HWND hDlg,
-       UINT message,
-       WPARAM wParam,
-       LPARAM lParam)
-{
-       HDC hDC;                                                                        // For getting graphic info
-       DWORD Ext;                                                                      // Size of dialog
-       int xExt, yExt;                                                         // Size broken apart
-    char buff[64];
-
-       switch (message) {
-       case WM_INITDIALOG:
-        hDialog = hDlg;
-               /*
-               ** First center the dialog
-               */
-               hDC = GetDC(hDlg);
-               Ext = GetDialogBaseUnits();
-               xExt = (190 *LOWORD(Ext)) /4 ;
-               yExt = (72 * HIWORD(Ext)) /8 ;
-               SetWindowPos(hDlg, NULL,
-                       (GetSystemMetrics(SM_CXSCREEN)/2)-(xExt/2),
-                       (GetSystemMetrics(SM_CYSCREEN)/2)-(yExt/2),
-                       0, 0, SWP_NOSIZE | SWP_NOZORDER | SWP_SHOWWINDOW);
-               ReleaseDC(hDlg, hDC);
-
-        SendDlgItemMessage(hDlg, GSS_HOST_NAME, CB_LIMITTEXT, sizeof(szHost), 0);
-               read_saved ();                                                  // Get the host list
-               fill_combo (hDlg);                                              // Put into combo box
-
-               SendMessage(hDlg, WM_SETFOCUS, 0, 0);
-               return (TRUE);
-
-    case WM_HSCROLL:
-               switch (LOWORD(wParam)) {
-               case TB_THUMBTRACK:
-               case TB_THUMBPOSITION:
-                       {
-                               long pos = HIWORD(wParam); // the position of the slider
-                               int  ctrlID = GetDlgCtrlID((HWND)lParam);
-
-                               if (ctrlID == GSS_CALL_COUNT) {
-                    sprintf(buff,"Call Count: %d",pos);
-                                       SetWindowText(GetDlgItem(hDialog, IDC_STATIC_CCOUNT),buff);
-                               }
-                               if (ctrlID == GSS_MESSAGE_COUNT) {
-                    sprintf(buff,"Message Count: %d",pos);
-                                       SetWindowText(GetDlgItem(hDialog, IDC_STATIC_MSG_COUNT),buff);
-                               }
-                       }
-                       break;
-        case TB_BOTTOM:
-        case TB_TOP:
-        case TB_ENDTRACK:
-        case TB_LINEDOWN:
-        case TB_LINEUP:
-        case TB_PAGEDOWN:
-        case TB_PAGEUP:
-               default:
-                       {
-                               int  ctrlID = GetDlgCtrlID((HWND)lParam);
-                               long pos = SendMessage(GetDlgItem(hDialog,ctrlID), TBM_GETPOS, 0, 0); // the position of the slider
-
-                               if (ctrlID == GSS_CALL_COUNT) {
-                    sprintf(buff,"Call Count: %d",pos);
-                                       SetWindowText(GetDlgItem(hDialog, IDC_STATIC_CCOUNT),buff);
-                               }
-                               if (ctrlID == GSS_MESSAGE_COUNT) {
-                    sprintf(buff,"Message Count: %d",pos);
-                                       SetWindowText(GetDlgItem(hDialog, IDC_STATIC_MSG_COUNT),buff);
-                               }
-                       }
-               }
-        break;
-
-
-       case WM_COMMAND:
-               switch (wParam) {
-               case GSS_CANCEL:                                                // Only way out of the dialog
-               case IDCANCEL:                                                  // From the menu
-                       EndDialog(hDlg, FALSE);
-                       break;
-
-               case GSS_OK:
-                       GetDlgItemText(hDlg, GSS_HOST_NAME, szHost, 256);
-                       SendDlgItemMessage(hDlg, GSS_HOST_NAME, CB_SHOWDROPDOWN, FALSE, 0);
-
-                       if (!*szHost) {
-                               MessageBox(hDlg, "You must enter a host name", NULL, MB_OK);
-                               break;
-                       }
-
-                       GetDlgItemText(hDlg, GSS_SERVICE_NAME, szService, 256);
-                       SendDlgItemMessage(hDlg, GSS_SERVICE_NAME, CB_SHOWDROPDOWN, FALSE, 0);
-
-                       if (!*szService) {
-                               MessageBox(hDlg, "You must enter a service name", NULL, MB_OK);
-                               break;
-                       }
-
-            GetDlgItemText(hDlg, GSS_MECHANISM, szMech, 256);
-            GetDlgItemText(hDlg, GSS_CCACHE_NAME, szCCache, 256);
-            GetDlgItemText(hDlg, GSS_MESSAGE, szMessage, 256);
-            GetDlgItemText(hDlg, GSS_PORT, buff, 32);
-            if (!*buff) {
-                               MessageBox(hDlg, "You must enter a valid port number", NULL, MB_OK);
-                               break;
-            }
-            port = atoi(buff);
-            if (port == 0 || port == -1)
-                port = 4444;
-
-            ccount = SendDlgItemMessage( hDlg, GSS_CALL_COUNT, TBM_GETPOS, 0, 0);
-            mcount = SendDlgItemMessage( hDlg, GSS_MESSAGE_COUNT, TBM_GETPOS, 0, 0);
-
-            verbose = IsDlgButtonChecked(hDlg, GSS_VERBOSE);
-            delegate = IsDlgButtonChecked(hDlg, GSS_DELEGATION);
-            mutual = IsDlgButtonChecked(hDlg, GSS_MUTUAL);
-            replay = IsDlgButtonChecked(hDlg, GSS_REPLAY);
-            sequence = IsDlgButtonChecked(hDlg, GSS_SEQUENCE);
-            gssv1 = IsDlgButtonChecked(hDlg, GSS_VERSION_ONE);
-
-            noauth = IsDlgButtonChecked(hDlg, GSS_NO_AUTH);
-            if ( noauth ) {
-                nowrap = nocrypt = nomic = 0;
-            } else {
-                nowrap = IsDlgButtonChecked(hDlg, GSS_NO_WRAP);
-                nocrypt = IsDlgButtonChecked(hDlg, GSS_NO_ENCRYPT);
-                nomic = IsDlgButtonChecked(hDlg, GSS_NO_MIC);
-            }
-
-                       update_saved ();                                // Add it to the host list
-                       fill_combo (hDlg);                                      // Update the combo box
-            SetDlgItemText(hDlg, GSS_OUTPUT, "");
-            do_gssapi_test ();                         // Test GSSAPI
-
-                       //EndDialog(hDlg, TRUE);
-                       break;
-
-        case GSS_NO_AUTH:
-            if ( IsDlgButtonChecked(hDlg, GSS_NO_AUTH) ) {
-                // disable the other no_xxx options
-                EnableWindow(GetDlgItem(hDlg, GSS_NO_WRAP), FALSE);
-                EnableWindow(GetDlgItem(hDlg, GSS_NO_ENCRYPT), FALSE);
-                EnableWindow(GetDlgItem(hDlg, GSS_NO_MIC), FALSE);
-            } else {
-                // enable the other no_xxx options
-                EnableWindow(GetDlgItem(hDlg, GSS_NO_WRAP), TRUE);
-                EnableWindow(GetDlgItem(hDlg, GSS_NO_ENCRYPT), TRUE);
-                EnableWindow(GetDlgItem(hDlg, GSS_NO_MIC), TRUE);
-            }
-            break;
-        }
-               return FALSE;
-       }
-       return FALSE;
-
-}
-/*+*************************************************************************
-**
-** Parse_name
-**
-** Turns NAME which the user entered into host, service and port.
-** The host is up to first space, port is after that and service is made
-** from host.
-**
-***************************************************************************/
-static void
-parse_name (char *name) {
-       char *ptr;
-       char seps[] = " ,\t";
-       char tempname[256];
-
-       memset( &tempname[0], '\0', 256 );
-       strcpy( tempname, name);
-       ptr = strtok( tempname, seps);
-       if (ptr != NULL ){
-           strcpy( szHost, ptr );
-       } else {
-           wsprintf( szHost, "k5test" );
-       }
-       if(ptr){
-           ptr = strtok( NULL, seps);
-       }
-       if( ptr ){
-               port = atoi (ptr);
-       }
-       if( ptr ){
-           ptr = strtok( NULL, seps);
-       }
-       if( ptr ){
-           strcpy( szService, ptr );
-       }else{
-           wsprintf (szService, "sample@%s", szHost); // Make the service name
-       }
-       if( ptr ){
-           ptr = strtok( NULL, seps);
-       }
-       if( ptr ){
-           wsprintf (szMech, "{ %s }", ptr); // Put in the OID
-           for (ptr = szMech; *ptr; ptr++)
-                   if (*ptr == '.')
-                           *ptr = ' ';
-    } else {
-          szMech[0] = 0;
-       }
-
-}
-/*+*************************************************************************
-**
-** read_saved
-**
-** Reads all the hosts listed in the INI file.
-**
-***************************************************************************/
-static void
-read_saved (void) {
-       int i;                                  /* Index */
-       char buff[32];
-
-       for (i = 0; MAX_SAVED; ++i) {           /* Read this many entries */
-               wsprintf (buff, INI_HOST "%d", i);
-               GetPrivateProfileString(INI_HOSTS, buff, "", hosts[i], 256, GSSAPI_INI);
-               if (*hosts[i] == '\0')          /* No more entries??? */
-                       break;
-       }
-       for (i = 0; MAX_SAVED; ++i) {           /* Read this many entries */
-               wsprintf (buff, INI_SVC "%d", i);
-               GetPrivateProfileString(INI_SVCS, buff, "", svcs[i], 256, GSSAPI_INI);
-               if (*svcs[i] == '\0')           /* No more entries??? */
-                       break;
-       }
-       for (i = 0; MAX_SAVED; ++i) {           /* Read this many entries */
-               wsprintf (buff, INI_MSG "%d", i);
-               GetPrivateProfileString(INI_MSGS, buff, "", msgs[i], 256, GSSAPI_INI);
-               if (*msgs[i] == '\0')           /* No more entries??? */
-                       break;
-       }
-       for (i = 0; MAX_SAVED; ++i) {           /* Read this many entries */
-               wsprintf (buff, INI_MECH "%d", i);
-               GetPrivateProfileString(INI_MECHS, buff, "", mechs[i], 256, GSSAPI_INI);
-               if (*mechs[i] == '\0')          /* No more entries??? */
-                       break;
-       }
-    GetPrivateProfileString(INI_LAST, INI_LAST_HOST, "", szHost, 256, GSSAPI_INI);
-    GetPrivateProfileString(INI_LAST, INI_LAST_PORT, "", buff, 32, GSSAPI_INI);
-    if ( buff[0] )
-        port = atoi(buff);
-    GetPrivateProfileString(INI_LAST, INI_LAST_SVC, "", szService, 256, GSSAPI_INI);
-    GetPrivateProfileString(INI_LAST, INI_LAST_MSG, "", szMessage, 256, GSSAPI_INI);
-    GetPrivateProfileString(INI_LAST, INI_LAST_MECH, "", szMech, 256, GSSAPI_INI);
-    GetPrivateProfileString(INI_LAST, INI_LAST_CCACHE, "", szCCache, 256, GSSAPI_INI);
-    GetPrivateProfileString(INI_LAST, INI_LAST_DELEGATE, "", buff, 32, GSSAPI_INI);
-    if ( buff[0] )
-        delegate = atoi(buff);
-    GetPrivateProfileString(INI_LAST, INI_LAST_MUTUAL, "", buff, 32, GSSAPI_INI);
-    if ( buff[0] )
-        mutual = atoi(buff);
-    GetPrivateProfileString(INI_LAST, INI_LAST_REPLAY, "", buff, 32, GSSAPI_INI);
-    if ( buff[0] )
-        replay = atoi(buff);
-    GetPrivateProfileString(INI_LAST, INI_LAST_SEQUENCE, "", buff, 32, GSSAPI_INI);
-    if ( buff[0] )
-        sequence = atoi(buff);
-    GetPrivateProfileString(INI_LAST, INI_LAST_VERBOSE, "", buff, 32, GSSAPI_INI);
-    if ( buff[0] )
-        verbose = atoi(buff);
-    GetPrivateProfileString(INI_LAST, INI_LAST_CCOUNT, "", buff, 32, GSSAPI_INI);
-    if ( buff[0] )
-        ccount = atoi(buff);
-    GetPrivateProfileString(INI_LAST, INI_LAST_MCOUNT, "", buff, 32, GSSAPI_INI);
-    if ( buff[0] )
-        mcount = atoi(buff);
-    GetPrivateProfileString(INI_LAST, INI_LAST_VER1, "", buff, 32, GSSAPI_INI);
-    if ( buff[0] )
-        gssv1 = atoi(buff);
-    GetPrivateProfileString(INI_LAST, INI_LAST_NOAUTH, "", buff, 32, GSSAPI_INI);
-    if ( buff[0] )
-        noauth = atoi(buff);
-    GetPrivateProfileString(INI_LAST, INI_LAST_NOWRAP, "", buff, 32, GSSAPI_INI);
-    if ( buff[0] )
-        nowrap = atoi(buff);
-    GetPrivateProfileString(INI_LAST, INI_LAST_NOCRYPT, "", buff, 32, GSSAPI_INI);
-    if ( buff[0] )
-        nocrypt = atoi(buff);
-    GetPrivateProfileString(INI_LAST, INI_LAST_NOMIC, "", buff, 32, GSSAPI_INI);
-    if ( buff[0] )
-        nomic = atoi(buff);
-}
-
-/*+*************************************************************************
-**
-** write_saved
-**
-** Writes the hosts list back to the ini file.
-**
-***************************************************************************/
-static void
-write_saved () {
-       int i;                                                                          // Index
-       char buff[32];
-
-       for (i = 0; i < MAX_SAVED; ++i) {
-               if (*hosts[i] == '\0')                                  // End of the list?
-                       break;
-               wsprintf (buff, INI_HOST "%d", i);
-               WritePrivateProfileString(INI_HOSTS, buff, hosts[i], GSSAPI_INI);
-       }
-       for (i = 0; i < MAX_SAVED; ++i) {
-               if (*svcs[i] == '\0')                                   // End of the list?
-                       break;
-               wsprintf (buff, INI_SVC "%d", i);
-               WritePrivateProfileString(INI_SVCS, buff, svcs[i], GSSAPI_INI);
-       }
-       for (i = 0; i < MAX_SAVED; ++i) {
-               if (*msgs[i] == '\0')                                   // End of the list?
-                       break;
-               wsprintf (buff, INI_MSG "%d", i);
-               WritePrivateProfileString(INI_MSGS, buff, msgs[i], GSSAPI_INI);
-       }
-       for (i = 0; i < MAX_SAVED; ++i) {
-               if (*mechs[i] == '\0')                                  // End of the list?
-                       break;
-               wsprintf (buff, INI_MECH "%d", i);
-               WritePrivateProfileString(INI_MECHS, buff, mechs[i], GSSAPI_INI);
-       }
-    WritePrivateProfileString(INI_LAST, INI_LAST_HOST, szHost, GSSAPI_INI);
-    wsprintf(buff, "%d", port);
-    WritePrivateProfileString(INI_LAST, INI_LAST_PORT, buff, GSSAPI_INI);
-    WritePrivateProfileString(INI_LAST, INI_LAST_SVC, szService, GSSAPI_INI);
-    WritePrivateProfileString(INI_LAST, INI_LAST_MECH, szMech, GSSAPI_INI);
-    WritePrivateProfileString(INI_LAST, INI_LAST_CCACHE, szCCache, GSSAPI_INI);
-    WritePrivateProfileString(INI_LAST, INI_LAST_MSG, szMessage, GSSAPI_INI);
-    wsprintf(buff, "%d", delegate);
-    WritePrivateProfileString(INI_LAST, INI_LAST_DELEGATE, buff, GSSAPI_INI);
-    wsprintf(buff, "%d", mutual);
-    WritePrivateProfileString(INI_LAST, INI_LAST_MUTUAL, buff, GSSAPI_INI);
-    wsprintf(buff, "%d", replay);
-    WritePrivateProfileString(INI_LAST, INI_LAST_REPLAY, buff, GSSAPI_INI);
-    wsprintf(buff, "%d", sequence);
-    WritePrivateProfileString(INI_LAST, INI_LAST_SEQUENCE, buff, GSSAPI_INI);
-    wsprintf(buff, "%d", verbose);
-    WritePrivateProfileString(INI_LAST, INI_LAST_VERBOSE, buff, GSSAPI_INI);
-    wsprintf(buff, "%d", ccount);
-    WritePrivateProfileString(INI_LAST, INI_LAST_CCOUNT, buff, GSSAPI_INI);
-    wsprintf(buff, "%d", mcount);
-    WritePrivateProfileString(INI_LAST, INI_LAST_MCOUNT, buff, GSSAPI_INI);
-    wsprintf(buff, "%d", gssv1);
-    WritePrivateProfileString(INI_LAST, INI_LAST_VER1, buff, GSSAPI_INI);
-    wsprintf(buff, "%d", noauth);
-    WritePrivateProfileString(INI_LAST, INI_LAST_NOAUTH, buff, GSSAPI_INI);
-    wsprintf(buff, "%d", nowrap);
-    WritePrivateProfileString(INI_LAST, INI_LAST_NOWRAP, buff, GSSAPI_INI);
-    wsprintf(buff, "%d", nocrypt);
-    WritePrivateProfileString(INI_LAST, INI_LAST_NOCRYPT, buff, GSSAPI_INI);
-    wsprintf(buff, "%d", nomic);
-    WritePrivateProfileString(INI_LAST, INI_LAST_NOMIC, buff, GSSAPI_INI);
-}
-/*+*************************************************************************
-**
-** Update_saved
-**
-** Updates the host list with the new NAME the user typed.
-**
-***************************************************************************/
-static void
-update_saved (void) {
-       int i;                                                                          // Index
-
-       for (i = 0; i < MAX_SAVED-1; ++i) {                     // Find it in the list
-               if (! _stricmp (szHost, hosts[i]))              // A match
-                       break;
-               if (*hosts[i] == '\0')                                  // End of the list
-                       break;
-       }
-       memmove (hosts[1], hosts[0], i * sizeof(hosts[0])); // Move the data down
-       strcpy (hosts[0], szHost);                                      // Insert this item
-
-    for (i = 0; i < MAX_SAVED-1; ++i) {                        // Find it in the list
-               if (! _stricmp (szService, svcs[i]))            // A match
-                       break;
-               if (*svcs[i] == '\0')                                   // End of the list
-                       break;
-       }
-       memmove (svcs[1], svcs[0], i * sizeof(svcs[0])); // Move the data down
-       strcpy (svcs[0], szService);                                    // Insert this item
-
-       for (i = 0; i < MAX_SAVED-1; ++i) {                     // Find it in the list
-               if (! _stricmp (szMessage, msgs[i]))            // A match
-                       break;
-               if (*msgs[i] == '\0')                                   // End of the list
-                       break;
-       }
-       memmove (msgs[1], msgs[0], i * sizeof(msgs[0])); // Move the data down
-       strcpy (msgs[0], szMessage);                                    // Insert this item
-
-       for (i = 0; i < MAX_SAVED-1; ++i) {                     // Find it in the list
-               if (! _stricmp (szMech, mechs[i]))              // A match
-                       break;
-               if (*mechs[i] == '\0')                                  // End of the list
-                       break;
-       }
-       memmove (mechs[1], mechs[0], i * sizeof(hosts[0])); // Move the data down
-       strcpy (mechs[0], szMech);                                      // Insert this item
-
-       write_saved ();
-}
-/*+*************************************************************************
-**
-** Fill_combo
-**
-** Fills the combo box with the contents of the host list. Item 0 goes
-** into the edit portion and the rest go into the libt box.
-**
-***************************************************************************/
-static void
-fill_combo (HWND hDlg) {
-       int i;                                                                          // Index
-    char buff[256];
-#ifdef USE_LEASH
-    krb5_error_code retval;
-    apiCB * cc_ctx = 0;
-    struct _infoNC ** pNCi = 0;
-#endif
-
-       SendDlgItemMessage(hDlg, GSS_HOST_NAME, CB_RESETCONTENT, 0, 0);
-       SetDlgItemText(hDlg, GSS_HOST_NAME, szHost);
-       SendDlgItemMessage(hDlg, GSS_HOST_NAME, CB_SETEDITSEL, 0, 0);
-       for (i = 1; i < MAX_SAVED; ++i) {                       // Fill in the list box
-               if (*hosts[i] == '\0')
-                       break;
-               SendDlgItemMessage(hDlg, GSS_HOST_NAME, CB_ADDSTRING, 0, (LPARAM) ((LPSTR) hosts[i]));
-       }
-
-       SendDlgItemMessage(hDlg, GSS_SERVICE_NAME, CB_RESETCONTENT, 0, 0);
-       SetDlgItemText(hDlg, GSS_SERVICE_NAME, szService);
-       SendDlgItemMessage(hDlg, GSS_SERVICE_NAME, CB_SETEDITSEL, 0, 0);
-       for (i = 1; i < MAX_SAVED; ++i) {                       // Fill in the list box
-               if (*svcs[i] == '\0')
-                       break;
-               SendDlgItemMessage(hDlg, GSS_SERVICE_NAME, CB_ADDSTRING, 0, (LPARAM) ((LPSTR) svcs[i]));
-       }
-
-       SendDlgItemMessage(hDlg, GSS_MECHANISM, CB_RESETCONTENT, 0, 0);
-       SetDlgItemText(hDlg, GSS_MECHANISM, szMech);
-       SendDlgItemMessage(hDlg, GSS_MECHANISM, CB_SETEDITSEL, 0, 0);
-       for (i = 1; i < MAX_SAVED; ++i) {                       // Fill in the list box
-               if (*mechs[i] == '\0')
-                       break;
-               SendDlgItemMessage(hDlg, GSS_MECHANISM, CB_ADDSTRING, 0, (LPARAM) ((LPSTR) mechs[i]));
-       }
-
-    SendDlgItemMessage(hDlg, GSS_CCACHE_NAME, CB_RESETCONTENT, 0, 0);
-       SetDlgItemText(hDlg, GSS_CCACHE_NAME, szCCache);
-       SendDlgItemMessage(hDlg, GSS_CCACHE_NAME, CB_SETEDITSEL, 0, 0);
-
-#ifdef USE_LEASH
-    retval = cc_initialize(&cc_ctx, CC_API_VER_2, NULL, NULL);
-    if (retval)
-        goto skip_ccache;
-
-    retval = cc_get_NC_info(cc_ctx, &pNCi);
-    if (retval)
-        goto clean_ccache;
-
-    for ( i=0; pNCi[i]; i++ ) {
-        if (pNCi[i]->vers == CC_CRED_V5) {
-            sprintf(buff,"API:%s",pNCi[i]->name);
-            SendDlgItemMessage(hDlg, GSS_CCACHE_NAME, CB_ADDSTRING, 0, (LPARAM) ((LPSTR) buff));
-        }
-    }
-
-  clean_ccache:
-    if (pNCi)
-        cc_free_NC_info(cc_ctx, &pNCi);
-    if (cc_ctx)
-        cc_shutdown(&cc_ctx);
-  skip_ccache:
-#endif /* USE_LEASH */
-    if ( szCCache[0] )
-        SendDlgItemMessage(hDlg, GSS_CCACHE_NAME, CB_ADDSTRING, 0, (LPARAM) ((LPSTR) szCCache));
-    SendDlgItemMessage(hDlg, GSS_CCACHE_NAME, CB_ADDSTRING, 0, (LPARAM) ((LPSTR) "MSLSA:"));
-
-       SendDlgItemMessage(hDlg, GSS_MESSAGE, CB_RESETCONTENT, 0, 0);
-       SetDlgItemText(hDlg, GSS_MESSAGE, szMessage);
-       SendDlgItemMessage(hDlg, GSS_MESSAGE, CB_SETEDITSEL, 0, 0);
-       for (i = 1; i < MAX_SAVED; ++i) {                       // Fill in the list box
-               if (*msgs[i] == '\0')
-                       break;
-               SendDlgItemMessage(hDlg, GSS_MESSAGE, CB_ADDSTRING, 0, (LPARAM) ((LPSTR) msgs[i]));
-       }
-
-    wsprintf(buff, "%d", port);
-    SetDlgItemText(hDlg, GSS_PORT, buff);
-
-    CheckDlgButton(hDlg, GSS_VERBOSE, verbose);
-    CheckDlgButton(hDlg, GSS_DELEGATION, delegate);
-    CheckDlgButton(hDlg, GSS_MUTUAL, mutual);
-    CheckDlgButton(hDlg, GSS_REPLAY, replay);
-    CheckDlgButton(hDlg, GSS_SEQUENCE, sequence);
-    CheckDlgButton(hDlg, GSS_VERSION_ONE, gssv1);
-    CheckDlgButton(hDlg, GSS_NO_AUTH, noauth);
-    CheckDlgButton(hDlg, GSS_NO_WRAP, nowrap);
-    CheckDlgButton(hDlg, GSS_NO_ENCRYPT, nocrypt);
-    CheckDlgButton(hDlg, GSS_NO_MIC, nomic);
-
-    if ( noauth ) {
-        // disable the other no_xxx options
-        EnableWindow(GetDlgItem(hDlg, GSS_NO_WRAP), FALSE);
-        EnableWindow(GetDlgItem(hDlg, GSS_NO_ENCRYPT), FALSE);
-        EnableWindow(GetDlgItem(hDlg, GSS_NO_MIC), FALSE);
-    } else {
-        // enable the other no_xxx options
-        EnableWindow(GetDlgItem(hDlg, GSS_NO_WRAP), TRUE);
-        EnableWindow(GetDlgItem(hDlg, GSS_NO_ENCRYPT), TRUE);
-        EnableWindow(GetDlgItem(hDlg, GSS_NO_MIC), TRUE);
-    }
-
-    SendDlgItemMessage(hDlg, GSS_CALL_COUNT, TBM_SETRANGEMIN, (WPARAM) FALSE, (LPARAM) 1);
-    SendDlgItemMessage(hDlg, GSS_CALL_COUNT, TBM_SETRANGEMAX, (WPARAM) FALSE, (LPARAM) 20);
-    SendDlgItemMessage(hDlg, GSS_CALL_COUNT, TBM_SETPOS, (WPARAM) FALSE, (LPARAM) ccount);
-    sprintf(buff,"Call Count: %d",ccount);
-    SetWindowText(GetDlgItem(hDialog, IDC_STATIC_CCOUNT),buff);
-
-    SendDlgItemMessage(hDlg, GSS_MESSAGE_COUNT, TBM_SETRANGEMIN, (WPARAM) FALSE, (LPARAM) 1);
-    SendDlgItemMessage(hDlg, GSS_MESSAGE_COUNT, TBM_SETRANGEMAX, (WPARAM) FALSE, (LPARAM) 20);
-    SendDlgItemMessage(hDlg, GSS_MESSAGE_COUNT, TBM_SETPOS, (WPARAM) FALSE, (LPARAM) mcount);
-    sprintf(buff,"Message Count: %d",mcount);
-    SetWindowText(GetDlgItem(hDialog, IDC_STATIC_MSG_COUNT),buff);
-}
-
-int
-gss_printf (const char *format, ...) {
-    static char myprtfstr[4096];
-    int rc=0;
-    va_list ap;
-
-    va_start(ap, format);
-    rc = _vsnprintf(myprtfstr, sizeof(myprtfstr)-1, format, ap);
-    va_end(ap);
-
-    SendDlgItemMessage(hDialog, GSS_OUTPUT, EM_REPLACESEL, FALSE, (LPARAM) myprtfstr);
-    return rc;
-}
diff --git a/src/windows/gss/gss.def b/src/windows/gss/gss.def
deleted file mode 100644 (file)
index f498066..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-;
-; Gss - tests the GSSAPI dll
-;
-
-NAME           GSS
-DESCRIPTION    'Tests the gssapi dll'
-
-EXETYPE                windows
-STUB           'winstub.exe'
-CODE           preload moveable
-DATA           preload moveable multiple
-HEAPSIZE       1024
-STACKSIZE      4096
-
-EXPORTS                OpenGssapiDlg
diff --git a/src/windows/gss/gss.h b/src/windows/gss/gss.h
deleted file mode 100644 (file)
index ca00a1a..0000000
+++ /dev/null
@@ -1,43 +0,0 @@
-/*+*************************************************************************
-**
-** gss.h
-**
-**
-***************************************************************************/
-#include <windows.h>
-#include "winsock.h"
-#include <string.h>
-
-#include <gssapi/gssapi.h>
-#include <gssapi/gssapi_generic.h>
-
-// gss.c
-INT_PTR CALLBACK OpenGssapiDlg(        HWND hDlg,      UINT message,   WPARAM wParam,  LPARAM lParam);
-
-// gss-misc.c
-int send_token(int s, int flags, gss_buffer_t tok);
-int recv_token(int s, int *flags, gss_buffer_t tok);
-void free_token(gss_buffer_t tok);
-void display_status(char *msg, OM_uint32 maj_stat, OM_uint32 min_stat);
-static void display_status_1(char *m, OM_uint32 code, int type);
-void OkMsgBox (char *format, ...);
-void my_perror (char *msg);
-
-// gss-client.c
-int
-gss (char *server_host, char *service_name, char *mechanism, char *msg, int port,
-     int verbose, int delegate, int mutual, int replay, int sequence,
-     int v1_format, int auth_flag, int wrap_flag,
-     int encrypt_flag, int mic_flag, int ccount, int mcount, char * ccache);
-int call_server(char *host, u_short port, gss_OID oid, char *service_name,
-                OM_uint32 deleg_flag, int auth_flag,
-                       int wrap_flag, int encrypt_flag, int mic_flag, int v1_format,
-                char *msg, int use_file, int mcount);
-int connect_to_server(char *host, u_short port);
-int client_establish_context(int s, char *service_name, OM_uint32 deleg_flag,
-                             int auth_flag, int v1_format, gss_OID oid,
-                             gss_ctx_id_t *gss_context, OM_uint32 *ret_flags);
-
-
-extern int verbose;
-#define printf  gss_printf
diff --git a/src/windows/gss/gss.ico b/src/windows/gss/gss.ico
deleted file mode 100644 (file)
index 17e4b94..0000000
Binary files a/src/windows/gss/gss.ico and /dev/null differ
diff --git a/src/windows/gss/gss.rc b/src/windows/gss/gss.rc
deleted file mode 100644 (file)
index 46cf642..0000000
+++ /dev/null
@@ -1,148 +0,0 @@
-// Microsoft Visual C++ generated resource script.
-//
-
-#define APSTUDIO_READONLY_SYMBOLS
-/////////////////////////////////////////////////////////////////////////////
-//
-// Generated from the TEXTINCLUDE 2 resource.
-//
-#define APSTUDIO_HIDDEN_SYMBOLS
-#include "windows.h"
-#undef APSTUDIO_HIDDEN_SYMBOLS
-#include "resource.h"
-
-/////////////////////////////////////////////////////////////////////////////
-#undef APSTUDIO_READONLY_SYMBOLS
-
-/////////////////////////////////////////////////////////////////////////////
-// English (U.S.) resources
-
-#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU)
-#ifdef _WIN32
-LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
-#pragma code_page(1252)
-#endif //_WIN32
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Icon
-//
-
-// Icon with lowest ID value placed first to ensure application icon
-// remains consistent on all systems.
-GSS                     ICON                    "gss.ico"
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Dialog
-//
-
-GSSAPIDLG DIALOGEX 63, 65, 330, 311
-STYLE DS_SETFONT | DS_MODALFRAME | DS_3DLOOK | WS_POPUP | WS_CAPTION | 
-    WS_SYSMENU
-CAPTION "Test GSSAPI Connection"
-FONT 8, "MS Sans Serif", 0, 0, 0x0
-BEGIN
-    RTEXT           "Hostname:",IDC_STATIC_HOST,5,12,60,10,NOT WS_GROUP
-    COMBOBOX        GSS_HOST_NAME,70,9,245,60,CBS_DROPDOWN | CBS_AUTOHSCROLL | 
-                    WS_VSCROLL | WS_GROUP | WS_TABSTOP
-    DEFPUSHBUTTON   "Test",GSS_OK,80,290,51,14,WS_GROUP
-    PUSHBUTTON      "Exit",GSS_CANCEL,185,290,51,14
-    RTEXT           "Port:",IDC_STATIC_PORT,16,27,50,8
-    EDITTEXT        GSS_PORT,70,25,40,14,ES_RIGHT | ES_AUTOHSCROLL | 
-                    ES_NUMBER
-    COMBOBOX        GSS_SERVICE_NAME,70,41,245,60,CBS_DROPDOWN | CBS_SORT | 
-                    WS_VSCROLL | WS_TABSTOP
-    RTEXT           "GSS Service Name:",IDC_STATIC_SERVICE,1,44,64,8
-    COMBOBOX        GSS_CCACHE_NAME,70,69,245,60,CBS_DROPDOWN | CBS_SORT | 
-                    WS_VSCROLL | WS_TABSTOP
-    RTEXT           "CCache Name:",IDC_STATIC_CCACHE,16,71,49,8
-    COMBOBOX        GSS_MECHANISM,70,110,245,60,CBS_DROPDOWN | 
-                    CBS_AUTOHSCROLL | CBS_SORT | WS_VSCROLL | WS_TABSTOP
-    RTEXT           "Mechanism (OID):",IDC_STATIC_MECH,0,115,65,8
-    RTEXT           "Test Message:",IDC_STATIC_MSG,0,55,65,8
-    COMBOBOX        GSS_MESSAGE,70,55,245,60,CBS_DROPDOWN | CBS_AUTOHSCROLL | 
-                    CBS_SORT | WS_VSCROLL | WS_TABSTOP
-    LTEXT           "The following items are optional and should only be altered by those who understand their implications.",
-                    IDC_STATIC_OPTIONS,10,85,305,20
-    CONTROL         "Verbose Output",GSS_VERBOSE,"Button",BS_AUTOCHECKBOX | 
-                    WS_TABSTOP,72,138,65,10
-    CONTROL         "Delegation",GSS_DELEGATION,"Button",BS_AUTOCHECKBOX | 
-                    WS_TABSTOP,72,150,50,10
-    CONTROL         "Version 1",GSS_VERSION_ONE,"Button",BS_AUTOCHECKBOX | 
-                    WS_TABSTOP,150,138,45,10
-    CONTROL         "No Auth",GSS_NO_AUTH,"Button",BS_AUTOCHECKBOX | 
-                    WS_TABSTOP,72,162,42,10
-    CONTROL         "No Wrap",GSS_NO_WRAP,"Button",BS_AUTOCHECKBOX | 
-                    WS_TABSTOP,132,162,45,10
-    CONTROL         "No Encrypt",GSS_NO_ENCRYPT,"Button",BS_AUTOCHECKBOX | 
-                    WS_TABSTOP,198,162,51,10
-    CONTROL         "No Mic",GSS_NO_MIC,"Button",BS_AUTOCHECKBOX | 
-                    WS_TABSTOP,270,162,39,10
-    CONTROL         "Slider1",GSS_CALL_COUNT,"msctls_trackbar32",TBS_BOTH | 
-                    WS_TABSTOP,66,174,100,15
-    CONTROL         "Slider2",GSS_MESSAGE_COUNT,"msctls_trackbar32",TBS_BOTH | 
-                    WS_TABSTOP,204,174,100,15
-    CTEXT           "Call Count",IDC_STATIC_CCOUNT,72,192,90,8
-    CTEXT           "Message Count",IDC_STATIC_MSG_COUNT,210,192,90,8
-    GROUPBOX        "Output",IDC_GROUP_OUTPUT,0,210,325,75
-    GROUPBOX        "Configuration Options",IDC_GROUP_OPTIONS,0,0,325,205
-    EDITTEXT        GSS_OUTPUT,0,220,320,60,ES_MULTILINE | ES_AUTOVSCROLL | 
-                    ES_AUTOHSCROLL | ES_READONLY | WS_VSCROLL | WS_HSCROLL
-    CONTROL         "Mutual",GSS_MUTUAL,"Button",BS_AUTOCHECKBOX | 
-                    WS_TABSTOP,132,150,37,10
-    CONTROL         "Replay",GSS_REPLAY,"Button",BS_AUTOCHECKBOX | 
-                    WS_TABSTOP,198,150,38,10
-    CONTROL         "Sequence",GSS_SEQUENCE,"Button",BS_AUTOCHECKBOX | 
-                    WS_TABSTOP,270,150,49,10
-END
-
-
-#ifdef APSTUDIO_INVOKED
-/////////////////////////////////////////////////////////////////////////////
-//
-// TEXTINCLUDE
-//
-
-1 TEXTINCLUDE 
-BEGIN
-    "resrc1.h\0"
-END
-
-2 TEXTINCLUDE 
-BEGIN
-    "#define APSTUDIO_HIDDEN_SYMBOLS\r\n"
-    "#include ""windows.h""\r\n"
-    "#undef APSTUDIO_HIDDEN_SYMBOLS\r\n"
-    "#include ""resource.h""\r\n"
-    "\0"
-END
-
-3 TEXTINCLUDE 
-BEGIN
-    "\r\n"
-    "\0"
-END
-
-#endif    // APSTUDIO_INVOKED
-
-#endif    // English (U.S.) resources
-/////////////////////////////////////////////////////////////////////////////
-
-
-
-#ifndef APSTUDIO_INVOKED
-/////////////////////////////////////////////////////////////////////////////
-//
-// Generated from the TEXTINCLUDE 3 resource.
-//
-
-
-/////////////////////////////////////////////////////////////////////////////
-#endif    // not APSTUDIO_INVOKED
-
-
-#include <winver.h>
-#include "..\version.rc"
-
-TestTrackerMOTD TEXT ver_serv.txt
diff --git a/src/windows/gss/resource.h b/src/windows/gss/resource.h
deleted file mode 100644 (file)
index c3428f0..0000000
+++ /dev/null
@@ -1,50 +0,0 @@
-//{{NO_DEPENDENCIES}}
-// Microsoft Developer Studio generated include file.
-// Used by gss.rc
-//
-#define GSS_HOST_NAME                   1000
-#define GSS_PORT                        1001
-#define GSS_SERVICE_NAME                1003
-#define IDC_STATIC_SERVICE              1004
-#define GSS_MECHANISM                   1005
-#define IDC_STATIC_MECH                 1006
-#define IDC_STATIC_MSG                  1007
-#define GSS_MESSAGE                     1008
-#define IDC_STATIC_OPTIONS              1009
-#define GSS_VERBOSE                     1010
-#define GSS_DELEGATION                  1011
-#define GSS_VERSION_ONE                 1012
-#define GSS_NO_AUTH                     1013
-#define GSS_NO_WRAP                     1014
-#define GSS_NO_ENCRYPT                  1015
-#define GSS_NO_MIC                      1016
-#define GSS_CALL_COUNT                  1017
-#define GSS_MESSAGE_COUNT               1018
-#define IDC_STATIC_CCOUNT               1019
-#define IDC_STATIC_MSG_COUNT            1020
-#define IDC_GROUP_OUTPUT                1021
-#define IDC_GROUP_OPTIONS               1022
-#define GSS_OUTPUT                      1023
-#define GSS_OK                          1024
-#define GSS_CANCEL                      1025
-#define IDC_STATIC_PORT                 1026
-#define IDC_STATIC_HOST                 1027
-#define GSS_CCACHE_NAME                 1028
-#define IDC_STATIC_CCACHE               1029
-#define GSS_MUTUAL                      1030
-#define GSS_REPLAY                      1031
-#define GSS_SEQUENCE                    1032
-
-#define IDD_GSSAPIDLG                   101
-
-// Next default values for new objects
-//
-#ifdef APSTUDIO_INVOKED
-#ifndef APSTUDIO_READONLY_SYMBOLS
-#define _APS_NO_MFC                     1
-#define _APS_NEXT_RESOURCE_VALUE        102
-#define _APS_NEXT_COMMAND_VALUE         40001
-#define _APS_NEXT_CONTROL_VALUE         1033
-#define _APS_NEXT_SYMED_VALUE           101
-#endif
-#endif
diff --git a/src/windows/gss/ver_serv.txt b/src/windows/gss/ver_serv.txt
deleted file mode 100644 (file)
index c7dcf80..0000000
+++ /dev/null
@@ -1,11 +0,0 @@
-
-The user provided information, along with version information about this application and the machine configuration, will be logged each time the application is launched. Recording this information will provide usage information to IS staff. This information will help us to focus our resources and serve you better in the future. This information will be treated as confidential and will only be accessible by IS staff members.
-
-If you would rather remain anonymous during this testing phase then use the "Register Anonymously" check box.
-
-To see more information about configuring the version checking part of this application please consult the local help file.
-
-We welcome comments on suggestions about this test-tracking system; please send them to testtrack@mit.edu.
-
-               Paul B. Hill
-               MIT Information Systems