1/*-
2 * Copyright (c) 2005 Doug Rabson
3 * All rights reserved.
4 *
5 * Portions Copyright (c) 2009 Apple Inc. All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 *    notice, this list of conditions and the following disclaimer.
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 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
17 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19 * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
20 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 * SUCH DAMAGE.
27 *
28 *	$FreeBSD: src/lib/libgssapi/gss_acquire_cred.c,v 1.1 2005/12/29 14:40:20 dfr Exp $
29 */
30
31#include "mech_locl.h"
32
33GSSAPI_LIB_FUNCTION OM_uint32 GSSAPI_LIB_CALL
34gss_acquire_cred(OM_uint32 *minor_status,
35    const gss_name_t desired_name,
36    OM_uint32 time_req,
37    const gss_OID_set desired_mechs,
38    gss_cred_usage_t cred_usage,
39    gss_cred_id_t *output_cred_handle,
40    gss_OID_set *actual_mechs,
41    OM_uint32 *time_rec)
42{
43	OM_uint32 major_status, junk;
44	gss_OID_set mechs = desired_mechs;
45	gss_OID_set_desc set;
46	struct _gss_name *name = (struct _gss_name *) desired_name;
47	gssapi_mech_interface m;
48	struct _gss_cred *cred;
49	struct _gss_mechanism_cred *mc;
50	OM_uint32 min_time, cred_time;
51	size_t i;
52
53	*minor_status = 0;
54	if (output_cred_handle == NULL)
55	    return GSS_S_CALL_INACCESSIBLE_READ;
56	if (actual_mechs)
57	    *actual_mechs = GSS_C_NO_OID_SET;
58	if (time_rec)
59	    *time_rec = 0;
60
61	_gss_load_mech();
62
63	/*
64	 * First make sure that at least one of the requested
65	 * mechanisms is one that we support.
66	 */
67	if (mechs) {
68		for (i = 0; i < mechs->count; i++) {
69			int t;
70			gss_test_oid_set_member(minor_status,
71			    &mechs->elements[i], _gss_mech_oids, &t);
72			if (t)
73				break;
74		}
75		if (i == mechs->count) {
76			*minor_status = 0;
77			return (GSS_S_BAD_MECH);
78		}
79	}
80
81	if (actual_mechs) {
82		major_status = gss_create_empty_oid_set(minor_status,
83		    actual_mechs);
84		if (major_status)
85			return (major_status);
86	}
87
88	cred = _gss_mg_alloc_cred();
89	if (!cred) {
90		if (actual_mechs)
91			gss_release_oid_set(minor_status, actual_mechs);
92		*minor_status = ENOMEM;
93		return (GSS_S_FAILURE);
94	}
95
96	if (mechs == GSS_C_NO_OID_SET)
97		mechs = _gss_mech_oids;
98
99	set.count = 1;
100	min_time = GSS_C_INDEFINITE;
101	for (i = 0; i < mechs->count; i++) {
102		struct _gss_mechanism_name *mn = NULL;
103
104		m = __gss_get_mechanism(&mechs->elements[i]);
105		if (m == NULL || (m->gm_flags & GM_USE_MG_CRED) != 0)
106			continue;
107
108		if (desired_name != GSS_C_NO_NAME) {
109			major_status = _gss_find_mn(minor_status, name,
110						    &mechs->elements[i], &mn);
111			if (major_status != GSS_S_COMPLETE)
112				continue;
113		}
114
115		mc = malloc(sizeof(struct _gss_mechanism_cred));
116		if (!mc) {
117			continue;
118		}
119		mc->gmc_mech = m;
120		mc->gmc_mech_oid = &m->gm_mech_oid;
121
122		/*
123		 * XXX Probably need to do something with actual_mechs.
124		 */
125		set.elements = &mechs->elements[i];
126		major_status = m->gm_acquire_cred(minor_status,
127		    (mn ? mn->gmn_name : GSS_C_NO_NAME),
128		    time_req, &set, cred_usage,
129		    &mc->gmc_cred, NULL, &cred_time);
130
131		_gss_mg_log_name(10, name, &mechs->elements[i],
132				 "gss_acquire_cred %s name: %ld/%ld",
133				 m->gm_name,
134				 (long)major_status, (long)*minor_status);
135
136		if (major_status) {
137			free(mc);
138			continue;
139		}
140		if (cred_time < min_time)
141			min_time = cred_time;
142
143		if (actual_mechs) {
144			major_status = gss_add_oid_set_member(minor_status,
145			    mc->gmc_mech_oid, actual_mechs);
146			if (major_status) {
147				m->gm_release_cred(minor_status,
148				    &mc->gmc_cred);
149				free(mc);
150				continue;
151			}
152		}
153
154		HEIM_SLIST_INSERT_HEAD(&cred->gc_mc, mc, gmc_link);
155	}
156
157	/*
158	 * If we didn't manage to create a single credential, return
159	 * an error.
160	 */
161	if (!HEIM_SLIST_FIRST(&cred->gc_mc)) {
162		*output_cred_handle = (gss_cred_id_t)cred;
163		gss_release_cred(&junk, output_cred_handle);
164		if (actual_mechs)
165			gss_release_oid_set(&junk, actual_mechs);
166		*minor_status = 0;
167		return (GSS_S_NO_CRED);
168	}
169
170	_gss_mg_log_cred(10, cred, "gss_acquire_cred");
171
172	if (time_rec)
173		*time_rec = min_time;
174	*output_cred_handle = (gss_cred_id_t) cred;
175	*minor_status = 0;
176	return (GSS_S_COMPLETE);
177}
178