-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
CSHARP-5471: Incorrectly resolving the authentication mechanism param… #1605
base: main
Are you sure you want to change the base?
Conversation
Hey @sanych-sun, I've tagged you since it seems you've worked on this recently.
|
Hey @sanych-sun, did you have additional notes about this? |
@@ -761,7 +761,7 @@ private void ExtractOptions(Match match) | |||
var parts = option.Value.Split('='); | |||
var name = parts[0].Trim(); | |||
var value = parts[1].Trim(); | |||
_allOptions.Add(name, Uri.UnescapeDataString(value)); |
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.
I do not think this change is safe, as we are stopping decoding for all options and that options are available via public API, not just for building the resolved connection string.
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.
I would suggest either introduce new private collection to contain the unprocessed options (like a _rawOptions
), or DO NOT escape/unescape only authmechanismproperties option to mimic what ParseOption does.
…eters from SRV connection string
@@ -697,16 +697,13 @@ private ConnectionString BuildResolvedConnectionString(ConnectionStringScheme re | |||
private void ExtractScheme(Match match) | |||
{ | |||
var schemeGroup = match.Groups["scheme"]; | |||
if (schemeGroup.Success) | |||
if (schemeGroup.Success && schemeGroup.Value == "mongodb+srv") |
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.
Unrelated change, but I looked at it :)
@@ -925,7 +922,7 @@ private void ParseOption(string name, string value) | |||
_authMechanism = value; | |||
break; | |||
case "authmechanismproperties": | |||
foreach (var property in GetAuthMechanismProperties(name, value)) | |||
foreach (var property in GetAuthMechanismProperties(name, value, _isInternalRepresentation)) |
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.
_isInternalRepresentation
has a strange name, but it's set to true only by one constructor. And this constructor is only called by BuildResolvedConnectionString
.
…eters from SRV connection string