forked from semgrep/semgrep
-
Notifications
You must be signed in to change notification settings - Fork 0
/
semgrep.jsonnet
223 lines (210 loc) · 7.03 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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
// ----------------------------------------------------------------------------
// 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`.
|||,
},
{
id: 'mask-all-temp-paths',
pattern: 'Testo.mask_temp_paths',
fix: 'Testutil.mask_temp_paths',
message: |||
Semgrep applies `Unix.realpath` to some paths resulting in
the temporary folder being rewritten to its physical path if it
was a symlink (MacOS). Use `Testutil.mask_temp_paths` to mask all known
temporary folder paths in Semgrep test output.
|||,
languages: ['ocaml'],
severity: 'ERROR',
paths: {
exclude: ['Testutil.ml']
}
},
{
id: 'no-logs-in-library',
match: {
all: [
'Logs.$F ...',
{ not: 'Logs.src ...' },
// TODO? tolerate Logs.info?
// TODO? tolerate when inside if <... !$REF ...> then ... ?
],
},
message: |||
Do not use Logs outside src/osemgrep/. Use a specialized Log
"src" for the library of your module and call that Log module instead.
See https://www.notion.so/semgrep/Logging-in-semgrep-semgrep-core-osemgrep-67c9046fa53744728d9d725a5a244f64 for more info.
|||,
languages: ['ocaml'],
severity: 'ERROR',
paths: {
exclude: [
// The semgrep codebase has a few "applications" where the use
// of Logs.xxx is fine:
// - osemgrep (in src/osemgrep/),
// with also code in metachecking/ for osemgrep validate
// - semgrep-core (in src/core_cli/ and core_scan/), and many actions
// with code under src/experiments
// - test (tests/*)
'osemgrep/',
'metachecking/',
'core_cli/',
'core_scan/',
'*_main.ml',
'Main.ml',
'Test_*',
'Unit_*',
'*_mock_*',
'tools/*',
'scripts/*',
'libs/commons/Logs_.ml',
'libs/profiling/Profiling.ml',
'src/core/Log_semgrep.ml',
"libs/process_limits/Memory_limit.ml",
]
},
},
// similar to no-print-in-semgrep in semgrep.yml
{
id: 'no-pr2',
match: {
any: [
'UCommon.pr2 ...',
'UCommon.pr2_gen ...',
#'pr2_gen ...', needed?
],
},
message: |||
Do not use UCommon.pr2 or any variant of it. Use Logs instead.
See https://www.notion.so/semgrep/Logging-in-semgrep-semgrep-core-osemgrep-67c9046fa53744728d9d725a5a244f64 for more info.
|||,
languages: ['ocaml'],
severity: 'ERROR',
paths: {
exclude: [
'Test_*',
'Unit_*',
'tools/',
'scripts/',
]
},
},
];
// ----------------------------------------------------------------------------
// 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)
],
}