-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathassembler.go
148 lines (136 loc) · 3.51 KB
/
assembler.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
package amd64
import (
"errors"
"fmt"
"github.com/modern-go/reflect2"
"syscall"
"unsafe"
)
const PageSize = 4096
type Assembler struct {
Buffer []byte
Error error
}
func (asm *Assembler) ReportError(err error) {
if asm.Error == nil {
asm.Error = err
}
}
func (asm *Assembler) Assemble(instructions ...interface{}) {
for len(instructions) > 0 {
insn, _ := instructions[0].(*instruction)
if insn == nil {
asm.ReportError(fmt.Errorf("not instruction: %v", instructions))
return
}
switch assemble := insn.encoding.(type) {
case func(a *Assembler):
assemble(asm)
instructions = instructions[1:]
case func(a *Assembler, insn *instruction):
assemble(asm, insn)
instructions = instructions[1:]
case func(a *Assembler, insn *instruction, operand1 Operand):
operand1, _ := instructions[1].(Operand)
if operand1 == nil {
asm.ReportError(fmt.Errorf("not operand: %v", operand1))
return
}
assemble(asm, insn, operand1)
instructions = instructions[2:]
case func(a *Assembler, insn *instruction, operand1 Operand, operand2 Operand):
operand1, _ := instructions[1].(Operand)
if operand1 == nil {
asm.ReportError(fmt.Errorf("not operand: %v", operand1))
return
}
operand2, _ := instructions[2].(Operand)
if operand2 == nil {
asm.ReportError(fmt.Errorf("not operand: %v", operand2))
return
}
assemble(asm, insn, operand1, operand2)
instructions = instructions[3:]
case func(a *Assembler, insn *instruction, operand1 Operand, operand2 Operand, operand3 Operand):
operand1, _ := instructions[1].(Operand)
if operand1 == nil {
asm.ReportError(fmt.Errorf("not operand: %v", operand1))
return
}
operand2, _ := instructions[2].(Operand)
if operand2 == nil {
asm.ReportError(fmt.Errorf("not operand: %v", operand2))
return
}
operand3, _ := instructions[3].(Operand)
if operand3 == nil {
asm.ReportError(fmt.Errorf("not operand: %v", operand2))
return
}
assemble(asm, insn, operand1, operand2, operand3)
instructions = instructions[4:]
default:
asm.ReportError(fmt.Errorf("unsupported: %v", insn))
return
}
}
}
func (asm *Assembler) byte(b byte) {
asm.Buffer = append(asm.Buffer, b)
}
func (asm *Assembler) int16(i uint16) {
asm.Buffer = append(asm.Buffer, byte(i&0xFF), byte(i>>8))
}
func (asm *Assembler) int32(i uint32) {
asm.Buffer = append(asm.Buffer,
byte(i&0xFF),
byte(i>>8),
byte(i>>16),
byte(i>>24))
}
func (asm *Assembler) int64(i uint64) {
asm.Buffer = append(asm.Buffer,
byte(i&0xFF),
byte(i>>8),
byte(i>>16),
byte(i>>24),
byte(i>>32),
byte(i>>40),
byte(i>>48),
byte(i>>56))
}
func (asm *Assembler) rel32(addr uintptr) {
off := uintptr(addr) - uintptr(unsafe.Pointer(&asm.Buffer[len(asm.Buffer)-1])) - 4
if uintptr(int32(off)) != off {
asm.ReportError(errors.New("call rel: target out of range"))
return
}
asm.int32(uint32(off))
}
func (asm *Assembler) imm(imm Immediate) {
switch imm.bits {
case 8:
asm.byte(byte(imm.val))
case 16:
asm.int16(uint16(imm.val))
case 32:
asm.int32(imm.val)
}
}
func (asm *Assembler) MakeFunc(f interface{}) {
pagesCount := (len(asm.Buffer) / PageSize) + 1
executableMem, err := syscall.Mmap(
-1,
0,
pagesCount*PageSize,
syscall.PROT_READ|syscall.PROT_WRITE|syscall.PROT_EXEC,
syscall.MAP_PRIVATE|syscall.MAP_ANONYMOUS)
if err != nil {
asm.ReportError(err)
return
}
copy(executableMem, asm.Buffer)
typ := reflect2.TypeOf(f)
ptr := unsafe.Pointer(&executableMem)
typ.UnsafeSet(reflect2.PtrOf(f), unsafe.Pointer(&ptr))
}