Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
frama-c
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Charles Southerland
frama-c
Commits
928ab2b2
Commit
928ab2b2
authored
4 years ago
by
Virgile Prevosto
Committed by
Andre Maroneze
4 years ago
Browse files
Options
Downloads
Patches
Plain Diff
[MdR] test for sarif and save/load sequences
parent
e50be496
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/plugins/markdown-report/tests/sarif/cwe125.c
+38
-0
38 additions, 0 deletions
src/plugins/markdown-report/tests/sarif/cwe125.c
src/plugins/markdown-report/tests/sarif/oracle/cwe125.sarif
+260
-0
260 additions, 0 deletions
src/plugins/markdown-report/tests/sarif/oracle/cwe125.sarif
with
298 additions
and
0 deletions
src/plugins/markdown-report/tests/sarif/cwe125.c
0 → 100644
+
38
−
0
View file @
928ab2b2
/* run.config
NOFRAMAC: use execnow for proper sequencing of executions
EXECNOW: @frama-c@ @PTEST_FILE@ -save @PTEST_DIR@/result/@PTEST_NAME@_parse.sav
EXECNOW: @frama-c@ -load @PTEST_DIR@/result/@PTEST_NAME@_parse.sav -eva -save @PTEST_DIR@/result/@PTEST_NAME@_eva.sav
EXECNOW: LOG @PTEST_NAME@.sarif @frama-c@ -load @PTEST_DIR@/result/@PTEST_NAME@_eva.sav -mdr-out @PTEST_DIR@/result/@PTEST_NAME@.sarif -mdr-gen sarif -mdr-no-print-libc
*/
#include
"__fc_builtin.h"
#define LENGTH 10
int
getValueFromArray
(
int
*
array
,
int
len
,
int
index
)
{
int
value
;
// check that the array index is less than the maximum
// length of the array
if
(
index
<
len
)
{
// get the value at the specified index of the array
value
=
array
[
index
];
}
// if array index is invalid then output error message
// and return value indicating error
else
{
printf
(
"Value is: %d
\n
"
,
array
[
index
]);
value
=
-
1
;
}
return
value
;
}
int
main
()
{
int
arr
[
LENGTH
]
=
{
0
};
int
test
=
Frama_C_interval
(
-
LENGTH
,
LENGTH
);
return
getValueFromArray
(
arr
,
LENGTH
,
test
);
}
This diff is collapsed.
Click to expand it.
src/plugins/markdown-report/tests/sarif/oracle/cwe125.sarif
0 → 100644
+
260
−
0
View file @
928ab2b2
{
"$schema":
"https://github.com/oasis-tcs/sarif-spec/blob/master/Documents/CommitteeSpecificationDrafts/v2.1.0-CSD.1/sarif-schema-2.1.0.json",
"version": "2.1.0",
"runs": [
{
"tool": {
"driver": {
"name": "frama-c",
"fullName": "frama-c-21.1+dev (Scandium)",
"version": "21.1+dev (Scandium)",
"semanticVersion": "21.1+dev",
"downloadUri": "https://frama-c.com/download.html",
"informationUri": "https://frama-c.com"
}
},
"invocations": [
{
"commandLine":
"frama-c -check tests/sarif/cwe125.c -save tests/sarif/result/cwe125_parse.sav",
"arguments": [
"-check", "tests/sarif/cwe125.c", "-save",
"tests/sarif/result/cwe125_parse.sav"
],
"exitCode": 0,
"executionSuccessful": true
},
{
"commandLine":
"frama-c -check -load tests/sarif/result/cwe125_parse.sav -eva -save tests/sarif/result/cwe125_eva.sav",
"arguments": [
"-check", "-load", "tests/sarif/result/cwe125_parse.sav", "-eva",
"-save", "tests/sarif/result/cwe125_eva.sav"
],
"exitCode": 0,
"executionSuccessful": true
},
{
"commandLine":
"frama-c -check -load tests/sarif/result/cwe125_eva.sav -mdr-out tests/sarif/result/cwe125.sarif -mdr-gen sarif -mdr-no-print-libc",
"arguments": [
"-check", "-load", "tests/sarif/result/cwe125_eva.sav",
"-mdr-out", "tests/sarif/result/cwe125.sarif", "-mdr-gen",
"sarif", "-mdr-no-print-libc"
],
"exitCode": 0,
"executionSuccessful": true
}
],
"originalUriBaseIds": {
"FRAMAC_SHARE": { "uri": "file:///home/andr/git/frama-c-2/share/" },
"FRAMAC_LIB": { "uri": "file:///home/andr/git/frama-c-2/lib/fc/" },
"FRAMAC_PLUGIN": {
"uri": "file:///home/andr/git/frama-c-2/lib/plugins/"
},
"PWD": {
"uri":
"file:///home/andr/git/frama-c-2/src/plugins/markdown-report/"
}
},
"artifacts": [
{
"location": { "uri": "tests/sarif/cwe125.c", "uriBaseId": "PWD" },
"roles": [ "analysisTarget" ],
"mimeType": "text/x-csrc"
}
],
"results": [
{
"ruleId": "mem_access",
"kind": "open",
"level": "none",
"message": {
"text": "mem_access.",
"markdown":
"mem_access:\n\n```acsl\nassert mem_access: \\valid_read(array + index);\n```\n\n\n\nThis alarm represents a potential Invalid pointer dereferencing."
},
"locations": [
{
"physicalLocation": {
"artifactLocation": {
"uri": "tests/sarif/cwe125.c",
"uriBaseId": "PWD"
},
"region": {
"startLine": 21,
"startColumn": 8,
"endLine": 21,
"endColumn": 20,
"byteLength": 12
}
}
}
]
},
{
"ruleId": "mem_access",
"level": "error",
"message": {
"text": "mem_access.",
"markdown":
"mem_access:\n\n```acsl\nassert mem_access: \\valid_read(array + index);\n```\n\n\n\nThis alarm represents a potential Invalid pointer dereferencing."
},
"locations": [
{
"physicalLocation": {
"artifactLocation": {
"uri": "tests/sarif/cwe125.c",
"uriBaseId": "PWD"
},
"region": {
"startLine": 27,
"endLine": 27,
"endColumn": 38,
"byteLength": 38
}
}
}
]
},
{
"ruleId": "user-spec",
"kind": "pass",
"level": "none",
"message": { "text": "assigns clause in function printf." },
"locations": [
{
"physicalLocation": {
"artifactLocation": {
"uri": "tests/sarif/cwe125.c",
"uriBaseId": "PWD"
},
"region": {
"startLine": 27,
"endLine": 27,
"endColumn": 6,
"byteLength": 6
}
}
}
]
},
{
"ruleId": "user-spec",
"kind": "pass",
"level": "none",
"message": { "text": "specialization of order at stmt 10." },
"locations": [
{
"physicalLocation": {
"artifactLocation": {
"uri": "tests/sarif/cwe125.c",
"uriBaseId": "PWD"
},
"region": {
"startLine": 36,
"startColumn": 13,
"endLine": 36,
"endColumn": 37,
"byteLength": 24
}
}
}
]
},
{
"ruleId": "user-spec",
"kind": "pass",
"level": "none",
"message": {
"text": "from clause of term \\result in function printf."
},
"locations": [
{
"physicalLocation": {
"artifactLocation": {
"uri": "tests/sarif/cwe125.c",
"uriBaseId": "PWD"
},
"region": {
"startLine": 27,
"endLine": 27,
"endColumn": 6,
"byteLength": 6
}
}
}
]
},
{
"ruleId": "user-spec",
"kind": "pass",
"level": "none",
"message": { "text": "behavior default! in function printf." },
"locations": [
{
"physicalLocation": {
"artifactLocation": {
"uri": "tests/sarif/cwe125.c",
"uriBaseId": "PWD"
},
"region": {
"startLine": 27,
"endLine": 27,
"endColumn": 6,
"byteLength": 6
}
}
}
]
},
{
"ruleId": "user-spec",
"kind": "pass",
"level": "none",
"message": {
"text": "reachability of stmt line 27 in getValueFromArray."
},
"locations": [
{
"physicalLocation": {
"artifactLocation": {
"uri": "tests/sarif/cwe125.c",
"uriBaseId": "PWD"
},
"region": {
"startLine": 27,
"endLine": 27,
"endColumn": 38,
"byteLength": 38
}
}
}
]
}
],
"defaultSourceLanguage": "C",
"taxonomies": [
{
"name": "frama-c",
"rules": [
{
"id": "user-spec",
"shortDescription": {
"text": "User-written ACSL specification."
}
},
{
"id": "mem_access",
"shortDescription": {
"text": "Invalid pointer dereferencing."
}
}
],
"contents": [ "nonLocalizedData" ]
}
]
}
]
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment