saltstack/salt

View on GitHub
salt/modules/network.py

Summary

Maintainability
F
1 wk
Test Coverage

File network.py has 1463 lines of code (exceeds 250 allowed). Consider refactoring.
Open

# -*- coding: utf-8 -*-
'''
Module for gathering and managing network information
'''

Severity: Major
Found in salt/modules/network.py - About 3 days to fix

    Function traceroute has a Cognitive Complexity of 65 (exceeds 5 allowed). Consider refactoring.
    Open

    def traceroute(host):
        '''
        Performs a traceroute to a 3rd party host
    
        .. versionchanged:: 2015.8.0
    Severity: Minor
    Found in salt/modules/network.py - About 1 day to fix

    Cognitive Complexity

    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

    A method's cognitive complexity is based on a few simple rules:

    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
    • Code is considered more complex for each "break in the linear flow of the code"
    • Code is considered more complex when "flow breaking structures are nested"

    Further reading

    Function get_route has a Cognitive Complexity of 44 (exceeds 5 allowed). Consider refactoring.
    Open

    def get_route(ip):
        '''
        Return routing information for given destination ip
    
        .. versionadded:: 2015.5.3
    Severity: Minor
    Found in salt/modules/network.py - About 6 hrs to fix

    Cognitive Complexity

    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

    A method's cognitive complexity is based on a few simple rules:

    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
    • Code is considered more complex for each "break in the linear flow of the code"
    • Code is considered more complex when "flow breaking structures are nested"

    Further reading

    Function mod_hostname has a Cognitive Complexity of 42 (exceeds 5 allowed). Consider refactoring.
    Open

    def mod_hostname(hostname):
        '''
        Modify hostname
    
        .. versionchanged:: 2015.8.0
    Severity: Minor
    Found in salt/modules/network.py - About 6 hrs to fix

    Cognitive Complexity

    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

    A method's cognitive complexity is based on a few simple rules:

    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
    • Code is considered more complex for each "break in the linear flow of the code"
    • Code is considered more complex when "flow breaking structures are nested"

    Further reading

    Function _ip_route_linux has a Cognitive Complexity of 28 (exceeds 5 allowed). Consider refactoring.
    Open

    def _ip_route_linux():
        '''
        Return ip routing information for Linux distros
        (netstat is deprecated and may not be available)
        '''
    Severity: Minor
    Found in salt/modules/network.py - About 4 hrs to fix

    Cognitive Complexity

    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

    A method's cognitive complexity is based on a few simple rules:

    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
    • Code is considered more complex for each "break in the linear flow of the code"
    • Code is considered more complex when "flow breaking structures are nested"

    Further reading

    Cyclomatic complexity is too high in function mod_hostname. (34)
    Open

    def mod_hostname(hostname):
        '''
        Modify hostname
    
        .. versionchanged:: 2015.8.0
    Severity: Minor
    Found in salt/modules/network.py by radon

    Cyclomatic Complexity

    Cyclomatic Complexity corresponds to the number of decisions a block of code contains plus 1. This number (also called McCabe number) is equal to the number of linearly independent paths through the code. This number can be used as a guide when testing conditional logic in blocks.

    Radon analyzes the AST tree of a Python program to compute Cyclomatic Complexity. Statements have the following effects on Cyclomatic Complexity:

    Construct Effect on CC Reasoning
    if +1 An if statement is a single decision.
    elif +1 The elif statement adds another decision.
    else +0 The else statement does not cause a new decision. The decision is at the if.
    for +1 There is a decision at the start of the loop.
    while +1 There is a decision at the while statement.
    except +1 Each except branch adds a new conditional path of execution.
    finally +0 The finally block is unconditionally executed.
    with +1 The with statement roughly corresponds to a try/except block (see PEP 343 for details).
    assert +1 The assert statement internally roughly equals a conditional statement.
    Comprehension +1 A list/set/dict comprehension of generator expression is equivalent to a for loop.
    Boolean Operator +1 Every boolean operator (and, or) adds a decision point.

    Source: http://radon.readthedocs.org/en/latest/intro.html

    Function _ss_linux has a Cognitive Complexity of 26 (exceeds 5 allowed). Consider refactoring.
    Open

    def _ss_linux():
        '''
        Return ss information for Linux distros
        (netstat is deprecated and may not be available)
        '''
    Severity: Minor
    Found in salt/modules/network.py - About 3 hrs to fix

    Cognitive Complexity

    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

    A method's cognitive complexity is based on a few simple rules:

    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
    • Code is considered more complex for each "break in the linear flow of the code"
    • Code is considered more complex when "flow breaking structures are nested"

    Further reading

    Cyclomatic complexity is too high in function traceroute. (32)
    Open

    @salt.utils.decorators.path.which('traceroute')
    def traceroute(host):
        '''
        Performs a traceroute to a 3rd party host
    
    
    Severity: Minor
    Found in salt/modules/network.py by radon

    Cyclomatic Complexity

    Cyclomatic Complexity corresponds to the number of decisions a block of code contains plus 1. This number (also called McCabe number) is equal to the number of linearly independent paths through the code. This number can be used as a guide when testing conditional logic in blocks.

    Radon analyzes the AST tree of a Python program to compute Cyclomatic Complexity. Statements have the following effects on Cyclomatic Complexity:

    Construct Effect on CC Reasoning
    if +1 An if statement is a single decision.
    elif +1 The elif statement adds another decision.
    else +0 The else statement does not cause a new decision. The decision is at the if.
    for +1 There is a decision at the start of the loop.
    while +1 There is a decision at the while statement.
    except +1 Each except branch adds a new conditional path of execution.
    finally +0 The finally block is unconditionally executed.
    with +1 The with statement roughly corresponds to a try/except block (see PEP 343 for details).
    assert +1 The assert statement internally roughly equals a conditional statement.
    Comprehension +1 A list/set/dict comprehension of generator expression is equivalent to a for loop.
    Boolean Operator +1 Every boolean operator (and, or) adds a decision point.

    Source: http://radon.readthedocs.org/en/latest/intro.html

    Function _netstat_aix has a Cognitive Complexity of 25 (exceeds 5 allowed). Consider refactoring.
    Open

    def _netstat_aix():
        '''
        Return netstat information for SunOS flavors
        '''
        ret = []
    Severity: Minor
    Found in salt/modules/network.py - About 3 hrs to fix

    Cognitive Complexity

    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

    A method's cognitive complexity is based on a few simple rules:

    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
    • Code is considered more complex for each "break in the linear flow of the code"
    • Code is considered more complex when "flow breaking structures are nested"

    Further reading

    Function _netstat_bsd has a Cognitive Complexity of 22 (exceeds 5 allowed). Consider refactoring.
    Open

    def _netstat_bsd():
        '''
        Return netstat information for BSD flavors
        '''
        ret = []
    Severity: Minor
    Found in salt/modules/network.py - About 3 hrs to fix

    Cognitive Complexity

    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

    A method's cognitive complexity is based on a few simple rules:

    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
    • Code is considered more complex for each "break in the linear flow of the code"
    • Code is considered more complex when "flow breaking structures are nested"

    Further reading

    Function default_route has a Cognitive Complexity of 21 (exceeds 5 allowed). Consider refactoring.
    Open

    def default_route(family=None):
        '''
        Return default route(s) from routing table
    
        .. versionchanged:: 2015.8.0
    Severity: Minor
    Found in salt/modules/network.py - About 2 hrs to fix

    Cognitive Complexity

    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

    A method's cognitive complexity is based on a few simple rules:

    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
    • Code is considered more complex for each "break in the linear flow of the code"
    • Code is considered more complex when "flow breaking structures are nested"

    Further reading

    Function active_tcp has a Cognitive Complexity of 20 (exceeds 5 allowed). Consider refactoring.
    Open

    def active_tcp():
        '''
        Return a dict containing information on all of the running TCP connections (currently linux and solaris only)
    
        .. versionchanged:: 2015.8.4
    Severity: Minor
    Found in salt/modules/network.py - About 2 hrs to fix

    Cognitive Complexity

    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

    A method's cognitive complexity is based on a few simple rules:

    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
    • Code is considered more complex for each "break in the linear flow of the code"
    • Code is considered more complex when "flow breaking structures are nested"

    Further reading

    Function arp has a Cognitive Complexity of 18 (exceeds 5 allowed). Consider refactoring.
    Open

    def arp():
        '''
        Return the arp table from the minion
    
        .. versionchanged:: 2015.8.0
    Severity: Minor
    Found in salt/modules/network.py - About 2 hrs to fix

    Cognitive Complexity

    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

    A method's cognitive complexity is based on a few simple rules:

    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
    • Code is considered more complex for each "break in the linear flow of the code"
    • Code is considered more complex when "flow breaking structures are nested"

    Further reading

    Function _netinfo_openbsd has a Cognitive Complexity of 17 (exceeds 5 allowed). Consider refactoring.
    Open

    def _netinfo_openbsd():
        '''
        Get process information for network connections using fstat
        '''
        ret = {}
    Severity: Minor
    Found in salt/modules/network.py - About 2 hrs to fix

    Cognitive Complexity

    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

    A method's cognitive complexity is based on a few simple rules:

    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
    • Code is considered more complex for each "break in the linear flow of the code"
    • Code is considered more complex when "flow breaking structures are nested"

    Further reading

    Function ifacestartswith has a Cognitive Complexity of 16 (exceeds 5 allowed). Consider refactoring.
    Open

    def ifacestartswith(cidr):
        '''
        Retrieve the interface name from a specific CIDR
    
        .. versionadded:: 2016.11.0
    Severity: Minor
    Found in salt/modules/network.py - About 2 hrs to fix

    Cognitive Complexity

    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

    A method's cognitive complexity is based on a few simple rules:

    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
    • Code is considered more complex for each "break in the linear flow of the code"
    • Code is considered more complex when "flow breaking structures are nested"

    Further reading

    Function connect has a Cognitive Complexity of 16 (exceeds 5 allowed). Consider refactoring.
    Open

    def connect(host, port=None, **kwargs):
        '''
        Test connectivity to a host using a particular
        port from the minion.
    
    
    Severity: Minor
    Found in salt/modules/network.py - About 2 hrs to fix

    Cognitive Complexity

    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

    A method's cognitive complexity is based on a few simple rules:

    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
    • Code is considered more complex for each "break in the linear flow of the code"
    • Code is considered more complex when "flow breaking structures are nested"

    Further reading

    Function _netstat_sunos has a Cognitive Complexity of 14 (exceeds 5 allowed). Consider refactoring.
    Open

    def _netstat_sunos():
        '''
        Return netstat information for SunOS flavors
        '''
        log.warning('User and program not (yet) supported on SunOS')
    Severity: Minor
    Found in salt/modules/network.py - About 1 hr to fix

    Cognitive Complexity

    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

    A method's cognitive complexity is based on a few simple rules:

    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
    • Code is considered more complex for each "break in the linear flow of the code"
    • Code is considered more complex when "flow breaking structures are nested"

    Further reading

    Function routes has a Cognitive Complexity of 14 (exceeds 5 allowed). Consider refactoring.
    Open

    def routes(family=None):
        '''
        Return currently configured routes from routing table
    
        .. versionchanged:: 2015.8.0
    Severity: Minor
    Found in salt/modules/network.py - About 1 hr to fix

    Cognitive Complexity

    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

    A method's cognitive complexity is based on a few simple rules:

    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
    • Code is considered more complex for each "break in the linear flow of the code"
    • Code is considered more complex when "flow breaking structures are nested"

    Further reading

    Function ping has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
    Open

    def ping(host, timeout=False, return_boolean=False):
        '''
        Performs an ICMP ping to a host
    
        .. versionchanged:: 2015.8.0
    Severity: Minor
    Found in salt/modules/network.py - About 1 hr to fix

    Cognitive Complexity

    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

    A method's cognitive complexity is based on a few simple rules:

    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
    • Code is considered more complex for each "break in the linear flow of the code"
    • Code is considered more complex when "flow breaking structures are nested"

    Further reading

    Avoid deeply nested control flow statements.
    Open

                        if 'label' in inet:
                            intfnames.append(inet['label'])
                        else:
                            intfnames.append(ifname)
        return intfnames
    Severity: Major
    Found in salt/modules/network.py - About 45 mins to fix

      Function _get_bufsize_linux has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
      Open

      def _get_bufsize_linux(iface):
          '''
          Return network interface buffer information using ethtool
          '''
          ret = {'result': False}
      Severity: Minor
      Found in salt/modules/network.py - About 45 mins to fix

      Cognitive Complexity

      Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

      A method's cognitive complexity is based on a few simple rules:

      • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
      • Code is considered more complex for each "break in the linear flow of the code"
      • Code is considered more complex when "flow breaking structures are nested"

      Further reading

      Function _mod_bufsize_linux has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
      Open

      def _mod_bufsize_linux(iface, *args, **kwargs):
          '''
          Modify network interface buffer sizes using ethtool
          '''
          ret = {'result': False,
      Severity: Minor
      Found in salt/modules/network.py - About 45 mins to fix

      Cognitive Complexity

      Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

      A method's cognitive complexity is based on a few simple rules:

      • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
      • Code is considered more complex for each "break in the linear flow of the code"
      • Code is considered more complex when "flow breaking structures are nested"

      Further reading

      Consider simplifying this complex logical expression.
      Open

              if 'Darwin' in six.text_type(traceroute_version[1]) or \
                      'FreeBSD' in six.text_type(traceroute_version[1]) or \
                      __grains__['kernel'] in ('SunOS', 'AIX'):
                  try:
                      traceline = re.findall(r'\s*(\d*)\s+(.*)\s+\((.*)\)\s+(.*)$', line)[0]
      Severity: Major
      Found in salt/modules/network.py - About 40 mins to fix

        Function netstat has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
        Open

        def netstat():
            '''
            Return information on open ports and states
        
            .. note::
        Severity: Minor
        Found in salt/modules/network.py - About 35 mins to fix

        Cognitive Complexity

        Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

        A method's cognitive complexity is based on a few simple rules:

        • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
        • Code is considered more complex for each "break in the linear flow of the code"
        • Code is considered more complex when "flow breaking structures are nested"

        Further reading

        Avoid too many return statements within this function.
        Open

                return _netstat_aix()
        Severity: Major
        Found in salt/modules/network.py - About 30 mins to fix

          Avoid too many return statements within this function.
          Open

              return ret
          Severity: Major
          Found in salt/modules/network.py - About 30 mins to fix

            Function _netstat_route_linux has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
            Open

            def _netstat_route_linux():
                '''
                Return netstat routing information for Linux distros
                '''
                ret = []
            Severity: Minor
            Found in salt/modules/network.py - About 25 mins to fix

            Cognitive Complexity

            Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

            A method's cognitive complexity is based on a few simple rules:

            • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
            • Code is considered more complex for each "break in the linear flow of the code"
            • Code is considered more complex when "flow breaking structures are nested"

            Further reading

            Function _netstat_route_sunos has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
            Open

            def _netstat_route_sunos():
                '''
                Return netstat routing information for SunOS
                '''
                ret = []
            Severity: Minor
            Found in salt/modules/network.py - About 25 mins to fix

            Cognitive Complexity

            Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

            A method's cognitive complexity is based on a few simple rules:

            • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
            • Code is considered more complex for each "break in the linear flow of the code"
            • Code is considered more complex when "flow breaking structures are nested"

            Further reading

            Function _netstat_route_aix has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
            Open

            def _netstat_route_aix():
                '''
                Return netstat routing information for AIX
                '''
                ret = []
            Severity: Minor
            Found in salt/modules/network.py - About 25 mins to fix

            Cognitive Complexity

            Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

            A method's cognitive complexity is based on a few simple rules:

            • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
            • Code is considered more complex for each "break in the linear flow of the code"
            • Code is considered more complex when "flow breaking structures are nested"

            Further reading

            Function _netstat_route_freebsd has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
            Open

            def _netstat_route_freebsd():
                '''
                Return netstat routing information for FreeBSD and macOS
                '''
                ret = []
            Severity: Minor
            Found in salt/modules/network.py - About 25 mins to fix

            Cognitive Complexity

            Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

            A method's cognitive complexity is based on a few simple rules:

            • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
            • Code is considered more complex for each "break in the linear flow of the code"
            • Code is considered more complex when "flow breaking structures are nested"

            Further reading

            Function ip_addrs has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
            Open

            def ip_addrs(interface=None, include_loopback=False, cidr=None, type=None):
                '''
                Returns a list of IPv4 addresses assigned to the host. 127.0.0.1 is
                ignored, unless 'include_loopback=True' is indicated. If 'interface' is
                provided, then only IP addresses from that interface will be returned.
            Severity: Minor
            Found in salt/modules/network.py - About 25 mins to fix

            Cognitive Complexity

            Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

            A method's cognitive complexity is based on a few simple rules:

            • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
            • Code is considered more complex for each "break in the linear flow of the code"
            • Code is considered more complex when "flow breaking structures are nested"

            Further reading

            There are no issues that match your filters.

            Category
            Status