-
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
cmd/link: regression since 1.22 arm7 binary fails to start on 4.19.163 kernel with could not verify signature of ./main
#72866
Comments
Reported by |
Works if the target hardware is running kernel |
Surprisingly this works if built with CGO:
|
could not verify signature of ./main
`could not verify signature of ./main
4.19.163 is an ancient kernel, I am not sure it really makes sense to try to pursue a fix for something that old. Also, the change in question is fixing an important bug. I am not sure why this particular elderly kernel would object to the new way of doing things, but the old way was definitely broken -- putting the ".shstrtab" section in a loadable segment (as we were doing before the CL) is non-standard and is not the way C compilers generate ELF files. |
@thanm #67001 recently moved the go1.24 baseline to Note: I'm being devil's advocate here. |
Do we know if this bug is general to any 4.19 kernel, or some custom change this vendor made to their kernels? I checked out a copy of the 4.19 kernel source and can't find the string "could not verify signature" at all. (Though admittedly I didn't look very hard). I'm at a bit of a loss what signature it would be verifying in the first place? Linux binaries aren't signed. |
Hi, im icsharp. First of all, i can't not say im sure they did no changes to the kernel... Is there any way i could make more tests or something like that? Something specific i could ask? |
I'd ask them what the verification is, and whether they can test Go binaries themselves. I tested a Debian Buster image from https://cdimage.debian.org/images/cloud/, which also uses a 4.19 kernel, and Go 1.24 binaries ran just fine. Though this was on amd64, not arm. |
@HESS-BEA To the best of my knowledge that error message must be coming from a non-standard authentication module of some sort, probably via Linux-PAM. Look at /etc/pam.conf and /etc/pam.d. It's very unlikely that this is a part of the Linux kernel proper. I would guess that this is some sort of authentication installed by whoever built the router software. If you can find the PAM module that is requiring the signature, then perhaps you can find out what will satisfy it. @Jorropo Are you able to recreate the problem, or are you passing on data from Discord? Either way, if it works with |
Passing data from discord.
This is cross compiled in a default go docker so producing any signature seems unlikely.
|
Go version
go version go1.24.0 linux/amd64
Output of
go env
in your module/workspace:What did you do?
Source:
Build command:
GOARCH=arm GOARM=7 GOOS=linux go build main.go
Built in Docker official image golang1.24:
Linux linux 6.8.0-55-generic #57-Ubuntu SMP PREEMPT_DYNAMIC Wed Feb 12 23:42:21 UTC 2025 x86_64 GNU/Linux
What did you see happen?
Running in NetModule linux image:
Linux 0000-002 4.19.163 #1 SMP Fri Nov 10 10:54:34 UTC 2023 armv7l GNU/Linux
Running on Hardware:
NB2810 - https://www.netmodule.com/de/produkte/router/nb2810-2lwac-g
Exec
dmesg
What did you expect to see?
The text was updated successfully, but these errors were encountered: