aboutsummaryrefslogtreecommitdiffstats
path: root/capturedrefrace.go
blob: afb104cb32c61608ac37f29e5507fbc298b0765c (plain)
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
// Copyright (c) 2023  Teddy Wing
//
// This file is part of Gocapturedrefrace.
//
// Gocapturedrefrace is free software: you can redistribute it and/or
// modify it under the terms of the GNU General Public License as
// published by the Free Software Foundation, either version 3 of the
// License, or (at your option) any later version.
//
// Gocapturedrefrace is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with Gocapturedrefrace. If not, see
// <https://www.gnu.org/licenses/>.

// Package capturedrefrace defines an Analyzer that checks for captured
// references in goroutine closures.
//
// # Analyzer capturedrefrace
//
// capturedrefrace: report captured variable references in goroutine
// closures.
//
// Goroutines that run function closures can capture reference variables from
// outer scopes which could lead to data races. This analyzer checks closures
// run by goroutines and reports uses of all variables declared in outer
// scopes, as well as arguments to the closure with a pointer type.
//
// For example:
//
//	func (r *Record) CapturedReference() {
//		capturedReference := 0
//		spline := &Spline{Curvature: 5.0}
//
//		go func(s *Spline) {
//			capturedReference += 1 // closure captures the variable
//				// 'capturedReference' in a goroutine, which could
//				// lead to data races
//
//			if capturedReference > 0 {
//				r.reticulateSplines() // goroutine closure captures 'r'
//			}
//
//			s.Curvature = 3.0 // 's' is a pointer type which could
//				// lead to data races
//		}(spline)
//	}
package capturedrefrace

import (
	"fmt"
	"go/ast"
	"go/token"
	"go/types"

	"golang.org/x/tools/go/analysis"
	"golang.org/x/tools/go/analysis/passes/inspect"
	"golang.org/x/tools/go/ast/inspector"
)

var Analyzer = &analysis.Analyzer{
	Name:     "capturedrefrace",
	Doc:      "reports captured references in goroutine closures",
	Run:      run,
	Requires: []*analysis.Analyzer{inspect.Analyzer},
}

func run(pass *analysis.Pass) (interface{}, error) {
	inspect := pass.ResultOf[inspect.Analyzer].(*inspector.Inspector)

	nodeFilter := []ast.Node{
		(*ast.GoStmt)(nil),
	}

	inspect.Preorder(
		nodeFilter,
		func(node ast.Node) {
			// Find `go` statements.
			goStmt, ok := node.(*ast.GoStmt)
			if !ok {
				return
			}

			fmt.Printf("func: %#v\n", goStmt.Call.Fun)
			funcIdent, ok := goStmt.Call.Fun.(*ast.Ident)
			if ok {
				fmt.Printf("funcobj: %#v\n", funcIdent.Obj)
				t := pass.TypesInfo.Types[funcIdent]
				fmt.Printf("functype-fromtypesinfo: %#v\n", t)
				fmt.Printf("funcdecl: %#v\n", funcIdent.Obj.Decl)
				obj := pass.TypesInfo.Uses[funcIdent]
				fmt.Printf("funcobj-fromtypesinfo: %#v\n", obj)
				fmt.Printf("funcobj-fromtypesinfo-type: %#v\n", obj.Type())
			}

			// Look for a function literal after the `go` statement.
			funcLit, ok := goStmt.Call.Fun.(*ast.FuncLit)
			if !ok {
				return
			}

			// Inspect closure argument list.
			for _, arg := range funcLit.Type.Params.List {
				// Report reference arguments.
				_, ok := arg.Type.(*ast.StarExpr)
				if !ok {
					continue
				}

				pass.Reportf(
					arg.Pos(),
					"reference %s in goroutine closure",
					arg.Names[0],
				)
			}

			checkClosure(pass, funcLit)
		},
	)

	return nil, nil
}

// checkClosure reports variables used in funcLit that are captured from an
// outer scope.
func checkClosure(pass *analysis.Pass, funcLit *ast.FuncLit) {
	// Get the closure's scope.
	funcScope := pass.TypesInfo.Scopes[funcLit.Type]

	// Build a list of assignments local to funcLit. These will be ignored as
	// shadowed variables.
	localVarDeclarations := findLocalVarDeclarations(funcLit)

	ast.Inspect(
		funcLit,
		func(node ast.Node) bool {
			ident, ok := node.(*ast.Ident)
			if !ok {
				return true
			}

			if ident.Obj == nil {
				return true
			}

			// Ignore shadowed variables.
			for _, declarationIdent := range localVarDeclarations {
				if ident == declarationIdent {
					return true
				}
			}

			// Find out whether `ident` was defined in an outer scope.
			scope, scopeObj := funcScope.LookupParent(ident.Name, ident.NamePos)

			// Identifier is local to the closure.
			if scope == nil && scopeObj == nil {
				return true
			}

			// Ignore non-variable identifiers.
			variable, ok := scopeObj.(*types.Var)
			if !ok {
				return true
			}

			// Ignore captured callable variables, like function arguments.
			_, isVariableTypeSignature := variable.Type().(*types.Signature)
			if isVariableTypeSignature {
				return true
			}

			// Identifier was defined in a different scope.
			if funcScope != scope {
				pass.Reportf(
					ident.Pos(),
					"captured reference %s in goroutine closure",
					ident,
				)
			}

			return true
		},
	)
}

// findLocalVarDeclarations returns a list of all variable declarations in
// funcLit.
func findLocalVarDeclarations(
	funcLit *ast.FuncLit,
) (declarations []*ast.Ident) {
	declarations = []*ast.Ident{}

	ast.Inspect(
		funcLit,
		func(node ast.Node) bool {
			switch node := node.(type) {
			case *ast.AssignStmt:
				assignments := assignmentDefinitions(node)
				declarations = append(declarations, assignments...)

			case *ast.GenDecl:
				decls := varDeclarations(node)
				if decls != nil {
					declarations = append(declarations, decls...)
				}
			}

			return true
		},
	)

	return declarations
}

// assignmentDefinitions returns the identifiers corresponding to variable
// assignments in assignStmt, or nil if assignStmt does not declare any
// variables.
func assignmentDefinitions(
	assignStmt *ast.AssignStmt,
) (assignments []*ast.Ident) {
	assignments = []*ast.Ident{}

	if assignStmt.Tok != token.DEFINE {
		return nil
	}

	for _, lhs := range assignStmt.Lhs {
		ident, ok := lhs.(*ast.Ident)
		if !ok {
			continue
		}

		if ident == nil {
			continue
		}

		assignments = append(assignments, ident)
	}

	return assignments
}

// varDeclarations returns the identifiers corresponding to variable
// declarations in decl, or nil if decl is not a variable declaration.
func varDeclarations(decl *ast.GenDecl) (declarations []*ast.Ident) {
	if decl.Tok != token.VAR {
		return nil
	}

	declarations = []*ast.Ident{}

	for _, spec := range decl.Specs {
		valueSpec, ok := spec.(*ast.ValueSpec)
		if !ok {
			return declarations
		}

		for _, ident := range valueSpec.Names {
			declarations = append(declarations, ident)
		}
	}

	return declarations
}