-
Notifications
You must be signed in to change notification settings - Fork 358
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
A quick way to validate token string #302
Conversation
Wow, to be honest I would not have thought that this is an issue. I wonder why the implementation of HasPrefix does not abort searching the string after n bytes. I will also look at this in the coming days if we have sufficient tests. Update: Nevermind, obviously the ToLower was the problem here |
Hundreds of projects use this library for authentication, so I want to improve the performance of it as much as possible :D |
LGTM. Sorry for the long delay, I think we can ignore the 0.03 % coverage loss cc @mfridman |
@@ -90,7 +90,7 @@ func (e BearerExtractor) ExtractToken(req *http.Request) (string, error) { | |||
tokenHeader := req.Header.Get("Authorization") | |||
// The usual convention is for "Bearer" to be title-cased. However, there's no | |||
// strict rule around this, and it's best to follow the robustness principle here. | |||
if tokenHeader == "" || !strings.HasPrefix(strings.ToLower(tokenHeader), "bearer ") { | |||
if len(tokenHeader) < 7 || !strings.HasPrefix(strings.ToLower(tokenHeader[:7]), "bearer ") { |
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.
This is late and a nitpick, but HasPrefix
also slices the front. Is it faster to drop the call completely?
if len(tokenHeader) < 7 || !strings.HasPrefix(strings.ToLower(tokenHeader[:7]), "bearer ") { | |
if len(tokenHeader) < 7 || strings.ToLower(tokenHeader[:7]) != "bearer " { |
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.
We adjusted it in a follow-up PR: https://github.com/golang-jwt/jwt/pull/329/files
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [github.com/golang-jwt/jwt/v5](https://github.com/golang-jwt/jwt) | require | minor | `v5.0.0` -> `v5.1.0` | | golang.org/x/crypto | require | minor | `v0.14.0` -> `v0.15.0` | | golang.org/x/net | require | minor | `v0.17.0` -> `v0.18.0` | | golang.org/x/oauth2 | require | minor | `v0.13.0` -> `v0.14.0` | | golang.org/x/term | require | minor | `v0.13.0` -> `v0.14.0` | --- ### Release Notes <details> <summary>golang-jwt/jwt (github.com/golang-jwt/jwt/v5)</summary> ### [`v5.1.0`](https://github.com/golang-jwt/jwt/releases/tag/v5.1.0) [Compare Source](https://github.com/golang-jwt/jwt/compare/v5.0.0...v5.1.0) #### What's Changed - Using jwt's native `ErrInvalidType` instead of `json.UnsupportedTypeError` by [@​oxisto](https://github.com/oxisto) in [https://github.com/golang-jwt/jwt/pull/316](https://github.com/golang-jwt/jwt/pull/316) - Fix typos in comments and test names by [@​alexandear](https://github.com/alexandear) in [https://github.com/golang-jwt/jwt/pull/317](https://github.com/golang-jwt/jwt/pull/317) - Format: add whitespaces, remove empty lines by [@​alexandear](https://github.com/alexandear) in [https://github.com/golang-jwt/jwt/pull/319](https://github.com/golang-jwt/jwt/pull/319) - Refactor example: use io.ReadAll instead of io.Copy by [@​alexandear](https://github.com/alexandear) in [https://github.com/golang-jwt/jwt/pull/320](https://github.com/golang-jwt/jwt/pull/320) - Refactor code by using switch instead of if-else by [@​alexandear](https://github.com/alexandear) in [https://github.com/golang-jwt/jwt/pull/318](https://github.com/golang-jwt/jwt/pull/318) - A quick way to validate token string by [@​dcalsky](https://github.com/dcalsky) in [https://github.com/golang-jwt/jwt/pull/302](https://github.com/golang-jwt/jwt/pull/302) - Refactor: remove unnecessary \[]byte conversion to string by [@​alexandear](https://github.com/alexandear) in [https://github.com/golang-jwt/jwt/pull/330](https://github.com/golang-jwt/jwt/pull/330) - Refactor: compare strings with strings.EqualFold by [@​alexandear](https://github.com/alexandear) in [https://github.com/golang-jwt/jwt/pull/329](https://github.com/golang-jwt/jwt/pull/329) - Avoid use of json.NewDecoder by [@​craigpastro](https://github.com/craigpastro) in [https://github.com/golang-jwt/jwt/pull/313](https://github.com/golang-jwt/jwt/pull/313) - Update ParseUnverified godoc by [@​duhaesbaert](https://github.com/duhaesbaert) in [https://github.com/golang-jwt/jwt/pull/341](https://github.com/golang-jwt/jwt/pull/341) - Update ci workflows (add go1.21) by [@​mfridman](https://github.com/mfridman) in [https://github.com/golang-jwt/jwt/pull/345](https://github.com/golang-jwt/jwt/pull/345) - Bump actions/checkout from 3 to 4 by [@​dependabot](https://github.com/dependabot) in [https://github.com/golang-jwt/jwt/pull/346](https://github.com/golang-jwt/jwt/pull/346) - Key rotation with VerificationKeySet by [@​mfridman](https://github.com/mfridman) in [https://github.com/golang-jwt/jwt/pull/344](https://github.com/golang-jwt/jwt/pull/344) - Add explicit ClaimsValidator implementation check for custom claims by [@​epelc](https://github.com/epelc) in [https://github.com/golang-jwt/jwt/pull/343](https://github.com/golang-jwt/jwt/pull/343) - feat: allow making exp claim required by [@​tareksha](https://github.com/tareksha) in [https://github.com/golang-jwt/jwt/pull/351](https://github.com/golang-jwt/jwt/pull/351) - Add error handling to examples by [@​craigpastro](https://github.com/craigpastro) in [https://github.com/golang-jwt/jwt/pull/312](https://github.com/golang-jwt/jwt/pull/312) #### New Contributors - [@​alexandear](https://github.com/alexandear) made their first contribution in [https://github.com/golang-jwt/jwt/pull/317](https://github.com/golang-jwt/jwt/pull/317) - [@​dcalsky](https://github.com/dcalsky) made their first contribution in [https://github.com/golang-jwt/jwt/pull/302](https://github.com/golang-jwt/jwt/pull/302) - [@​craigpastro](https://github.com/craigpastro) made their first contribution in [https://github.com/golang-jwt/jwt/pull/313](https://github.com/golang-jwt/jwt/pull/313) - [@​duhaesbaert](https://github.com/duhaesbaert) made their first contribution in [https://github.com/golang-jwt/jwt/pull/341](https://github.com/golang-jwt/jwt/pull/341) - [@​epelc](https://github.com/epelc) made their first contribution in [https://github.com/golang-jwt/jwt/pull/343](https://github.com/golang-jwt/jwt/pull/343) - [@​tareksha](https://github.com/tareksha) made their first contribution in [https://github.com/golang-jwt/jwt/pull/351](https://github.com/golang-jwt/jwt/pull/351) **Full Changelog**: golang-jwt/jwt@v5.0.0...v5.1.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - "before 4am" (UTC), Automerge - "before 4am" (UTC). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/woodpecker-ci/woodpecker). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy40Ni4wIiwidXBkYXRlZEluVmVyIjoiMzcuNDYuMCIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
[![Mend Renovate logo banner](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [github.com/golang-jwt/jwt/v5](https://github.com/golang-jwt/jwt) | require | minor | `v5.0.0` -> `v5.1.0` | --- ### Release Notes <details> <summary>golang-jwt/jwt (github.com/golang-jwt/jwt/v5)</summary> ### [`v5.1.0`](https://github.com/golang-jwt/jwt/releases/tag/v5.1.0) [Compare Source](https://github.com/golang-jwt/jwt/compare/v5.0.0...v5.1.0) #### What's Changed - Using jwt's native `ErrInvalidType` instead of `json.UnsupportedTypeError` by [@​oxisto](https://github.com/oxisto) in [https://github.com/golang-jwt/jwt/pull/316](https://github.com/golang-jwt/jwt/pull/316) - Fix typos in comments and test names by [@​alexandear](https://github.com/alexandear) in [https://github.com/golang-jwt/jwt/pull/317](https://github.com/golang-jwt/jwt/pull/317) - Format: add whitespaces, remove empty lines by [@​alexandear](https://github.com/alexandear) in [https://github.com/golang-jwt/jwt/pull/319](https://github.com/golang-jwt/jwt/pull/319) - Refactor example: use io.ReadAll instead of io.Copy by [@​alexandear](https://github.com/alexandear) in [https://github.com/golang-jwt/jwt/pull/320](https://github.com/golang-jwt/jwt/pull/320) - Refactor code by using switch instead of if-else by [@​alexandear](https://github.com/alexandear) in [https://github.com/golang-jwt/jwt/pull/318](https://github.com/golang-jwt/jwt/pull/318) - A quick way to validate token string by [@​dcalsky](https://github.com/dcalsky) in [https://github.com/golang-jwt/jwt/pull/302](https://github.com/golang-jwt/jwt/pull/302) - Refactor: remove unnecessary \[]byte conversion to string by [@​alexandear](https://github.com/alexandear) in [https://github.com/golang-jwt/jwt/pull/330](https://github.com/golang-jwt/jwt/pull/330) - Refactor: compare strings with strings.EqualFold by [@​alexandear](https://github.com/alexandear) in [https://github.com/golang-jwt/jwt/pull/329](https://github.com/golang-jwt/jwt/pull/329) - Avoid use of json.NewDecoder by [@​craigpastro](https://github.com/craigpastro) in [https://github.com/golang-jwt/jwt/pull/313](https://github.com/golang-jwt/jwt/pull/313) - Update ParseUnverified godoc by [@​duhaesbaert](https://github.com/duhaesbaert) in [https://github.com/golang-jwt/jwt/pull/341](https://github.com/golang-jwt/jwt/pull/341) - Update ci workflows (add go1.21) by [@​mfridman](https://github.com/mfridman) in [https://github.com/golang-jwt/jwt/pull/345](https://github.com/golang-jwt/jwt/pull/345) - Bump actions/checkout from 3 to 4 by [@​dependabot](https://github.com/dependabot) in [https://github.com/golang-jwt/jwt/pull/346](https://github.com/golang-jwt/jwt/pull/346) - Key rotation with VerificationKeySet by [@​mfridman](https://github.com/mfridman) in [https://github.com/golang-jwt/jwt/pull/344](https://github.com/golang-jwt/jwt/pull/344) - Add explicit ClaimsValidator implementation check for custom claims by [@​epelc](https://github.com/epelc) in [https://github.com/golang-jwt/jwt/pull/343](https://github.com/golang-jwt/jwt/pull/343) - feat: allow making exp claim required by [@​tareksha](https://github.com/tareksha) in [https://github.com/golang-jwt/jwt/pull/351](https://github.com/golang-jwt/jwt/pull/351) - Add error handling to examples by [@​craigpastro](https://github.com/craigpastro) in [https://github.com/golang-jwt/jwt/pull/312](https://github.com/golang-jwt/jwt/pull/312) #### New Contributors - [@​alexandear](https://github.com/alexandear) made their first contribution in [https://github.com/golang-jwt/jwt/pull/317](https://github.com/golang-jwt/jwt/pull/317) - [@​dcalsky](https://github.com/dcalsky) made their first contribution in [https://github.com/golang-jwt/jwt/pull/302](https://github.com/golang-jwt/jwt/pull/302) - [@​craigpastro](https://github.com/craigpastro) made their first contribution in [https://github.com/golang-jwt/jwt/pull/313](https://github.com/golang-jwt/jwt/pull/313) - [@​duhaesbaert](https://github.com/duhaesbaert) made their first contribution in [https://github.com/golang-jwt/jwt/pull/341](https://github.com/golang-jwt/jwt/pull/341) - [@​epelc](https://github.com/epelc) made their first contribution in [https://github.com/golang-jwt/jwt/pull/343](https://github.com/golang-jwt/jwt/pull/343) - [@​tareksha](https://github.com/tareksha) made their first contribution in [https://github.com/golang-jwt/jwt/pull/351](https://github.com/golang-jwt/jwt/pull/351) **Full Changelog**: golang-jwt/jwt@v5.0.0...v5.1.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - "before 6am on Monday" in timezone Europe/Paris, Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **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 has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/cozy/cozy-stack). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy41OS44IiwidXBkYXRlZEluVmVyIjoiMzcuNTkuOCIsInRhcmdldEJyYW5jaCI6Im1hc3RlciJ9-->
[![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/golang-jwt/jwt/v5](https://github.com/golang-jwt/jwt) | `v5.0.0` -> `v5.2.1` | [![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fgolang-jwt%2fjwt%2fv5/v5.2.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fgolang-jwt%2fjwt%2fv5/v5.2.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fgolang-jwt%2fjwt%2fv5/v5.0.0/v5.2.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fgolang-jwt%2fjwt%2fv5/v5.0.0/v5.2.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>golang-jwt/jwt (github.com/golang-jwt/jwt/v5)</summary> ### [`v5.2.1`](https://github.com/golang-jwt/jwt/releases/tag/v5.2.1) [Compare Source](https://github.com/golang-jwt/jwt/compare/v5.2.0...v5.2.1) #### What's Changed - chore: remove unnecessary conversions from tests by [@​estensen](https://github.com/estensen) in [https://github.com/golang-jwt/jwt/pull/370](https://github.com/golang-jwt/jwt/pull/370) - Trivial: Typo fix for ECDSA error message by [@​tjs-cinemo](https://github.com/tjs-cinemo) in [https://github.com/golang-jwt/jwt/pull/373](https://github.com/golang-jwt/jwt/pull/373) - Fix incorrect error return by [@​ss49919201](https://github.com/ss49919201) in [https://github.com/golang-jwt/jwt/pull/371](https://github.com/golang-jwt/jwt/pull/371) #### New Contributors - [@​tjs-cinemo](https://github.com/tjs-cinemo) made their first contribution in [https://github.com/golang-jwt/jwt/pull/373](https://github.com/golang-jwt/jwt/pull/373) - [@​ss49919201](https://github.com/ss49919201) made their first contribution in [https://github.com/golang-jwt/jwt/pull/371](https://github.com/golang-jwt/jwt/pull/371) **Full Changelog**: golang-jwt/jwt@v5.2.0...v5.2.1 ### [`v5.2.0`](https://github.com/golang-jwt/jwt/releases/tag/v5.2.0) [Compare Source](https://github.com/golang-jwt/jwt/compare/v5.1.0...v5.2.0) #### What's Changed - Exported `NewValidator` by [@​oxisto](https://github.com/oxisto) in [https://github.com/golang-jwt/jwt/pull/349](https://github.com/golang-jwt/jwt/pull/349) - Improve ErrInvalidKeyType error messages by [@​Laurin-Notemann](https://github.com/Laurin-Notemann) in [https://github.com/golang-jwt/jwt/pull/361](https://github.com/golang-jwt/jwt/pull/361) - Update MIGRATION_GUIDE.md by [@​jbarham](https://github.com/jbarham) in [https://github.com/golang-jwt/jwt/pull/363](https://github.com/golang-jwt/jwt/pull/363) #### New Contributors - [@​Laurin-Notemann](https://github.com/Laurin-Notemann) made their first contribution in [https://github.com/golang-jwt/jwt/pull/361](https://github.com/golang-jwt/jwt/pull/361) - [@​jbarham](https://github.com/jbarham) made their first contribution in [https://github.com/golang-jwt/jwt/pull/363](https://github.com/golang-jwt/jwt/pull/363) **Full Changelog**: golang-jwt/jwt@v5.1.0...v5.2.0 ### [`v5.1.0`](https://github.com/golang-jwt/jwt/releases/tag/v5.1.0) [Compare Source](https://github.com/golang-jwt/jwt/compare/v5.0.0...v5.1.0) #### What's Changed - Using jwt's native `ErrInvalidType` instead of `json.UnsupportedTypeError` by [@​oxisto](https://github.com/oxisto) in [https://github.com/golang-jwt/jwt/pull/316](https://github.com/golang-jwt/jwt/pull/316) - Fix typos in comments and test names by [@​alexandear](https://github.com/alexandear) in [https://github.com/golang-jwt/jwt/pull/317](https://github.com/golang-jwt/jwt/pull/317) - Format: add whitespaces, remove empty lines by [@​alexandear](https://github.com/alexandear) in [https://github.com/golang-jwt/jwt/pull/319](https://github.com/golang-jwt/jwt/pull/319) - Refactor example: use io.ReadAll instead of io.Copy by [@​alexandear](https://github.com/alexandear) in [https://github.com/golang-jwt/jwt/pull/320](https://github.com/golang-jwt/jwt/pull/320) - Refactor code by using switch instead of if-else by [@​alexandear](https://github.com/alexandear) in [https://github.com/golang-jwt/jwt/pull/318](https://github.com/golang-jwt/jwt/pull/318) - A quick way to validate token string by [@​dcalsky](https://github.com/dcalsky) in [https://github.com/golang-jwt/jwt/pull/302](https://github.com/golang-jwt/jwt/pull/302) - Refactor: remove unnecessary \[]byte conversion to string by [@​alexandear](https://github.com/alexandear) in [https://github.com/golang-jwt/jwt/pull/330](https://github.com/golang-jwt/jwt/pull/330) - Refactor: compare strings with strings.EqualFold by [@​alexandear](https://github.com/alexandear) in [https://github.com/golang-jwt/jwt/pull/329](https://github.com/golang-jwt/jwt/pull/329) - Avoid use of json.NewDecoder by [@​craigpastro](https://github.com/craigpastro) in [https://github.com/golang-jwt/jwt/pull/313](https://github.com/golang-jwt/jwt/pull/313) - Update ParseUnverified godoc by [@​duhaesbaert](https://github.com/duhaesbaert) in [https://github.com/golang-jwt/jwt/pull/341](https://github.com/golang-jwt/jwt/pull/341) - Update ci workflows (add go1.21) by [@​mfridman](https://github.com/mfridman) in [https://github.com/golang-jwt/jwt/pull/345](https://github.com/golang-jwt/jwt/pull/345) - Bump actions/checkout from 3 to 4 by [@​dependabot](https://github.com/dependabot) in [https://github.com/golang-jwt/jwt/pull/346](https://github.com/golang-jwt/jwt/pull/346) - Key rotation with VerificationKeySet by [@​mfridman](https://github.com/mfridman) in [https://github.com/golang-jwt/jwt/pull/344](https://github.com/golang-jwt/jwt/pull/344) - Add explicit ClaimsValidator implementation check for custom claims by [@​epelc](https://github.com/epelc) in [https://github.com/golang-jwt/jwt/pull/343](https://github.com/golang-jwt/jwt/pull/343) - feat: allow making exp claim required by [@​tareksha](https://github.com/tareksha) in [https://github.com/golang-jwt/jwt/pull/351](https://github.com/golang-jwt/jwt/pull/351) - Add error handling to examples by [@​craigpastro](https://github.com/craigpastro) in [https://github.com/golang-jwt/jwt/pull/312](https://github.com/golang-jwt/jwt/pull/312) #### New Contributors - [@​alexandear](https://github.com/alexandear) made their first contribution in [https://github.com/golang-jwt/jwt/pull/317](https://github.com/golang-jwt/jwt/pull/317) - [@​dcalsky](https://github.com/dcalsky) made their first contribution in [https://github.com/golang-jwt/jwt/pull/302](https://github.com/golang-jwt/jwt/pull/302) - [@​craigpastro](https://github.com/craigpastro) made their first contribution in [https://github.com/golang-jwt/jwt/pull/313](https://github.com/golang-jwt/jwt/pull/313) - [@​duhaesbaert](https://github.com/duhaesbaert) made their first contribution in [https://github.com/golang-jwt/jwt/pull/341](https://github.com/golang-jwt/jwt/pull/341) - [@​epelc](https://github.com/epelc) made their first contribution in [https://github.com/golang-jwt/jwt/pull/343](https://github.com/golang-jwt/jwt/pull/343) - [@​tareksha](https://github.com/tareksha) made their first contribution in [https://github.com/golang-jwt/jwt/pull/351](https://github.com/golang-jwt/jwt/pull/351) **Full Changelog**: golang-jwt/jwt@v5.0.0...v5.1.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **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 has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/infratographer/x). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4yNjkuMiIsInVwZGF0ZWRJblZlciI6IjM3LjI2OS4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
This PR reduces the scope of ToLower for strings and can provide a significant performance gain when validating Token Strings.