5 releases

0.1.4 Jul 3, 2023
0.1.3 Jun 17, 2023
0.1.2 Jun 11, 2023
0.1.1 Jun 9, 2023
0.1.0 Jun 8, 2023

#248 in Operating systems

Download history 1/week @ 2024-01-08 16/week @ 2024-02-12 30/week @ 2024-02-19 43/week @ 2024-02-26 21/week @ 2024-03-04 49/week @ 2024-03-11 21/week @ 2024-03-18 6/week @ 2024-03-25 54/week @ 2024-04-01 18/week @ 2024-04-08 40/week @ 2024-04-15

121 downloads per month
Used in constant_time_eq

MIT/Apache

21KB
396 lines

Counts the instructions executed within a single function.

When developing constant-time code, it can be helpful to validate that several executions of a given function have the same number of instructions, and that the same instructions were used.

The approach used by this crate is to single-step the function using the operating system debug API, optionally recording the address of each instruction. This is currently implemented only for Linux; for other operating systems, it will fail with an error.

Using the debug API to single-step the function has several drawbacks:

  • It can be very slow, especially when not compiled in release mode;
  • It cannot be used while another debugger is attached to the process;
  • Its use might be restricted by several system hardening mechanisms.

On the other hand, using the debug API has the advantage of tracing the real code executed by the CPU, as generated by the compiler, instead of symbolic execution of the source code, or emulation on another architecture.

License

Licensed under either of

at your option.

Dependencies

~1.5–10MB
~107K SLoC