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
325
326
|
// TODO: doc
package defererr
import (
"bytes"
"fmt"
"go/ast"
"go/printer"
"go/token"
"go/types"
"golang.org/x/tools/go/analysis"
)
var Analyzer = &analysis.Analyzer{
Name: "defererr",
Doc: "reports issues returning errors from defer",
Run: run,
}
func run(pass *analysis.Pass) (interface{}, error) {
// TODO: Find defer closure
// Does it set error defined in outer scope?
// Does outer scope declare error variable in signature?
// Is err variable returned after closure?
for _, file := range pass.Files {
checkFunctions(pass, file)
}
return nil, nil
}
type functionState struct {
firstErrorDeferEndPos token.Pos
}
func newFunctionState() *functionState {
return &functionState{
firstErrorDeferEndPos: -1,
}
}
func (s *functionState) setFirstErrorDeferEndPos(pos token.Pos) {
if s.firstErrorDeferEndPos != -1 {
return
}
s.firstErrorDeferEndPos = pos
}
func (s *functionState) isfirstErrorDeferEndPosSet() bool {
return s.firstErrorDeferEndPos == -1
}
func checkFunctions(pass *analysis.Pass, node ast.Node) {
ast.Inspect(
node,
func(node ast.Node) bool {
funcDecl, ok := node.(*ast.FuncDecl)
if !ok {
return true
}
var buf bytes.Buffer
err := printer.Fprint(&buf, pass.Fset, funcDecl)
if err != nil {
panic(err)
}
fmt.Println(buf.String())
if funcDecl.Type.Results == nil {
return true
}
funcReturnsError := false
errorReturnIndex := -1
for i, returnVal := range funcDecl.Type.Results.List {
fmt.Printf("returnVal Type: %#v\n", returnVal.Type)
returnIdent, ok := returnVal.Type.(*ast.Ident)
if !ok {
return true
}
if returnIdent.Name == "error" {
funcReturnsError = true
errorReturnIndex = i
}
}
// Can we do the same for non-error types?
// for _, returnVal := range funcType.Results.List {
// }
if !funcReturnsError || errorReturnIndex == -1 {
return true
}
if len(funcDecl.Type.Results.List[errorReturnIndex].Names) > 0 {
fmt.Printf("return error var name: %#v\n", funcDecl.Type.Results.List[errorReturnIndex].Names[0])
}
errorReturnField := funcDecl.Type.Results.List[errorReturnIndex]
// Idea: Set this to the end token.Pos of the first `defer`
// closure. Look for `return`s after that in funcDecl.Body and
// ensure they include the error variable.
// firstErrorDeferEndPos := -1
fState := newFunctionState()
// Is it possible to generalise this to other types, and look for
// anything set in `defer` with the same type as a result in the
// return signature?
// TODO: Move to checkDeferFunc()
// Should we make this an ast.Visitor to store some state for `return` checking?
ast.Inspect(
funcDecl.Body,
func(node ast.Node) bool {
// fmt.Printf("node: %#v\n", node)
deferStmt, ok := node.(*ast.DeferStmt)
if !ok {
return true
}
fmt.Printf("defer: %#v\n", deferStmt)
// TODO: Find out if defer uses assigns an error variable without declaring it
funcLit, ok := deferStmt.Call.Fun.(*ast.FuncLit)
if !ok {
return true
}
// TODO: funcall
checkErrorAssignedInDefer(pass, funcLit, errorReturnField, fState)
return true
},
)
fmt.Printf("fState: %#v\n", fState)
if fState.isfirstErrorDeferEndPosSet() {
return true
}
ast.Inspect(
funcDecl.Body,
func(node ast.Node) bool {
returnStmt, ok := node.(*ast.ReturnStmt)
if !ok {
return true
}
if returnStmt.Pos() <= fState.firstErrorDeferEndPos {
return true
}
// TODO: Check whether returnStmt uses error variable.
fmt.Printf("returnStmt: %#v\n", returnStmt)
if returnStmt.Results == nil {
return true
}
fmt.Printf("returnStmt.Results: %#v\n", returnStmt.Results)
for _, expr := range returnStmt.Results {
fmt.Printf("returnStmt expr: %#v\n", expr)
}
// TODO: Get returnStmt.Results[error index from function result signature]
// If not variable and name not [error variable name from defer], report diagnostic
return true
},
)
fmt.Println()
return true
},
)
}
// TODO: doc
func checkErrorAssignedInDefer(
pass *analysis.Pass,
deferFuncLit *ast.FuncLit,
errorReturnField *ast.Field,
fState *functionState,
) {
ast.Inspect(
deferFuncLit.Body,
func(node ast.Node) bool {
assignStmt, ok := node.(*ast.AssignStmt)
if !ok {
return true
}
if assignStmt.Tok == token.DEFINE {
return true
}
fmt.Printf("assignStmt: %#v\n", assignStmt)
// TODO: Get type of Lhs, check if "error"
// If "error", then ensure error return is declared in signature
deferAssignsError := false
for _, variable := range assignStmt.Lhs {
ident, ok := variable.(*ast.Ident)
if !ok {
continue
}
// TODO: Figure out why doesDeclareErrInSignature doesn't
// continue past here.
fmt.Printf("variable: %#v\n", ident)
fmt.Printf("variable.obj: %#v\n", ident.Obj)
fmt.Printf("variable.obj.type: %#v\n", ident.Obj.Type)
fmt.Printf("variable.obj.decl: %#v\n", ident.Obj.Decl)
obj := pass.TypesInfo.Defs[ident]
fmt.Printf("obj: %#v\n", obj)
if ident.Obj.Decl == nil {
continue
}
var variableDecl ast.Node = ident.Obj.Decl.(ast.Node)
// variableDecl, ok := ident.Obj.Decl.(*ast.DeclStmt)
// if !ok {
// fmt.Println("NOK")
// continue
// }
fmt.Printf("variable.obj.valuespec: %#v\n", variableDecl)
fmt.Printf("variable.obj.valuespec.type: %#v\n", variableDecl)
t := pass.TypesInfo.Types[variable]
fmt.Printf("type: %#v\n", t)
fmt.Printf("type.type: %#v\n", t.Type)
named, ok := t.Type.(*types.Named)
if !ok {
continue
}
fmt.Printf("type.type.obj: %#v\n", named.Obj())
fmt.Printf("type.type.obj: %#v\n", named.Obj().Name())
// TODO: Was error lhs declared in defer closure? Then it
// should be ignored.
if isVariableDeclaredInsideDeferClosure(deferFuncLit, variableDecl) {
continue
}
if named.Obj().Name() == "error" {
deferAssignsError = true
isErrorNameInReturnSignature := false
for _, errorReturnIdent := range errorReturnField.Names {
if ident.Name == errorReturnIdent.Name {
// Report if no matches
isErrorNameInReturnSignature = true
}
}
// Maybe don't report the error if it was declared in the closure using a GenDecl? -> We already don't. Should test for these things.
if !isErrorNameInReturnSignature {
pass.Reportf(
errorReturnField.Pos(),
"return signature should be '(err error)'", // TODO: Use name from ident.Name
// errorReturnField,
)
break
}
// TODO: Check `return`s in rest of function to find out whether this error name is included
}
}
if !deferAssignsError {
return true
}
fState.setFirstErrorDeferEndPos(deferFuncLit.Body.Rbrace)
// TODO: Check that funcDecl declares error in signature (check before ast.Inspect on function body, report here)
// isErrorNameInReturnSignature := false
//
// for _, errorReturnIdent := range errorReturnField.Names {
// if ident.Name == errorReturnIdent.Name {
// // Report if no matches
// isErrorNameInReturnSignature = true
// }
// }
//
// if !isErrorNameInReturnSignature {
// pass.Reportf(
// errorReturnField.Pos(),
// "return signature should be '(err error)' (TODO)",
// errorReturnField,
// )
// }
return true
},
)
}
// TODO: doc
func isVariableDeclaredInsideDeferClosure(
deferFuncLit *ast.FuncLit,
variableDecl ast.Node,
) bool {
return deferFuncLit.Body.Lbrace < variableDecl.Pos() &&
variableDecl.Pos() < deferFuncLit.Body.Rbrace
}
|