mushuanli / ministrace

A minimal toy implementation of strace(1)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ministrace

ministrace is a small strace implementation by Nelson Elhage (@nelhage).

ministrace is a minimal implementation of strace originally about 70 lines of C. It isn't nearly as functional as the real thing, but you can use it to learn most of what you need to know about the core interfaces it uses.

ministrace was written for a blog post, which explains in some detail how it works.

Usage

ministrace [-n <system call name>|-s <system call int>] <program> <program args>

Basic ministrace usage just takes a command line:

ministrace <program> <program args>

This will run the program provided with the given arguments, and print out a sequence of all the system calls which made by the program.

You can also specify a specific system call, using -n sys_call_name or -s sys_call_number:

ministrace -n <system call name> <program> <program args>
ministrace -s <system call int> <program> <program args>

This will print out a sequence of system calls which are made, and block (waiting for an enter on ministrace's terminal) whenever the program is about to execute the specified system call.

About

A minimal toy implementation of strace(1)


Languages

Language:C 62.3%Language:Python 36.0%Language:Makefile 1.7%