-
Notifications
You must be signed in to change notification settings - Fork 17.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
runtime: program terminated with signal 7, bus error #32446
Comments
Looks like memory corruption. Is there any cgo or unsafe code in your program? Is there a way that we can run your program ourselves to try to reproduce the problem? Does this happen on more than one physical machine? |
Also, how hard would it be for you try the 1.12.5 release? |
I don't use cgo or unsafe package in my program. unexpected fault address 0x67f8e0
fatal error: fault
[signal SIGBUS: bus error code=0x2 addr=0x67f8e0 pc=0x67f8e0]
goroutine 83 [running]:
runtime.throw(0x9096e7, 0x5)
/usr/local/go/src/runtime/panic.go:608 +0x72 fp=0xc000505b98 sp=0xc000505b68 pc=0x42c5a2
runtime.sigpanic()
/usr/local/go/src/runtime/signal_unix.go:387 +0x2d7 fp=0xc000505be8 sp=0xc000505b98 pc=0x441127
github.com/cihub/seelog.(*rollTimeFileTailsSlice).Len(0xc000551b60, 0xc000551b60)
<autogenerated>:1 fp=0xc000505bf0 sp=0xc000505be8 pc=0x67f8e0
sort.Sort(0x987f80, 0xc000551b60)
/usr/local/go/src/sort/sort.go:217 +0x31 fp=0xc000505c30 sp=0xc000505bf0 pc=0x55ce31
github.com/cihub/seelog.(*rollingFileWriterTime).sortFileRollNamesAsc(0xc0001f5440, 0xc0003b0400, 0x1e, 0x20, 0x1, 0xc000505d68, 0xa, 0x20, 0x0)
/opt/applications/go/pkg/mod/github.com/cihub/seelog@v0.0.0-20180626064034-ea380b2c6fc6/writers_rollingfilewriter.go:739 +0xc8 fp=0xc000505cb0 sp=0xc000505c30 pc=0x678878
github.com/cihub/seelog.(*rollingFileWriter).getSortedLogHistory(0xc000274000, 0x0, 0x0, 0xa, 0xc000505e40, 0xa)
/opt/applications/go/pkg/mod/github.com/cihub/seelog@v0.0.0-20180626064034-ea380b2c6fc6/writers_rollingfilewriter.go:297 +0x129 fp=0xc000505e08 sp=0xc000505cb0 pc=0x675949
github.com/cihub/seelog.(*rollingFileWriter).roll(0xc000274000, 0x926001, 0xc000274080)
/opt/applications/go/pkg/mod/github.com/cihub/seelog@v0.0.0-20180626064034-ea380b2c6fc6/writers_rollingfilewriter.go:523 +0x7d fp=0xc000505ed8 sp=0xc000505e08 pc=0x6771fd
github.com/cihub/seelog.(*rollingFileWriter).Write(0xc000274000, 0xc000276000, 0x38d, 0x2710, 0x0, 0x0, 0x0)
/opt/applications/go/pkg/mod/github.com/cihub/seelog@v0.0.0-20180626064034-ea380b2c6fc6/writers_rollingfilewriter.go:561 +0x172 fp=0xc000505f28 sp=0xc000505ed8 pc=0x677752
bufio.(*Writer).Flush(0xc000206bc0, 0x926088, 0xc000212350)
/usr/local/go/src/bufio/bufio.go:575 +0x75 fp=0xc000505f88 sp=0xc000505f28 pc=0x4cff55
github.com/cihub/seelog.(*bufferedWriter).flushBuffer(0xc0001f5470)
/opt/applications/go/pkg/mod/github.com/cihub/seelog@v0.0.0-20180626064034-ea380b2c6fc6/writers_bufferedwriter.go:146 +0x6b fp=0xc000505fb0 sp=0xc000505f88 pc=0x67432b
github.com/cihub/seelog.(*bufferedWriter).flushPeriodically(0xc0001f5470)
/opt/applications/go/pkg/mod/github.com/cihub/seelog@v0.0.0-20180626064034-ea380b2c6fc6/writers_bufferedwriter.go:154 +0x60 fp=0xc000505fd8 sp=0xc000505fb0 pc=0x6743c0
runtime.goexit()
/usr/local/go/src/runtime/asm_amd64.s:1333 +0x1 fp=0xc000505fe0 sp=0xc000505fd8 pc=0x4589e1
created by github.com/cihub/seelog.NewBufferedWriter
/opt/applications/go/pkg/mod/github.com/cihub/seelog@v0.0.0-20180626064034-ea380b2c6fc6/writers_bufferedwriter.go:76 +0x16c Find the code type rollSizeFileTailsSlice []string
func (p rollSizeFileTailsSlice) Len() int {
return len(p) //there
}
func (rws *rollingFileWriterSize) sortFileRollNamesAsc(fs []string) ([]string, error) {
ss := rollSizeFileTailsSlice(fs)
sort.Sort(ss) //
return ss, nil
}
//sort.Sort
func Sort(data Interface) {
n := data.Len() //cored by there
quickSort(data, 0, n, maxDepth(n))
} I do not why it cause bus error. even if the parameter of fs is nil, it should cause segmentation fault. |
Hi @beibeiabeibei - It is possible that there is a race somewhere. Although, why does it give SIGBUS, I am not sure. Please build and run your program with the Also, please give us a complete code sample along with steps so that we can reproduce the issue ourselves. It is not possible for us to find the issue ourselves by just looking at a snippet. Lastly, as mentioned earlier, have you tried with the 1.12.5 release and faced the same crashes ? |
|
This has been in waiting for info for a couple years with no reproducer, so let's archive this. |
What version of Go are you using (
go version
)?Does this issue reproduce with the latest release?
I am not sure
What operating system and processor architecture are you using (
go env
)?go env
OutputWhat did you do?
server.go
freshtoken.go
Frequency of occurrence
Once a week to three weeks. And the program runs in K8S
What did you see instead?
sometimes the system generated the coredump file,use gdb show:
sometimes it threw error message :
The text was updated successfully, but these errors were encountered: