summaryrefslogtreecommitdiffhomepage
path: root/tools/checklinkname/known.go
blob: 54e5155fc88abd58b3ca082a813efc533b2cc1e4 (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
// Copyright 2021 The gVisor Authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//     http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

package checklinkname

// knownLinknames is the set of the symbols for which we can do a rudimentary
// type-check on.
//
// When analyzing the remote package (e.g., runtime), we verify the symbol
// signature matches 'remote'. When analyzing local packages with //go:linkname
// directives, we verify the symbol signature matches 'local'.
//
// Usually these are identical, but may differ slightly if equivalent
// replacement types are used in the local packages, such as a copy of a struct
// or uintptr instead of a pointer type.
//
// NOTE: It is the responsibility of the developer to verify the safety of the
// signatures used here! This analyzer only checks that types match this map;
// it does not verify compatibility of the entries themselves.
//
// //go:linkname directives with no corresponding entry here will trigger a
// finding.
//
// We preform only rudimentary string-based type-checking due to limitations in
// the analysis framework. Ideally, from the local package we'd lookup the
// remote symbol's types.Object and perform robust type-checking.
// Unfortunately, remote symbols are typically loaded from the remote package's
// gcexportdata. Since //go:linkname targets are usually not exported symbols,
// they are no included in gcexportdata and we cannot load their types.Object.
//
// TODO(b/165820485): Add option to specific per-version signatures.
var knownLinknames = map[string]map[string]linknameSignatures{
	"runtime": map[string]linknameSignatures{
		"entersyscall": linknameSignatures{
			local: "func()",
		},
		"entersyscallblock": linknameSignatures{
			local: "func()",
		},
		"exitsyscall": linknameSignatures{
			local: "func()",
		},
		"fastrand": linknameSignatures{
			local: "func() uint32",
		},
		"gopark": linknameSignatures{
			// TODO(b/165820485): add verification of waitReason
			// size and reason and traceEv values.
			local:  "func(unlockf func(uintptr, unsafe.Pointer) bool, lock unsafe.Pointer, reason uint8, traceEv byte, traceskip int)",
			remote: "func(unlockf func(*runtime.g, unsafe.Pointer) bool, lock unsafe.Pointer, reason runtime.waitReason, traceEv byte, traceskip int)",
		},
		"goready": linknameSignatures{
			local:  "func(gp uintptr, traceskip int)",
			remote: "func(gp *runtime.g, traceskip int)",
		},
		"goyield": linknameSignatures{
			local: "func()",
		},
		"memmove": linknameSignatures{
			local: "func(to unsafe.Pointer, from unsafe.Pointer, n uintptr)",
		},
		"throw": linknameSignatures{
			local: "func(s string)",
		},
	},
	"sync": map[string]linknameSignatures{
		"runtime_canSpin": linknameSignatures{
			local: "func(i int) bool",
		},
		"runtime_doSpin": linknameSignatures{
			local: "func()",
		},
		"runtime_Semacquire": linknameSignatures{
			// The only difference here is the parameter names. We
			// can't just change our local use to match remote, as
			// the stdlib runtime and sync packages also disagree
			// on the name, and the analyzer checks that use as
			// well.
			local:  "func(addr *uint32)",
			remote: "func(s *uint32)",
		},
		"runtime_Semrelease": linknameSignatures{
			// See above.
			local:  "func(addr *uint32, handoff bool, skipframes int)",
			remote: "func(s *uint32, handoff bool, skipframes int)",
		},
	},
	"syscall": map[string]linknameSignatures{
		"runtime_BeforeFork": linknameSignatures{
			local: "func()",
		},
		"runtime_AfterFork": linknameSignatures{
			local: "func()",
		},
		"runtime_AfterForkInChild": linknameSignatures{
			local: "func()",
		},
	},
}