-
Notifications
You must be signed in to change notification settings - Fork 17.7k
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/go: define HTTP authentication extension mechanism #26232
Comments
The original vgo prototype just read $HOME/.netrc. I'd rather do something like that than shell out to a whole separate program. |
.netrc works for HTTP basic auth with unlimited lifetime credentials. But it doesn't work for other types, like:
|
Note that even "access denied" pages can have meta tags - go get does not require a 200 response, exactly for this kind of thing. So git.mycompany.com could serve the tags unauthenticated as one workaround. Are there any more general "HTTP auth credential helpers" in the world besides git-credential-helper? How do other systems deal with this? If there's something standard to hook into (like .netrc) then that's better than designing our own. |
If the access denied page contains the meta tag, it can be used as a prober. Let's say git.mycompany.com has an not-yet announced new product, collaborating with another company other-tech-company.com, and they host a Git repository at git.mycompany.com/ng-product/collab-other-tech-company. An attacker can probe if a repository exists by looking at the go-get's meta tag, and they can learn mycompany.com will have a business relationship other-tech-company.com to create a new product (and maybe benefit from this insider info). As far as I know, there's no generic mechanism that majority of people use for storing and obtaining credentials through API. The closest thing I can think of is ssh-agent. Or if it's OS X, OS X Keychain. |
It's only a prober if you check that the thing exists before serving the meta-tag.
|
Clearly we could use a better idea here but I'd like to have just one thing that's standard instead of inventing our own (that is, I want something like .netrc). |
I cannot interpret this. The problem is that an attacker can use this to extract the repository existence by using this meta-tag. If the page checks if the repository exists and change the response, it can be used as a prober. |
Then don't check, and don't change the response. |
https://docs.docker.com/engine/reference/commandline/login/#credentials-store https://github.com/GoogleCloudPlatform/docker-credential-gcr |
So the page should not do any auth, and should not contain meta tag? I thought you're suggesting to add a meta tag and in the next response you're saying not to add meta tag? |
An example leakage: https://play.golang.org/p/rCYzVWQSQni We want to avoid this. By adding a meta-tag to the response as rsc suggests, the repository existence is leaked. |
@draftcode, I assumed what was meant as you should advertise it for all URLs, including /android/device/g000gle/foo-bar-not-exist , regardless of whether it actually exists. |
Note that the third part in meta tag should be a git repository URL. This means, if a repository exists, the third part should be a valid Git repository path. In the example, I used |
An example that for this: https://play.golang.org/p/OWb6zRUD02r |
@draftcode I am saying that if you pick a trivial rule like "example.com/x/y/z/w redirects to the repo at git.example.com/x/y", then you can implement it with no Auth check and no repo validity check, so that it responds to any possible x/y/z/w with the same answer. Then there is no leakage. That was the point of my curl example above: there is no actual package at rsc.io/asdgihopajdfklgadfglhifsdfj but the curl still reads back meta tags for it. If you need example.com/x/y/z/w to redirect to different git servers based on the exact values of x,y,z,w then that's more difficult of course and leakage is hard to avoid. This is all just a suggested workaround. What I'd really like is to find out about some plausibly general (not git-specific, not docker-specific) semi-standard way to interact with credential helpers. Maybe none exists and we have to come up with something. But that would be my last choice. |
OK. We've considered that option when we investigated how GitHub deals with this, and found out that GitHub won't allow slashes in a repository name, so they can do what you've said. We cannot do that, so filed this bug.
So far, I've shown what Git does for a similar problem. @bradfitz showed what Docker and GCP does for a similar problem (ADC now works only for service accounts, so it's a bit different). If there's a some standard way to get a cred, considering the size of these tools' community, there should be some implementation of that, but it seems there's no such thing. In fact, Docker created a credential helper mechanism following what Git did. From these, such standard, if exists, is something that Git and Docker communities at least are not aware of and are not using. @rsc, @bradfitz, and I are also not aware of such generic way that would be called as "semi-standard", it seems. |
Given that there doesn't seem to be an agreed-upon standard, I guess the next step is for someone to propose a design that Go should use. I looked at git credential helpers but stopped looking when I saw bash snippets. |
Questions on the requirements:
|
He objected to bash snippets. It is possible (I do not know) that executing a binary rather than a shell might sit better with him. If it were indeed command execution (a la |
Command-line execution seems necessary, since you want to lock things down and give cmd/go access to just one password, not your whole password set. Josh, what did you have in mind? Want to propose a starting point design? |
It would be great if we could achieve the stated above goal ("Make Assuming the server returns a meta tag such as
I believe this would make possible to use git with the SSH auth without having everyone to add the I think it is an incredible strength of the Go tool that you can install and use it "right out of the box" - would love to see that feature and stellar user experience preserved and extended! 😄 [1] https://go-review.googlesource.com/c/go/+/33171 (abandoned; issue https://golang.org/issue/17898) |
@dmitris This proposal is for the servers that cannot return meta tags without an auth (see #26232 (comment)). It seems to me that your problem is not related to this. |
This moves the interception code ito package cmd/go/internal/web/intercept so that it can also be used by cmd/go/internal/auth. For #26232 Change-Id: Id8148fca56f48adaf98ddd09a62657c08f890441 Reviewed-on: https://go-review.googlesource.com/c/go/+/625036 Reviewed-by: Sam Thanawalla <[email protected]> LUCI-TryBot-Result: Go LUCI <[email protected]>
This CL adds support for git as a valid GOAUTH command. Improves on implementation in cmd/auth/gitauth/gitauth.go This follows the proposed design in https://golang.org/issues/26232#issuecomment-461525141 For #26232 Cq-Include-Trybots: luci.golang.try:gotip-linux-amd64-longtest,gotip-windows-amd64-longtest Change-Id: I07810d9dc895d59e5db4bfa50cd42cb909208f93 Reviewed-on: https://go-review.googlesource.com/c/go/+/605275 Reviewed-by: Damien Neil <[email protected]> LUCI-TryBot-Result: Go LUCI <[email protected]> Reviewed-by: Michael Matloob <[email protected]> Reviewed-by: Alan Donovan <[email protected]>
go.dev/cl/605275 is submitted. This adds support for the built in git method as specified in #26232 (comment) I'm hoping to finish the user provided authentication protocol before the Go 1.24 Release freeze on Nov 21st. In the meantime, feel free to play around with this at tip and let me know if there are any issues. Cheers |
This CL adds support for a custom authenticator as a valid GOAUTH command. This follows the specification in https://go.dev/issue/26232#issuecomment-461525141 For #26232 Cq-Include-Trybots: luci.golang.try:gotip-linux-amd64-longtest,gotip-windows-amd64-longtest Change-Id: Id1d4b309f11eb9c7ce14793021a9d8caf3b192ff Reviewed-on: https://go-review.googlesource.com/c/go/+/605298 Auto-Submit: Sam Thanawalla <[email protected]> Reviewed-by: Michael Matloob <[email protected]> LUCI-TryBot-Result: Go LUCI <[email protected]>
Update: we finished the user provided authentication protocol in time for the 1.24 freeze. Running
Things left to do:
|
Shouldn't it be comma-separated, like other environment vars like |
I agree that ideally it would have made sense to keep that format but an argument passed to the command could contain commas so we decided on semi-colons. |
Will these changes that hopefully will be in 1.24 allow for private subgroups to be pulled properly? https://docs.gitlab.com/ee/user/project/use_project_as_go_package.html#authenticate-git-requests-to-private-subgroups I would hope that |
@skunkworker the accepted proposal:
I don't think there's any real changes for GitLab. You still have to set up credentials before you make a request, as GitLab's current implementation will never respond to a go-import request with 4xx. If one of the GOAUTH commands includes credentials for GitLab in the initial invocation then it should work but IIUC that already works if you add credentials to .netrc before you make a request. |
Adding release-blocker to track updating Go 1.24 release notes. |
Interesting, I will have to check and see if this works with certificate based authentication for gitlab, username&password based authentication would not be allowable due to policy. |
@skunkworker As I understand it, if you add |
There's a separate issue #30119 for cmd/go mTLS, though it may be possible to extend the current auth mechanism for it (perhaps using |
I don't think certificates will work over HTTP. What would need to happen for SSH certs is Go would have to try cloning |
The RC is planned for next week, and we need a full draft of the release notes before then. Please prioritize writing the release notes for this. Thanks! |
Change https://go.dev/cl/634235 mentions this issue: |
For: golang/go#26232 For: golang/go#68545 Change-Id: If5081ffdd69f4c62055180ed80f30b97c3c2126c Reviewed-on: https://go-review.googlesource.com/c/website/+/634235 Auto-Submit: Sam Thanawalla <[email protected]> LUCI-TryBot-Result: Go LUCI <[email protected]> Reviewed-by: Michael Matloob <[email protected]>
Change https://go.dev/cl/635255 mentions this issue: |
For #26232 Cq-Include-Trybots: luci.golang.try:gotip-linux-amd64-longtest,gotip-windows-amd64-longtest Change-Id: I4b6eb63d4c1d71983e1ae764a6a38744a5f01317 Reviewed-on: https://go-review.googlesource.com/c/go/+/635255 Auto-Submit: Sam Thanawalla <[email protected]> LUCI-TryBot-Result: Go LUCI <[email protected]> Reviewed-by: Michael Matloob <[email protected]>
Change https://go.dev/cl/635340 mentions this issue: |
For: golang/go#26232 For: golang/go#68545 Change-Id: I31fe54bee06a574dfce9335ac65f5d5b98fef756 Reviewed-on: https://go-review.googlesource.com/c/website/+/635340 Reviewed-by: Dmitri Shuralyov <[email protected]> Reviewed-by: Ian Lance Taylor <[email protected]> LUCI-TryBot-Result: Go LUCI <[email protected]> Auto-Submit: Ian Lance Taylor <[email protected]>
The work related to the original issue is completed. I will close this issue. Let's continue the discussion around mTLS authentication in #30119 and create new issues/proposals for any additional feature requests that would require approval :) Additionally I have created #70872 to cleanup the old reference implementation. Thanks |
NOTE: The accepted proposal is #26232 (comment).
Problem
The custom import path mechanism (
?go-get=1
and meta tag) works for public URLs, but it doesn't work for auth required URLs. This is because when go-get fetches the URL with?go-get=1
, it uses net/http.DefaultClient, and it doesn't know the credentials it needs to access the URL. A user cannot rungo get
against private source code hosting service because of this.Goal
Make
go get git.mycompany.com/private-repo
work, where https://git.mycompany.com/private-repo requires authentication.Idea 1 (credential helper)
Introduce a credential helper mechanism like git-credential-helpers. A user specifies a path to a binary via
GOGET_CREDENTIAL_HELPER
andgo get
executes that with the import path as an argument. The credential helper binary returns HTTP headers (like "Authorization: Basic blah\n", andgo get
adds these headers when it tries to fetchgo-get=1
URLs.Idea 2 (go-get helper)
Introduce a custom source code fetching mechanism. When
go get
needs to fetch the source code for the import pathgit.mycompany.com/private-repo
, it looks for the binarygo-get-git.mycompany.com
based on the host name of the import path. When such binary exists in $PATH, it executes that binary with the import path and a destination in $GOPATH (for example,go-get-git.mycompany.com git.mycompany.com/private-repo $GOPATH/src/git.mycompany.com/private-repo
). The binary is responsible for fetching the source code to the specified $GOPATH location.go get
work with VCSs other than git/hg/svn/bzr.go get -f
orgo get -insecure
.The text was updated successfully, but these errors were encountered: