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

Add RBAC support #679

Merged
merged 1 commit into from
Jun 25, 2024
Merged

Add RBAC support #679

merged 1 commit into from
Jun 25, 2024

Conversation

gerrod3
Copy link
Contributor

@gerrod3 gerrod3 commented Jun 17, 2024

Needs domains PR to be merged first.

@github-actions github-actions bot added the multi-commit Add to bypass single commit lint check label Jun 17, 2024
@bmbouter
Copy link
Member

I read through the docs and the claimed feature support and I believe this will work well for our needs. +1 to merge

@github-actions github-actions bot removed the multi-commit Add to bypass single commit lint check label Jun 19, 2024
@gerrod3 gerrod3 marked this pull request as ready for review June 19, 2024 02:25
super().import_viewsets()
from pulp_python.app.pypi.views import PyPIView, SimpleView, UploadView, MetadataView

self.named_viewsets[None].extend([PyPIView, SimpleView, UploadView, MetadataView])
Copy link
Member

Choose a reason for hiding this comment

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

This looks very hacky. Can you explain how this works? None as a dict key really tingles.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

It is hacky. The roles & access policies migrate hook use this dict to figure out which viewsets it needs to inspect. Both hooks use values to get the viewsets, so since the PyPI views don't have a backing model we can use None as the key. The big thing with putting non-NamedModelViewSets inside this dict is that you need to have your viewset mock one by implementing ~5 methods (the ones on the PyPIMixin) in order for other parts of Pulp to not break.

I am not that pleased with this solution, it's pretty tenuous, but we currently don't have any way to register other views with our RBAC system.

Copy link
Member

Choose a reason for hiding this comment

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

First, we should have a better mechanism.
Can't you just create the record in the db from a migration hook here?
Would we need a special PermissionClass to find the access policy without assuming it's a NamedModelVS?

Copy link
Member

Choose a reason for hiding this comment

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

At the very least, we need a plan how it should look better. And a comment here so we know what this is actually accomplishing and when to rework it.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Ok, I agree the hack is too much. I removed it and copied/pasted the access policy hook from pulpcore and added a comment to revisit once we have a better mechanism in pulpcore: pulp/pulpcore#5500

Copy link
Member

Choose a reason for hiding this comment

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

Thank you!

@gerrod3 gerrod3 force-pushed the rbac branch 2 times, most recently from d8de886 to 11d51f2 Compare June 21, 2024 20:48
@@ -189,13 +212,28 @@ def create_group_upload_task(self, cur_session, repository, artifact, filename,
class SimpleView(PackageUploadMixin, ViewSet):
"""View for the PyPI simple API."""

permission_classes = [IsAuthenticatedOrReadOnly]
Copy link
Member

Choose a reason for hiding this comment

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

We don't need to specify the APfromDB because that's the globally configured default, right?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Correct.

Copy link
Member

@mdellweg mdellweg left a comment

Choose a reason for hiding this comment

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

Did not investigate the actual access policies.
But I approve the code changes here.

@@ -110,6 +121,11 @@ def initial(self, request, *args, **kwargs):
else:
self.base_content_url = BASE_CONTENT_URL

@classmethod
def urlpattern(cls):
"""Mocking NamedModelViewSet behavior to get PyPI APIs to support RBAC access polices."""
Copy link
Member

Choose a reason for hiding this comment

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

👍

@gerrod3 gerrod3 merged commit fc5d0a4 into pulp:main Jun 25, 2024
16 checks passed
@gerrod3 gerrod3 deleted the rbac branch June 25, 2024 17:35
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.

4 participants