Add 0035-libmpathpersist-fix-memory-leak-in-mpath_prout_rel.patch Add 0036-libmpathpersist-retry-commands-on-other-paths-in-mpa.patch Add 0037-libmpathpersist-check-released-key-against-the-reser.patch Add 0038-multipathd-remove-thread-from-mpath_pr_event_handle.patch Add 0039-libmpathpersist-remove-uneeded-wrapper-function.patch Add 0040-libmpathpersist-reduce-log-level-for-persistent-rese.patch Add 0041-libmpathpersist-remove-pointless-update_map_pr-ret-v.patch Add 0042-multipathd-use-update_map_pr-in-mpath_pr_event_handl.patch Add 0043-libmpathpersist-limit-changing-prflag-in-update_map_.patch Add 0044-multipathd-Don-t-call-update_map_pr-unnecessarily.patch Add 0045-libmpathpersist-remove-useless-function-send_prout_a.patch Add 0046-libmpathpersist-redesign-failed-release-workaround.patch Add 0047-libmpathpersist-fail-the-release-if-all-threads-fail.patch Add 0048-libmpathpersist-Handle-changing-key-corner-case.patch Add 0049-libmpathpersist-Handle-REGISTER-AND-IGNORE-changing-.patch Add 0050-libmultipath-rename-prflag_value-enums.patch Add 0051-libmpathpersist-use-a-switch-statement-for-prout-com.patch Add 0052-libmpathpersist-Add-safety-check-for-preempting-on-k.patch Add 0053-libmpathpersist-remove-update_map_pr-code-for-NULL-p.patch Add 0054-libmpathpersist-move-update_map_pr-to-multipathd.patch Add 0055-multipathd-clean-up-update_map_pr-and-mpath_pr_event.patch Add 0056-libmpathpersist-clean-up-duplicate-function-declarat.patch Add 0057-multipathd-wrap-setting-and-unsetting-prflag.patch Add 0058-multipathd-unregister-PR-key-when-path-is-restored-i.patch Add 0059-libmpathpersist-Fix-up-reservation_key-checking.patch Add 0060-libmpathpersist-change-how-reservation-conflicts-are.patch Add 0061-libmpathpersist-Clear-prkey-in-multipathd-before-unr.patch Add 0062-libmpathpersist-only-clear-the-key-if-we-are-using-t.patch Add 0063-libmpathpersist-Restore-old-reservation-key-on-failu.patch Add 0064-libmpathpersist-update-reservation-key-before-checki.patch Add 0065-libmpathpersist-retry-on-conflicts-in-mpath_prout_co.patch Add 0066-libmpathpersist-Don-t-always-fail-registrations-for-.patch Add 0067-libmpathpersist-Don-t-try-release-workaround-for-inv.patch Add 0068-libmpathpersist-Don-t-fail-RESERVE-commands-unnecess.patch Add 0069-libmpathpersist-reregister-keys-when-self-preempting.patch Add 0070-libmpathpersist-handle-updating-key-race-condition.patch Add 0071-libmpathpersist-handle-preempting-all-registrants-re.patch Add 0072-libmpathpersist-Fix-REGISTER-AND-IGNORE-while-holdin.patch Add 0073-libmpathpersist-Handle-RESERVE-with-reservation-held.patch Add 0074-libmpathpersist-use-check_holding_reservation-in-mpa.patch Add 0075-libmpathpersist-Fix-unregistering-while-holding-the-.patch Add 0076-libmpathpersist-Fix-race-between-restoring-a-path-an.patch Add 0077-multipathd-Fix-tracking-of-old-PR-key.patch * Fixes RHEL-118720 ("There are many bugs in multipath's persistent reservation handling [rhel-10]") Resolves: RHEL-118720
218 lines
6.8 KiB
Diff
218 lines
6.8 KiB
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: Benjamin Marzinski <bmarzins@redhat.com>
|
|
Date: Thu, 10 Jul 2025 14:10:50 -0400
|
|
Subject: [PATCH] multipathd: use update_map_pr in mpath_pr_event_handle
|
|
|
|
Clean up the duplicate code in mpath_pr_event_handle() and
|
|
update_map_pr() by making update_map_pr() take an optional path device
|
|
to use for its check, instead of checking all path devices and make
|
|
mpath_pr_event_handle() call update_map_pr() to do its checking.
|
|
|
|
Signed-off-by: Benjamin Marzinski <bmarzins@redhat.com>
|
|
Reviewed-by: Martin Wilck <mwilck@suse.com>
|
|
---
|
|
libmpathpersist/libmpathpersist.version | 2 +-
|
|
libmpathpersist/mpath_persist_int.c | 18 ++++---
|
|
libmpathpersist/mpath_persist_int.h | 2 +-
|
|
multipathd/main.c | 68 ++++---------------------
|
|
4 files changed, 22 insertions(+), 68 deletions(-)
|
|
|
|
diff --git a/libmpathpersist/libmpathpersist.version b/libmpathpersist/libmpathpersist.version
|
|
index a8c6aae7..faa4257b 100644
|
|
--- a/libmpathpersist/libmpathpersist.version
|
|
+++ b/libmpathpersist/libmpathpersist.version
|
|
@@ -27,7 +27,7 @@ global:
|
|
local: *;
|
|
};
|
|
|
|
-__LIBMPATHPERSIST_INT_1.0.0 {
|
|
+__LIBMPATHPERSIST_INT_2.0.0 {
|
|
/* Internal use by multipath-tools */
|
|
dumpHex;
|
|
mpath_alloc_prin_response;
|
|
diff --git a/libmpathpersist/mpath_persist_int.c b/libmpathpersist/mpath_persist_int.c
|
|
index 39bfc953..8b01492f 100644
|
|
--- a/libmpathpersist/mpath_persist_int.c
|
|
+++ b/libmpathpersist/mpath_persist_int.c
|
|
@@ -727,7 +727,7 @@ out1:
|
|
return ret;
|
|
}
|
|
|
|
-int update_map_pr(struct multipath *mpp)
|
|
+int update_map_pr(struct multipath *mpp, struct path *pp)
|
|
{
|
|
int noisy=0;
|
|
struct prin_resp *resp;
|
|
@@ -742,7 +742,7 @@ int update_map_pr(struct multipath *mpp)
|
|
condlog(was_set ? 2 : 4,
|
|
"%s: reservation_key not set in multipath.conf",
|
|
mpp->alias);
|
|
- return MPATH_PR_SUCCESS;
|
|
+ return MPATH_PR_SKIP;
|
|
}
|
|
|
|
resp = mpath_alloc_prin_response(MPATH_PRIN_RKEY_SA);
|
|
@@ -751,13 +751,15 @@ int update_map_pr(struct multipath *mpp)
|
|
condlog(0,"%s : failed to alloc resp in update_map_pr", mpp->alias);
|
|
return MPATH_PR_OTHER;
|
|
}
|
|
- if (count_active_paths(mpp) == 0)
|
|
- {
|
|
+ if (!pp && count_active_paths(mpp) == 0) {
|
|
condlog(2, "%s: No available paths to check pr status", mpp->alias);
|
|
goto out;
|
|
}
|
|
mpp->prflag = PRFLAG_UNSET;
|
|
- ret = mpath_prin_activepath(mpp, MPATH_PRIN_RKEY_SA, resp, noisy);
|
|
+ if (pp)
|
|
+ ret = prin_do_scsi_ioctl(pp->dev, MPATH_PRIN_RKEY_SA, resp, noisy);
|
|
+ else
|
|
+ ret = mpath_prin_activepath(mpp, MPATH_PRIN_RKEY_SA, resp, noisy);
|
|
|
|
if (ret != MPATH_PR_SUCCESS )
|
|
{
|
|
@@ -799,8 +801,10 @@ int update_map_pr(struct multipath *mpp)
|
|
if (isFound)
|
|
{
|
|
mpp->prflag = PRFLAG_SET;
|
|
- condlog(was_set ? 3 : 2, "%s: prflag flag set.", mpp->alias);
|
|
- }
|
|
+ condlog(was_set ? 3 : 2, "%s: key found. prflag set.", mpp->alias);
|
|
+ } else
|
|
+ condlog(was_set ? 1 : 3, "%s: key not found. prflag unset.",
|
|
+ mpp->alias);
|
|
|
|
out:
|
|
free(resp);
|
|
diff --git a/libmpathpersist/mpath_persist_int.h b/libmpathpersist/mpath_persist_int.h
|
|
index 31457535..73c95863 100644
|
|
--- a/libmpathpersist/mpath_persist_int.h
|
|
+++ b/libmpathpersist/mpath_persist_int.h
|
|
@@ -20,6 +20,6 @@ int prin_do_scsi_ioctl(char * dev, int rq_servact, struct prin_resp * resp, int
|
|
int prout_do_scsi_ioctl( char * dev, int rq_servact, int rq_scope,
|
|
unsigned int rq_type, struct prout_param_descriptor *paramp, int noisy);
|
|
void dumpHex(const char* , int len, int no_ascii);
|
|
-int update_map_pr(struct multipath *mpp);
|
|
+int update_map_pr(struct multipath *mpp, struct path *pp);
|
|
|
|
#endif /* _MPATH_PERSIST_INT_H */
|
|
diff --git a/multipathd/main.c b/multipathd/main.c
|
|
index 04ca47d1..390632a6 100644
|
|
--- a/multipathd/main.c
|
|
+++ b/multipathd/main.c
|
|
@@ -733,7 +733,7 @@ fail:
|
|
sync_map_state(mpp);
|
|
|
|
if (mpp->prflag != PRFLAG_SET)
|
|
- update_map_pr(mpp);
|
|
+ update_map_pr(mpp, NULL);
|
|
if (mpp->prflag == PRFLAG_SET)
|
|
pr_register_active_paths(mpp);
|
|
|
|
@@ -1383,7 +1383,7 @@ rescan:
|
|
|
|
if (retries >= 0) {
|
|
if (start_waiter)
|
|
- update_map_pr(mpp);
|
|
+ update_map_pr(mpp, NULL);
|
|
if (mpp->prflag == PRFLAG_SET && prflag != PRFLAG_SET)
|
|
pr_register_active_paths(mpp);
|
|
condlog(2, "%s [%s]: path added to devmap %s",
|
|
@@ -3028,7 +3028,7 @@ configure (struct vectors * vecs, enum force_reload_types reload_type)
|
|
vector_foreach_slot(mpvec, mpp, i){
|
|
if (remember_wwid(mpp->wwid) == 1)
|
|
trigger_paths_udev_change(mpp, true);
|
|
- update_map_pr(mpp);
|
|
+ update_map_pr(mpp, NULL);
|
|
if (mpp->prflag == PRFLAG_SET)
|
|
pr_register_active_paths(mpp);
|
|
}
|
|
@@ -3946,70 +3946,24 @@ main (int argc, char *argv[])
|
|
|
|
static void mpath_pr_event_handle(struct path *pp)
|
|
{
|
|
- struct multipath * mpp;
|
|
- unsigned int i;
|
|
- int ret, isFound;
|
|
+ struct multipath *mpp = pp->mpp;
|
|
+ int ret;
|
|
struct prout_param_descriptor *param;
|
|
- struct prin_resp *resp;
|
|
|
|
- mpp = pp->mpp;
|
|
if (pp->bus != SYSFS_BUS_SCSI) {
|
|
mpp->prflag = PRFLAG_UNSET;
|
|
return;
|
|
}
|
|
|
|
- if (!get_be64(mpp->reservation_key)) {
|
|
- mpp->prflag = PRFLAG_UNSET;
|
|
+ if (update_map_pr(mpp, pp) != MPATH_PR_SUCCESS)
|
|
return;
|
|
- }
|
|
-
|
|
- resp = mpath_alloc_prin_response(MPATH_PRIN_RKEY_SA);
|
|
- if (!resp){
|
|
- condlog(0,"%s Alloc failed for prin response", pp->dev);
|
|
- goto out;
|
|
- }
|
|
-
|
|
- mpp->prflag = PRFLAG_UNSET;
|
|
- ret = prin_do_scsi_ioctl(pp->dev, MPATH_PRIN_RKEY_SA, resp, 0);
|
|
- if (ret != MPATH_PR_SUCCESS )
|
|
- {
|
|
- condlog(0,"%s : pr in read keys service action failed. Error=%d", pp->dev, ret);
|
|
- goto out;
|
|
- }
|
|
-
|
|
- condlog(3, " event pr=%d addlen=%d",resp->prin_descriptor.prin_readkeys.prgeneration,
|
|
- resp->prin_descriptor.prin_readkeys.additional_length );
|
|
-
|
|
- if (resp->prin_descriptor.prin_readkeys.additional_length == 0 )
|
|
- {
|
|
- condlog(1, "%s: No key found. Device may not be registered.", pp->dev);
|
|
- goto out;
|
|
- }
|
|
- condlog(2, "Multipath reservation_key: 0x%" PRIx64 " ",
|
|
- get_be64(mpp->reservation_key));
|
|
|
|
- isFound =0;
|
|
- for (i = 0; i < resp->prin_descriptor.prin_readkeys.additional_length/8; i++ )
|
|
- {
|
|
- condlog(2, "PR IN READKEYS[%d] reservation key:",i);
|
|
- dumpHex((char *)&resp->prin_descriptor.prin_readkeys.key_list[i*8], 8 , -1);
|
|
- if (!memcmp(&mpp->reservation_key, &resp->prin_descriptor.prin_readkeys.key_list[i*8], 8))
|
|
- {
|
|
- condlog(2, "%s: pr key found in prin readkeys response", mpp->alias);
|
|
- isFound =1;
|
|
- break;
|
|
- }
|
|
- }
|
|
- if (!isFound)
|
|
- {
|
|
- condlog(0, "%s: Either device not registered or ", pp->dev);
|
|
- condlog(0, "host is not authorised for registration. Skip path");
|
|
- goto out;
|
|
- }
|
|
+ if (mpp->prflag != PRFLAG_SET)
|
|
+ return;
|
|
|
|
param = (struct prout_param_descriptor *)calloc(1, sizeof(struct prout_param_descriptor));
|
|
if (!param)
|
|
- goto out;
|
|
+ return;
|
|
|
|
param->sa_flags = mpp->sa_flags;
|
|
memcpy(param->sa_key, &mpp->reservation_key, 8);
|
|
@@ -4022,10 +3976,6 @@ static void mpath_pr_event_handle(struct path *pp)
|
|
{
|
|
condlog(0,"%s: Reservation registration failed. Error: %d", pp->dev, ret);
|
|
}
|
|
- mpp->prflag = PRFLAG_SET;
|
|
|
|
free(param);
|
|
-out:
|
|
- if (resp)
|
|
- free(resp);
|
|
}
|