Blob Blame History Raw
From 10bb3b2d6f6817bb4ae96ba58865bff294e54f8d Mon Sep 17 00:00:00 2001
From: Mark Michelson <mmichels@redhat.com>
Date: Thu, 17 May 2018 16:43:58 -0400
Subject: [PATCH 1/2] [openvswitch] Add additional logging paths.

Openvswitch's logs can be located in alternate paths depending on the
installation. OpenStack installations, for instance, do not use the same
directories for logs as typical package installations.

Related: #1259

Signed-off-by: Mark Michelson <mmichels@redhat.com>
Signed-off-by: Bryn M. Reeves <bmr@redhat.com>
---
 sos/plugins/openvswitch.py | 19 ++++++++++++++++---
 1 file changed, 16 insertions(+), 3 deletions(-)

diff --git a/sos/plugins/openvswitch.py b/sos/plugins/openvswitch.py
index 6f1b41ac..ab908fbc 100644
--- a/sos/plugins/openvswitch.py
+++ b/sos/plugins/openvswitch.py
@@ -16,6 +16,9 @@
 
 from sos.plugins import Plugin, RedHatPlugin, DebianPlugin, UbuntuPlugin
 
+from os.path import join as path_join
+from os import environ
+
 
 class OpenVSwitch(Plugin):
     """ OpenVSwitch networking
@@ -28,12 +31,22 @@ class OpenVSwitch(Plugin):
         all_logs = self.get_option("all_logs")
         limit = self.get_option("log_size")
 
+        log_dirs = [
+            '/var/log/containers/openvswitch/',
+            '/var/log/openvswitch/',
+            '/usr/local/var/log/openvswitch/',
+        ]
+
+        if environ.get('OVS_LOGDIR'):
+            log_dirs.append(environ.get('OVS_LOGDIR'))
+
         if not all_logs:
-            self.add_copy_spec("/var/log/openvswitch/*.log",
+            self.add_copy_spec([path_join(ld, '*.log') for ld in log_dirs],
                                sizelimit=limit)
-        else:
-            self.add_copy_spec("/var/log/openvswitch/",
+            self.add_copy_spec([path_join(ld, '*.log') for ld in log_dirs],
                                sizelimit=limit)
+        else:
+            self.add_copy_spec(log_dirs, sizelimit=limit)
 
         self.add_copy_spec([
             "/var/run/openvswitch/ovsdb-server.pid",
-- 
2.13.6


From ac33925bac828246229a93da0f9b4e9218bca6b8 Mon Sep 17 00:00:00 2001
From: Mark Michelson <mmichels@redhat.com>
Date: Thu, 17 May 2018 16:50:40 -0400
Subject: [PATCH 2/2] [ovn] Add new plugins for Open Virtual Network

OVN is a sub-project of Openvswitch used to define logical networks for
a cluster of OVS instances. The two plugins defined here are
"ovn-central", which runs on a single server, and "ovn-host" which runs
on each of the hypervisors running OVS.

These plugins gather runtime information about the configured virtual
networks.

Resolves: #1259

Signed-off-by: Mark Michelson <mmichels@redhat.com>
Signed-off-by: Bryn M. Reeves <bmr@redhat.com>
---
 sos/plugins/ovn_central.py | 105 +++++++++++++++++++++++++++++++++++++++++++++
 sos/plugins/ovn_host.py    |  57 ++++++++++++++++++++++++
 2 files changed, 162 insertions(+)
 create mode 100644 sos/plugins/ovn_central.py
 create mode 100644 sos/plugins/ovn_host.py

diff --git a/sos/plugins/ovn_central.py b/sos/plugins/ovn_central.py
new file mode 100644
index 00000000..23c1faeb
--- /dev/null
+++ b/sos/plugins/ovn_central.py
@@ -0,0 +1,105 @@
+# Copyright (C) 2018 Mark Michelson <mmichels@redhat.com>
+
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+
+# You should have received a copy of the GNU General Public License along
+# with this program; if not, write to the Free Software Foundation, Inc.,
+# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+
+from sos.plugins import Plugin, RedHatPlugin, DebianPlugin, UbuntuPlugin
+import json
+import os
+import six
+
+
+class OVNCentral(Plugin):
+    """ OVN Northd
+    """
+    plugin_name = "ovn_central"
+    profiles = ('network', 'virt')
+
+    def add_database_output(self, filename, cmds, ovn_cmd, skip=[]):
+        try:
+            with open(filename, 'r') as f:
+                try:
+                    db = json.load(f)
+                except:
+                    # If json can't be parsed, then exit early
+                    self._log_error("Cannot parse JSON file %s" % filename)
+                    return
+                try:
+                    for table in six.iterkeys(db['tables']):
+                        if table not in skip:
+                            cmds.append('%s list %s' % (ovn_cmd, table))
+                except AttributeError:
+                    self._log_error("DB schema %s has no 'tables' key" %
+                                    filename)
+                    return
+        except IOError as ex:
+            self._log_error("Could not open DB schema file %s: %s" % (filename,
+                                                                      ex))
+            return
+
+    def setup(self):
+        ovs_rundir = os.environ.get('OVS_RUNDIR')
+        for pidfile in ['ovnnb_db.pid', 'ovnsb_db.pid', 'ovn-northd.pid']:
+            self.add_copy_spec([
+                os.path.join('/var/lib/openvswitch/ovn', pidfile),
+                os.path.join('/usr/local/var/run/openvswitch', pidfile),
+                os.path.join('/var/run/openvswitch/', pidfile),
+                os.path.join('/run/openvswitch/', pidfile),
+            ])
+
+            if ovs_rundir:
+                self.add_copy_spec(os.path.join(ovs_rundir, pidfile))
+
+        # Some user-friendly versions of DB output
+        cmds = [
+            'ovn-sbctl lflow-list',
+            'ovn-nbctl get-ssl',
+            'ovn-nbctl get-connection',
+            'ovn-sbctl get-ssl',
+            'ovn-sbctl get-connection',
+        ]
+
+        schema_dir = '/usr/share/openvswitch'
+
+        self.add_database_output(os.path.join(schema_dir, 'ovn-nb.ovsschema'),
+                                 cmds, 'ovn-nbctl')
+        self.add_database_output(os.path.join(schema_dir, 'ovn-sb.ovsschema'),
+                                 cmds, 'ovn-sbctl', ['Logical_Flow'])
+
+        self.add_cmd_output(cmds)
+
+        self.add_copy_spec("/etc/sysconfig/ovn-northd")
+
+        ovs_dbdir = os.environ.get('OVS_DBDIR')
+        for dbfile in ['ovnnb_db.db', 'ovnsb_db.db']:
+            self.add_copy_spec([
+                os.path.join('/var/lib/openvswitch/ovn', dbfile),
+                os.path.join('/usr/local/etc/openvswitch', dbfile),
+                os.path.join('/etc/openvswitch', dbfile),
+                os.path.join('/var/lib/openvswitch', dbfile),
+            ])
+            if ovs_dbdir:
+                self.add_copy_spec(os.path.join(ovs_dbdir, dbfile))
+
+        self.add_journal(units="ovn-northd")
+
+
+class RedHatOVNCentral(OVNCentral, RedHatPlugin):
+
+    packages = ('openvswitch-ovn-central', )
+
+
+class DebianOVNCentral(OVNCentral, DebianPlugin, UbuntuPlugin):
+
+    packages = ('ovn-central', )
diff --git a/sos/plugins/ovn_host.py b/sos/plugins/ovn_host.py
new file mode 100644
index 00000000..496f35bb
--- /dev/null
+++ b/sos/plugins/ovn_host.py
@@ -0,0 +1,57 @@
+# Copyright (C) 2018 Mark Michelson <mmichels@redhat.com>
+
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+
+# You should have received a copy of the GNU General Public License along
+# with this program; if not, write to the Free Software Foundation, Inc.,
+# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+
+import os
+from sos.plugins import Plugin, RedHatPlugin, DebianPlugin, UbuntuPlugin
+
+
+class OVNHost(Plugin):
+    """ OVN Controller
+    """
+    plugin_name = "ovn_host"
+    profiles = ('network', 'virt')
+
+    def setup(self):
+        pidfile = 'ovn-controller.pid'
+        pid_paths = [
+                '/var/lib/openvswitch/ovn',
+                '/usr/local/var/run/openvswitch',
+                '/var/run/openvswitch',
+                '/run/openvswitch'
+        ]
+        if os.environ.get('OVS_RUNDIR'):
+            pid_paths.append(os.environ.get('OVS_RUNDIR'))
+        self.add_copy_spec([os.path.join(pp, pidfile) for pp in pid_paths])
+
+        self.add_copy_spec('/etc/sysconfig/ovn-controller')
+
+        self.add_cmd_output([
+            'ovs-ofctl -O OpenFlow13 dump-flows br-int',
+            'ovs-vsctl list-br',
+            'ovs-vsctl list OpenVswitch',
+        ])
+
+        self.add_journal(units="ovn-controller")
+
+
+class RedHatOVNHost(OVNHost, RedHatPlugin):
+
+    packages = ('openvswitch-ovn-host', )
+
+
+class DebianOVNHost(OVNHost, DebianPlugin, UbuntuPlugin):
+
+    packages = ('ovn-host', )
-- 
2.13.6