-
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: unexpected fault address 0xffffffff (windows/386) #12415
Comments
Have you tried to build your binaries natively on windows?
Could you reproduce this crash with simpler examples?
(by simpler, I mean something that at least doesn't use
unsafe or cgo.)
|
@minux I'm writing a simpler test case now, I'll update here once that's done. I haven't compiled on |
Possibly an alignment issue with the linker? The failing instruction is reading a 16-byte value that needs to be at 16-byte alignment. |
@randall77 I'm cross-compiling using Do you have a fix or a workaround in mind ? This has become hard to debug on my side, a colleague of mine gave me an identical copy of his virtual machine (where the binary crashed) but when running the same binaries inside the now imported (but identical) VM it doesn't crash ... (So it's not even repeatable across VMs). |
If you can run:
Look at the alignment of this symbol. If it is not 16-byte aligned, that would be the problem. |
@randall77 Here's my output:
So indeed, it doesn't seem to be 16-byte aligned and it's
How can I change my build process to ensure that |
Well, at least we know what is wrong. It sounds like a genuine bug in the linker and/or our input to the linker. Are you using external linking? It sounds like it. Maybe we need an additional notation in our compiled output to convince the external linker to align sections correctly. ccing people with more linking knowledge. |
gcc would be producing executable. Go linker produces object file. But maybe if we mark .text section with IMAGE_SCN_ALIGN_16BYTES, just maybe gcc will keep appropriate address aligned too. I don't know of a way to align a particular symbol in object file. We'll need some test to reproduce this. Alex |
I remember seeing problem like this while developing external linking for
Windows, i will take a look. Perhaps the real problem is just masked and
not fixed.
|
Yes, the problem is because the text section is only aligned to 4 bytes,
but data and bss are 32-byte aligned.
And mask, being defined in assembly, is included in the text section, even
though it's declared DATA.
|
Please give CL 14166 a try and see if it solves the problem.
|
@minux Thanks, giving it a try now, I'll report back shortly. |
@minux That seems to work 👍
I think you've found the root of the problem, so unless there's anything you need on my behalf I think we can close this issue :) |
How you tried the new binary on the old VM where old binary uses to crash?
I want to verify that it's indeed the correct fix. Thanks!
|
It's late here in Europe but I'll try it on my colleague's VM first thing tomorrow morning and I'll report back here. Thanks for your help ! |
CL https://golang.org/cl/14166 mentions this issue. |
@minux Just wanted to confirm with you that it does indeed fix the issue. The new binary built with your patch works while the older one built with Thanks for your help and work on Go 👍 |
Thanks for the confirmation, I will see if this patch could
get into Go 1.5.1.
|
CL https://golang.org/cl/14207 mentions this issue. |
CL https://golang.org/cl/14279 mentions this issue. |
… linking Some symbols, for example, masks requires 16-byte alignment, and they are placed in the text section. Before this change, the text section is only aligned to 4-byte, and it's making masks unaligned. Fixes #12415. Change-Id: I7767778d1b4f7d3e74c2719a02848350782a4160 Reviewed-on: https://go-review.googlesource.com/14166 Run-TryBot: Minux Ma <minux@golang.org> Reviewed-by: Alex Brainman <alex.brainman@gmail.com> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Ian Lance Taylor <iant@golang.org> (cherry picked from commit 821e124) Reviewed-on: https://go-review.googlesource.com/14279
We need a runtime check because the original issue is encountered when running cross compiled windows program from linux. It's better to give a meaningful crash message earlier than to segfault later. The added test should not impose any measurable overhead to Go programs. For #12415. Change-Id: Ib4a24ef560c09c0585b351d62eefd157b6b7f04c Reviewed-on: https://go-review.googlesource.com/14207 Reviewed-by: Keith Randall <khr@golang.org> Run-TryBot: Minux Ma <minux@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org>
Here's my setup:
1.5
linux
towindows/386
libgit2
-lwinhttp -lws2_32 -lcrypt32 -lole32 -lrpcrt4 -ladvapi32
Windows 10 x64
When running this program on some
Windows 10 x64
machines, this fails with the following error below (it does not fail on all machines but fails consistently and repeatedly on those where it does):Any ideas of what could be the cause of this ? Are there any known fixes or workarounds ?
I appreciate any insight you may have, thanks !
The text was updated successfully, but these errors were encountered: