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

advisor: Allow multiple vulnerability providers in one run #3772

Conversation

KorSin
Copy link
Contributor

@KorSin KorSin commented Mar 17, 2021

This is a follow up PR to #3761.

Please look at the commit messages for details.

@KorSin KorSin changed the title Advisor: Allow multiple vulnerability providers in one run. advisor: Allow multiple vulnerability providers in one run. Mar 17, 2021
@KorSin KorSin removed the request for review from oheger-bosch March 17, 2021 10:35
@sschuberth sschuberth requested a review from oheger-bosch March 17, 2021 10:37
@KorSin KorSin marked this pull request as draft March 17, 2021 10:44
val packages = ortResult.getPackages(skipExcluded).map { it.pkg }
val results = runBlocking { providers.first().retrievePackageVulnerabilities(packages) }
.mapKeysTo(sortedMapOf()) { (pkg, _) -> pkg.id }
runBlocking {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

While this works, the code could be made more efficient by running the providers in parallel; as they are independent on each other, there should not be any conflicts between them. Instead of the forEach loop, use a map in combination with async to trigger the different providers asynchronously. Their results can then be merged after all have completed.

You can refer to Analyzer.kt for an example how this is done.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for the idea! I also was not really satisfied with this block.
Have a look at my solution!

@KorSin KorSin force-pushed the korsin/multiple-advisors-next branch from 1d1d4ba to f6bfc8e Compare March 17, 2021 12:48
@KorSin KorSin requested a review from oheger-bosch March 17, 2021 12:49
@KorSin KorSin force-pushed the korsin/multiple-advisors-next branch from f6bfc8e to ceb9d95 Compare March 17, 2021 12:50
@KorSin KorSin marked this pull request as ready for review March 17, 2021 12:50
Copy link
Member

@oheger-bosch oheger-bosch left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The concurrent invocation of the providers looks indeed good.

}
}.forEach { providerResults ->
providerResults.await().forEach { (pkg, advisorResults) ->
val resultsForId = results.getOrDefault(pkg.id, emptyList())
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Get and update of the results map can probably be simplified by using Map's merge() method.

@@ -105,8 +105,8 @@ class AdvisorCommand : CliktCommand(name = "advise", help = "Check dependencies
}

val distinctProviders = providerFactories.distinct()

println("Using provider '${distinctProviders.first().providerName}'.")
println("The following vulnerability providers are activated:")
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I would rather combine this change with a previous commit, but do not have any strong feelings here.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actually, this should be squashed to the first commit in this PR, not to the previous commit.

@KorSin KorSin force-pushed the korsin/multiple-advisors-next branch from ceb9d95 to 607db97 Compare March 17, 2021 15:28
@KorSin KorSin requested a review from oheger-bosch March 17, 2021 15:28
help = "The advisor to use, one of ${allVulnerabilityProvidersByName.keys}"
private val providerFactories by option(
"--vulnerability-providers", "-v",
help = "The comma separated providers to use, any of ${allVulnerabilityProvidersByName.keys}"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

s/comma separated/comma-separated/

s/providers/advisors/ (see my comment above)

"--advisor", "-a",
help = "The advisor to use, one of ${allVulnerabilityProvidersByName.keys}"
private val providerFactories by option(
"--vulnerability-providers", "-v",
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm not sure about this renaming. It's also not mentioned as part for the commit message, which makes it sound like a non-breaking changing, although this makes it a breaking change.

From a user-perspective it would anyway be good to not distinguish between vulnerability providers and other advisors here: They just want to be able to enable any kind of advisor by name. So all user-facing output should generally talk about "advisors" IMO.

TL;DR please do not rename this option here. We can revisit this once we add advisors that are not vulnerability providers.

Copy link
Contributor Author

@KorSin KorSin Mar 18, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Alright, I understand your concerns. What about plural form, i.e. advisors?
But maybe this is a change for later to make it not a breaking change.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Argh, yes, that's a breaking change that we need 😞 But at least there's a change that people used -a before which continues to work...

).convert { name ->
allVulnerabilityProvidersByName[name]
?: throw BadParameterValue(
"Advisor '$name' is not one of ${allVulnerabilityProvidersByName.keys}"
"Provider '$name' is not one of ${allVulnerabilityProvidersByName.keys}"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

s/Provider/Advisor/


println("Using advisor '${providerFactory.providerName}'.")
println("Using provider '${distinctProviders.first().providerName}'.")
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

s/provider/advisor/

@@ -105,8 +105,8 @@ class AdvisorCommand : CliktCommand(name = "advise", help = "Check dependencies
}

val distinctProviders = providerFactories.distinct()

println("Using provider '${distinctProviders.first().providerName}'.")
println("The following vulnerability providers are activated:")
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actually, this should be squashed to the first commit in this PR, not to the previous commit.


println("Using provider '${distinctProviders.first().providerName}'.")
println("The following vulnerability providers are activated:")
println("\t" + distinctProviders.joinToString(", "))
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

", " is the default separator, so you should omit it.

@KorSin KorSin force-pushed the korsin/multiple-advisors-next branch from 607db97 to c6c25e3 Compare March 18, 2021 12:06
@KorSin KorSin force-pushed the korsin/multiple-advisors-next branch from c6c25e3 to c213082 Compare March 18, 2021 12:07
@KorSin KorSin requested a review from sschuberth March 18, 2021 12:07
@sschuberth sschuberth changed the title advisor: Allow multiple vulnerability providers in one run. advisor: Allow multiple vulnerability providers in one run Mar 18, 2021
@sschuberth
Copy link
Member

sschuberth commented Mar 18, 2021

@KorSin please rebase to resolve conflicts as I just merged the other fix.

@KorSin KorSin force-pushed the korsin/multiple-advisors-next branch from c213082 to f2d34ca Compare March 18, 2021 12:16

val packages = ortResult.getPackages(skipExcluded).map { it.pkg }
val results = runBlocking { provider.retrievePackageVulnerabilities(packages) }
val results = runBlocking { providers.first().retrievePackageVulnerabilities(packages) }
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

To be frank, I'm not happy with the topical split between this and the next commit. That's mostly because you already expose the feature to use multiple advisors to the user here, but only make it work in the next commit.

It would have been somewhat fine to still prepare the implementation to be able to deal with multiple advisors here, not implement it fully, but then also not expose it to the user yet, and only expose it to the user in the next commit when it's really working.

But actually, as the next commit is not too big, I wonder why we can't also simply squash these two renaming commits.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, I agree that the topical spilt is not ideal. I have no problems with squashing, so I will do it.

val packages = ortResult.getPackages(skipExcluded).map { it.pkg }
val results = runBlocking { providers.first().retrievePackageVulnerabilities(packages) }
.mapKeysTo(sortedMapOf()) { (pkg, _) -> pkg.id }
runBlocking {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nit: Blank line before this one.

Change the long format of the advisor CLI option from advisor to
advisors. Run the different providers in parallel and merge the
results.

Closes oss-review-toolkit#3638.

Signed-off-by: Korbinian Singhammer <[email protected]>
@KorSin KorSin force-pushed the korsin/multiple-advisors-next branch from f2d34ca to 88a34e2 Compare March 22, 2021 12:49
@KorSin KorSin requested a review from sschuberth March 22, 2021 12:49
@sschuberth sschuberth merged commit 8ede01b into oss-review-toolkit:master Mar 23, 2021
@sschuberth sschuberth deleted the korsin/multiple-advisors-next branch March 23, 2021 10:52
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

Successfully merging this pull request may close these issues.

3 participants