בדיקת תנאי מירוץ עם מעקב גישה לזיכרון והזרקת השהיה מבוססת מחסנית
Testing race conditions with memory access tracing and stack-based delay injection

◆ סיכום AI
תנאי מירוץ (Race Conditions) הם פגיעויות אבטחה נפוצות בקוד מקבילי, הנוצרות כתוצאה מסדר ביצוע בלתי צפוי של תהליכונים. כלי זה מסייע בזיהוי ורגרסיה של באגים מסוג זה על ידי מעקב גישה לזיכרון והזרקת השהיות יזומות. השיטה מציעה פתרון לאתגרים בבדיקה אוטומטית של תנאי מירוץ.
# מהמקור
Many security bugs are race conditions, where multi-threaded execution has to occur with the right interleaving for a negative effect to appear. This creates challenges for several use cases: Confirming bug candidates that have been discovered manually or through static analysis. Regression tests: After fixing a race condition bug, there is often no good way to write a regression test that reliably triggers the bug as part of a test suite. Automatic bug discovery, such as fuzzing: It is hard for a fuzzer to exercise all interesting interleavings of concurrent operations, or reach code paths that are only exercised when operations are racing.