[1/7] Preprocessor cleanup
[official-gcc.git] / libgo / go / runtime / cgocheck.go
blobd896fb7d79dcf3838761795fe27778e472e6b013
1 // Copyright 2015 The Go Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style
3 // license that can be found in the LICENSE file.
5 // Code to check that pointer writes follow the cgo rules.
6 // These functions are invoked via the write barrier when debug.cgocheck > 1.
8 package runtime
10 import (
11 "runtime/internal/sys"
12 "unsafe"
15 const cgoWriteBarrierFail = "Go pointer stored into non-Go memory"
17 // cgoCheckWriteBarrier is called whenever a pointer is stored into memory.
18 // It throws if the program is storing a Go pointer into non-Go memory.
20 // This is called from the write barrier, so its entire call tree must
21 // be nosplit.
23 //go:nosplit
24 //go:nowritebarrier
25 func cgoCheckWriteBarrier(dst *uintptr, src uintptr) {
26 if !cgoIsGoPointer(unsafe.Pointer(src)) {
27 return
29 if cgoIsGoPointer(unsafe.Pointer(dst)) {
30 return
33 // If we are running on the system stack then dst might be an
34 // address on the stack, which is OK.
35 g := getg()
36 if g == g.m.g0 || g == g.m.gsignal {
37 return
40 // Allocating memory can write to various mfixalloc structs
41 // that look like they are non-Go memory.
42 if g.m.mallocing != 0 {
43 return
46 systemstack(func() {
47 println("write of Go pointer", hex(src), "to non-Go memory", hex(uintptr(unsafe.Pointer(dst))))
48 throw(cgoWriteBarrierFail)
52 // cgoCheckMemmove is called when moving a block of memory.
53 // dst and src point off bytes into the value to copy.
54 // size is the number of bytes to copy.
55 // It throws if the program is copying a block that contains a Go pointer
56 // into non-Go memory.
57 //go:nosplit
58 //go:nowritebarrier
59 func cgoCheckMemmove(typ *_type, dst, src unsafe.Pointer, off, size uintptr) {
60 if typ.kind&kindNoPointers != 0 {
61 return
63 if !cgoIsGoPointer(src) {
64 return
66 if cgoIsGoPointer(dst) {
67 return
69 cgoCheckTypedBlock(typ, src, off, size)
72 // cgoCheckSliceCopy is called when copying n elements of a slice from
73 // src to dst. typ is the element type of the slice.
74 // It throws if the program is copying slice elements that contain Go pointers
75 // into non-Go memory.
76 //go:nosplit
77 //go:nowritebarrier
78 func cgoCheckSliceCopy(typ *_type, dst, src slice, n int) {
79 if typ.kind&kindNoPointers != 0 {
80 return
82 if !cgoIsGoPointer(src.array) {
83 return
85 if cgoIsGoPointer(dst.array) {
86 return
88 p := src.array
89 for i := 0; i < n; i++ {
90 cgoCheckTypedBlock(typ, p, 0, typ.size)
91 p = add(p, typ.size)
95 // cgoCheckTypedBlock checks the block of memory at src, for up to size bytes,
96 // and throws if it finds a Go pointer. The type of the memory is typ,
97 // and src is off bytes into that type.
98 //go:nosplit
99 //go:nowritebarrier
100 func cgoCheckTypedBlock(typ *_type, src unsafe.Pointer, off, size uintptr) {
101 // Anything past typ.ptrdata is not a pointer.
102 if typ.ptrdata <= off {
103 return
105 if ptrdataSize := typ.ptrdata - off; size > ptrdataSize {
106 size = ptrdataSize
109 if typ.kind&kindGCProg == 0 {
110 cgoCheckBits(src, typ.gcdata, off, size)
111 return
114 // The type has a GC program. Try to find GC bits somewhere else.
115 roots := gcRoots
116 for roots != nil {
117 for i := 0; i < roots.count; i++ {
118 pr := roots.roots[i]
119 addr := uintptr(pr.decl)
120 if cgoInRange(src, addr, addr+pr.size) {
121 doff := uintptr(src) - addr
122 cgoCheckBits(add(src, -doff), pr.gcdata, off+doff, size)
123 return
126 roots = roots.next
129 s := spanOfUnchecked(uintptr(src))
130 if s.state == _MSpanManual {
131 // There are no heap bits for value stored on the stack.
132 // For a channel receive src might be on the stack of some
133 // other goroutine, so we can't unwind the stack even if
134 // we wanted to.
135 // We can't expand the GC program without extra storage
136 // space we can't easily get.
137 // Fortunately we have the type information.
138 systemstack(func() {
139 cgoCheckUsingType(typ, src, off, size)
141 return
144 // src must be in the regular heap.
146 hbits := heapBitsForAddr(uintptr(src))
147 for i := uintptr(0); i < off+size; i += sys.PtrSize {
148 bits := hbits.bits()
149 if i >= off && bits&bitPointer != 0 {
150 v := *(*unsafe.Pointer)(add(src, i))
151 if cgoIsGoPointer(v) {
152 throw(cgoWriteBarrierFail)
155 hbits = hbits.next()
159 // cgoCheckBits checks the block of memory at src, for up to size
160 // bytes, and throws if it finds a Go pointer. The gcbits mark each
161 // pointer value. The src pointer is off bytes into the gcbits.
162 //go:nosplit
163 //go:nowritebarrier
164 func cgoCheckBits(src unsafe.Pointer, gcbits *byte, off, size uintptr) {
165 skipMask := off / sys.PtrSize / 8
166 skipBytes := skipMask * sys.PtrSize * 8
167 ptrmask := addb(gcbits, skipMask)
168 src = add(src, skipBytes)
169 off -= skipBytes
170 size += off
171 var bits uint32
172 for i := uintptr(0); i < size; i += sys.PtrSize {
173 if i&(sys.PtrSize*8-1) == 0 {
174 bits = uint32(*ptrmask)
175 ptrmask = addb(ptrmask, 1)
176 } else {
177 bits >>= 1
179 if off > 0 {
180 off -= sys.PtrSize
181 } else {
182 if bits&1 != 0 {
183 v := *(*unsafe.Pointer)(add(src, i))
184 if cgoIsGoPointer(v) {
185 throw(cgoWriteBarrierFail)
192 // cgoCheckUsingType is like cgoCheckTypedBlock, but is a last ditch
193 // fall back to look for pointers in src using the type information.
194 // We only use this when looking at a value on the stack when the type
195 // uses a GC program, because otherwise it's more efficient to use the
196 // GC bits. This is called on the system stack.
197 //go:nowritebarrier
198 //go:systemstack
199 func cgoCheckUsingType(typ *_type, src unsafe.Pointer, off, size uintptr) {
200 if typ.kind&kindNoPointers != 0 {
201 return
204 // Anything past typ.ptrdata is not a pointer.
205 if typ.ptrdata <= off {
206 return
208 if ptrdataSize := typ.ptrdata - off; size > ptrdataSize {
209 size = ptrdataSize
212 if typ.kind&kindGCProg == 0 {
213 cgoCheckBits(src, typ.gcdata, off, size)
214 return
216 switch typ.kind & kindMask {
217 default:
218 throw("can't happen")
219 case kindArray:
220 at := (*arraytype)(unsafe.Pointer(typ))
221 for i := uintptr(0); i < at.len; i++ {
222 if off < at.elem.size {
223 cgoCheckUsingType(at.elem, src, off, size)
225 src = add(src, at.elem.size)
226 skipped := off
227 if skipped > at.elem.size {
228 skipped = at.elem.size
230 checked := at.elem.size - skipped
231 off -= skipped
232 if size <= checked {
233 return
235 size -= checked
237 case kindStruct:
238 st := (*structtype)(unsafe.Pointer(typ))
239 for _, f := range st.fields {
240 if off < f.typ.size {
241 cgoCheckUsingType(f.typ, src, off, size)
243 src = add(src, f.typ.size)
244 skipped := off
245 if skipped > f.typ.size {
246 skipped = f.typ.size
248 checked := f.typ.size - skipped
249 off -= skipped
250 if size <= checked {
251 return
253 size -= checked