2 * Copyright (c) 1997 - 2007 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 #ifndef HEIMDAL_SMALLER
38 /* afs keyfile operations --------------------------------------- */
41 * Minimum tools to handle the AFS KeyFile.
43 * Format of the KeyFile is:
44 * <int32_t numkeys> {[<int32_t kvno> <char[8] deskey>] * numkeys}
46 * It just adds to the end of the keyfile, deleting isn't implemented.
47 * Use your favorite text/hex editor to delete keys.
51 #define AFS_SERVERTHISCELL "/usr/afs/etc/ThisCell"
52 #define AFS_SERVERMAGICKRBCONF "/usr/afs/etc/krb.conf"
62 * set `d->cell' and `d->realm'
66 get_cell_and_realm (krb5_context context
, struct akf_data
*d
)
69 char buf
[BUFSIZ
], *cp
;
72 f
= fopen (AFS_SERVERTHISCELL
, "r");
75 krb5_set_error_message (context
, ret
,
76 N_("Open ThisCell %s: %s", ""),
81 if (fgets (buf
, sizeof(buf
), f
) == NULL
) {
83 krb5_set_error_message (context
, EINVAL
,
84 N_("No cell in ThisCell file %s", ""),
88 buf
[strcspn(buf
, "\n")] = '\0';
91 d
->cell
= strdup (buf
);
93 return krb5_enomem(context
);
95 f
= fopen (AFS_SERVERMAGICKRBCONF
, "r");
97 if (fgets (buf
, sizeof(buf
), f
) == NULL
) {
101 krb5_set_error_message (context
, EINVAL
,
102 N_("No realm in ThisCell file %s", ""),
103 AFS_SERVERMAGICKRBCONF
);
106 buf
[strcspn(buf
, "\n")] = '\0';
110 for (cp
= buf
; *cp
!= '\0'; cp
++)
111 *cp
= toupper((unsigned char)*cp
);
113 d
->realm
= strdup (buf
);
114 if (d
->realm
== NULL
) {
117 return krb5_enomem(context
);
123 * init and get filename
126 static krb5_error_code KRB5_CALLCONV
127 akf_resolve(krb5_context context
, const char *name
, krb5_keytab id
)
130 struct akf_data
*d
= malloc(sizeof (struct akf_data
));
133 return krb5_enomem(context
);
136 ret
= get_cell_and_realm (context
, d
);
141 d
->filename
= strdup (name
);
142 if (d
->filename
== NULL
) {
146 return krb5_enomem(context
);
157 static krb5_error_code KRB5_CALLCONV
158 akf_close(krb5_context context
, krb5_keytab id
)
160 struct akf_data
*d
= id
->data
;
172 static krb5_error_code KRB5_CALLCONV
173 akf_get_name(krb5_context context
,
178 struct akf_data
*d
= id
->data
;
180 strlcpy (name
, d
->filename
, name_sz
);
188 static krb5_error_code KRB5_CALLCONV
189 akf_start_seq_get(krb5_context context
,
194 struct akf_data
*d
= id
->data
;
196 c
->fd
= open (d
->filename
, O_RDONLY
| O_BINARY
| O_CLOEXEC
, 0600);
199 krb5_set_error_message(context
, ret
,
200 N_("keytab afs keyfile open %s failed: %s", ""),
201 d
->filename
, strerror(ret
));
206 c
->sp
= krb5_storage_from_fd(c
->fd
);
209 krb5_clear_error_message (context
);
210 return KRB5_KT_NOTFOUND
;
212 krb5_storage_set_eof_code(c
->sp
, KRB5_KT_END
);
214 ret
= krb5_ret_uint32(c
->sp
, &d
->num_entries
);
215 if(ret
|| d
->num_entries
> INT_MAX
/ 8) {
216 krb5_storage_free(c
->sp
);
218 krb5_clear_error_message (context
);
219 if(ret
== KRB5_KT_END
)
220 return KRB5_KT_NOTFOUND
;
227 static krb5_error_code KRB5_CALLCONV
228 akf_next_entry(krb5_context context
,
230 krb5_keytab_entry
*entry
,
231 krb5_kt_cursor
*cursor
)
233 struct akf_data
*d
= id
->data
;
238 pos
= krb5_storage_seek(cursor
->sp
, 0, SEEK_CUR
);
240 if ((pos
- 4) / (4 + 8) >= d
->num_entries
)
243 ret
= krb5_make_principal (context
, &entry
->principal
,
244 d
->realm
, "afs", d
->cell
, NULL
);
248 ret
= krb5_ret_int32(cursor
->sp
, &kvno
);
250 krb5_free_principal (context
, entry
->principal
);
257 entry
->keyblock
.keytype
= ETYPE_DES_CBC_MD5
;
259 entry
->keyblock
.keytype
= ETYPE_DES_CBC_CRC
;
260 entry
->keyblock
.keyvalue
.length
= 8;
261 entry
->keyblock
.keyvalue
.data
= malloc (8);
262 if (entry
->keyblock
.keyvalue
.data
== NULL
) {
263 krb5_free_principal (context
, entry
->principal
);
264 ret
= krb5_enomem(context
);
268 ret
= krb5_storage_read(cursor
->sp
, entry
->keyblock
.keyvalue
.data
, 8);
270 ret
= (ret
< 0) ? errno
: KRB5_KT_END
;
274 entry
->timestamp
= time(NULL
);
276 entry
->aliases
= NULL
;
280 krb5_storage_seek(cursor
->sp
, pos
+ 4 + 8, SEEK_SET
);
283 cursor
->data
= cursor
;
287 static krb5_error_code KRB5_CALLCONV
288 akf_end_seq_get(krb5_context context
,
290 krb5_kt_cursor
*cursor
)
292 krb5_storage_free(cursor
->sp
);
298 static krb5_error_code KRB5_CALLCONV
299 akf_add_entry(krb5_context context
,
301 krb5_keytab_entry
*entry
)
303 struct akf_data
*d
= id
->data
;
310 if (entry
->keyblock
.keyvalue
.length
!= 8)
312 switch(entry
->keyblock
.keytype
) {
313 case ETYPE_DES_CBC_CRC
:
314 case ETYPE_DES_CBC_MD4
:
315 case ETYPE_DES_CBC_MD5
:
321 fd
= open (d
->filename
, O_RDWR
| O_BINARY
| O_CLOEXEC
);
323 fd
= open (d
->filename
,
324 O_RDWR
| O_BINARY
| O_CREAT
| O_EXCL
| O_CLOEXEC
, 0600);
327 krb5_set_error_message(context
, ret
,
328 N_("open keyfile(%s): %s", ""),
336 sp
= krb5_storage_from_fd(fd
);
339 return krb5_enomem(context
);
344 if(krb5_storage_seek(sp
, 0, SEEK_SET
) < 0) {
346 krb5_storage_free(sp
);
348 krb5_set_error_message(context
, ret
,
349 N_("seeking in keyfile: %s", ""),
354 ret
= krb5_ret_int32(sp
, &len
);
356 krb5_storage_free(sp
);
363 * Make sure we don't add the entry twice, assumes the DES
364 * encryption types are all the same key.
370 for (i
= 0; i
< len
; i
++) {
371 ret
= krb5_ret_int32(sp
, &kvno
);
373 krb5_set_error_message (context
, ret
,
374 N_("Failed getting kvno from keyfile", ""));
377 if(krb5_storage_seek(sp
, 8, SEEK_CUR
) < 0) {
379 krb5_set_error_message (context
, ret
,
380 N_("Failed seeing in keyfile: %s", ""),
384 if (kvno
== entry
->vno
) {
393 if(krb5_storage_seek(sp
, 0, SEEK_SET
) < 0) {
395 krb5_set_error_message (context
, ret
,
396 N_("Failed seeing in keyfile: %s", ""),
401 ret
= krb5_store_int32(sp
, len
);
404 krb5_set_error_message (context
, ret
,
405 N_("keytab keyfile failed new length", ""));
409 if(krb5_storage_seek(sp
, (len
- 1) * (8 + 4), SEEK_CUR
) < 0) {
411 krb5_set_error_message (context
, ret
,
412 N_("seek to end: %s", ""), strerror(ret
));
416 ret
= krb5_store_int32(sp
, entry
->vno
);
418 krb5_set_error_message(context
, ret
,
419 N_("keytab keyfile failed store kvno", ""));
422 ret
= krb5_storage_write(sp
, entry
->keyblock
.keyvalue
.data
,
423 entry
->keyblock
.keyvalue
.length
);
424 if(ret
!= entry
->keyblock
.keyvalue
.length
) {
429 krb5_set_error_message(context
, ret
,
430 N_("keytab keyfile failed to add key", ""));
435 krb5_storage_free(sp
);
440 const krb5_kt_ops krb5_akf_ops
= {
456 #endif /* HEIMDAL_SMALLER */