Auto sync2gitlab import of sos-4.3-2.el8.src.rpm
This commit is contained in:
parent
da53c87ca8
commit
5d1691f7b0
1113
sos-bz2058279-ocp-backports.patch
Normal file
1113
sos-bz2058279-ocp-backports.patch
Normal file
File diff suppressed because it is too large
Load Diff
67
sos-bz2062908-tigervnc-update-collections.patch
Normal file
67
sos-bz2062908-tigervnc-update-collections.patch
Normal file
@ -0,0 +1,67 @@
|
|||||||
|
From 4c92968ce461cdfc6a5d913748b2ce4f148ff4a9 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Jake Hunsaker <jhunsake@redhat.com>
|
||||||
|
Date: Thu, 10 Mar 2022 12:31:49 -0500
|
||||||
|
Subject: [PATCH] [tigervnc] Update collections for newer versions of TigerVNC
|
||||||
|
|
||||||
|
First, relaxes the file specifications for collection by capturing the
|
||||||
|
entire `/etc/tigervnc/` directory.
|
||||||
|
|
||||||
|
Second, adds collection of service status and journal output for each
|
||||||
|
configured vnc server. Collection of `vncserver -list` is kept for
|
||||||
|
backwards compatibility.
|
||||||
|
|
||||||
|
Finally, add a short docstring for the plugin for --help output.
|
||||||
|
|
||||||
|
Signed-off-by: Jake Hunsaker <jhunsake@redhat.com>
|
||||||
|
---
|
||||||
|
sos/report/plugins/tigervnc.py | 28 +++++++++++++++++++++++-----
|
||||||
|
1 file changed, 23 insertions(+), 5 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/sos/report/plugins/tigervnc.py b/sos/report/plugins/tigervnc.py
|
||||||
|
index 1302f6d4..e31aee25 100644
|
||||||
|
--- a/sos/report/plugins/tigervnc.py
|
||||||
|
+++ b/sos/report/plugins/tigervnc.py
|
||||||
|
@@ -12,17 +12,35 @@ from sos.report.plugins import Plugin, RedHatPlugin
|
||||||
|
|
||||||
|
|
||||||
|
class TigerVNC(Plugin, RedHatPlugin):
|
||||||
|
+ """
|
||||||
|
+ This plugin gathers information for VNC servers provided by the tigervnc
|
||||||
|
+ package. This is explicitly for server-side collections, not clients.
|
||||||
|
+
|
||||||
|
+ By default, this plugin will capture the contents of /etc/tigervnc, which
|
||||||
|
+ may include usernames. If usernames are sensitive information for end
|
||||||
|
+ users of sos, consider using the `--clean` option to obfuscate these
|
||||||
|
+ names.
|
||||||
|
+ """
|
||||||
|
|
||||||
|
short_desc = 'TigerVNC server configuration'
|
||||||
|
plugin_name = 'tigervnc'
|
||||||
|
packages = ('tigervnc-server',)
|
||||||
|
|
||||||
|
def setup(self):
|
||||||
|
- self.add_copy_spec([
|
||||||
|
- '/etc/tigervnc/vncserver-config-defaults',
|
||||||
|
- '/etc/tigervnc/vncserver-config-mandatory',
|
||||||
|
- '/etc/tigervnc/vncserver.users'
|
||||||
|
- ])
|
||||||
|
+ self.add_copy_spec('/etc/tigervnc/')
|
||||||
|
+
|
||||||
|
+ # service names are 'vncserver@$port' where $port is :1,, :2, etc...
|
||||||
|
+ # however they are not reported via list-unit-files, only list-units
|
||||||
|
+ vncs = self.exec_cmd(
|
||||||
|
+ 'systemctl list-units --type=service --no-legend vncserver*'
|
||||||
|
+ )
|
||||||
|
+ if vncs['status'] == 0:
|
||||||
|
+ for serv in vncs['output'].splitlines():
|
||||||
|
+ vnc = serv.split()
|
||||||
|
+ if not vnc:
|
||||||
|
+ continue
|
||||||
|
+ self.add_service_status(vnc[0])
|
||||||
|
+ self.add_journal(vnc[0])
|
||||||
|
|
||||||
|
self.add_cmd_output('vncserver -list')
|
||||||
|
|
||||||
|
--
|
||||||
|
2.34.3
|
||||||
|
|
230
sos-bz2065805-collect-pacemaker-cluster.patch
Normal file
230
sos-bz2065805-collect-pacemaker-cluster.patch
Normal file
@ -0,0 +1,230 @@
|
|||||||
|
From 3b84b4ccfa9e4924a5a3829d3810568dfb69bf63 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Jake Hunsaker <jhunsake@redhat.com>
|
||||||
|
Date: Fri, 18 Mar 2022 16:25:35 -0400
|
||||||
|
Subject: [PATCH 1/2] [pacemaker] Redesign node enumeration logic
|
||||||
|
|
||||||
|
It has been found that `pcs status` output is liable to change, which
|
||||||
|
ends up breaking our parsing of node lists when using it on newer
|
||||||
|
versions.
|
||||||
|
|
||||||
|
Instead, first try to parse through `crm_mon` output, which is what `pcs
|
||||||
|
status` uses under the hood, but as a stable and reliable xml format.
|
||||||
|
|
||||||
|
Failing that, for example if the `--primary` node is not functioning as
|
||||||
|
part of the cluster, source `/etc/corosync/corosync.conf` instead.
|
||||||
|
|
||||||
|
Related: RHBZ2065805
|
||||||
|
Related: RHBZ2065811
|
||||||
|
|
||||||
|
Signed-off-by: Jake Hunsaker <jhunsake@redhat.com>
|
||||||
|
---
|
||||||
|
sos/collector/clusters/pacemaker.py | 110 +++++++++++++++++++---------
|
||||||
|
1 file changed, 76 insertions(+), 34 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/sos/collector/clusters/pacemaker.py b/sos/collector/clusters/pacemaker.py
|
||||||
|
index 55024314..49d0ce51 100644
|
||||||
|
--- a/sos/collector/clusters/pacemaker.py
|
||||||
|
+++ b/sos/collector/clusters/pacemaker.py
|
||||||
|
@@ -8,7 +8,11 @@
|
||||||
|
#
|
||||||
|
# See the LICENSE file in the source distribution for further information.
|
||||||
|
|
||||||
|
+import re
|
||||||
|
+
|
||||||
|
from sos.collector.clusters import Cluster
|
||||||
|
+from setuptools._vendor.packaging import version
|
||||||
|
+from xml.etree import ElementTree
|
||||||
|
|
||||||
|
|
||||||
|
class pacemaker(Cluster):
|
||||||
|
@@ -18,42 +22,80 @@ class pacemaker(Cluster):
|
||||||
|
packages = ('pacemaker',)
|
||||||
|
option_list = [
|
||||||
|
('online', True, 'Collect nodes listed as online'),
|
||||||
|
- ('offline', True, 'Collect nodes listed as offline')
|
||||||
|
+ ('offline', True, 'Collect nodes listed as offline'),
|
||||||
|
+ ('only-corosync', False, 'Only use corosync.conf to enumerate nodes')
|
||||||
|
]
|
||||||
|
|
||||||
|
def get_nodes(self):
|
||||||
|
- self.res = self.exec_primary_cmd('pcs status')
|
||||||
|
- if self.res['status'] != 0:
|
||||||
|
- self.log_error('Cluster status could not be determined. Is the '
|
||||||
|
- 'cluster running on this node?')
|
||||||
|
- return []
|
||||||
|
- if 'node names do not match' in self.res['output']:
|
||||||
|
- self.log_warn('Warning: node name mismatch reported. Attempts to '
|
||||||
|
- 'connect to some nodes may fail.\n')
|
||||||
|
- return self.parse_pcs_output()
|
||||||
|
-
|
||||||
|
- def parse_pcs_output(self):
|
||||||
|
- nodes = []
|
||||||
|
- if self.get_option('online'):
|
||||||
|
- nodes += self.get_online_nodes()
|
||||||
|
- if self.get_option('offline'):
|
||||||
|
- nodes += self.get_offline_nodes()
|
||||||
|
- return nodes
|
||||||
|
-
|
||||||
|
- def get_online_nodes(self):
|
||||||
|
- for line in self.res['output'].splitlines():
|
||||||
|
- if line.startswith('Online:'):
|
||||||
|
- nodes = line.split('[')[1].split(']')[0]
|
||||||
|
- return [n for n in nodes.split(' ') if n]
|
||||||
|
-
|
||||||
|
- def get_offline_nodes(self):
|
||||||
|
- offline = []
|
||||||
|
- for line in self.res['output'].splitlines():
|
||||||
|
- if line.startswith('Node') and line.endswith('(offline)'):
|
||||||
|
- offline.append(line.split()[1].replace(':', ''))
|
||||||
|
- if line.startswith('OFFLINE:'):
|
||||||
|
- nodes = line.split('[')[1].split(']')[0]
|
||||||
|
- offline.extend([n for n in nodes.split(' ') if n])
|
||||||
|
- return offline
|
||||||
|
+ self.nodes = []
|
||||||
|
+ # try crm_mon first
|
||||||
|
+ try:
|
||||||
|
+ if not self.get_option('only-corosync'):
|
||||||
|
+ try:
|
||||||
|
+ self.get_nodes_from_crm()
|
||||||
|
+ except Exception as err:
|
||||||
|
+ self.log_warn("Falling back to sourcing corosync.conf. "
|
||||||
|
+ "Could not parse crm_mon output: %s" % err)
|
||||||
|
+ if not self.nodes:
|
||||||
|
+ # fallback to corosync.conf, in case the node we're inspecting
|
||||||
|
+ # is offline from the cluster
|
||||||
|
+ self.get_nodes_from_corosync()
|
||||||
|
+ except Exception as err:
|
||||||
|
+ self.log_error("Could not determine nodes from cluster: %s" % err)
|
||||||
|
+
|
||||||
|
+ _shorts = [n for n in self.nodes if '.' not in n]
|
||||||
|
+ if _shorts:
|
||||||
|
+ self.log_warn(
|
||||||
|
+ "WARNING: Node addresses '%s' may not resolve locally if you "
|
||||||
|
+ "are not running on a node in the cluster. Try using option "
|
||||||
|
+ "'-c pacemaker.only-corosync' if these connections fail."
|
||||||
|
+ % ','.join(_shorts)
|
||||||
|
+ )
|
||||||
|
+ return self.nodes
|
||||||
|
+
|
||||||
|
+ def get_nodes_from_crm(self):
|
||||||
|
+ """
|
||||||
|
+ Try to parse crm_mon output for node list and status.
|
||||||
|
+ """
|
||||||
|
+ xmlopt = '--output-as=xml'
|
||||||
|
+ # older pacemaker had a different option for xml output
|
||||||
|
+ _ver = self.exec_primary_cmd('crm_mon --version')
|
||||||
|
+ if _ver['status'] == 0:
|
||||||
|
+ cver = _ver['output'].split()[1].split('-')[0]
|
||||||
|
+ if not version.parse(cver) > version.parse('2.0.3'):
|
||||||
|
+ xmlopt = '--as-xml'
|
||||||
|
+ else:
|
||||||
|
+ return
|
||||||
|
+ _out = self.exec_primary_cmd(
|
||||||
|
+ "crm_mon --one-shot --inactive %s" % xmlopt,
|
||||||
|
+ need_root=True
|
||||||
|
+ )
|
||||||
|
+ if _out['status'] == 0:
|
||||||
|
+ self.parse_crm_xml(_out['output'])
|
||||||
|
+
|
||||||
|
+ def parse_crm_xml(self, xmlstring):
|
||||||
|
+ """
|
||||||
|
+ Parse the xml output string provided by crm_mon
|
||||||
|
+ """
|
||||||
|
+ _xml = ElementTree.fromstring(xmlstring)
|
||||||
|
+ nodes = _xml.find('nodes')
|
||||||
|
+ for node in nodes:
|
||||||
|
+ _node = node.attrib
|
||||||
|
+ if self.get_option('online') and _node['online'] == 'true':
|
||||||
|
+ self.nodes.append(_node['name'])
|
||||||
|
+ elif self.get_option('offline') and _node['online'] == 'false':
|
||||||
|
+ self.nodes.append(_node['name'])
|
||||||
|
+
|
||||||
|
+ def get_nodes_from_corosync(self):
|
||||||
|
+ """
|
||||||
|
+ As a fallback measure, read corosync.conf to get the node list. Note
|
||||||
|
+ that this prevents us from separating online nodes from offline nodes.
|
||||||
|
+ """
|
||||||
|
+ self.log_warn("WARNING: unable to distinguish online nodes from "
|
||||||
|
+ "offline nodes when sourcing from corosync.conf")
|
||||||
|
+ cc = self.primary.read_file('/etc/corosync/corosync.conf')
|
||||||
|
+ nodes = re.findall(r'((\sring0_addr:)(.*))', cc)
|
||||||
|
+ for node in nodes:
|
||||||
|
+ self.nodes.append(node[-1].strip())
|
||||||
|
|
||||||
|
# vim: set et ts=4 sw=4 :
|
||||||
|
--
|
||||||
|
2.34.3
|
||||||
|
|
||||||
|
|
||||||
|
From 6701a7d77ecc998b018b54ecc00f9fd102ae9518 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Jake Hunsaker <jhunsake@redhat.com>
|
||||||
|
Date: Mon, 21 Mar 2022 12:05:59 -0400
|
||||||
|
Subject: [PATCH 2/2] [clusters] Allow clusters to not add localhost to node
|
||||||
|
list
|
||||||
|
|
||||||
|
For most of our supported clusters, we end up needing to add the
|
||||||
|
local host executing `sos collect` to the node list (unless `--no-local`
|
||||||
|
is used) as that accounts for the primary node that may otherwise be
|
||||||
|
left off. However, this is not helpful for clusters that may reports
|
||||||
|
node names as something other than resolveable names. In those cases,
|
||||||
|
such as with pacemaker, adding the local hostname may result in
|
||||||
|
duplicate collections.
|
||||||
|
|
||||||
|
Add a toggle to cluster profiles via a new `strict_node_list` class attr
|
||||||
|
that, if True, will skip this addition. This toggle is default `False`
|
||||||
|
to preserve existing behavior, and is now enabled for `pacemaker`
|
||||||
|
specifically.
|
||||||
|
|
||||||
|
Related: RHBZ#2065821
|
||||||
|
|
||||||
|
Signed-off-by: Jake Hunsaker <jhunsake@redhat.com>
|
||||||
|
---
|
||||||
|
sos/collector/__init__.py | 3 ++-
|
||||||
|
sos/collector/clusters/__init__.py | 4 ++++
|
||||||
|
sos/collector/clusters/pacemaker.py | 1 +
|
||||||
|
3 files changed, 7 insertions(+), 1 deletion(-)
|
||||||
|
|
||||||
|
diff --git a/sos/collector/__init__.py b/sos/collector/__init__.py
|
||||||
|
index a8bb0064..d898ca34 100644
|
||||||
|
--- a/sos/collector/__init__.py
|
||||||
|
+++ b/sos/collector/__init__.py
|
||||||
|
@@ -1073,7 +1073,8 @@ class SoSCollector(SoSComponent):
|
||||||
|
for node in self.node_list:
|
||||||
|
if host == node.split('.')[0]:
|
||||||
|
self.node_list.remove(node)
|
||||||
|
- self.node_list.append(self.hostname)
|
||||||
|
+ if not self.cluster.strict_node_list:
|
||||||
|
+ self.node_list.append(self.hostname)
|
||||||
|
self.reduce_node_list()
|
||||||
|
try:
|
||||||
|
_node_max = len(max(self.node_list, key=len))
|
||||||
|
diff --git a/sos/collector/clusters/__init__.py b/sos/collector/clusters/__init__.py
|
||||||
|
index f3f550ad..f00677b8 100644
|
||||||
|
--- a/sos/collector/clusters/__init__.py
|
||||||
|
+++ b/sos/collector/clusters/__init__.py
|
||||||
|
@@ -57,6 +57,10 @@ class Cluster():
|
||||||
|
sos_plugin_options = {}
|
||||||
|
sos_preset = ''
|
||||||
|
cluster_name = None
|
||||||
|
+ # set this to True if the local host running collect should *not* be
|
||||||
|
+ # forcibly added to the node list. This can be helpful in situations where
|
||||||
|
+ # the host's fqdn and the name the cluster uses are different
|
||||||
|
+ strict_node_list = False
|
||||||
|
|
||||||
|
def __init__(self, commons):
|
||||||
|
self.primary = None
|
||||||
|
diff --git a/sos/collector/clusters/pacemaker.py b/sos/collector/clusters/pacemaker.py
|
||||||
|
index 49d0ce51..bebcb265 100644
|
||||||
|
--- a/sos/collector/clusters/pacemaker.py
|
||||||
|
+++ b/sos/collector/clusters/pacemaker.py
|
||||||
|
@@ -20,6 +20,7 @@ class pacemaker(Cluster):
|
||||||
|
cluster_name = 'Pacemaker High Availability Cluster Manager'
|
||||||
|
sos_plugins = ['pacemaker']
|
||||||
|
packages = ('pacemaker',)
|
||||||
|
+ strict_node_list = True
|
||||||
|
option_list = [
|
||||||
|
('online', True, 'Collect nodes listed as online'),
|
||||||
|
('offline', True, 'Collect nodes listed as offline'),
|
||||||
|
--
|
||||||
|
2.34.3
|
||||||
|
|
39
sos-bz2079187-honor-default-plugin-timeout.patch
Normal file
39
sos-bz2079187-honor-default-plugin-timeout.patch
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
From 7069e99d1c5c443f96a98a7ed6db67fa14683e67 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Pavel Moravec <pmoravec@redhat.com>
|
||||||
|
Date: Thu, 17 Feb 2022 09:14:15 +0100
|
||||||
|
Subject: [PATCH] [report] Honor plugins' hardcoded plugin_timeout
|
||||||
|
|
||||||
|
Currently, plugin's plugin_timeout hardcoded default is superseded by
|
||||||
|
whatever --plugin-timeout value, even when this option is not used and
|
||||||
|
we eval it to TIMEOUT_DEFAULT.
|
||||||
|
|
||||||
|
In this case of not setting --plugin-timeout either -k plugin.timeout,
|
||||||
|
honour plugin's plugin_timeout instead.
|
||||||
|
|
||||||
|
Resolves: #2863
|
||||||
|
Closes: #2864
|
||||||
|
|
||||||
|
Signed-off-by: Pavel Moravec <pmoravec@redhat.com>
|
||||||
|
---
|
||||||
|
sos/report/plugins/__init__.py | 5 ++++-
|
||||||
|
1 file changed, 4 insertions(+), 1 deletion(-)
|
||||||
|
|
||||||
|
diff --git a/sos/report/plugins/__init__.py b/sos/report/plugins/__init__.py
|
||||||
|
index cc5cb65b..336b4d22 100644
|
||||||
|
--- a/sos/report/plugins/__init__.py
|
||||||
|
+++ b/sos/report/plugins/__init__.py
|
||||||
|
@@ -636,7 +636,10 @@ class Plugin():
|
||||||
|
if opt_timeout is None:
|
||||||
|
_timeout = own_timeout
|
||||||
|
elif opt_timeout is not None and own_timeout == -1:
|
||||||
|
- _timeout = int(opt_timeout)
|
||||||
|
+ if opt_timeout == TIMEOUT_DEFAULT:
|
||||||
|
+ _timeout = default_timeout
|
||||||
|
+ else:
|
||||||
|
+ _timeout = int(opt_timeout)
|
||||||
|
elif opt_timeout is not None and own_timeout > -1:
|
||||||
|
_timeout = own_timeout
|
||||||
|
else:
|
||||||
|
--
|
||||||
|
2.34.3
|
||||||
|
|
68
sos-bz2079484-list-plugins-ignore-options.patch
Normal file
68
sos-bz2079484-list-plugins-ignore-options.patch
Normal file
@ -0,0 +1,68 @@
|
|||||||
|
From f3dc8cd574614572d441f76c02453fd85d0c57e2 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Jake Hunsaker <jhunsake@redhat.com>
|
||||||
|
Date: Wed, 27 Apr 2022 10:40:55 -0400
|
||||||
|
Subject: [PATCH] [report] --list-plugins should report used, not default,
|
||||||
|
option values
|
||||||
|
|
||||||
|
When using `--list-plugins`, sos should report the values that will be
|
||||||
|
used in a given command, or with a given config file, not what the
|
||||||
|
default values are.
|
||||||
|
|
||||||
|
By reporting the set value, users can be sure their configuration or
|
||||||
|
commandline settings are being honored correctly before executing a
|
||||||
|
report collection.
|
||||||
|
|
||||||
|
Closes: #2921
|
||||||
|
|
||||||
|
Signed-off-by: Jake Hunsaker <jhunsake@redhat.com>
|
||||||
|
---
|
||||||
|
sos/report/__init__.py | 22 +++++++++++++++-------
|
||||||
|
1 file changed, 15 insertions(+), 7 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/sos/report/__init__.py b/sos/report/__init__.py
|
||||||
|
index 74c7973a..8735c903 100644
|
||||||
|
--- a/sos/report/__init__.py
|
||||||
|
+++ b/sos/report/__init__.py
|
||||||
|
@@ -868,24 +868,32 @@ class SoSReport(SoSComponent):
|
||||||
|
_defaults = self.loaded_plugins[0][1].get_default_plugin_opts()
|
||||||
|
for _opt in _defaults:
|
||||||
|
opt = _defaults[_opt]
|
||||||
|
- val = opt.default
|
||||||
|
- if opt.default == -1:
|
||||||
|
- val = TIMEOUT_DEFAULT
|
||||||
|
+ val = opt.value
|
||||||
|
+ if opt.value == -1:
|
||||||
|
+ if _opt == 'timeout':
|
||||||
|
+ val = self.opts.plugin_timeout or TIMEOUT_DEFAULT
|
||||||
|
+ elif _opt == 'cmd-timeout':
|
||||||
|
+ val = self.opts.cmd_timeout or TIMEOUT_DEFAULT
|
||||||
|
+ else:
|
||||||
|
+ val = TIMEOUT_DEFAULT
|
||||||
|
+ if opt.name == 'postproc':
|
||||||
|
+ val = not self.opts.no_postproc
|
||||||
|
self.ui_log.info(" %-25s %-15s %s" % (opt.name, val, opt.desc))
|
||||||
|
self.ui_log.info("")
|
||||||
|
|
||||||
|
self.ui_log.info(_("The following plugin options are available:"))
|
||||||
|
for opt in self.all_options:
|
||||||
|
if opt.name in ('timeout', 'postproc', 'cmd-timeout'):
|
||||||
|
- continue
|
||||||
|
+ if opt.value == opt.default:
|
||||||
|
+ continue
|
||||||
|
# format option value based on its type (int or bool)
|
||||||
|
- if isinstance(opt.default, bool):
|
||||||
|
- if opt.default is True:
|
||||||
|
+ if isinstance(opt.value, bool):
|
||||||
|
+ if opt.value is True:
|
||||||
|
tmpopt = "on"
|
||||||
|
else:
|
||||||
|
tmpopt = "off"
|
||||||
|
else:
|
||||||
|
- tmpopt = opt.default
|
||||||
|
+ tmpopt = opt.value
|
||||||
|
|
||||||
|
if tmpopt is None:
|
||||||
|
tmpopt = 0
|
||||||
|
--
|
||||||
|
2.34.3
|
||||||
|
|
34
sos-bz2079485-plugopts-valtype-str.patch
Normal file
34
sos-bz2079485-plugopts-valtype-str.patch
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
From 9b10abcdd4aaa41e2549438d5bc52ece86dcb21f Mon Sep 17 00:00:00 2001
|
||||||
|
From: Pavel Moravec <pmoravec@redhat.com>
|
||||||
|
Date: Sat, 7 May 2022 14:23:04 +0200
|
||||||
|
Subject: [PATCH] [plugins] Allow 'str' PlugOpt type to accept any value
|
||||||
|
|
||||||
|
For PlugOpt type 'str', we should allow any content including e.g.
|
||||||
|
numbers, and interpret it as a string.
|
||||||
|
|
||||||
|
Resolves: #2922
|
||||||
|
Closes: #2935
|
||||||
|
|
||||||
|
Signed-off-by: Pavel Moravec <pmoravec@redhat.com>
|
||||||
|
---
|
||||||
|
sos/report/plugins/__init__.py | 4 ++++
|
||||||
|
1 file changed, 4 insertions(+)
|
||||||
|
|
||||||
|
diff --git a/sos/report/plugins/__init__.py b/sos/report/plugins/__init__.py
|
||||||
|
index d6be42b9..2a42e6b0 100644
|
||||||
|
--- a/sos/report/plugins/__init__.py
|
||||||
|
+++ b/sos/report/plugins/__init__.py
|
||||||
|
@@ -452,6 +452,10 @@ class PluginOpt():
|
||||||
|
return self.__str__()
|
||||||
|
|
||||||
|
def set_value(self, val):
|
||||||
|
+ # 'str' type accepts any value, incl. numbers
|
||||||
|
+ if type('') in self.val_type:
|
||||||
|
+ self.value = str(val)
|
||||||
|
+ return
|
||||||
|
if not any([type(val) == _t for _t in self.val_type]):
|
||||||
|
valid = []
|
||||||
|
for t in self.val_type:
|
||||||
|
--
|
||||||
|
2.34.3
|
||||||
|
|
31
sos-bz2079486-timeouted-exec-cmd-exception.patch
Normal file
31
sos-bz2079486-timeouted-exec-cmd-exception.patch
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
From 5e27b92a8a9f066af4c41ddd0bedc7c69187ff52 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Pavel Moravec <pmoravec@redhat.com>
|
||||||
|
Date: Mon, 2 May 2022 22:13:34 +0200
|
||||||
|
Subject: [PATCH] [utilities] Close file only when storing to file
|
||||||
|
|
||||||
|
Call _output.close() only when to_file=true.
|
||||||
|
|
||||||
|
Closes: #2925
|
||||||
|
|
||||||
|
Signed-off-by: Pavel Moravec <pmoravec@redhat.com>
|
||||||
|
---
|
||||||
|
sos/utilities.py | 3 ++-
|
||||||
|
1 file changed, 2 insertions(+), 1 deletion(-)
|
||||||
|
|
||||||
|
diff --git a/sos/utilities.py b/sos/utilities.py
|
||||||
|
index d2f73d86..1075d1d4 100644
|
||||||
|
--- a/sos/utilities.py
|
||||||
|
+++ b/sos/utilities.py
|
||||||
|
@@ -212,7 +212,8 @@ def sos_get_command_output(command, timeout=TIMEOUT_DEFAULT, stderr=False,
|
||||||
|
p.wait(timeout if timeout else None)
|
||||||
|
except Exception:
|
||||||
|
p.terminate()
|
||||||
|
- _output.close()
|
||||||
|
+ if to_file:
|
||||||
|
+ _output.close()
|
||||||
|
# until we separate timeouts from the `timeout` command
|
||||||
|
# handle per-cmd timeouts via Plugin status checks
|
||||||
|
return {'status': 124, 'output': reader.get_contents(),
|
||||||
|
--
|
||||||
|
2.34.3
|
||||||
|
|
73
sos-bz2092969-openshift-ovn-disabled.patch
Normal file
73
sos-bz2092969-openshift-ovn-disabled.patch
Normal file
@ -0,0 +1,73 @@
|
|||||||
|
From c2e66fa4dae51f03c7310ba5278897ddecac1aad Mon Sep 17 00:00:00 2001
|
||||||
|
From: Nadia Pinaeva <npinaeva@redhat.com>
|
||||||
|
Date: Thu, 2 Jun 2022 15:43:09 +0200
|
||||||
|
Subject: [PATCH] crio: switch from parsing output in table format to json
|
||||||
|
|
||||||
|
Signed-off-by: Nadia Pinaeva <npinaeva@redhat.com>
|
||||||
|
---
|
||||||
|
sos/policies/runtimes/crio.py | 30 ++++++++++++++++++++----------
|
||||||
|
1 file changed, 20 insertions(+), 10 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/sos/policies/runtimes/crio.py b/sos/policies/runtimes/crio.py
|
||||||
|
index 55082d07..4cae1ecc 100644
|
||||||
|
--- a/sos/policies/runtimes/crio.py
|
||||||
|
+++ b/sos/policies/runtimes/crio.py
|
||||||
|
@@ -7,6 +7,7 @@
|
||||||
|
# version 2 of the GNU General Public License.
|
||||||
|
#
|
||||||
|
# See the LICENSE file in the source distribution for further information.
|
||||||
|
+import json
|
||||||
|
|
||||||
|
from sos.policies.runtimes import ContainerRuntime
|
||||||
|
from sos.utilities import sos_get_command_output
|
||||||
|
@@ -29,14 +30,15 @@ class CrioContainerRuntime(ContainerRuntime):
|
||||||
|
:type get_all: ``bool``
|
||||||
|
"""
|
||||||
|
containers = []
|
||||||
|
- _cmd = "%s ps %s" % (self.binary, '-a' if get_all else '')
|
||||||
|
+ _cmd = "%s ps %s -o json" % (self.binary, '-a' if get_all else '')
|
||||||
|
if self.active:
|
||||||
|
out = sos_get_command_output(_cmd, chroot=self.policy.sysroot)
|
||||||
|
- if out['status'] == 0:
|
||||||
|
- for ent in out['output'].splitlines()[1:]:
|
||||||
|
- ent = ent.split()
|
||||||
|
+ if out["status"] == 0:
|
||||||
|
+ out_json = json.loads(out["output"])
|
||||||
|
+ for container in out_json["containers"]:
|
||||||
|
# takes the form (container_id, container_name)
|
||||||
|
- containers.append((ent[0], ent[-3]))
|
||||||
|
+ containers.append(
|
||||||
|
+ (container["id"], container["metadata"]["name"]))
|
||||||
|
return containers
|
||||||
|
|
||||||
|
def get_images(self):
|
||||||
|
@@ -47,13 +49,21 @@ class CrioContainerRuntime(ContainerRuntime):
|
||||||
|
"""
|
||||||
|
images = []
|
||||||
|
if self.active:
|
||||||
|
- out = sos_get_command_output("%s images" % self.binary,
|
||||||
|
+ out = sos_get_command_output("%s images -o json" % self.binary,
|
||||||
|
chroot=self.policy.sysroot)
|
||||||
|
if out['status'] == 0:
|
||||||
|
- for ent in out['output'].splitlines():
|
||||||
|
- ent = ent.split()
|
||||||
|
- # takes the form (image_name, image_id)
|
||||||
|
- images.append((ent[0] + ':' + ent[1], ent[2]))
|
||||||
|
+ out_json = json.loads(out["output"])
|
||||||
|
+ for image in out_json["images"]:
|
||||||
|
+ # takes the form (repository:tag, image_id)
|
||||||
|
+ if len(image["repoTags"]) > 0:
|
||||||
|
+ for repo_tag in image["repoTags"]:
|
||||||
|
+ images.append((repo_tag, image["id"]))
|
||||||
|
+ else:
|
||||||
|
+ if len(image["repoDigests"]) == 0:
|
||||||
|
+ image_name = "<none>"
|
||||||
|
+ else:
|
||||||
|
+ image_name = image["repoDigests"][0].split("@")[0]
|
||||||
|
+ images.append((image_name + ":<none>", image["id"]))
|
||||||
|
return images
|
||||||
|
|
||||||
|
def fmt_container_cmd(self, container, cmd, quotecmd):
|
||||||
|
--
|
||||||
|
2.34.3
|
||||||
|
|
66
sos-bz2095263-ovirt-answer-files-passwords.patch
Normal file
66
sos-bz2095263-ovirt-answer-files-passwords.patch
Normal file
@ -0,0 +1,66 @@
|
|||||||
|
From 5fd872c64c53af37015f366295e0c2418c969757 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Yedidyah Bar David <didi@redhat.com>
|
||||||
|
Date: Thu, 26 May 2022 16:43:21 +0300
|
||||||
|
Subject: [PATCH] [ovirt] answer files: Filter out all password keys
|
||||||
|
|
||||||
|
Instead of hard-coding specific keys and having to maintain them over
|
||||||
|
time, replace the values of all keys that have 'password' in their name.
|
||||||
|
I think this covers all our current and hopefully future keys. It might
|
||||||
|
add "false positives" - keys that are not passwords but have 'password'
|
||||||
|
in their name - and I think that's a risk worth taking.
|
||||||
|
|
||||||
|
Sadly, the engine admin password prompt's name is
|
||||||
|
'OVESETUP_CONFIG_ADMIN_SETUP', which does not include 'password', so has
|
||||||
|
to be listed specifically.
|
||||||
|
|
||||||
|
A partial list of keys added since the replaced code was written:
|
||||||
|
- grafana-related stuff
|
||||||
|
- keycloak-related stuff
|
||||||
|
- otopi-style answer files
|
||||||
|
|
||||||
|
Signed-off-by: Yedidyah Bar David <didi@redhat.com>
|
||||||
|
Change-Id: I416c6e4078e7c3638493eb271d08d73a0c22b5ba
|
||||||
|
---
|
||||||
|
sos/report/plugins/ovirt.py | 23 +++++++++++++----------
|
||||||
|
1 file changed, 13 insertions(+), 10 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/sos/report/plugins/ovirt.py b/sos/report/plugins/ovirt.py
|
||||||
|
index 09647bf1..3b1bb29b 100644
|
||||||
|
--- a/sos/report/plugins/ovirt.py
|
||||||
|
+++ b/sos/report/plugins/ovirt.py
|
||||||
|
@@ -241,19 +241,22 @@ class Ovirt(Plugin, RedHatPlugin):
|
||||||
|
r'{key}=********'.format(key=key)
|
||||||
|
)
|
||||||
|
|
||||||
|
- # Answer files contain passwords
|
||||||
|
- for key in (
|
||||||
|
- 'OVESETUP_CONFIG/adminPassword',
|
||||||
|
- 'OVESETUP_CONFIG/remoteEngineHostRootPassword',
|
||||||
|
- 'OVESETUP_DWH_DB/password',
|
||||||
|
- 'OVESETUP_DB/password',
|
||||||
|
- 'OVESETUP_REPORTS_CONFIG/adminPassword',
|
||||||
|
- 'OVESETUP_REPORTS_DB/password',
|
||||||
|
+ # Answer files contain passwords.
|
||||||
|
+ # Replace all keys that have 'password' in them, instead of hard-coding
|
||||||
|
+ # here the list of keys, which changes between versions.
|
||||||
|
+ # Sadly, the engine admin password prompt name does not contain
|
||||||
|
+ # 'password'... so neither does the env key.
|
||||||
|
+ for item in (
|
||||||
|
+ 'password',
|
||||||
|
+ 'OVESETUP_CONFIG_ADMIN_SETUP',
|
||||||
|
):
|
||||||
|
self.do_path_regex_sub(
|
||||||
|
r'/var/lib/ovirt-engine/setup/answers/.*',
|
||||||
|
- r'{key}=(.*)'.format(key=key),
|
||||||
|
- r'{key}=********'.format(key=key)
|
||||||
|
+ re.compile(
|
||||||
|
+ r'(?P<key>[^=]*{item}[^=]*)=.*'.format(item=item),
|
||||||
|
+ flags=re.IGNORECASE
|
||||||
|
+ ),
|
||||||
|
+ r'\g<key>=********'
|
||||||
|
)
|
||||||
|
|
||||||
|
# aaa profiles contain passwords
|
||||||
|
--
|
||||||
|
2.34.3
|
||||||
|
|
42
sos.spec
42
sos.spec
@ -5,7 +5,7 @@
|
|||||||
Summary: A set of tools to gather troubleshooting information from a system
|
Summary: A set of tools to gather troubleshooting information from a system
|
||||||
Name: sos
|
Name: sos
|
||||||
Version: 4.3
|
Version: 4.3
|
||||||
Release: 1%{?dist}
|
Release: 2%{?dist}
|
||||||
Group: Applications/System
|
Group: Applications/System
|
||||||
Source0: https://github.com/sosreport/sos/archive/%{version}/sos-%{version}.tar.gz
|
Source0: https://github.com/sosreport/sos/archive/%{version}/sos-%{version}.tar.gz
|
||||||
Source1: sos-audit-%{auditversion}.tgz
|
Source1: sos-audit-%{auditversion}.tgz
|
||||||
@ -22,6 +22,16 @@ Obsoletes: sos-collector
|
|||||||
Recommends: python3-pexpect
|
Recommends: python3-pexpect
|
||||||
Recommends: python3-requests
|
Recommends: python3-requests
|
||||||
Patch1: sos-bz2055002-rebase-sos-add-sos-help.patch
|
Patch1: sos-bz2055002-rebase-sos-add-sos-help.patch
|
||||||
|
Patch2: sos-bz2095263-ovirt-answer-files-passwords.patch
|
||||||
|
Patch3: sos-bz2079485-plugopts-valtype-str.patch
|
||||||
|
Patch4: sos-bz2062908-tigervnc-update-collections.patch
|
||||||
|
Patch5: sos-bz2065805-collect-pacemaker-cluster.patch
|
||||||
|
Patch6: sos-bz2079187-honor-default-plugin-timeout.patch
|
||||||
|
Patch7: sos-bz2079484-list-plugins-ignore-options.patch
|
||||||
|
Patch8: sos-bz2079486-timeouted-exec-cmd-exception.patch
|
||||||
|
Patch9: sos-bz2058279-ocp-backports.patch
|
||||||
|
Patch10: sos-bz2092969-openshift-ovn-disabled.patch
|
||||||
|
|
||||||
|
|
||||||
%description
|
%description
|
||||||
Sos is a set of tools that gathers information about system
|
Sos is a set of tools that gathers information about system
|
||||||
@ -33,6 +43,16 @@ support technicians and developers.
|
|||||||
%setup -qn %{name}-%{version}
|
%setup -qn %{name}-%{version}
|
||||||
%setup -T -D -a1 -q
|
%setup -T -D -a1 -q
|
||||||
%patch1 -p1
|
%patch1 -p1
|
||||||
|
%patch2 -p1
|
||||||
|
%patch3 -p1
|
||||||
|
%patch4 -p1
|
||||||
|
%patch5 -p1
|
||||||
|
%patch6 -p1
|
||||||
|
%patch7 -p1
|
||||||
|
%patch8 -p1
|
||||||
|
%patch9 -p1
|
||||||
|
%patch10 -p1
|
||||||
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%py3_build
|
%py3_build
|
||||||
@ -100,6 +120,26 @@ of the system. Currently storage and filesystem commands are audited.
|
|||||||
%ghost /etc/audit/rules.d/40-sos-storage.rules
|
%ghost /etc/audit/rules.d/40-sos-storage.rules
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Thu Jun 16 2022 Pavel Moravec <pmoravec@redhat.com> = 4.3-2
|
||||||
|
- [ovirt] answer files: Filter out all password keys
|
||||||
|
Resolves: bz2095263
|
||||||
|
- [plugins] Allow 'str' PlugOpt type to accept any value
|
||||||
|
Resolves: bz2079485
|
||||||
|
- [tigervnc] Update collections for newer versions of TigerVNC
|
||||||
|
Resolves: bz2062908
|
||||||
|
- [pacemaker] Redesign node enumeration logic
|
||||||
|
Resolves: bz2065805
|
||||||
|
- crio: switch from parsing output in table format to json
|
||||||
|
Resolves: bz2092969
|
||||||
|
- [report] Honor plugins' hardcoded plugin_timeout
|
||||||
|
Resolves: bz2079187
|
||||||
|
- [report] --list-plugins should report used, not default,
|
||||||
|
Resolves: bz2079484
|
||||||
|
- [utilities] Close file only when storing to file
|
||||||
|
Resolves: bz2079486
|
||||||
|
- [presets] Adjust OCP preset options, more OCP backports
|
||||||
|
Resolves: bz2058279
|
||||||
|
|
||||||
* Mon Apr 04 2022 Pavel Moravec <pmoravec@redhat.com> = 4.3-1
|
* Mon Apr 04 2022 Pavel Moravec <pmoravec@redhat.com> = 4.3-1
|
||||||
- Rebase on upstream 4.3
|
- Rebase on upstream 4.3
|
||||||
Resolves: bz2055002
|
Resolves: bz2055002
|
||||||
|
Loading…
Reference in New Issue
Block a user