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

Enhance badge API to require authorization #4059

Conversation

SaberStrat
Copy link

@SaberStrat SaberStrat commented Aug 11, 2024

Description

Enables Dependency-Track to offer badges in a secure manner and change the badge API from an opt-in-able, unauthenticated one into one requiring authentication with the new permission VIEW_BADGES, either via HTTP header or URI query parameter.

In the currently implementation, this as a breaking change (see Additional Details.)

Addressed Issue

Closes #3596

Additional Details

As a first for DT's API, badges will allow authentication via URI query parameter, as badges are often retrieved from/embedded in clients that do not easily support an injection of headers.

The securing of badges behind API authentication and ACL can be done in two ways, either as a breaking change or gracefully with backwards compatibility: implement authentication with a new permission and

  1. remove current checkbox enabling unauthenticated badges support entirely (breaking change)
  2. keep a checkbox, but redo it to switch between the settings (backwards compatible change):
    1. disable unauthenticated access (allows authenticated access only, corresponds to the previous "off" setting right after updating to the new DT version containing this PR)
    2. enable unauthenticated access (corresponds to the previous "on" setting)

A grace period is nice. But because the previous way of offering badges represents a security flaw, I would've preferred to make users switch to authenticated badges requests right away.

Downstream changes

DependencyTrack/frontend#967

Upstream requirements

stevespringett/Alpine#641

Checklist

  • I have read and understand the contributing guidelines
  • This PR fixes a defect, and I have provided tests to verify that the fix is effective
  • This PR implements an enhancement, and I have provided tests to verify that it works as intended
  • This PR introduces changes to the database model, and I have added corresponding update logic
  • This PR introduces new or alters existing behavior, and I have updated the documentation accordingly

@SaberStrat SaberStrat changed the title Change badges access from checkbox to permission Enhance badge API to require authorization Aug 11, 2024
Copy link

codacy-production bot commented Aug 18, 2024

Coverage summary from Codacy

See diff coverage on Codacy

Coverage variation Diff coverage
+0.00% (target: -1.00%) 100.00% (target: 70.00%)
Coverage variation details
Coverable lines Covered lines Coverage
Common ancestor commit (b8d4866) 21934 17253 78.66%
Head commit (8c40c9a) 21931 (-3) 17250 (-3) 78.66% (+0.00%)

Coverage variation is the difference between the coverage for the head and common ancestor commits of the pull request branch: <coverage of head commit> - <coverage of common ancestor commit>

Diff coverage details
Coverable lines Covered lines Diff coverage
Pull request (#4059) 34 34 100.00%

Diff coverage is the percentage of lines that are covered by tests out of the coverable lines that the pull request added or modified: <covered lines added or modified>/<coverable lines added or modified> * 100%

See your quality gate settings    Change summary preferences

Codacy stopped sending the deprecated coverage status on June 5th, 2024. Learn more

@SaberStrat SaberStrat marked this pull request as ready for review September 1, 2024 19:39
@SaberStrat SaberStrat marked this pull request as draft September 1, 2024 19:39
@SaberStrat
Copy link
Author

Forgot readying the PR for the frontend, will remain a draft until then

@SaberStrat SaberStrat force-pushed the feature/3596-enhance-badges-to-require-api-authorization branch from 6bf1e60 to 2790e1c Compare September 3, 2024 04:36
SaberStrat pushed a commit to SaberStrat/frontend that referenced this pull request Sep 4, 2024
Remove frontend elements for this switch, as badges API get
authenticated access.

Downstream change of
DependencyTrack/dependency-track#4059

Signed-off-by: Kirill.Sybin <kirill.sybin@lex-com.net>
@SaberStrat SaberStrat marked this pull request as ready for review September 5, 2024 21:48
@nscuro
Copy link
Member

nscuro commented Sep 10, 2024

@SaberStrat master has Alpine 3.1.0 now, which includes the change required for this.

Kirill.Sybin added 7 commits September 11, 2024 22:05
Replace enabling of unauthenticaed access to badges via admin config
checkbox with an api authentication with a new dedicated permission
"VIEW_BADGES".

Signed-off-by: Kirill.Sybin <kirill.sybin@lex-com.net>
Signed-off-by: Kirill.Sybin <kirill.sybin@lex-com.net>
Signed-off-by: Kirill.Sybin <kirill.sybin@lex-com.net>
Add new badge permission to tests. Remove tests for badge disabling. Add
tests testing authentication, permission and ACL access.

Signed-off-by: Kirill.Sybin <kirill.sybin@lex-com.net>
Signed-off-by: Kirill.Sybin <kirill.sybin@lex-com.net>
Allows API authentication via URI query param for badge requests as an
alternative to header authentication because typical use cases for
badges do not easily allow header injection.

Requires stevespringett/Alpine#641

Signed-off-by: Kirill.Sybin <kirill.sybin@lex-com.net>
Update tests to focus on API authentication via URI query parameter, but
keep some tests that test header authentication as that remains an
option.

Requires  stevespringett/Alpine#641

Signed-off-by: Kirill.Sybin <kirill.sybin@lex-com.net>
@SaberStrat SaberStrat force-pushed the feature/3596-enhance-badges-to-require-api-authorization branch from 2790e1c to 8c40c9a Compare September 11, 2024 20:05
@SaberStrat
Copy link
Author

SaberStrat commented Sep 12, 2024

Not sure how to repro the error locally. The unit tests are successful.

@nscuro
Copy link
Member

nscuro commented Sep 12, 2024

Just a flaky test. I restarted CI workflow.

Copy link
Member

@nscuro nscuro left a comment

Choose a reason for hiding this comment

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

Looks good, and I agree with your assessment of intentionally making this a breaking change due to the security implications of the current implementation.

In the original issue, Steve suggested to create a default team with the VIEW_BADGE permission. I think we should follow that. You can add a new default team here:

private void loadDefaultPersonas() {
try (QueryManager qm = new QueryManager()) {
if (!qm.getManagedUsers().isEmpty() && !qm.getTeams().isEmpty()) {
return;
}
LOGGER.info("Adding default users and teams to datastore");
LOGGER.debug("Creating user: admin");
ManagedUser admin = qm.createManagedUser("admin", "Administrator", "admin@localhost",
new String(PasswordService.createHash("admin".toCharArray())), true, true, false);
LOGGER.debug("Creating team: Administrators");
final Team sysadmins = qm.createTeam("Administrators", false);
LOGGER.debug("Creating team: Portfolio Managers");
final Team managers = qm.createTeam("Portfolio Managers", false);
LOGGER.debug("Creating team: Automation");
final Team automation = qm.createTeam("Automation", true);
final List<Permission> fullList = qm.getPermissions();
LOGGER.debug("Assigning default permissions to teams");
sysadmins.setPermissions(fullList);
managers.setPermissions(getPortfolioManagersPermissions(fullList));
automation.setPermissions(getAutomationPermissions(fullList));
qm.persist(sysadmins);
qm.persist(managers);
qm.persist(automation);
LOGGER.debug("Adding admin user to System Administrators");
qm.addUserToTeam(admin, sysadmins);
admin = qm.getObjectById(ManagedUser.class, admin.getId());
admin.setPermissions(qm.getPermissions());
qm.persist(admin);
}
}

@nscuro nscuro added enhancement New feature or request breaking change labels Sep 12, 2024
@nscuro nscuro added this to the 4.12 milestone Sep 12, 2024
@nscuro
Copy link
Member

nscuro commented Sep 12, 2024

Oh, and consider adding a migration to remove the badge.enabled column from the CONFIGPROPERTY table. Note that #4143 also edits this file so there might be merge conflicts.

@savek-cc
Copy link

savek-cc commented Sep 17, 2024

As this is a breaking change:
Multiple projects are using the current badge feature to create overview tables in confluence.
Once we update to 4.12, this would be broken directly as I understand. Do you plan on enabling a smooth transition by making it possible to still use unauthenticated access for at least this one version for migration - so that both authenticated and the old way without authkey can co-exist for a grace period?
E.g. having an env_var like REALLY_BAD_IDEA_ENABLE_UNAUTHENTICATED_BADGES_FOR_THIS_ONE_VERSION?

@nscuro
Copy link
Member

nscuro commented Sep 17, 2024

@SaberStrat Thoughts on @savek-cc's remarks? Would you be willing to refactor your work to enable backward-compatibility?

@savek-cc
Copy link

Maybe a different approach: Could we (in order to prepare for the preparation) create an AuthKey in DT 4.11 and include that in todays API requests (they would be ignored for now) and then give that team/API-key the new permission with DT 4.12?
So we could prepare (but not test) the transition with DT 4.11 and should be good once we update?

@SaberStrat
Copy link
Author

Alright then.

Now I'll need help with organising the change in direction, i.e. project management decisions.
What would be the best way to turn this PR and its issue about a breaking change into a deprecation for (probably) 4.12 and a breaking change in a later version?

  1. Repurpose it--i.e. edit their descriptions and continue on the branch--into a deprecation for 4.12. For the feature removal, create a new issue and PR that'll be for later (e.g. 4.13)
  2. Keep it for the feature removal later, finish it and mark it for a future release (e.g. 4.13) and fix future conflicts for when we get closer to that release. For the deprecation for 4.12, create a new issue and PR.

@savek-cc
Copy link

savek-cc commented Sep 17, 2024

I don't think it should be an either or (authenticated OR unauthenticated) - but rather an override to allow access without an API key if none is provided. If one is provided, it should be checked as currently implemented.
The idea is to enable the authentication and onboard the projects one after another - but keep the old links working (those without key) for the transition period. Once all status pages/projects did add their (in our case probably the same for all) authKey to the request, this override can be disabled.
The override can then be completely removed in e.g. 4.13.

So the change is as already implemented - but there is an override (e.g. as env-var) that makes it not only accept valid authKeys - but also the empty one (as in none supplied).

What are your thoughts?

@SaberStrat
Copy link
Author

You mean as a configuration or property for the application like these here https://docs.dependencytrack.org/getting-started/configuration/?

So basically turning the current switch from an either-or into an enabler for unauthentic access and moving it from the UI into a property?

Unless I misunderstood, it would be a neat middle ground for everyone involved. Gives users a grace period, I don’t have to do as much extra coding (I think) and the setting is hidden a bit more, thus advertising the authentication-way more/authentication-less way less.

@savek-cc
Copy link

savek-cc commented Sep 17, 2024

Correct - but even if that override is enabled, your code should still check the AuthKey - just on the "no auth key present" path there is an override to grant access anyway IF that config var is set. Everything in the UI stays as currently implemented in your PR. Code changes should(?) be minimal and not require you to rework a lot.

This way, projects can already start using (and testing - as an invalid key would still be rejected) the new authentication.

@nscuro your thoughts?

@nscuro
Copy link
Member

nscuro commented Sep 19, 2024

Wouldn't it be easier to just leave the existing badge.enabled toggle in place then?

Off: Disable unauthenticated, allow authenticated+authorized
On: Enable unauthenticated, allow authenticated+authorized

Users who already have it enabled won't have to do anything when upgrading to v4.12.

For v4.13, we remove this toggle and only allow authenticated access.

I think moving the toggle from UI to env vars in v4.12 will just be confusing.

@savek-cc
Copy link

savek-cc commented Sep 19, 2024

Wouldn't it be easier to just leave the existing badge.enabled toggle in place then?

Looking at the current documentation https://docs.dependencytrack.org/integrations/badges/ I too think that this is the best idea. The current option is specifically about enabling unauthenticated access (pre 4.12)- and there is no need to disable badges if the only access is authenticated (4.13+).
So we add authenticated access independent of config - and make clear that the "unauthenticated access" toggle feature will go away with 4.13 in the release notes?

@SaberStrat
Copy link
Author

SaberStrat commented Sep 19, 2024

Then I’m modifying this PR and issue and its frontend counterpart and create a separate pair for the removal for 4.13?

@nscuro
Copy link
Member

nscuro commented Sep 19, 2024

@SaberStrat Yeah I think that would be the easiest.

Add a default team for viewing badges for new DBs.

Signed-off-by: Kirill.Sybin <kirill.sybin@lex-com.net>
@nscuro
Copy link
Member

nscuro commented Sep 25, 2024

@SaberStrat Do you have a rough idea as to how soon you'd be able to complete this work? No pressure, just curious WRT planning the v4.12 release.

@SaberStrat
Copy link
Author

@nscuro Estimate by feeling: good case this week, bad case by end of next week. What’s the deadline for v4.12?

@nscuro
Copy link
Member

nscuro commented Sep 27, 2024

We were hoping for early next week, since the next community meeting is on Wednesday.

@SaberStrat
Copy link
Author

I'm actually struggling to come up with a way to toggle authentication on and off for a resource at runtime.

DT is using alpine-server to apply an authentication filter for incoming requests, which has the method annotation @AuthenticationNotRequired to deactivate that filter for requests of that method.

Previously, the 'Badges-way' was implemented like this: deactivate authentication in general for all methods of the resource with that annotation (static), and the ConfigProperty/general setting toggle made the resource methods return an empty body (dynamic)

Now what we want is for the toggle to basically do what the annotation did, but let the user control it, at runtime, i.e. dynamically. I'd either need to inject and query state of a ConfigProperty either in alpine-server or somewhere in DT where Alpine classes plug into DT. Or maybe work with Reflections and modify the annotation at runtime?

Either way, my thoughts lead down complicated paths with lots of effort, that I'm not sure is justifiable for a temporary deprecation. I'd be thankful for suggestions of justifiable implementations. Otherwise, I'm at the point where @savek-cc's idea of adding a apiKey query parameter to badge requests in 4.11 sounds more reasonable 😅 .

@nscuro
Copy link
Member

nscuro commented Sep 28, 2024

I think you could simply implement the permission check "manually" in the method body, instead of relying on the annotation.

There is a qm.hasPermission method that you can use, and getPrincipal gets you access to the user or API key if you need it (note: will be null for unauthenticated access).

You can access the apiKey parameter using the @QueryParam annotation as usual.

Yes it's a bit of duplicated code, but ultimately it's not a lot, and it's only in this specific endpoint, and only for v4.12. So I believe this is a reasonable option.

Kirill.Sybin added 3 commits September 29, 2024 15:50
To make the removal of unauthenticated access to badges not be a
breaking change after all, the enable badges config property is kept in
after all, but repurposed into a setting to enable unauthenticated
access to the badges resource. If it is disabled, then the badges api
remains accessible to authenticated and authorized requests.

Signed-off-by: Kirill.Sybin <kirill.sybin@lex-com.net>
Signed-off-by: Kirill.Sybin <kirill.sybin@lex-com.net>
Update documentation for globally configurable unauthenticated access to
badges.

Signed-off-by: Kirill.Sybin <kirill.sybin@lex-com.net>
Copy link
Member

@nscuro nscuro left a comment

Choose a reason for hiding this comment

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

Looks good @SaberStrat! Could you please look into fixing the failing tests? Happy to merge once those are resolved.

 Error:  Failures: 
Error:    DefaultObjectGeneratorTest.testContextInitialized:38->testLoadDefaultPersonas:96 expected:<3> but was:<4>
Error:    DefaultObjectGeneratorTest.testLoadDefaultPersonas:96 expected:<3> but was:<4>

@SaberStrat
Copy link
Author

I think you could simply implement the permission check "manually" in the method body, instead of relying on the annotation.

There is a qm.hasPermission method that you can use, and getPrincipal gets you access to the user or API key if you need it (note: will be null for unauthenticated access).

You can access the apiKey parameter using the @QueryParam annotation as usual.

Yes it's a bit of duplicated code, but ultimately it's not a lot, and it's only in this specific endpoint, and only for v4.12. So I believe this is a reasonable option.

Thank you for the help! It makes sense and goes in a similar direction that ACL is implemented in the badge resource.

Signed-off-by: Kirill.Sybin <kirill.sybin@lex-com.net>
@SaberStrat
Copy link
Author

SaberStrat commented Sep 29, 2024

Can't repro the test failure locally.

@nscuro
Copy link
Member

nscuro commented Sep 29, 2024

Likely flaky. Triggered a re-run of the workflow.

@nscuro
Copy link
Member

nscuro commented Sep 29, 2024

Seems like the CPAN registry is slow to respond, causing the test failure. Will merge, since the failing test is unrelated to this change.

@nscuro nscuro merged commit 793b9ea into DependencyTrack:master Sep 29, 2024
8 of 9 checks passed
@SaberStrat SaberStrat deleted the feature/3596-enhance-badges-to-require-api-authorization branch September 30, 2024 21:36
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Enhance Badge API to support authentication and authorisation and deprecate unauthenticated access to badges
3 participants