This repository has been archived by the owner on Dec 14, 2024. It is now read-only.
forked from semgrep/semgrep
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsemgrep.jsonnet
138 lines (125 loc) · 4.63 KB
/
semgrep.jsonnet
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
// ----------------------------------------------------------------------------
// Registry rules!
// ----------------------------------------------------------------------------
// Those OCaml registry rules come from
// https://github.com/semgrep/semgrep-rules/tree/develop/ocaml
// You can see the content of this p/ocaml ruleset by going here:
// https://semgrep.dev/c/p/ocaml
// Here is the config file for p/ocaml that ensures it contain good rules:
// https://github.com/semgrep/semgrep-rule-packs/blob/master/helper_scripts/generate/cfg/ocaml.yaml
local ocaml = import 'p/ocaml';
//Temporary hack to not report p/ocaml findings on semgrep libs
//TODO: we should use +: instead of :, as in
// [ r + { paths +: { exclude +: [ "libs/*", "tools/*", "languages/*" ] } }
// but this is not supported yet by ojsonnet hence the use of :
local ocaml_rules =
[
r { paths: { exclude: ['libs/*', 'tools/*', 'languages/*'] } }
for r in ocaml.rules
];
// ----------------------------------------------------------------------------
// legacy rules written in YAML
// ----------------------------------------------------------------------------
local yml = import 'semgrep.yml';
// ----------------------------------------------------------------------------
// jsonnet rules
// ----------------------------------------------------------------------------
local semgrep_rules = [
// new syntax!
{
id: 'no-open-in',
match: { any: ['open_in_bin ...', 'open_in ...'] },
// Same but using The old syntax:
// "pattern-either": [
// { pattern: "open_in_bin ..." },
// { pattern: "open_in ..." },
// ],
languages: ['ocaml'],
severity: 'ERROR',
message: |||
It is easy to forget to close `open_in` with `close_in`.
Use `UCommon.with_open_infile()` or `UChan.with_open_in` instead.
|||,
paths: {
// TODO, we should fix those too
exclude: ['common2.ml'],
},
},
// See also TCB/forbid_network.jsonnet
{
id: 'no-http-outside-networking',
match: {
pattern: 'Http_helpers.$F ...',
where: [
{
metavariable: '$F',
regex: '^(get|post)',
},
],
},
paths: {
exclude: ['networking'],
},
languages: ['ocaml'],
severity: 'ERROR',
message: |||
Do not use Http_helpers outside the networking/ directory. Move the code
in one of the networking/ modules and hide it behind a typed interface.
|||,
},
{
id: 'no-hashtbl-find-all',
match: 'Hashtbl.find_all',
languages: ['ocaml'],
severity: 'ERROR',
message: |||
`Hashtbl.find_all` is not stack-safe in OCaml < 5. Use `Hashtbl_.push`
instead of `Hashtbl.add` and `Hashtbl_.get_stack` instead of
`Hashtbl.find_all`.
|||,
},
];
// ----------------------------------------------------------------------------
// TCB rules
// ----------------------------------------------------------------------------
local tcb = import "TCB/forbid_everything.jsonnet";
// ----------------------------------------------------------------------------
// Skip and last-minute override
// ----------------------------------------------------------------------------
// TODO? filter based on metadata like filtering all rules with
// 'confidence: LOW' or with 'subcategory: audit'?
// See also:
// - https://www.notion.so/semgrep/Rule-Severity-Cleanup-3b9774b4614c431989fd70522a118672?pvs=4
// - https://semgrep.dev/docs/contributing/contributing-to-semgrep-rules-repository/#including-fields-required-by-security-category
//
local todo_skipped_for_now = [
//TODO? what is the fix for that?
'ocaml.lang.portability.crlf-support.broken-input-line',
// too noisy
'ocaml.lang.security.hashtable-dos.ocamllint-hashtable-dos',
];
local override_messages = {
// Semgrep specific adjustments
'ocaml.lang.best-practice.exception.bad-reraise': |||
You should not re-raise exceptions using 'raise' because it loses track
of where the exception was raised originally. See commons/Exception.mli
for more information.
Use `Exception.catch exn` and later `Exception.raise exn` or
`Exception.catch_and_reraise exn` if there is no code between the moment
you catch the exn and re-raise it.
|||,
};
// ----------------------------------------------------------------------------
// Entry point
// ----------------------------------------------------------------------------
local all = yml.rules + semgrep_rules + ocaml_rules + tcb.rules;
{
rules:
[
if std.objectHas(override_messages, r.id)
then (r { message: override_messages[r.id] })
else r
for r in all
if !std.member(todo_skipped_for_now, r.id)
],
}