1 /* $NetBSD: creds.c,v 1.2 2014/05/12 15:27:36 christos Exp $ */
4 * Copyright (c) 2006 Kungliga Tekniska Högskolan
5 * (Royal Institute of Technology, Stockholm, Sweden).
8 * Portions Copyright (c) 2009 Apple Inc. All rights reserved.
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
14 * 1. Redistributions of source code must retain the above copyright
15 * notice, this list of conditions and the following disclaimer.
17 * 2. Redistributions in binary form must reproduce the above copyright
18 * notice, this list of conditions and the following disclaimer in the
19 * documentation and/or other materials provided with the distribution.
21 * 3. Neither the name of the Institute nor the names of its contributors
22 * may be used to endorse or promote products derived from this software
23 * without specific prior written permission.
25 * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
26 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
27 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
28 * ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
29 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
30 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
31 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
32 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
33 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
34 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
40 OM_uint32 GSSAPI_CALLCONV
41 _gss_ntlm_inquire_cred
42 (OM_uint32
* minor_status
,
43 const gss_cred_id_t cred_handle
,
46 gss_cred_usage_t
* cred_usage
,
47 gss_OID_set
* mechanisms
54 if (cred_handle
== NULL
)
58 ntlm_name n
= calloc(1, sizeof(*n
));
59 ntlm_cred c
= (ntlm_cred
)cred_handle
;
61 n
->user
= strdup(c
->username
);
62 n
->domain
= strdup(c
->domain
);
64 if (n
== NULL
|| n
->user
== NULL
|| n
->domain
== NULL
) {
70 *minor_status
= ENOMEM
;
73 *name
= (gss_name_t
)n
;
76 *lifetime
= GSS_C_INDEFINITE
;
80 *mechanisms
= GSS_C_NO_OID_SET
;
82 if (cred_handle
== GSS_C_NO_CREDENTIAL
)
86 ret
= gss_create_empty_oid_set(minor_status
, mechanisms
);
89 ret
= gss_add_oid_set_member(minor_status
,
96 return GSS_S_COMPLETE
;
98 gss_release_oid_set(&junk
, mechanisms
);
104 _gss_ntlm_destroy_kcm_cred(gss_cred_id_t
*cred_handle
)
106 krb5_storage
*request
, *response
;
107 krb5_data response_data
;
108 krb5_context context
;
112 cred
= (ntlm_cred
)*cred_handle
;
114 ret
= krb5_init_context(&context
);
118 ret
= krb5_kcm_storage_request(context
, KCM_OP_DEL_NTLM_CRED
, &request
);
122 ret
= krb5_store_stringz(request
, cred
->username
);
126 ret
= krb5_store_stringz(request
, cred
->domain
);
130 ret
= krb5_kcm_call(context
, request
, &response
, &response_data
);
134 krb5_storage_free(request
);
135 krb5_storage_free(response
);
136 krb5_data_free(&response_data
);
139 krb5_free_context(context
);
143 #endif /* HAVE_KCM */
145 OM_uint32 GSSAPI_CALLCONV
146 _gss_ntlm_destroy_cred(OM_uint32
*minor_status
,
147 gss_cred_id_t
*cred_handle
)
153 if (cred_handle
== NULL
|| *cred_handle
== GSS_C_NO_CREDENTIAL
)
154 return GSS_S_COMPLETE
;
157 ret
= _gss_ntlm_destroy_kcm_cred(cred_handle
);
160 return GSS_S_FAILURE
;
164 return _gss_ntlm_release_cred(minor_status
, cred_handle
);