-
Notifications
You must be signed in to change notification settings - Fork 963
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
Uploads: Remove the username=__token__
requirement?
#15140
Comments
We still have the BasicAuth security policy in place today, which will inform the user using user/pass about the new approach. It's currently post-validation, so it might be useful to move that all the way up front, and thus remove a lot of that logic. Considering the dominating client for uploads is twine, it would make most sense to me to have that client evolve to:
I think it'll take a significant amount of long-tail time until users have safely migrated to whatever the new approach is. In your Pros, you call out some code reduction - can you poiint out what would be able to go away? |
Note that |
I think @woodruffw is all over that already ;) pypa/twine#1040 |
Emphasis on very small 😅 -- I was mostly just thinking about the 1-2 places where |
I think that nearly 100% of authentication happens by smuggling the token through basic auth as the password, and the basic auth stuff requires there to be something for username (even if it's the empty string). I guess we could just ignore the username and just let it be anything? Though it seems useful still to register explicit intent. |
Yep, I believe it'd have to be the empty string in that case. So yeah, this probably currently has limited practical value. |
For reference, here's how it works: warehouse/warehouse/macaroons/security_policy.py Lines 75 to 78 in 5147ff2
and later, we check the username: warehouse/warehouse/macaroons/security_policy.py Lines 44 to 45 in 5147ff2
I'd be much happier to see the "basic" part go away, and for folks to use "token" or "bearer" method and skip the need for username extraction. |
100% agreed -- maybe it'd be good to add stats/counters to those branches, to figure out when it'd be okay to remove the basic auth path? |
I suspect nearly 100% of uses currently use the basic auth branch-- afaik it's the only thing Twine supports, and the only thing most upload tools support. There's no standard around the bearer auth thing currently, so upload clients would have to special case PyPI to support it. |
I've been recently making other special-case changes to |
I got distracted by non OSS stuff so I hadn't been able to work on it, but I did have python/peps#3172 I started on that would allow handling these cases without special casing them. |
Now that 2FA is mandatory, username/password pairs can no longer be used for package upload.
This affords a potential simplification in the upload endpoint's credential format: the phony
__token__
username is no longer needed for disambiguation, since all "passwords" are now just API tokens of the formpypi-...
.Pros: Delete a small amount of code, remove a shoehorned special value, one less configuration step/variable.
Cons: Probably needs a bunch of doc updates, user benefit is marginal (?)
CCing @miketheman for opinions 🙂
The text was updated successfully, but these errors were encountered: