2 * Copyright (c) 2005, PADL Software Pty Ltd.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
9 * 1. Redistributions of source code must retain the above copyright
10 * 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 * 3. Neither the name of PADL Software 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.
20 * THIS SOFTWARE IS PROVIDED BY PADL SOFTWARE AND CONTRIBUTORS ``AS IS'' AND
21 * 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 PADL SOFTWARE 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
38 * Server-side loopback glue for credentials cache operations; this
39 * must be initialized with kcm_internal_ccache(), it is not for real
40 * use. This entire file assumes the cache is locked, it does not do
41 * any concurrency checking for multithread applications.
44 #define KCMCACHE(X) ((kcm_ccache)(X)->data.data)
45 #define CACHENAME(X) (KCMCACHE(X)->name)
48 kcmss_get_name(krb5_context context
,
54 static krb5_error_code
55 kcmss_resolve(krb5_context context
, krb5_ccache
*id
, const char *res
)
57 return KRB5_FCC_INTERNAL
;
60 static krb5_error_code
61 kcmss_gen_new(krb5_context context
, krb5_ccache
*id
)
63 return KRB5_FCC_INTERNAL
;
66 static krb5_error_code
67 kcmss_initialize(krb5_context context
,
69 krb5_principal primary_principal
)
72 kcm_ccache c
= KCMCACHE(id
);
76 ret
= kcm_zero_ccache_data_internal(context
, c
);
80 ret
= krb5_copy_principal(context
, primary_principal
,
86 static krb5_error_code
87 kcmss_close(krb5_context context
,
90 kcm_ccache c
= KCMCACHE(id
);
100 static krb5_error_code
101 kcmss_destroy(krb5_context context
,
105 kcm_ccache c
= KCMCACHE(id
);
109 ret
= kcm_ccache_destroy(context
, CACHENAME(id
));
114 static krb5_error_code
115 kcmss_store_cred(krb5_context context
,
120 kcm_ccache c
= KCMCACHE(id
);
125 ret
= kcm_ccache_store_cred_internal(context
, c
, creds
, 1, &tmp
);
130 static krb5_error_code
131 kcmss_retrieve(krb5_context context
,
134 const krb5_creds
*mcred
,
138 kcm_ccache c
= KCMCACHE(id
);
143 ret
= kcm_ccache_retrieve_cred_internal(context
, c
, which
,
148 ret
= krb5_copy_creds_contents(context
, credp
, creds
);
155 static krb5_error_code
156 kcmss_get_principal(krb5_context context
,
158 krb5_principal
*principal
)
161 kcm_ccache c
= KCMCACHE(id
);
165 ret
= krb5_copy_principal(context
, c
->client
,
171 static krb5_error_code
172 kcmss_get_first (krb5_context context
,
174 krb5_cc_cursor
*cursor
)
176 kcm_ccache c
= KCMCACHE(id
);
182 return (*cursor
== NULL
) ? KRB5_CC_END
: 0;
185 static krb5_error_code
186 kcmss_get_next (krb5_context context
,
188 krb5_cc_cursor
*cursor
,
192 kcm_ccache c
= KCMCACHE(id
);
196 ret
= krb5_copy_creds_contents(context
,
197 &((struct kcm_creds
*)cursor
)->cred
,
202 *cursor
= ((struct kcm_creds
*)cursor
)->next
;
209 static krb5_error_code
210 kcmss_end_get (krb5_context context
,
212 krb5_cc_cursor
*cursor
)
218 static krb5_error_code
219 kcmss_remove_cred(krb5_context context
,
225 kcm_ccache c
= KCMCACHE(id
);
229 ret
= kcm_ccache_remove_cred_internal(context
, c
, which
, cred
);
234 static krb5_error_code
235 kcmss_set_flags(krb5_context context
,
242 static krb5_error_code
243 kcmss_get_version(krb5_context context
,
249 static const krb5_cc_ops krb5_kcmss_ops
= {
270 kcm_internal_ccache(krb5_context context
,
274 id
->ops
= &krb5_kcmss_ops
;
275 id
->data
.length
= sizeof(*c
);