1 /* $NetBSD: gss_acquire_cred.c,v 1.1.1.2 2014/04/24 12:45:29 pettai Exp $ */
4 * Copyright (c) 2005 Doug Rabson
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
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.
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
28 * $FreeBSD: src/lib/libgssapi/gss_acquire_cred.c,v 1.1 2005/12/29 14:40:20 dfr Exp $
31 #include "mech_locl.h"
33 GSSAPI_LIB_FUNCTION OM_uint32 GSSAPI_LIB_CALL
34 gss_acquire_cred(OM_uint32
*minor_status
,
35 const gss_name_t desired_name
,
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
,
43 OM_uint32 major_status
;
44 gss_OID_set mechs
= desired_mechs
;
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
;
54 if (output_cred_handle
== NULL
)
55 return GSS_S_CALL_INACCESSIBLE_READ
;
57 *actual_mechs
= GSS_C_NO_OID_SET
;
64 * First make sure that at least one of the requested
65 * mechanisms is one that we support.
68 for (i
= 0; i
< mechs
->count
; i
++) {
70 gss_test_oid_set_member(minor_status
,
71 &mechs
->elements
[i
], _gss_mech_oids
, &t
);
75 if (i
== mechs
->count
) {
77 return (GSS_S_BAD_MECH
);
82 major_status
= gss_create_empty_oid_set(minor_status
,
85 return (major_status
);
88 cred
= malloc(sizeof(struct _gss_cred
));
91 gss_release_oid_set(minor_status
, actual_mechs
);
92 *minor_status
= ENOMEM
;
93 return (GSS_S_FAILURE
);
95 HEIM_SLIST_INIT(&cred
->gc_mc
);
97 if (mechs
== GSS_C_NO_OID_SET
)
98 mechs
= _gss_mech_oids
;
101 min_time
= GSS_C_INDEFINITE
;
102 for (i
= 0; i
< mechs
->count
; i
++) {
103 struct _gss_mechanism_name
*mn
= NULL
;
105 m
= __gss_get_mechanism(&mechs
->elements
[i
]);
109 if (desired_name
!= GSS_C_NO_NAME
) {
110 major_status
= _gss_find_mn(minor_status
, name
,
111 &mechs
->elements
[i
], &mn
);
112 if (major_status
!= GSS_S_COMPLETE
)
116 mc
= malloc(sizeof(struct _gss_mechanism_cred
));
121 mc
->gmc_mech_oid
= &m
->gm_mech_oid
;
124 * XXX Probably need to do something with actual_mechs.
126 set
.elements
= &mechs
->elements
[i
];
127 major_status
= m
->gm_acquire_cred(minor_status
,
128 (desired_name
!= GSS_C_NO_NAME
129 ? mn
->gmn_name
: GSS_C_NO_NAME
),
130 time_req
, &set
, cred_usage
,
131 &mc
->gmc_cred
, NULL
, &cred_time
);
136 if (cred_time
< min_time
)
137 min_time
= cred_time
;
140 major_status
= gss_add_oid_set_member(minor_status
,
141 mc
->gmc_mech_oid
, actual_mechs
);
143 m
->gm_release_cred(minor_status
,
150 HEIM_SLIST_INSERT_HEAD(&cred
->gc_mc
, mc
, gmc_link
);
154 * If we didn't manage to create a single credential, return
157 if (!HEIM_SLIST_FIRST(&cred
->gc_mc
)) {
160 gss_release_oid_set(minor_status
, actual_mechs
);
162 return (GSS_S_NO_CRED
);
166 *time_rec
= min_time
;
167 *output_cred_handle
= (gss_cred_id_t
) cred
;
169 return (GSS_S_COMPLETE
);