Go: cmd/go: unhelpful go cache error when running in container as non-root user

Created on 9 Jul 2018  ·  3Comments  ·  Source: golang/go

Please answer these questions before submitting your issue. Thanks!

What version of Go are you using (go version)?

go version go1.10.3 linux/amd64

Does this issue reproduce with the latest release?

yes

What operating system and processor architecture are you using (go env)?

GOOS="linux"
GOARCH="amd64"

What did you do?

Build any go program in a docker image as a user that doesn't exist in the image.
Although this sounds weird, it is specifically allowed in the docker run documentation

When passing a numeric ID, the user does not have to exist in the container.

Any CI server following the principle of least privilege would be configured to run their containers in this way.

Assuming docker is installed, the following command will recreate the issue

docker run -u $UID golang /bin/bash -c "cd /go/src/; mkdir hello; cd hello;
echo 'package main
import \"fmt\"
func main() {
    fmt.Println(\"hello world\")
}' > main.go; go run main.go"

More specifically, this is caused when $HOME is set to / which is what docker does in this situation.

What did you expect to see?

hello world

What did you see instead?

go: disabling cache (/.cache/go-build) due to initialization failure: mkdir /.cache: permission denied
hello world

Notes

This is effectively an iteration on https://github.com/golang/go/issues/23638. Disabling the cache is probably still the correct thing to do, but in this case, the current error message is unnecessary and more confusing than it is helpful. You can see that confusion in https://github.com/docker-library/golang/issues/225.

As I suggested in my comment on that issue, if go were to silently set GOCHACHE to "off" when $HOME=='/' then this confusion would be avoided. Go already does this when $HOME=='', so I'm just proposing to extend that behavior to one more edge case.

I'm happy to submit a PR that fixes this if you agree with the change.

FrozenDueToAge NeedsFix

Most helpful comment

Per the Go 1.11 release notes:

Starting in Go 1.12, the build cache will be required

I suspect that means that Docker users will need to set GOCACHE explicitly when running a build as a nonexistent user.

All 3 comments

I think it would be fine to disable the cache in that case.

Change https://golang.org/cl/122487 mentions this issue: cmd/go/internal/cache: disable cache when $HOME is /

Per the Go 1.11 release notes:

Starting in Go 1.12, the build cache will be required

I suspect that means that Docker users will need to set GOCACHE explicitly when running a build as a nonexistent user.

Was this page helpful?
0 / 5 - 0 ratings