-
Notifications
You must be signed in to change notification settings - Fork 158
/
symbols.go
324 lines (304 loc) · 7.81 KB
/
symbols.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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
package main
import (
"fmt"
"go/ast"
"go/build"
"go/parser"
"go/token"
"io/ioutil"
"log"
"os"
"path/filepath"
"strings"
"golang.org/x/tools/refactor/importgraph"
"golang.org/x/tools/refactor/rename"
)
var IgnoreMethods = map[string]bool{"main": true, "init": true}
type symbolRenameReq struct {
OldName string
NewName string
}
func ObfuscateSymbols(gopath string, n NameHasher) error {
removeDoNotEdit(gopath)
renames, err := topLevelRenames(gopath, n)
if err != nil {
return fmt.Errorf("top-level renames: %s", err)
}
if err := runRenames(gopath, renames); err != nil {
return fmt.Errorf("top-level renaming: %s", err)
}
renames, err = methodRenames(gopath, n)
if err != nil {
return fmt.Errorf("method renames: %s", err)
}
if err := runRenames(gopath, renames); err != nil {
return fmt.Errorf("method renaming: %s", err)
}
return nil
}
func runRenames(gopath string, renames []symbolRenameReq) error {
ctx := build.Default
ctx.GOPATH = gopath
for _, r := range renames {
if err := rename.Main(&ctx, "", r.OldName, r.NewName); err != nil {
log.Println("Error running renames proceding...", err)
continue
}
}
return nil
}
func topLevelRenames(gopath string, n NameHasher) ([]symbolRenameReq, error) {
srcDir := filepath.Join(gopath, "src")
res := map[symbolRenameReq]int{}
addRes := func(pkgPath, name string) {
prefix := "\"" + pkgPath + "\"."
oldName := prefix + name
newName := n.Hash(name)
res[symbolRenameReq{oldName, newName}]++
}
err := filepath.Walk(srcDir, func(path string, info os.FileInfo, err error) error {
if err != nil {
return err
}
if info.IsDir() && containsUnsupportedCode(path) {
return filepath.SkipDir
}
if !isGoFile(path) {
return nil
}
pkgPath, err := filepath.Rel(srcDir, filepath.Dir(path))
if err != nil {
return err
}
set := token.NewFileSet()
file, err := parser.ParseFile(set, path, nil, 0)
if err != nil {
return err
}
for _, decl := range file.Decls {
switch d := decl.(type) {
case *ast.FuncDecl:
if !IgnoreMethods[d.Name.Name] && d.Recv == nil {
addRes(pkgPath, d.Name.Name)
}
case *ast.GenDecl:
for _, spec := range d.Specs {
switch spec := spec.(type) {
case *ast.TypeSpec:
addRes(pkgPath, spec.Name.Name)
case *ast.ValueSpec:
for _, name := range spec.Names {
addRes(pkgPath, name.Name)
}
}
}
}
}
return nil
})
return singleRenames(res), err
}
func methodRenames(gopath string, n NameHasher) ([]symbolRenameReq, error) {
exclude, err := interfaceMethods(gopath)
if err != nil {
return nil, err
}
srcDir := filepath.Join(gopath, "src")
res := map[symbolRenameReq]int{}
err = filepath.Walk(srcDir, func(path string, info os.FileInfo, err error) error {
if err != nil {
return err
}
if info.IsDir() && containsUnsupportedCode(path) {
return filepath.SkipDir
}
if !isGoFile(path) {
return nil
}
pkgPath, err := filepath.Rel(srcDir, filepath.Dir(path))
if err != nil {
return err
}
set := token.NewFileSet()
file, err := parser.ParseFile(set, path, nil, 0)
if err != nil {
return err
}
for _, decl := range file.Decls {
d, ok := decl.(*ast.FuncDecl)
if !ok || exclude[d.Name.Name] || d.Recv == nil {
continue
}
prefix := "\"" + pkgPath + "\"."
for _, rec := range d.Recv.List {
receiver := receiverString(prefix, rec)
if receiver == "" {
continue
}
oldName := receiver + "." + d.Name.Name
newName := n.Hash(d.Name.Name)
res[symbolRenameReq{oldName, newName}]++
}
}
return nil
})
return singleRenames(res), err
}
func interfaceMethods(gopath string) (map[string]bool, error) {
ctx := build.Default
ctx.GOPATH = gopath
forward, backward, _ := importgraph.Build(&ctx)
pkgs := map[string]bool{}
for _, m := range []importgraph.Graph{forward, backward} {
for x := range m {
pkgs[x] = true
}
}
res := map[string]bool{}
for pkgName := range pkgs {
pkg, err := ctx.Import(pkgName, gopath, 0)
if err != nil {
return nil, fmt.Errorf("import %s: %s", pkgName, err)
}
for _, fileName := range pkg.GoFiles {
sourcePath := filepath.Join(pkg.Dir, fileName)
set := token.NewFileSet()
file, err := parser.ParseFile(set, sourcePath, nil, 0)
if err != nil {
return nil, err
}
for _, decl := range file.Decls {
d, ok := decl.(*ast.GenDecl)
if !ok {
continue
}
for _, spec := range d.Specs {
spec, ok := spec.(*ast.TypeSpec)
if !ok {
continue
}
t, ok := spec.Type.(*ast.InterfaceType)
if !ok {
continue
}
for _, field := range t.Methods.List {
for _, name := range field.Names {
res[name.Name] = true
}
}
}
}
}
}
return res, nil
}
// singleRenames removes any rename requests which appear
// more than one time.
// This is necessary because of build constraints, which
// the refactoring API doesn't seem to properly support.
func singleRenames(multiset map[symbolRenameReq]int) []symbolRenameReq {
var res []symbolRenameReq
for x, count := range multiset {
if count == 1 {
res = append(res, x)
}
}
return res
}
// containsUnsupportedCode checks if a source directory
// contains assembly or CGO code, neither of which are
// supported by the refactoring API.
func containsUnsupportedCode(dir string) bool {
return containsAssembly(dir) || containsCGO(dir)
}
// containsAssembly checks if a source directory contains
// any assembly files.
// We cannot rename symbols in assembly-filled directories
// because of limitations of the refactoring API.
func containsAssembly(dir string) bool {
contents, _ := ioutil.ReadDir(dir)
for _, item := range contents {
if filepath.Ext(item.Name()) == ".s" {
return true
}
}
return false
}
// containsCGO checks if a package relies on CGO.
// We cannot rename symbols in packages that use CGO due
// to limitations of the refactoring API.
func containsCGO(dir string) bool {
listing, err := ioutil.ReadDir(dir)
if err != nil {
return false
}
for _, item := range listing {
if isGoFile(item.Name()) {
path := filepath.Join(dir, item.Name())
set := token.NewFileSet()
file, err := parser.ParseFile(set, path, nil, 0)
if err != nil {
return false
}
for _, spec := range file.Imports {
if spec.Path.Value == `"C"` {
return true
}
}
}
}
return false
}
// removeDoNotEdit removes comments that prevent gorename
// from working properly.
func removeDoNotEdit(dir string) error {
srcDir := filepath.Join(dir, "src")
return filepath.Walk(srcDir, func(path string, info os.FileInfo, err error) error {
if err != nil {
return err
}
if info.IsDir() || !isGoFile(path) {
return nil
}
f, err := os.OpenFile(path, os.O_RDWR, 0755)
if err != nil {
return err
}
defer f.Close()
content, err := ioutil.ReadAll(f)
if err != nil {
return err
}
set := token.NewFileSet()
file, err := parser.ParseFile(set, path, content, parser.ParseComments)
if err != nil {
return err
}
for _, comment := range file.Comments {
data := make([]byte, comment.End()-comment.Pos())
start := int(comment.Pos()) - 1
end := start + len(data)
data = content[start:end]
commentStr := string(data)
if strings.Contains(commentStr, "DO NOT EDIT") {
commentStr = strings.Replace(commentStr, "DO NOT EDIT", "XXXXXXXXXXX", -1)
if _, err := f.WriteAt([]byte(commentStr), int64(comment.Pos()-1)); err != nil {
return err
}
}
}
return nil
})
}
// receiverString gets the string representation of a
// method receiver so that the method can be renamed.
func receiverString(prefix string, rec *ast.Field) string {
if stringer, ok := rec.Type.(fmt.Stringer); ok {
return prefix + stringer.String()
} else if star, ok := rec.Type.(*ast.StarExpr); ok {
if stringer, ok := star.X.(fmt.Stringer); ok {
return "(*" + prefix + stringer.String() + ")"
}
}
return ""
}