Skip to content
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

cmd/ld, runtime: all ELF go binaries contain two symbols called 'runtime.main.f' #9934

Closed
mwhudson opened this issue Feb 19, 2015 · 2 comments

Comments

@mwhudson
Copy link
Contributor

On Linux:

mwhudson@narsil:go-test-cases$ cat trivial.go
package main

func main() {

}
mwhudson@narsil:go-test-cases$ go build trivial.go
mwhudson@narsil:go-test-cases$ nm trivial | grep -F runtime.main.f
0000000000470e90 R runtime.main.f
0000000000470e98 R runtime.main.f

This is because the linker normalizes middle dots to periods. The source of the two symbols:

  1. The runtime package defines a variable called runtime·main·f (in asm_$GOARCH.s)
  2. As with all functions, the compiler creates a symbol called "".main·f to support indirect calls to runtime.main, which is read by the linker as runtime.main·f

This doesn't really cause problems today because the collision happens so late in the writing process, when you're executing an elf binary nothing really cares about the symbol names. It's a problem when you want to do dynamic linking stuff though, because the symbol names start mattering again.

It feels like these two symbols are actually meant to be the same, but I don't know how to make that happen. The simplest fix would be to make the names different enough to not collide in the symbol table.

mwhudson added a commit to mwhudson/go that referenced this issue Mar 29, 2015
runtime·main·f is normalized by the linker to runtime.main.f, as is
the compiler-generated symbol runtime.main·f.  Change the former to
runtime·mainPC instead.

Fixes issue golang#9934

Change-Id: I656a6fa6422d45385fa2cc55bd036c6affa1abfe
ianlancetaylor pushed a commit that referenced this issue Mar 30, 2015
runtime·main·f is normalized by the linker to runtime.main.f, as is
the compiler-generated symbol runtime.main·f.  Change the former to
runtime·mainPC instead.

Fixes issue #9934

Change-Id: I656a6fa6422d45385fa2cc55bd036c6affa1abfe
Reviewed-on: https://go-review.googlesource.com/8234
Run-TryBot: Ian Lance Taylor <iant@golang.org>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Ian Lance Taylor <iant@golang.org>
@rsc
Copy link
Contributor

rsc commented Apr 10, 2015

I don't understand why f78dc1d didn't close this.

@rsc rsc closed this as completed Apr 10, 2015
@josharian
Copy link
Contributor

For the record, f78dc1d didn't close this because it said "Fixes issue #9934" instead of "Fixes #9934".

@golang golang locked and limited conversation to collaborators Jun 25, 2016
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

No branches or pull requests

4 participants