Add mech name OID, gss_display_name implementation
[mech_eap.git] / util_name.c
1 /*
2  * Copyright (c) 2010, JANET(UK)
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  *
9  * 1. Redistributions of source code must retain the above copyright
10  *    notice, this list of conditions and the following disclaimer.
11  *
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  *
16  * 3. Neither the name of JANET(UK) nor the names of its contributors
17  *    may be used to endorse or promote products derived from this software
18  *    without specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
21  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
24  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30  * SUCH DAMAGE.
31  */
32
33 #include "gssapiP_eap.h"
34
35 static const gss_OID_desc gssEapNtPrincipalName = {
36     /* 1.3.6.1.4.1.5322.21.2.1  */
37     12, "\x06\x0A\x2B\x06\x01\x04\x01\xA9\x4A\x15\x02\x01"
38 };
39
40 const gss_OID_desc *const GSS_EAP_NT_PRINCIPAL_NAME =
41     &gssEapNtPrincipalName;
42
43 OM_uint32
44 gssEapAllocName(OM_uint32 *minor, gss_name_t *pName)
45 {
46     OM_uint32 tmpMinor;
47     gss_name_t name;
48
49     assert(*pName == GSS_C_NO_NAME);
50
51     name = (gss_name_t)GSSEAP_CALLOC(1, sizeof(*name));
52     if (name == NULL) {
53         *minor = ENOMEM;
54         return GSS_S_FAILURE;
55     }
56
57     if (GSSEAP_MUTEX_INIT(&name->mutex) != 0) {
58         *minor = errno;
59         gssEapReleaseName(&tmpMinor, &name);
60         return GSS_S_FAILURE;
61     }
62
63     *pName = name;
64
65     return GSS_S_COMPLETE;
66 }
67
68 OM_uint32
69 gssEapReleaseName(OM_uint32 *minor, gss_name_t *pName)
70 {
71     gss_name_t name;
72     krb5_context kerbCtx = NULL;
73
74     if (pName == NULL) {
75         return GSS_S_COMPLETE;
76     }
77
78     name = *pName;
79     if (name == GSS_C_NO_NAME) {
80         return GSS_S_COMPLETE;
81     }
82
83     krb5_init_context(&kerbCtx);
84     krb5_free_principal(kerbCtx, name->krbPrincipal);
85     if (kerbCtx != NULL) {
86         krb5_free_context(kerbCtx);
87     }
88
89     GSSEAP_MUTEX_DESTROY(&name->mutex);
90     GSSEAP_FREE(name);
91     *pName = NULL;
92
93     *minor = 0;
94     return GSS_S_COMPLETE;
95 }
96