shadow VS dettrace

Compare shadow vs dettrace and see what are their differences.

shadow

Shadow is a discrete-event network simulator that directly executes real application code, enabling you to simulate distributed systems with thousands of network-connected processes in realistic and scalable private network experiments using your laptop, desktop, or server running Linux. (by shadow)
Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
shadow dettrace
11 2
1,348 29
1.0% -
9.8 2.6
18 days ago over 3 years ago
Rust C++
GNU General Public License v3.0 or later GNU General Public License v3.0 or later
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

shadow

Posts with mentions or reviews of shadow. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-08-17.

dettrace

Posts with mentions or reviews of dettrace. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-11-22.
  • Deterministic Linux for Controlled Testing and Software Bug-Finding
    5 projects | news.ycombinator.com | 22 Nov 2022
    Note that this is a follow-on project from the earlier Dettrace system, which was applied mainly to reproducible builds (as in the academic paper, https://dl.acm.org/doi/10.1145/3373376.3378519, and presented to the Debian Reproducible Builds summit):

    - https://github.com/dettrace/dettrace

    And one cool part of it is this Rust program instrumentation layer:

    - https://github.com/facebookexperimental/reverie

    It's good for building OS-emulator style projects or tracing tools.

  • Shadow Simlulator โ€“ run real applications over a simulated Internet topology
    11 projects | news.ycombinator.com | 19 Apr 2021
    We've started looking into eBPF a bit - IIUC eBPF by itself doesn't give us the ability to service or arbitrarily manipulate the traced process's syscalls.

    We have recently learned of an interesting technique that dettrace [1] uses of combining seccomp with an eBPF filter and ptrace. Instead of generating a ptrace-stop for every syscall (as we do now, using PTRACE_SYSEMU), they use a seccomp policy with an eBPF filter, s.t. a ptrace-stop is only generated for syscalls that violate the policy, allowing them to emulate the result of those syscalls. syscalls that don't violate the policy are allowed to execute natively, saving a lot of overhead.

    [1]: https://github.com/dettrace/dettrace

    This works great for them since they want to emulate a relatively small subset of syscalls. In our case we want to emulate most syscalls, so it's not as clear-cut of a win. We have found though that if we use an LD_PRELOAD'd shim in the target process to intercept syscalls and then service them via IPC, that's substantially faster than catching them with ptrace. That runs back into the problems with LD_PRELOAD in general of there being various ways of missing syscalls. but, we may be able to use that technique along with ptrace+seccomp+ebpf to intercept any syscalls that we'd otherwise miss. The seccomp technique would allow us to exempt the syscalls that our shim itself is making to do the IPC.

What are some alternatives?

When comparing shadow and dettrace you can also consider the following projects:

mininet - Emulator for rapid prototyping of Software Defined Networks

tor - unofficial git repo -- report bugs/issues/pull requests on https://gitlab.torproject.org/ --

core - Common Open Research Emulator

shadow-plugin-tor - A Shadow plug-in that runs the Tor anonymity software

rebop - Fast stochastic simulator for chemical reaction networks

imunes - Integrated Multiprotocol Network Emulator/Simulator

testground - ๐Ÿงช A platform for testing, benchmarking, and simulating distributed and p2p systems at scale.

reverie - An ergonomic and safe syscall interception framework for Linux.