Skip to content

doom/bind

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

bind

This is a tiny proof of concept for binding parameters to functions with x86-64 calling conventions, under the System V ABI.

See main.c for a basic code example.

A word on how it works

Let's say we have the puts function, and a string "lala" that we want to bind to it, in order to obtain a function print_lala.

This function obviously only needs to do something like calling puts with "lala" as a parameter. Well, that is what we'll do: generate code that loads bound arguments in the corresponding registers, and then jumps to the bound function. That code will just be made of a few mov instructions (one for each bound argument), followed by the appropriate jmp.

About

Tiny PoC for binding parameters to functions

Resources

Stars

5 stars

Watchers

1 watching

Forks

Releases

No releases published

Packages

 
 
 

Contributors