Skip to main content

Stack Visualization Tool

Project description

Staq is a python package for simulating/visualizing stack operations. It also provides a sphinx extension for generating stack diagrams

Install

pip install staq

CLI

To run the cli,

staq

This will start the cli interface. Here is a quick example of some commands:

(staq)>>  push etc: ... --size 64
(staq)>>  call main(2, "hello" "world")
(staq)>>  char buffer[64]
(staq)>>  push i: 0x89 --note Same as 'int i = 0x89'
(staq)>>  call printf("vars %d %d", 17, 38)
(staq)>>  function myFunction(int a, int b)
(staq)>>  call myFunction(56,78)
docs/assets/images/stack1.png

Because this is really just a tool for visualization, types are not strictly defined or used. For instance the following command is valid:

It will add a word to the stack with label i and value “index of buffer”

Local vars

you can declare local variables using standard C syntax.

char buffer[64]
int i = 0x89

Loading a C file

You can load a file with C syntax to import functions. The functions will be loaded into the context including arguments, local variables, and calls to other functions.

load test.c

Write

The write command lets you write data to the stack at a given address.

write 0x56, 0x78, 0x90, 0x12 -a 0x1000

#you can also use references to variables with offsets
write 0x45 -a &buffer
write 0x45 -a &buffer+4

Push

push will push a single stack cell onto the stack. A cell contains one or more words. Each cell can have a label, note, and words

push arg1: 0x56                 #Shortcut for 'push 0x56 --label arg1'
push --label buffer --size 64   #creates a 64 word cell with no specified data
push buf: 1,2,3,4,5             #creates a 5 word cell with the values filled in
push <main+0x54> --note return  #creates a single word on the stack with no label, and a note

Pop

pop will remove words from the stack

pop             #remove a single word
pop 4           #remove 4 words
pop frame       #remove current frame

ret

ret will pop one word and set the instruction pointer to the value popped.

Functions

The call command gets run through a CallingConvention subclass (currently only cdecl is available) and performs operations according to the convention:

  • push arguments to stack

  • create a new stack frame

  • pushes return address

You can declare functions to give the app context about argument type/size and labels, but you can also call arbitrary functions. It will just assume all arguments are a single row on the stack.

function myFunction(int a, int b)
call myFunction(41,32)

call undeclareFunction(1,2,3,4)     # Will assume all args are 32 bit values and label arg1, arg2, arg3, etc

run

The run command is similar to call, but it will continue calling the first known function call in each function until it runs out of calls or hits the –limit arg.

Sphinx

This package also contains an extension for sphinx. Add the extension in conf.py and then you can use the stack directive

.. stack::
    :showAddresses:

    push etc: ... --size 64
    call main(2, "hello" "world")
    char buffer[64]
    call printf("vars %d %d", 17, 38)
    function myFunction(int a, int b)
    call myFunction(56,78)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

staq-0.1.13.tar.gz (24.4 kB view details)

Uploaded Source

File details

Details for the file staq-0.1.13.tar.gz.

File metadata

  • Download URL: staq-0.1.13.tar.gz
  • Upload date:
  • Size: 24.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.12.3

File hashes

Hashes for staq-0.1.13.tar.gz
Algorithm Hash digest
SHA256 7115c34dd87784e70db4c997115972f9df81c24f094cbf97d9a43d55a59ea2d3
MD5 7c2e0a09bf4d9e80a4e390a13c621fdb
BLAKE2b-256 8642e905af9bcbf7a3717d170902c4e1d2244c34f3a330239c287ef48b7444ac

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page