-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfmea.json
More file actions
2478 lines (2478 loc) · 87.6 KB
/
Copy pathfmea.json
File metadata and controls
2478 lines (2478 loc) · 87.6 KB
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
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"schemaVersion": "1.15.0",
"kind": "fmea-report",
"tool": "c-FuSa",
"toolVersion": "0.5.47",
"language": "c",
"generatedAt": "2026-07-28T21:51:15Z",
"project": "c-FuSa",
"version": "0.5.1",
"standard": "iso26262",
"ratingScale": "cfusa-heuristic-1-10",
"entries": [
{
"id": "FM-001",
"item": "cmd_pr",
"file": "cmd/cfusa/cmd_pr.c",
"line": 146,
"failureMode": "cmd_pr (general function) does not perform its intended action",
"effect": "Failure of cmd_pr could propagate undetected to callers in cmd_pr.c",
"cause": "Logic error or untested edge case in cmd_pr",
"severity": 3,
"occurrence": 2,
"detection": 3,
"actionPriority": "low",
"mitigations": [],
"requirementIds": []
},
{
"id": "FM-002",
"item": "cmd_version",
"file": "cmd/cfusa/cmd_version.c",
"line": 7,
"failureMode": "cmd_version (general function) does not perform its intended action",
"effect": "Failure of cmd_version could propagate undetected to callers in cmd_version.c",
"cause": "Logic error or untested edge case in cmd_version",
"severity": 3,
"occurrence": 2,
"detection": 3,
"actionPriority": "low",
"mitigations": [],
"requirementIds": []
},
{
"id": "FM-003",
"item": "cmd_help",
"file": "cmd/cfusa/cmd_dispatch.c",
"line": 66,
"failureMode": "cmd_help (general function) does not perform its intended action",
"effect": "Failure of cmd_help could propagate undetected to callers in cmd_dispatch.c",
"cause": "Logic error or untested edge case in cmd_help",
"severity": 3,
"occurrence": 2,
"detection": 3,
"actionPriority": "low",
"mitigations": [],
"requirementIds": []
},
{
"id": "FM-004",
"item": "cmd_coupling",
"file": "cmd/cfusa/cmd_coupling.c",
"line": 121,
"failureMode": "cmd_coupling (general function) does not perform its intended action",
"effect": "Failure of cmd_coupling could propagate undetected to callers in cmd_coupling.c",
"cause": "Logic error or untested edge case in cmd_coupling",
"severity": 3,
"occurrence": 2,
"detection": 3,
"actionPriority": "low",
"mitigations": [],
"requirementIds": []
},
{
"id": "FM-005",
"item": "cmd_qualify",
"file": "cmd/cfusa/cmd_qualify.c",
"line": 472,
"failureMode": "cmd_qualify (general function) does not perform its intended action",
"effect": "Failure of cmd_qualify could propagate undetected to callers in cmd_qualify.c",
"cause": "Logic error or untested edge case in cmd_qualify",
"severity": 3,
"occurrence": 2,
"detection": 3,
"actionPriority": "low",
"mitigations": [],
"requirementIds": []
},
{
"id": "FM-006",
"item": "cmd_misra",
"file": "cmd/cfusa/cmd_misra.c",
"line": 60,
"failureMode": "cmd_misra (general function) does not perform its intended action",
"effect": "Failure of cmd_misra could propagate undetected to callers in cmd_misra.c",
"cause": "Logic error or untested edge case in cmd_misra",
"severity": 3,
"occurrence": 2,
"detection": 3,
"actionPriority": "low",
"mitigations": [],
"requirementIds": []
},
{
"id": "FM-007",
"item": "path_exists",
"file": "cmd/cfusa/cmd_safety_rules.c",
"line": 120,
"failureMode": "path_exists (general function) does not perform its intended action",
"effect": "Failure of path_exists could propagate undetected to callers in cmd_safety_rules.c",
"cause": "Logic error or untested edge case in path_exists",
"severity": 3,
"occurrence": 2,
"detection": 3,
"actionPriority": "low",
"mitigations": [],
"requirementIds": []
},
{
"id": "FM-008",
"item": "json_sec_code",
"file": "cmd/cfusa/cmd_safety_rules.c",
"line": 428,
"failureMode": "json_sec_code (general function) does not perform its intended action",
"effect": "Failure of json_sec_code could propagate undetected to callers in cmd_safety_rules.c",
"cause": "Logic error or untested edge case in json_sec_code",
"severity": 3,
"occurrence": 2,
"detection": 3,
"actionPriority": "low",
"mitigations": [],
"requirementIds": []
},
{
"id": "FM-009",
"item": "path_exists",
"file": "cmd/cfusa/cmd_safety_rules.c",
"line": 455,
"failureMode": "path_exists (general function) does not perform its intended action",
"effect": "Failure of path_exists could propagate undetected to callers in cmd_safety_rules.c",
"cause": "Logic error or untested edge case in path_exists",
"severity": 3,
"occurrence": 2,
"detection": 3,
"actionPriority": "low",
"mitigations": [],
"requirementIds": []
},
{
"id": "FM-010",
"item": "path_exists",
"file": "cmd/cfusa/cmd_safety_rules.c",
"line": 868,
"failureMode": "path_exists (general function) does not perform its intended action",
"effect": "Failure of path_exists could propagate undetected to callers in cmd_safety_rules.c",
"cause": "Logic error or untested edge case in path_exists",
"severity": 3,
"occurrence": 2,
"detection": 3,
"actionPriority": "low",
"mitigations": [],
"requirementIds": []
},
{
"id": "FM-011",
"item": "path_exists",
"file": "cmd/cfusa/cmd_safety_rules.c",
"line": 882,
"failureMode": "path_exists (general function) does not perform its intended action",
"effect": "Failure of path_exists could propagate undetected to callers in cmd_safety_rules.c",
"cause": "Logic error or untested edge case in path_exists",
"severity": 3,
"occurrence": 2,
"detection": 3,
"actionPriority": "low",
"mitigations": [],
"requirementIds": []
},
{
"id": "FM-012",
"item": "path_exists",
"file": "cmd/cfusa/cmd_safety_rules.c",
"line": 895,
"failureMode": "path_exists (general function) does not perform its intended action",
"effect": "Failure of path_exists could propagate undetected to callers in cmd_safety_rules.c",
"cause": "Logic error or untested edge case in path_exists",
"severity": 3,
"occurrence": 2,
"detection": 3,
"actionPriority": "low",
"mitigations": [],
"requirementIds": []
},
{
"id": "FM-013",
"item": "cfusa_safety_register_rules",
"file": "cmd/cfusa/cmd_safety_rules.c",
"line": 987,
"failureMode": "cfusa_safety_register_rules (safety-critical function) does not perform its intended action",
"effect": "Failure of cfusa_safety_register_rules could propagate undetected to callers in cmd_safety_rules.c",
"cause": "Unhandled fault or invalid input condition within cfusa_safety_register_rules",
"severity": 9,
"occurrence": 4,
"detection": 6,
"actionPriority": "high",
"mitigations": [],
"requirementIds": []
},
{
"id": "FM-014",
"item": "cfusa_safety_rule_count",
"file": "cmd/cfusa/cmd_safety_rules.c",
"line": 995,
"failureMode": "cfusa_safety_rule_count (safety-critical function) does not perform its intended action",
"effect": "Failure of cfusa_safety_rule_count could propagate undetected to callers in cmd_safety_rules.c",
"cause": "Unhandled fault or invalid input condition within cfusa_safety_rule_count",
"severity": 9,
"occurrence": 4,
"detection": 6,
"actionPriority": "high",
"mitigations": [],
"requirementIds": []
},
{
"id": "FM-015",
"item": "cmd_iso26262",
"file": "cmd/cfusa/cmd_iso26262.c",
"line": 84,
"failureMode": "cmd_iso26262 (general function) does not perform its intended action",
"effect": "Failure of cmd_iso26262 could propagate undetected to callers in cmd_iso26262.c",
"cause": "Logic error or untested edge case in cmd_iso26262",
"severity": 3,
"occurrence": 2,
"detection": 3,
"actionPriority": "low",
"mitigations": [],
"requirementIds": []
},
{
"id": "FM-016",
"item": "cfusa_scan_lines",
"file": "cmd/cfusa/cmd_req.c",
"line": 135,
"failureMode": "cfusa_scan_lines (general function) does not perform its intended action",
"effect": "Failure of cfusa_scan_lines could propagate undetected to callers in cmd_req.c",
"cause": "Logic error or untested edge case in cfusa_scan_lines",
"severity": 3,
"occurrence": 2,
"detection": 3,
"actionPriority": "low",
"mitigations": [],
"requirementIds": []
},
{
"id": "FM-017",
"item": "xml_escape",
"file": "cmd/cfusa/cmd_req.c",
"line": 172,
"failureMode": "xml_escape (general function) does not perform its intended action",
"effect": "Failure of xml_escape could propagate undetected to callers in cmd_req.c",
"cause": "Logic error or untested edge case in xml_escape",
"severity": 3,
"occurrence": 2,
"detection": 3,
"actionPriority": "low",
"mitigations": [],
"requirementIds": []
},
{
"id": "FM-018",
"item": "xml_escape",
"file": "cmd/cfusa/cmd_req.c",
"line": 176,
"failureMode": "xml_escape (general function) does not perform its intended action",
"effect": "Failure of xml_escape could propagate undetected to callers in cmd_req.c",
"cause": "Logic error or untested edge case in xml_escape",
"severity": 3,
"occurrence": 2,
"detection": 3,
"actionPriority": "low",
"mitigations": [],
"requirementIds": []
},
{
"id": "FM-019",
"item": "xml_escape",
"file": "cmd/cfusa/cmd_req.c",
"line": 180,
"failureMode": "xml_escape (general function) does not perform its intended action",
"effect": "Failure of xml_escape could propagate undetected to callers in cmd_req.c",
"cause": "Logic error or untested edge case in xml_escape",
"severity": 3,
"occurrence": 2,
"detection": 3,
"actionPriority": "low",
"mitigations": [],
"requirementIds": []
},
{
"id": "FM-020",
"item": "import_reqif",
"file": "cmd/cfusa/cmd_req.c",
"line": 646,
"failureMode": "import_reqif (general function) does not perform its intended action",
"effect": "Failure of import_reqif could propagate undetected to callers in cmd_req.c",
"cause": "Logic error or untested edge case in import_reqif",
"severity": 3,
"occurrence": 2,
"detection": 3,
"actionPriority": "low",
"mitigations": [],
"requirementIds": []
},
{
"id": "FM-021",
"item": "import_polarion_xml",
"file": "cmd/cfusa/cmd_req.c",
"line": 652,
"failureMode": "import_polarion_xml (general function) does not perform its intended action",
"effect": "Failure of import_polarion_xml could propagate undetected to callers in cmd_req.c",
"cause": "Logic error or untested edge case in import_polarion_xml",
"severity": 3,
"occurrence": 2,
"detection": 3,
"actionPriority": "low",
"mitigations": [],
"requirementIds": []
},
{
"id": "FM-022",
"item": "import_reqif",
"file": "cmd/cfusa/cmd_req.c",
"line": 655,
"failureMode": "import_reqif (general function) does not perform its intended action",
"effect": "Failure of import_reqif could propagate undetected to callers in cmd_req.c",
"cause": "Logic error or untested edge case in import_reqif",
"severity": 3,
"occurrence": 2,
"detection": 3,
"actionPriority": "low",
"mitigations": [],
"requirementIds": []
},
{
"id": "FM-023",
"item": "import_codebeamer_xml",
"file": "cmd/cfusa/cmd_req.c",
"line": 660,
"failureMode": "import_codebeamer_xml (general function) does not perform its intended action",
"effect": "Failure of import_codebeamer_xml could propagate undetected to callers in cmd_req.c",
"cause": "Logic error or untested edge case in import_codebeamer_xml",
"severity": 3,
"occurrence": 2,
"detection": 3,
"actionPriority": "low",
"mitigations": [],
"requirementIds": []
},
{
"id": "FM-024",
"item": "import_jama_xml",
"file": "cmd/cfusa/cmd_req.c",
"line": 671,
"failureMode": "import_jama_xml (general function) does not perform its intended action",
"effect": "Failure of import_jama_xml could propagate undetected to callers in cmd_req.c",
"cause": "Logic error or untested edge case in import_jama_xml",
"severity": 3,
"occurrence": 2,
"detection": 3,
"actionPriority": "low",
"mitigations": [],
"requirementIds": []
},
{
"id": "FM-025",
"item": "sizeof",
"file": "cmd/cfusa/cmd_req.c",
"line": 695,
"failureMode": "sizeof (general function) does not perform its intended action",
"effect": "Failure of sizeof could propagate undetected to callers in cmd_req.c",
"cause": "Logic error or untested edge case in sizeof",
"severity": 3,
"occurrence": 2,
"detection": 3,
"actionPriority": "low",
"mitigations": [],
"requirementIds": []
},
{
"id": "FM-026",
"item": "append_entry",
"file": "cmd/cfusa/cmd_req.c",
"line": 713,
"failureMode": "append_entry (general function) does not perform its intended action",
"effect": "Failure of append_entry could propagate undetected to callers in cmd_req.c",
"cause": "Logic error or untested edge case in append_entry",
"severity": 3,
"occurrence": 2,
"detection": 3,
"actionPriority": "low",
"mitigations": [],
"requirementIds": []
},
{
"id": "FM-027",
"item": "cmd_req",
"file": "cmd/cfusa/cmd_req.c",
"line": 760,
"failureMode": "cmd_req (general function) does not perform its intended action",
"effect": "Failure of cmd_req could propagate undetected to callers in cmd_req.c",
"cause": "Logic error or untested edge case in cmd_req",
"severity": 3,
"occurrence": 2,
"detection": 3,
"actionPriority": "low",
"mitigations": [],
"requirementIds": []
},
{
"id": "FM-028",
"item": "cmd_release",
"file": "cmd/cfusa/cmd_release.c",
"line": 100,
"failureMode": "cmd_release (general function) does not perform its intended action",
"effect": "Failure of cmd_release could propagate undetected to callers in cmd_release.c",
"cause": "Logic error or untested edge case in cmd_release",
"severity": 3,
"occurrence": 2,
"detection": 3,
"actionPriority": "low",
"mitigations": [],
"requirementIds": []
},
{
"id": "FM-029",
"item": "cmd_check",
"file": "cmd/cfusa/cmd_check.c",
"line": 14,
"failureMode": "cmd_check (monitoring/control function) does not perform its intended action",
"effect": "Failure of cmd_check could propagate undetected to callers in cmd_check.c",
"cause": "Configuration or state inconsistency affecting cmd_check",
"severity": 5,
"occurrence": 3,
"detection": 4,
"actionPriority": "medium",
"mitigations": [],
"requirementIds": []
},
{
"id": "FM-030",
"item": "cfusa_template_generate_all",
"file": "cmd/cfusa/cmd_template.c",
"line": 84,
"failureMode": "cfusa_template_generate_all (general function) does not perform its intended action",
"effect": "Failure of cfusa_template_generate_all could propagate undetected to callers in cmd_template.c",
"cause": "Logic error or untested edge case in cfusa_template_generate_all",
"severity": 3,
"occurrence": 2,
"detection": 3,
"actionPriority": "low",
"mitigations": [],
"requirementIds": []
},
{
"id": "FM-031",
"item": "cmd_template",
"file": "cmd/cfusa/cmd_template.c",
"line": 106,
"failureMode": "cmd_template (general function) does not perform its intended action",
"effect": "Failure of cmd_template could propagate undetected to callers in cmd_template.c",
"cause": "Logic error or untested edge case in cmd_template",
"severity": 3,
"occurrence": 2,
"detection": 3,
"actionPriority": "low",
"mitigations": [],
"requirementIds": []
},
{
"id": "FM-032",
"item": "cmd_tara",
"file": "cmd/cfusa/cmd_tara.c",
"line": 338,
"failureMode": "cmd_tara (general function) does not perform its intended action",
"effect": "Failure of cmd_tara could propagate undetected to callers in cmd_tara.c",
"cause": "Logic error or untested edge case in cmd_tara",
"severity": 3,
"occurrence": 2,
"detection": 3,
"actionPriority": "low",
"mitigations": [],
"requirementIds": []
},
{
"id": "FM-033",
"item": "write_threat_json",
"file": "cmd/cfusa/cmd_tara.c",
"line": 454,
"failureMode": "write_threat_json (general function) does not perform its intended action",
"effect": "Failure of write_threat_json could propagate undetected to callers in cmd_tara.c",
"cause": "Logic error or untested edge case in write_threat_json",
"severity": 3,
"occurrence": 2,
"detection": 3,
"actionPriority": "low",
"mitigations": [],
"requirementIds": []
},
{
"id": "FM-034",
"item": "link",
"file": "cmd/cfusa/cmd_trace.c",
"line": 35,
"failureMode": "link (general function) does not perform its intended action",
"effect": "Failure of link could propagate undetected to callers in cmd_trace.c",
"cause": "Logic error or untested edge case in link",
"severity": 3,
"occurrence": 2,
"detection": 3,
"actionPriority": "low",
"mitigations": [],
"requirementIds": []
},
{
"id": "FM-035",
"item": "cfusa_scan_lines",
"file": "cmd/cfusa/cmd_trace.c",
"line": 184,
"failureMode": "cfusa_scan_lines (general function) does not perform its intended action",
"effect": "Failure of cfusa_scan_lines could propagate undetected to callers in cmd_trace.c",
"cause": "Logic error or untested edge case in cfusa_scan_lines",
"severity": 3,
"occurrence": 2,
"detection": 3,
"actionPriority": "low",
"mitigations": [],
"requirementIds": []
},
{
"id": "FM-036",
"item": "cmd_trace",
"file": "cmd/cfusa/cmd_trace.c",
"line": 336,
"failureMode": "cmd_trace (general function) does not perform its intended action",
"effect": "Failure of cmd_trace could propagate undetected to callers in cmd_trace.c",
"cause": "Logic error or untested edge case in cmd_trace",
"severity": 3,
"occurrence": 2,
"detection": 3,
"actionPriority": "low",
"mitigations": [],
"requirementIds": []
},
{
"id": "FM-037",
"item": "compute_hlr_llr",
"file": "cmd/cfusa/cmd_trace.c",
"line": 436,
"failureMode": "compute_hlr_llr (general function) does not perform its intended action",
"effect": "Failure of compute_hlr_llr could propagate undetected to callers in cmd_trace.c",
"cause": "Logic error or untested edge case in compute_hlr_llr",
"severity": 3,
"occurrence": 2,
"detection": 3,
"actionPriority": "low",
"mitigations": [],
"requirementIds": []
},
{
"id": "FM-038",
"item": "cfusa_basename",
"file": "cmd/cfusa/cmd_trace.c",
"line": 716,
"failureMode": "cfusa_basename (general function) does not perform its intended action",
"effect": "Failure of cfusa_basename could propagate undetected to callers in cmd_trace.c",
"cause": "Logic error or untested edge case in cfusa_basename",
"severity": 3,
"occurrence": 2,
"detection": 3,
"actionPriority": "low",
"mitigations": [],
"requirementIds": []
},
{
"id": "FM-039",
"item": "cfusa_analyze_register_rules",
"file": "cmd/cfusa/cmd_analyze.c",
"line": 292,
"failureMode": "cfusa_analyze_register_rules (general function) does not perform its intended action",
"effect": "Failure of cfusa_analyze_register_rules could propagate undetected to callers in cmd_analyze.c",
"cause": "Logic error or untested edge case in cfusa_analyze_register_rules",
"severity": 3,
"occurrence": 2,
"detection": 3,
"actionPriority": "low",
"mitigations": [],
"requirementIds": []
},
{
"id": "FM-040",
"item": "cmd_analyze",
"file": "cmd/cfusa/cmd_analyze.c",
"line": 298,
"failureMode": "cmd_analyze (general function) does not perform its intended action",
"effect": "Failure of cmd_analyze could propagate undetected to callers in cmd_analyze.c",
"cause": "Logic error or untested edge case in cmd_analyze",
"severity": 3,
"occurrence": 2,
"detection": 3,
"actionPriority": "low",
"mitigations": [],
"requirementIds": []
},
{
"id": "FM-041",
"item": "cmd_report",
"file": "cmd/cfusa/cmd_report.c",
"line": 14,
"failureMode": "cmd_report (general function) does not perform its intended action",
"effect": "Failure of cmd_report could propagate undetected to callers in cmd_report.c",
"cause": "Logic error or untested edge case in cmd_report",
"severity": 3,
"occurrence": 2,
"detection": 3,
"actionPriority": "low",
"mitigations": [],
"requirementIds": []
},
{
"id": "FM-042",
"item": "cmd_init",
"file": "cmd/cfusa/cmd_init.c",
"line": 15,
"failureMode": "cmd_init (monitoring/control function) does not perform its intended action",
"effect": "Failure of cmd_init could propagate undetected to callers in cmd_init.c",
"cause": "Configuration or state inconsistency affecting cmd_init",
"severity": 5,
"occurrence": 3,
"detection": 4,
"actionPriority": "medium",
"mitigations": [],
"requirementIds": []
},
{
"id": "FM-043",
"item": "required",
"file": "cmd/cfusa/cmd_iec62443.c",
"line": 24,
"failureMode": "required (general function) does not perform its intended action",
"effect": "Failure of required could propagate undetected to callers in cmd_iec62443.c",
"cause": "Logic error or untested edge case in required",
"severity": 3,
"occurrence": 2,
"detection": 3,
"actionPriority": "low",
"mitigations": [],
"requirementIds": []
},
{
"id": "FM-044",
"item": "cmd_iec62443",
"file": "cmd/cfusa/cmd_iec62443.c",
"line": 85,
"failureMode": "cmd_iec62443 (general function) does not perform its intended action",
"effect": "Failure of cmd_iec62443 could propagate undetected to callers in cmd_iec62443.c",
"cause": "Logic error or untested edge case in cmd_iec62443",
"severity": 3,
"occurrence": 2,
"detection": 3,
"actionPriority": "low",
"mitigations": [],
"requirementIds": []
},
{
"id": "FM-045",
"item": "cmd_fmea",
"file": "cmd/cfusa/cmd_fmea.c",
"line": 262,
"failureMode": "cmd_fmea (general function) does not perform its intended action",
"effect": "Failure of cmd_fmea could propagate undetected to callers in cmd_fmea.c",
"cause": "Logic error or untested edge case in cmd_fmea",
"severity": 3,
"occurrence": 2,
"detection": 3,
"actionPriority": "low",
"mitigations": [],
"requirementIds": []
},
{
"id": "FM-046",
"item": "cfusa_path_join",
"file": "cmd/cfusa/cmd_fmea.c",
"line": 403,
"failureMode": "cfusa_path_join (general function) does not perform its intended action",
"effect": "Failure of cfusa_path_join could propagate undetected to callers in cmd_fmea.c",
"cause": "Logic error or untested edge case in cfusa_path_join",
"severity": 3,
"occurrence": 2,
"detection": 3,
"actionPriority": "low",
"mitigations": [],
"requirementIds": []
},
{
"id": "FM-047",
"item": "cfusa_basename",
"file": "cmd/cfusa/cmd_fmea.c",
"line": 446,
"failureMode": "cfusa_basename (general function) does not perform its intended action",
"effect": "Failure of cfusa_basename could propagate undetected to callers in cmd_fmea.c",
"cause": "Logic error or untested edge case in cfusa_basename",
"severity": 3,
"occurrence": 2,
"detection": 3,
"actionPriority": "low",
"mitigations": [],
"requirementIds": []
},
{
"id": "FM-048",
"item": "cfusa_basename",
"file": "cmd/cfusa/cmd_fmea.c",
"line": 519,
"failureMode": "cfusa_basename (general function) does not perform its intended action",
"effect": "Failure of cfusa_basename could propagate undetected to callers in cmd_fmea.c",
"cause": "Logic error or untested edge case in cfusa_basename",
"severity": 3,
"occurrence": 2,
"detection": 3,
"actionPriority": "low",
"mitigations": [],
"requirementIds": []
},
{
"id": "FM-049",
"item": "cfusa_basename",
"file": "cmd/cfusa/cmd_fmea.c",
"line": 547,
"failureMode": "cfusa_basename (general function) does not perform its intended action",
"effect": "Failure of cfusa_basename could propagate undetected to callers in cmd_fmea.c",
"cause": "Logic error or untested edge case in cfusa_basename",
"severity": 3,
"occurrence": 2,
"detection": 3,
"actionPriority": "low",
"mitigations": [],
"requirementIds": []
},
{
"id": "FM-050",
"item": "cmd_fix",
"file": "cmd/cfusa/cmd_fix.c",
"line": 125,
"failureMode": "cmd_fix (general function) does not perform its intended action",
"effect": "Failure of cmd_fix could propagate undetected to callers in cmd_fix.c",
"cause": "Logic error or untested edge case in cmd_fix",
"severity": 3,
"occurrence": 2,
"detection": 3,
"actionPriority": "low",
"mitigations": [],
"requirementIds": []
},
{
"id": "FM-051",
"item": "main",
"file": "cmd/cfusa/main.c",
"line": 14,
"failureMode": "main (general function) does not perform its intended action",
"effect": "Failure of main could propagate undetected to callers in main.c",
"cause": "Logic error or untested edge case in main",
"severity": 3,
"occurrence": 2,
"detection": 3,
"actionPriority": "low",
"mitigations": [],
"requirementIds": []
},
{
"id": "FM-052",
"item": "cmd_boundary",
"file": "cmd/cfusa/cmd_boundary.c",
"line": 72,
"failureMode": "cmd_boundary (general function) does not perform its intended action",
"effect": "Failure of cmd_boundary could propagate undetected to callers in cmd_boundary.c",
"cause": "Logic error or untested edge case in cmd_boundary",
"severity": 3,
"occurrence": 2,
"detection": 3,
"actionPriority": "low",
"mitigations": [],
"requirementIds": []
},
{
"id": "FM-053",
"item": "cmd_impact",
"file": "cmd/cfusa/cmd_impact.c",
"line": 106,
"failureMode": "cmd_impact (general function) does not perform its intended action",
"effect": "Failure of cmd_impact could propagate undetected to callers in cmd_impact.c",
"cause": "Logic error or untested edge case in cmd_impact",
"severity": 3,
"occurrence": 2,
"detection": 3,
"actionPriority": "low",
"mitigations": [],
"requirementIds": []
},
{
"id": "FM-054",
"item": "cmd_sci",
"file": "cmd/cfusa/cmd_sci.c",
"line": 51,
"failureMode": "cmd_sci (general function) does not perform its intended action",
"effect": "Failure of cmd_sci could propagate undetected to callers in cmd_sci.c",
"cause": "Logic error or untested edge case in cmd_sci",
"severity": 3,
"occurrence": 2,
"detection": 3,
"actionPriority": "low",
"mitigations": [],
"requirementIds": []
},
{
"id": "FM-055",
"item": "cmd_iec61508",
"file": "cmd/cfusa/cmd_iec61508.c",
"line": 78,
"failureMode": "cmd_iec61508 (general function) does not perform its intended action",
"effect": "Failure of cmd_iec61508 could propagate undetected to callers in cmd_iec61508.c",
"cause": "Logic error or untested edge case in cmd_iec61508",
"severity": 3,
"occurrence": 2,
"detection": 3,
"actionPriority": "low",
"mitigations": [],
"requirementIds": []
},
{
"id": "FM-056",
"item": "cmd_badge",
"file": "cmd/cfusa/cmd_badge.c",
"line": 9,
"failureMode": "cmd_badge (general function) does not perform its intended action",
"effect": "Failure of cmd_badge could propagate undetected to callers in cmd_badge.c",
"cause": "Logic error or untested edge case in cmd_badge",
"severity": 3,
"occurrence": 2,
"detection": 3,
"actionPriority": "low",
"mitigations": [],
"requirementIds": []
},
{
"id": "FM-057",
"item": "cmd_unece",
"file": "cmd/cfusa/cmd_unece.c",
"line": 57,
"failureMode": "cmd_unece (general function) does not perform its intended action",
"effect": "Failure of cmd_unece could propagate undetected to callers in cmd_unece.c",
"cause": "Logic error or untested edge case in cmd_unece",
"severity": 3,
"occurrence": 2,
"detection": 3,
"actionPriority": "low",
"mitigations": [],
"requirementIds": []
},
{
"id": "FM-058",
"item": "cmd_sign",
"file": "cmd/cfusa/cmd_sign.c",
"line": 43,
"failureMode": "cmd_sign (general function) does not perform its intended action",
"effect": "Failure of cmd_sign could propagate undetected to callers in cmd_sign.c",
"cause": "Logic error or untested edge case in cmd_sign",
"severity": 3,
"occurrence": 2,
"detection": 3,
"actionPriority": "low",
"mitigations": [],
"requirementIds": []
},
{
"id": "FM-059",
"item": "cfusa_hmac_sha256",
"file": "cmd/cfusa/cmd_sign.c",
"line": 120,
"failureMode": "cfusa_hmac_sha256 (general function) does not perform its intended action",
"effect": "Failure of cfusa_hmac_sha256 could propagate undetected to callers in cmd_sign.c",
"cause": "Logic error or untested edge case in cfusa_hmac_sha256",
"severity": 3,
"occurrence": 2,
"detection": 3,
"actionPriority": "low",
"mitigations": [],
"requirementIds": []
},
{
"id": "FM-060",
"item": "cmd_iso21434",
"file": "cmd/cfusa/cmd_iso21434.c",
"line": 77,
"failureMode": "cmd_iso21434 (general function) does not perform its intended action",
"effect": "Failure of cmd_iso21434 could propagate undetected to callers in cmd_iso21434.c",
"cause": "Logic error or untested edge case in cmd_iso21434",
"severity": 3,
"occurrence": 2,
"detection": 3,
"actionPriority": "low",
"mitigations": [],
"requirementIds": []
},
{
"id": "FM-061",
"item": "cfusa_scan_lines",
"file": "cmd/cfusa/cmd_vuln.c",
"line": 107,
"failureMode": "cfusa_scan_lines (general function) does not perform its intended action",
"effect": "Failure of cfusa_scan_lines could propagate undetected to callers in cmd_vuln.c",
"cause": "Logic error or untested edge case in cfusa_scan_lines",
"severity": 3,
"occurrence": 2,
"detection": 3,
"actionPriority": "low",
"mitigations": [],
"requirementIds": []
},
{
"id": "FM-062",
"item": "cmd_vuln",
"file": "cmd/cfusa/cmd_vuln.c",
"line": 109,
"failureMode": "cmd_vuln (general function) does not perform its intended action",
"effect": "Failure of cmd_vuln could propagate undetected to callers in cmd_vuln.c",
"cause": "Logic error or untested edge case in cmd_vuln",
"severity": 3,
"occurrence": 2,
"detection": 3,
"actionPriority": "low",
"mitigations": [],
"requirementIds": []
},
{
"id": "FM-063",
"item": "cmd_comp",
"file": "cmd/cfusa/cmd_comp.c",
"line": 222,
"failureMode": "cmd_comp (general function) does not perform its intended action",
"effect": "Failure of cmd_comp could propagate undetected to callers in cmd_comp.c",
"cause": "Logic error or untested edge case in cmd_comp",
"severity": 3,
"occurrence": 2,
"detection": 3,
"actionPriority": "low",
"mitigations": [],
"requirementIds": []
},
{
"id": "FM-064",
"item": "cmd_audit_pack",
"file": "cmd/cfusa/cmd_audit_pack.c",
"line": 21,
"failureMode": "cmd_audit_pack (general function) does not perform its intended action",
"effect": "Failure of cmd_audit_pack could propagate undetected to callers in cmd_audit_pack.c",
"cause": "Logic error or untested edge case in cmd_audit_pack",
"severity": 3,
"occurrence": 2,
"detection": 3,
"actionPriority": "low",
"mitigations": [],
"requirementIds": []
},
{
"id": "FM-065",
"item": "cmd_hooks",
"file": "cmd/cfusa/cmd_hooks.c",
"line": 20,
"failureMode": "cmd_hooks (general function) does not perform its intended action",
"effect": "Failure of cmd_hooks could propagate undetected to callers in cmd_hooks.c",
"cause": "Logic error or untested edge case in cmd_hooks",
"severity": 3,
"occurrence": 2,
"detection": 3,
"actionPriority": "low",
"mitigations": [],
"requirementIds": []
},
{
"id": "FM-066",
"item": "cmd_disposition",
"file": "cmd/cfusa/cmd_disposition.c",
"line": 184,
"failureMode": "cmd_disposition (general function) does not perform its intended action",
"effect": "Failure of cmd_disposition could propagate undetected to callers in cmd_disposition.c",
"cause": "Logic error or untested edge case in cmd_disposition",
"severity": 3,
"occurrence": 2,
"detection": 3,
"actionPriority": "low",
"mitigations": [],