Server IP : 127.0.0.2 / Your IP : 3.142.124.139 Web Server : Apache/2.4.18 (Ubuntu) System : User : www-data ( ) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : disk_free_space,disk_total_space,diskfreespace,dl,exec,fpaththru,getmyuid,getmypid,highlight_file,ignore_user_abord,leak,listen,link,opcache_get_configuration,opcache_get_status,passthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,php_uname,phpinfo,posix_ctermid,posix_getcwd,posix_getegid,posix_geteuid,posix_getgid,posix_getgrgid,posix_getgrnam,posix_getgroups,posix_getlogin,posix_getpgid,posix_getpgrp,posix_getpid,posix,_getppid,posix_getpwnam,posix_getpwuid,posix_getrlimit,posix_getsid,posix_getuid,posix_isatty,posix_kill,posix_mkfifo,posix_setegid,posix_seteuid,posix_setgid,posix_setpgid,posix_setsid,posix_setuid,posix_times,posix_ttyname,posix_uname,pclose,popen,proc_open,proc_close,proc_get_status,proc_nice,proc_terminate,shell_exec,source,show_source,system,virtual MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/share/sosreport/sos/plugins/ |
Upload File : |
# Copyright (C) 2018 Mark Michelson <mmichels@redhat.com> # This file is part of the sos project: https://github.com/sosreport/sos # # This copyrighted material is made available to anyone wishing to use, # modify, copy, or redistribute it subject to the terms and conditions of # version 2 of the GNU General Public License. # # See the LICENSE file in the source distribution for further information. 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') _container_runtime = None _container_name = None def get_tables_from_schema(self, filename, skip=[]): if self._container_name: cmd = "%s exec %s cat %s" % ( self._container_runtime, self._container_name, filename) res = self.exec_cmd(cmd, foreground=True) if res['status'] != 0: self._log_error("Could not retrieve DB schema file from " "container %s" % self._container_name) return try: db = json.loads(res['output']) except Exception: self._log_error("Cannot parse JSON file %s" % filename) return else: try: with open(filename, 'r') as f: try: db = json.load(f) except Exception: self._log_error( "Cannot parse JSON file %s" % filename) return except IOError as ex: self._log_error( "Could not open DB schema file %s: %s" % (filename, ex)) return try: return [table for table in six.iterkeys( db['tables']) if table not in skip] except AttributeError: self._log_error("DB schema %s has no 'tables' key" % filename) def add_database_output(self, tables, cmds, ovn_cmd): if not tables: return for table in tables: cmds.append('%s list %s' % (ovn_cmd, table)) def running_in_container(self): for runtime in ["podman", "docker"]: container_status = self.exec_cmd(runtime + " ps") if container_status['status'] == 0: for line in container_status['output'].splitlines(): if "ovn-dbs-bundle" in line: self._container_name = line.split()[-1] self._container_runtime = runtime return True return False def check_enabled(self): return (self.running_in_container() or super(OVNCentral, self).check_enabled()) def setup(self): containerized = self.running_in_container() 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('/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-nbctl show', 'ovn-sbctl show', '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' nb_tables = self.get_tables_from_schema(os.path.join( schema_dir, 'ovn-nb.ovsschema')) sb_tables = self.get_tables_from_schema(os.path.join( schema_dir, 'ovn-sb.ovsschema'), ['Logical_Flow']) self.add_database_output(nb_tables, cmds, 'ovn-nbctl') self.add_database_output(sb_tables, cmds, 'ovn-sbctl') # If OVN is containerized, we need to run the above commands inside # the container. if containerized: cmds = ['%s exec %s %s' % (self._container_runtime, self._container_name, cmd) for cmd in cmds] self.add_cmd_output(cmds, foreground=True) 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', 'ovn2.*-central', ) class DebianOVNCentral(OVNCentral, DebianPlugin, UbuntuPlugin): packages = ('ovn-central', )