-
Notifications
You must be signed in to change notification settings - Fork 32
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: RawExtension to string conversion #501
Conversation
Signed-off-by: Guilherme Cassolato <[email protected]>
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.
Tho... unsure about the last one, as per my comment...
@@ -142,7 +142,11 @@ func (h *GenericHttp) buildRequest(ctx gocontext.Context, endpoint, authJSON str | |||
if err != nil { | |||
return nil, err | |||
} | |||
req.Header.Set(header.Name, fmt.Sprintf("%s", headerValue)) | |||
headerValueStr, err := json.StringifyJSON(headerValue) |
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.
Is that always true tho? Couldn't this be "just a plain string" ever?
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.
Unfortunately the types we used internally won't contribute much to make this clear, but, in short, yes, that is always true.
First thing to keep in mind is that the type that matters the most here is not of the source, but the one of where the value is used. The value of a header must always be a string, regardless of the source.
A second point – and the one less clear from the types used internally – regards to what json.StringifyJSON
does with the multiple possible outputs from ResolveFor
for the different types ultimately supported as input, i.e.:
value
→runtime.RawExtension
(the one whose conversion this PR fixes)selector
→ a JSON-compatible Golang type as implemented by gjson (not affected by adding now another step of JSON marshalling and gjson parsing)expression
→ a CEL-resolved value (recently reduced back into the previous case anyway)
You can try this out if you want using this other example:
apiVersion: authorino.kuadrant.io/v1beta3
kind: AuthConfig
metadata:
name: talker-api-protection
spec:
hosts:
- talker-api.127.0.0.1.nip.io
metadata:
"http-request":
http:
url: http://ip-api.com/json
headers:
"Accept":
value: application/json
"x-object-static":
value:
foo: bar
"x-object-selector":
selector: request.headers
"x-object-expression":
expression: request.headers
response:
success:
headers:
"geo-info":
plain:
expression: auth.metadata["http-request"]
You should see in the logs something similar to:
{
"level": "debug",
"ts": "2024-11-04T12:09:13Z",
"logger": "authorino.service.auth.authpipeline.metadata.http",
"msg": "sending request",
"request id": "fce0cae9-a3af-4491-beab-076178c78261",
"config": "http-request",
"method": "GET",
"url": "http://ip-api.com/json",
"headers": {
"Accept": [
"application/json"
],
"Content-Type": [
"text/plain"
],
"X-Object-Expression": [
"{\":authority\":\"talker-api.127.0.0.1.nip.io:8000\",\":method\":\"GET\",\":path\":\"/my-secret\",\":scheme\":\"http\",\"accept\":\"*/*\",\"user-agent\":\"curl/8.7.1\",\"x-envoy-internal\":\"true\",\"x-forwarded-for\":\"10.244.0.10\",\"x-forwarded-proto\":\"http\",\"x-request-id\":\"fce0cae9-a3af-4491-beab-076178c78261\"}"
],
"X-Object-Selector": [
"{\":authority\":\"talker-api.127.0.0.1.nip.io:8000\",\":method\":\"GET\",\":path\":\"/my-secret\",\":scheme\":\"http\",\"accept\":\"*/*\",\"user-agent\":\"curl/8.7.1\",\"x-envoy-internal\":\"true\",\"x-forwarded-for\":\"10.244.0.10\",\"x-forwarded-proto\":\"http\",\"x-request-id\":\"fce0cae9-a3af-4491-beab-076178c78261\"}"
],
"X-Object-Static": [
"{\"foo\":\"bar\"}"
]
}
}
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.
One thing we can do to mitigate the impact of this PR over the other affected sources for the conversion is to make json.StringifyJSON
return earlier if the interface{}
input is a 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.
Just pushed a commit: 113717d
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.
Ok, so it was not always the case? And now a "plain string" remains a plain string... do I get this right? In anycase... I think looking into something like what's proposed in #500 wrt to Value.ResolveFor
's signature would be a good refactor for ... future us. Today's interface{}
(and I know that's sourced in golang's type system) is just too broad I think. Further more the asymmetry of the function wrt its input & output is definitively a code smell to me.
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.
It was the case, I played with these functions a bit... I get what's going on now
Signed-off-by: Guilherme Cassolato <[email protected]>
…string Signed-off-by: Guilherme Cassolato <[email protected]>
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.
Looks good to me!
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.
🚀
fix: RawExtension to string conversion Signed-off-by: Guilherme Cassolato <[email protected]>
fix: RawExtension to string conversion Signed-off-by: Guilherme Cassolato <[email protected]>
Fixes conversion of
ValueOrSelector.Value
(based onruntime.RawExtension
) to string, used at the following configs:This bug was introduced in v0.18.0, when the AuthConfig controller was updated to work with
v1beta2
type (previously (v1beta1
), thus activating the option to set static values to JSON/YAML types other than strings. The conversion functions used in the features listed above were overlooked in the process and remain naively treating static values (stored in Golanginterface{}
variables) as if they were always strings.Verification steps
Check the Authorino logs. You should spot en entry like the following:
Before the fix, attributes such as
subjectaccessreview.spec.user
were being stringified as"{\"john\" <nil>}"
, which is the direct print out of theRawExtension
type in Golang as string.