-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
✨ SASL SCRAM-SHA-*: Add mechanisms [🚧 tests, split commit]
Also, don't forget to credit the PR on net-sasl for getting this started!
- Loading branch information
Showing
8 changed files
with
672 additions
and
55 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
# frozen_string_literal: true | ||
|
||
module Net | ||
class IMAP < Protocol | ||
module SASL | ||
|
||
# Several mechanisms start with a GS2 header: | ||
# * +GS2-*+ | ||
# * +SCRAM-*+ --- ScramAuthenticator | ||
# * +OPENID20+ | ||
# * +SAML20+ | ||
# * +OAUTH10A+ | ||
# * +OAUTHBEARER+ --- OAuthBearerAuthenticator | ||
# | ||
# Classes that include this must implement +#authzid+. | ||
module GS2Header | ||
NO_NULL_CHARS = /\A[^\x00]+\z/u # :nodoc: | ||
|
||
## | ||
# Matches {RFC5801 §4}[https://www.rfc-editor.org/rfc/rfc5801#section-4] | ||
# +saslname+. The output from gs2_saslname_encode matches this Regexp. | ||
RFC5801_SASLNAME = /\A(?:[^,=\x00]|=2C|=3D)+\z/u | ||
|
||
# The {RFC5801 §4}[https://www.rfc-editor.org/rfc/rfc5801#section-4] | ||
# +gs2-header+, which prefixes the #initial_client_response. | ||
# | ||
# >>> | ||
# <em>Note: the actual GS2 header includes an optional flag to | ||
# indicate that the GSS mechanism is not "standard", but since all of | ||
# the SASL mechanisms using GS2 are "standard", we don't include that | ||
# flag. A class for a nonstandard GSSAPI mechanism should prefix with | ||
# "+F,+".</em> | ||
def gs2_header | ||
"#{gs2_cb_flag},#{gs2_authzid}," | ||
end | ||
|
||
# The {RFC5801 §4}[https://www.rfc-editor.org/rfc/rfc5801#section-4] | ||
# +gs2-cb-flag+: | ||
# | ||
# "+n+":: The client doesn't support channel binding. | ||
# "+y+":: The client does support channel binding | ||
# but thinks the server does not. | ||
# "+p+":: The client requires channel binding. | ||
# The selected channel binding follows "+p=+". | ||
# | ||
# The default always returns "+n+". A mechanism that supports channel | ||
# binding must override this method. | ||
# | ||
def gs2_cb_flag; "n" end | ||
|
||
# The {RFC5801 §4}[https://www.rfc-editor.org/rfc/rfc5801#section-4] | ||
# +gs2-authzid+ header, when +#authzid+ is not empty. | ||
# | ||
# If +#authzid+ is empty or +nil+, an empty string is returned. | ||
def gs2_authzid | ||
return "" if authzid.nil? || authzid == "" | ||
"a=#{gs2_saslname_encode(authzid)}" | ||
end | ||
|
||
module_function | ||
|
||
# Encodes +str+ to match RFC5801_SASLNAME. | ||
# | ||
#-- | ||
# TODO: validate NO_NULL_CHARS and valid UTF-8 in the attr_writer. | ||
def gs2_saslname_encode(str) | ||
str = str.encode("UTF-8") | ||
if NO_NULL_CHARS.match str | ||
str | ||
.gsub(?=, "=3D") | ||
.gsub(?,, "=2C") | ||
else | ||
# Regexp#match raises "invalid byte sequence" for invalid UTF-8 | ||
raise ArgumentError, "invalid saslname: %p" % [str] | ||
end | ||
end | ||
|
||
end | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.