ifuzz

package
v0.0.0-...-4e6bda9 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: May 20, 2018 License: Apache-2.0 Imports: 2 Imported by: 0

Documentation

Overview

Package ifuzz allows to generate and mutate x86 machine code.

AUTOGENERATED FILE

Index

Constants

View Source
const (
	ModeLong64 = iota
	ModeProt32
	ModeProt16
	ModeReal16
	ModeLast
)

Variables

View Source
var Insns = []*Insn{}/* 2170 elements not displayed */
View Source
var XedDecode func(mode int, text []byte) (int, error)

Functions

func Decode

func Decode(mode int, text []byte) (int, error)

Decode decodes instruction length for the given mode. It can have falsely decode incorrect instructions, but should not fail to decode correct instructions.

func Generate

func Generate(cfg *Config, r *rand.Rand) []byte

func Mutate

func Mutate(cfg *Config, r *rand.Rand, text []byte) []byte

Types

type Config

type Config struct {
	Len        int         // number of instructions to generate
	Mode       int         // one of ModeXXX
	Priv       bool        // generate CPL=0 instructions
	Exec       bool        // generate instructions sequences interesting for execution
	MemRegions []MemRegion // generated instructions will reference these regions
}

type Insn

type Insn struct {
	Name      string
	Extension string

	Mode   int  // bitmask of compatible modes
	Priv   bool // CPL=0
	Pseudo bool // pseudo instructions can consist of several real instructions

	Opcode      []byte
	Prefix      []byte
	Suffix      []byte
	Modrm       bool
	Mod         int8
	Reg         int8 // -6 - segment register, -8 - control register
	Rm          int8
	Srm         bool // register is embed in the first byte
	NoSibDisp   bool // no SIB/disp even if modrm says otherwise
	Imm         int8 // immediate size, -1 - immediate size, -2 - address size, -3 - operand size
	Imm2        int8
	NoRepPrefix bool
	No66Prefix  bool
	Rexw        int8 // 1 must be set, -1 must not be set
	Mem32       bool // instruction always references 32-bit memory operand, 0x67 is illegal
	Mem16       bool // instruction always references 16-bit memory operand

	Vex        byte
	VexMap     byte
	VexL       int8
	VexNoR     bool
	VexP       int8
	Avx2Gather bool
	// contains filtered or unexported fields
}

func ModeInsns

func ModeInsns(cfg *Config) []*Insn

ModeInsns returns list of all instructions for the given mode.

func (*Insn) Encode

func (insn *Insn) Encode(cfg *Config, r *rand.Rand) []byte

type MemRegion

type MemRegion struct {
	Start uint64
	Size  uint64
}

Directories

Path Synopsis
gen generates instruction tables (ifuzz/insns.go) from Intel XED tables.
gen generates instruction tables (ifuzz/insns.go) from Intel XED tables.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL