saltstack/salt

View on GitHub
salt/modules/ssh.py

Summary

Maintainability
F
1 wk
Test Coverage

File ssh.py has 1069 lines of code (exceeds 250 allowed). Consider refactoring.
Open

# -*- coding: utf-8 -*-
'''
Manage client ssh components

.. note::
Severity: Major
Found in salt/modules/ssh.py - About 2 days to fix

    Function set_known_host has a Cognitive Complexity of 59 (exceeds 5 allowed). Consider refactoring.
    Open

    def set_known_host(user=None,
                       hostname=None,
                       fingerprint=None,
                       key=None,
                       port=None,
    Severity: Minor
    Found in salt/modules/ssh.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 set_auth_key has a Cognitive Complexity of 49 (exceeds 5 allowed). Consider refactoring.
    Open

    def set_auth_key(
            user,
            key,
            enc='ssh-rsa',
            comment='',
    Severity: Minor
    Found in salt/modules/ssh.py - About 7 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 set_known_host. (51)
    Open

    def set_known_host(user=None,
                       hostname=None,
                       fingerprint=None,
                       key=None,
                       port=None,
    Severity: Minor
    Found in salt/modules/ssh.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 user_keys has a Cognitive Complexity of 27 (exceeds 5 allowed). Consider refactoring.
    Open

    def user_keys(user=None, pubfile=None, prvfile=None):
        '''
    
        Return the user's ssh keys on the minion
    
    
    Severity: Minor
    Found in salt/modules/ssh.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 host_keys has a Cognitive Complexity of 23 (exceeds 5 allowed). Consider refactoring.
    Open

    def host_keys(keydir=None, private=True, certs=True):
        '''
        Return the minion's host keys
    
        CLI Example:
    Severity: Minor
    Found in salt/modules/ssh.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 rm_auth_key has a Cognitive Complexity of 22 (exceeds 5 allowed). Consider refactoring.
    Open

    def rm_auth_key(user,
                    key,
                    config='.ssh/authorized_keys',
                    fingerprint_hash_type=None):
        '''
    Severity: Minor
    Found in salt/modules/ssh.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 set_auth_key. (24)
    Open

    def set_auth_key(
            user,
            key,
            enc='ssh-rsa',
            comment='',
    Severity: Minor
    Found in salt/modules/ssh.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 _validate_keys has a Cognitive Complexity of 15 (exceeds 5 allowed). Consider refactoring.
    Open

    def _validate_keys(key_file, fingerprint_hash_type):
        '''
        Return a dict containing validated keys in the passed file
        '''
        ret = {}
    Severity: Minor
    Found in salt/modules/ssh.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 check_known_host has a Cognitive Complexity of 14 (exceeds 5 allowed). Consider refactoring.
    Open

    def check_known_host(user=None, hostname=None, key=None, fingerprint=None,
                         config=None, port=None, fingerprint_hash_type=None):
        '''
        Check the record in known_hosts file, either by its value or by fingerprint
        (it's enough to set up either key or fingerprint, you don't need to set up
    Severity: Minor
    Found in salt/modules/ssh.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 _expand_authorized_keys_path has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
    Open

    def _expand_authorized_keys_path(path, user, home):
        '''
        Expand the AuthorizedKeysFile expression. Defined in man sshd_config(5)
        '''
        converted_path = ''
    Severity: Minor
    Found in salt/modules/ssh.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 auth_keys has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
    Open

    def auth_keys(user=None,
                  config='.ssh/authorized_keys',
                  fingerprint_hash_type=None):
        '''
        Return the authorized keys for users
    Severity: Minor
    Found in salt/modules/ssh.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 _replace_auth_key has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
    Open

    def _replace_auth_key(
            user,
            key,
            enc='ssh-rsa',
            comment='',
    Severity: Minor
    Found in salt/modules/ssh.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 _get_known_hosts_file has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
    Open

    def _get_known_hosts_file(config=None, user=None):
        if user:
            config = config or '.ssh/known_hosts'
        else:
            config = config or '/etc/ssh/ssh_known_hosts'
    Severity: Minor
    Found in salt/modules/ssh.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 set_auth_key_from_file has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
    Open

    def set_auth_key_from_file(user,
                               source,
                               config='.ssh/authorized_keys',
                               saltenv='base',
                               fingerprint_hash_type=None):
    Severity: Minor
    Found in salt/modules/ssh.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 _parse_openssh_output has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
    Open

    def _parse_openssh_output(lines, fingerprint_hash_type=None):
        '''
        Helper function which parses ssh-keygen -F and ssh-keyscan function output
        and yield dict with keys information, one by one.
        '''
    Severity: Minor
    Found in salt/modules/ssh.py - About 55 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 rm_auth_key_from_file has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
    Open

    def rm_auth_key_from_file(user,
                              source,
                              config='.ssh/authorized_keys',
                              saltenv='base',
                              fingerprint_hash_type=None):
    Severity: Minor
    Found in salt/modules/ssh.py - About 55 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 deeply nested control flow statements.
    Open

                            if _fh.read(1) != b'\n':
                                _fh.write(b'\n')
                    _fh.write(salt.utils.stringutils.to_bytes(auth_line))
    Severity: Major
    Found in salt/modules/ssh.py - About 45 mins to fix

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

      def rm_known_host(user=None, hostname=None, config=None, port=None):
          '''
          Remove all keys belonging to hostname from a known_hosts file.
      
          CLI Example:
      Severity: Minor
      Found in salt/modules/ssh.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

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

      def _refine_enc(enc):
          '''
          Return the properly formatted ssh value for the authorized encryption key
          type. ecdsa defaults to 256 bits, must give full ecdsa enc schema string
          if using higher enc. If the type is not found, raise CommandExecutionError.
      Severity: Minor
      Found in salt/modules/ssh.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

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

      def _get_matched_host_line_numbers(lines, enc):
          '''
          Helper function which parses ssh-keygen -F function output and yield line
          number of known_hosts entries with encryption key type matching enc,
          one by one.
      Severity: Minor
      Found in salt/modules/ssh.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 'no change'
      Severity: Major
      Found in salt/modules/ssh.py - About 30 mins to fix

        Avoid too many return statements within this function.
        Open

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

          Avoid too many return statements within this function.
          Open

                      return 'fail'
          Severity: Major
          Found in salt/modules/ssh.py - About 30 mins to fix

            Avoid too many return statements within this function.
            Open

                                return {'status': 'exists', 'keys': stored_keys}
            Severity: Major
            Found in salt/modules/ssh.py - About 30 mins to fix

              Avoid too many return statements within this function.
              Open

                      return 'new'
              Severity: Major
              Found in salt/modules/ssh.py - About 30 mins to fix

                Avoid too many return statements within this function.
                Open

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

                  Avoid too many return statements within this function.
                  Open

                          return 'ssh-ed25519'
                  Severity: Major
                  Found in salt/modules/ssh.py - About 30 mins to fix

                    Avoid too many return statements within this function.
                    Open

                            return 'exists'
                    Severity: Major
                    Found in salt/modules/ssh.py - About 30 mins to fix

                      Avoid too many return statements within this function.
                      Open

                                  return 'no change'
                      Severity: Major
                      Found in salt/modules/ssh.py - About 30 mins to fix

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

                        def _fingerprint(public_key, fingerprint_hash_type):
                            '''
                            Return a public key fingerprint based on its base64-encoded representation
                        
                            The fingerprint string is formatted according to RFC 4716 (ch.4), that is,
                        Severity: Minor
                        Found in salt/modules/ssh.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 recv_known_host_entries has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                        Open

                        def recv_known_host_entries(hostname,
                                                    enc=None,
                                                    port=None,
                                                    hash_known_hosts=True,
                                                    timeout=5,
                        Severity: Minor
                        Found in salt/modules/ssh.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

                        Identical blocks of code found in 2 locations. Consider refactoring.
                        Open

                            if not salt.utils.platform.is_windows():
                                # ssh-keygen creates a new file, thus a chown is required.
                                if os.geteuid() == 0 and user:
                                    uinfo = __salt__['user.info'](user)
                                    os.chown(full, uinfo['uid'], uinfo['gid'])
                        Severity: Major
                        Found in salt/modules/ssh.py and 1 other location - About 3 hrs to fix
                        salt/modules/ssh.py on lines 1039..1043

                        Duplicated Code

                        Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                        Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                        When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                        Tuning

                        This issue has a mass of 73.

                        We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                        The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                        If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                        See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                        Refactorings

                        Further Reading

                        Identical blocks of code found in 2 locations. Consider refactoring.
                        Open

                            if not salt.utils.platform.is_windows():
                                # ssh-keygen creates a new file, thus a chown is required.
                                if os.geteuid() == 0 and user:
                                    uinfo = __salt__['user.info'](user)
                                    os.chown(full, uinfo['uid'], uinfo['gid'])
                        Severity: Major
                        Found in salt/modules/ssh.py and 1 other location - About 3 hrs to fix
                        salt/modules/ssh.py on lines 1378..1382

                        Duplicated Code

                        Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                        Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                        When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                        Tuning

                        This issue has a mass of 73.

                        We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                        The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                        If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                        See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                        Refactorings

                        Further Reading

                        Similar blocks of code found in 2 locations. Consider refactoring.
                        Open

                                    if not salt.utils.platform.is_windows():
                                        if os.geteuid() == 0:
                                            os.chown(fconfig, uinfo['uid'], uinfo['gid'])
                                        os.chmod(fconfig, 384)
                        Severity: Major
                        Found in salt/modules/ssh.py and 1 other location - About 2 hrs to fix
                        salt/modules/ssh.py on lines 755..758

                        Duplicated Code

                        Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                        Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                        When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                        Tuning

                        This issue has a mass of 63.

                        We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                        The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                        If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                        See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                        Refactorings

                        Further Reading

                        Similar blocks of code found in 2 locations. Consider refactoring.
                        Open

                                    if not salt.utils.platform.is_windows():
                                        if os.geteuid() == 0:
                                            os.chown(dpath, uinfo['uid'], uinfo['gid'])
                                        os.chmod(dpath, 448)
                        Severity: Major
                        Found in salt/modules/ssh.py and 1 other location - About 2 hrs to fix
                        salt/modules/ssh.py on lines 787..790

                        Duplicated Code

                        Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                        Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                        When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                        Tuning

                        This issue has a mass of 63.

                        We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                        The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                        If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                        See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                        Refactorings

                        Further Reading

                        Similar blocks of code found in 2 locations. Consider refactoring.
                        Open

                            try:
                                with salt.utils.files.fopen(full, 'ab') as ofile:
                                    ofile.writelines(salt.utils.data.encode(lines))
                            except (IOError, OSError) as exception:
                                raise CommandExecutionError(
                        Severity: Major
                        Found in salt/modules/ssh.py and 1 other location - About 2 hrs to fix
                        salt/modules/nftables.py on lines 359..365

                        Duplicated Code

                        Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                        Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                        When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                        Tuning

                        This issue has a mass of 61.

                        We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                        The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                        If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                        See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                        Refactorings

                        Further Reading

                        There are no issues that match your filters.

                        Category
                        Status