Goroutines在cgo和go的不同堆栈中运行:
C对Go的调用约定或可增长的堆栈一无所知,因此对C代码的调用必须记录goroutine堆栈的所有详细信息,切换到C堆栈,并运行不知道如何执行的C代码它被调用,或者由较大的Go运行时负责程序。
是否有可能为它们之间共享的变量或类型触发数据竞争?
最近,在初始化切片时出现错误:
package controlcan
import "C"
cReceive := make([]C.struct__CAN_OBJ, 2500)
或
package main
import "controlcan"
pReceive := make([]controlcan.CanObj, 2500)
他们俩都随机抱怨“意外故障地址”错误:
unexpected fault address 0xffffffffffffffff
fatal error: fault
[signal 0xc0000005 code=0x0 addr=0xffffffffffffffff pc=0x41c65d]
goroutine 41 [running]:
runtime.throw(0xcc969a, 0x5)
/usr/local/go/src/runtime/panic.go:619 +0x88 fp=0xc0428ffb38 sp=0xc0428ffb18 pc=0x42d0b8
runtime.sigpanic()
/usr/local/go/src/runtime/signal_windows.go:170 +0x13a fp=0xc0428ffb68 sp=0xc0428ffb38 pc=0x43fcca
runtime.gcMarkRootPrepare()
/usr/local/go/src/runtime/mgcmark.go:72 +0x5d fp=0xc0428ffb70 sp=0xc0428ffb68 pc=0x41c65d
runtime.gcStart(0x0, 0x1, 0x0, 0x0)
/usr/local/go/src/runtime/mgc.go:1350 +0x30f fp=0xc0428ffba0 sp=0xc0428ffb70 pc=0x419b6f
runtime.mallocgc(0x10000, 0xc54660, 0xc0422ee001, 0xc0423ded60)
/usr/local/go/src/runtime/malloc.go:803 +0x448 fp=0xc0428ffc40 sp=0xc0428ffba0 pc=0x411c48
runtime.makeslice(0xc54660, 0x9c4, 0x9c4, 0xc04202ce00, 0xc04202c000, 0x411b23)
/usr/local/go/src/runtime/slice.go:61 +0x7e fp=0xc0428ffc70 sp=0xc0428ffc40 pc=0x43fffe
controlcan.Receive(0x4, 0x0, 0x0, 0xc04267e000, 0x9c4, 0x9c4, 0x64, 0x0, 0x0, 0x0)
/media/sf_GOPATH0/src/controlcan/controlcan.go:262 +0x75 fp=0xc0428ffd70 sp=0xc0428ffc70 pc=0xa0d795
posam/protocol/usbcan.(*Channel).receive(0xc04229d490)
/media/sf_GOPATH0/src/posam/protocol/usbcan/usbcan.go:469 +0x536 fp=0xc0428fffd8 sp=0xc0428ffd70 pc=0xa10926
runtime.goexit()
/usr/local/go/src/runtime/asm_amd64.s:2361 +0x1 fp=0xc0428fffe0 sp=0xc0428fffd8 pc=0x457531
created by posam/protocol/usbcan.(*Channel).Start
/media/sf_GOPATH0/src/posam/protocol/usbcan/usbcan.go:242 +0x3aa
更新
controlcan
是一个包装程序包,它将.dll
或.so
库中定义的函数封装到Golang友好的函数中,例如,向CAN设备发送消息或从CAN设备接收消息。 IMO,在controlcan
包和其他导入它的包中进行切片初始化语句的数据竞赛真的很奇怪。
在Receive
函数中,第一行声明了一个名为cReceive
的切片,如上所述,我随机得到了错误。我认为unexpected fault address
的原因是数据竞争而不是内存损坏,但是这里所需的资源只是类型C.struct__VCI_CAN_OBJ
,而不是任何变量。我希望我错了。
更糟糕的是,在CanObj
之类的其他软件包中使用的类型usbcan.go
仍然可能触发该错误,例如pReceive
的语句。以前,我怀疑原因可能是2500
的常量,因为原始语句是cReceive := make([]C.struct__VCI_CAN_OBJ, FRAME_LENGTH_OF_RECEPTION)
。但是,当我直接将其更改为2500
时,该错误仍然相同。
controlcan.go
package controlcan
import "C"
import (
"fmt"
"runtime"
"unsafe"
)
const (
FRAME_LENGTH_OF_RECEPTION = 2500
)
type CanObj struct { // <- accessable for other packages/goroutines
ID int
TimeStamp int
TimeFlag int
SendType byte
RemoteFlag byte
ExternFlag byte
DataLen byte
Data [8]byte
Reserved [3]byte
}
func Receive(
devType int,
devIndex int,
canIndex int,
pReceive []CanObj,
waitTime int,
) (count int, err error) {
cReceive := make([]C.struct__VCI_CAN_OBJ, 2500) // unexpected fault address
cCount := C.VCI_Receive(
C.uint(devType),
C.uint(devIndex),
C.uint(canIndex),
(*C.struct__VCI_CAN_OBJ)(unsafe.Pointer(&cReceive)),
C.uint(FRAME_LENGTH_OF_RECEPTION),
C.int(waitTime),
)
// ...
}
usbcan.go
package usbcan
import "controlcan"
func (c *Channel) receive() {
ticker := time.NewTicker(100 * time.Millisecond)
defer ticker.Stop()
for _ = range ticker.C {
pReceive := make([]controlcan.CanObj, 2500) // unexpected fault address
count, err := controlcan.Receive(
c.DevType,
c.DevIndex,
c.CanIndex,
pReceive,
100,
)
// ...
更新2:
我将cReceive
的创建从Go移到Cgo,从Kenny Grant盗取,并且解决了cReceive
行的make-slice错误。
package controlcan
// static VCI_CAN_OBJ** makeCanObjArray(){
// return calloc(sizeof(VCI_CAN_OBJ*), 2500);
// }
// static void freeCanObjArray(VCI_CAN_OBJ **canObjArray){
// int i;
// for (i=0; i<2500;i++)
// free(canObjArray[i]);
// free(canObjArray);
// }
import "C"
func Receive(
devType int,
devIndex int,
canIndex int,
pReceive []CanObj,
waitTime int,
) (count int, err error) {
cReceive := C.makeCanObjArray()
defer C.freeCanObjArray(cReceive)
// ...
我仍然不知道创建pReceive
时会发生什么:
pReceive := make([]controlcan.CanObj, 2500)
unexpected fault address 0xffffffffffffffff
fatal error: fault
[signal 0xc0000005 code=0x0 addr=0xffffffffffffffff pc=0x41c65d]
goroutine 28 [running]:
runtime.throw(0xcc969a, 0x5)
/usr/local/go/src/runtime/panic.go:619 +0x88 fp=0xc04275bc38 sp=0xc04275bc18 pc=0x42d0b8
runtime.sigpanic()
/usr/local/go/src/runtime/signal_windows.go:170 +0x13a fp=0xc04275bc68 sp=0xc04275bc38 pc=0x43fcca
runtime.gcMarkRootPrepare()
/usr/local/go/src/runtime/mgcmark.go:72 +0x5d fp=0xc04275bc70 sp=0xc04275bc68 pc=0x41c65d
runtime.gcStart(0x0, 0x1, 0x0, 0x0)
/usr/local/go/src/runtime/mgc.go:1350 +0x30f fp=0xc04275bca0 sp=0xc04275bc70 pc=0x419b6f
runtime.mallocgc(0x1a000, 0xc54520, 0x1, 0xa10101)
/usr/local/go/src/runtime/malloc.go:803 +0x448 fp=0xc04275bd40 sp=0xc04275bca0 pc=0x411c48
runtime.makeslice(0xc54520, 0x9c4, 0x9c4, 0xc0420162a0, 0x8, 0x8)
/usr/local/go/src/runtime/slice.go:61 +0x7e fp=0xc04275bd70 sp=0xc04275bd40 pc=0x43fffe
posam/protocol/usbcan.(*Channel).receive(0xc04213fdc0)
/media/sf_GOPATH0/src/posam/protocol/usbcan/usbcan.go:464 +0x4f0 fp=0xc04275bfd8 sp=0xc04275bd70 pc=0xa108e0
runtime.goexit()
/usr/local/go/src/runtime/asm_amd64.s:2361 +0x1 fp=0xc04275bfe0 sp=0xc04275bfd8 pc=0x457531
created by posam/protocol/usbcan.(*Channel).Start
/media/sf_GOPATH0/src/posam/protocol/usbcan/usbcan.go:242 +0x3aa