@@ -210,3 +210,13 @@ will be an entry like the following and the violation id will be in the column
Given the violation id "misra-c2012-20.7", the procedure above can be followed
to justify this finding.
+
+Another way to justify the above violation is to put the in-code comment tag
+at the end of the affected line::
+
+| extern char _start[], _end[], start[]; /* SAF-1-safe [...] */
+
+This way of deviating violations needs however to be used only when placing the
+tag above the line can't be done. This option suffers from some limitation on
+cppcheck and coverity tool that don't support natively the suppression comment
+at the end of the line.
@@ -41,7 +41,7 @@ def __generate_suppression_list(out_file):
# The following lambda function will return a file if it contains lines with
# a comment containing "cppcheck-suppress[*]" on a single line.
grep_action = lambda x: utils.grep(x,
- r'^[ \t]*/\* cppcheck-suppress\[(?P<id>.*)\] \*/$')
+ r'^.*/\* cppcheck-suppress\[(?P<id>.*)\] \*/$')
# Look for a list of .h files that matches the condition above
headers = utils.recursive_find_file(settings.xen_dir, r'.*\.h$',
grep_action)
@@ -52,11 +52,15 @@ def parse_xen_tags():
os.rename(file, bkp_file)
time_bkp_file = os.stat(bkp_file)
# Create <file> from <file>.safparse but with the Xen tag parsed
- tag_database.substitute_tags(settings.analysis_tool, bkp_file, entry,
- subs_list)
- # Set timestamp for file equal to bkp_file, so that if the file is
- # modified during the process by the user, we can catch it
- os.utime(file, (time_bkp_file.st_atime, time_bkp_file.st_mtime))
+ try:
+ tag_database.substitute_tags(settings.analysis_tool, bkp_file, entry,
+ subs_list)
+ except Exception as e:
+ raise ParseTagPhaseError("{}".format(e))
+ finally:
+ # Set timestamp for file equal to bkp_file, so that if the file is
+ # modified during the process by the user, we can catch it
+ os.utime(file, (time_bkp_file.st_atime, time_bkp_file.st_mtime))
def build_xen():
@@ -25,7 +25,7 @@ def get_xen_tag_index_type_regex(tool):
def get_xen_tag_comment_regex(tool):
- before_comment = r'(?P<before>[ \t]*)'
+ before_comment = r'(?P<before>.*)'
comment = rf'(?P<comment>/\* +{get_xen_tag_regex(tool)}.*\*/)'
return rf'^(?P<full_line>{before_comment}{comment})$'
@@ -106,7 +106,30 @@ def substitute_tags(tool, input_file, grep_struct, subs_rules):
key = xen_tag_regex_obj.group('type')
if id_number in subs_rules[key]:
comment_in = grep_struct["matches"][line_number]['comment']
+ before = grep_struct["matches"][line_number]['before']
comment_out = subs_rules[key][id_number]
+ if before != '' and not re.match(r'^[ \t]+$', before):
+ # The comment is at the end of some line with some code
+ if tool == "eclair":
+ # Eclair supports comment at the end of the line, so
+ # the only thing to do is use the right syntax in
+ # the comment, the default version of it is
+ # deviating the current line and the next one
+ comment_out = re.sub(r'\d+ ""', '0 ""', comment_out)
+ else:
+ # Other tool does not support deviating the same
+ # line of the comment, so we use a trick and we use
+ # the comment at the end of the previous line
+ if line_number-2 < 0:
+ raise TagDatabaseError(
+ "The comment {} using the tool '{}' can't "
+ "stay at the end of the line 1."
+ .format(comment_in, tool)
+ )
+ parsed_content[line_number-2] = \
+ parsed_content[line_number-2].replace("\n",
+ comment_out + '\n')
+ comment_out = ''
parsed_content[line_number-1] = re.sub(
re.escape(comment_in), comment_out,
parsed_content[line_number-1])
Implement the in-code suppression comment at the end of the line. Now it is possible to add a Xen deviaiton comment with the syntax described in the docs at the end of the line affected by the violation, to deviate it. Eclair natively supports it, so the translation for the tool will be straighforward, but the other tool needs to translate an occurrence of the tag into a suppressino comment at the end of the previous line, this will have a corner case where the line number 1 of the file can't be deviated in this way for such tools. Updated documentation. Signed-off-by: Luca Fancellu <luca.fancellu@arm.com> --- docs/misra/documenting-violations.rst | 10 ++++++++ xen/scripts/xen_analysis/cppcheck_analysis.py | 2 +- xen/scripts/xen_analysis/generic_analysis.py | 14 +++++++---- xen/scripts/xen_analysis/tag_database.py | 25 ++++++++++++++++++- 4 files changed, 44 insertions(+), 7 deletions(-)