Blame SOURCES/bz1860544-fence_lpar-fix-long-user-host-issue.patch

e15206
From 3424464d3e447308f171399302cf76eb573a618f Mon Sep 17 00:00:00 2001
e15206
From: Reid wahl <nrwahl@protonmail.com>
e15206
Date: Fri, 24 Jul 2020 18:22:24 -0700
e15206
Subject: [PATCH] fence_lpar: Fix parse error from long command line
e15206
e15206
When Pacemaker executes `fence_lpar` and the HMC command line is greater
e15206
than 80 characters, a parse error causes agent failure. This can happen
e15206
with a long user name and/or long managed system name. It happens only
e15206
when Pacemaker spawns the `fence_lpar` process; it does not happen when
e15206
`fence_lpar` is run from the CLI.
e15206
e15206
A long command line gets a carriage return ('\r') added at the 80
e15206
character mark and wraps back to the beginning of the line with no line
e15206
feed ('\n'), overwriting the displayed characters. `fence_lpar`'s regex
e15206
matches handle this fine when it's run from the command line.
e15206
e15206
The problem is that when Pacemaker spawns fence_lpar, **for some
e15206
reason** there are backspace characters in the buffer when we hit the
e15206
'\r' character. This seems to overwrite some of the `conn.before`
e15206
string. As a result, the regex doesn't match `conn.before`, and the
e15206
agent fails.
e15206
e15206
This patch works around the `conn.before` weirdness by reading and
e15206
discarding the first received line **before** any regex processing.
e15206
e15206
Resolves: RHBZ#1860544
e15206
Resolves: RHBZ#1860545
e15206
e15206
Signed-off-by: Reid Wahl <nrwahl@protonmail.com>
e15206
---
e15206
 agents/lpar/fence_lpar.py | 33 +++++++++++++++++++++++++++------
e15206
 1 file changed, 27 insertions(+), 6 deletions(-)
e15206
e15206
diff --git a/agents/lpar/fence_lpar.py b/agents/lpar/fence_lpar.py
e15206
index 270bbe3b..9dfabc43 100644
e15206
--- a/agents/lpar/fence_lpar.py
e15206
+++ b/agents/lpar/fence_lpar.py
e15206
@@ -19,6 +19,9 @@
e15206
 def get_power_status(conn, options):
e15206
 	if options["--hmc-version"] == "3":
e15206
 		conn.send("lssyscfg -r lpar -m " + options["--managed"] + " -n " + options["--plug"] + " -F name,state\n")
e15206
+
e15206
+		# First line (command) may cause parsing issues if long
e15206
+		conn.readline()
e15206
 		conn.log_expect(options["--command-prompt"], int(options["--power-timeout"]))
e15206
 
e15206
 		try:
e15206
@@ -29,6 +32,9 @@ def get_power_status(conn, options):
e15206
 	elif options["--hmc-version"] in ["4", "IVM"]:
e15206
 		conn.send("lssyscfg -r lpar -m "+ options["--managed"] +
e15206
 				" --filter 'lpar_names=" + options["--plug"] + "'\n")
e15206
+
e15206
+		# First line (command) may cause parsing issues if long
e15206
+		conn.readline()
e15206
 		conn.log_expect(options["--command-prompt"], int(options["--power-timeout"]))
e15206
 
e15206
 		try:
e15206
@@ -49,6 +55,9 @@ def set_power_status(conn, options):
e15206
 	if options["--hmc-version"] == "3":
e15206
 		conn.send("chsysstate -o " + options["--action"] + " -r lpar -m " + options["--managed"]
e15206
 			+ " -n " + options["--plug"] + "\n")
e15206
+
e15206
+		# First line (command) may cause parsing issues if long
e15206
+		conn.readline()
e15206
 		conn.log_expect(options["--command-prompt"], int(options["--power-timeout"]))
e15206
 	elif options["--hmc-version"] in ["4", "IVM"]:
e15206
 		if options["--action"] == "on":
e15206
@@ -60,17 +69,23 @@ def set_power_status(conn, options):
e15206
 		else:
e15206
 			conn.send("chsysstate -o shutdown -r lpar --immed" +
e15206
 				" -m " + options["--managed"] + " -n " + options["--plug"] + "\n")
e15206
+
e15206
+		# First line (command) may cause parsing issues if long
e15206
+		conn.readline()
e15206
 		conn.log_expect(options["--command-prompt"], int(options["--power-timeout"]))
e15206
 
e15206
 def get_lpar_list(conn, options):
e15206
 	outlets = {}
e15206
 	if options["--hmc-version"] == "3":
e15206
 		conn.send("query_partition_names -m " + options["--managed"] + "\n")
e15206
+
e15206
+		## We have to remove first line (command)
e15206
+		conn.readline()
e15206
 		conn.log_expect(options["--command-prompt"], int(options["--power-timeout"]))
e15206
 
e15206
-		## We have to remove first 3 lines (command + header) and last line (part of new prompt)
e15206
+		## We have to remove next 2 lines (header) and last line (part of new prompt)
e15206
 		####
e15206
-		res = re.search("^.+?\n(.+?\n){2}(.*)\n.*$", conn.before, re.S)
e15206
+		res = re.search("^(.+?\n){2}(.*)\n.*$", conn.before, re.S)
e15206
 
e15206
 		if res == None:
e15206
 			fail_usage("Unable to parse output of list command")
e15206
@@ -81,11 +96,14 @@ def get_lpar_list(conn, options):
e15206
 	elif options["--hmc-version"] == "4":
e15206
 		conn.send("lssyscfg -r lpar -m " + options["--managed"] +
e15206
 			" -F name:state\n")
e15206
+
e15206
+		## We have to remove first line (command)
e15206
+		conn.readline()
e15206
 		conn.log_expect(options["--command-prompt"], int(options["--power-timeout"]))
e15206
 
e15206
-		## We have to remove first line (command) and last line (part of new prompt)
e15206
+		## We have to remove last line (part of new prompt)
e15206
 		####
e15206
-		res = re.search("^.+?\n(.*)\n.*$", conn.before, re.S)
e15206
+		res = re.search("^(.*)\n.*$", conn.before, re.S)
e15206
 
e15206
 		if res == None:
e15206
 			fail_usage("Unable to parse output of list command")
e15206
@@ -100,11 +118,14 @@ def get_lpar_list(conn, options):
e15206
 	elif options["--hmc-version"] == "IVM":
e15206
 		conn.send("lssyscfg -r lpar -m " + options["--managed"] +
e15206
 			" -F name,state\n")
e15206
+
e15206
+		## We have to remove first line (command)
e15206
+		conn.readline()
e15206
 		conn.log_expect(options["--command-prompt"], int(options["--power-timeout"]))
e15206
 
e15206
-		## We have to remove first line (command) and last line (part of new prompt)
e15206
+		## We have to remove last line (part of new prompt)
e15206
 		####
e15206
-		res = re.search("^.+?\n(.*)\n.*$", conn.before, re.S)
e15206
+		res = re.search("^(.*)\n.*$", conn.before, re.S)
e15206
 
e15206
 		if res == None:
e15206
 			fail_usage("Unable to parse output of list command")