krb5 commit: Don't use expired TGTs in TGS-REQs
Greg Hudson
ghudson at MIT.EDU
Fri Apr 26 16:35:03 EDT 2013
https://github.com/krb5/krb5/commit/9977eb769b9def8fbbf289f7eac3938c863fa2ef
commit 9977eb769b9def8fbbf289f7eac3938c863fa2ef
Author: Nicolas Williams <nico at cryptonector.com>
Date: Fri Apr 26 14:37:01 2013 -0500
Don't use expired TGTs in TGS-REQs
ticket: 6948
src/lib/krb5/krb/get_creds.c | 18 ++++++++++--------
1 files changed, 10 insertions(+), 8 deletions(-)
diff --git a/src/lib/krb5/krb/get_creds.c b/src/lib/krb5/krb/get_creds.c
index 23c0a10..8994527 100644
--- a/src/lib/krb5/krb/get_creds.c
+++ b/src/lib/krb5/krb/get_creds.c
@@ -57,20 +57,14 @@ krb5int_construct_matching_creds(krb5_context context, krb5_flags options,
memset(mcreds, 0, sizeof(krb5_creds));
mcreds->magic = KV5M_CREDS;
- if (in_creds->times.endtime != 0) {
+ if (in_creds->times.endtime != 0)
mcreds->times.endtime = in_creds->times.endtime;
- } else {
- krb5_error_code retval;
- retval = krb5_timeofday(context, &mcreds->times.endtime);
- if (retval != 0) return retval;
- }
mcreds->keyblock = in_creds->keyblock;
mcreds->authdata = in_creds->authdata;
mcreds->server = in_creds->server;
mcreds->client = in_creds->client;
- *fields = KRB5_TC_MATCH_TIMES /*XXX |KRB5_TC_MATCH_SKEY_TYPE */
- | KRB5_TC_MATCH_AUTHDATA
+ *fields = KRB5_TC_MATCH_AUTHDATA /*XXX |KRB5_TC_MATCH_SKEY_TYPE */
| KRB5_TC_SUPPORTED_KTYPES;
if (mcreds->keyblock.enctype) {
krb5_enctype *ktypes;
@@ -236,6 +230,14 @@ cache_get(krb5_context context, krb5_ccache ccache, krb5_flags flags,
*out_creds = NULL;
+ if (in_creds->times.endtime == 0) {
+ code = krb5_timeofday(context, &in_creds->times.endtime);
+ if (code != 0)
+ return code;
+ }
+
+ flags |= KRB5_TC_MATCH_TIMES;
+
creds = malloc(sizeof(*creds));
if (creds == NULL)
return ENOMEM;
More information about the cvs-krb5
mailing list