Dirk Mueller
99d3e0d9fa
0002-gssd-revert-commit-513630d720bd.patch, 0003-gssd-switch-to-using-rpc_gss_seccreate.patch, 0004-gssd-handle-KRB5_AP_ERR_BAD_INTEGRITY-for-machine-cr.patch, 0005-gssd-handle-KRB5_AP_ERR_BAD_INTEGRITY-for-user-crede.patch, 0006-configure-check-for-rpc_gss_seccreate.patch: fixes for libtirpc 1.3.5 - drop reenable-nfsv2.patch (poo#106679) Fix crash when rpc-gssd run with -v. - Replace references to /var/adm/fillup-templates with new options. - do not strip the binaries - mkinitrd-boot.sh: allow other mkinitrd-setup - nfs-utils-eperm-fallback.patch: mount.nfs Includes new config file: /etc/nfsmount.conf and - Kill processes on NFS mounts when unmounting bnc#442490 * fix typo in handling of "init.d/nfs status" - nfs.init: * unmount rpc_pipefs - fix sysconfig filename for changed fillup call services (gssd and idmpad have been rolled in to nfs/nfsserver). - remove svcinfo.d dir as it is provided now by filesystem - update to version 1.1.2 - uses libgssglue instead of libgssapi - add rpcbind support [fate#300607] - added gssapi to buildrequires (#116355) showmount has been removed there (#309782) - added README.NFSv4 (#182775) OBS-URL: https://build.opensuse.org/package/show/Base:System/nfs-utils?expand=0&rev=285
52 lines
1.6 KiB
Diff
52 lines
1.6 KiB
Diff
From f05af7d9924b5e455f4e750c1e8985c560784fce Mon Sep 17 00:00:00 2001
|
|
From: Olga Kornievskaia <kolga@netapp.com>
|
|
Date: Mon, 11 Dec 2023 08:50:57 -0500
|
|
Subject: [PATCH 2/6] gssd: revert commit 513630d720bd
|
|
|
|
In preparation for using rpc_gss_seccreate(), revert commit 513630d720bd
|
|
"gssd: handle KRB5_AP_ERR_BAD_INTEGRITY for machine credentials"
|
|
|
|
Reviewed-by: Chuck Lever <chuck.lever@oracle.com>
|
|
Signed-off-by: Olga Kornievskaia <kolga@netapp.com>
|
|
Signed-off-by: Steve Dickson <steved@redhat.com>
|
|
---
|
|
utils/gssd/gssd_proc.c | 16 +---------------
|
|
1 file changed, 1 insertion(+), 15 deletions(-)
|
|
|
|
diff --git a/utils/gssd/gssd_proc.c b/utils/gssd/gssd_proc.c
|
|
index e5cc1d98..4fb6b72d 100644
|
|
--- a/utils/gssd/gssd_proc.c
|
|
+++ b/utils/gssd/gssd_proc.c
|
|
@@ -412,27 +412,13 @@ create_auth_rpc_client(struct clnt_info *clp,
|
|
tid, tgtname);
|
|
auth = authgss_create_default(rpc_clnt, tgtname, &sec);
|
|
if (!auth) {
|
|
- if (sec.minor_status == KRB5KRB_AP_ERR_BAD_INTEGRITY) {
|
|
- printerr(2, "WARNING: server=%s failed context "
|
|
- "creation with KRB5_AP_ERR_BAD_INTEGRITY\n",
|
|
- clp->servername);
|
|
- if (cred == GSS_C_NO_CREDENTIAL)
|
|
- retval = gssd_refresh_krb5_machine_credential(clp->servername,
|
|
- "*", NULL, 1);
|
|
- if (!retval) {
|
|
- auth = authgss_create_default(rpc_clnt, tgtname,
|
|
- &sec);
|
|
- if (auth)
|
|
- goto success;
|
|
- }
|
|
- }
|
|
/* Our caller should print appropriate message */
|
|
printerr(2, "WARNING: Failed to create krb5 context for "
|
|
"user with uid %d for server %s\n",
|
|
uid, tgtname);
|
|
goto out_fail;
|
|
}
|
|
-success:
|
|
+
|
|
/* Success !!! */
|
|
rpc_clnt->cl_auth = auth;
|
|
*clnt_return = rpc_clnt;
|
|
--
|
|
2.46.0
|
|
|