Blame src/lib/gssapi/mechglue/g_inq_name.c

Packit fd8b60
/* -*- mode: c; indent-tabs-mode: nil -*- */
Packit fd8b60
/*
Packit fd8b60
 * Copyright 2009 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
/* Glue routine for gss_inquire_name */
Packit fd8b60
Packit fd8b60
#include "mglueP.h"
Packit fd8b60
Packit fd8b60
OM_uint32 KRB5_CALLCONV
Packit fd8b60
gss_inquire_name(OM_uint32 *minor_status,
Packit fd8b60
                 gss_name_t name,
Packit fd8b60
                 int *name_is_MN,
Packit fd8b60
                 gss_OID *MN_mech,
Packit fd8b60
                 gss_buffer_set_t *attrs)
Packit fd8b60
{
Packit fd8b60
    OM_uint32           status, tmp;
Packit fd8b60
    gss_union_name_t    union_name;
Packit fd8b60
    gss_mechanism       mech;
Packit fd8b60
Packit fd8b60
    if (minor_status != NULL)
Packit fd8b60
        *minor_status = 0;
Packit fd8b60
Packit fd8b60
    if (MN_mech != NULL)
Packit fd8b60
        *MN_mech = GSS_C_NO_OID;
Packit fd8b60
Packit fd8b60
    if (attrs != NULL)
Packit fd8b60
        *attrs = GSS_C_NO_BUFFER_SET;
Packit fd8b60
Packit fd8b60
    if (minor_status == NULL)
Packit fd8b60
        return GSS_S_CALL_INACCESSIBLE_WRITE;
Packit fd8b60
Packit fd8b60
    if (name == GSS_C_NO_NAME)
Packit fd8b60
        return GSS_S_CALL_INACCESSIBLE_READ | GSS_S_BAD_NAME;
Packit fd8b60
Packit fd8b60
    union_name = (gss_union_name_t)name;
Packit fd8b60
Packit fd8b60
    if (union_name->mech_type == GSS_C_NO_OID) {
Packit fd8b60
        /* We don't yet support non-mechanism attributes */
Packit fd8b60
        if (name_is_MN != NULL)
Packit fd8b60
            *name_is_MN = 0;
Packit fd8b60
        *minor_status = 0;
Packit fd8b60
        return GSS_S_COMPLETE;
Packit fd8b60
    }
Packit fd8b60
Packit fd8b60
    if (name_is_MN != NULL)
Packit fd8b60
        *name_is_MN = 1;
Packit fd8b60
Packit fd8b60
    if (MN_mech != NULL) {
Packit fd8b60
        status = generic_gss_copy_oid(minor_status,
Packit fd8b60
                                      union_name->mech_type,
Packit fd8b60
                                      MN_mech);
Packit fd8b60
        if (GSS_ERROR(status))
Packit fd8b60
            return status;
Packit fd8b60
    }
Packit fd8b60
Packit fd8b60
    mech = gssint_get_mechanism(name->mech_type);
Packit fd8b60
    if (mech == NULL) {
Packit fd8b60
        gss_release_oid(&tmp, MN_mech);
Packit fd8b60
        return GSS_S_BAD_NAME;
Packit fd8b60
    }
Packit fd8b60
Packit fd8b60
    if (mech->gss_inquire_name == NULL) {
Packit fd8b60
        gss_release_oid(&tmp, MN_mech);
Packit fd8b60
        return GSS_S_UNAVAILABLE;
Packit fd8b60
    }
Packit fd8b60
Packit fd8b60
    status = (*mech->gss_inquire_name)(minor_status,
Packit fd8b60
                                       union_name->mech_name,
Packit fd8b60
                                       NULL,
Packit fd8b60
                                       NULL,
Packit fd8b60
                                       attrs);
Packit fd8b60
    if (status != GSS_S_COMPLETE) {
Packit fd8b60
        generic_gss_release_oid(&tmp, MN_mech);
Packit fd8b60
        map_error(minor_status, mech);
Packit fd8b60
    }
Packit fd8b60
Packit fd8b60
    return status;
Packit fd8b60
}