diff --git a/flawfinder b/flawfinder index 8c8b7d8..c8373c5 100755 --- a/flawfinder +++ b/flawfinder @@ -1,15 +1,11 @@ #!/usr/bin/env python -from __future__ import division - """flawfinder: Find potential security flaws ("hits") in source code. Usage: flawfinder [options] [source_code_file]+ See the man page for a description of the options.""" -version = "2.0.0" - # The default output is as follows: # filename:line_number [risk_level] (type) function_name: message # where "risk_level" goes from 0 to 5. 0=no risk, 5=maximum risk. @@ -56,47 +52,57 @@ version = "2.0.0" # start in that direction. Hopefully by then the developers of Python # will begin to make it easy to transition to newer versions of Python. -import sys, re, string, getopt -import pickle # To support load/save/diff of hitlist -import os, glob, operator # To support filename expansion on Windows +from __future__ import division +import functools +import sys +import re +import string +import getopt +import pickle # To support load/save/diff of hitlist +import os +import glob +import operator # To support filename expansion on Windows import os.path import time -import csv # To support generating CSV format +import csv # To support generating CSV format # import formatter +version = "2.0.0" + # Program Options - these are the default values: show_context = 0 minimum_level = 1 show_immediately = 0 -show_inputs = 0 # Only show inputs? -falsepositive = 0 # Work to remove false positives? -allowlink = 0 # Allow symbolic links? -skipdotdir = 1 # If 1, don't recurse into dirs beginning with "." - # Note: This doesn't affect the command line. -num_links_skipped = 0 # Number of links skipped. +show_inputs = 0 # Only show inputs? +falsepositive = 0 # Work to remove false positives? +allowlink = 0 # Allow symbolic links? +skipdotdir = 1 # If 1, don't recurse into dirs beginning with "." +# Note: This doesn't affect the command line. +num_links_skipped = 0 # Number of links skipped. num_dotdirs_skipped = 0 # Number of dotdirs skipped. show_columns = 0 -never_ignore = 0 # If true, NEVER ignore problems, even if directed. -list_rules = 0 # If true, list the rules (helpful for debugging) -patch_file = "" # File containing (unified) diff output. +never_ignore = 0 # If true, NEVER ignore problems, even if directed. +list_rules = 0 # If true, list the rules (helpful for debugging) +patch_file = "" # File containing (unified) diff output. loadhitlist = None savehitlist = None diffhitlist = None quiet = 0 -showheading = 1 # --dataonly turns this off -output_format = 0 # 0 = normal, 1 = html. -single_line = 0 # 1 = singleline (can 't be 0 if html) -csv_output = 0 # 1 = Generate CSV +showheading = 1 # --dataonly turns this off +output_format = 0 # 0 = normal, 1 = html. +single_line = 0 # 1 = singleline (can 't be 0 if html) +csv_output = 0 # 1 = Generate CSV csv_writer = None -omit_time = 0 # 1 = omit time-to-run (needed for testing) -required_regex = None # If non-None, regex that must be met to report +omit_time = 0 # 1 = omit time-to-run (needed for testing) +required_regex = None # If non-None, regex that must be met to report required_regex_compiled = None -displayed_header = 0 # Have we displayed the header yet? -num_ignored_hits = 0 # Number of ignored hits (used if never_ignore==0) +displayed_header = 0 # Have we displayed the header yet? +num_ignored_hits = 0 # Number of ignored hits (used if never_ignore==0) + def error(message): - sys.stderr.write("Error: %s\n"% message) + sys.stderr.write("Error: %s\n" % message) # Support routines: find a pattern. @@ -105,24 +111,25 @@ def error(message): # actual calls simpler and clearer. # -filename = "" # Source filename. -linenumber = 0 # Linenumber from original file. -ignoreline = -1 # Line number to ignore. -sumlines = 0 # Number of lines (total) examined. -sloc = 0 # Physical SLOC +filename = "" # Source filename. +linenumber = 0 # Linenumber from original file. +ignoreline = -1 # Line number to ignore. +sumlines = 0 # Number of lines (total) examined. +sloc = 0 # Physical SLOC starttime = time.time() # Used to determine analyzed lines/second. - line_beginning = re.compile(r'(?m)^') blank_line = re.compile(r'(?m)^\s+$') + # Send warning message. This is written this way to work on # Python version 2.5 through Python 3. def print_warning(message): - sys.stderr.write("Warning: ") - sys.stderr.write(message) - sys.stderr.write("\n") - sys.stderr.flush() + sys.stderr.write("Warning: ") + sys.stderr.write(message) + sys.stderr.write("\n") + sys.stderr.flush() + # The following code accepts unified diff format from both subversion (svn) # and GNU diff, which aren't well-documented. It gets filenames from @@ -181,139 +188,160 @@ diff_line_del = re.compile(r'^-[^-].*') # Mon Mar 10 15:13:12 1997 # Also, "newfile" can have " (comment)" postpended. Find and eliminate this. # Note that the expression below is Y10K (and Y100K) ready. :-). -diff_findjunk = re.compile(r'^(?P.*)((\s\d\d\d\d+-\d\d-\d\d\s+\d\d:\d[0-9:.]+Z?(\s+[\-\+0-9A-Z]+)?)|(\s[A-Za-z][a-z]+\s[A-za-z][a-z]+\s\d+\s\d+:\d[0-9:.]+Z?(\s[\-\+0-9]*)?\s\d\d\d\d+)|(\s\(.*\)))\s*$') +diff_findjunk = re.compile( + r'^(?P.*)(' + + r'(\s\d\d\d\d+-\d\d-\d\d\s+\d\d:\d[0-9:.]+Z?(\s+[\-\+0-9A-Z]+)?)|' + + r'(\s[A-Za-z][a-z]+\s[A-za-z][a-z]+\s\d+\s\d+:\d[0-9:.]+Z?' + + r'(\s[\-\+0-9]*)?\s\d\d\d\d+)|' + r'(\s\(.*\)))\s*$' +) + def is_svn_diff(sLine): - if sLine.find('Index:') != -1: - return True - return False + if sLine.find('Index:') != -1: + return True + return False + def is_gnu_diff(sLine): - if sLine.startswith('--- '): - return True - return False + if sLine.startswith('--- '): + return True + return False + def is_git_diff(sLine): - if sLine.startswith('diff --git a'): - return True - return False + if sLine.startswith('diff --git a'): + return True + return False + def svn_diff_get_filename(sLine): - return diff_index_filename.match(sLine) + return diff_index_filename.match(sLine) + def gnu_diff_get_filename(sLine): - newfile_match = diff_newfile.match(sLine) - if newfile_match: - patched_filename = string.strip(newfile_match.group('filename')) - # Clean up filename - remove trailing timestamp and/or (comment). - return diff_findjunk.match(patched_filename) - return None + newfile_match = diff_newfile.match(sLine) + if newfile_match: + patched_filename = string.strip(newfile_match.group('filename')) + # Clean up filename - remove trailing timestamp and/or (comment). + return diff_findjunk.match(patched_filename) + return None + git_splitter = ' b/' len_git_splitter = len(git_splitter) -def git_diff_get_filename(sLine): - return diff_git_filename.match(sLine) -# For each file found in the file patch_file, keep the +def git_diff_get_filename(sLine): + return diff_git_filename.match(sLine) + + +# For each file found in the file input_patch_file, keep the # line numbers of the new file (after patch is applied) which are added. # We keep this information in a hash table for a quick access later. # -def load_patch_info(patch_file): - patch = {} - line_counter = 0 - initial_number = 0 - index_statement = False # Set true if we see "Index:". - try: hPatch = open(patch_file, 'r') - except: - print "Error: failed to open", h(patch_file) - sys.exit(1) - - patched_filename = "" # Name of new file patched by current hunk. - - sLine = hPatch.readline() - #Heuristic to determine if it's a svn diff, git diff, or a GNU diff. - if is_svn_diff(sLine): - fn_get_filename = svn_diff_get_filename - elif is_git_diff(sLine): - fn_get_filename = git_diff_get_filename - elif is_gnu_diff(sLine): - fn_get_filename = gnu_diff_get_filename - else: - print "Error: Unrecognized patch format" - sys.exit(1) - - while True: # Loop-and-half construct. Read a line, end loop when no more - - # This is really a sequence of if ... elsif ... elsif..., but - # because Python forbids '=' in conditions, we do it this way. - filename_match = fn_get_filename(sLine) - if filename_match: - patched_filename = string.strip(filename_match.group('filename')) - if patched_file in patch: - error("filename occurs more than once in the patch: %s" % - patched_filename) +def load_patch_info(input_patch_file): + patch = {} + line_counter = 0 + initial_number = 0 + try: + hPatch = open(input_patch_file, 'r') + except BaseException: + print "Error: failed to open", h(input_patch_file) sys.exit(1) - else: - patch[patched_filename] = {} - else: - hunk_match = diff_hunk.match(sLine) - if hunk_match: - if patched_filename == "": - error("wrong type of patch file : we have a line number without having seen a filename") - sys.exit(1) - initial_number = hunk_match.group('linenumber') - line_counter = 0 - else: - line_added_match = diff_line_added.match(sLine) - if line_added_match: - line_added = line_counter + int(initial_number) - patch[patched_filename][line_added] = True - # Let's also warn about the lines above and below this one, - # so that errors that "leak" into adjacent lines are caught. - # Besides, if you're creating a patch, you had to at least look - # at adjacent lines, so you're in a position to fix them. - patch[patched_filename][line_added - 1] = True - patch[patched_filename][line_added + 1] = True - line_counter += 1 - else: - line_del_match = diff_line_del.match(sLine) - if line_del_match == None: - line_counter += 1 + + patched_filename = "" # Name of new file patched by current hunk. sLine = hPatch.readline() - if sLine == '': break # Done reading. + # Heuristic to determine if it's a svn diff, git diff, or a GNU diff. + if is_svn_diff(sLine): + fn_get_filename = svn_diff_get_filename + elif is_git_diff(sLine): + fn_get_filename = git_diff_get_filename + elif is_gnu_diff(sLine): + fn_get_filename = gnu_diff_get_filename + else: + print "Error: Unrecognized patch format" + sys.exit(1) + + while True: # Loop-and-half construct. Read a line, end loop when no more + + # This is really a sequence of if ... elsif ... elsif..., but + # because Python forbids '=' in conditions, we do it this way. + filename_match = fn_get_filename(sLine) + if filename_match: + patched_filename = string.strip(filename_match.group('filename')) + if patched_filename in patch: + error("filename occurs more than once in the patch: %s" % + patched_filename) + sys.exit(1) + else: + patch[patched_filename] = {} + else: + hunk_match = diff_hunk.match(sLine) + if hunk_match: + if patched_filename == "": + error( + "wrong type of patch file : " + + "we have a line number without having seen a filename" + ) + sys.exit(1) + initial_number = hunk_match.group('linenumber') + line_counter = 0 + else: + line_added_match = diff_line_added.match(sLine) + if line_added_match: + line_added = line_counter + int(initial_number) + patch[patched_filename][line_added] = True + # Let's also warn about the lines above and below this one, + # so that errors that "leak" into adjacent lines are caught. + # Besides, if you're creating a patch, you had to at + # least look at adjacent lines, + # so you're in a position to fix them. + patch[patched_filename][line_added - 1] = True + patch[patched_filename][line_added + 1] = True + line_counter += 1 + else: + line_del_match = diff_line_del.match(sLine) + if line_del_match is None: + line_counter += 1 + + sLine = hPatch.readline() + if sLine == '': + break # Done reading. + + return patch - return patch def htmlize(s): - # Take s, and return legal (UTF-8) HTML. - s1 = string.replace(s, "&", "&") - s2 = string.replace(s1, "<", "<") - s3 = string.replace(s2, ">", ">") - return s3 + # Take s, and return legal (UTF-8) HTML. + s1 = string.replace(s, "&", "&") + s2 = string.replace(s1, "<", "<") + s3 = string.replace(s2, ">", ">") + return s3 + def h(s): - # htmlize s if we're generating html, otherwise just return s. - if output_format: return htmlize(s) - else: return s + # htmlize s if we're generating html, otherwise just return s. + return htmlize(s) if output_format else s def print_multi_line(text): - # Print text as multiple indented lines. - width = 78 - prefix = " " - starting_position = len(prefix) + 1 - # - print prefix, - position = starting_position - # - for w in text.split(): - if len(w) + position >= width: - print - print prefix, - position = starting_position - print w, - position = position + len(w) + 1 + # Print text as multiple indented lines. + width = 78 + prefix = " " + starting_position = len(prefix) + 1 + # + print prefix, + position = starting_position + # + for w in text.split(): + if len(w) + position >= width: + print + print prefix, + position = starting_position + print w, + position = position + len(w) + 1 + # This matches references to CWE identifiers, so we can HTMLize them. # We don't refer to CWEs with one digit, so we'll only match on 2+ digits. @@ -322,203 +350,236 @@ link_cwe_pattern = re.compile(r'(CWE-([1-9][0-9]+))([,()])') # This matches the CWE data, including multiple entries. find_cwe_pattern = re.compile(r'\(CWE-[^)]*\)') + class Hit: - """ - Each instance of Hit is a warning of some kind in a source code file. - See the rulesets, which define the conditions for triggering a hit. - Hit is initialized with a tuple containing the following: - hook: function to call when function name found. - level: (default) warning level, 0-5. 0=no problem, 5=very risky. - warning: warning (text saying what's the problem) - suggestion: suggestion (text suggesting what to do instead) - category: One of "buffer" (buffer overflow), "race" (race condition), - "tmpfile" (temporary file creation), "format" (format string). - Use "" if you don't have a better category. - url: URL fragment reference. - other: A dictionary with other settings. + """ + Each instance of Hit is a warning of some kind in a source code file. + See the rulesets, which define the conditions for triggering a hit. + Hit is initialized with a tuple containing the following: + hook: function to call when function name found. + level: (default) warning level, 0-5. 0=no problem, 5=very risky. + warning: warning (text saying what's the problem) + suggestion: suggestion (text suggesting what to do instead) + category: One of "buffer" (buffer overflow), "race" (race condition), + "tmpfile" (temporary file creation), "format" (format string). + Use "" if you don't have a better category. + url: URL fragment reference. + other: A dictionary with other settings. + + Other settings usually set: + + name: function name + parameter: the function parameters (0th parameter null) + input: set to 1 if the function inputs from external sources. + start: start position (index) of the function name (in text) + end: end position of the function name (in text) + filename: name of file + line: line number in file + column: column in line in file + context_text: text surrounding hit + """ - Other settings usually set: + # Set default values: + source_position = 2 # By default, the second parameter is the source. + format_position = 1 # By default, the first parameter is the format. + input = 0 # By default, this doesn't read input. + note = "" # No additional notes. + filename = "" # Empty string is filename. + extract_lookahead = 0 # Normally don't extract lookahead. - name: function name - parameter: the function parameters (0th parameter null) - input: set to 1 if the function inputs from external sources. - start: start position (index) of the function name (in text) - end: end position of the function name (in text) - filename: name of file - line: line number in file - column: column in line in file - context_text: text surrounding hit""" + def __init__(self, data): + hook, level, warning, suggestion, category, url, other = data + self.hook, self.level = hook, level + self.warning, self.suggestion = warning, suggestion + self.category, self.url = category, url + # These will be set later, but I set them here so that + # analysis tools like PyChecker will know about them. + self.column = 0 + self.line = 0 + self.name = "" + self.context_text = "" + for key in other.keys(): + setattr(self, key, other[key]) - # Set default values: - source_position = 2 # By default, the second parameter is the source. - format_position = 1 # By default, the first parameter is the format. - input = 0 # By default, this doesn't read input. - note = "" # No additional notes. - filename = "" # Empty string is filename. - extract_lookahead = 0 # Normally don't extract lookahead. + def __cmp__(self, other): + return (cmp(other.level, self.level) or # Highest risk first. + cmp(self.filename, other.filename) or + cmp(self.line, other.line) or + cmp(self.column, other.column) or cmp(self.name, other.name)) - def __init__(self, data): - hook, level, warning, suggestion, category, url, other = data - self.hook, self.level = hook, level - self.warning, self.suggestion = warning, suggestion - self.category, self.url = category, url - # These will be set later, but I set them here so that - # analysis tools like PyChecker will know about them. - self.column = 0 - self.line = 0 - self.name = "" - self.context_text = "" - for key in other.keys(): - setattr(self, key, other[key]) + def __getitem__(self, X): # Define this so this works: "%(line)" % hit + return getattr(self, X) - def __cmp__(self, other): - return (cmp(other.level, self.level) or # Highest risk first. - cmp(self.filename, other.filename) or - cmp(self.line, other.line) or - cmp(self.column, other.column) or - cmp(self.name, other.name)) + # return CWEs + def cwes(self): + result = find_cwe_pattern.search(self.warning) + return result.group()[1:-1] if result else '' - def __getitem__(self, X): # Define this so this works: "%(line)" % hit - return getattr(self, X) + # Show as CSV format + def show_csv(self): + csv_writer.writerow([ + self.filename, self.line, self.column, self.level, self.category, + self.name, self.warning, self.suggestion, self.note, + self.cwes(), self.context_text + ]) - # return CWEs - def cwes(self): - result = find_cwe_pattern.search(self.warning) - if result: - return result.group()[1:-1] - else: - return '' + def show(self): + if csv_output: + self.show_csv() + return + if output_format: + print "
  • ", + sys.stdout.write(h(self.filename)) - # Show as CSV format - def show_csv(self): - csv_writer.writerow([self.filename, self.line, self.column, self.level, - self.category, self.name, self.warning, - self.suggestion, self.note, self.cwes(), - self.context_text ]) + if show_columns: + print ":%(line)s:%(column)s:" % self, + else: + print ":%(line)s:" % self, - def show(self): - if csv_output: - self.show_csv() - return - if output_format: print "
  • ", - sys.stdout.write(h(self.filename)) + if output_format: + print "", + # Extra space before risk level in text, makes it easier to find: + print " [%(level)s]" % self, + if output_format: + print "", + print "(%(category)s)" % self, + if output_format: + print "", + print h("%(name)s:" % self), + main_text = h("%(warning)s. " % self) + if output_format: # Create HTML link to CWE definitions + main_text = link_cwe_pattern.sub( + r'\1\3', + main_text) + if single_line: + print main_text, + if self.suggestion: + print h(self.suggestion) + ".", + print h(self.note), + else: + if self.suggestion: + main_text = main_text + h(self.suggestion) + ". " + main_text = main_text + h(self.note) + print + print_multi_line(main_text) + if output_format: + print "", + print + if show_context: + if output_format: + print "
    "
    +            print h(self.context_text)
    +            if output_format:
    +                print "
    " - if show_columns: print ":%(line)s:%(column)s:" % self, - else: print ":%(line)s:" % self, - - if output_format: print "", - # Extra space before risk level in text, makes it easier to find: - print " [%(level)s]" % self, - if output_format: print "", - print "(%(category)s)" % self, - if output_format: print "", - print h("%(name)s:" % self), - main_text = h("%(warning)s. " % self) - if output_format: # Create HTML link to CWE definitions - main_text = link_cwe_pattern.sub( - r'\1\3', - main_text) - if single_line: - print main_text, - if self.suggestion: print h(self.suggestion)+".", - print h(self.note), - else: - if self.suggestion: main_text = main_text + h(self.suggestion) + ". " - main_text = main_text + h(self.note) - print - print_multi_line(main_text) - if output_format: print "", - print - if show_context: - if output_format: print "
    "
    -      print h(self.context_text)
    -      if output_format: print "
    " # The "hitlist" is the list of all hits (warnings) found so far. # Use add_warning to add to it. hitlist = [] + def add_warning(hit): - global hitlist, num_ignored_hits - if show_inputs and not hit.input: return - if required_regex and (required_regex_compiled.search(hit.warning) is None): - return - if hit.level >= minimum_level: - if linenumber == ignoreline: - num_ignored_hits = num_ignored_hits + 1 - else: - hitlist.append(hit) - if show_immediately: - hit.show() + global hitlist, num_ignored_hits + if show_inputs and not hit.input: + return + if required_regex and (required_regex_compiled.search(hit.warning) is + None): + return + if hit.level >= minimum_level: + if linenumber == ignoreline: + num_ignored_hits = num_ignored_hits + 1 + else: + hitlist.append(hit) + if show_immediately: + hit.show() + def internal_warn(message): - print h(message) + print h(message) + # C Language Specific + def extract_c_parameters(text, pos=0): - "Return a list of the given C function's parameters, starting at text[pos]" - # '(a,b)' produces ['', 'a', 'b'] - i = pos - # Skip whitespace and find the "("; if there isn't one, return []: - while i < len(text): - if text[i] == '(': break - elif text[i] in string.whitespace: i = i + 1 - else: return [] - else: # Never found a reasonable ending. - return [] - i = i + 1 - parameters = [""] # Insert 0th entry, so 1st parameter is parameter[1]. - currentstart = i - parenlevel = 1 - instring = 0 # 1=in double-quote, 2=in single-quote - incomment = 0 - while i < len(text): - c = text[i] - if instring: - if c == '"' and instring == 1: instring = 0 - elif c == "'" and instring == 2: instring = 0 - # if \, skip next character too. The C/C++ rules for - # \ are actually more complex, supporting \ooo octal and - # \xhh hexadecimal (which can be shortened), but we don't need to - # parse that deeply, we just need to know we'll stay in string mode: - elif c == '\\': i = i + 1 - elif incomment: - if c == '*' and text[i:i+2]=='*/': - incomment = 0 - i = i + 1 - else: - if c == '"': instring = 1 - elif c == "'": instring = 2 - elif c == '/' and text[i:i+2]=='/*': - incomment = 1 - i = i + 1 - elif c == '/' and text[i:i+2]=='//': - while i < len(text) and text[i] != "\n": - i = i + 1 - elif c == '\\' and text[i:i+2]=='\\"': i = i + 1 # Handle exposed '\"' - elif c == '(': parenlevel = parenlevel + 1 - elif c == ',' and (parenlevel == 1): - parameters.append(string.strip( - p_trailingbackslashes.sub('', text[currentstart:i]))) - currentstart = i + 1 - elif c == ')': - parenlevel = parenlevel - 1 - if parenlevel <= 0: - parameters.append(string.strip( - p_trailingbackslashes.sub('', text[currentstart:i]))) - # Re-enable these for debugging: - # print " EXTRACT_C_PARAMETERS: ", text[pos:pos+80] - # print " RESULTS: ", parameters - return parameters - elif c == ';': - internal_warn("Parsing failed to find end of parameter list; " - "semicolon terminated it in %s" % text[pos:pos+200]) - return parameters + "Return a list of the given C function's parameters, starting at text[pos]" + # '(a,b)' produces ['', 'a', 'b'] + i = pos + # Skip whitespace and find the "("; if there isn't one, return []: + while i < len(text): + if text[i] == '(': + break + elif text[i] in string.whitespace: + i = i + 1 + else: + return [] + else: # Never found a reasonable ending. + return [] i = i + 1 - internal_warn("Parsing failed to find end of parameter list in %s" % - text[pos:pos+200]) + parameters = [""] # Insert 0th entry, so 1st parameter is parameter[1]. + currentstart = i + parenlevel = 1 + instring = 0 # 1=in double-quote, 2=in single-quote + incomment = 0 + while i < len(text): + c = text[i] + if instring: + if c == '"' and instring == 1: + instring = 0 + elif c == "'" and instring == 2: + instring = 0 + # if \, skip next character too. The C/C++ rules for + # \ are actually more complex, supporting \ooo octal and + # \xhh hexadecimal (which can be shortened), + # but we don't need to + # parse that deeply, we just need to know we'll stay + # in string mode: + elif c == '\\': + i = i + 1 + elif incomment: + if c == '*' and text[i:i + 2] == '*/': + incomment = 0 + i = i + 1 + else: + if c == '"': + instring = 1 + elif c == "'": + instring = 2 + elif c == '/' and text[i:i + 2] == '/*': + incomment = 1 + i = i + 1 + elif c == '/' and text[i:i + 2] == '//': + while i < len(text) and text[i] != "\n": + i = i + 1 + elif c == '\\' and text[i:i + 2] == '\\"': + i = i + 1 # Handle exposed '\"' + elif c == '(': + parenlevel = parenlevel + 1 + elif c == ',' and (parenlevel == 1): + parameters.append( + string.strip( + p_trailingbackslashes.sub('', text[currentstart:i]))) + currentstart = i + 1 + elif c == ')': + parenlevel = parenlevel - 1 + if parenlevel <= 0: + parameters.append( + string.strip( + p_trailingbackslashes.sub('', text[currentstart: + i]))) + # Re-enable these for debugging: + # print " EXTRACT_C_PARAMETERS: ", text[pos:pos+80] + # print " RESULTS: ", parameters + return parameters + elif c == ';': + internal_warn( + "Parsing failed to find end of parameter list; " + "semicolon terminated it in %s" % text[pos:pos + 200]) + return parameters + i = i + 1 + internal_warn("Parsing failed to find end of parameter list in %s" % + text[pos:pos + 200]) # These patterns match gettext() and _() for internationalization. @@ -531,215 +592,248 @@ def extract_c_parameters(text, pos=0): gettext_pattern = re.compile(r'(?s)^\s*' + 'gettext' + r'\s*\((.*)\)\s*$') undersc_pattern = re.compile(r'(?s)^\s*' + '_(T(EXT)?)?' + r'\s*\((.*)\)\s*$') + def strip_i18n(text): - "Strip any internationalization function calls surrounding 'text', " - "such as gettext() and _()." - match = gettext_pattern.search(text) - if match: return string.strip(match.group(1)) - match = undersc_pattern.search(text) - if match: return string.strip(match.group(3)) - return text + """Strip any internationalization function calls surrounding 'text'. -p_trailingbackslashes = re.compile( r'(\s|\\(\n|\r))*$') + In particular, strip away calls to gettext() and _(). + """ + match = gettext_pattern.search(text) + if match: + return string.strip(match.group(1)) + match = undersc_pattern.search(text) + if match: + return string.strip(match.group(3)) + return text + + +p_trailingbackslashes = re.compile(r'(\s|\\(\n|\r))*$') + +p_c_singleton_string = re.compile(r'^\s*L?"([^\\]|\\[^0-6]|\\[0-6]+)?"\s*$') -p_c_singleton_string = re.compile( r'^\s*L?"([^\\]|\\[^0-6]|\\[0-6]+)?"\s*$') def c_singleton_string(text): - "Returns true if text is a C string with 0 or 1 character." - if p_c_singleton_string.search(text): return 1 - else: return 0 + "Returns true if text is a C string with 0 or 1 character." + return 1 if p_c_singleton_string.search(text) else 0 # This string defines a C constant. -p_c_constant_string = re.compile( r'^\s*L?"([^\\]|\\[^0-6]|\\[0-6]+)*"$') +p_c_constant_string = re.compile(r'^\s*L?"([^\\]|\\[^0-6]|\\[0-6]+)*"$') + def c_constant_string(text): - "Returns true if text is a constant C string." - if p_c_constant_string.search(text): return 1 - else: return 0 + "Returns true if text is a constant C string." + if p_c_constant_string.search(text): + return 1 + else: + return 0 # Precompile patterns for speed. def c_buffer(hit): - source_position = hit.source_position - if source_position <= len(hit.parameters)-1: - source=hit.parameters[source_position] - if c_singleton_string(source): - hit.level = 1 - hit.note = "Risk is low because the source is a constant character." - elif c_constant_string(strip_i18n(source)): - hit.level = max( hit.level - 2, 1) - hit.note = "Risk is low because the source is a constant string." - add_warning(hit) + source_position = hit.source_position + if source_position <= len(hit.parameters) - 1: + source = hit.parameters[source_position] + if c_singleton_string(source): + hit.level = 1 + hit.note = "Risk is low because the source is a constant character." + elif c_constant_string(strip_i18n(source)): + hit.level = max(hit.level - 2, 1) + hit.note = "Risk is low because the source is a constant string." + add_warning(hit) -p_dangerous_strncat = re.compile(r'^\s*sizeof\s*(\(\s*)?[A-Za-z_$0-9]+' + - r'\s*(\)\s*)?(-\s*1\s*)?$') +p_dangerous_strncat = re.compile(r'^\s*sizeof\s*(\(\s*)?[A-Za-z_$0-9]+' + + r'\s*(\)\s*)?(-\s*1\s*)?$') # This is a heuristic: constants in C are usually given in all # upper case letters. Yes, this need not be true, but it's true often # enough that it's worth using as a heuristic. # We check because strncat better not be passed a constant as the length! p_looks_like_constant = re.compile(r'^\s*[A-Z][A-Z_$0-9]+\s*(-\s*1\s*)?$') + def c_strncat(hit): - if len(hit.parameters) > 3: - # A common mistake is to think that when calling strncat(dest,src,len), - # that "len" means the ENTIRE length of the destination. This isn't true, - # it must be the length of the characters TO BE ADDED at most. - # Which is one reason that strlcat is better than strncat. - # We'll detect a common case of this error; if the length parameter - # is of the form "sizeof(dest)", we have this error. - # Actually, sizeof(dest) is okay if the dest's first character is always \0, - # but in that case the programmer should use strncpy, NOT strncat. - # The following heuristic will certainly miss some dangerous cases, but - # it at least catches the most obvious situation. - # This particular heuristic is overzealous; it detects ANY sizeof, instead - # of only the sizeof(dest) (where dest is given in hit.parameters[1]). - # However, there aren't many other likely candidates for sizeof; some - # people use it to capture just the length of the source, but this is - # just as dangerous, since then it absolutely does NOT take care of - # the destination maximum length in general. - # It also detects if a constant is given as a length, if the - # constant follows common C naming rules. - length_text=hit.parameters[3] - if p_dangerous_strncat.search(length_text) or p_looks_like_constant.search(length_text): - hit.level = 5 - hit.note = ( "Risk is high; the length parameter appears to be a constant, " + - "instead of computing the number of characters left.") - add_warning(hit) - return - c_buffer(hit) + if len(hit.parameters) > 3: + # A common mistake is to think that when calling strncat(dest,src,len), + # that "len" means the ENTIRE length of the destination. + # This isn't true, + # it must be the length of the characters TO BE ADDED at most. + # Which is one reason that strlcat is better than strncat. + # We'll detect a common case of this error; if the length parameter + # is of the form "sizeof(dest)", we have this error. + # Actually, sizeof(dest) is okay if the dest's first character + # is always \0, + # but in that case the programmer should use strncpy, NOT strncat. + # The following heuristic will certainly miss some dangerous cases, but + # it at least catches the most obvious situation. + # This particular heuristic is overzealous; it detects ANY sizeof, + # instead of only the sizeof(dest) (where dest is given in + # hit.parameters[1]). + # However, there aren't many other likely candidates for sizeof; some + # people use it to capture just the length of the source, but this is + # just as dangerous, since then it absolutely does NOT take care of + # the destination maximum length in general. + # It also detects if a constant is given as a length, if the + # constant follows common C naming rules. + length_text = hit.parameters[3] + if p_dangerous_strncat.search( + length_text) or p_looks_like_constant.search(length_text): + hit.level = 5 + hit.note = ( + "Risk is high; the length parameter appears to be a constant, " + + "instead of computing the number of characters left.") + add_warning(hit) + return + c_buffer(hit) + def c_printf(hit): - format_position = hit.format_position - if format_position <= len(hit.parameters)-1: - # Assume that translators are trusted to not insert "evil" formats: - source = strip_i18n(hit.parameters[format_position]) - if c_constant_string(source): - # Parameter is constant, so there's no risk of format string problems. - # At one time we warned that very old systems sometimes incorrectly - # allow buffer overflows on snprintf/vsnprintf, but those systems - # are now very old, and snprintf is an important potential tool for - # countering buffer overflows. - # We'll pass it on, just in case it's needed, but at level 0 risk. - hit.level = 0 - hit.note = "Constant format string, so not considered risky." - add_warning(hit) + format_position = hit.format_position + if format_position <= len(hit.parameters) - 1: + # Assume that translators are trusted to not insert "evil" formats: + source = strip_i18n(hit.parameters[format_position]) + if c_constant_string(source): + # Parameter is constant, so there's no risk of + # format string problems. + # At one time we warned that very old systems sometimes incorrectly + # allow buffer overflows on snprintf/vsnprintf, but those systems + # are now very old, and snprintf is an important potential tool for + # countering buffer overflows. + # We'll pass it on, just in case it's needed, but at level 0 risk. + hit.level = 0 + hit.note = "Constant format string, so not considered risky." + add_warning(hit) p_dangerous_sprintf_format = re.compile(r'%-?([0-9]+|\*)?s') + # sprintf has both buffer and format vulnerabilities. def c_sprintf(hit): - source_position = hit.source_position - if hit.parameters is None: - # Serious parameter problem, e.g., none, or a string constant that - # never finishes. - hit.warning = "format string parameter problem" - hit.suggestion = "Check if required parameters present and quotes close." - hit.level = 4 - hit.category = "format" - hit.url = "" - elif source_position <= len(hit.parameters)-1: - source=hit.parameters[source_position] - if c_singleton_string(source): - hit.level = 1 - hit.note = "Risk is low because the source is a constant character." - else: - source = strip_i18n(source) - if c_constant_string(source): - if not p_dangerous_sprintf_format.search(source): - hit.level = max( hit.level - 2, 1) - hit.note = "Risk is low because the source has a constant maximum length." - # otherwise, warn of potential buffer overflow (the default) - else: - # Ho ho - a nonconstant format string - we have a different problem. - hit.warning = "Potential format string problem (CWE-134)" - hit.suggestion = "Make format string constant" + source_position = hit.source_position + if hit.parameters is None: + # Serious parameter problem, e.g., none, or a string constant that + # never finishes. + hit.warning = "format string parameter problem" + hit.suggestion = "Check if required parameters present and quotes close." hit.level = 4 hit.category = "format" hit.url = "" - add_warning(hit) + elif source_position <= len(hit.parameters) - 1: + source = hit.parameters[source_position] + if c_singleton_string(source): + hit.level = 1 + hit.note = "Risk is low because the source is a constant character." + else: + source = strip_i18n(source) + if c_constant_string(source): + if not p_dangerous_sprintf_format.search(source): + hit.level = max(hit.level - 2, 1) + hit.note = "Risk is low because the source has a constant maximum length." + # otherwise, warn of potential buffer overflow (the default) + else: + # Ho ho - a nonconstant format string - we have a different + # problem. + hit.warning = "Potential format string problem (CWE-134)" + hit.suggestion = "Make format string constant" + hit.level = 4 + hit.category = "format" + hit.url = "" + add_warning(hit) + p_dangerous_scanf_format = re.compile(r'%s') p_low_risk_scanf_format = re.compile(r'%[0-9]+s') + def c_scanf(hit): - format_position = hit.format_position - if format_position <= len(hit.parameters)-1: - # Assume that translators are trusted to not insert "evil" formats; - # it's not clear that translators will be messing with INPUT formats, - # but it's possible so we'll account for it. - source = strip_i18n(hit.parameters[format_position]) - if c_constant_string(source): - if p_dangerous_scanf_format.search(source): pass # Accept default. - elif p_low_risk_scanf_format.search(source): - # This is often okay, but sometimes extremely serious. - hit.level = 1 - hit.warning = "It's unclear if the %s limit in the format string is small enough (CWE-120)" - hit.suggestion = "Check that the limit is sufficiently small, or use a different input function" - else: - # No risky scanf request. - # We'll pass it on, just in case it's needed, but at level 0 risk. - hit.level = 0 - hit.note = "No risky scanf format detected." - else: - # Format isn't a constant. - hit.note = "If the scanf format is influenceable by an attacker, it's exploitable." - add_warning(hit) + format_position = hit.format_position + if format_position <= len(hit.parameters) - 1: + # Assume that translators are trusted to not insert "evil" formats; + # it's not clear that translators will be messing with INPUT formats, + # but it's possible so we'll account for it. + source = strip_i18n(hit.parameters[format_position]) + if c_constant_string(source): + if p_dangerous_scanf_format.search(source): + pass # Accept default. + elif p_low_risk_scanf_format.search(source): + # This is often okay, but sometimes extremely serious. + hit.level = 1 + hit.warning = ("It's unclear if the %s limit in the " + + "format string is small enough (CWE-120)") + hit.suggestion = ("Check that the limit is sufficiently " + + "small, or use a different input function") + else: + # No risky scanf request. + # We'll pass it on, just in case it's needed, but at level 0 + # risk. + hit.level = 0 + hit.note = "No risky scanf format detected." + else: + # Format isn't a constant. + hit.note = ("If the scanf format is influenceable " + + "by an attacker, it's exploitable.") + add_warning(hit) -p_dangerous_multi_byte = re.compile(r'^\s*sizeof\s*(\(\s*)?[A-Za-z_$0-9]+' + +p_dangerous_multi_byte = re.compile(r'^\s*sizeof\s*(\(\s*)?[A-Za-z_$0-9]+' + r'\s*(\)\s*)?(-\s*1\s*)?$') -p_safe_multi_byte = re.compile(r'^\s*sizeof\s*(\(\s*)?[A-Za-z_$0-9]+\s*(\)\s*)?' + - r'/\s*sizeof\s*\(\s*?[A-Za-z_$0-9]+\s*' + - r'\[\s*0\s*\]\)\s*(-\s*1\s*)?$') +p_safe_multi_byte = re.compile( + r'^\s*sizeof\s*(\(\s*)?[A-Za-z_$0-9]+\s*(\)\s*)?' + + r'/\s*sizeof\s*\(\s*?[A-Za-z_$0-9]+\s*' + r'\[\s*0\s*\]\)\s*(-\s*1\s*)?$') + def c_multi_byte_to_wide_char(hit): - # Unfortunately, this doesn't detect bad calls when it's a #define or - # constant set by a sizeof(), but trying to do so would create - # FAR too many false positives. - if len(hit.parameters)-1 >= 6: - num_chars_to_copy=hit.parameters[6] - if p_dangerous_multi_byte.search(num_chars_to_copy): - hit.level = 5 - hit.note = ("Risk is high, it appears that the size is given as bytes, but the " + - "function requires size as characters.") - elif p_safe_multi_byte.search(num_chars_to_copy): - # This isn't really risk-free, since it might not be the destination, - # or the destination might be a character array (if it's a char pointer, - # the pattern is actually quite dangerous, but programmers - # are unlikely to make that error). - hit.level = 1 - hit.note = "Risk is very low, the length appears to be in characters not bytes." - add_warning(hit) + # Unfortunately, this doesn't detect bad calls when it's a #define or + # constant set by a sizeof(), but trying to do so would create + # FAR too many false positives. + if len(hit.parameters) - 1 >= 6: + num_chars_to_copy = hit.parameters[6] + if p_dangerous_multi_byte.search(num_chars_to_copy): + hit.level = 5 + hit.note = ( + "Risk is high, it appears that the size is given as bytes, but the " + + "function requires size as characters.") + elif p_safe_multi_byte.search(num_chars_to_copy): + # This isn't really risk-free, since it might not be the destination, + # or the destination might be a character array (if it's a char pointer, + # the pattern is actually quite dangerous, but programmers + # are unlikely to make that error). + hit.level = 1 + hit.note = "Risk is very low, the length appears to be in characters not bytes." + add_warning(hit) + p_null_text = re.compile(r'^ *(NULL|0|0x0) *$') + def c_hit_if_null(hit): - null_position = hit.check_for_null - if null_position <= len(hit.parameters)-1: - null_text=hit.parameters[null_position] - if p_null_text.search(null_text): - add_warning(hit) - else: - return - add_warning(hit) # If insufficient # of parameters. + null_position = hit.check_for_null + if null_position <= len(hit.parameters) - 1: + null_text = hit.parameters[null_position] + if p_null_text.search(null_text): + add_warning(hit) + else: + return + add_warning(hit) # If insufficient # of parameters. + p_static_array = re.compile(r'^[A-Za-z_]+\s+[A-Za-z0-9_$,\s\*()]+\[[^]]') + def c_static_array(hit): - # This is cheating, but it does the job for most real code. - # In some cases it will match something that it shouldn't. - # We don't match ALL arrays, just those of certain types (e.g., char). - # In theory, any array can overflow, but in practice it seems that - # certain types are far more prone to problems, so we just report those. - if p_static_array.search(hit.lookahead): - add_warning(hit) # Found a static array, warn about it. + # This is cheating, but it does the job for most real code. + # In some cases it will match something that it shouldn't. + # We don't match ALL arrays, just those of certain types (e.g., char). + # In theory, any array can overflow, but in practice it seems that + # certain types are far more prone to problems, so we just report those. + if p_static_array.search(hit.lookahead): + add_warning(hit) # Found a static array, warn about it. + def normal(hit): - add_warning(hit) + add_warning(hit) # "c_ruleset": the rules for identifying "hits" in C (potential warnings). @@ -753,898 +847,956 @@ def normal(hit): # http://msdn.microsoft.com/en-us/library/bb288454.aspx c_ruleset = { - "strcpy" : - (c_buffer, 4, - "Does not check for buffer overflows when copying to destination [MS-banned] (CWE-120)", - "Consider using snprintf, strcpy_s, or strlcpy (warning: strncpy easily misused)", - "buffer", "", {}), - "strcpyA|strcpyW|StrCpy|StrCpyA|lstrcpyA|lstrcpyW|_tccpy|_mbccpy|_ftcscpy|_mbsncpy|StrCpyN|StrCpyNA|StrCpyNW|StrNCpy|strcpynA|StrNCpyA|StrNCpyW|lstrcpynA|lstrcpynW" : - # We need more info on these functions; I got their names from the - # Microsoft "banned" list. For now, just use "normal" to process them - # instead of "c_buffer". - (normal, 4, - "Does not check for buffer overflows when copying to destination [MS-banned] (CWE-120)", - "Consider using snprintf, strcpy_s, or strlcpy (warning: strncpy easily misused)", - "buffer", "", {}), - "lstrcpy|wcscpy|_tcscpy|_mbscpy" : - (c_buffer, 4, - "Does not check for buffer overflows when copying to destination [MS-banned] (CWE-120)", - "Consider using a function version that stops copying at the end of the buffer", - "buffer", "", {}), - "memcpy|CopyMemory|bcopy" : - (normal, 2, # I've found this to have a lower risk in practice. - "Does not check for buffer overflows when copying to destination (CWE-120)", - "Make sure destination can always hold the source data", - "buffer", "", {}), - "strcat" : - (c_buffer, 4, - "Does not check for buffer overflows when concatenating to destination [MS-banned] (CWE-120)", - "Consider using strcat_s, strncat, strlcat, or snprintf (warning: strncat is easily misused)", - "buffer", "", {}), - "lstrcat|wcscat|_tcscat|_mbscat" : - (c_buffer, 4, - "Does not check for buffer overflows when concatenating to destination [MS-banned] (CWE-120)", - "", - "buffer", "", {}), - # TODO: Do more analysis. Added because they're in MS banned list. - "StrCat|StrCatA|StrcatW|lstrcatA|lstrcatW|strCatBuff|StrCatBuffA|StrCatBuffW|StrCatChainW|_tccat|_mbccat|_ftcsat|StrCatN|StrCatNA|StrCatNW|StrNCat|StrNCatA|StrNCatW|lstrncat|lstrcatnA|lstrcatnW" : - (normal, 4, - "Does not check for buffer overflows when concatenating to destination [MS-banned] (CWE-120)", - "", - "buffer", "", {}), - "strncpy" : - (c_buffer, - 1, # Low risk level, because this is often used correctly when FIXING security - # problems, and raising it to a higher risk level would cause many false positives. - "Easily used incorrectly; doesn't always \\0-terminate or " + - "check for invalid pointers [MS-banned] (CWE-120)", - "", - "buffer", "", {}), - "lstrcpyn|wcsncpy|_tcsncpy|_mbsnbcpy" : - (c_buffer, - 1, # Low risk level, because this is often used correctly when FIXING security - # problems, and raising it to a higher risk levle would cause many false positives. - "Easily used incorrectly; doesn't always \\0-terminate or " + - "check for invalid pointers [MS-banned] (CWE-120)", - "", - "buffer", "", {}), - "strncat" : - (c_strncat, - 1, # Low risk level, because this is often used correctly when - # FIXING security problems, and raising it to a - # higher risk level would cause many false positives. - "Easily used incorrectly (e.g., incorrectly computing the correct maximum size to add) [MS-banned] (CWE-120)", - "Consider strcat_s, strlcat, snprintf, or automatically resizing strings", - "buffer", "", {}), - "lstrcatn|wcsncat|_tcsncat|_mbsnbcat" : - (c_strncat, - 1, # Low risk level, because this is often used correctly when FIXING security - # problems, and raising it to a higher risk level would cause many false positives. - "Easily used incorrectly (e.g., incorrectly computing the correct maximum size to add) [MS-banned] (CWE-120)", - "Consider strcat_s, strlcat, or automatically resizing strings", - "buffer", "", {}), - "strccpy|strcadd": - (normal, 1, - "Subject to buffer overflow if buffer is not as big as claimed (CWE-120)", - "Ensure that destination buffer is sufficiently large", - "buffer", "", {}), - "char|TCHAR|wchar_t": # This isn't really a function call, but it works. - (c_static_array, 2, - "Statically-sized arrays can be improperly restricted, " + - "leading to potential overflows or other issues (CWE-119!/CWE-120)", - "Perform bounds checking, use functions that limit length, " + - "or ensure that the size is larger than the maximum possible length", - "buffer", "", {'extract_lookahead' : 1}), + "strcpy": + (c_buffer, 4, + "Does not check for buffer overflows when copying to destination [MS-banned] (CWE-120)", + "Consider using snprintf, strcpy_s, or strlcpy (warning: strncpy easily misused)", + "buffer", "", {}), + "strcpyA|strcpyW|StrCpy|StrCpyA|lstrcpyA|lstrcpyW|_tccpy|_mbccpy|_ftcscpy|_mbsncpy|StrCpyN|StrCpyNA|StrCpyNW|StrNCpy|strcpynA|StrNCpyA|StrNCpyW|lstrcpynA|lstrcpynW": + # We need more info on these functions; I got their names from the + # Microsoft "banned" list. For now, just use "normal" to process them + # instead of "c_buffer". + (normal, 4, + "Does not check for buffer overflows when copying to destination [MS-banned] (CWE-120)", + "Consider using snprintf, strcpy_s, or strlcpy (warning: strncpy easily misused)", + "buffer", "", {}), + "lstrcpy|wcscpy|_tcscpy|_mbscpy": + (c_buffer, 4, + "Does not check for buffer overflows when copying to destination [MS-banned] (CWE-120)", + "Consider using a function version that stops copying at the end of the buffer", + "buffer", "", {}), + "memcpy|CopyMemory|bcopy": + (normal, 2, # I've found this to have a lower risk in practice. + "Does not check for buffer overflows when copying to destination (CWE-120)", + "Make sure destination can always hold the source data", + "buffer", "", {}), + "strcat": + (c_buffer, 4, + "Does not check for buffer overflows when concatenating to destination [MS-banned] (CWE-120)", + "Consider using strcat_s, strncat, strlcat, or snprintf (warning: strncat is easily misused)", + "buffer", "", {}), + "lstrcat|wcscat|_tcscat|_mbscat": + (c_buffer, 4, + "Does not check for buffer overflows when concatenating to destination [MS-banned] (CWE-120)", + "", + "buffer", "", {}), + # TODO: Do more analysis. Added because they're in MS banned list. + "StrCat|StrCatA|StrcatW|lstrcatA|lstrcatW|strCatBuff|StrCatBuffA|StrCatBuffW|StrCatChainW|_tccat|_mbccat|_ftcsat|StrCatN|StrCatNA|StrCatNW|StrNCat|StrNCatA|StrNCatW|lstrncat|lstrcatnA|lstrcatnW": + (normal, 4, + "Does not check for buffer overflows when concatenating to destination [MS-banned] (CWE-120)", + "", + "buffer", "", {}), + "strncpy": + (c_buffer, + 1, # Low risk level, because this is often used correctly when FIXING security + # problems, and raising it to a higher risk level would cause many false + # positives. + "Easily used incorrectly; doesn't always \\0-terminate or " + + "check for invalid pointers [MS-banned] (CWE-120)", + "", + "buffer", "", {}), + "lstrcpyn|wcsncpy|_tcsncpy|_mbsnbcpy": + (c_buffer, + 1, # Low risk level, because this is often used correctly when FIXING security + # problems, and raising it to a higher risk levle would cause many false + # positives. + "Easily used incorrectly; doesn't always \\0-terminate or " + + "check for invalid pointers [MS-banned] (CWE-120)", + "", + "buffer", "", {}), + "strncat": + (c_strncat, + 1, # Low risk level, because this is often used correctly when + # FIXING security problems, and raising it to a + # higher risk level would cause many false positives. + "Easily used incorrectly (e.g., incorrectly computing the correct maximum size to add) [MS-banned] (CWE-120)", + "Consider strcat_s, strlcat, snprintf, or automatically resizing strings", + "buffer", "", {}), + "lstrcatn|wcsncat|_tcsncat|_mbsnbcat": + (c_strncat, + 1, # Low risk level, because this is often used correctly when FIXING security + # problems, and raising it to a higher risk level would cause many false + # positives. + "Easily used incorrectly (e.g., incorrectly computing the correct maximum size to add) [MS-banned] (CWE-120)", + "Consider strcat_s, strlcat, or automatically resizing strings", + "buffer", "", {}), + "strccpy|strcadd": + (normal, 1, + "Subject to buffer overflow if buffer is not as big as claimed (CWE-120)", + "Ensure that destination buffer is sufficiently large", + "buffer", "", {}), + "char|TCHAR|wchar_t": # This isn't really a function call, but it works. + (c_static_array, 2, + "Statically-sized arrays can be improperly restricted, " + + "leading to potential overflows or other issues (CWE-119!/CWE-120)", + "Perform bounds checking, use functions that limit length, " + + "or ensure that the size is larger than the maximum possible length", + "buffer", "", {'extract_lookahead': 1}), - "gets|_getts": - (normal, 5, "Does not check for buffer overflows (CWE-120, CWE-20)", - "Use fgets() instead", "buffer", "", {'input' : 1}), + "gets|_getts": + (normal, 5, "Does not check for buffer overflows (CWE-120, CWE-20)", + "Use fgets() instead", "buffer", "", {'input': 1}), - # The "sprintf" hook will raise "format" issues instead if appropriate: - "sprintf|vsprintf|swprintf|vswprintf|_stprintf|_vstprintf": - (c_sprintf, 4, - "Does not check for buffer overflows (CWE-120)", - "Use sprintf_s, snprintf, or vsnprintf", - "buffer", "", {}), + # The "sprintf" hook will raise "format" issues instead if appropriate: + "sprintf|vsprintf|swprintf|vswprintf|_stprintf|_vstprintf": + (c_sprintf, 4, + "Does not check for buffer overflows (CWE-120)", + "Use sprintf_s, snprintf, or vsnprintf", + "buffer", "", {}), - "printf|vprintf|vwprintf|vfwprintf|_vtprintf|wprintf": - (c_printf, 4, - "If format strings can be influenced by an attacker, they can be exploited (CWE-134)", - "Use a constant for the format specification", - "format", "", {}), + "printf|vprintf|vwprintf|vfwprintf|_vtprintf|wprintf": + (c_printf, 4, + "If format strings can be influenced by an attacker, they can be exploited (CWE-134)", + "Use a constant for the format specification", + "format", "", {}), - "fprintf|vfprintf|_ftprintf|_vftprintf|fwprintf|fvwprintf": - (c_printf, 4, - "If format strings can be influenced by an attacker, they can be exploited (CWE-134)", - "Use a constant for the format specification", - "format", "", { 'format_position' : 2}), + "fprintf|vfprintf|_ftprintf|_vftprintf|fwprintf|fvwprintf": + (c_printf, 4, + "If format strings can be influenced by an attacker, they can be exploited (CWE-134)", + "Use a constant for the format specification", + "format", "", {'format_position': 2}), - # The "syslog" hook will raise "format" issues. - "syslog": - (c_printf, 4, - "If syslog's format strings can be influenced by an attacker, " + - "they can be exploited (CWE-134)", - "Use a constant format string for syslog", - "format", "", { 'format_position' : 2} ), + # The "syslog" hook will raise "format" issues. + "syslog": + (c_printf, 4, + "If syslog's format strings can be influenced by an attacker, " + + "they can be exploited (CWE-134)", + "Use a constant format string for syslog", + "format", "", {'format_position': 2}), - "snprintf|vsnprintf|_snprintf|_sntprintf|_vsntprintf": - (c_printf, 4, - "If format strings can be influenced by an attacker, they can be " + - "exploited, and note that sprintf variations do not always \\0-terminate (CWE-134)", - "Use a constant for the format specification", - "format", "", { 'format_position' : 3}), + "snprintf|vsnprintf|_snprintf|_sntprintf|_vsntprintf": + (c_printf, 4, + "If format strings can be influenced by an attacker, they can be " + + "exploited, and note that sprintf variations do not always \\0-terminate (CWE-134)", + "Use a constant for the format specification", + "format", "", {'format_position': 3}), - "scanf|vscanf|wscanf|_tscanf|vwscanf": - (c_scanf, 4, - "The scanf() family's %s operation, without a limit specification, " + - "permits buffer overflows (CWE-120, CWE-20)", - "Specify a limit to %s, or use a different input function", - "buffer", "", {'input' : 1}), + "scanf|vscanf|wscanf|_tscanf|vwscanf": + (c_scanf, 4, + "The scanf() family's %s operation, without a limit specification, " + + "permits buffer overflows (CWE-120, CWE-20)", + "Specify a limit to %s, or use a different input function", + "buffer", "", {'input': 1}), - "fscanf|sscanf|vsscanf|vfscanf|_ftscanf|fwscanf|vfwscanf|vswscanf": - (c_scanf, 4, - "The scanf() family's %s operation, without a limit specification, " - "permits buffer overflows (CWE-120, CWE-20)", - "Specify a limit to %s, or use a different input function", - "buffer", "", {'input' : 1, 'format_position' : 2}), + "fscanf|sscanf|vsscanf|vfscanf|_ftscanf|fwscanf|vfwscanf|vswscanf": + (c_scanf, 4, + "The scanf() family's %s operation, without a limit specification, " + "permits buffer overflows (CWE-120, CWE-20)", + "Specify a limit to %s, or use a different input function", + "buffer", "", {'input': 1, 'format_position': 2}), - "strlen|wcslen|_tcslen|_mbslen" : - (normal, - 1, # Often this isn't really a risk, and even when it is, at worst it - # often causes a program crash (and nothing worse). - "Does not handle strings that are not \\0-terminated; " + - "if given one it may perform an over-read (it could cause a crash " + - "if unprotected) (CWE-126)", - "", - "buffer", "", {}), + "strlen|wcslen|_tcslen|_mbslen": + (normal, + # Often this isn't really a risk, and even when it is, at worst it + # often causes a program crash (and nothing worse). + 1, + "Does not handle strings that are not \\0-terminated; " + + "if given one it may perform an over-read (it could cause a crash " + + "if unprotected) (CWE-126)", + "", + "buffer", "", {}), - "MultiByteToWideChar" : # Windows - (c_multi_byte_to_wide_char, - 2, # Only the default - this will be changed in many cases. - "Requires maximum length in CHARACTERS, not bytes (CWE-120)", - "", - "buffer", "", {}), + "MultiByteToWideChar": # Windows + (c_multi_byte_to_wide_char, + 2, # Only the default - this will be changed in many cases. + "Requires maximum length in CHARACTERS, not bytes (CWE-120)", + "", + "buffer", "", {}), - "streadd|strecpy": - (normal, 4, - "This function does not protect against buffer overflows (CWE-120)", - "Ensure the destination has 4 times the size of the source, to leave room for expansion", - "buffer", "dangers-c", {}), + "streadd|strecpy": + (normal, 4, + "This function does not protect against buffer overflows (CWE-120)", + "Ensure the destination has 4 times the size of the source, to leave room for expansion", + "buffer", "dangers-c", {}), - "strtrns": - (normal, 3, - "This function does not protect against buffer overflows (CWE-120)", - "Ensure that destination is at least as long as the source", - "buffer", "dangers-c", {}), + "strtrns": + (normal, 3, + "This function does not protect against buffer overflows (CWE-120)", + "Ensure that destination is at least as long as the source", + "buffer", "dangers-c", {}), - "realpath": - (normal, 3, - "This function does not protect against buffer overflows, " + - "and some implementations can overflow internally (CWE-120/CWE-785!)", - "Ensure that the destination buffer is at least of size MAXPATHLEN, and" + - "to protect against implementation problems, the input argument should also " + - "be checked to ensure it is no larger than MAXPATHLEN", - "buffer", "dangers-c", {}), + "realpath": + (normal, 3, + "This function does not protect against buffer overflows, " + + "and some implementations can overflow internally (CWE-120/CWE-785!)", + "Ensure that the destination buffer is at least of size MAXPATHLEN, and" + + "to protect against implementation problems, the input argument " + + "should also be checked to ensure it is no larger than MAXPATHLEN", + "buffer", "dangers-c", {}), - "getopt|getopt_long": - (normal, 3, + "getopt|getopt_long": + (normal, 3, "Some older implementations do not protect against internal buffer overflows (CWE-120, CWE-20)", - "Check implementation on installation, or limit the size of all string inputs", - "buffer", "dangers-c", {'input' : 1}), + "Check implementation on installation, or limit the size of all string inputs", + "buffer", "dangers-c", {'input': 1}), - "getpass": - (normal, 3, + "getpass": + (normal, 3, "Some implementations may overflow buffers (CWE-120, CWE-20)", - "", - "buffer", "dangers-c", {'input' : 1}), + "", + "buffer", "dangers-c", {'input': 1}), - "getwd": - (normal, 3, + "getwd": + (normal, 3, "This does not protect against buffer overflows " "by itself, so use with caution (CWE-120, CWE-20)", - "Use getcwd instead", - "buffer", "dangers-c", {'input' : 1}), + "Use getcwd instead", + "buffer", "dangers-c", {'input': 1}), - # fread not included here; in practice I think it's rare to mistake it. - "getchar|fgetc|getc|read|_gettc": - (normal, 1, + # fread not included here; in practice I think it's rare to mistake it. + "getchar|fgetc|getc|read|_gettc": + (normal, 1, "Check buffer boundaries if used in a loop including recursive loops (CWE-120, CWE-20)", - "", - "buffer", "dangers-c", {'input' : 1}), + "", + "buffer", "dangers-c", {'input': 1}), - "access": # ???: TODO: analyze TOCTOU more carefully. - (normal, 4, - "This usually indicates a security flaw. If an " + - "attacker can change anything along the path between the " + - "call to access() and the file's actual use (e.g., by moving " + - "files), the attacker can exploit the race condition (CWE-362/CWE-367!)", - "Set up the correct permissions (e.g., using setuid()) and " + - "try to open the file directly", - "race", - "avoid-race#atomic-filesystem", {}), - "chown": - (normal, 5, - "This accepts filename arguments; if an attacker " + - "can move those files, a race condition results. (CWE-362)", - "Use fchown( ) instead", - "race", "", {}), - "chgrp": - (normal, 5, - "This accepts filename arguments; if an attacker " + - "can move those files, a race condition results. (CWE-362)", - "Use fchgrp( ) instead", - "race", "", {}), - "chmod": - (normal, 5, - "This accepts filename arguments; if an attacker " + - "can move those files, a race condition results. (CWE-362)", - "Use fchmod( ) instead", - "race", "", {}), - "vfork": - (normal, 2, - "On some old systems, vfork() permits race conditions, and it's " + - "very difficult to use correctly (CWE-362)", - "Use fork() instead", - "race", "", {}), - "readlink": - (normal, 5, - "This accepts filename arguments; if an attacker " + - "can move those files or change the link content, " + - "a race condition results. " + - "Also, it does not terminate with ASCII NUL. (CWE-362, CWE-20)", - # This is often just a bad idea, and it's hard to suggest a - # simple alternative: - "Reconsider approach", - "race", "", {'input' : 1}), + "access": # ???: TODO: analyze TOCTOU more carefully. + (normal, 4, + "This usually indicates a security flaw. If an " + + "attacker can change anything along the path between the " + + "call to access() and the file's actual use (e.g., by moving " + + "files), the attacker can exploit the race condition (CWE-362/CWE-367!)", + "Set up the correct permissions (e.g., using setuid()) and " + + "try to open the file directly", + "race", + "avoid-race#atomic-filesystem", {}), + "chown": + (normal, 5, + "This accepts filename arguments; if an attacker " + + "can move those files, a race condition results. (CWE-362)", + "Use fchown( ) instead", + "race", "", {}), + "chgrp": + (normal, 5, + "This accepts filename arguments; if an attacker " + + "can move those files, a race condition results. (CWE-362)", + "Use fchgrp( ) instead", + "race", "", {}), + "chmod": + (normal, 5, + "This accepts filename arguments; if an attacker " + + "can move those files, a race condition results. (CWE-362)", + "Use fchmod( ) instead", + "race", "", {}), + "vfork": + (normal, 2, + "On some old systems, vfork() permits race conditions, and it's " + + "very difficult to use correctly (CWE-362)", + "Use fork() instead", + "race", "", {}), + "readlink": + (normal, 5, + "This accepts filename arguments; if an attacker " + + "can move those files or change the link content, " + + "a race condition results. " + + "Also, it does not terminate with ASCII NUL. (CWE-362, CWE-20)", + # This is often just a bad idea, and it's hard to suggest a + # simple alternative: + "Reconsider approach", + "race", "", {'input': 1}), - "tmpfile": - (normal, 2, - "Function tmpfile() has a security flaw on some systems (e.g., older System V systems) (CWE-377)", - "", - "tmpfile", "", {}), - "tmpnam|tempnam": - (normal, 3, - "Temporary file race condition (CWE-377)", - "", - "tmpfile", "avoid-race", {}), + "tmpfile": + (normal, 2, + "Function tmpfile() has a security flaw on some systems (e.g., older System V systems) (CWE-377)", + "", + "tmpfile", "", {}), + "tmpnam|tempnam": + (normal, 3, + "Temporary file race condition (CWE-377)", + "", + "tmpfile", "avoid-race", {}), - # TODO: Detect GNOME approach to mktemp and ignore it. - "mktemp": - (normal, 4, - "Temporary file race condition (CWE-377)", - "", - "tmpfile", "avoid-race", {}), + # TODO: Detect GNOME approach to mktemp and ignore it. + "mktemp": + (normal, 4, + "Temporary file race condition (CWE-377)", + "", + "tmpfile", "avoid-race", {}), - "mkstemp": - (normal, 2, + "mkstemp": + (normal, 2, "Potential for temporary file vulnerability in some circumstances. Some older Unix-like systems create temp files with permission to write by all by default, so be sure to set the umask to override this. Also, some older Unix systems might fail to use O_EXCL when opening the file, so make sure that O_EXCL is used by the library (CWE-377)", - "", - "tmpfile", "avoid-race", {}), + "", + "tmpfile", "avoid-race", {}), - "fopen|open": - (normal, 2, + "fopen|open": + (normal, 2, "Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents? (CWE-362)", - "", - "misc", "", {}), + "", + "misc", "", {}), - "umask": - (normal, 1, - "Ensure that umask is given most restrictive possible setting (e.g., 066 or 077) (CWE-732)", - "", - "access", "", {}), + "umask": + (normal, 1, + "Ensure that umask is given most restrictive possible setting (e.g., 066 or 077) (CWE-732)", + "", + "access", "", {}), - # Windows. TODO: Detect correct usage approaches and ignore it. - "GetTempFileName": - (normal, 3, - "Temporary file race condition in certain cases " + - "(e.g., if run as SYSTEM in many versions of Windows) (CWE-377)", - "", - "tmpfile", "avoid-race", {}), + # Windows. TODO: Detect correct usage approaches and ignore it. + "GetTempFileName": + (normal, 3, + "Temporary file race condition in certain cases " + + "(e.g., if run as SYSTEM in many versions of Windows) (CWE-377)", + "", + "tmpfile", "avoid-race", {}), - # TODO: Need to detect varying levels of danger. - "execl|execlp|execle|execv|execvp|system|popen|WinExec|ShellExecute": - (normal, 4, - "This causes a new program to execute and is difficult to use safely (CWE-78)", - "try using a library call that implements the same functionality " + - "if available", - "shell", "", {}), + # TODO: Need to detect varying levels of danger. + "execl|execlp|execle|execv|execvp|system|popen|WinExec|ShellExecute": + (normal, 4, + "This causes a new program to execute and is difficult to use safely (CWE-78)", + "try using a library call that implements the same functionality " + + "if available", + "shell", "", {}), - # TODO: Need to detect varying levels of danger. - "execl|execlp|execle|execv|execvp|system|popen|WinExec|ShellExecute": - (normal, 4, - "This causes a new program to execute and is difficult to use safely (CWE-78)", - "try using a library call that implements the same functionality " + - "if available", - "shell", "", {}), + # TODO: Need to detect varying levels of danger. + "execl|execlp|execle|execv|execvp|system|popen|WinExec|ShellExecute": + (normal, 4, + "This causes a new program to execute and is difficult to use safely (CWE-78)", + "try using a library call that implements the same functionality " + + "if available", + "shell", "", {}), - # TODO: Be more specific. The biggest problem involves "first" param NULL, - # second param with embedded space. Windows. - "CreateProcessAsUser|CreateProcessWithLogon": - (normal, 3, - "This causes a new process to execute and is difficult to use safely (CWE-78)", - "Especially watch out for embedded spaces", - "shell", "", {}), + # TODO: Be more specific. The biggest problem involves "first" param NULL, + # second param with embedded space. Windows. + "CreateProcessAsUser|CreateProcessWithLogon": + (normal, 3, + "This causes a new process to execute and is difficult to use safely (CWE-78)", + "Especially watch out for embedded spaces", + "shell", "", {}), - # TODO: Be more specific. The biggest problem involves "first" param NULL, - # second param with embedded space. Windows. - "CreateProcess": - (c_hit_if_null, 3, - "This causes a new process to execute and is difficult to use safely (CWE-78)", - "Specify the application path in the first argument, NOT as part of the second, " + - "or embedded spaces could allow an attacker to force a different program to run", - "shell", "", {'check_for_null' : 1}), + # TODO: Be more specific. The biggest problem involves "first" param NULL, + # second param with embedded space. Windows. + "CreateProcess": + (c_hit_if_null, 3, + "This causes a new process to execute and is difficult to use safely (CWE-78)", + "Specify the application path in the first argument, NOT as part of the second, " + + "or embedded spaces could allow an attacker to force a different program to run", + "shell", "", {'check_for_null': 1}), - "atoi|atol|_wtoi|_wtoi64": - (normal, 2, - "Unless checked, the resulting number can exceed the expected range " + - "(CWE-190)", - "If source untrusted, check both minimum and maximum, even if the" + - " input had no minus sign (large numbers can roll over into negative" + - " number; consider saving to an unsigned value if that is intended)", - "integer", "dangers-c", {}), + "atoi|atol|_wtoi|_wtoi64": + (normal, 2, + "Unless checked, the resulting number can exceed the expected range " + + "(CWE-190)", + "If source untrusted, check both minimum and maximum, even if the" + + " input had no minus sign (large numbers can roll over into negative" + + " number; consider saving to an unsigned value if that is intended)", + "integer", "dangers-c", {}), - # Random values. Don't trigger on "initstate", it's too common a term. - "drand48|erand48|jrand48|lcong48|lrand48|mrand48|nrand48|random|seed48|setstate|srand|strfry|srandom|g_rand_boolean|g_rand_int|g_rand_int_range|g_rand_double|g_rand_double_range|g_random_boolean|g_random_int|g_random_int_range|g_random_double|g_random_double_range": - (normal, 3, - "This function is not sufficiently random for security-related functions such as key and nonce creation (CWE-327)", - "Use a more secure technique for acquiring random values", - "random", "", {}), + # Random values. Don't trigger on "initstate", it's too common a term. + "drand48|erand48|jrand48|lcong48|lrand48|mrand48|nrand48|random|seed48|setstate|srand|strfry|srandom|g_rand_boolean|g_rand_int|g_rand_int_range|g_rand_double|g_rand_double_range|g_random_boolean|g_random_int|g_random_int_range|g_random_double|g_random_double_range": + (normal, 3, + "This function is not sufficiently random for security-related functions such as key and nonce creation (CWE-327)", + "Use a more secure technique for acquiring random values", + "random", "", {}), - "crypt": - (normal, 4, - "Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 " + - "characters or less, and only a two-byte salt, it is excessively vulnerable to " + - "dictionary attacks given today's faster computing equipment (CWE-327)", - "Use a different algorithm, such as SHA-1, with a larger non-repeating salt", - "crypto", "", {}), + "crypt": + (normal, 4, + "Function crypt is a poor one-way hashing algorithm; " + + "since it only accepts passwords of 8 characters or less, " + + "and only a two-byte salt, it is excessively vulnerable to " + + "dictionary attacks given today's faster computing equipment (CWE-327)", + "Use a different algorithm, such as SHA-256, with a larger " + + "non-repeating salt", + "crypto", "", {}), - # OpenSSL EVP calls to use DES. - "EVP_des_ecb|EVP_des_cbc|EVP_des_cfb|EVP_des_ofb|EVP_desx_cbc": - (normal, 4, - "DES only supports a 56-bit keysize, which is too small given today's computers (CWE-327)", - "Use a different patent-free encryption algorithm with a larger keysize, " + - "such as 3DES or AES", - "crypto", "", {}), + # OpenSSL EVP calls to use DES. + "EVP_des_ecb|EVP_des_cbc|EVP_des_cfb|EVP_des_ofb|EVP_desx_cbc": + (normal, 4, + "DES only supports a 56-bit keysize, which is too small given today's computers (CWE-327)", + "Use a different patent-free encryption algorithm with a larger keysize, " + + "such as 3DES or AES", + "crypto", "", {}), - # Other OpenSSL EVP calls to use small keys. - "EVP_rc4_40|EVP_rc2_40_cbc|EVP_rc2_64_cbc": - (normal, 4, - "These keysizes are too small given today's computers (CWE-327)", - "Use a different patent-free encryption algorithm with a larger keysize, " + - "such as 3DES or AES", - "crypto", "", {}), + # Other OpenSSL EVP calls to use small keys. + "EVP_rc4_40|EVP_rc2_40_cbc|EVP_rc2_64_cbc": + (normal, 4, + "These keysizes are too small given today's computers (CWE-327)", + "Use a different patent-free encryption algorithm with a larger keysize, " + + "such as 3DES or AES", + "crypto", "", {}), - "chroot": - (normal, 3, - "chroot can be very helpful, but is hard to use correctly (CWE-250, CWE-22)", - "Make sure the program immediately chdir(\"/\")," + - " closes file descriptors," + - " and drops root privileges, and that all necessary files" + - " (and no more!) are in the new root", - "misc", "", {}), + "chroot": + (normal, 3, + "chroot can be very helpful, but is hard to use correctly (CWE-250, CWE-22)", + "Make sure the program immediately chdir(\"/\")," + + " closes file descriptors," + + " and drops root privileges, and that all necessary files" + + " (and no more!) are in the new root", + "misc", "", {}), - "getenv|curl_getenv": - (normal, 3, "Environment variables are untrustable input if they can be" + - " set by an attacker. They can have any content and" + - " length, and the same variable can be set more than once (CWE-807, CWE-20)", - "Check environment variables carefully before using them", - "buffer", "", {'input' : 1}), + "getenv|curl_getenv": + (normal, 3, "Environment variables are untrustable input if they can be" + + " set by an attacker. They can have any content and" + + " length, and the same variable can be set more than once (CWE-807, CWE-20)", + "Check environment variables carefully before using them", + "buffer", "", {'input': 1}), - "g_get_home_dir": - (normal, 3, "This function is synonymous with 'getenv(\"HOME\")';" + - "it returns untrustable input if the environment can be" + - "set by an attacker. It can have any content and length, " + - "and the same variable can be set more than once (CWE-807, CWE-20)", - "Check environment variables carefully before using them", - "buffer", "", {'input' : 1}), + "g_get_home_dir": + (normal, 3, "This function is synonymous with 'getenv(\"HOME\")';" + + "it returns untrustable input if the environment can be" + + "set by an attacker. It can have any content and length, " + + "and the same variable can be set more than once (CWE-807, CWE-20)", + "Check environment variables carefully before using them", + "buffer", "", {'input': 1}), - "g_get_tmp_dir": - (normal, 3, "This function is synonymous with 'getenv(\"TMP\")';" + - "it returns untrustable input if the environment can be" + - "set by an attacker. It can have any content and length, " + - "and the same variable can be set more than once (CWE-807, CWE-20)", - "Check environment variables carefully before using them", - "buffer", "", {'input' : 1}), + "g_get_tmp_dir": + (normal, 3, "This function is synonymous with 'getenv(\"TMP\")';" + + "it returns untrustable input if the environment can be" + + "set by an attacker. It can have any content and length, " + + "and the same variable can be set more than once (CWE-807, CWE-20)", + "Check environment variables carefully before using them", + "buffer", "", {'input': 1}), - # These are Windows-unique: + # These are Windows-unique: - # TODO: Should have lower risk if the program checks return value. - "RpcImpersonateClient|ImpersonateLoggedOnUser|CoImpersonateClient|" + - "ImpersonateNamedPipeClient|ImpersonateDdeClientWindow|ImpersonateSecurityContext|" + - "SetThreadToken": - (normal, 4, "If this call fails, the program could fail to drop heightened privileges (CWE-250)", - "Make sure the return value is checked, and do not continue if a failure is reported", - "access", "", {}), + # TODO: Should have lower risk if the program checks return value. + "RpcImpersonateClient|ImpersonateLoggedOnUser|CoImpersonateClient|" + + "ImpersonateNamedPipeClient|ImpersonateDdeClientWindow|ImpersonateSecurityContext|" + + "SetThreadToken": + (normal, 4, "If this call fails, the program could fail to drop heightened privileges (CWE-250)", + "Make sure the return value is checked, and do not continue if a failure is reported", + "access", "", {}), - "InitializeCriticalSection": - (normal, 3, "Exceptions can be thrown in low-memory situations", - "Use InitializeCriticalSectionAndSpinCount instead", - "misc", "", {}), + "InitializeCriticalSection": + (normal, 3, "Exceptions can be thrown in low-memory situations", + "Use InitializeCriticalSectionAndSpinCount instead", + "misc", "", {}), - "EnterCriticalSection": - (normal, 3, "On some versions of Windows, exceptions can be thrown in low-memory situations", - "Use InitializeCriticalSectionAndSpinCount instead", - "misc", "", {}), + "EnterCriticalSection": + (normal, 3, "On some versions of Windows, exceptions can be thrown in low-memory situations", + "Use InitializeCriticalSectionAndSpinCount instead", + "misc", "", {}), - "LoadLibrary|LoadLibraryEx": - (normal, 3, "Ensure that the full path to the library is specified, or current directory may be used (CWE-829, CWE-20)", - "Use registry entry or GetWindowsDirectory to find library path, if you aren't already", - "misc", "", {'input' : 1}), + "LoadLibrary|LoadLibraryEx": + (normal, 3, "Ensure that the full path to the library is specified, or current directory may be used (CWE-829, CWE-20)", + "Use registry entry or GetWindowsDirectory to find library path, if you aren't already", + "misc", "", {'input': 1}), - "SetSecurityDescriptorDacl": - (c_hit_if_null, 5, - "Never create NULL ACLs; an attacker can set it to Everyone (Deny All Access), " + - "which would even forbid administrator access (CWE-732)", - "", - "misc", "", {'check_for_null' : 3}), + "SetSecurityDescriptorDacl": + (c_hit_if_null, 5, + "Never create NULL ACLs; an attacker can set it to Everyone (Deny All Access), " + + "which would even forbid administrator access (CWE-732)", + "", + "misc", "", {'check_for_null': 3}), - "AddAccessAllowedAce": - (normal, 3, - "This doesn't set the inheritance bits in the access control entry (ACE) header (CWE-732)", - "Make sure that you set inheritance by hand if you wish it to inherit", - "misc", "", {}), + "AddAccessAllowedAce": + (normal, 3, + "This doesn't set the inheritance bits in the access control entry (ACE) header (CWE-732)", + "Make sure that you set inheritance by hand if you wish it to inherit", + "misc", "", {}), - "getlogin": - (normal, 4, - "It's often easy to fool getlogin. Sometimes it does not work at all, because some program messed up the utmp file. Often, it gives only the first 8 characters of the login name. The user currently logged in on the controlling tty of our program need not be the user who started it. Avoid getlogin() for security-related purposes (CWE-807)", - "Use getpwuid(geteuid()) and extract the desired information instead", - "misc", "", {}), + "getlogin": + (normal, 4, + "It's often easy to fool getlogin. Sometimes it does not work at all, because some program messed up the utmp file. Often, it gives only the first 8 characters of the login name. The user currently logged in on the controlling tty of our program need not be the user who started it. Avoid getlogin() for security-related purposes (CWE-807)", + "Use getpwuid(geteuid()) and extract the desired information instead", + "misc", "", {}), - "cuserid": - (normal, 4, - "Exactly what cuserid() does is poorly defined (e.g., some systems use the effective uid, like Linux, while others like System V use the real uid). Thus, you can't trust what it does. It's certainly not portable (The cuserid function was included in the 1988 version of POSIX, but removed from the 1990 version). Also, if passed a non-null parameter, there's a risk of a buffer overflow if the passed-in buffer is not at least L_cuserid characters long (CWE-120)", - "Use getpwuid(geteuid()) and extract the desired information instead", - "misc", "", {}), + "cuserid": + (normal, 4, + "Exactly what cuserid() does is poorly defined (e.g., some systems use the effective uid, like Linux, while others like System V use the real uid). Thus, you can't trust what it does. It's certainly not portable (The cuserid function was included in the 1988 version of POSIX, but removed from the 1990 version). Also, if passed a non-null parameter, there's a risk of a buffer overflow if the passed-in buffer is not at least L_cuserid characters long (CWE-120)", + "Use getpwuid(geteuid()) and extract the desired information instead", + "misc", "", {}), - "getpw": - (normal, 4, - "This function is dangerous; it may overflow the provided buffer. It extracts data from a 'protected' area, but most systems have many commands to let users modify the protected area, and it's not always clear what their limits are. Best to avoid using this function altogether (CWE-676, CWE-120)", - "Use getpwuid() instead", - "buffer", "", {}), + "getpw": + (normal, 4, + "This function is dangerous; it may overflow the provided buffer. It extracts data from a 'protected' area, but most systems have many commands to let users modify the protected area, and it's not always clear what their limits are. Best to avoid using this function altogether (CWE-676, CWE-120)", + "Use getpwuid() instead", + "buffer", "", {}), - "getpass": - (normal, 4, - "This function is obsolete and not portable. It was in SUSv2 but removed by POSIX.2. What it does exactly varies considerably between systems, particularly in where its prompt is displayed and where it gets its data (e.g., /dev/tty, stdin, stderr, etc.) (CWE-676)", - "Make the specific calls to do exactly what you want. If you continue to use it, or write your own, be sure to zero the password as soon as possible to avoid leaving the cleartext password visible in the process' address space", - "misc", "", {}), + "getpass": + (normal, 4, + "This function is obsolete and not portable. It was in SUSv2 but removed by POSIX.2. What it does exactly varies considerably between systems, particularly in where its prompt is displayed and where it gets its data (e.g., /dev/tty, stdin, stderr, etc.) (CWE-676)", + "Make the specific calls to do exactly what you want. If you continue to use it, or write your own, be sure to zero the password as soon as possible to avoid leaving the cleartext password visible in the process' address space", + "misc", "", {}), - "gsignal|ssignal": - (normal, 2, - "These functions are considered obsolete on most systems, and very non-poertable (Linux-based systems handle them radically different, basically if gsignal/ssignal were the same as raise/signal respectively, while System V considers them a separate set and obsolete) (CWE-676)", - "Switch to raise/signal, or some other signalling approach", - "obsolete", "", {}), + "gsignal|ssignal": + (normal, 2, + "These functions are considered obsolete on most systems, and very non-poertable (Linux-based systems handle them radically different, basically if gsignal/ssignal were the same as raise/signal respectively, while System V considers them a separate set and obsolete) (CWE-676)", + "Switch to raise/signal, or some other signalling approach", + "obsolete", "", {}), - "memalign": - (normal, 1, + "memalign": + (normal, 1, "On some systems (though not Linux-based systems) an attempt to free() results from memalign() may fail. This may, on a few systems, be exploitable. Also note that memalign() may not check that the boundary parameter is correct (CWE-676)", - "Use posix_memalign instead (defined in POSIX's 1003.1d). Don't switch to valloc(); it is marked as obsolete in BSD 4.3, as legacy in SUSv2, and is no longer defined in SUSv3. In some cases, malloc()'s alignment may be sufficient", - "free", "", {}), + "Use posix_memalign instead (defined in POSIX's 1003.1d). Don't switch to valloc(); it is marked as obsolete in BSD 4.3, as legacy in SUSv2, and is no longer defined in SUSv3. In some cases, malloc()'s alignment may be sufficient", + "free", "", {}), - "ulimit": - (normal, 1, + "ulimit": + (normal, 1, "This C routine is considered obsolete (as opposed to the shell command by the same name, which is NOT obsolete) (CWE-676)", - "Use getrlimit(2), setrlimit(2), and sysconf(3) instead", - "obsolete", "", {}), + "Use getrlimit(2), setrlimit(2), and sysconf(3) instead", + "obsolete", "", {}), - "usleep": - (normal, 1, + "usleep": + (normal, 1, "This C routine is considered obsolete (as opposed to the shell command by the same name). The interaction of this function with SIGALRM and other timer functions such as sleep(), alarm(), setitimer(), and nanosleep() is unspecified (CWE-676)", - "Use nanosleep(2) or setitimer(2) instead", - "obsolete", "", {}), + "Use nanosleep(2) or setitimer(2) instead", + "obsolete", "", {}), - # Input functions, useful for -I - "recv|recvfrom|recvmsg|fread|readv": - (normal, 0, "Function accepts input from outside program (CWE-20)", - "Make sure input data is filtered, especially if an attacker could manipulate it", - "input", "", {'input' : 1}), + # Input functions, useful for -I + "recv|recvfrom|recvmsg|fread|readv": + (normal, 0, "Function accepts input from outside program (CWE-20)", + "Make sure input data is filtered, especially if an attacker could manipulate it", + "input", "", {'input': 1}), - # TODO: detect C++'s: cin >> charbuf, where charbuf is a char array; the problem - # is that flawfinder doesn't have type information, and ">>" is safe with - # many other types. - # ("send" and friends aren't todo, because they send out.. not input.) - # TODO: cwd("..") in user's space - TOCTOU vulnerability - # TODO: There are many more rules to add, esp. for TOCTOU. - } + # TODO: detect C++'s: cin >> charbuf, where charbuf is a char array; the problem + # is that flawfinder doesn't have type information, and ">>" is safe with + # many other types. + # ("send" and friends aren't todo, because they send out.. not input.) + # TODO: cwd("..") in user's space - TOCTOU vulnerability + # TODO: There are many more rules to add, esp. for TOCTOU. +} template_ruleset = { - # This is a template for adding new entries (the key is impossible): - "9": - (normal, 2, - "", - "", - "tmpfile", "", {}), - } + # This is a template for adding new entries (the key is impossible): + "9": (normal, 2, "", "", "tmpfile", "", {}), +} def find_column(text, position): - "Find column number inside line." - newline = string.rfind(text, "\n", 0, position) - if newline == -1: - return position + 1 - else: - return position - newline + "Find column number inside line." + newline = string.rfind(text, "\n", 0, position) + if newline == -1: + return position + 1 + else: + return position - newline + def get_context(text, position): - "Get surrounding text line starting from text[position]" - linestart = string.rfind(text, "\n", 0, position+1) + 1 - lineend = string.find(text, "\n", position, len(text)) - if lineend == -1: lineend = len(text) - return text[linestart:lineend] + "Get surrounding text line starting from text[position]" + linestart = string.rfind(text, "\n", 0, position + 1) + 1 + lineend = string.find(text, "\n", position, len(text)) + if lineend == -1: + lineend = len(text) + return text[linestart:lineend] + def c_valid_match(text, position): - # Determine if this is a valid match, or a false positive. - # If false positive controls aren't on, always declare it's a match: - i = position - while i < len(text): - c = text[i] - if c == '(': return 1 - elif c in string.whitespace: i = i + 1 - else: - if falsepositive: return 0 # No following "(", presume invalid. - if c in "=+-": - # This is very unlikely to be a function use. If c is '=', - # the name is followed by an assignment or is-equal operation. - # Since the names of library functions are really unlikely to be - # followed by an assignment statement or 'is-equal' test, - # while this IS common for variable names, let's declare it invalid. - # It's possible that this is a variable function pointer, pointing - # to the real library function, but that's really improbable. - # If c is "+" or "-", we have a + or - operation. - # In theory "-" could be used for a function pointer difference - # computation, but this is extremely improbable. - # More likely: this is a variable in a computation, so drop it. - return 0 - return 1 - return 0 # Never found anything other than "(" and whitespace. + # Determine if this is a valid match, or a false positive. + # If false positive controls aren't on, always declare it's a match: + i = position + while i < len(text): + c = text[i] + if c == '(': + return 1 + elif c in string.whitespace: + i = i + 1 + else: + if falsepositive: + return 0 # No following "(", presume invalid. + if c in "=+-": + # This is very unlikely to be a function use. If c is '=', + # the name is followed by an assignment or is-equal operation. + # Since the names of library functions are really unlikely to be + # followed by an assignment statement or 'is-equal' test, + # while this IS common for variable names, let's declare it invalid. + # It's possible that this is a variable function pointer, pointing + # to the real library function, but that's really improbable. + # If c is "+" or "-", we have a + or - operation. + # In theory "-" could be used for a function pointer difference + # computation, but this is extremely improbable. + # More likely: this is a variable in a computation, so drop it. + return 0 + return 1 + return 0 # Never found anything other than "(" and whitespace. + def process_directive(): - "Given a directive, process it." - global ignoreline, num_ignored_hits - # TODO: Currently this is just a stub routine that simply removes - # hits from the current line, if any, and sets a flag if not. - # Thus, any directive is considered the "ignore" directive. - # Currently that's okay because we don't have any other directives yet. - if never_ignore: return - hitfound = 0 - # Iterate backwards over hits, to be careful about the destructive iterator - for i in xrange(len(hitlist)-1, -1, -1): - if hitlist[i].filename == filename and hitlist[i].line == linenumber: - del hitlist[i] # DESTROY - this is a DESTRUCTIVE iterator. - hitfound = 1 # Don't break, because there may be more than one. - num_ignored_hits = num_ignored_hits + 1 - if not hitfound: - ignoreline = linenumber + 1 # Nothing found - ignore next line. + "Given a directive, process it." + global ignoreline, num_ignored_hits + # TODO: Currently this is just a stub routine that simply removes + # hits from the current line, if any, and sets a flag if not. + # Thus, any directive is considered the "ignore" directive. + # Currently that's okay because we don't have any other directives yet. + if never_ignore: + return + hitfound = 0 + # Iterate backwards over hits, to be careful about the destructive iterator + for i in xrange(len(hitlist) - 1, -1, -1): + if hitlist[i].filename == filename and hitlist[i].line == linenumber: + del hitlist[i] # DESTROY - this is a DESTRUCTIVE iterator. + hitfound = 1 # Don't break, because there may be more than one. + num_ignored_hits = num_ignored_hits + 1 + if not hitfound: + ignoreline = linenumber + 1 # Nothing found - ignore next line. + # Characters that can be in a string. # 0x4, 4.4e4, etc. -numberset=string.hexdigits+"_x.Ee" +numberset = string.hexdigits + "_x.Ee" # Patterns for various circumstances: -p_whitespace = re.compile( r'[ \t\v\f]+' ) -p_include = re.compile( r'#\s*include\s+(<.*?>|".*?")' ) -p_digits = re.compile( r'[0-9]' ) -p_alphaunder = re.compile( r'[A-Za-z_]' ) # Alpha chars and underline. +p_whitespace = re.compile(r'[ \t\v\f]+') +p_include = re.compile(r'#\s*include\s+(<.*?>|".*?")') +p_digits = re.compile(r'[0-9]') +p_alphaunder = re.compile(r'[A-Za-z_]') # Alpha chars and underline. # A "word" in C. Note that "$" is permitted -- it's not permitted by the # C standard in identifiers, but gcc supports it as an extension. -p_c_word = re.compile( r'[A-Za-z_][A-Za-z_0-9$]*' ) +p_c_word = re.compile(r'[A-Za-z_][A-Za-z_0-9$]*') # We'll recognize ITS4 and RATS ignore directives, as well as our own, # for compatibility's sake: -p_directive = re.compile( r'(?i)\s*(ITS4|Flawfinder|RATS):\s*([^\*]*)' ) +p_directive = re.compile(r'(?i)\s*(ITS4|Flawfinder|RATS):\s*([^\*]*)') + +max_lookahead = 500 # Lookahead limit for c_static_array. -max_lookahead=500 # Lookahead limit for c_static_array. def process_c_file(f, patch_infos): - global filename, linenumber, ignoreline, sumlines, num_links_skipped - global sloc - filename=f - linenumber = 1 - ignoreline = -1 + global filename, linenumber, ignoreline, sumlines, num_links_skipped + global sloc + filename = f + linenumber = 1 + ignoreline = -1 - incomment = 0 - instring = 0 - linebegin = 1 - codeinline = 0 # 1 when we see some code (so increment sloc at newline) + incomment = 0 + instring = 0 + linebegin = 1 + codeinline = 0 # 1 when we see some code (so increment sloc at newline) + + if (patch_infos is not None) and (not f in patch_infos): + # This file isn't in the patch list, so don't bother analyzing it. + if not quiet: + if output_format: + print "Skipping unpatched file ", h(f), "
    " + else: + print "Skipping unpatched file", f + sys.stdout.flush() + return + + if f == "-": + input = sys.stdin + else: + # Symlinks should never get here, but just in case... + if (not allowlink) and os.path.islink(f): + print "BUG! Somehow got a symlink in process_c_file!" + num_links_skipped = num_links_skipped + 1 + return + try: + input = open(f, "r") + except BaseException: + print "Error: failed to open", h(f) + sys.exit(1) + + # Read ENTIRE file into memory. Use readlines() to convert \n if necessary. + # This turns out to be very fast in Python, even on large files, and it + # eliminates lots of range checking later, making the result faster. + # We're examining source files, and today, it would be EXTREMELY bad practice + # to create source files larger than main memory space. + # Better to load it all in, and get the increased speed and reduced + # development time that results. - if ((patch_infos != None) and (not (f in patch_infos))): - # This file isn't in the patch list, so don't bother analyzing it. if not quiet: - if output_format: - print "Skipping unpatched file ", h(f), "
    " - else: - print "Skipping unpatched file", f - sys.stdout.flush() - return + if output_format: + print "Examining", h(f), "
    " + else: + print "Examining", f + sys.stdout.flush() - if f == "-": - input = sys.stdin - else: - # Symlinks should never get here, but just in case... - if ((not allowlink) and os.path.islink(f)): - print "BUG! Somehow got a symlink in process_c_file!" - num_links_skipped = num_links_skipped + 1 - return - try: - input = open(f, "r") - except: - print "Error: failed to open", h(f) - sys.exit(1) + text = string.join(input.readlines(), "") - # Read ENTIRE file into memory. Use readlines() to convert \n if necessary. - # This turns out to be very fast in Python, even on large files, and it - # eliminates lots of range checking later, making the result faster. - # We're examining source files, and today, it would be EXTREMELY bad practice - # to create source files larger than main memory space. - # Better to load it all in, and get the increased speed and reduced - # development time that results. + i = 0 + while i < len(text): + # This is a trivial tokenizer that just tries to find "words", which + # match [A-Za-z_][A-Za-z0-9_]*. It skips comments & strings. + # It also skips "#include <...>", which must be handled specially + # because "<" and ">" aren't usually delimiters. + # It doesn't bother to tokenize anything else, since it's not used. + # The following is a state machine with 3 states: incomment, instring, + # and "normal", and a separate state "linebegin" if at BOL. - if not quiet: - if output_format: - print "Examining", h(f), "
    " - else: - print "Examining", f - sys.stdout.flush() + # Skip any whitespace + m = p_whitespace.match(text, i) + if m: + i = m.end(0) - text = string.join(input.readlines(),"") - - i = 0 - while i < len(text): - # This is a trivial tokenizer that just tries to find "words", which - # match [A-Za-z_][A-Za-z0-9_]*. It skips comments & strings. - # It also skips "#include <...>", which must be handled specially - # because "<" and ">" aren't usually delimiters. - # It doesn't bother to tokenize anything else, since it's not used. - # The following is a state machine with 3 states: incomment, instring, - # and "normal", and a separate state "linebegin" if at BOL. - - # Skip any whitespace - m = p_whitespace.match(text,i) - if m: - i = m.end(0) - - if i >= len(text): - c = "\n" # Last line with no newline, we're done - else: - c = text[i] - if linebegin: # If at beginning of line, see if #include is there. - linebegin = 0 - if c == "#": codeinline = 1 # A directive, count as code. - m = p_include.match(text,i) - if m: # Found #include, skip it. Otherwise: #include - i = m.end(0) - continue - if c == "\n": - linenumber = linenumber + 1 - sumlines = sumlines + 1 - linebegin = 1 - if codeinline: sloc = sloc + 1 - codeinline = 0 - i = i +1 - continue - i = i + 1 # From here on, text[i] points to next character. - if i < len(text): nextc = text[i] - else: nextc = '' - if incomment: - if c=='*' and nextc=='/': - i = i + 1 - incomment = 0 - elif instring: - if c == '\\' and (nextc != "\n"): i = i + 1 - elif c == '"' and instring == 1: instring = 0 - elif c == "'" and instring == 2: instring = 0 - else: - if c=='/' and nextc=='*': - m = p_directive.match(text, i+1) # Is there a directive here? - if m: - process_directive() - i = i + 1 - incomment = 1 - elif c=='/' and nextc=='/': # "//" comments - skip to EOL. - m = p_directive.match(text, i+1) # Is there a directive here? - if m: - process_directive() - while i= len(text): + c = "\n" # Last line with no newline, we're done + else: + c = text[i] + if linebegin: # If at beginning of line, see if #include is there. + linebegin = 0 + if c == "#": + codeinline = 1 # A directive, count as code. + m = p_include.match(text, i) + if m: # Found #include, skip it. Otherwise: #include + i = m.end(0) + continue + if c == "\n": + linenumber = linenumber + 1 + sumlines = sumlines + 1 + linebegin = 1 + if codeinline: + sloc = sloc + 1 + codeinline = 0 i = i + 1 - elif c=='"': - instring = 1 - codeinline = 1 - elif c=="'": - instring = 2 - codeinline = 1 - else: - codeinline = 1 # It's not whitespace, comment, or string. - m = p_c_word.match(text, i-1) - if m: # Do we have a word? - startpos=i-1 - endpos = m.end(0) - i = endpos - word = text[startpos:endpos] - # print "Word is:", text[startpos:endpos] - if (word in c_ruleset) and c_valid_match(text, endpos): - if ((patch_infos == None) or ((patch_infos != None) and - (linenumber in patch_infos[f]))): - # FOUND A MATCH, setup & call hook. - # print "HIT: #%s#\n" % word - # Don't use the tuple assignment form, e.g., a,b=c,d - # because Python (least 2.2.2) does that slower - # (presumably because it creates & destroys temporary tuples) - hit = Hit(c_ruleset[word]) - hit.name = word - hit.start = startpos - hit.end = endpos - hit.line = linenumber - hit.column = find_column(text, startpos) - hit.filename=filename - hit.context_text = get_context(text, startpos) - hit.parameters = extract_c_parameters(text, endpos) - if hit.extract_lookahead: - hit.lookahead = text[startpos:startpos+max_lookahead] - hit.hook(hit) - elif p_digits.match(c): - while i" - if list_rules: - display_ruleset(c_ruleset) - sys.exit(0) + expand_ruleset(c_ruleset) + if showheading: + print "Number of rules (primarily dangerous function names) in C/C++ ruleset:", len( + c_ruleset) + if output_format: + print "

    " + if list_rules: + display_ruleset(c_ruleset) + sys.exit(0) # Show the header, but only if it hasn't been shown yet. def display_header(): - global displayed_header - if csv_output: - csv_writer.writerow(['File', 'Line', 'Column', 'Level', - 'Category', 'Name', 'Warning', - 'Suggestion', 'Note', 'CWEs', 'Context']) - return - if not showheading: return - if not displayed_header: - if output_format: - print ('') - print "" - print "" - print '' - print "Flawfinder Results" - print '' - print '' - print "" - print "" - print "

    Flawfinder Results

    " - print "Here are the security scan results from" - print 'Flawfinder version %s,' % version - print '(C) 2001-2017 David A. Wheeler.' - else: - print "Flawfinder version %s, (C) 2001-2017 David A. Wheeler." % version - displayed_header = 1 + global displayed_header + if csv_output: + csv_writer.writerow([ + 'File', 'Line', 'Column', 'Level', 'Category', 'Name', 'Warning', + 'Suggestion', 'Note', 'CWEs', 'Context' + ]) + return + if not showheading: + return + if not displayed_header: + if output_format: + print( + '') + print "" + print "" + print '' + print "Flawfinder Results" + print '' + print '' + print "" + print "" + print "

    Flawfinder Results

    " + print "Here are the security scan results from" + print 'Flawfinder version %s,' % version + print '(C) 2001-2017 David A. Wheeler.' + else: + print "Flawfinder version %s, (C) 2001-2017 David A. Wheeler." % version + displayed_header = 1 -c_extensions = { '.c' : 1, '.h' : 1, - '.ec': 1, '.ecp': 1, # Informix embedded C. - '.pgc': 1, # Postgres embedded C. - '.C': 1, '.cpp': 1, '.CPP': 1, '.cxx': 1, '.cc': 1, # C++ - '.CC' : 1, '.c++' :1, # C++. - '.pcc': 1, # Oracle C++ - '.hpp': 1, '.H' : 1, # .h - usually C++. - } +c_extensions = { + '.c': 1, + '.h': 1, + '.ec': 1, + '.ecp': 1, # Informix embedded C. + '.pgc': 1, # Postgres embedded C. + '.C': 1, + '.cpp': 1, + '.CPP': 1, + '.cxx': 1, + '.cc': 1, # C++ + '.CC': 1, + '.c++': 1, # C++. + '.pcc': 1, # Oracle C++ + '.hpp': 1, + '.H': 1, # .h - usually C++. +} def maybe_process_file(f, patch_infos): - # process f, but only if (1) it's a directory (so we recurse), or - # (2) it's source code in a language we can handle. - # Currently, for files that means only C/C++, and we check if the filename - # has a known C/C++ filename extension. If it doesn't, we ignore the file. - # We accept symlinks only if allowlink is true. - global num_links_skipped, num_dotdirs_skipped - if os.path.isdir(f): - if (not allowlink) and os.path.islink(f): - if not quiet: print_warning("Skipping symbolic link directory " + h(f)) - num_links_skipped = num_links_skipped + 1 - return - base_filename = os.path.basename(f) - if (skipdotdir and len(base_filename) > 1 and ("." == base_filename[0])): - if not quiet: print_warning("Skipping directory with initial dot " + h(f)) - num_dotdirs_skipped = num_dotdirs_skipped + 1 - return - for file in os.listdir(f): - maybe_process_file(os.path.join(f, file), patch_infos) - # Now we will FIRST check if the file appears to be a C/C++ file, and - # THEN check if it's a regular file or symlink. This is more complicated, - # but I do it this way so that there won't be a lot of pointless - # warnings about skipping files we wouldn't have used anyway. - dotposition = string.rfind(f, ".") - if dotposition > 1: - extension = f[dotposition:] - if extension in c_extensions: - # Its name appears to be a C/C++ source code file. - if (not allowlink) and os.path.islink(f): - if not quiet: print_warning("Skipping symbolic link file " + h(f)) - num_links_skipped = num_links_skipped + 1 - elif not os.path.isfile(f): - # Skip anything not a normal file. This is so that - # device files, etc. won't cause trouble. - if not quiet: print_warning("Skipping non-regular file " + h(f)) - else: - # We want to know the difference only with files found in the patch. - if ((patch_infos == None) or (patch_infos != None and - (f in patch_infos))): - process_c_file(f, patch_infos) + # process f, but only if (1) it's a directory (so we recurse), or + # (2) it's source code in a language we can handle. + # Currently, for files that means only C/C++, and we check if the filename + # has a known C/C++ filename extension. If it doesn't, we ignore the file. + # We accept symlinks only if allowlink is true. + global num_links_skipped, num_dotdirs_skipped + if os.path.isdir(f): + if (not allowlink) and os.path.islink(f): + if not quiet: + print_warning("Skipping symbolic link directory " + h(f)) + num_links_skipped = num_links_skipped + 1 + return + base_filename = os.path.basename(f) + if (skipdotdir and len(base_filename) > 1 + and (base_filename[0] == ".")): + if not quiet: + print_warning("Skipping directory with initial dot " + h(f)) + num_dotdirs_skipped = num_dotdirs_skipped + 1 + return + for file in os.listdir(f): + maybe_process_file(os.path.join(f, file), patch_infos) + # Now we will FIRST check if the file appears to be a C/C++ file, and + # THEN check if it's a regular file or symlink. This is more complicated, + # but I do it this way so that there won't be a lot of pointless + # warnings about skipping files we wouldn't have used anyway. + dotposition = string.rfind(f, ".") + if dotposition > 1: + extension = f[dotposition:] + if extension in c_extensions: + # Its name appears to be a C/C++ source code file. + if (not allowlink) and os.path.islink(f): + if not quiet: + print_warning("Skipping symbolic link file " + h(f)) + num_links_skipped = num_links_skipped + 1 + elif not os.path.isfile(f): + # Skip anything not a normal file. This is so that + # device files, etc. won't cause trouble. + if not quiet: + print_warning("Skipping non-regular file " + h(f)) + else: + # We want to know the difference only with files found in the + # patch. + if ((patch_infos is None) + or (patch_infos is not None and (f in patch_infos))): + process_c_file(f, patch_infos) def process_file_args(files, patch_infos): - # Process the list of "files", some of which may be directories, - # which were given on the command line. - # This is handled differently than anything not found on the command line - # (i.e. through recursing into a directory) because flawfinder - # ALWAYS processes normal files given on the command line. - # This is done to give users control over what's processed; - # if a user really, really wants to analyze a file, name it! - # If user wants to process "this directory and down", just say ".". - # We handle symlinks specially, handle normal files and directories, - # and skip the rest to prevent security problems. "-" is stdin. - global num_links_skipped - for f in files: - if (not allowlink) and os.path.islink(f): - if not quiet: print_warning("Skipping symbolic link " + h(f)) - num_links_skipped = num_links_skipped + 1 - elif os.path.isfile(f) or f == "-": - # If on the command line, FORCE processing of it. - # Currently, we only process C/C++. - # check if we only want to review a patch - if ( (patch_infos != None and k in patch_infos) or (patch_infos == None) ): - process_c_file(f, patch_infos) - elif os.path.isdir(f): - # At one time flawfinder used os.path.walk, but that Python - # built-in doesn't give us enough control over symbolic links. - # So, we'll walk the filesystem hierarchy ourselves: - maybe_process_file(f, patch_infos) - elif not os.path.exists(f): - if not quiet: - if h(f).startswith("\342\210\222"): - print_warning("Skipping non-existent filename starting with UTF-8 long dash " + h(f)) + # Process the list of "files", some of which may be directories, + # which were given on the command line. + # This is handled differently than anything not found on the command line + # (i.e. through recursing into a directory) because flawfinder + # ALWAYS processes normal files given on the command line. + # This is done to give users control over what's processed; + # if a user really, really wants to analyze a file, name it! + # If user wants to process "this directory and down", just say ".". + # We handle symlinks specially, handle normal files and directories, + # and skip the rest to prevent security problems. "-" is stdin. + global num_links_skipped + for f in files: + if (not allowlink) and os.path.islink(f): + if not quiet: + print_warning("Skipping symbolic link " + h(f)) + num_links_skipped = num_links_skipped + 1 + elif os.path.isfile(f) or f == "-": + # If on the command line, FORCE processing of it. + # Currently, we only process C/C++. + # check if we only want to review a patch + if ((patch_infos is not None and k in patch_infos) + or (patch_infos is None)): + process_c_file(f, patch_infos) + elif os.path.isdir(f): + # At one time flawfinder used os.path.walk, but that Python + # built-in doesn't give us enough control over symbolic links. + # So, we'll walk the filesystem hierarchy ourselves: + maybe_process_file(f, patch_infos) + elif not os.path.exists(f): + if not quiet: + if h(f).startswith("\342\210\222"): + print_warning( + "Skipping non-existent filename starting with UTF-8 long dash " + + h(f)) + else: + print_warning("Skipping non-existent file " + h(f)) else: - print_warning("Skipping non-existent file " + h(f)) - else: - if not quiet: print_warning("Skipping non-regular file " + h(f)) + if not quiet: + print_warning("Skipping non-regular file " + h(f)) + def usage(): - print """ + print """ flawfinder [--help | -h] [--version] [--listrules] [--allowlink] [--followdotdir] [--nolink] [--patch filename | -P filename] @@ -1732,286 +1884,298 @@ flawfinder [--help | -h] [--version] [--listrules] documentation. """ -def process_options(): - global show_context, show_inputs, allowlink, skipdotdir, omit_time - global output_format, minimum_level, show_immediately, single_line - global csv_output, csv_writer - global required_regex, required_regex_compiled - global falsepositive - global show_columns, never_ignore, quiet, showheading, list_rules - global loadhitlist, savehitlist, diffhitlist - global patch_file - try: - # Note - as a side-effect, this sets sys.argv[]. - optlist, args = getopt.getopt(sys.argv[1:], "ce:m:nih?CSDQHIFP:", - ["context", "minlevel=", "immediate", "inputs", "input", - "nolink", "falsepositive", "falsepositives", - "columns", "listrules", "omittime", "allowlink", "patch=", - "followdotdir", - "neverignore", "regex=", - "quiet", "dataonly", "html", "singleline", "csv", - "loadhitlist=", "savehitlist=", "diffhitlist=", - "version", "help" ]) - for (opt,value) in optlist: - if opt == "--context" or opt == "-c": - show_context = 1 - elif opt == "--columns" or opt == "-C": - show_columns = 1 - elif opt == "--quiet" or opt == "-Q": - quiet = 1 - elif opt == "--dataonly" or opt == "-D": - showheading = 0 - elif opt == "--inputs" or opt == "--input" or opt == "-I": - show_inputs = 1 - minimum_level = 0 - elif opt == "--falsepositive" or opt == "falsepositives" or opt == "-F": - falsepositive = 1 - elif opt == "--nolink": - allowlink = 0 - elif opt == "--omittime": - omit_time = 1 - elif opt == "--allowlink": - allowlink = 1 - elif opt == "--followdotdir": - skipdotdir = 0 - elif opt == "--listrules": - list_rules = 1 - elif opt == "--html" or opt == "-H": - output_format = 1 - single_line = 0 - elif opt == "--minlevel" or opt == "-m": - minimum_level = string.atoi(value) - elif opt == "--singleline" or opt == "-S": - single_line = 1 - elif opt == "--csv": - csv_output = 1 - quiet = 1 - showheading = 0 - csv_writer = csv.writer(sys.stdout) - elif opt == "--immediate" or opt == "-i": - show_immediately = 1 - elif opt == "-n" or opt == "--neverignore": - never_ignore = 1 - elif opt == "-e" or opt == "--regex": - required_regex = value - # This will raise an exception if it can't be compiled as a regex: - required_regex_compiled = re.compile(required_regex) - elif opt == "-P" or opt == "--patch": - # Note: This is -P, so that a future -p1 option can strip away - # pathname prefixes (with the same option name as "patch"). - patch_file = value - # If we consider ignore comments we may change a line which was - # previously ignored but which will raise now a valid warning without - # noticing it now. So, set never_ignore. - never_ignore = 1 - elif opt == "--loadhitlist": - loadhitlist = value - display_header() - if showheading: print "Loading hits from", value - elif opt == "--savehitlist": - savehitlist = value - display_header() - if showheading: print "Saving hitlist to", value - elif opt == "--diffhitlist": - diffhitlist = value - display_header() - if showheading: print "Showing hits not in", value - elif opt == "--version": - print version - sys.exit(0) - elif opt in [ '-h', '-?', '--help' ]: - # We accept "-?" but do not document it. On Unix-like systems the - # question mark in "-?" should be escaped, and many forget that. - usage() - sys.exit(0) - # For DOS/Windows, expand filenames; for Unix, DON'T expand them - # (the shell will expand them for us). Some sloppy Python programs - # always call "glob", but that's WRONG -- on Unix-like systems that - # will expand twice. Python doesn't have a clean way to detect - # "has globbing occurred", so this is the best I've found: - if os.name == "windows" or os.name == "nt" or os.name == "dos": - sys.argv[1:] = reduce(operator.add, map(glob.glob, args)) - else: - sys.argv[1:] = args - # In Python 2 the convention is "getopt.GetoptError", but we - # use "getopt.error" here so it's compatible with both - # Python 1.5 and Python 2. - except getopt.error, text: - print "*** getopt error:", text - usage() - sys.exit(1) +def process_options(): + global show_context, show_inputs, allowlink, skipdotdir, omit_time + global output_format, minimum_level, show_immediately, single_line + global csv_output, csv_writer + global required_regex, required_regex_compiled + global falsepositive + global show_columns, never_ignore, quiet, showheading, list_rules + global loadhitlist, savehitlist, diffhitlist + global patch_file + try: + # Note - as a side-effect, this sets sys.argv[]. + optlist, args = getopt.getopt(sys.argv[1:], "ce:m:nih?CSDQHIFP:", [ + "context", "minlevel=", "immediate", "inputs", "input", "nolink", + "falsepositive", "falsepositives", "columns", "listrules", + "omittime", "allowlink", "patch=", "followdotdir", "neverignore", + "regex=", "quiet", "dataonly", "html", "singleline", "csv", + "loadhitlist=", "savehitlist=", "diffhitlist=", "version", "help" + ]) + for (opt, value) in optlist: + if opt == "--context" or opt == "-c": + show_context = 1 + elif opt == "--columns" or opt == "-C": + show_columns = 1 + elif opt == "--quiet" or opt == "-Q": + quiet = 1 + elif opt == "--dataonly" or opt == "-D": + showheading = 0 + elif opt == "--inputs" or opt == "--input" or opt == "-I": + show_inputs = 1 + minimum_level = 0 + elif opt == "--falsepositive" or opt == "falsepositives" or opt == "-F": + falsepositive = 1 + elif opt == "--nolink": + allowlink = 0 + elif opt == "--omittime": + omit_time = 1 + elif opt == "--allowlink": + allowlink = 1 + elif opt == "--followdotdir": + skipdotdir = 0 + elif opt == "--listrules": + list_rules = 1 + elif opt == "--html" or opt == "-H": + output_format = 1 + single_line = 0 + elif opt == "--minlevel" or opt == "-m": + minimum_level = string.atoi(value) + elif opt == "--singleline" or opt == "-S": + single_line = 1 + elif opt == "--csv": + csv_output = 1 + quiet = 1 + showheading = 0 + csv_writer = csv.writer(sys.stdout) + elif opt == "--immediate" or opt == "-i": + show_immediately = 1 + elif opt == "-n" or opt == "--neverignore": + never_ignore = 1 + elif opt == "-e" or opt == "--regex": + required_regex = value + # This will raise an exception if it can't be compiled as a + # regex: + required_regex_compiled = re.compile(required_regex) + elif opt == "-P" or opt == "--patch": + # Note: This is -P, so that a future -p1 option can strip away + # pathname prefixes (with the same option name as "patch"). + patch_file = value + # If we consider ignore comments we may change a line which was + # previously ignored but which will raise now a valid warning without + # noticing it now. So, set never_ignore. + never_ignore = 1 + elif opt == "--loadhitlist": + loadhitlist = value + display_header() + if showheading: + print "Loading hits from", value + elif opt == "--savehitlist": + savehitlist = value + display_header() + if showheading: + print "Saving hitlist to", value + elif opt == "--diffhitlist": + diffhitlist = value + display_header() + if showheading: + print "Showing hits not in", value + elif opt == "--version": + print version + sys.exit(0) + elif opt in ['-h', '-?', '--help']: + # We accept "-?" but do not document it. On Unix-like systems the + # question mark in "-?" should be escaped, and many forget + # that. + usage() + sys.exit(0) + # For DOS/Windows, expand filenames; for Unix, DON'T expand them + # (the shell will expand them for us). Some sloppy Python programs + # always call "glob", but that's WRONG -- on Unix-like systems that + # will expand twice. Python doesn't have a clean way to detect + # "has globbing occurred", so this is the best I've found: + if os.name == "windows" or os.name == "nt" or os.name == "dos": + sys.argv[1:] = functools.reduce(operator.add, map(glob.glob, args)) + else: + sys.argv[1:] = args + # In Python 2 the convention is "getopt.GetoptError", but we + # use "getopt.error" here so it's compatible with both + # Python 1.5 and Python 2. + except getopt.error as text: + print "*** getopt error:", text + usage() + sys.exit(1) def process_files(): - global hitlist - if loadhitlist: - f = open(loadhitlist) - hitlist = pickle.load(f) - else: - patch_infos = None - if (patch_file != ""): - patch_infos = load_patch_info(patch_file) - files = sys.argv[1:] - if not files: - print "*** No input files" - return None - process_file_args(files, patch_infos) - return 1 + global hitlist + if loadhitlist: + f = open(loadhitlist) + hitlist = pickle.load(f) + else: + patch_infos = None + if patch_file != "": + patch_infos = load_patch_info(patch_file) + files = sys.argv[1:] + if not files: + print "*** No input files" + return None + process_file_args(files, patch_infos) + return 1 def show_final_results(): - global hitlist - count = 0 - count_per_level = {} - count_per_level_and_up = {} - for i in range(0,6): # Initialize count_per_level - count_per_level[i] = 0 - for i in range(0,6): # Initialize count_per_level - count_per_level_and_up[i] = 0 - if show_immediately or not quiet: # Separate the final results. - print - if showheading: - if output_format: - print "

    Final Results

    " - else: - print "FINAL RESULTS:" + global hitlist + count = 0 + count_per_level = {} + count_per_level_and_up = {} + for i in range(0, 6): # Initialize count_per_level + count_per_level[i] = 0 + for i in range(0, 6): # Initialize count_per_level + count_per_level_and_up[i] = 0 + if show_immediately or not quiet: # Separate the final results. print - hitlist.sort() - # Display results. The HTML format now uses - #
      so that the format differentiates each entry. - # I'm not using
        , because its numbers might be confused with - # the risk levels or line numbers. - if diffhitlist: - diff_file = open(diffhitlist) - diff_hitlist = pickle.load(diff_file) - if output_format: print "
          " - for h in hitlist: - if h not in diff_hitlist: - h.show() - count_per_level[h.level] = count_per_level[h.level] + 1 - count = count + 1 - if output_format: print "
        " - diff_file.close() - else: - if output_format: print "
          " - for h in hitlist: - h.show() - count_per_level[h.level] = count_per_level[h.level] + 1 - if output_format: print "
        " - count = len(hitlist) - # Done with list, show the post-hitlist summary. - if showheading: - if output_format: - print "

        Analysis Summary

        " + if showheading: + if output_format: + print "

        Final Results

        " + else: + print "FINAL RESULTS:" + print + hitlist.sort() + # Display results. The HTML format now uses + #
          so that the format differentiates each entry. + # I'm not using
            , because its numbers might be confused with + # the risk levels or line numbers. + if diffhitlist: + diff_file = open(diffhitlist) + diff_hitlist = pickle.load(diff_file) + if output_format: + print "
              " + for h in hitlist: + if h not in diff_hitlist: + h.show() + count_per_level[h.level] = count_per_level[h.level] + 1 + count = count + 1 + if output_format: + print "
            " + diff_file.close() else: - print - print "ANALYSIS SUMMARY:" - if output_format: - print "

            " - else: - print - if count > 0: - print "Hits =", count - else: - print "No hits found." - if output_format: - print "
            " - # Compute the amount of time spent, and lines analyzed/second. - # By computing time here, we also include the time for - # producing the list of hits, which is reasonable. - time_analyzing = time.time() - starttime - if required_regex: - print "Hits limited to regular expression " + required_regex - print "Lines analyzed = %d" % sumlines, - if time_analyzing > 0 and not omit_time: # Avoid divide-by-zero. - print "in approximately %.2f seconds (%.0f lines/second)" % ( - time_analyzing, - (sumlines / time_analyzing) ) - else: - print - if output_format: print "
            " - print "Physical Source Lines of Code (SLOC) = %d" % sloc - if output_format: print "
            " - # Output hits@each level. - print "Hits@level =", - for i in range(0,6): - print "[%d] %3d" % (i, count_per_level[i]), - if output_format: - print "
            " - else: - print - # Compute hits at "level x or higher" - print "Hits@level+ =", - for i in range(0,6): - for j in range(i,6): - count_per_level_and_up[i] = count_per_level_and_up[i] + count_per_level[j] - # Display hits at "level x or higher" - for i in range(0,6): - print "[%d+] %3d" % (i, count_per_level_and_up[i]), - if output_format: - print "
            " - else: - print - if (sloc > 0): - print "Hits/KSLOC@level+ =", - for i in range(0,6): - print "[%d+] %3g" % (i, count_per_level_and_up[i]*1000.0/sloc), - if output_format: - print "
            " - else: - print - # - if num_links_skipped: - print "Symlinks skipped =", num_links_skipped, "(--allowlink overrides but see doc for security issue)" - if output_format: - print "
            " - if num_dotdirs_skipped: - print "Dot directories skipped =", num_dotdirs_skipped, "(--followdotdir overrides)" - if output_format: - print "
            " - if num_ignored_hits > 0: - print "Suppressed hits =", num_ignored_hits, "(use --neverignore to show them)" - if output_format: - print "
            " - print "Minimum risk level = %d" % minimum_level - if output_format: print "
            " - if count > 0: - print "Not every hit is necessarily a security vulnerability." - if output_format: - print "
            " - print "There may be other security vulnerabilities; review your code!" - if output_format: - print "
            " - print "See 'Secure Programming for Linux and Unix HOWTO'" - print "(http://www.dwheeler.com/secure-programs) for more information." - else: - print "See 'Secure Programming for Linux and Unix HOWTO'" - print "(http://www.dwheeler.com/secure-programs) for more information." - if output_format: - print "" - print "" + if output_format: + print "

              " + for h in hitlist: + h.show() + count_per_level[h.level] = count_per_level[h.level] + 1 + if output_format: + print "
            " + count = len(hitlist) + # Done with list, show the post-hitlist summary. + if showheading: + if output_format: + print "

            Analysis Summary

            " + else: + print + print "ANALYSIS SUMMARY:" + if output_format: + print "

            " + else: + print + if count > 0: + print "Hits =", count + else: + print "No hits found." + if output_format: + print "
            " + # Compute the amount of time spent, and lines analyzed/second. + # By computing time here, we also include the time for + # producing the list of hits, which is reasonable. + time_analyzing = time.time() - starttime + if required_regex: + print "Hits limited to regular expression " + required_regex + print "Lines analyzed = %d" % sumlines, + if time_analyzing > 0 and not omit_time: # Avoid divide-by-zero. + print "in approximately %.2f seconds (%.0f lines/second)" % ( + time_analyzing, (sumlines / time_analyzing)) + else: + print + if output_format: + print "
            " + print "Physical Source Lines of Code (SLOC) = %d" % sloc + if output_format: + print "
            " + # Output hits@each level. + print "Hits@level =", + for i in range(0, 6): + print "[%d] %3d" % (i, count_per_level[i]), + if output_format: + print "
            " + else: + print + # Compute hits at "level x or higher" + print "Hits@level+ =", + for i in range(0, 6): + for j in range(i, 6): + count_per_level_and_up[ + i] = count_per_level_and_up[i] + count_per_level[j] + # Display hits at "level x or higher" + for i in range(0, 6): + print "[%d+] %3d" % (i, count_per_level_and_up[i]), + if output_format: + print "
            " + else: + print + if sloc > 0: + print "Hits/KSLOC@level+ =", + for i in range(0, 6): + print "[%d+] %3g" % ( + i, count_per_level_and_up[i] * 1000.0 / sloc), + if output_format: + print "
            " + else: + print + # + if num_links_skipped: + print "Symlinks skipped =", num_links_skipped, "(--allowlink overrides but see doc for security issue)" + if output_format: + print "
            " + if num_dotdirs_skipped: + print "Dot directories skipped =", num_dotdirs_skipped, "(--followdotdir overrides)" + if output_format: + print "
            " + if num_ignored_hits > 0: + print "Suppressed hits =", num_ignored_hits, "(use --neverignore to show them)" + if output_format: + print "
            " + print "Minimum risk level = %d" % minimum_level + if output_format: + print "
            " + if count > 0: + print "Not every hit is necessarily a security vulnerability." + if output_format: + print "
            " + print "There may be other security vulnerabilities; review your code!" + if output_format: + print "
            " + print "See 'Secure Programming for Linux and Unix HOWTO'" + print "(http://www.dwheeler.com/secure-programs) for more information." + else: + print "See 'Secure Programming for Linux and Unix HOWTO'" + print "(http://www.dwheeler.com/secure-programs) for more information." + if output_format: + print "" + print "" def save_if_desired(): - # We'll save entire hitlist, even if only differences displayed. - if savehitlist: - print "Saving hitlist to", savehitlist - f = open(savehitlist, "w") - pickle.dump(hitlist, f) - f.close() + # We'll save entire hitlist, even if only differences displayed. + if savehitlist: + print "Saving hitlist to", savehitlist + f = open(savehitlist, "w") + pickle.dump(hitlist, f) + f.close() + def flawfind(): - process_options() - display_header() - initialize_ruleset() - if process_files(): - show_final_results() - save_if_desired() + process_options() + display_header() + initialize_ruleset() + if process_files(): + show_final_results() + save_if_desired() + if __name__ == '__main__': - try: - flawfind() - except KeyboardInterrupt: - print "*** Flawfinder interrupted" - + try: + flawfind() + except KeyboardInterrupt: + print "*** Flawfinder interrupted" diff --git a/pylintrc b/pylintrc index 1ca306b..809fb2d 100644 --- a/pylintrc +++ b/pylintrc @@ -50,7 +50,14 @@ confidence= # --enable=similarities". If you want to run only the classes checker, but have # no Warning level messages displayed, use"--disable=all --enable=classes # --disable=W" -disable=print-statement,parameter-unpacking,unpacking-in-except,old-raise-syntax,backtick,long-suffix,old-ne-operator,old-octal-literal,import-star-module-level,raw-checker-failed,bad-inline-option,locally-disabled,locally-enabled,file-ignored,suppressed-message,useless-suppression,deprecated-pragma,apply-builtin,basestring-builtin,buffer-builtin,cmp-builtin,coerce-builtin,execfile-builtin,file-builtin,long-builtin,raw_input-builtin,reduce-builtin,standarderror-builtin,unicode-builtin,xrange-builtin,coerce-method,delslice-method,getslice-method,setslice-method,no-absolute-import,old-division,dict-iter-method,dict-view-method,next-method-called,metaclass-assignment,indexing-exception,raising-string,reload-builtin,oct-method,hex-method,nonzero-method,cmp-method,input-builtin,round-builtin,intern-builtin,unichr-builtin,map-builtin-not-iterating,zip-builtin-not-iterating,range-builtin-not-iterating,filter-builtin-not-iterating,using-cmp-argument,eq-without-hash,div-method,idiv-method,rdiv-method,exception-message-attribute,invalid-str-codec,sys-max-int,bad-python3-import,deprecated-string-function,deprecated-str-translate-call +# Flawfinder specifics: This disables "invalid-name", because that checker +# has a serious bug: it can't handle global variables and thinks they are +# constants (so it raises a hailstorm of incorrect reports). +# We *use* global-statement, so don't warn about it. +# TODO: perhaps stop disabling some, e.g., +# missing-docstring, too-many-statements, +# too-many-branches,too-many-locals,too-many-nested-blocks +disable=print-statement,parameter-unpacking,unpacking-in-except,old-raise-syntax,backtick,long-suffix,old-ne-operator,old-octal-literal,import-star-module-level,raw-checker-failed,bad-inline-option,locally-disabled,locally-enabled,file-ignored,suppressed-message,useless-suppression,deprecated-pragma,apply-builtin,basestring-builtin,buffer-builtin,cmp-builtin,coerce-builtin,execfile-builtin,file-builtin,long-builtin,raw_input-builtin,reduce-builtin,standarderror-builtin,unicode-builtin,xrange-builtin,coerce-method,delslice-method,getslice-method,setslice-method,no-absolute-import,old-division,dict-iter-method,dict-view-method,next-method-called,metaclass-assignment,indexing-exception,raising-string,reload-builtin,oct-method,hex-method,nonzero-method,cmp-method,input-builtin,round-builtin,intern-builtin,unichr-builtin,map-builtin-not-iterating,zip-builtin-not-iterating,range-builtin-not-iterating,filter-builtin-not-iterating,using-cmp-argument,eq-without-hash,div-method,idiv-method,rdiv-method,exception-message-attribute,invalid-str-codec,sys-max-int,bad-python3-import,deprecated-string-function,deprecated-str-translate-call,invalid-name,missing-docstring,global-statement,too-many-statements,too-many-branches,too-many-locals,too-many-instance-attributes,too-many-nested-blocks # Enable the message, report, category or checker with the given id(s). You can # either give multiple identifier separated by comma (,) or put this option @@ -191,14 +198,15 @@ indent-after-paren=4 # String used as indentation unit. This is usually " " (4 spaces) or "\t" (1 # tab). -# Flawfinder specific: We use 2-space indents, not 4-space -indent-string=' ' +indent-string=' ' # Maximum number of characters on a single line. -max-line-length=100 +# TODO: Flawfinder specific - eventually we'll bring this down to 80 +max-line-length=500 # Maximum number of lines in a module -max-module-lines=1000 +# Flawfinder specific - we want this to be a single file +max-module-lines=5000 # List of optional constructs for which whitespace checking is disabled. `dict- # separator` is used to allow tabulation in dicts, etc.: {1 : 1,\n222: 2}.