-
Notifications
You must be signed in to change notification settings - Fork 235
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
fix: Avoid panic when s3 URL is invalid #501
Conversation
Gracefully handle when S3 URLs have an unexpected number of path segments. Currently we expect `s3.amazonaws.com/bucket/path`, but something like `s3.amazonaws.com/bucket` will cause a panic, e.g. ``` panic: runtime error: index out of range [2] with length 2 github.com/hashicorp/go-getter.(*S3Getter).parseUrl(,) /go/pkg/mod/github.com/hashicorp/[email protected]/get_s3.go:272 github.com/hashicorp/go-getter.(*S3Getter).Get(, {,},) /go/pkg/mod/git... ```
Hi @liamg, out of curiosity, what is the context in which you discovered this issue? Is there an associated issue in go-getter or in one of the product repositories? Thanks! |
Hey, we discovered this internally when using go-getter to pull down terraform modules by URL. Somebody had omitted the object path from the module URL and 💥 . It's reproducible with the latest module "uhoh" {
source = "s3.amazonaws.com/bucket"
} and then a
I'll raise an issue there too. |
Related issue: hashicorp/terraform#35515 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi @liamg
Thanks for the PR - this looks like a reasonable patch and something certainly worth fixing!
However, before we do so - can you add some tests that reproduce the panic without the patch and pass after the patch? This can be a new test under https://github.com/hashicorp/go-getter/blob/main/get_s3_test.go
@radeksimko Sure thing, I should have done that already 😅 I've added a few test cases now. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, thanks!
Thanks @radeksimko - do you know if we can expect a release any time soon so we can grab this fix? |
Took a while due to some confusion around versioning and releasing, but I just released v1.7.6: https://github.com/hashicorp/go-getter/releases/tag/v1.7.6 My understanding is that v1 is used by Terraform, so that should eventually address the bug there. We could cherry-pick the patch to v2 as well though. |
…go.mod (#75) [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [github.com/hashicorp/go-getter](https://togithub.com/hashicorp/go-getter) | `v1.7.5` -> `v1.7.6` | [![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fhashicorp%2fgo-getter/v1.7.6?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fhashicorp%2fgo-getter/v1.7.6?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fhashicorp%2fgo-getter/v1.7.5/v1.7.6?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fhashicorp%2fgo-getter/v1.7.5/v1.7.6?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>hashicorp/go-getter (github.com/hashicorp/go-getter)</summary> ### [`v1.7.6`](https://togithub.com/hashicorp/go-getter/releases/tag/v1.7.6) [Compare Source](https://togithub.com/hashicorp/go-getter/compare/v1.7.5...v1.7.6) #### What's Changed - fix: Avoid panic when s3 URL is invalid by [@​liamg](https://togithub.com/liamg) in [https://github.com/hashicorp/go-getter/pull/501](https://togithub.com/hashicorp/go-getter/pull/501) #### New Contributors - [@​liamg](https://togithub.com/liamg) made their first contribution in [https://github.com/hashicorp/go-getter/pull/501](https://togithub.com/hashicorp/go-getter/pull/501) **Full Changelog**: hashicorp/go-getter@v1.7.5...v1.7.6 </details> --- ### Configuration 📅 **Schedule**: Branch creation - "* */2 * * *" (UTC), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View the [repository job log](https://developer.mend.io/github/jippi/dottie). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC4yNi4xIiwidXBkYXRlZEluVmVyIjoiMzguMjYuMSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIl19--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Gracefully handle when S3 URLs have an unexpected number of path segments.
Currently we expect
s3.amazonaws.com/bucket/path
, but something likes3.amazonaws.com/bucket
will cause a panic, e.g.