This repository has been archived by the owner on Sep 5, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
drd.supp
516 lines (497 loc) · 10.3 KB
/
drd.supp
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
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
#
# The following suppressions are suited for debug build
# of librpma on Ubuntu 22.04 used in the CircleCI.
# They may not work for any other OS, OS version,
# rdma-core version and for the release build.
#
#
# All suppressions should follow the following format:
#
# Assessment: (XXX - to mark assessment that is not done yet)
#
# This suppression indicates a lack of MT safety.
#
# OS: a version of OS
# OFED: a version of OFED if used
# libibverbs: a version of libibverbs
# librdmacm: a version of librdmacm
# rdma-core: a version of the 'rdma-core' package if installed
#
# Occurs in traces of:
# - a function name of public API of librpma
#
# There are 3 types of suppressions:
#
# 1) general one (on an external API)
# {
# Conflicting store of size 4
# drd:ConflictingAccess
# ...
# fun:ibv_dontfork_range
# ...
# }
#
# 2) explicit librpma API call
# {
# Conflicting store of size 4
# drd:ConflictingAccess
# ...
# fun:rpma_conn_cfg_set_timeout
# ...
# }
#
# 3) detailed external one (on an external API)
# {
# Conflicting store of size 4
# drd:ConflictingAccess
# ...
# fun:funA
# fun:funB
# fun:funC
# fun:function_call_used directly form_public_API
# ...
# }
#
#
# Assessment: this suppression indicates a lack of MT safety.
#
# syslog(3) has the "MT-Safe env locale" attributes(7)
# and therefore it can be considered as not MT-safe by valgrind.
# This issue can cause that logs of syslog(3) can be corrupted,
# but it does not affect the MT-safety of the librpma library.
#
# OS: ubuntu-2204:2022.04.1 of CircleCI
# libibverbs: 1.14.39.0
# librdmacm: 1.3.39.0
#
# It can occur in traces of all functions of librpma API.
#
{
syslog(): race while reading the name of time zone
drd:ConflictingAccess
...
fun:__vsyslog_internal
fun:*syslog*
fun:rpma_log_default_function
...
}
#
# Assessment: these 2 suppressions indicate a lack of MT safety.
#
# rpma_log_default_function() calls rpma_get_timestamp_prefix()
# which calls localtime_r(3).
# localtime_r(3) has the "MT-Safe env locale" attributes(7)
# and therefore it is considered as not MT-safe by valgrind.
# This issue can cause that logs of rpma_log_default_function() can be corrupted,
# but it does not affect the MT-safety of the librpma library.
#
# OS: ubuntu-2204:2022.04.1 of CircleCI
# libibverbs: 1.14.39.0
# librdmacm: 1.3.39.0
#
# They can occur in traces of all functions of librpma API.
#
{
Race while reading the name of time zone ("GMT").
drd:ConflictingAccess
...
fun:__tz_convert
fun:rpma_get_timestamp_prefix
fun:rpma_log_default_function
...
}
{
Race while reading the name of time zone ("GMT") - non-existing code path (unknown Valgrind issue on CircleCI)
drd:ConflictingAccess
...
fun:__tz_convert
fun:rpma_log_default_function
...
}
#
# Assessment: this suppression does not indicate a lack of MT safety.
#
# cma_dev_cnt was a global counter of elements populating the global array of
# devices detected by librdmacm. It was used as an indicator of already done
# initialization. It was checked before locking a mutex required to make any
# changes to the global array and changing the counter itself as follows:
#
# static int cma_dev_cnt;
# ...
# int ucma_init(void)
# {
# if (cma_dev_cnt)
# return 0;
#
# pthread_mutex_lock(&mut);
# if (cma_dev_cnt) {
# pthread_mutex_unlock(&mut);
# return 0;
# }
# ...
# cma_dev_cnt = dev_cnt;
# ...
# pthread_mutex_unlock(&mut);
# ...
# }
#
# But having a race, in this case, should do no harm since the counter is also
# checked after locking the mutex. So, even writing a new value to the counter
# even if it will be torn and read partially by another thread it won't lead
# to abnormal behaviour.
#
# Note: This issue is no longer the case for rdma-core >= v30.0 since there
# instead of a global array is a global list. But the logic seems to be
# the same: a quick check (a comparison) followed by the mutex lock and
# recheck of the condition so the final assessment should be the same.
#
# OS: ubuntu-2204:2022.04.1 of CircleCI
# libibverbs: 1.14.39.0
# librdmacm: 1.3.39.0
#
# Occurs in traces of:
# - rpma_utils_get_ibv_context
#
{
Conflicting store/load of size 4
drd:ConflictingAccess
...
fun:ucma_init
...
fun:rdma_getaddrinfo
...
}
#
# Assessment: this suppression indicates a lack of MT safety.
#
# OS: ubuntu-2204:2022.04.1 of CircleCI
# libibverbs: 1.14.39.0
# librdmacm: 1.3.39.0
#
# Occurs in traces of:
# - rpma_utils_get_ibv_context
# - rpma_ep_listen
#
{
Conflicting store of size 8
drd:ConflictingAccess
fun:idm_set
fun:ucma_insert_id
fun:rdma_create_id2.part.0
...
}
#
# Assessment: these 2 suppressions indicate a lack of MT safety.
#
# OS: ubuntu-2204:2022.04.1 of CircleCI
# libibverbs: 1.14.39.0
# librdmacm: 1.3.39.0
#
# Occurs in traces of:
# - rpma_utils_get_ibv_context
# - rpma_ep_shutdown
#
{
Conflicting load of size 8
drd:ConflictingAccess
fun:idm_clear
fun:ucma_remove_id
fun:ucma_free_id
fun:rdma_destroy_id
...
}
{
Conflicting load of size 8
drd:ConflictingAccess
fun:UnknownInlinedFun
fun:UnknownInlinedFun
fun:ucma_free_id
fun:rdma_destroy_id
...
}
#
# Assessment: this suppression indicates a lack of MT safety.
#
# OS - Ubuntu 22.04
# OFED - MLNX_OFED 5.6-2.0.9.0
# libibverbs - 1.14.40.0
# librdmacm - 1.3.40.0
#
# Occurs in traces of:
# - rpma_conn_req_delete
#
{
rpma_conn_req_delete
drd:ConflictingAccess
obj:*librdmacm.so*
fun:rdma_destroy_id
...
}
#
# Assessment: this suppression indicates a lack of MT safety.
#
# OS: ubuntu-2204:2022.04.1 of CircleCI
# libibverbs: 1.14.39.0
# librdmacm: 1.3.39.0
#
# Occurs in traces of:
# - rpma_mr_reg
# - rpma_conn_req_new
#
{
Conflicting store of size 4
drd:ConflictingAccess
fun:ibv_dontfork_range
...
}
#
# Assessment: this suppression indicates a lack of MT safety.
#
# OS: ubuntu-2204:2022.04.1 of CircleCI
# libibverbs: 1.14.39.0
# librdmacm: 1.3.39.0
#
# Occurs in traces of:
# - rpma_mr_dereg
# - rpma_conn_req_delete
#
{
Conflicting store of size 4
drd:ConflictingAccess
fun:ibv_dofork_range
...
}
#
# Assessment: this suppression does NOT indicate a lack of MT safety.
# It is a SoftRoCE specific mutex error (Mutex not locked).
#
# OS: ubuntu-2204:2022.04.1 of CircleCI
# libibverbs: 1.14.39.0
# librdmacm: 1.3.39.0
#
# Occurs in traces of:
# - rpma_conn_req_new
# - rpma_ep_next_conn_req
#
{
SoftRoCE specific mutex error (Mutex not locked)
drd:MutexErr
fun:pthread_spin_init@*
fun:rxe_create_qp
fun:UnknownInlinedFun
fun:rdma_create_qp_ex
...
}
#
# Assessment: this suppression indicates a lack of MT safety.
#
# OS: Ubuntu 22.04
# OFED: MLNX_OFED 5.6-2.0.9.0
# libibverbs: 1.14.40.0
# librdmacm: 1.3.40.0
#
# Occurs in traces of:
# - rpma_conn_req_new
# - rpma_ep_listen
#
{
Conflicting store of size 8
drd:ConflictingAccess
fun:UnknownInlinedFun
fun:UnknownInlinedFun
fun:rdma_create_id2.part.0
...
}
#
# Assessment: this suppression indicates a lack of MT safety.
#
# OS - Ubuntu 22.04
# OFED - MLNX_OFED 5.6-2.0.9.0
# libibverbs - 1.14.40.0
# librdmacm - 1.3.40.0
#
# Occurs in traces of:
# - rpma_conn_req_new
# - rpma_cq_wait
#
{
Conflicting store of size 8
drd:ConflictingAccess
...
fun:ibv_req_notify_cq
...
}
#
# Assessment: this suppression indicates a lack of MT safety.
#
# OS - Ubuntu 22.04
# OFED - MLNX_OFED 5.6-2.0.9.0
# libibverbs - 1.14.40.0
# librdmacm - 1.3.40.0
#
# Occurs in traces of:
# - rpma_conn_req_new
#
{
Conflicting Access
drd:ConflictingAccess
obj:*librdmacm.so*
fun:rpma_conn_req_new
...
}
#
# Assessment: this suppression indicates a lack of MT safety.
#
# OS - Ubuntu 22.04
# OFED - MLNX_OFED 5.6-2.0.9.0
# libibverbs - 1.14.40.0
# librdmacm - 1.3.40.0
#
# Occurs in traces of:
# - rpma_ep_listen
#
{
Conflicting Access
drd:ConflictingAccess
obj:*librdmacm.so*
fun:rpma_ep_listen
...
}
#
# Assessment: these 5 suppressions indicate a lack of MT safety.
#
# OS - Ubuntu 22.04
# OFED - MLNX_OFED 5.6-2.0.9.0
# libibverbs - 1.14.40.0
# librdmacm - 1.3.40.0
#
# They all occur in traces of:
# - rpma_utils_get_ibv_context
#
{
Conflicting Access
drd:ConflictingAccess
...
obj:*librdmacm.so*
fun:rdma_getaddrinfo
fun:rpma_info_new
fun:rpma_utils_get_ibv_context
...
}
{
Conflicting Access
drd:ConflictingAccess
...
fun:rdma_create_event_channel
obj:*librdmacm.so*
fun:rpma_utils_get_ibv_context
...
}
{
Conflicting Access
drd:ConflictingAccess
obj:*librdmacm.so*
fun:rdma_create_id
fun:rpma_utils_get_ibv_context
...
}
{
Conflicting Access
drd:ConflictingAccess
obj:*librdmacm.so*
fun:rpma_utils_get_ibv_context
...
}
{
Conflicting Access
drd:ConflictingAccess
fun:rdma_bind_addr
fun:rpma_info_bind_addr
fun:rpma_utils_get_ibv_context
...
}
#
# Assessment: this suppression indicates a lack of MT safety when SoftRoCE is used.
#
# OS: ubuntu-2204:2022.04.1 of CircleCI
# libibverbs - 1.14.39.0
# librdmacm - 1.3.39.0
#
# Occurs in traces of:
# - rpma_conn_req_new
# - rpma_ep_next_conn_req
#
{
General suppression related to SoftRoCE issue with mutex
drd:MutexErr
...
obj:*librxe-rdmav34.so*
...
fun:rdma_create_qp_ex
fun:rpma_peer_setup_qp
...
}
#
# Assessment: this suppression indicates a lack of MT safety.
#
# OS - Ubuntu 22.04
# OFED - MLNX_OFED 5.6-2.0.9.0
# libibverbs - 1.14.40.0
# librdmacm - 1.3.40.0
#
# Occurs in traces of:
# - rpma_srq_delete
#
{
Conflicting Access
drd:ConflictingAccess
...
fun:rpma_srq_delete
...
}
#
# Assessment: this suppression indicates a lack of MT safety.
#
# OS - Ubuntu 22.04
# OFED - MLNX_OFED 5.6-2.0.9.0
# libibverbs - 1.14.40.0
# librdmacm - 1.3.40.0
#
# Occurs in traces of:
# - rpma_srq_new
#
{
Conflicting Access
drd:ConflictingAccess
...
fun:rpma_srq_new
...
}
#
# Assessment: these 2 suppressions indicate a lack of MT safety when SoftRoCE is used.
#
# OS: ubuntu-2204:2022.04.1 of CircleCI
# libibverbs - 1.14.39.0
# librdmacm - 1.3.39.0
#
# Occurs in traces of:
# - rpma_srq_new
#
{
Conditional Error
drd:CondErr
...
fun:ibv_create_srq*
fun:rpma_peer_create_srq
fun:rpma_srq_new
...
}
{
General suppression related to SoftRoCE issue with mutex
drd:MutexErr
...
fun:pthread_mutex_init@*
...
fun:rpma_srq_new
...
}