mininet VS dettrace

Compare mininet vs dettrace and see what are their differences.

InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
mininet dettrace
16 2
5,170 29
0.7% -
5.2 2.6
14 days ago over 3 years ago
Python C++
BSD 3-clause "New" or "Revised" License 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.

mininet

Posts with mentions or reviews of mininet. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-01-09.

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 mininet and dettrace you can also consider the following projects:

core - Common Open Research Emulator

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.

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

PyBoy - Game Boy emulator written in Python

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.