Skip to content
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

request: Making ocm-sdk easily packageable #421

Closed
croissanne opened this issue Aug 6, 2021 · 21 comments
Closed

request: Making ocm-sdk easily packageable #421

croissanne opened this issue Aug 6, 2021 · 21 comments

Comments

@croissanne
Copy link
Contributor

croissanne commented Aug 6, 2021

https://github.com/osbuild/osbuild-composer/ is a project that's aiming to run on api.openshift.com in future. However it also releases regularly into fedora/epel etc... And in order to depend on the ocm-sdk a few minor changes could help us greatly.

Most of ocm-sdk's dependencies are release into these platforms already, except:

  • github.com/grokify/html-strip-tags-go:
    alternative https://github.com/microcosm-cc/bluemonday is packaged, plus it's much better suited to handle untrusted html.
  • https://gitlab.com/c0b/go-ordered-json:
    a bit of a weird one, doesn't have go module support and seems really unmaintained (last code update was 3 years ago).
    We could package it alongside, but it has bugs (the tests don't work). Could also just copy the needed file into this project with a reference to it's upstream.

There's also the issue that https://github.com/dgrijalva/jwt-go is unmaintained. https://github.com/golang-jwt/jwt is a maintained fork, which sadly isn't yet packaged, but hopefully will be soon.


I'm happy to do the work on this, but want to discuss if it would be acceptable from your side first.

@croissanne croissanne changed the title request: Making ocm-sdk easily packageable in fedora request: Making ocm-sdk easily packageable Aug 6, 2021
@vkareh
Copy link
Member

vkareh commented Aug 6, 2021

Another option is to vendor in the dependencies instead of relying on packaged versions of those modules. That way the release cycle of ocm-sdk-go is not tied to the release cycle of third-party modules.

@croissanne
Copy link
Contributor Author

Yea that's what composer ends up doing for most distributions other than fedora, though vendoring has it's own drawbacks. composer is tied to release cycles of distributions and thus the packages available on those distros, and I guess I'm trying to reconcile it being both tied to distribution's release cycles and being able to run it on a.o.c.

That said we'd package ocm-sdk, so I wouldn't be asking for openshift/ocm to actually package/release it into fedora.

Regardless some of the issues mentioned in the ticket re:deprecation are still valid I think. But feel free to close this ticket if that's best.

@jhernand
Copy link
Collaborator

jhernand commented Aug 9, 2021

@Gundersanne I think this is a very reasonable request. Some of the changes we should do regardless of packaging. I am reopening and starting working on it.

@jhernand jhernand reopened this Aug 9, 2021
@croissanne
Copy link
Contributor Author

Awesome, if you want me to take on one of them, like the tag stripping one, I'm very happy to do so.

@jhernand
Copy link
Collaborator

jhernand commented Aug 9, 2021

@Gundersanne yes, please, take the tag stripping. I will start with migrating to the new JWT library.

@croissanne
Copy link
Contributor Author

How do you feel about the ordered map copy https://github.com/Gundersanne/ocm-sdk-go/tree/ordered-map ? If the copying over is a bit weird, I can try to open a MR on gitlab to fix the test and try to get it in that way.

@jhernand
Copy link
Collaborator

jhernand commented Aug 9, 2021

I don't like very much the idea of copying the code. Not that I have a concrete reason, just a feeling that it isn't OK.

I'd prefer to either switch to a different library or else write the required logic from scratch.

Note that we are only using that ordered map to avoid changing the order of the JSON written to the debug log. I took a quick look to github.com/tidwall/pretty. It is already packaged for Fedora, but I am not 100% sure if it preserves the order. Would you want to check that and maybe change the code to use it if it preserves the order?

@croissanne
Copy link
Contributor Author

Yea I have to agree copying is a bit weird. https://github.com/tidwall/pretty seems to have a SortKeys option, so i'll give it a go :)

@jhernand
Copy link
Collaborator

jhernand commented Aug 9, 2021

Great, thanks. Note that the point is not changing the order of the JSON received/sent from the SDK. For example, if we receive { "b": "B", "a": "A" } we want to write to the log that formatted for humans, but without changing the order of the fields:

{
  "b": "B",
  "a": "A"
}

The reason for not changing the order is that some times the order is (or will be, in the future) important. For example, results of collections should have the "size" field before the array of items because that way the SDK can allocate the right array in advance. If the order in the debug log is different to what was actually received it is harder to debug errors in that logic.

So I guess (but I am not sure) that we shouldn't use the SortKeys option.

@croissanne
Copy link
Contributor Author

Ah right, indeed SortKeys isn't it in that case.

@croissanne
Copy link
Contributor Author

seems promising :)
image

@jhernand
Copy link
Collaborator

jhernand commented Aug 9, 2021

Yes, that is what we need, thanks!

@croissanne
Copy link
Contributor Author

it doesn't really allow you to iterate over a json struct though, so the redacting becomes a lot harder.

@jhernand
Copy link
Collaborator

jhernand commented Aug 9, 2021

I think that for redacting we can use a plain map, something like this:

--- a/dump.go
+++ b/dump.go
@@ -30,8 +30,6 @@ import (
        "sort"
        "strings"
 
-       "gitlab.com/c0b/go-ordered-json"
-
        "github.com/openshift-online/ocm-sdk-go/logging"
 )
 
@@ -269,7 +267,7 @@ func (d *dumpRoundTripper) dumpForm(ctx context.Context, data []byte) {
 // dumpJSON tries to parse the given data as a JSON document. If that works, then it dumps it
 // indented, otherwise dumps it as is.
 func (d *dumpRoundTripper) dumpJSON(ctx context.Context, data []byte) {
-       parsed := ordered.NewOrderedMap()
+       var parsed map[string]interface{}
        err := json.Unmarshal(data, parsed)
        if err != nil {
                d.logger.Debug(ctx, "%s", data)
@@ -292,15 +290,10 @@ func (d *dumpRoundTripper) dumpBytes(ctx context.Context, data []byte) {
 }
 
 // redactSensitive replaces sensitive fields within a response with redactionStr.
-func (d *dumpRoundTripper) redactSensitive(body *ordered.OrderedMap) {
-       iterator := body.EntriesIter()
-       for {
-               pair, ok := iterator()
-               if !ok {
-                       break
-               }
-               if redactFields[pair.Key] {
-                       body.Set(pair.Key, redactionStr)
+func (d *dumpRoundTripper) redactSensitive(body map[string]interface{}) {
+       for key, _ := range body {
+               if redactFields[key] {
+                       body[key] = redactionStr
                }
        }
 }

Then we can use the new library to write to the log the original slice of bytes.

@jhernand
Copy link
Collaborator

jhernand commented Aug 9, 2021

Ah, we can't do that because we want to write out the modified/redacted map, not the original, sorry.

@jhernand
Copy link
Collaborator

jhernand commented Aug 9, 2021

@Gundersanne we may be able to do what we want using the JSON iterator that we already use for converting JSON documents to objects. I will take a look at that.

@jhernand
Copy link
Collaborator

jhernand commented Aug 9, 2021

Meanwhile, if you need an urgent solution for packaging in Fedora you may want to apply a patch similar to the one I shared. That would not respect the order in debug output, but that isn't the end of the world. Once we have a fix for the issue you can just remove the patch.

@croissanne
Copy link
Contributor Author

It's not quite that urgent.

Hm would that work for nested values though? Not sure if the redacted fields are ever nested.

I guess we wanna avoid manipulating the byte slice directly. At first glance json-iter would work with constructing a new stream, writing everything except the redacted fields.

@croissanne
Copy link
Contributor Author

croissanne commented Aug 9, 2021

I took a swing at it #423, not sure if this is what you had in mind. If this is in the right direction, might need to consider having a max depth on the recursion, and a test of course.

@jhernand
Copy link
Collaborator

Yes, that is what I was considering. Looks good to me as is.

jhernand added a commit to jhernand/ocm-sdk-go that referenced this issue Aug 10, 2021
The `dgrijalva/jwt-go` library is no longer maintained and `golang-jwt/jwt` is a
community maintained fork. See dgrijalva/jwt-go#462
for detailts.

Parts of the public interface of the SDK use this library, so this is a
backwards compatibility breaking change. Projects using the SDK will need to
switch to the new library, specially if they are using the
`context.ContextWithToken` or `context.TokenFromContext` functions. The change
should only require changing the import paths, as the fork is fully compatible
with the original library.

A simple way to do the required changes is the following command:

```
$ find . -name '*.go' | xargs sed -i 's|dgrijalva/jwt-go|golang-jwt/jwt|'
```

This also addresses CVE-2020-26160, but that vulnerability doesn't
currently affect the SDK because the authentication handler doesn't use
the `aud` claim.

Related: openshift-online#421
Related: dgrijalva/jwt-go#462
Related: https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-26160
Signed-off-by: Juan Hernandez <[email protected]>
jhernand added a commit to jhernand/ocm-sdk-go that referenced this issue Aug 10, 2021
Changes in this release are mainly intended to simplify packaging of the SDK in
Fedora, see issue openshift-online#421 for details.

- Use `golang-jwt/jwt` instead of `dgrijalva/jwt-go`.
- Use `microcosm-cc/bluemonday` instead of `grokify/html-strip-tags-go`.
- Use `json-iterator/go` instead of `c0b/go-ordered-json`.

Related: openshift-online#421
Signed-off-by: Juan Hernandez <[email protected]>
@jhernand
Copy link
Collaborator

This issue has been addressed in release 0.1.199.

jhernand added a commit to jhernand/ocm-cli that referenced this issue Aug 11, 2021
The more relevant change in the new version of the SDK is the switch
from `dgrijalva/jwt-go` to `golang-jwt/jwt`.

Related: openshift-online/ocm-sdk-go#421
Related: dgrijalva/jwt-go#462
Signed-off-by: Juan Hernandez <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants