| commit | 339108a18e953d45983bd1be15814ea335235870 | [log] [tgz] |
|---|---|---|
| author | Kaiyeung Luk <kyluk@google.com> | Thu Dec 11 19:19:01 2025 |
| committer | GitHub <noreply@github.com> | Thu Dec 11 19:19:01 2025 |
| tree | 183009aea17f86d84e4a3f5da049726a44577119 | |
| parent | 9f9911a0a479b9d74d89b9e1230456d54d81fa51 [diff] |
i#7588 drsyscall: fix a boundary condition bug in drsyscall_iterate_records. (#7736) There is a bug in drsyscall_iterate_records() where it stops to process syscall record if a record ends exactly at the end of its buffer. This bug affects both drsyscall_record_trimmer and drsyscall_record_viewer. The root cause of this failure is not in the syscall record collection but rather in the iteration logic used by drsyscall_iterate_records() during subsequent processing. Add a unit test which has a syscall record which ends exactly at the end of the buffer. Without the fix, the syscall record DRSYS_RECORD_END_TIMESTAMP will not be read. Issue: #7588

DynamoRIO is a runtime code manipulation system that supports code transformations on any part of a program, while it executes. DynamoRIO exports an interface for building dynamic tools for a wide variety of uses: program analysis and understanding, profiling, instrumentation, optimization, translation, etc. Unlike many dynamic tool systems, DynamoRIO is not limited to insertion of callouts/trampolines and allows arbitrary modifications to application instructions via a powerful IA-32/AMD64/ARM/AArch64 instruction manipulation library. DynamoRIO provides efficient, transparent, and comprehensive manipulation of unmodified applications running on stock operating systems (Windows, Linux, or Android) and commodity IA-32, AMD64, ARM, and AArch64 hardware. Mac OSX support is in progress.
DynamoRIO is the basis for some well-known external tools:
Tools built on DynamoRIO and available in the release package include:
DynamoRIO‘s powerful API abstracts away the details of the underlying infrastructure and allows the tool builder to concentrate on analyzing or modifying the application’s runtime code stream. API documentation is included in the release package and can also be browsed online. Slides from our past tutorials are also available.
DynamoRIO is available free of charge as a binary package for both Windows and Linux. DynamoRIO's source code is available primarily under a BSD license.
Use the discussion list to ask questions.
To report a bug, use the issue tracker.
See also the DynamoRIO home page: http://dynamorio.org/