Add KRB5RCACHENAME and default_rcache_name
In krb5_get_server_rcache(), stop constructing a residual value based
on piece and the euid, and instead resolve default replay cache
(previously an unused operation, as krb5_rc_default() was not part of
the API and was never used).
To determine the default replay cache name, try the KRB5RCACHENAME
environment variable first, and then try KRB5RCACHETYPE for
compatibility. If neither of those environment variables are set, try
the default_rcache_name profile relation in [libdefaults] before
falling back to "dfl:".
https://github.com/krb5/krb5/commit/0e68760cb8dce4ea25fd73d6eab95bce103b6443Author: Greg Hudson <ghudson@mit.edu>
Commit: 0e68760cb8dce4ea25fd73d6eab95bce103b6443
Branch: master
doc/admin/conf_files/krb5_conf.rst | 5 ++
doc/basic/rcache_def.rst | 29 ++++------
doc/user/user_config/kerberos.rst | 17 +++++--
src/include/k5-int.h | 1 +
src/include/krb5/krb5.hin | 11 ++--
src/lib/krb5/krb/srv_rcache.c | 58 ++-------------------
src/lib/krb5/rcache/rc_base.c | 98 +++++++++++++++++++++++-------------
src/man/kerberos.man | 21 ++++++--
src/man/krb5.conf.man | 5 ++
9 files changed, 126 insertions(+), 119 deletions(-)