2 * Copyright (c) 1997 - 2008 Kungliga Tekniska Högskolan
3 * (Royal Institute of Technology, Stockholm, Sweden).
6 * Portions Copyright (c) 2009 Apple Inc. All rights reserved.
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
19 * 3. Neither the name of the Institute nor the names of its contributors
20 * may be used to endorse or promote products derived from this software
21 * without specific prior written permission.
23 * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
24 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 * ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
27 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 #include "krb5_locl.h"
38 typedef struct krb5_fcache
{
50 #define KRB5_FCC_FVNO_1 1
51 #define KRB5_FCC_FVNO_2 2
52 #define KRB5_FCC_FVNO_3 3
53 #define KRB5_FCC_FVNO_4 4
55 #define FCC_TAG_DELTATIME 1
57 #define FCACHE(X) ((krb5_fcache*)(X)->data.data)
59 #define FILENAME(X) (FCACHE(X)->filename)
61 #define FCC_CURSOR(C) ((struct fcc_cursor*)(C))
63 static const char* KRB5_CALLCONV
64 fcc_get_name(krb5_context context
,
67 if (FCACHE(id
) == NULL
)
73 KRB5_LIB_FUNCTION
int KRB5_LIB_CALL
74 _krb5_xlock(krb5_context context
, int fd
, krb5_boolean exclusive
,
83 l
.l_type
= exclusive
? F_WRLCK
: F_RDLCK
;
84 l
.l_whence
= SEEK_SET
;
85 ret
= fcntl(fd
, F_SETLKW
, &l
);
87 ret
= flock(fd
, exclusive
? LOCK_EX
: LOCK_SH
);
91 if(ret
== EACCES
) /* fcntl can return EACCES instead of EAGAIN */
97 case EINVAL
: /* filesystem doesn't support locking, let the user have it */
101 krb5_set_error_message(context
, ret
,
102 N_("timed out locking cache file %s", "file"),
107 rk_strerror_r(ret
, buf
, sizeof(buf
));
108 krb5_set_error_message(context
, ret
,
109 N_("error locking cache file %s: %s",
110 "file, error"), filename
, buf
);
117 KRB5_LIB_FUNCTION
int KRB5_LIB_CALL
118 _krb5_xunlock(krb5_context context
, int fd
)
126 l
.l_whence
= SEEK_SET
;
127 ret
= fcntl(fd
, F_SETLKW
, &l
);
129 ret
= flock(fd
, LOCK_UN
);
136 case EINVAL
: /* filesystem doesn't support locking, let the user have it */
141 rk_strerror_r(ret
, buf
, sizeof(buf
));
142 krb5_set_error_message(context
, ret
,
143 N_("Failed to unlock file: %s", ""), buf
);
150 static krb5_error_code
151 write_storage(krb5_context context
, krb5_storage
*sp
, int fd
)
157 ret
= krb5_storage_to_data(sp
, &data
);
159 krb5_set_error_message(context
, ret
, N_("malloc: out of memory", ""));
162 sret
= write(fd
, data
.data
, data
.length
);
163 ret
= (sret
!= (ssize_t
)data
.length
);
164 krb5_data_free(&data
);
167 krb5_set_error_message(context
, ret
,
168 N_("Failed to write FILE credential data", ""));
175 static krb5_error_code KRB5_CALLCONV
176 fcc_lock(krb5_context context
, krb5_ccache id
,
177 int fd
, krb5_boolean exclusive
)
179 return _krb5_xlock(context
, fd
, exclusive
, fcc_get_name(context
, id
));
182 static krb5_error_code KRB5_CALLCONV
183 fcc_unlock(krb5_context context
, int fd
)
185 return _krb5_xunlock(context
, fd
);
188 static krb5_error_code KRB5_CALLCONV
189 fcc_resolve(krb5_context context
, krb5_ccache
*id
, const char *res
)
192 f
= malloc(sizeof(*f
));
194 krb5_set_error_message(context
, KRB5_CC_NOMEM
,
195 N_("malloc: out of memory", ""));
196 return KRB5_CC_NOMEM
;
198 f
->filename
= strdup(res
);
199 if(f
->filename
== NULL
){
201 krb5_set_error_message(context
, KRB5_CC_NOMEM
,
202 N_("malloc: out of memory", ""));
203 return KRB5_CC_NOMEM
;
206 (*id
)->data
.data
= f
;
207 (*id
)->data
.length
= sizeof(*f
);
212 * Try to scrub the contents of `filename' safely.
221 pos
= lseek(fd
, 0, SEEK_END
);
224 if (lseek(fd
, 0, SEEK_SET
) < 0)
226 memset(buf
, 0, sizeof(buf
));
229 size_t wr
= sizeof(buf
);
232 tmp
= write(fd
, buf
, wr
);
247 * Erase `filename' if it exists, trying to remove the contents if
248 * it's `safe'. We always try to remove the file, it it exists. It's
249 * only overwritten if it's a regular file (not a symlink and not a
253 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
254 _krb5_erase_file(krb5_context context
, const char *filename
)
257 struct stat sb1
, sb2
;
260 ret
= lstat (filename
, &sb1
);
264 fd
= open(filename
, O_RDWR
| O_BINARY
| O_CLOEXEC
| O_NOFOLLOW
);
272 ret
= _krb5_xlock(context
, fd
, 1, filename
);
277 if (unlink(filename
) < 0) {
279 _krb5_xunlock(context
, fd
);
281 krb5_set_error_message(context
, errno
,
282 N_("krb5_cc_destroy: unlinking \"%s\": %s", ""),
283 filename
, strerror(ret
));
286 ret
= fstat(fd
, &sb2
);
289 _krb5_xunlock(context
, fd
);
294 /* check if someone was playing with symlinks */
296 if (sb1
.st_dev
!= sb2
.st_dev
|| sb1
.st_ino
!= sb2
.st_ino
) {
297 _krb5_xunlock(context
, fd
);
302 /* there are still hard links to this file */
304 if (sb2
.st_nlink
!= 0) {
305 _krb5_xunlock(context
, fd
);
310 ret
= scrub_file(fd
);
312 _krb5_xunlock(context
, fd
);
316 ret
= _krb5_xunlock(context
, fd
);
321 static krb5_error_code KRB5_CALLCONV
322 fcc_gen_new(krb5_context context
, krb5_ccache
*id
)
324 char *file
= NULL
, *exp_file
= NULL
;
329 f
= malloc(sizeof(*f
));
331 krb5_set_error_message(context
, KRB5_CC_NOMEM
,
332 N_("malloc: out of memory", ""));
333 return KRB5_CC_NOMEM
;
335 ret
= asprintf(&file
, "%sXXXXXX", KRB5_DEFAULT_CCFILE_ROOT
);
336 if(ret
< 0 || file
== NULL
) {
338 krb5_set_error_message(context
, KRB5_CC_NOMEM
,
339 N_("malloc: out of memory", ""));
340 return KRB5_CC_NOMEM
;
342 ret
= _krb5_expand_path_tokens(context
, file
, 1, &exp_file
);
351 fd
= mkstemp(exp_file
);
353 ret
= (krb5_error_code
)errno
;
354 krb5_set_error_message(context
, ret
, N_("mkstemp %s failed", ""), exp_file
);
360 f
->filename
= exp_file
;
362 (*id
)->data
.data
= f
;
363 (*id
)->data
.length
= sizeof(*f
);
368 storage_set_flags(krb5_context context
, krb5_storage
*sp
, int vno
)
372 case KRB5_FCC_FVNO_1
:
373 flags
|= KRB5_STORAGE_PRINCIPAL_WRONG_NUM_COMPONENTS
;
374 flags
|= KRB5_STORAGE_PRINCIPAL_NO_NAME_TYPE
;
375 flags
|= KRB5_STORAGE_HOST_BYTEORDER
;
377 case KRB5_FCC_FVNO_2
:
378 flags
|= KRB5_STORAGE_HOST_BYTEORDER
;
380 case KRB5_FCC_FVNO_3
:
381 flags
|= KRB5_STORAGE_KEYBLOCK_KEYTYPE_TWICE
;
383 case KRB5_FCC_FVNO_4
:
387 "storage_set_flags called with bad vno (%x)", vno
);
389 krb5_storage_set_flags(sp
, flags
);
392 static krb5_error_code KRB5_CALLCONV
393 fcc_open(krb5_context context
,
395 const char *operation
,
400 krb5_boolean exclusive
= ((flags
| O_WRONLY
) == flags
||
401 (flags
| O_RDWR
) == flags
);
403 const char *filename
;
404 struct stat sb1
, sb2
;
412 flags
|= O_BINARY
| O_CLOEXEC
| O_NOFOLLOW
;
416 if (FCACHE(id
) == NULL
)
417 return krb5_einval(context
, 2);
419 filename
= FILENAME(id
);
421 strict_checking
= (flags
& O_CREAT
) == 0 &&
422 (context
->flags
& KRB5_CTX_F_FCACHE_STRICT_CHECKING
) != 0;
425 memset(&sb1
, 0, sizeof(sb1
));
426 ret
= lstat(filename
, &sb1
);
428 if (!S_ISREG(sb1
.st_mode
)) {
429 krb5_set_error_message(context
, EPERM
,
430 N_("Refuses to open symlinks for caches FILE:%s", ""), filename
);
433 } else if (errno
!= ENOENT
|| !(flags
& O_CREAT
)) {
434 krb5_set_error_message(context
, errno
, N_("%s lstat(%s)", "file, error"),
435 operation
, filename
);
439 fd
= open(filename
, flags
, mode
);
443 rk_strerror_r(ret
, buf
, sizeof(buf
));
444 krb5_set_error_message(context
, ret
, N_("%s open(%s): %s", "file, error"),
445 operation
, filename
, buf
);
450 ret
= fstat(fd
, &sb2
);
452 krb5_clear_error_message(context
);
457 if (!S_ISREG(sb2
.st_mode
)) {
458 krb5_set_error_message(context
, EPERM
, N_("Refuses to open non files caches: FILE:%s", ""), filename
);
464 if (sb1
.st_dev
&& sb1
.st_ino
&&
465 (sb1
.st_dev
!= sb2
.st_dev
|| sb1
.st_ino
!= sb2
.st_ino
)) {
467 * Perhaps we raced with a rename(). To complain about
468 * symlinks in that case would cause unnecessary concern, so
469 * we check for that possibility and loop. This has no
470 * TOCTOU problems because we redo the open(). We could also
471 * not do any of this checking if O_NOFOLLOW != 0...
474 ret
= lstat(filename
, &sb3
);
475 if (ret
|| sb1
.st_dev
!= sb2
.st_dev
||
476 sb3
.st_dev
!= sb2
.st_dev
|| sb3
.st_ino
!= sb2
.st_ino
) {
477 krb5_set_error_message(context
, EPERM
, N_("Refuses to open possible symlink for caches: FILE:%s", ""), filename
);
481 krb5_set_error_message(context
, EPERM
, N_("Raced too many times with renames of FILE:%s", ""), filename
);
489 * /tmp (or wherever default ccaches go) might not be on its own
490 * filesystem, or on a filesystem different /etc, say, and even if
491 * it were, suppose a user hard-links another's ccache to her
492 * default ccache, then runs a set-uid program that will user her
493 * default ccache (even if it ignores KRB5CCNAME)...
495 * Default ccache locations should really be on per-user non-tmp
496 * locations on tmpfs "run" directories. But we don't know here
497 * that this is the case. Thus: no hard-links, no symlinks.
499 if (sb2
.st_nlink
!= 1) {
500 krb5_set_error_message(context
, EPERM
, N_("Refuses to open hardlinks for caches FILE:%s", ""), filename
);
505 if (strict_checking
) {
508 * XXX WIN32: Needs to have ACL checking code!
509 * st_mode comes out as 100666, and st_uid is no use.
512 * XXX Should probably add options to improve control over this
513 * check. We might want strict checking of everything except
516 if (sb2
.st_uid
!= geteuid()) {
517 krb5_set_error_message(context
, EPERM
, N_("Refuses to open cache files not own by myself FILE:%s (owned by %d)", ""), filename
, (int)sb2
.st_uid
);
521 if ((sb2
.st_mode
& 077) != 0) {
522 krb5_set_error_message(context
, EPERM
,
523 N_("Refuses to open group/other readable files FILE:%s", ""), filename
);
530 if((ret
= fcc_lock(context
, id
, fd
, exclusive
)) != 0) {
538 static krb5_error_code KRB5_CALLCONV
539 fcc_initialize(krb5_context context
,
541 krb5_principal primary_principal
)
543 krb5_fcache
*f
= FCACHE(id
);
548 return krb5_einval(context
, 2);
550 unlink (f
->filename
);
552 ret
= fcc_open(context
, id
, "initialize", &fd
, O_RDWR
| O_CREAT
| O_EXCL
, 0600);
557 sp
= krb5_storage_emem();
558 krb5_storage_set_eof_code(sp
, KRB5_CC_END
);
559 if(context
->fcache_vno
!= 0)
560 f
->version
= context
->fcache_vno
;
562 f
->version
= KRB5_FCC_FVNO_4
;
563 ret
|= krb5_store_int8(sp
, 5);
564 ret
|= krb5_store_int8(sp
, f
->version
);
565 storage_set_flags(context
, sp
, f
->version
);
566 if(f
->version
== KRB5_FCC_FVNO_4
&& ret
== 0) {
568 if (context
->kdc_sec_offset
) {
569 ret
|= krb5_store_int16 (sp
, 12); /* length */
570 ret
|= krb5_store_int16 (sp
, FCC_TAG_DELTATIME
); /* Tag */
571 ret
|= krb5_store_int16 (sp
, 8); /* length of data */
572 ret
|= krb5_store_int32 (sp
, context
->kdc_sec_offset
);
573 ret
|= krb5_store_int32 (sp
, context
->kdc_usec_offset
);
575 ret
|= krb5_store_int16 (sp
, 0);
578 ret
|= krb5_store_principal(sp
, primary_principal
);
580 ret
|= write_storage(context
, sp
, fd
);
582 krb5_storage_free(sp
);
584 fcc_unlock(context
, fd
);
589 rk_strerror_r(ret
, buf
, sizeof(buf
));
590 krb5_set_error_message(context
, ret
, N_("close %s: %s", ""),
596 static krb5_error_code KRB5_CALLCONV
597 fcc_close(krb5_context context
,
600 if (FCACHE(id
) == NULL
)
601 return krb5_einval(context
, 2);
604 krb5_data_free(&id
->data
);
608 static krb5_error_code KRB5_CALLCONV
609 fcc_destroy(krb5_context context
,
612 if (FCACHE(id
) == NULL
)
613 return krb5_einval(context
, 2);
615 return _krb5_erase_file(context
, FILENAME(id
));
618 static krb5_error_code KRB5_CALLCONV
619 fcc_store_cred(krb5_context context
,
626 ret
= fcc_open(context
, id
, "store", &fd
, O_WRONLY
| O_APPEND
, 0);
632 sp
= krb5_storage_emem();
633 krb5_storage_set_eof_code(sp
, KRB5_CC_END
);
634 storage_set_flags(context
, sp
, FCACHE(id
)->version
);
635 ret
= krb5_store_creds(sp
, creds
);
637 ret
= write_storage(context
, sp
, fd
);
638 krb5_storage_free(sp
);
640 fcc_unlock(context
, fd
);
645 rk_strerror_r(ret
, buf
, sizeof(buf
));
646 krb5_set_error_message(context
, ret
, N_("close %s: %s", ""),
653 static krb5_error_code
654 init_fcc(krb5_context context
,
656 const char *operation
,
657 krb5_storage
**ret_sp
,
659 krb5_deltat
*kdc_offset
)
671 ret
= fcc_open(context
, id
, operation
, &fd
, O_RDONLY
, 0);
675 sp
= krb5_storage_from_fd(fd
);
677 krb5_clear_error_message(context
);
681 krb5_storage_set_eof_code(sp
, KRB5_CC_END
);
682 ret
= krb5_ret_int8(sp
, &pvno
);
684 if(ret
== KRB5_CC_END
) {
686 krb5_set_error_message(context
, ret
,
687 N_("Empty credential cache file: %s", ""),
690 krb5_set_error_message(context
, ret
, N_("Error reading pvno "
691 "in cache file: %s", ""),
696 ret
= KRB5_CCACHE_BADVNO
;
697 krb5_set_error_message(context
, ret
, N_("Bad version number in credential "
698 "cache file: %s", ""),
702 ret
= krb5_ret_int8(sp
, &tag
); /* should not be host byte order */
704 ret
= KRB5_CC_FORMAT
;
705 krb5_set_error_message(context
, ret
, "Error reading tag in "
706 "cache file: %s", FILENAME(id
));
709 FCACHE(id
)->version
= tag
;
710 storage_set_flags(context
, sp
, FCACHE(id
)->version
);
712 case KRB5_FCC_FVNO_4
: {
715 ret
= krb5_ret_int16 (sp
, &length
);
717 ret
= KRB5_CC_FORMAT
;
718 krb5_set_error_message(context
, ret
,
719 N_("Error reading tag length in "
720 "cache file: %s", ""), FILENAME(id
));
724 int16_t dtag
, data_len
;
728 ret
= krb5_ret_int16 (sp
, &dtag
);
730 ret
= KRB5_CC_FORMAT
;
731 krb5_set_error_message(context
, ret
, N_("Error reading dtag in "
732 "cache file: %s", ""),
736 ret
= krb5_ret_int16 (sp
, &data_len
);
738 ret
= KRB5_CC_FORMAT
;
739 krb5_set_error_message(context
, ret
,
740 N_("Error reading dlength "
741 "in cache file: %s",""),
746 case FCC_TAG_DELTATIME
: {
749 ret
= krb5_ret_int32 (sp
, &offset
);
750 ret
|= krb5_ret_int32 (sp
, &context
->kdc_usec_offset
);
752 ret
= KRB5_CC_FORMAT
;
753 krb5_set_error_message(context
, ret
,
754 N_("Error reading kdc_sec in "
755 "cache file: %s", ""),
759 context
->kdc_sec_offset
= offset
;
761 *kdc_offset
= offset
;
765 for (i
= 0; i
< data_len
; ++i
) {
766 ret
= krb5_ret_int8 (sp
, &dummy
);
768 ret
= KRB5_CC_FORMAT
;
769 krb5_set_error_message(context
, ret
,
770 N_("Error reading unknown "
771 "tag in cache file: %s", ""),
778 length
-= 4 + data_len
;
782 case KRB5_FCC_FVNO_3
:
783 case KRB5_FCC_FVNO_2
:
784 case KRB5_FCC_FVNO_1
:
787 ret
= KRB5_CCACHE_BADVNO
;
788 krb5_set_error_message(context
, ret
,
789 N_("Unknown version number (%d) in "
790 "credential cache file: %s", ""),
791 (int)tag
, FILENAME(id
));
800 krb5_storage_free(sp
);
801 fcc_unlock(context
, fd
);
806 static krb5_error_code KRB5_CALLCONV
807 fcc_get_principal(krb5_context context
,
809 krb5_principal
*principal
)
815 ret
= init_fcc (context
, id
, "get-principal", &sp
, &fd
, NULL
);
818 ret
= krb5_ret_principal(sp
, principal
);
820 krb5_clear_error_message(context
);
821 krb5_storage_free(sp
);
822 fcc_unlock(context
, fd
);
827 static krb5_error_code KRB5_CALLCONV
828 fcc_end_get (krb5_context context
,
830 krb5_cc_cursor
*cursor
);
832 static krb5_error_code KRB5_CALLCONV
833 fcc_get_first (krb5_context context
,
835 krb5_cc_cursor
*cursor
)
838 krb5_principal principal
;
840 if (FCACHE(id
) == NULL
)
841 return krb5_einval(context
, 2);
843 *cursor
= malloc(sizeof(struct fcc_cursor
));
844 if (*cursor
== NULL
) {
845 krb5_set_error_message(context
, ENOMEM
, N_("malloc: out of memory", ""));
848 memset(*cursor
, 0, sizeof(struct fcc_cursor
));
850 ret
= init_fcc(context
, id
, "get-frist", &FCC_CURSOR(*cursor
)->sp
,
851 &FCC_CURSOR(*cursor
)->fd
, NULL
);
857 ret
= krb5_ret_principal (FCC_CURSOR(*cursor
)->sp
, &principal
);
859 krb5_clear_error_message(context
);
860 fcc_end_get(context
, id
, cursor
);
863 krb5_free_principal (context
, principal
);
864 fcc_unlock(context
, FCC_CURSOR(*cursor
)->fd
);
868 static krb5_error_code KRB5_CALLCONV
869 fcc_get_next (krb5_context context
,
871 krb5_cc_cursor
*cursor
,
876 if (FCACHE(id
) == NULL
)
877 return krb5_einval(context
, 2);
879 if (FCC_CURSOR(*cursor
) == NULL
)
880 return krb5_einval(context
, 3);
882 if((ret
= fcc_lock(context
, id
, FCC_CURSOR(*cursor
)->fd
, FALSE
)) != 0)
884 FCC_CURSOR(*cursor
)->cred_start
= lseek(FCC_CURSOR(*cursor
)->fd
,
887 ret
= krb5_ret_creds(FCC_CURSOR(*cursor
)->sp
, creds
);
889 krb5_clear_error_message(context
);
891 FCC_CURSOR(*cursor
)->cred_end
= lseek(FCC_CURSOR(*cursor
)->fd
,
894 fcc_unlock(context
, FCC_CURSOR(*cursor
)->fd
);
898 static krb5_error_code KRB5_CALLCONV
899 fcc_end_get (krb5_context context
,
901 krb5_cc_cursor
*cursor
)
904 if (FCACHE(id
) == NULL
)
905 return krb5_einval(context
, 2);
907 if (FCC_CURSOR(*cursor
) == NULL
)
908 return krb5_einval(context
, 3);
910 krb5_storage_free(FCC_CURSOR(*cursor
)->sp
);
911 close (FCC_CURSOR(*cursor
)->fd
);
917 static void KRB5_CALLCONV
918 cred_delete(krb5_context context
,
920 krb5_cc_cursor
*cursor
,
925 krb5_data orig_cred_data
;
926 unsigned char *cred_data_in_file
= NULL
;
928 struct stat sb1
, sb2
;
931 krb5_const_realm srealm
= krb5_principal_get_realm(context
, cred
->server
);
933 /* This is best-effort code; if we lose track of errors here it's OK */
935 heim_assert(FCC_CURSOR(*cursor
)->cred_start
< FCC_CURSOR(*cursor
)->cred_end
,
936 "fcache internal error");
938 krb5_data_zero(&orig_cred_data
);
940 sp
= krb5_storage_emem();
943 krb5_storage_set_eof_code(sp
, KRB5_CC_END
);
944 storage_set_flags(context
, sp
, FCACHE(id
)->version
);
946 /* Get a copy of what the cred should look like in the file; see below */
947 ret
= krb5_store_creds(sp
, cred
);
951 ret
= krb5_storage_to_data(sp
, &orig_cred_data
);
954 krb5_storage_free(sp
);
956 cred_data_in_file
= malloc(orig_cred_data
.length
);
957 if (cred_data_in_file
== NULL
)
961 * Mark the cred expired; krb5_cc_retrieve_cred() callers should use
962 * KRB5_TC_MATCH_TIMES, so this should be good enough...
964 cred
->times
.endtime
= 0;
966 /* ...except for config creds because we don't check their endtimes */
967 if (srealm
&& strcmp(srealm
, "X-CACHECONF:") == 0) {
968 ret
= krb5_principal_set_realm(context
, cred
->server
, "X-RMED-CONF:");
973 sp
= krb5_storage_emem();
976 krb5_storage_set_eof_code(sp
, KRB5_CC_END
);
977 storage_set_flags(context
, sp
, FCACHE(id
)->version
);
979 ret
= krb5_store_creds(sp
, cred
);
981 /* The new cred must be the same size as the old cred */
982 new_cred_sz
= krb5_storage_seek(sp
, 0, SEEK_END
);
983 if (new_cred_sz
!= orig_cred_data
.length
|| new_cred_sz
!=
984 (FCC_CURSOR(*cursor
)->cred_end
- FCC_CURSOR(*cursor
)->cred_start
)) {
985 /* XXX This really can't happen. Assert like above? */
986 krb5_set_error_message(context
, EINVAL
,
987 N_("Credential deletion failed on ccache "
988 "FILE:%s: new credential size did not "
989 "match old credential size", ""),
994 ret
= fcc_open(context
, id
, "remove_cred", &fd
, O_RDWR
, 0);
999 * Check that we're updating the same file where we got the
1000 * cred's offset, else we'd be corrupting a new ccache.
1002 if (fstat(FCC_CURSOR(*cursor
)->fd
, &sb1
) == -1 ||
1003 fstat(fd
, &sb2
) == -1)
1005 if (sb1
.st_dev
!= sb2
.st_dev
|| sb1
.st_ino
!= sb2
.st_ino
)
1009 * Make sure what we overwrite is what we expected.
1011 * FIXME: We *really* need the ccache v4 tag for ccache ID. This
1012 * check that we're only overwriting something that looks exactly
1013 * like what we want to is probably good enough in practice, but
1014 * it's not guaranteed to work.
1016 if (lseek(fd
, FCC_CURSOR(*cursor
)->cred_start
, SEEK_SET
) == (off_t
)-1)
1018 bytes
= read(fd
, cred_data_in_file
, orig_cred_data
.length
);
1019 if (bytes
!= orig_cred_data
.length
)
1021 if (memcmp(orig_cred_data
.data
, cred_data_in_file
, bytes
) != 0)
1023 if (lseek(fd
, FCC_CURSOR(*cursor
)->cred_start
, SEEK_SET
) == (off_t
)-1)
1025 ret
= write_storage(context
, sp
, fd
);
1028 fcc_unlock(context
, fd
);
1029 if (close(fd
) < 0 && ret
== 0) {
1030 krb5_set_error_message(context
, errno
, N_("close %s", ""),
1034 krb5_data_free(&orig_cred_data
);
1035 free(cred_data_in_file
);
1036 krb5_storage_free(sp
);
1040 static krb5_error_code KRB5_CALLCONV
1041 fcc_remove_cred(krb5_context context
,
1046 krb5_error_code ret
, ret2
;
1047 krb5_cc_cursor cursor
;
1048 krb5_creds found_cred
;
1050 if (FCACHE(id
) == NULL
)
1051 return krb5_einval(context
, 2);
1053 ret
= krb5_cc_start_seq_get(context
, id
, &cursor
);
1056 while ((ret
= krb5_cc_next_cred(context
, id
, &cursor
, &found_cred
)) == 0) {
1057 if (!krb5_compare_creds(context
, which
, mcred
, &found_cred
)) {
1058 krb5_free_cred_contents(context
, &found_cred
);
1061 cred_delete(context
, id
, &cursor
, &found_cred
);
1062 krb5_free_cred_contents(context
, &found_cred
);
1064 ret2
= krb5_cc_end_seq_get(context
, id
, &cursor
);
1067 if (ret
== KRB5_CC_END
)
1072 static krb5_error_code KRB5_CALLCONV
1073 fcc_set_flags(krb5_context context
,
1077 if (FCACHE(id
) == NULL
)
1078 return krb5_einval(context
, 2);
1083 static int KRB5_CALLCONV
1084 fcc_get_version(krb5_context context
,
1087 if (FCACHE(id
) == NULL
)
1090 return FCACHE(id
)->version
;
1093 struct fcache_iter
{
1097 static krb5_error_code KRB5_CALLCONV
1098 fcc_get_cache_first(krb5_context context
, krb5_cc_cursor
*cursor
)
1100 struct fcache_iter
*iter
;
1102 iter
= calloc(1, sizeof(*iter
));
1104 krb5_set_error_message(context
, ENOMEM
, N_("malloc: out of memory", ""));
1112 static krb5_error_code KRB5_CALLCONV
1113 fcc_get_cache_next(krb5_context context
, krb5_cc_cursor cursor
, krb5_ccache
*id
)
1115 struct fcache_iter
*iter
= cursor
;
1116 krb5_error_code ret
;
1117 const char *fn
, *cc_type
;
1121 return krb5_einval(context
, 2);
1124 krb5_clear_error_message(context
);
1130 * Note: do not allow krb5_cc_default_name() to recurse via
1131 * krb5_cc_cache_match().
1132 * Note that context->default_cc_name will be NULL even though
1133 * KRB5CCNAME is set in the environment if
1134 * krb5_cc_set_default_name() hasn't
1136 fn
= krb5_cc_default_name(context
);
1137 ret
= krb5_cc_resolve(context
, fn
, &cc
);
1140 cc_type
= krb5_cc_get_type(context
, cc
);
1141 if (strcmp(cc_type
, "FILE") != 0) {
1142 krb5_cc_close(context
, cc
);
1151 static krb5_error_code KRB5_CALLCONV
1152 fcc_end_cache_get(krb5_context context
, krb5_cc_cursor cursor
)
1154 struct fcache_iter
*iter
= cursor
;
1157 return krb5_einval(context
, 2);
1163 static krb5_error_code KRB5_CALLCONV
1164 fcc_move(krb5_context context
, krb5_ccache from
, krb5_ccache to
)
1166 krb5_error_code ret
= 0;
1168 ret
= rk_rename(FILENAME(from
), FILENAME(to
));
1170 if (ret
&& errno
!= EXDEV
) {
1173 rk_strerror_r(ret
, buf
, sizeof(buf
));
1174 krb5_set_error_message(context
, ret
,
1175 N_("Rename of file from %s "
1176 "to %s failed: %s", ""),
1177 FILENAME(from
), FILENAME(to
), buf
);
1179 } else if (ret
&& errno
== EXDEV
) {
1180 /* make a copy and delete the orignal */
1181 krb5_ssize_t sz1
, sz2
;
1185 ret
= fcc_open(context
, from
, "move/from", &fd1
, O_RDONLY
, 0);
1189 unlink(FILENAME(to
));
1191 ret
= fcc_open(context
, to
, "move/to", &fd2
,
1192 O_WRONLY
| O_CREAT
| O_EXCL
, 0600);
1196 while((sz1
= read(fd1
, buf
, sizeof(buf
))) > 0) {
1197 sz2
= write(fd2
, buf
, sz1
);
1200 krb5_set_error_message(context
, ret
,
1201 N_("Failed to write data from one file "
1202 "credential cache to the other", ""));
1208 krb5_set_error_message(context
, ret
,
1209 N_("Failed to read data from one file "
1210 "credential cache to the other", ""));
1214 fcc_unlock(context
, fd2
);
1218 fcc_unlock(context
, fd1
);
1221 _krb5_erase_file(context
, FILENAME(from
));
1224 _krb5_erase_file(context
, FILENAME(to
));
1229 /* make sure ->version is uptodate */
1233 if ((ret
= init_fcc (context
, to
, "move", &sp
, &fd
, NULL
)) == 0) {
1235 krb5_storage_free(sp
);
1236 fcc_unlock(context
, fd
);
1241 fcc_close(context
, from
);
1246 static krb5_error_code KRB5_CALLCONV
1247 fcc_get_default_name(krb5_context context
, char **str
)
1249 return _krb5_expand_default_cc_name(context
,
1250 KRB5_DEFAULT_CCNAME_FILE
,
1254 static krb5_error_code KRB5_CALLCONV
1255 fcc_lastchange(krb5_context context
, krb5_ccache id
, krb5_timestamp
*mtime
)
1257 krb5_error_code ret
;
1261 ret
= fcc_open(context
, id
, "lastchange", &fd
, O_RDONLY
, 0);
1264 ret
= fstat(fd
, &sb
);
1268 krb5_set_error_message(context
, ret
, N_("Failed to stat cache file", ""));
1271 *mtime
= sb
.st_mtime
;
1275 static krb5_error_code KRB5_CALLCONV
1276 fcc_set_kdc_offset(krb5_context context
, krb5_ccache id
, krb5_deltat kdc_offset
)
1281 static krb5_error_code KRB5_CALLCONV
1282 fcc_get_kdc_offset(krb5_context context
, krb5_ccache id
, krb5_deltat
*kdc_offset
)
1284 krb5_error_code ret
;
1285 krb5_storage
*sp
= NULL
;
1287 ret
= init_fcc(context
, id
, "get-kdc-offset", &sp
, &fd
, kdc_offset
);
1289 krb5_storage_free(sp
);
1290 fcc_unlock(context
, fd
);
1298 * Variable containing the FILE based credential cache implemention.
1300 * @ingroup krb5_ccache
1303 KRB5_LIB_VARIABLE
const krb5_cc_ops krb5_fcc_ops
= {
1304 KRB5_CC_OPS_VERSION
,
1313 NULL
, /* fcc_retrieve */
1321 fcc_get_cache_first
,
1325 fcc_get_default_name
,