-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathScript.go
154 lines (134 loc) · 2.95 KB
/
Script.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
149
150
151
152
153
package frida_go
import (
"context"
"errors"
"fmt"
"github.com/a97077088/frida-go/cfrida"
"github.com/json-iterator/go"
"log"
"math"
"sync"
"unsafe"
)
const (
RpcOperation_call = "call"
)
const (
RpcKind_default = "frida:rpc"
)
var reqlk sync.Mutex
var rpcRequestId int64
func nextRpcRequestId() int64 {
reqlk.Lock()
defer reqlk.Unlock()
currentId := rpcRequestId
if currentId >= math.MaxInt64{
rpcRequestId = 0
} else {
rpcRequestId++
}
return currentId
}
var rpcCallbackMap sync.Map=sync.Map{}
func rpcCallbackFunc(jjsonCallback jsoniter.Any) {
id := jjsonCallback.Get(1).ToInt64()
h, ok := rpcCallbackMap.LoadAndDelete(id)
if !ok {
return
}
h.(chan jsoniter.Any) <- jjsonCallback
}
type Script struct {
*ScriptSignalConnect
CObj
}
func (s *Script) DefaultOnMessage(jjson jsoniter.Any,data []byte){
tp:=jjson.Get("type").ToString()
if tp=="log"{
log.Println(jjson.Get("payload").ToString())
}else if tp=="error"{
log.Println(jjson.Get("stack").ToString())
log.Println(jjson.Get("fileName").ToString())
}else{
log.Println(jjson.ToString())
}
}
func (s *Script) IsDestroyed() bool {
return cfrida.Frida_script_is_destroyed(s.instance)
}
func (s *Script) Load() error {
err:=cfrida.Frida_script_load_sync(s.instance,0,)
if err!=nil{
return err
}
return nil
}
func (s *Script) UnLoad() error {
err:=cfrida.Frida_script_unload_sync(s.instance,0)
if err!=nil{
return err
}
return nil
}
func (s *Script) Eternalize() error {
err:=cfrida.Frida_script_eternalize_sync(s.instance,0,)
if err!=nil{
return err
}
return nil
}
func (s *Script) RpcCall(ctx context.Context, functionName string, args ...interface{}) (jsoniter.Any, error){
reqid := nextRpcRequestId()
message := []interface{}{
RpcKind_default,
reqid,
RpcOperation_call,
functionName,
args,
}
ch := make(chan jsoniter.Any)
rpcCallbackMap.Store(reqid, ch)
s.Post(message, nil)
select {
case <-ctx.Done():
_=s.ptr // ref s.ptr active gc
return nil, ctx.Err()
case jsresult := <-ch:
ret := jsresult.Get(2).ToString()
if ret != "ok" {
return nil, errors.New(jsresult.Get(3).ToString())
} else {
return jsresult.Get(3), nil
}
}
return nil, errors.New("未知错误")
}
func (s *Script) Post(obj interface{}, data []byte) {
cfrida.Frida_script_post(s.rawScriptPtr, jsoniter.Wrap(obj).ToString(), data)
}
func (s *Script) Description() string {
if s.instance==0{
return ""
}
return fmt.Sprintf("Frida.Script()")
}
func (s *Script) Free() {
if s.instance!=0{
s.free()
//fmt.Println("script gc")
cfrida.G_object_unref(s.instance)
s.instance,s.ptr=0,nil
}
}
// ScriptFromInst
// 新建一个对象来自已经存在的对象实例指针。
//
// Create a new object from an existing object instance pointer.
func ScriptFromInst(inst uintptr) *Script {
dl:=new(Script)
dl.instance=inst
dl.ptr= unsafe.Pointer(dl.instance)
dl.ScriptSignalConnect=NewScriptSignalConnect(dl.instance)
setFinalizer(dl, (*Script).Free)
return dl
}