]> Cypherpunks.ru repositories - gostls13.git/blob - src/runtime/cgocall.go
[dev.link] all: merge branch 'master' into dev.link
[gostls13.git] / src / runtime / cgocall.go
1 // Copyright 2009 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.
4
5 // Cgo call and callback support.
6 //
7 // To call into the C function f from Go, the cgo-generated code calls
8 // runtime.cgocall(_cgo_Cfunc_f, frame), where _cgo_Cfunc_f is a
9 // gcc-compiled function written by cgo.
10 //
11 // runtime.cgocall (below) calls entersyscall so as not to block
12 // other goroutines or the garbage collector, and then calls
13 // runtime.asmcgocall(_cgo_Cfunc_f, frame).
14 //
15 // runtime.asmcgocall (in asm_$GOARCH.s) switches to the m->g0 stack
16 // (assumed to be an operating system-allocated stack, so safe to run
17 // gcc-compiled code on) and calls _cgo_Cfunc_f(frame).
18 //
19 // _cgo_Cfunc_f invokes the actual C function f with arguments
20 // taken from the frame structure, records the results in the frame,
21 // and returns to runtime.asmcgocall.
22 //
23 // After it regains control, runtime.asmcgocall switches back to the
24 // original g (m->curg)'s stack and returns to runtime.cgocall.
25 //
26 // After it regains control, runtime.cgocall calls exitsyscall, which blocks
27 // until this m can run Go code without violating the $GOMAXPROCS limit,
28 // and then unlocks g from m.
29 //
30 // The above description skipped over the possibility of the gcc-compiled
31 // function f calling back into Go. If that happens, we continue down
32 // the rabbit hole during the execution of f.
33 //
34 // To make it possible for gcc-compiled C code to call a Go function p.GoF,
35 // cgo writes a gcc-compiled function named GoF (not p.GoF, since gcc doesn't
36 // know about packages).  The gcc-compiled C function f calls GoF.
37 //
38 // GoF calls crosscall2(_cgoexp_GoF, frame, framesize).  Crosscall2
39 // (in cgo/gcc_$GOARCH.S, a gcc-compiled assembly file) is a two-argument
40 // adapter from the gcc function call ABI to the 6c function call ABI.
41 // It is called from gcc to call 6c functions. In this case it calls
42 // _cgoexp_GoF(frame, framesize), still running on m->g0's stack
43 // and outside the $GOMAXPROCS limit. Thus, this code cannot yet
44 // call arbitrary Go code directly and must be careful not to allocate
45 // memory or use up m->g0's stack.
46 //
47 // _cgoexp_GoF calls runtime.cgocallback(p.GoF, frame, framesize, ctxt).
48 // (The reason for having _cgoexp_GoF instead of writing a crosscall3
49 // to make this call directly is that _cgoexp_GoF, because it is compiled
50 // with 6c instead of gcc, can refer to dotted names like
51 // runtime.cgocallback and p.GoF.)
52 //
53 // runtime.cgocallback (in asm_$GOARCH.s) switches from m->g0's
54 // stack to the original g (m->curg)'s stack, on which it calls
55 // runtime.cgocallbackg(p.GoF, frame, framesize).
56 // As part of the stack switch, runtime.cgocallback saves the current
57 // SP as m->g0->sched.sp, so that any use of m->g0's stack during the
58 // execution of the callback will be done below the existing stack frames.
59 // Before overwriting m->g0->sched.sp, it pushes the old value on the
60 // m->g0 stack, so that it can be restored later.
61 //
62 // runtime.cgocallbackg (below) is now running on a real goroutine
63 // stack (not an m->g0 stack).  First it calls runtime.exitsyscall, which will
64 // block until the $GOMAXPROCS limit allows running this goroutine.
65 // Once exitsyscall has returned, it is safe to do things like call the memory
66 // allocator or invoke the Go callback function p.GoF.  runtime.cgocallbackg
67 // first defers a function to unwind m->g0.sched.sp, so that if p.GoF
68 // panics, m->g0.sched.sp will be restored to its old value: the m->g0 stack
69 // and the m->curg stack will be unwound in lock step.
70 // Then it calls p.GoF.  Finally it pops but does not execute the deferred
71 // function, calls runtime.entersyscall, and returns to runtime.cgocallback.
72 //
73 // After it regains control, runtime.cgocallback switches back to
74 // m->g0's stack (the pointer is still in m->g0.sched.sp), restores the old
75 // m->g0.sched.sp value from the stack, and returns to _cgoexp_GoF.
76 //
77 // _cgoexp_GoF immediately returns to crosscall2, which restores the
78 // callee-save registers for gcc and returns to GoF, which returns to f.
79
80 package runtime
81
82 import (
83         "runtime/internal/atomic"
84         "runtime/internal/sys"
85         "unsafe"
86 )
87
88 // Addresses collected in a cgo backtrace when crashing.
89 // Length must match arg.Max in x_cgo_callers in runtime/cgo/gcc_traceback.c.
90 type cgoCallers [32]uintptr
91
92 // Call from Go to C.
93 //
94 // This must be nosplit because it's used for syscalls on some
95 // platforms. Syscalls may have untyped arguments on the stack, so
96 // it's not safe to grow or scan the stack.
97 //
98 //go:nosplit
99 func cgocall(fn, arg unsafe.Pointer) int32 {
100         if !iscgo && GOOS != "solaris" && GOOS != "illumos" && GOOS != "windows" {
101                 throw("cgocall unavailable")
102         }
103
104         if fn == nil {
105                 throw("cgocall nil")
106         }
107
108         if raceenabled {
109                 racereleasemerge(unsafe.Pointer(&racecgosync))
110         }
111
112         mp := getg().m
113         mp.ncgocall++
114         mp.ncgo++
115
116         // Reset traceback.
117         mp.cgoCallers[0] = 0
118
119         // Announce we are entering a system call
120         // so that the scheduler knows to create another
121         // M to run goroutines while we are in the
122         // foreign code.
123         //
124         // The call to asmcgocall is guaranteed not to
125         // grow the stack and does not allocate memory,
126         // so it is safe to call while "in a system call", outside
127         // the $GOMAXPROCS accounting.
128         //
129         // fn may call back into Go code, in which case we'll exit the
130         // "system call", run the Go code (which may grow the stack),
131         // and then re-enter the "system call" reusing the PC and SP
132         // saved by entersyscall here.
133         entersyscall()
134
135         // Tell asynchronous preemption that we're entering external
136         // code. We do this after entersyscall because this may block
137         // and cause an async preemption to fail, but at this point a
138         // sync preemption will succeed (though this is not a matter
139         // of correctness).
140         osPreemptExtEnter(mp)
141
142         mp.incgo = true
143         errno := asmcgocall(fn, arg)
144
145         // Update accounting before exitsyscall because exitsyscall may
146         // reschedule us on to a different M.
147         mp.incgo = false
148         mp.ncgo--
149
150         osPreemptExtExit(mp)
151
152         exitsyscall()
153
154         // Note that raceacquire must be called only after exitsyscall has
155         // wired this M to a P.
156         if raceenabled {
157                 raceacquire(unsafe.Pointer(&racecgosync))
158         }
159
160         // From the garbage collector's perspective, time can move
161         // backwards in the sequence above. If there's a callback into
162         // Go code, GC will see this function at the call to
163         // asmcgocall. When the Go call later returns to C, the
164         // syscall PC/SP is rolled back and the GC sees this function
165         // back at the call to entersyscall. Normally, fn and arg
166         // would be live at entersyscall and dead at asmcgocall, so if
167         // time moved backwards, GC would see these arguments as dead
168         // and then live. Prevent these undead arguments from crashing
169         // GC by forcing them to stay live across this time warp.
170         KeepAlive(fn)
171         KeepAlive(arg)
172         KeepAlive(mp)
173
174         return errno
175 }
176
177 // Call from C back to Go.
178 //go:nosplit
179 func cgocallbackg(ctxt uintptr) {
180         gp := getg()
181         if gp != gp.m.curg {
182                 println("runtime: bad g in cgocallback")
183                 exit(2)
184         }
185
186         // The call from C is on gp.m's g0 stack, so we must ensure
187         // that we stay on that M. We have to do this before calling
188         // exitsyscall, since it would otherwise be free to move us to
189         // a different M. The call to unlockOSThread is in unwindm.
190         lockOSThread()
191
192         // Save current syscall parameters, so m.syscall can be
193         // used again if callback decide to make syscall.
194         syscall := gp.m.syscall
195
196         // entersyscall saves the caller's SP to allow the GC to trace the Go
197         // stack. However, since we're returning to an earlier stack frame and
198         // need to pair with the entersyscall() call made by cgocall, we must
199         // save syscall* and let reentersyscall restore them.
200         savedsp := unsafe.Pointer(gp.syscallsp)
201         savedpc := gp.syscallpc
202         exitsyscall() // coming out of cgo call
203         gp.m.incgo = false
204
205         osPreemptExtExit(gp.m)
206
207         cgocallbackg1(ctxt)
208
209         // At this point unlockOSThread has been called.
210         // The following code must not change to a different m.
211         // This is enforced by checking incgo in the schedule function.
212
213         osPreemptExtEnter(gp.m)
214
215         gp.m.incgo = true
216         // going back to cgo call
217         reentersyscall(savedpc, uintptr(savedsp))
218
219         gp.m.syscall = syscall
220 }
221
222 func cgocallbackg1(ctxt uintptr) {
223         gp := getg()
224         if gp.m.needextram || atomic.Load(&extraMWaiters) > 0 {
225                 gp.m.needextram = false
226                 systemstack(newextram)
227         }
228
229         if ctxt != 0 {
230                 s := append(gp.cgoCtxt, ctxt)
231
232                 // Now we need to set gp.cgoCtxt = s, but we could get
233                 // a SIGPROF signal while manipulating the slice, and
234                 // the SIGPROF handler could pick up gp.cgoCtxt while
235                 // tracing up the stack.  We need to ensure that the
236                 // handler always sees a valid slice, so set the
237                 // values in an order such that it always does.
238                 p := (*slice)(unsafe.Pointer(&gp.cgoCtxt))
239                 atomicstorep(unsafe.Pointer(&p.array), unsafe.Pointer(&s[0]))
240                 p.cap = cap(s)
241                 p.len = len(s)
242
243                 defer func(gp *g) {
244                         // Decrease the length of the slice by one, safely.
245                         p := (*slice)(unsafe.Pointer(&gp.cgoCtxt))
246                         p.len--
247                 }(gp)
248         }
249
250         if gp.m.ncgo == 0 {
251                 // The C call to Go came from a thread not currently running
252                 // any Go. In the case of -buildmode=c-archive or c-shared,
253                 // this call may be coming in before package initialization
254                 // is complete. Wait until it is.
255                 <-main_init_done
256         }
257
258         // Add entry to defer stack in case of panic.
259         restore := true
260         defer unwindm(&restore)
261
262         if raceenabled {
263                 raceacquire(unsafe.Pointer(&racecgosync))
264         }
265
266         type args struct {
267                 fn      *funcval
268                 arg     unsafe.Pointer
269                 argsize uintptr
270         }
271         var cb *args
272
273         // Location of callback arguments depends on stack frame layout
274         // and size of stack frame of cgocallback_gofunc.
275         sp := gp.m.g0.sched.sp
276         switch GOARCH {
277         default:
278                 throw("cgocallbackg is unimplemented on arch")
279         case "arm":
280                 // On arm, stack frame is two words and there's a saved LR between
281                 // SP and the stack frame and between the stack frame and the arguments.
282                 cb = (*args)(unsafe.Pointer(sp + 4*sys.PtrSize))
283         case "arm64":
284                 // On arm64, stack frame is four words and there's a saved LR between
285                 // SP and the stack frame and between the stack frame and the arguments.
286                 // Additional two words (16-byte alignment) are for saving FP.
287                 cb = (*args)(unsafe.Pointer(sp + 7*sys.PtrSize))
288         case "amd64":
289                 // On amd64, stack frame is two words, plus caller PC and BP.
290                 cb = (*args)(unsafe.Pointer(sp + 4*sys.PtrSize))
291         case "386":
292                 // On 386, stack frame is three words, plus caller PC.
293                 cb = (*args)(unsafe.Pointer(sp + 4*sys.PtrSize))
294         case "ppc64", "ppc64le", "s390x":
295                 // On ppc64 and s390x, the callback arguments are in the arguments area of
296                 // cgocallback's stack frame. The stack looks like this:
297                 // +--------------------+------------------------------+
298                 // |                    | ...                          |
299                 // | cgoexp_$fn         +------------------------------+
300                 // |                    | fixed frame area             |
301                 // +--------------------+------------------------------+
302                 // |                    | arguments area               |
303                 // | cgocallback        +------------------------------+ <- sp + 2*minFrameSize + 2*ptrSize
304                 // |                    | fixed frame area             |
305                 // +--------------------+------------------------------+ <- sp + minFrameSize + 2*ptrSize
306                 // |                    | local variables (2 pointers) |
307                 // | cgocallback_gofunc +------------------------------+ <- sp + minFrameSize
308                 // |                    | fixed frame area             |
309                 // +--------------------+------------------------------+ <- sp
310                 cb = (*args)(unsafe.Pointer(sp + 2*sys.MinFrameSize + 2*sys.PtrSize))
311         case "mips64", "mips64le":
312                 // On mips64x, stack frame is two words and there's a saved LR between
313                 // SP and the stack frame and between the stack frame and the arguments.
314                 cb = (*args)(unsafe.Pointer(sp + 4*sys.PtrSize))
315         case "mips", "mipsle":
316                 // On mipsx, stack frame is two words and there's a saved LR between
317                 // SP and the stack frame and between the stack frame and the arguments.
318                 cb = (*args)(unsafe.Pointer(sp + 4*sys.PtrSize))
319         }
320
321         // Invoke callback.
322         // NOTE(rsc): passing nil for argtype means that the copying of the
323         // results back into cb.arg happens without any corresponding write barriers.
324         // For cgo, cb.arg points into a C stack frame and therefore doesn't
325         // hold any pointers that the GC can find anyway - the write barrier
326         // would be a no-op.
327         reflectcall(nil, unsafe.Pointer(cb.fn), cb.arg, uint32(cb.argsize), 0)
328
329         if raceenabled {
330                 racereleasemerge(unsafe.Pointer(&racecgosync))
331         }
332         if msanenabled {
333                 // Tell msan that we wrote to the entire argument block.
334                 // This tells msan that we set the results.
335                 // Since we have already called the function it doesn't
336                 // matter that we are writing to the non-result parameters.
337                 msanwrite(cb.arg, cb.argsize)
338         }
339
340         // Do not unwind m->g0->sched.sp.
341         // Our caller, cgocallback, will do that.
342         restore = false
343 }
344
345 func unwindm(restore *bool) {
346         if *restore {
347                 // Restore sp saved by cgocallback during
348                 // unwind of g's stack (see comment at top of file).
349                 mp := acquirem()
350                 sched := &mp.g0.sched
351                 switch GOARCH {
352                 default:
353                         throw("unwindm not implemented")
354                 case "386", "amd64", "arm", "ppc64", "ppc64le", "mips64", "mips64le", "s390x", "mips", "mipsle":
355                         sched.sp = *(*uintptr)(unsafe.Pointer(sched.sp + sys.MinFrameSize))
356                 case "arm64":
357                         sched.sp = *(*uintptr)(unsafe.Pointer(sched.sp + 16))
358                 }
359
360                 // Do the accounting that cgocall will not have a chance to do
361                 // during an unwind.
362                 //
363                 // In the case where a Go call originates from C, ncgo is 0
364                 // and there is no matching cgocall to end.
365                 if mp.ncgo > 0 {
366                         mp.incgo = false
367                         mp.ncgo--
368                         osPreemptExtExit(mp)
369                 }
370
371                 releasem(mp)
372         }
373
374         // Undo the call to lockOSThread in cgocallbackg.
375         // We must still stay on the same m.
376         unlockOSThread()
377 }
378
379 // called from assembly
380 func badcgocallback() {
381         throw("misaligned stack in cgocallback")
382 }
383
384 // called from (incomplete) assembly
385 func cgounimpl() {
386         throw("cgo not implemented")
387 }
388
389 var racecgosync uint64 // represents possible synchronization in C code
390
391 // Pointer checking for cgo code.
392
393 // We want to detect all cases where a program that does not use
394 // unsafe makes a cgo call passing a Go pointer to memory that
395 // contains a Go pointer. Here a Go pointer is defined as a pointer
396 // to memory allocated by the Go runtime. Programs that use unsafe
397 // can evade this restriction easily, so we don't try to catch them.
398 // The cgo program will rewrite all possibly bad pointer arguments to
399 // call cgoCheckPointer, where we can catch cases of a Go pointer
400 // pointing to a Go pointer.
401
402 // Complicating matters, taking the address of a slice or array
403 // element permits the C program to access all elements of the slice
404 // or array. In that case we will see a pointer to a single element,
405 // but we need to check the entire data structure.
406
407 // The cgoCheckPointer call takes additional arguments indicating that
408 // it was called on an address expression. An additional argument of
409 // true means that it only needs to check a single element. An
410 // additional argument of a slice or array means that it needs to
411 // check the entire slice/array, but nothing else. Otherwise, the
412 // pointer could be anything, and we check the entire heap object,
413 // which is conservative but safe.
414
415 // When and if we implement a moving garbage collector,
416 // cgoCheckPointer will pin the pointer for the duration of the cgo
417 // call.  (This is necessary but not sufficient; the cgo program will
418 // also have to change to pin Go pointers that cannot point to Go
419 // pointers.)
420
421 // cgoCheckPointer checks if the argument contains a Go pointer that
422 // points to a Go pointer, and panics if it does.
423 func cgoCheckPointer(ptr interface{}, arg interface{}) {
424         if debug.cgocheck == 0 {
425                 return
426         }
427
428         ep := efaceOf(&ptr)
429         t := ep._type
430
431         top := true
432         if arg != nil && (t.kind&kindMask == kindPtr || t.kind&kindMask == kindUnsafePointer) {
433                 p := ep.data
434                 if t.kind&kindDirectIface == 0 {
435                         p = *(*unsafe.Pointer)(p)
436                 }
437                 if p == nil || !cgoIsGoPointer(p) {
438                         return
439                 }
440                 aep := efaceOf(&arg)
441                 switch aep._type.kind & kindMask {
442                 case kindBool:
443                         if t.kind&kindMask == kindUnsafePointer {
444                                 // We don't know the type of the element.
445                                 break
446                         }
447                         pt := (*ptrtype)(unsafe.Pointer(t))
448                         cgoCheckArg(pt.elem, p, true, false, cgoCheckPointerFail)
449                         return
450                 case kindSlice:
451                         // Check the slice rather than the pointer.
452                         ep = aep
453                         t = ep._type
454                 case kindArray:
455                         // Check the array rather than the pointer.
456                         // Pass top as false since we have a pointer
457                         // to the array.
458                         ep = aep
459                         t = ep._type
460                         top = false
461                 default:
462                         throw("can't happen")
463                 }
464         }
465
466         cgoCheckArg(t, ep.data, t.kind&kindDirectIface == 0, top, cgoCheckPointerFail)
467 }
468
469 const cgoCheckPointerFail = "cgo argument has Go pointer to Go pointer"
470 const cgoResultFail = "cgo result has Go pointer"
471
472 // cgoCheckArg is the real work of cgoCheckPointer. The argument p
473 // is either a pointer to the value (of type t), or the value itself,
474 // depending on indir. The top parameter is whether we are at the top
475 // level, where Go pointers are allowed.
476 func cgoCheckArg(t *_type, p unsafe.Pointer, indir, top bool, msg string) {
477         if t.ptrdata == 0 || p == nil {
478                 // If the type has no pointers there is nothing to do.
479                 return
480         }
481
482         switch t.kind & kindMask {
483         default:
484                 throw("can't happen")
485         case kindArray:
486                 at := (*arraytype)(unsafe.Pointer(t))
487                 if !indir {
488                         if at.len != 1 {
489                                 throw("can't happen")
490                         }
491                         cgoCheckArg(at.elem, p, at.elem.kind&kindDirectIface == 0, top, msg)
492                         return
493                 }
494                 for i := uintptr(0); i < at.len; i++ {
495                         cgoCheckArg(at.elem, p, true, top, msg)
496                         p = add(p, at.elem.size)
497                 }
498         case kindChan, kindMap:
499                 // These types contain internal pointers that will
500                 // always be allocated in the Go heap. It's never OK
501                 // to pass them to C.
502                 panic(errorString(msg))
503         case kindFunc:
504                 if indir {
505                         p = *(*unsafe.Pointer)(p)
506                 }
507                 if !cgoIsGoPointer(p) {
508                         return
509                 }
510                 panic(errorString(msg))
511         case kindInterface:
512                 it := *(**_type)(p)
513                 if it == nil {
514                         return
515                 }
516                 // A type known at compile time is OK since it's
517                 // constant. A type not known at compile time will be
518                 // in the heap and will not be OK.
519                 if inheap(uintptr(unsafe.Pointer(it))) {
520                         panic(errorString(msg))
521                 }
522                 p = *(*unsafe.Pointer)(add(p, sys.PtrSize))
523                 if !cgoIsGoPointer(p) {
524                         return
525                 }
526                 if !top {
527                         panic(errorString(msg))
528                 }
529                 cgoCheckArg(it, p, it.kind&kindDirectIface == 0, false, msg)
530         case kindSlice:
531                 st := (*slicetype)(unsafe.Pointer(t))
532                 s := (*slice)(p)
533                 p = s.array
534                 if p == nil || !cgoIsGoPointer(p) {
535                         return
536                 }
537                 if !top {
538                         panic(errorString(msg))
539                 }
540                 if st.elem.ptrdata == 0 {
541                         return
542                 }
543                 for i := 0; i < s.cap; i++ {
544                         cgoCheckArg(st.elem, p, true, false, msg)
545                         p = add(p, st.elem.size)
546                 }
547         case kindString:
548                 ss := (*stringStruct)(p)
549                 if !cgoIsGoPointer(ss.str) {
550                         return
551                 }
552                 if !top {
553                         panic(errorString(msg))
554                 }
555         case kindStruct:
556                 st := (*structtype)(unsafe.Pointer(t))
557                 if !indir {
558                         if len(st.fields) != 1 {
559                                 throw("can't happen")
560                         }
561                         cgoCheckArg(st.fields[0].typ, p, st.fields[0].typ.kind&kindDirectIface == 0, top, msg)
562                         return
563                 }
564                 for _, f := range st.fields {
565                         if f.typ.ptrdata == 0 {
566                                 continue
567                         }
568                         cgoCheckArg(f.typ, add(p, f.offset()), true, top, msg)
569                 }
570         case kindPtr, kindUnsafePointer:
571                 if indir {
572                         p = *(*unsafe.Pointer)(p)
573                         if p == nil {
574                                 return
575                         }
576                 }
577
578                 if !cgoIsGoPointer(p) {
579                         return
580                 }
581                 if !top {
582                         panic(errorString(msg))
583                 }
584
585                 cgoCheckUnknownPointer(p, msg)
586         }
587 }
588
589 // cgoCheckUnknownPointer is called for an arbitrary pointer into Go
590 // memory. It checks whether that Go memory contains any other
591 // pointer into Go memory. If it does, we panic.
592 // The return values are unused but useful to see in panic tracebacks.
593 func cgoCheckUnknownPointer(p unsafe.Pointer, msg string) (base, i uintptr) {
594         if inheap(uintptr(p)) {
595                 b, span, _ := findObject(uintptr(p), 0, 0)
596                 base = b
597                 if base == 0 {
598                         return
599                 }
600                 hbits := heapBitsForAddr(base)
601                 n := span.elemsize
602                 for i = uintptr(0); i < n; i += sys.PtrSize {
603                         if !hbits.morePointers() {
604                                 // No more possible pointers.
605                                 break
606                         }
607                         if hbits.isPointer() && cgoIsGoPointer(*(*unsafe.Pointer)(unsafe.Pointer(base + i))) {
608                                 panic(errorString(msg))
609                         }
610                         hbits = hbits.next()
611                 }
612
613                 return
614         }
615
616         for _, datap := range activeModules() {
617                 if cgoInRange(p, datap.data, datap.edata) || cgoInRange(p, datap.bss, datap.ebss) {
618                         // We have no way to know the size of the object.
619                         // We have to assume that it might contain a pointer.
620                         panic(errorString(msg))
621                 }
622                 // In the text or noptr sections, we know that the
623                 // pointer does not point to a Go pointer.
624         }
625
626         return
627 }
628
629 // cgoIsGoPointer reports whether the pointer is a Go pointer--a
630 // pointer to Go memory. We only care about Go memory that might
631 // contain pointers.
632 //go:nosplit
633 //go:nowritebarrierrec
634 func cgoIsGoPointer(p unsafe.Pointer) bool {
635         if p == nil {
636                 return false
637         }
638
639         if inHeapOrStack(uintptr(p)) {
640                 return true
641         }
642
643         for _, datap := range activeModules() {
644                 if cgoInRange(p, datap.data, datap.edata) || cgoInRange(p, datap.bss, datap.ebss) {
645                         return true
646                 }
647         }
648
649         return false
650 }
651
652 // cgoInRange reports whether p is between start and end.
653 //go:nosplit
654 //go:nowritebarrierrec
655 func cgoInRange(p unsafe.Pointer, start, end uintptr) bool {
656         return start <= uintptr(p) && uintptr(p) < end
657 }
658
659 // cgoCheckResult is called to check the result parameter of an
660 // exported Go function. It panics if the result is or contains a Go
661 // pointer.
662 func cgoCheckResult(val interface{}) {
663         if debug.cgocheck == 0 {
664                 return
665         }
666
667         ep := efaceOf(&val)
668         t := ep._type
669         cgoCheckArg(t, ep.data, t.kind&kindDirectIface == 0, false, cgoResultFail)
670 }