Blame src/tests/gssapi/t_ccselect.c

Packit fd8b60
/* -*- mode: c; c-basic-offset: 4; indent-tabs-mode: nil -*- */
Packit fd8b60
/* tests/gssapi/t_ccselect.c - Test program for GSSAPI cred selection */
Packit fd8b60
/*
Packit fd8b60
 * Copyright 2011 by the Massachusetts Institute of Technology.
Packit fd8b60
 * All Rights Reserved.
Packit fd8b60
 *
Packit fd8b60
 * Export of this software from the United States of America may
Packit fd8b60
 *   require a specific license from the United States Government.
Packit fd8b60
 *   It is the responsibility of any person or organization contemplating
Packit fd8b60
 *   export to obtain such a license before exporting.
Packit fd8b60
 *
Packit fd8b60
 * WITHIN THAT CONSTRAINT, permission to use, copy, modify, and
Packit fd8b60
 * distribute this software and its documentation for any purpose and
Packit fd8b60
 * without fee is hereby granted, provided that the above copyright
Packit fd8b60
 * notice appear in all copies and that both that copyright notice and
Packit fd8b60
 * this permission notice appear in supporting documentation, and that
Packit fd8b60
 * the name of M.I.T. not be used in advertising or publicity pertaining
Packit fd8b60
 * to distribution of the software without specific, written prior
Packit fd8b60
 * permission.  Furthermore if you modify this software you must label
Packit fd8b60
 * your software as modified software and not distribute it in such a
Packit fd8b60
 * fashion that it might be confused with the original M.I.T. software.
Packit fd8b60
 * M.I.T. makes no representations about the suitability of
Packit fd8b60
 * this software for any purpose.  It is provided "as is" without express
Packit fd8b60
 * or implied warranty.
Packit fd8b60
 */
Packit fd8b60
Packit fd8b60
#include <stdio.h>
Packit fd8b60
#include <stdlib.h>
Packit fd8b60
#include <string.h>
Packit fd8b60
Packit fd8b60
#include "common.h"
Packit fd8b60
Packit fd8b60
/*
Packit fd8b60
 * Test program for client credential selection, intended to be run from a
Packit fd8b60
 * Python test script.  Establishes contexts with an optionally specified
Packit fd8b60
 * initiator name, a specified target name, and the default acceptor cred.  If
Packit fd8b60
 * the exchange is successful, prints the initiator name as seen by the
Packit fd8b60
 * acceptor.  If any call is unsuccessful, displays an error message.  Exits
Packit fd8b60
 * with status 0 if all operations are successful, or 1 if not.
Packit fd8b60
 *
Packit fd8b60
 * Usage: ./t_ccselect targetname [initiatorname|-]
Packit fd8b60
 */
Packit fd8b60
Packit fd8b60
int
Packit fd8b60
main(int argc, char *argv[])
Packit fd8b60
{
Packit fd8b60
    OM_uint32 minor, major, flags;
Packit fd8b60
    gss_cred_id_t initiator_cred = GSS_C_NO_CREDENTIAL;
Packit fd8b60
    gss_name_t target_name, initiator_name = GSS_C_NO_NAME;
Packit fd8b60
    gss_name_t real_initiator_name;
Packit fd8b60
    gss_buffer_desc namebuf;
Packit fd8b60
    gss_ctx_id_t initiator_context, acceptor_context;
Packit fd8b60
Packit fd8b60
    if (argc < 2 || argc > 3) {
Packit fd8b60
        fprintf(stderr, "Usage: %s targetname [initiatorname|-]\n", argv[0]);
Packit fd8b60
        return 1;
Packit fd8b60
    }
Packit fd8b60
Packit fd8b60
    target_name = import_name(argv[1]);
Packit fd8b60
Packit fd8b60
    if (argc >= 3) {
Packit fd8b60
        /* Get initiator cred. */
Packit fd8b60
        if (strcmp(argv[2], "-") != 0)
Packit fd8b60
            initiator_name = import_name(argv[2]);
Packit fd8b60
        major = gss_acquire_cred(&minor, initiator_name, GSS_C_INDEFINITE,
Packit fd8b60
                                 GSS_C_NO_OID_SET, GSS_C_INITIATE,
Packit fd8b60
                                 &initiator_cred, NULL, NULL);
Packit fd8b60
        check_gsserr("gss_acquire_cred", major, minor);
Packit fd8b60
    }
Packit fd8b60
Packit fd8b60
    flags = GSS_C_REPLAY_FLAG | GSS_C_SEQUENCE_FLAG;
Packit fd8b60
    establish_contexts(&mech_krb5, initiator_cred, GSS_C_NO_CREDENTIAL,
Packit fd8b60
                       target_name, flags, &initiator_context,
Packit fd8b60
                       &acceptor_context, &real_initiator_name, NULL, NULL);
Packit fd8b60
Packit fd8b60
    namebuf.value = NULL;
Packit fd8b60
    namebuf.length = 0;
Packit fd8b60
    major = gss_display_name(&minor, real_initiator_name, &namebuf, NULL);
Packit fd8b60
    check_gsserr("gss_display_name(initiator)", major, minor);
Packit fd8b60
    printf("%.*s\n", (int)namebuf.length, (char *)namebuf.value);
Packit fd8b60
Packit fd8b60
    (void)gss_release_name(&minor, &target_name);
Packit fd8b60
    (void)gss_release_name(&minor, &initiator_name);
Packit fd8b60
    (void)gss_release_name(&minor, &real_initiator_name);
Packit fd8b60
    (void)gss_release_cred(&minor, &initiator_cred);
Packit fd8b60
    (void)gss_delete_sec_context(&minor, &initiator_context, NULL);
Packit fd8b60
    (void)gss_delete_sec_context(&minor, &acceptor_context, NULL);
Packit fd8b60
    (void)gss_release_buffer(&minor, &namebuf);
Packit fd8b60
    return 0;
Packit fd8b60
}