aboutsummaryrefslogtreecommitdiffstats
path: root/sos/plugins/networking.py
blob: 9205500778cde2c0ce9e100577bca5a9cd22daf8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
### 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., 675 Mass Ave, Cambridge, MA 02139, USA.

from sos.plugins import Plugin, RedHatPlugin
import os
import re

class networking(Plugin, RedHatPlugin):
    """network related information
    """
    optionList = [("traceroute", "collects a traceroute to rhn.redhat.com", "slow", False)]

    def get_bridge_name(self,brctlOut):
        """Return a list for which items are bridge name according to the
        output of brctl show stored in brctlFile.
        """
        out=[]
        for line in brctlOut[1].splitlines():
            if line.startswith("bridge name") \
		or line.isspace() \
		or line[:1].isspace():
                continue
            brName, brRest = line.split(None, 1)
            out.append(brName)
        return out

    def get_interface_name(self,ipaddrOut):
        """Return a dictionary for which key are interface name according to the
        output of ifconifg-a stored in ifconfigFile.
        """
        out={}
        for line in ipaddrOut[1].splitlines():
            match=re.match('.*link/ether', line)
            if match:
                int=match.string.split(':')[1].lstrip()
                out[int]=True
        return out

    def collectIPTable(self,tablename):
        """ When running the iptables command, it unfortunately auto-loads
        the modules before trying to get output.  Some people explicitly
        don't want this, so check if the modules are loaded before running
        the command.  If they aren't loaded, there can't possibly be any
        relevant rules in that table """


        (status, output, time) = self.callExtProg("/sbin/lsmod | grep -q "+tablename)
        if status == 0:
            cmd = "/sbin/iptables -t "+tablename+" -nvL"
            self.addCmdOutput(cmd)

    def setup(self):
        self.addCopySpecs([
            "/proc/net/",
            "/etc/nsswitch.conf",
            "/etc/yp.conf",
            "/etc/inetd.conf",
            "/etc/xinetd.conf",
            "/etc/xinetd.d",
            "/etc/host*",
            "/etc/resolv.conf"])
        ipaddrFile=self.getCmdOutputNow("/sbin/ip -o addr", root_symlink = "ip_addr")
        ipaddrOut=self.callExtProg("/sbin/ip -o addr")
        self.addCmdOutput("/sbin/route -n", root_symlink = "route")
        self.collectIPTable("filter")
        self.collectIPTable("nat")
        self.collectIPTable("mangle")
        self.addCmdOutput("/bin/netstat -s")
        self.addCmdOutput("/bin/netstat -agn")
        self.addCmdOutput("/bin/netstat -neopa", root_symlink = "netstat")
        self.addCmdOutput("/sbin/ip route show table all")
        self.addCmdOutput("/sbin/ip -6 route show table all")
        self.addCmdOutput("/sbin/ip link")
        self.addCmdOutput("/sbin/ip address")
        self.addCmdOutput("/sbin/ifenslave -a")
        self.addCmdOutput("/sbin/ip mroute show")
        self.addCmdOutput("/sbin/ip maddr show")
        self.addCmdOutput("/sbin/ip neigh show")
        if ipaddrOut:
            for eth in self.get_interface_name(ipaddrOut):
                self.addCmdOutput("/sbin/ethtool "+eth)
                self.addCmdOutput("/sbin/ethtool -i "+eth)
                self.addCmdOutput("/sbin/ethtool -k "+eth)
                self.addCmdOutput("/sbin/ethtool -S "+eth)
                self.addCmdOutput("/sbin/ethtool -a "+eth)
                self.addCmdOutput("/sbin/ethtool -c "+eth)
                self.addCmdOutput("/sbin/ethtool -g "+eth)
        if self.getOption("traceroute"):
            self.addCmdOutput("/bin/traceroute -n rhn.redhat.com")

        if os.path.exists("/usr/sbin/brctl"):
            brctlFile=self.addCmdOutput("/usr/sbin/brctl show")
            brctlOut=self.callExtProg("/usr/sbin/brctl show")
            if brctlOut:
                for brName in self.get_bridge_name(brctlOut):
                    self.addCmdOutput("/usr/sbin/brctl showstp "+brName)
        return