2 * Copyright (c) 2001-2002 Kungliga Tekniska Högskolan
3 * (Royal Institute of Technology, Stockholm, Sweden).
6 * Redistribution and use in source and binary forms, with or without
7 * 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.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
17 * 3. Neither the name of the Institute nor the names of its contributors
18 * may be used to endorse or promote products derived from this software
19 * without specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 #include "krb5_locl.h"
36 __RCSID("$Heimdal: keytab_any.c 17035 2006-04-10 09:20:13Z lha $"
42 struct any_data
*next
;
46 free_list (krb5_context context
, struct any_data
*a
)
48 struct any_data
*next
;
50 for (; a
!= NULL
; a
= next
) {
54 krb5_kt_close(context
, a
->kt
);
59 static krb5_error_code
60 any_resolve(krb5_context context
, const char *name
, krb5_keytab id
)
62 struct any_data
*a
, *a0
= NULL
, *prev
= NULL
;
66 while (strsep_copy(&name
, ",", buf
, sizeof(buf
)) != -1) {
67 a
= malloc(sizeof(*a
));
74 a
->name
= strdup(buf
);
75 if (a
->name
== NULL
) {
76 krb5_set_error_string(context
, "malloc: out of memory");
85 ret
= krb5_kt_resolve (context
, buf
, &a
->kt
);
91 krb5_set_error_string(context
, "empty ANY: keytab");
97 free_list (context
, a0
);
101 static krb5_error_code
102 any_get_name (krb5_context context
,
107 struct any_data
*a
= id
->data
;
108 strlcpy(name
, a
->name
, namesize
);
112 static krb5_error_code
113 any_close (krb5_context context
,
116 struct any_data
*a
= id
->data
;
118 free_list (context
, a
);
122 struct any_cursor_extra_data
{
124 krb5_kt_cursor cursor
;
127 static krb5_error_code
128 any_start_seq_get(krb5_context context
,
132 struct any_data
*a
= id
->data
;
133 struct any_cursor_extra_data
*ed
;
136 c
->data
= malloc (sizeof(struct any_cursor_extra_data
));
138 krb5_set_error_string (context
, "malloc: out of memory");
141 ed
= (struct any_cursor_extra_data
*)c
->data
;
143 ret
= krb5_kt_start_seq_get(context
, ed
->a
->kt
, &ed
->cursor
);
152 static krb5_error_code
153 any_next_entry (krb5_context context
,
155 krb5_keytab_entry
*entry
,
156 krb5_kt_cursor
*cursor
)
158 krb5_error_code ret
, ret2
;
159 struct any_cursor_extra_data
*ed
;
161 ed
= (struct any_cursor_extra_data
*)cursor
->data
;
163 ret
= krb5_kt_next_entry(context
, ed
->a
->kt
, entry
, &ed
->cursor
);
166 else if (ret
!= KRB5_KT_END
)
169 ret2
= krb5_kt_end_seq_get (context
, ed
->a
->kt
, &ed
->cursor
);
172 while ((ed
->a
= ed
->a
->next
) != NULL
) {
173 ret2
= krb5_kt_start_seq_get(context
, ed
->a
->kt
, &ed
->cursor
);
178 krb5_clear_error_string (context
);
184 static krb5_error_code
185 any_end_seq_get(krb5_context context
,
187 krb5_kt_cursor
*cursor
)
189 krb5_error_code ret
= 0;
190 struct any_cursor_extra_data
*ed
;
192 ed
= (struct any_cursor_extra_data
*)cursor
->data
;
194 ret
= krb5_kt_end_seq_get(context
, ed
->a
->kt
, &ed
->cursor
);
200 static krb5_error_code
201 any_add_entry(krb5_context context
,
203 krb5_keytab_entry
*entry
)
205 struct any_data
*a
= id
->data
;
208 ret
= krb5_kt_add_entry(context
, a
->kt
, entry
);
209 if(ret
!= 0 && ret
!= KRB5_KT_NOWRITE
) {
210 krb5_set_error_string(context
, "failed to add entry to %s",
219 static krb5_error_code
220 any_remove_entry(krb5_context context
,
222 krb5_keytab_entry
*entry
)
224 struct any_data
*a
= id
->data
;
228 ret
= krb5_kt_remove_entry(context
, a
->kt
, entry
);
232 if(ret
!= KRB5_KT_NOWRITE
&& ret
!= KRB5_KT_NOTFOUND
) {
233 krb5_set_error_string(context
, "failed to remove entry from %s",
241 return KRB5_KT_NOTFOUND
;
245 const krb5_kt_ops krb5_any_ops
= {